{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js", "ssg:https://framerusercontent.com/modules/8jleG4ImG940lvboCXI0/v6O5hWh2WVIVhOYF6oyp/RMEb2rMaN.js", "ssg:https://framerusercontent.com/modules/q8Gq3tcHuq1hoRaCpD0c/6COdYbk3Zy1jdBYKqzmQ/n8cnDcXiJ.js", "ssg:https://framerusercontent.com/modules/9AheuvKuvxs6g2O9arR5/LbGhENDzkQNy8zvM5HZJ/RHxkECKKe.js", "ssg:https://framerusercontent.com/modules/w5BnJFKqJLeeDbRXpFvk/soTCrss56CYjK0iN21WQ/hcbsUvBNF.js", "ssg:https://framerusercontent.com/modules/aP6ei9Y9yeE0Xf40Q5KM/z8QoF3kEtN9iPKajvLPT/VupJr34s5.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,useLocaleCode}from\"framer\";import{startTransition,useCallback,useEffect,useRef,useState}from\"react\";const fontStack=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;function formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showMinutes,showSeconds},timeFormat,monthFormat,localCode){const date=new Date;const onlyYearIsShown=!showWeekday&&!showMonth&&showYear;switch(outputType){case\"date\":return new Intl.DateTimeFormat(localCode,{weekday:showWeekday?\"long\":undefined,day:onlyYearIsShown?undefined:\"numeric\",month:showMonth?monthFormat:undefined,year:showYear?\"numeric\":undefined}).format(date);case\"time\":return new Intl.DateTimeFormat(localCode,{hour:\"numeric\",minute:showMinutes?\"numeric\":undefined,second:showSeconds&&showMinutes?\"numeric\":undefined,hour12:timeFormat===\"12h\"}).format(date);default:return new Intl.DateTimeFormat(localCode).format(date);}}const defaultProps={height:20,width:140,outputType:\"time\",color:\"#999\",timeFormat:\"24h\",showYear:true,showMonth:true,showWeekday:true,showMinutes:true,showSeconds:true,monthFormat:\"long\",alignment:\"center\"};/**\n * TIME AND DATE\n * FORKED FROM PROTOTYPING\n *\n * @framerIntrinsicWidth 140\n * @framerIntrinsicHeight 20\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export function Time(props){const mergedProps={...defaultProps,...props};const{outputType,timeFormat,showYear,showMonth,showWeekday,// showHours,\nshowMinutes,showSeconds,monthFormat,color,font,tabularFont}=mergedProps;const localCode=useLocaleCode();const getTextContent=useCallback(()=>formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,// showHours,\n    showMinutes,showSeconds},timeFormat,monthFormat,localCode),[localCode,monthFormat,outputType,showMinutes,showMonth,showSeconds,showWeekday,showYear,timeFormat]);const timeoutRef=useRef()// FIXME: With React 19, we can remove this and return a cleanup from the ref callback\n;const updateCountdown=useCallback(node=>{if(node===null){// React calls w/ `null` on unmount or if the ref function changes.\nclearTimeout(timeoutRef.current);return;}let prev;const tick=()=>{const date=new Date;const next=new Date().setSeconds(date.getSeconds()+1,0)-+date;timeoutRef.current=setTimeout(tick,next);const textContent=getTextContent();if(prev!==textContent){node.textContent=textContent;prev=textContent;}};tick();},[getTextContent]);const[visible,setIsVisible]=useState(false);const isCanvas=RenderTarget.current()===RenderTarget.canvas;useEffect(()=>{startTransition(()=>setIsVisible(true));// Don\u2019t want real time on Canvas\nif(isCanvas)return;},[isCanvas]);return /*#__PURE__*/_jsx(\"p\",{suppressHydrationWarning:true,style:{margin:0,padding:0,color,fontFamily:fontStack,fontWeight:500,fontSize:16,lineHeight:1,visibility:visible?\"visible\":\"hidden\",...font,fontVariantNumeric:tabularFont?\"tabular-nums\":\"normal\",whiteSpace:\"nowrap\"},ref:isCanvas?undefined:updateCountdown,children:getTextContent()});}Time.displayName=\"Time & Date\";addPropertyControls(Time,{outputType:{title:\"Type\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"date\",\"time\"],optionTitles:[\"Date\",\"Time\"],defaultValue:defaultProps.outputType},showWeekday:{title:\"Day\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showWeekday,hidden:props=>props.outputType!==\"date\"},showMonth:{title:\"Month\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showMonth,hidden:props=>props.outputType!==\"date\"},monthFormat:{title:\"Format\",type:ControlType.Enum,options:[\"short\",\"long\",\"numeric\"],optionTitles:[\"Short\",\"Long\",\"Numeric\"],defaultValue:defaultProps.monthFormat,hidden:props=>props.outputType!==\"date\"||!props.showMonth},showYear:{title:\"Year\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showYear,hidden:props=>props.outputType!==\"date\"},timeFormat:{title:\"Format\",type:ControlType.Enum,options:[\"12h\",\"24h\"],optionTitles:[\"12h\",\"24h\"],displaySegmentedControl:true,defaultValue:defaultProps.timeFormat,hidden:props=>props.outputType!==\"time\"},// showHours: {\n//     title: \"Hours\",\n//     type: ControlType.Boolean,\n//     enabledTitle: \"Show\",\n//     disabledTitle: \"Hide\",\n//     defaultValue: defaultProps.showHours,\n//     hidden: (props) => props.outputType !== \"time\",\n// },\nshowMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showMinutes,hidden:props=>props.outputType!==\"time\"},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showSeconds,hidden:props=>props.outputType!==\"time\"||!props.showMinutes},font:{type:ControlType.Font,controls:\"extended\"},tabularFont:{title:\"Tabular\",type:ControlType.Boolean,defaultValue:true},color:{type:ControlType.Color,defaultValue:defaultProps.color}});\nexport const __FramerMetadata__ = {\"exports\":{\"Time\":{\"type\":\"reactComponent\",\"name\":\"Time\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicWidth\":\"140\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Time.map", "// Generated by Framer (8c7926c)\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 enabledGestures={hxLwb7RHp:{hover:true},SLhOmy4hq:{hover:true},usgfcfQia:{hover:true},VhX6OzL8_:{hover:true}};const cycleOrder=[\"hxLwb7RHp\",\"usgfcfQia\",\"SLhOmy4hq\",\"VhX6OzL8_\"];const serializationHash=\"framer-gf8gp\";const variantClassNames={hxLwb7RHp:\"framer-v-1osls4n\",SLhOmy4hq:\"framer-v-nvqf0i\",usgfcfQia:\"framer-v-12ax15q\",VhX6OzL8_:\"framer-v-1ssn64i\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Burger Dark\":\"SLhOmy4hq\",\"Close Dark\":\"VhX6OzL8_\",Burger:\"hxLwb7RHp\",Close:\"usgfcfQia\"};const getProps=({height,id,tap,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,seqedYYSX:tap!==null&&tap!==void 0?tap:props.seqedYYSX,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"hxLwb7RHp\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,seqedYYSX,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hxLwb7RHp\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1iygu7m=activeVariantCallback(async(...args)=>{if(seqedYYSX){const res=await seqedYYSX(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"usgfcfQia-hover\",\"VhX6OzL8_-hover\"].includes(gestureVariant))return false;if([\"usgfcfQia\",\"VhX6OzL8_\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1osls4n\",className,classNames),\"data-framer-name\":\"Burger\",layoutDependency:layoutDependency,layoutId:\"hxLwb7RHp\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"hxLwb7RHp-hover\":{\"data-framer-name\":undefined},\"SLhOmy4hq-hover\":{\"data-framer-name\":undefined},\"usgfcfQia-hover\":{\"data-framer-name\":undefined},\"VhX6OzL8_-hover\":{\"data-framer-name\":undefined},SLhOmy4hq:{\"data-framer-name\":\"Burger Dark\"},usgfcfQia:{\"data-framer-name\":\"Close\"},VhX6OzL8_:{\"data-framer-name\":\"Close Dark\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pwudae\",\"data-framer-name\":\"Icon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"BqAiCaBCQ\",onTap:onTap1iygu7m,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12dmoil\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"RQxCJeA60\",style:{backgroundColor:\"var(--token-98fe88db-ee3a-4ea8-b7f0-c43f1b098335, rgb(240, 240, 240))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{\"hxLwb7RHp-hover\":{backgroundColor:\"var(--token-b6662621-a415-40fc-9ad6-7fe115a62827, rgba(240, 240, 240, 0.5))\"},\"SLhOmy4hq-hover\":{backgroundColor:\"var(--token-51b9680d-0401-42ca-80ac-9b0a5cde690d, rgba(18, 18, 18, 0.5))\"},\"usgfcfQia-hover\":{backgroundColor:\"var(--token-b6662621-a415-40fc-9ad6-7fe115a62827, rgba(240, 240, 240, 0.5))\"},\"VhX6OzL8_-hover\":{backgroundColor:\"var(--token-51b9680d-0401-42ca-80ac-9b0a5cde690d, rgba(18, 18, 18, 0.5))\"},SLhOmy4hq:{backgroundColor:\"var(--token-b243fa83-280c-408f-875b-746794890bfe, rgb(18, 18, 18))\"},usgfcfQia:{rotate:-45},VhX6OzL8_:{backgroundColor:\"var(--token-b243fa83-280c-408f-875b-746794890bfe, rgb(18, 18, 18))\",rotate:-45}}}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1axui0s\",\"data-framer-name\":\"Middle\",layoutDependency:layoutDependency,layoutId:\"RAvEOCZhJ\",style:{backgroundColor:\"var(--token-98fe88db-ee3a-4ea8-b7f0-c43f1b098335, rgb(240, 240, 240))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{\"hxLwb7RHp-hover\":{backgroundColor:\"var(--token-b6662621-a415-40fc-9ad6-7fe115a62827, rgba(240, 240, 240, 0.5))\"},\"SLhOmy4hq-hover\":{backgroundColor:\"var(--token-51b9680d-0401-42ca-80ac-9b0a5cde690d, rgba(18, 18, 18, 0.5))\"},SLhOmy4hq:{backgroundColor:\"var(--token-b243fa83-280c-408f-875b-746794890bfe, rgb(18, 18, 18))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kf220n\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"dveWcMMMb\",style:{backgroundColor:\"var(--token-98fe88db-ee3a-4ea8-b7f0-c43f1b098335, rgb(240, 240, 240))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{\"hxLwb7RHp-hover\":{backgroundColor:\"var(--token-b6662621-a415-40fc-9ad6-7fe115a62827, rgba(240, 240, 240, 0.5))\"},\"SLhOmy4hq-hover\":{backgroundColor:\"var(--token-51b9680d-0401-42ca-80ac-9b0a5cde690d, rgba(18, 18, 18, 0.5))\"},\"usgfcfQia-hover\":{backgroundColor:\"var(--token-b6662621-a415-40fc-9ad6-7fe115a62827, rgba(240, 240, 240, 0.5))\"},\"VhX6OzL8_-hover\":{backgroundColor:\"var(--token-51b9680d-0401-42ca-80ac-9b0a5cde690d, rgba(18, 18, 18, 0.5))\"},SLhOmy4hq:{backgroundColor:\"var(--token-b243fa83-280c-408f-875b-746794890bfe, rgb(18, 18, 18))\"},usgfcfQia:{rotate:45},VhX6OzL8_:{backgroundColor:\"var(--token-b243fa83-280c-408f-875b-746794890bfe, rgb(18, 18, 18))\",rotate:45}}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gf8gp.framer-73m28h, .framer-gf8gp .framer-73m28h { display: block; }\",\".framer-gf8gp.framer-1osls4n { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gf8gp .framer-pwudae { cursor: pointer; flex: none; height: 100%; overflow: hidden; position: relative; width: 40px; }\",\".framer-gf8gp .framer-12dmoil { flex: none; height: 2px; left: calc(40.00000000000002% - 26px / 2); overflow: hidden; position: absolute; top: calc(70.00000000000001% - 2px / 2); width: 26px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gf8gp .framer-1axui0s { flex: none; height: 2px; left: calc(30.00000000000002% - 19px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 19px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gf8gp .framer-kf220n { flex: none; height: 2px; left: calc(50.00000000000002% - 34px / 2); overflow: hidden; position: absolute; top: calc(30.00000000000002% - 2px / 2); width: 34px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gf8gp.framer-1osls4n { gap: 0px; } .framer-gf8gp.framer-1osls4n > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-gf8gp.framer-1osls4n > :first-child { margin-left: 0px; } .framer-gf8gp.framer-1osls4n > :last-child { margin-right: 0px; } }\",\".framer-gf8gp.framer-v-12ax15q .framer-12dmoil, .framer-gf8gp.framer-v-1ssn64i .framer-12dmoil { left: calc(50.00000000000002% - 29px / 2); top: calc(50.00000000000002% - 2px / 2); width: 29px; }\",\".framer-gf8gp.framer-v-12ax15q .framer-kf220n, .framer-gf8gp.framer-v-1ssn64i .framer-kf220n { left: calc(50.00000000000002% - 29px / 2); top: 24px; width: 29px; }\",\".framer-gf8gp.framer-v-1osls4n.hover.framer-1osls4n, .framer-gf8gp.framer-v-12ax15q.hover.framer-1osls4n, .framer-gf8gp.framer-v-nvqf0i.hover.framer-1osls4n, .framer-gf8gp.framer-v-1ssn64i.hover.framer-1osls4n { height: 49px; }\",\".framer-gf8gp.framer-v-1osls4n.hover .framer-12dmoil { left: calc(30.00000000000002% - 18px / 2); top: calc(69.38775510204084% - 2px / 2); width: 18px; }\",\".framer-gf8gp.framer-v-1osls4n.hover .framer-1axui0s { left: calc(50.00000000000002% - 34px / 2); width: 34px; }\",\".framer-gf8gp.framer-v-1osls4n.hover .framer-kf220n { left: calc(37.50000000000002% - 24px / 2); top: 14px; width: 24px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 49.6\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"usgfcfQia\":{\"layout\":[\"auto\",\"fixed\"]},\"SLhOmy4hq\":{\"layout\":[\"auto\",\"fixed\"]},\"VhX6OzL8_\":{\"layout\":[\"auto\",\"fixed\"]},\"eqQzNdDqI\":{\"layout\":[\"auto\",\"fixed\"]},\"YysSYSgZv\":{\"layout\":[\"auto\",\"fixed\"]},\"txXOS5F7q\":{\"layout\":[\"auto\",\"fixed\"]},\"y1fOytqT5\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"seqedYYSX\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRMEb2rMaN=withCSS(Component,css,\"framer-gf8gp\");export default FramerRMEb2rMaN;FramerRMEb2rMaN.displayName=\"Navigation/Menu Burger\";FramerRMEb2rMaN.defaultProps={height:49.6,width:40};addPropertyControls(FramerRMEb2rMaN,{variant:{options:[\"hxLwb7RHp\",\"usgfcfQia\",\"SLhOmy4hq\",\"VhX6OzL8_\"],optionTitles:[\"Burger\",\"Close\",\"Burger Dark\",\"Close Dark\"],title:\"Variant\",type:ControlType.Enum},seqedYYSX:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerRMEb2rMaN,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRMEb2rMaN\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"seqedYYSX\\\":\\\"tap\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"usgfcfQia\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"SLhOmy4hq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"VhX6OzL8_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"eqQzNdDqI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"YysSYSgZv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"txXOS5F7q\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"y1fOytqT5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"49.6\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"40\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RMEb2rMaN.map", "// Generated by Framer (9d598a4)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-UENhB .framer-styles-preset-1scohoe:not(.rich-text-wrapper), .framer-UENhB .framer-styles-preset-1scohoe.rich-text-wrapper a { --framer-link-current-text-color: var(--token-693a1623-f092-4acc-9009-ab1984461e3c, #f9bf29); --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-693a1623-f092-4acc-9009-ab1984461e3c, #f9bf29); --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-98fe88db-ee3a-4ea8-b7f0-c43f1b098335, #f0f0f0); --framer-link-text-decoration: none; transition: color 0.4s cubic-bezier(0.44, 0, 0.56, 1) 0s; }\"];export const className=\"framer-UENhB\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9d598a4)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Formula Condensed Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Formula Condensed Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/4HTo7pUwCFDIYSJspcYmauC3H8.woff2\"}]}];export const css=['.framer-qtL8Y .framer-styles-preset-1mstww0:not(.rich-text-wrapper), .framer-qtL8Y .framer-styles-preset-1mstww0.rich-text-wrapper p { --framer-font-family: \"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.04em; --framer-line-height: 140%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-693a1623-f092-4acc-9009-ab1984461e3c, #f9bf29); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-qtL8Y .framer-styles-preset-1mstww0:not(.rich-text-wrapper), .framer-qtL8Y .framer-styles-preset-1mstww0.rich-text-wrapper p { --framer-font-family: \"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.04em; --framer-line-height: 140%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-693a1623-f092-4acc-9009-ab1984461e3c, #f9bf29); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-qtL8Y .framer-styles-preset-1mstww0:not(.rich-text-wrapper), .framer-qtL8Y .framer-styles-preset-1mstww0.rich-text-wrapper p { --framer-font-family: \"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 34px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.04em; --framer-line-height: 150%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-693a1623-f092-4acc-9009-ab1984461e3c, #f9bf29); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; } }'];export const className=\"framer-qtL8Y\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7d51cf8)\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 NavigationMenuBurger from\"https://framerusercontent.com/modules/8jleG4ImG940lvboCXI0/v6O5hWh2WVIVhOYF6oyp/RMEb2rMaN.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/q8Gq3tcHuq1hoRaCpD0c/6COdYbk3Zy1jdBYKqzmQ/n8cnDcXiJ.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/9AheuvKuvxs6g2O9arR5/LbGhENDzkQNy8zvM5HZJ/RHxkECKKe.js\";const NavigationMenuBurgerFonts=getFonts(NavigationMenuBurger);const cycleOrder=[\"KPenu3hEx\",\"SVJaXXrrQ\"];const serializationHash=\"framer-iQAB2\";const variantClassNames={KPenu3hEx:\"framer-v-184qnwu\",SVJaXXrrQ:\"framer-v-2go3eo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Closed:\"SVJaXXrrQ\",Open:\"KPenu3hEx\"};const getProps=({click,height,id,width,...props})=>{return{...props,p11tDEo3S:click??props.p11tDEo3S,variant:humanReadableVariantMap[props.variant]??props.variant??\"KPenu3hEx\"};};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,p11tDEo3S,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KPenu3hEx\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapj59ti8=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(p11tDEo3S){const res=await p11tDEo3S(...args);if(res===false)return false;}});const seqedYYSX1c3g2u=activeVariantCallback(async(...args)=>{setVariant(\"SVJaXXrrQ\");});const seqedYYSX1q4kzoc=activeVariantCallback(async(...args)=>{setVariant(\"KPenu3hEx\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"SVJaXXrrQ\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"SVJaXXrrQ\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-184qnwu\",className,classNames),\"data-framer-name\":\"Open\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"KPenu3hEx\",onTap:onTapj59ti8,ref:refBinding,style:{backgroundColor:\"var(--token-b243fa83-280c-408f-875b-746794890bfe, rgb(18, 18, 18))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({SVJaXXrrQ:{\"data-framer-name\":\"Closed\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pf4lon\",\"data-framer-name\":\"Icon and Label\",layoutDependency:layoutDependency,layoutId:\"y0YPcG29F\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"40px\",y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18vwy52-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"apnOFPjB4-container\",nodeId:\"apnOFPjB4\",rendersWithMotion:true,scopeId:\"hcbsUvBNF\",children:/*#__PURE__*/_jsx(NavigationMenuBurger,{height:\"100%\",id:\"apnOFPjB4\",layoutId:\"apnOFPjB4\",seqedYYSX:seqedYYSX1c3g2u,style:{height:\"100%\",width:\"100%\"},variant:\"usgfcfQia\",width:\"100%\",...addPropertyOverrides({SVJaXXrrQ:{seqedYYSX:seqedYYSX1q4kzoc,variant:\"hxLwb7RHp\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-103c2go\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"myG1qZAQd\",style:{opacity:1},variants:{SVJaXXrrQ:{opacity:0}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mstww0\",\"data-styles-preset\":\"RHxkECKKe\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"a1ghU7anJ\",openInNewTab:false,scopeId:\"hcbsUvBNF\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1scohoe\",\"data-styles-preset\":\"n8cnDcXiJ\",children:\"HOME\"})})})}),className:\"framer-1nwgpml\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"a1ghU7anJ\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mstww0\",\"data-styles-preset\":\"RHxkECKKe\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vqF2xYCzY\"},motionChild:true,nodeId:\"YXrOKso9I\",openInNewTab:false,scopeId:\"hcbsUvBNF\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1scohoe\",\"data-styles-preset\":\"n8cnDcXiJ\",children:\"ABOUT\"})})})}),className:\"framer-1e4j1en\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YXrOKso9I\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mstww0\",\"data-styles-preset\":\"RHxkECKKe\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cdOAEd_Vx\"},motionChild:true,nodeId:\"kR5reeB3p\",openInNewTab:false,scopeId:\"hcbsUvBNF\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1scohoe\",\"data-styles-preset\":\"n8cnDcXiJ\",children:\"PROJECTS\"})})})}),className:\"framer-aodayg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kR5reeB3p\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mstww0\",\"data-styles-preset\":\"RHxkECKKe\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TMTEjEGbP\"},motionChild:true,nodeId:\"ujFKogmJt\",openInNewTab:false,scopeId:\"hcbsUvBNF\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1scohoe\",\"data-styles-preset\":\"n8cnDcXiJ\",children:\"CONTACT\"})})})}),className:\"framer-1jrwit3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ujFKogmJt\",verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iQAB2.framer-ab1pzn, .framer-iQAB2 .framer-ab1pzn { display: block; }\",\".framer-iQAB2.framer-184qnwu { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 10px 0px; position: relative; width: 165px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iQAB2 .framer-1pf4lon { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-iQAB2 .framer-18vwy52-container { flex: none; height: 50px; position: relative; width: 40px; }\",\".framer-iQAB2 .framer-103c2go { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 10px; position: relative; width: 100%; }\",\".framer-iQAB2 .framer-1nwgpml, .framer-iQAB2 .framer-1e4j1en, .framer-iQAB2 .framer-aodayg, .framer-iQAB2 .framer-1jrwit3 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iQAB2.framer-184qnwu, .framer-iQAB2 .framer-1pf4lon, .framer-iQAB2 .framer-103c2go { gap: 0px; } .framer-iQAB2.framer-184qnwu > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-iQAB2.framer-184qnwu > :first-child, .framer-iQAB2 .framer-103c2go > :first-child { margin-top: 0px; } .framer-iQAB2.framer-184qnwu > :last-child, .framer-iQAB2 .framer-103c2go > :last-child { margin-bottom: 0px; } .framer-iQAB2 .framer-1pf4lon > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-iQAB2 .framer-1pf4lon > :first-child { margin-left: 0px; } .framer-iQAB2 .framer-1pf4lon > :last-child { margin-right: 0px; } .framer-iQAB2 .framer-103c2go > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-iQAB2.framer-v-2go3eo.framer-184qnwu { height: 50px; padding: 0px; width: 40px; }\",\".framer-iQAB2.framer-v-2go3eo .framer-1pf4lon { justify-content: center; width: min-content; }\",\".framer-iQAB2.framer-v-2go3eo .framer-103c2go { align-content: flex-start; align-items: flex-start; width: 120px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 214\n * @framerIntrinsicWidth 165\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SVJaXXrrQ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"p11tDEo3S\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerhcbsUvBNF=withCSS(Component,css,\"framer-iQAB2\");export default FramerhcbsUvBNF;FramerhcbsUvBNF.displayName=\"Navigation/Menu 2\";FramerhcbsUvBNF.defaultProps={height:214,width:165};addPropertyControls(FramerhcbsUvBNF,{variant:{options:[\"KPenu3hEx\",\"SVJaXXrrQ\"],optionTitles:[\"Open\",\"Closed\"],title:\"Variant\",type:ControlType.Enum},p11tDEo3S:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerhcbsUvBNF,[{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\"}]},...NavigationMenuBurgerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhcbsUvBNF\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SVJaXXrrQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"214\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"p11tDEo3S\\\":\\\"click\\\"}\",\"framerIntrinsicWidth\":\"165\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hcbsUvBNF.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Time as TimeDate}from\"https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js\";import NavigationMenu2 from\"https://framerusercontent.com/modules/w5BnJFKqJLeeDbRXpFvk/soTCrss56CYjK0iN21WQ/hcbsUvBNF.js\";const NavigationMenu2Fonts=getFonts(NavigationMenu2);const TimeDateFonts=getFonts(TimeDate);const cycleOrder=[\"E4LM4Av92\",\"VV8pFprAD\",\"cw8OVO6eH\"];const serializationHash=\"framer-1jdqY\";const variantClassNames={cw8OVO6eH:\"framer-v-xz6q2v\",E4LM4Av92:\"framer-v-e8uqzl\",VV8pFprAD:\"framer-v-oy2jbk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"E4LM4Av92\",Phone:\"cw8OVO6eH\",Tablet:\"VV8pFprAD\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"E4LM4Av92\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"E4LM4Av92\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const p11tDEo3S180hetv=activeVariantCallback(async(...args)=>{setVariant(\"E4LM4Av92\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-e8uqzl\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"E4LM4Av92\",ref:refBinding,style:{backdropFilter:\"blur(0px)\",WebkitBackdropFilter:\"blur(0px)\",...style},...addPropertyOverrides({cw8OVO6eH:{\"data-framer-name\":\"Phone\"},VV8pFprAD:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tnocgr\",\"data-framer-name\":\"Nav Wrapper\",layoutDependency:layoutDependency,layoutId:\"vjTzoKjet\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pksxpi\",\"data-framer-name\":\"Menu Holder\",layoutDependency:layoutDependency,layoutId:\"CI7mpgpJ7\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:214,y:(componentViewport?.y||0)+(0+((componentViewport?.height||103)-0-103)/2)+51.5+0,...addPropertyOverrides({cw8OVO6eH:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||103)-0-103)/2+0+0)+51.5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2galm7-container\",layoutDependency:layoutDependency,layoutId:\"FiGsct4Af-container\",nodeId:\"FiGsct4Af\",rendersWithMotion:true,scopeId:\"VupJr34s5\",children:/*#__PURE__*/_jsx(NavigationMenu2,{height:\"100%\",id:\"FiGsct4Af\",layoutId:\"FiGsct4Af\",p11tDEo3S:p11tDEo3S180hetv,variant:\"SVJaXXrrQ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oh5z20\",layoutDependency:layoutDependency,layoutId:\"PC0E_RaKW\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"RR4GE2K6Z\",scopeId:\"VupJr34s5\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-56orb7 framer-1mz0f9h\",\"data-framer-name\":\"Alison\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"RR4GE2K6Z\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 348 88\"><g transform=\"translate(0.003 0.019)\" id=\"ss11031329480_1\"><path d=\"M 67.457 14.711 C 69.532 11.23 69.784 8.886 67.764 6.179 C 65.745 3.472 62.73 2.841 58.916 6.15 C 53.109 11.067 38.352 25.424 26.209 37.515 C 20.198 38.309 13.368 39.581 6.083 41.035 C 3.803 41.523 2.714 41.532 2.165 41.063 C 1.523 40.595 1.161 40.317 0.612 40.604 C 0.063 40.891 -0.198 41.924 0.174 43.416 C 0.733 45.569 2.11 46.219 5.571 45.53 C 11.033 44.459 16.225 43.579 20.961 42.795 C 15.071 48.744 10.456 53.556 8.651 55.631 C 6.753 57.803 6.399 60.337 6.781 62.021 C 7.153 63.609 8.167 64.45 9.07 63.781 C 9.433 63.494 9.339 62.843 9.516 61.992 C 9.6 61.523 9.87 60.959 10.419 60.395 C 12.68 57.85 20.012 50.294 28.433 41.704 C 36.184 40.805 42.558 40.289 46.121 41.389 C 44.502 44.029 43.051 46.19 42.064 47.606 C 33.402 60.328 27.27 70.496 26.386 74.628 C 25.856 77.163 26.144 78.942 26.879 79.401 C 27.8 79.956 28.703 79.104 30.052 77.029 C 32.034 74.016 33.206 71.94 34.016 70.247 C 34.825 68.554 34.909 67.425 34.081 66.593 L 33.895 66.411 C 36.323 62.078 39.757 56.616 44.27 49.93 C 45.349 48.333 47.07 45.693 49.145 42.584 C 50.243 43.043 50.978 43.321 51.425 42.47 C 51.788 41.714 51.593 40.69 51.044 39.753 C 57.269 30.523 65.215 18.461 67.467 14.692 Z M 48.466 37.725 C 45.814 36.53 40.343 36.195 33.411 36.711 C 44.465 25.759 56.236 14.233 61.316 9.785 C 63.307 8.083 64.405 7.509 65.14 8.542 C 65.606 9.192 65.159 10.512 64.163 12.301 C 62.544 15.314 54.7 28.026 48.476 37.725 Z M 91.52 27.663 C 92.078 28.782 93.083 29.432 93.716 29.05 C 94.078 28.858 93.985 28.485 94.069 27.825 C 94.162 27.356 94.795 26.878 95.884 26.314 C 97.791 25.271 100.154 24.028 102.248 22.985 C 104.518 21.847 105.523 21.177 104.602 19.876 C 104.053 19.13 102.955 19.236 100.685 20.096 C 98.684 20.862 96.591 21.627 94.134 22.765 C 91.585 23.913 90.319 25.233 91.52 27.663 Z M 116.531 43.598 C 115.526 42.766 114.335 42.862 112.344 44.096 C 112.148 42.039 111.767 40.26 111.758 39.036 C 114.661 37.142 117.657 34.865 118.103 33.641 C 118.727 31.852 116.801 29.71 114.074 30.58 C 111.348 31.441 109.906 33.985 109.469 36.893 C 108.65 37.649 107.747 38.404 106.835 39.064 C 104.593 40.71 99.243 44.497 96.405 46.506 C 95.818 46.525 94.776 47.252 93.315 48.352 C 89.956 50.81 84.15 54.416 79.051 56.616 C 76.958 57.573 76.232 57.391 76.129 56.636 C 76.036 55.89 76.576 54.847 77.386 53.814 C 79.098 51.547 83.266 47.587 85.899 45.129 C 88.44 42.766 88.523 41.637 88.142 39.954 C 87.574 37.61 85.946 38.567 83.406 41.016 C 81.601 42.756 79.405 45.071 77.283 47.673 C 76.827 47.979 76.316 48.333 75.711 48.754 C 70.993 52.073 63.456 56.435 56.999 59.39 C 55.268 60.156 54.812 60.156 54.719 59.591 C 54.626 59.027 55.166 57.716 55.789 56.492 C 57.585 52.915 60.656 48.209 64.266 43.12 C 73.347 37.333 86.951 26.17 90.999 19.207 C 92.534 16.567 93.334 14.128 92.227 12.071 C 91.026 9.737 89.11 10.13 85.127 13.439 C 74.79 22.048 58.785 42.039 53.035 53.613 C 51.686 56.339 51.527 59.438 52.179 61.59 C 53.109 64.584 54.663 64.67 57.845 63.513 C 62.144 61.954 68.118 58.587 72.994 55.086 C 72.715 56.53 72.882 57.736 73.217 58.711 C 74.427 62.174 76.706 62.059 79.433 61.007 C 83.89 59.285 90.245 55.679 93.781 52.37 C 94.078 52.083 94.348 51.805 94.618 51.518 C 94.981 51.298 95.372 51.04 95.781 50.763 C 98.321 49.06 104.76 44.23 107.58 42.144 L 109.487 40.729 C 109.496 42.326 109.599 44.01 109.608 45.693 L 104.974 48.543 C 101.522 50.629 96.982 53.288 95.074 54.617 C 93.167 55.947 92.18 58.109 93.204 60.634 C 94.227 63.159 96.423 64.269 100.517 63.303 C 103.7 62.528 106.705 60.911 109.059 58.463 C 111.59 55.823 112.483 52.628 112.548 48.41 L 115.089 46.984 C 117.359 45.655 117.536 44.43 116.522 43.598 Z M 86.979 15.974 C 88.793 14.271 89.789 13.42 89.789 14.176 C 89.789 14.644 89.519 15.304 88.626 16.624 C 84.383 22.746 77.674 28.983 70.602 34.569 C 76.297 27.309 82.364 20.326 86.979 15.983 Z M 106.575 54.732 C 104.705 56.669 102.443 58.158 99.95 59.094 C 98.498 59.668 96.767 59.869 96.395 59.304 C 96.209 59.027 96.209 58.74 96.935 58.271 C 98.936 56.846 103.383 54.005 108.92 50.59 C 108.473 52.188 107.663 53.603 106.575 54.732 Z M 171.383 50.6 C 168.75 52.685 165.028 55.143 162.311 56.856 C 161.036 57.611 160.133 57.994 160.04 57.716 C 159.947 57.439 160.31 56.779 160.664 56.215 C 162.106 53.766 164.004 50.944 165.893 48.113 C 167.158 46.229 168.145 44.249 168.042 42.565 C 167.735 38.165 165.642 37.897 161.194 41.207 C 158.291 43.388 154.206 46.793 150.493 49.911 C 152.122 47.74 153.657 45.483 155.099 43.407 C 156.542 41.15 157.537 39.543 157.984 38.232 C 159.054 35.133 158.133 33.918 157.044 33.736 C 156.402 33.65 156.132 34.119 155.416 35.343 C 155.22 35.678 155.016 36.013 154.811 36.367 C 154.746 36.405 154.681 36.434 154.606 36.472 C 150.791 38.653 145.246 40.48 139.588 40.336 C 139.663 37.802 138.369 35.936 136.639 35.487 C 135.448 35.123 133.54 35.324 132.545 36.644 C 132.089 37.209 131.912 37.964 131.921 38.615 C 127.743 41.083 122.942 46.085 119.248 51.93 C 116.726 55.976 116.652 58.883 117.852 60.653 C 118.959 62.336 121.062 62.786 124.598 60.318 C 129.409 56.999 134.657 51.623 137.541 46.822 C 138.081 45.884 138.621 44.842 138.89 43.809 C 142.65 44.316 147.144 43.914 150.726 42.785 C 147.497 47.558 144.027 52.197 141.784 54.847 C 139.886 57.2 138.444 59.276 138.909 61.15 C 139.188 62.365 140.742 62.633 144.641 59.419 C 148.995 55.823 157.156 49.108 162.236 45.32 C 163.232 44.564 163.865 44.086 164.051 44.459 C 164.144 44.65 164.051 44.928 163.511 45.779 C 162.245 47.941 159.994 51.059 158.282 53.976 C 156.393 57.276 156.225 59.429 156.877 61.112 C 157.621 62.987 158.905 63.819 162.357 61.82 C 165.623 59.916 170.164 56.884 173.16 54.053 C 175.877 51.413 176.78 49.529 176.221 48.314 C 175.663 47.29 174.128 48.515 171.401 50.6 Z M 134.768 44.402 C 132.33 48.448 127.985 53.077 123.817 56.291 C 122.188 57.525 120.913 58.472 120.634 58.099 C 120.262 57.63 121.081 56.406 122.253 54.436 C 125.138 49.538 130.023 44.249 133.382 41.513 C 133.931 42.068 134.666 42.536 135.485 42.9 C 135.308 43.369 135.038 43.933 134.768 44.402 Z M 236.684 25.558 C 232.506 27.93 230.05 28.323 228.942 27.213 C 227.835 26.094 227.649 25.156 227.193 25.262 C 226.737 25.357 226.746 26.486 227.761 28.543 C 229.054 31.25 232.348 31.976 238.247 28.935 C 245.793 25.032 251.683 20.02 255.098 13.439 C 257.797 8.264 257.499 3.95 255.014 1.722 C 252.632 -0.421 248.25 -0.756 242.518 1.817 C 227.695 8.398 208.667 25.501 200.721 37.19 C 193.593 47.74 193.91 54.579 195.398 58.137 C 196.971 61.877 200.907 63.255 207.271 61.141 C 212.91 59.314 220.819 55.88 225.36 53.135 L 225.453 53.135 C 224.095 54.828 222.652 56.626 221.117 58.51 C 216.958 63.695 212.249 69.08 208.276 73.604 C 211.254 69.176 216.316 62.011 215.488 61.361 C 214.659 60.71 210.137 66.373 207.337 69.673 C 204.536 72.973 201.009 77.22 198.478 80.616 C 197.036 82.5 196.32 84.566 196.971 86.441 C 197.715 88.497 199.893 87.636 202.07 85.656 C 206.062 82.156 215.655 71.959 223.434 62.346 C 228.766 55.928 233.195 49.806 234.721 46.229 C 236.6 41.81 233.66 37.61 227.835 39.246 C 223.648 40.403 218.828 42.498 215.646 44.019 C 213.831 44.88 212.826 45.731 213.208 47.042 C 213.487 48.075 214.036 48.725 215.953 48.142 C 217.86 47.568 220.233 46.889 222.42 46.592 C 224.699 46.296 228.347 46.831 224.802 48.735 C 218.447 52.159 212.622 55.105 207.625 56.923 C 201.893 59.027 198.432 59.333 197.501 57.181 C 196.664 55.22 197.176 49.586 203.857 40.26 C 210.537 30.934 230.292 12.32 243.188 5.194 C 247.999 2.535 251.739 2.133 253.395 3.616 C 254.772 4.821 254.605 7.547 252.26 11.316 C 248.38 17.533 242.853 22.076 236.675 25.587 Z M 224.318 44.019 C 225.593 43.445 226.867 42.967 228.142 42.584 C 231.511 41.436 233.055 41.331 231.622 44.057 C 230.989 45.282 229.91 46.975 228.552 48.763 C 228.989 46.602 227.612 44.363 224.327 44.01 Z M 347.802 46.391 C 347.616 45.358 346.518 45.655 343.801 47.826 C 339.177 51.423 332.096 55.976 328.913 57.401 C 327.276 58.166 325.917 58.74 325.638 58.176 C 325.452 57.803 325.992 56.77 326.894 55.163 C 329.053 51.394 332.765 46.678 336.385 42.623 C 338.199 40.547 341 37.343 340.07 35.286 C 339.418 33.794 337.604 35.018 333.975 37.39 C 330.16 39.858 320.362 47.147 314.379 51.786 C 317.906 46.975 322.781 40.757 324.959 38.203 C 327.043 35.659 327.759 34.062 327.015 32.005 C 326.271 29.949 325.359 30.331 322.744 33.631 C 321.088 35.726 317.98 40.155 315.17 44.363 C 314.854 44.536 314.519 44.784 314.165 45.129 C 308.005 50.896 301.65 54.876 294.551 57.458 C 292.643 58.128 290.633 58.616 290.084 57.774 C 289.535 56.932 290.159 55.057 290.782 53.642 C 291.592 51.853 292.941 49.777 294.569 47.797 C 301.036 47.281 308.043 44.134 310.75 40.93 C 312.555 38.854 313.095 36.788 312.072 34.54 C 311.057 32.302 309.048 31.938 306.768 32.799 C 303.493 34.043 299.045 37.266 294.886 41.695 C 294.346 42.259 293.89 42.823 293.35 43.397 C 293.071 43.302 292.708 43.12 292.438 42.843 C 291.703 42.192 291.154 42.106 290.522 43.321 C 290.019 44.277 289.777 45.636 290.54 46.716 C 290.038 46.965 289.368 47.463 288.465 48.123 C 286.381 49.634 280.203 53.431 275.383 55.44 C 270.833 57.353 266.552 58.032 264.822 57.583 C 263.631 57.305 263.352 56.282 263.984 54.78 C 264.431 53.651 265.334 52.054 266.599 50.265 C 270.888 50.705 275.532 49.079 279.709 46.602 C 282.157 45.081 283.887 43.761 285.246 42.431 C 287.507 40.069 288.772 37.438 287.656 34.913 C 286.632 32.579 284.539 32.589 281.087 34.023 C 277.355 35.554 274.006 38.012 270.284 41.322 C 268.925 42.546 267.381 44.057 266.031 45.76 C 265.482 45.387 265.473 44.736 265.836 44.076 C 266.106 43.512 266.469 42.852 266.013 42.67 C 265.371 42.393 263.919 42.871 263.007 43.818 C 261.388 45.502 261.425 47.453 262.607 48.735 C 262.347 48.907 262.068 49.079 261.77 49.261 C 257.955 51.537 251.507 54.77 246.231 56.683 C 248.864 54.321 251.572 51.203 253.656 48.563 C 256.094 45.54 257.815 43.005 257.62 41.035 C 257.424 39.447 256.41 38.232 253.023 35.257 C 252.018 34.33 251.832 34.043 251.823 33.392 C 251.823 32.732 252.456 31.976 253.721 30.848 C 254.903 29.805 256.987 28.198 258.615 26.878 C 260.43 25.367 260.328 24.238 259.955 22.832 C 259.676 21.713 258.941 21.531 256.95 22.851 C 255.228 23.99 253.591 25.405 252.056 27.012 C 249.794 29.375 248.808 31.632 248.724 33.411 C 248.641 35.095 249.022 36.874 250.222 38.557 C 251.6 40.518 252.977 41.723 253.079 42.565 C 253.172 43.225 253.088 43.876 251.916 45.196 C 250.018 47.367 247.031 50.294 244.584 52.656 C 241.411 55.775 241.336 57.927 241.895 59.142 C 241.997 60.548 242.555 62.327 245.468 61.552 C 250.427 60.242 256.792 57.066 261.184 54.082 C 260.728 56.301 261.314 58.75 262.514 60.213 C 264.45 62.633 268.553 62.891 276.099 60.022 C 279.97 58.558 284.557 55.995 287.46 53.871 C 287.079 55.861 287.432 57.678 288.502 59.553 C 289.796 61.887 291.806 62.528 294.904 61.657 C 298.989 60.548 304.535 57.726 309.317 54.263 C 308.759 55.756 308.554 57.076 308.834 57.898 C 309.206 58.931 310.211 59.39 312.937 57.401 C 316.743 54.56 323.284 49.921 328.634 46.219 C 326.922 48.668 325.294 51.212 323.945 53.47 C 322.502 55.918 322.158 58.166 322.902 60.414 C 323.647 62.662 324.838 63.685 328.755 62.25 C 332.756 60.816 340.2 56.263 344.825 51.91 C 346.909 50.016 348.174 48.132 347.886 46.353 Z M 308.154 35.994 C 309.066 35.516 309.429 35.324 309.615 35.611 C 309.894 36.176 309.262 37.4 307.717 38.72 C 306.089 40.231 302.813 41.848 299.082 42.814 C 302.339 39.696 306.061 37.046 308.154 35.994 Z M 282.082 37.783 C 283.813 37.017 284.725 36.826 284.818 37.199 C 284.911 37.572 284.101 38.519 282.92 39.552 C 281.738 40.595 280.017 41.819 277.932 43.063 C 275.59 44.466 273.041 45.467 270.386 46.028 C 275.187 41.676 279.272 39.122 282.091 37.783 Z\" fill=\"var(--token-98fe88db-ee3a-4ea8-b7f0-c43f1b098335, rgb(18, 18, 18))\"></path></g></svg>',svgContentId:11031329480,withExternalLayout:true,...addPropertyOverrides({cw8OVO6eH:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 151 38\"><g transform=\"translate(0.001 0.008)\" id=\"ss10653059707_1\"><path d=\"M 29.27 6.353 C 30.171 4.849 30.28 3.837 29.404 2.668 C 28.527 1.499 27.219 1.227 25.564 2.656 C 23.045 4.779 16.641 10.979 11.372 16.2 C 8.764 16.542 5.801 17.092 2.639 17.72 C 1.65 17.93 1.178 17.934 0.94 17.732 C 0.661 17.53 0.504 17.41 0.265 17.534 C 0.027 17.658 -0.086 18.104 0.076 18.748 C 0.318 19.677 0.915 19.958 2.417 19.661 C 4.787 19.198 7.04 18.818 9.095 18.48 C 6.54 21.049 4.537 23.126 3.754 24.023 C 2.93 24.96 2.777 26.055 2.942 26.782 C 3.104 27.467 3.544 27.831 3.935 27.542 C 4.093 27.418 4.052 27.137 4.129 26.769 C 4.166 26.567 4.283 26.323 4.521 26.08 C 5.502 24.981 8.683 21.718 12.337 18.009 C 15.7 17.62 18.466 17.397 20.012 17.872 C 19.31 19.012 18.68 19.946 18.252 20.557 C 14.493 26.051 11.833 30.441 11.449 32.226 C 11.219 33.32 11.344 34.088 11.663 34.287 C 12.063 34.526 12.454 34.159 13.04 33.262 C 13.9 31.961 14.408 31.065 14.76 30.334 C 15.111 29.603 15.147 29.115 14.788 28.756 L 14.707 28.678 C 15.761 26.806 17.251 24.448 19.209 21.561 C 19.677 20.871 20.424 19.731 21.325 18.389 C 21.801 18.587 22.12 18.707 22.314 18.339 C 22.471 18.013 22.386 17.571 22.148 17.166 C 24.849 13.18 28.297 7.972 29.274 6.344 Z M 21.03 16.29 C 19.879 15.774 17.505 15.63 14.497 15.853 C 19.294 11.123 24.401 6.146 26.606 4.225 C 27.47 3.49 27.946 3.242 28.265 3.688 C 28.467 3.969 28.273 4.539 27.841 5.312 C 27.139 6.613 23.735 12.102 21.034 16.29 Z M 39.711 11.945 C 39.953 12.428 40.389 12.709 40.664 12.544 C 40.821 12.461 40.781 12.3 40.817 12.015 C 40.858 11.813 41.132 11.606 41.605 11.363 C 42.432 10.913 43.458 10.376 44.366 9.925 C 45.351 9.434 45.787 9.145 45.388 8.583 C 45.15 8.261 44.673 8.306 43.688 8.678 C 42.82 9.008 41.911 9.339 40.846 9.83 C 39.739 10.326 39.19 10.896 39.711 11.945 Z M 50.564 18.826 C 50.128 18.467 49.611 18.508 48.747 19.041 C 48.662 18.153 48.497 17.385 48.492 16.856 C 49.752 16.038 51.052 15.055 51.246 14.527 C 51.517 13.754 50.681 12.829 49.498 13.205 C 48.315 13.577 47.689 14.675 47.499 15.931 C 47.144 16.257 46.752 16.584 46.357 16.869 C 45.384 17.579 43.062 19.215 41.831 20.082 C 41.576 20.09 41.124 20.404 40.49 20.879 C 39.033 21.941 36.513 23.498 34.301 24.448 C 33.392 24.861 33.078 24.783 33.033 24.456 C 32.993 24.134 33.227 23.684 33.578 23.238 C 34.321 22.259 36.13 20.549 37.272 19.487 C 38.375 18.467 38.411 17.98 38.245 17.253 C 37.999 16.241 37.293 16.654 36.19 17.711 C 35.407 18.463 34.454 19.463 33.534 20.586 C 33.336 20.718 33.114 20.871 32.851 21.053 C 30.805 22.486 27.534 24.37 24.732 25.646 C 23.981 25.976 23.783 25.976 23.743 25.733 C 23.703 25.489 23.937 24.923 24.207 24.394 C 24.987 22.85 26.319 20.817 27.885 18.62 C 31.826 16.121 37.729 11.301 39.485 8.294 C 40.151 7.154 40.498 6.101 40.018 5.213 C 39.497 4.205 38.665 4.374 36.937 5.803 C 32.452 9.521 25.507 18.153 23.012 23.151 C 22.427 24.328 22.358 25.666 22.641 26.596 C 23.045 27.889 23.719 27.926 25.1 27.426 C 26.965 26.753 29.557 25.299 31.673 23.787 C 31.551 24.411 31.624 24.931 31.769 25.353 C 32.294 26.848 33.283 26.798 34.466 26.344 C 36.4 25.6 39.158 24.043 40.692 22.614 C 40.821 22.49 40.938 22.37 41.056 22.246 C 41.213 22.151 41.383 22.04 41.56 21.92 C 42.662 21.185 45.456 19.099 46.68 18.199 L 47.507 17.587 C 47.511 18.277 47.556 19.004 47.56 19.731 L 45.549 20.962 C 44.051 21.862 42.081 23.011 41.253 23.585 C 40.426 24.159 39.998 25.092 40.442 26.183 C 40.886 27.273 41.839 27.752 43.615 27.335 C 44.996 27.001 46.3 26.303 47.322 25.245 C 48.42 24.105 48.807 22.726 48.836 20.904 L 49.938 20.289 C 50.923 19.715 51 19.186 50.56 18.826 Z M 37.741 6.898 C 38.528 6.163 38.96 5.795 38.96 6.121 C 38.96 6.324 38.843 6.609 38.455 7.179 C 36.614 9.822 33.703 12.515 30.635 14.927 C 33.106 11.792 35.738 8.777 37.741 6.902 Z M 46.244 23.634 C 45.432 24.471 44.451 25.114 43.369 25.518 C 42.739 25.766 41.988 25.852 41.827 25.609 C 41.746 25.489 41.746 25.365 42.061 25.163 C 42.929 24.547 44.859 23.32 47.261 21.846 C 47.067 22.536 46.716 23.147 46.244 23.634 Z M 74.364 21.85 C 73.222 22.75 71.607 23.812 70.428 24.551 C 69.875 24.878 69.483 25.043 69.443 24.923 C 69.402 24.803 69.56 24.518 69.713 24.275 C 70.339 23.217 71.163 21.999 71.982 20.776 C 72.531 19.962 72.959 19.107 72.915 18.38 C 72.782 16.48 71.873 16.365 69.943 17.794 C 68.684 18.736 66.911 20.206 65.3 21.553 C 66.007 20.615 66.673 19.64 67.299 18.744 C 67.925 17.769 68.357 17.075 68.55 16.509 C 69.015 15.171 68.615 14.646 68.143 14.568 C 67.864 14.531 67.747 14.733 67.436 15.262 C 67.351 15.406 67.263 15.551 67.174 15.704 C 67.145 15.72 67.117 15.733 67.085 15.749 C 65.43 16.691 63.023 17.48 60.568 17.418 C 60.601 16.323 60.04 15.518 59.289 15.324 C 58.772 15.167 57.944 15.254 57.512 15.824 C 57.314 16.067 57.238 16.394 57.242 16.675 C 55.429 17.74 53.345 19.9 51.743 22.424 C 50.648 24.171 50.616 25.427 51.137 26.191 C 51.617 26.918 52.53 27.112 54.064 26.046 C 56.152 24.613 58.429 22.292 59.68 20.218 C 59.914 19.814 60.149 19.363 60.266 18.917 C 61.897 19.136 63.847 18.963 65.401 18.475 C 64 20.536 62.494 22.54 61.521 23.684 C 60.698 24.7 60.072 25.596 60.274 26.406 C 60.395 26.93 61.069 27.046 62.761 25.658 C 64.65 24.105 68.191 21.206 70.396 19.57 C 70.828 19.244 71.102 19.037 71.183 19.198 C 71.223 19.281 71.183 19.401 70.949 19.768 C 70.4 20.702 69.423 22.048 68.68 23.308 C 67.86 24.733 67.787 25.662 68.07 26.389 C 68.393 27.199 68.95 27.558 70.448 26.695 C 71.865 25.873 73.835 24.564 75.136 23.341 C 76.314 22.201 76.706 21.387 76.464 20.863 C 76.222 20.421 75.555 20.95 74.372 21.85 Z M 58.477 19.173 C 57.419 20.921 55.534 22.92 53.725 24.308 C 53.018 24.84 52.465 25.249 52.344 25.088 C 52.183 24.886 52.538 24.357 53.047 23.506 C 54.298 21.391 56.418 19.107 57.875 17.926 C 58.114 18.166 58.433 18.368 58.788 18.525 C 58.711 18.727 58.594 18.971 58.477 19.173 Z M 102.699 11.036 C 100.886 12.061 99.82 12.23 99.34 11.751 C 98.859 11.268 98.779 10.863 98.581 10.908 C 98.383 10.95 98.387 11.437 98.827 12.325 C 99.388 13.494 100.818 13.808 103.377 12.495 C 106.652 10.809 109.207 8.645 110.689 5.803 C 111.86 3.569 111.731 1.706 110.653 0.743 C 109.619 -0.182 107.718 -0.326 105.231 0.785 C 98.799 3.626 90.542 11.012 87.094 16.059 C 84.002 20.615 84.139 23.568 84.785 25.105 C 85.467 26.72 87.175 27.315 89.937 26.402 C 92.383 25.613 95.815 24.13 97.786 22.945 L 97.826 22.945 C 97.236 23.676 96.611 24.452 95.944 25.266 C 94.14 27.505 92.097 29.83 90.373 31.784 C 91.665 29.871 93.861 26.778 93.502 26.497 C 93.142 26.216 91.18 28.661 89.965 30.086 C 88.75 31.511 87.22 33.345 86.121 34.811 C 85.496 35.625 85.185 36.517 85.467 37.327 C 85.79 38.215 86.735 37.843 87.68 36.988 C 89.412 35.476 93.574 31.073 96.95 26.922 C 99.263 24.151 101.185 21.507 101.847 19.962 C 102.663 18.054 101.387 16.241 98.859 16.947 C 97.043 17.447 94.951 18.351 93.57 19.008 C 92.783 19.38 92.347 19.748 92.513 20.313 C 92.634 20.76 92.872 21.04 93.704 20.788 C 94.531 20.541 95.561 20.247 96.51 20.119 C 97.499 19.991 99.082 20.223 97.543 21.045 C 94.786 22.523 92.258 23.795 90.09 24.58 C 87.603 25.489 86.101 25.621 85.697 24.692 C 85.334 23.845 85.556 21.412 88.455 17.385 C 91.354 13.358 99.925 5.32 105.521 2.243 C 107.609 1.095 109.232 0.921 109.95 1.561 C 110.548 2.082 110.475 3.259 109.458 4.886 C 107.774 7.571 105.376 9.533 102.695 11.049 Z M 97.333 19.008 C 97.886 18.76 98.44 18.554 98.993 18.389 C 100.454 17.893 101.125 17.848 100.503 19.025 C 100.228 19.553 99.76 20.285 99.17 21.057 C 99.36 20.123 98.763 19.157 97.337 19.004 Z M 150.914 20.033 C 150.833 19.586 150.357 19.715 149.178 20.652 C 147.171 22.205 144.099 24.171 142.718 24.787 C 142.008 25.117 141.418 25.365 141.297 25.121 C 141.216 24.96 141.45 24.514 141.842 23.82 C 142.779 22.193 144.39 20.156 145.96 18.405 C 146.747 17.509 147.963 16.125 147.559 15.237 C 147.276 14.593 146.489 15.121 144.914 16.146 C 143.259 17.211 139.008 20.359 136.412 22.362 C 137.942 20.285 140.057 17.6 141.002 16.497 C 141.907 15.398 142.217 14.708 141.894 13.82 C 141.571 12.932 141.176 13.098 140.041 14.523 C 139.323 15.427 137.974 17.34 136.755 19.157 C 136.618 19.231 136.472 19.339 136.319 19.487 C 133.646 21.978 130.888 23.696 127.808 24.811 C 126.98 25.101 126.108 25.311 125.87 24.948 C 125.632 24.584 125.902 23.775 126.173 23.163 C 126.524 22.391 127.109 21.495 127.816 20.64 C 130.622 20.417 133.662 19.058 134.837 17.674 C 135.62 16.778 135.854 15.886 135.41 14.915 C 134.97 13.948 134.098 13.791 133.109 14.163 C 131.688 14.7 129.758 16.092 127.953 18.005 C 127.719 18.248 127.521 18.492 127.287 18.74 C 127.166 18.698 127.008 18.62 126.891 18.5 C 126.572 18.219 126.334 18.182 126.06 18.707 C 125.842 19.12 125.737 19.706 126.068 20.173 C 125.85 20.28 125.559 20.495 125.167 20.78 C 124.263 21.433 121.582 23.073 119.491 23.94 C 117.516 24.766 115.659 25.059 114.908 24.865 C 114.391 24.745 114.27 24.303 114.545 23.655 C 114.739 23.168 115.13 22.478 115.679 21.705 C 117.541 21.895 119.555 21.193 121.368 20.123 C 122.43 19.467 123.181 18.897 123.77 18.323 C 124.752 17.302 125.301 16.166 124.816 15.076 C 124.372 14.068 123.464 14.072 121.966 14.692 C 120.347 15.353 118.893 16.414 117.278 17.843 C 116.689 18.372 116.019 19.025 115.433 19.76 C 115.195 19.599 115.191 19.318 115.348 19.033 C 115.465 18.789 115.623 18.504 115.425 18.426 C 115.146 18.306 114.517 18.513 114.121 18.921 C 113.418 19.648 113.435 20.491 113.947 21.045 C 113.834 21.119 113.713 21.193 113.584 21.272 C 111.929 22.255 109.131 23.651 106.841 24.477 C 107.984 23.457 109.159 22.11 110.063 20.97 C 111.121 19.665 111.868 18.57 111.783 17.72 C 111.699 17.034 111.258 16.509 109.789 15.225 C 109.353 14.824 109.272 14.7 109.268 14.419 C 109.268 14.134 109.543 13.808 110.092 13.321 C 110.604 12.87 111.509 12.176 112.215 11.606 C 113.003 10.954 112.958 10.466 112.797 9.859 C 112.676 9.376 112.357 9.298 111.493 9.868 C 110.746 10.359 110.035 10.97 109.369 11.664 C 108.388 12.685 107.96 13.659 107.924 14.428 C 107.887 15.155 108.053 15.923 108.574 16.65 C 109.171 17.496 109.769 18.017 109.813 18.38 C 109.853 18.665 109.817 18.946 109.308 19.516 C 108.485 20.454 107.189 21.718 106.127 22.738 C 104.75 24.085 104.718 25.014 104.96 25.538 C 105.004 26.146 105.247 26.914 106.51 26.579 C 108.662 26.013 111.424 24.642 113.33 23.353 C 113.132 24.312 113.386 25.369 113.907 26.001 C 114.747 27.046 116.527 27.158 119.802 25.918 C 121.481 25.286 123.472 24.18 124.731 23.263 C 124.566 24.122 124.719 24.906 125.184 25.716 C 125.745 26.724 126.617 27.001 127.961 26.625 C 129.734 26.146 132.14 24.927 134.215 23.432 C 133.973 24.076 133.884 24.646 134.005 25.001 C 134.167 25.448 134.603 25.646 135.786 24.787 C 137.437 23.56 140.275 21.557 142.597 19.958 C 141.854 21.016 141.148 22.114 140.562 23.089 C 139.936 24.146 139.787 25.117 140.11 26.088 C 140.433 27.058 140.95 27.5 142.649 26.881 C 144.386 26.261 147.616 24.295 149.622 22.416 C 150.527 21.598 151.076 20.784 150.95 20.016 Z M 133.711 15.543 C 134.106 15.336 134.264 15.254 134.344 15.378 C 134.466 15.621 134.191 16.15 133.521 16.72 C 132.814 17.373 131.393 18.071 129.774 18.488 C 131.187 17.141 132.802 15.997 133.711 15.543 Z M 122.398 16.315 C 123.149 15.985 123.544 15.902 123.585 16.063 C 123.625 16.224 123.274 16.633 122.761 17.079 C 122.248 17.53 121.501 18.058 120.597 18.595 C 119.581 19.201 118.475 19.634 117.323 19.876 C 119.406 17.996 121.178 16.893 122.402 16.315 Z\" fill=\"var(--token-98fe88db-ee3a-4ea8-b7f0-c43f1b098335, rgb(18, 18, 18))\"></path></g></svg>',svgContentId:10653059707},VV8pFprAD:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 228 57\"><g transform=\"translate(0.002 0.013)\" id=\"ss10120136494_1\"><path d=\"M 44.196 9.528 C 45.556 7.273 45.72 5.755 44.397 4.002 C 43.074 2.248 41.099 1.839 38.6 3.983 C 34.796 7.168 25.127 16.467 17.171 24.299 C 13.233 24.813 8.759 25.637 3.985 26.579 C 2.492 26.895 1.778 26.901 1.419 26.597 C 0.998 26.294 0.76 26.114 0.401 26.3 C 0.041 26.486 -0.13 27.155 0.114 28.121 C 0.48 29.515 1.382 29.937 3.65 29.491 C 7.228 28.797 10.63 28.227 13.733 27.719 C 9.874 31.572 6.85 34.689 5.668 36.033 C 4.424 37.44 4.192 39.081 4.442 40.172 C 4.686 41.2 5.351 41.746 5.942 41.312 C 6.18 41.126 6.119 40.705 6.235 40.153 C 6.29 39.85 6.466 39.484 6.826 39.119 C 8.307 37.471 13.111 32.576 18.628 27.012 C 23.707 26.43 27.883 26.095 30.217 26.808 C 29.157 28.518 28.206 29.918 27.559 30.835 C 21.884 39.075 17.866 45.661 17.287 48.338 C 16.94 49.98 17.129 51.132 17.61 51.429 C 18.214 51.789 18.805 51.237 19.689 49.893 C 20.988 47.941 21.756 46.597 22.286 45.5 C 22.817 44.404 22.871 43.672 22.329 43.133 L 22.207 43.016 C 23.798 40.209 26.048 36.671 29.004 32.341 C 29.711 31.306 30.839 29.596 32.199 27.582 C 32.918 27.88 33.4 28.059 33.692 27.508 C 33.93 27.019 33.802 26.356 33.442 25.748 C 37.521 19.77 42.727 11.957 44.202 9.516 Z M 31.754 24.435 C 30.016 23.661 26.432 23.444 21.89 23.778 C 29.132 16.684 36.844 9.218 40.173 6.337 C 41.477 5.235 42.197 4.863 42.678 5.532 C 42.983 5.953 42.69 6.808 42.038 7.967 C 40.977 9.919 35.838 18.153 31.76 24.435 Z M 59.961 17.917 C 60.327 18.642 60.985 19.063 61.4 18.816 C 61.637 18.692 61.577 18.45 61.631 18.022 C 61.692 17.719 62.107 17.409 62.82 17.044 C 64.07 16.368 65.618 15.563 66.99 14.887 C 68.477 14.15 69.136 13.716 68.532 12.874 C 68.173 12.391 67.453 12.459 65.966 13.016 C 64.655 13.512 63.283 14.008 61.674 14.745 C 60.004 15.488 59.175 16.343 59.961 17.917 Z M 76.348 28.239 C 75.689 27.7 74.909 27.762 73.604 28.561 C 73.476 27.229 73.226 26.077 73.22 25.284 C 75.122 24.057 77.085 22.582 77.378 21.789 C 77.786 20.631 76.525 19.243 74.738 19.807 C 72.952 20.364 72.007 22.012 71.721 23.896 C 71.184 24.385 70.593 24.875 69.995 25.302 C 68.526 26.368 65.021 28.821 63.162 30.123 C 62.777 30.135 62.095 30.606 61.138 31.318 C 58.937 32.911 55.133 35.246 51.792 36.671 C 50.42 37.291 49.945 37.173 49.878 36.684 C 49.817 36.201 50.17 35.525 50.701 34.856 C 51.823 33.388 54.554 30.823 56.279 29.23 C 57.943 27.7 57.998 26.969 57.748 25.879 C 57.376 24.361 56.309 24.98 54.645 26.566 C 53.462 27.694 52.024 29.193 50.634 30.878 C 50.335 31.077 50 31.306 49.603 31.579 C 46.513 33.728 41.575 36.554 37.344 38.468 C 36.21 38.964 35.911 38.964 35.85 38.598 C 35.789 38.233 36.143 37.384 36.551 36.591 C 37.728 34.274 39.74 31.225 42.105 27.929 C 48.055 24.181 56.968 16.951 59.62 12.44 C 60.626 10.73 61.15 9.15 60.424 7.818 C 59.638 6.306 58.382 6.561 55.773 8.704 C 49 14.28 38.514 27.229 34.747 34.726 C 33.863 36.492 33.759 38.499 34.186 39.893 C 34.796 41.832 35.814 41.888 37.899 41.138 C 40.715 40.129 44.629 37.948 47.823 35.68 C 47.64 36.616 47.75 37.396 47.97 38.028 C 48.762 40.271 50.256 40.197 52.042 39.515 C 54.962 38.4 59.126 36.064 61.442 33.921 C 61.637 33.735 61.814 33.555 61.991 33.369 C 62.229 33.227 62.485 33.059 62.753 32.88 C 64.417 31.777 68.636 28.648 70.483 27.297 L 71.733 26.38 C 71.739 27.415 71.806 28.506 71.812 29.596 L 68.776 31.442 C 66.515 32.793 63.54 34.515 62.29 35.376 C 61.04 36.238 60.394 37.638 61.064 39.274 C 61.735 40.909 63.174 41.628 65.856 41.002 C 67.941 40.5 69.91 39.453 71.452 37.867 C 73.111 36.157 73.696 34.088 73.739 31.356 L 75.403 30.432 C 76.89 29.571 77.006 28.778 76.342 28.239 Z M 56.986 10.346 C 58.175 9.243 58.827 8.692 58.827 9.181 C 58.827 9.485 58.65 9.912 58.065 10.767 C 55.285 14.733 50.89 18.772 46.257 22.39 C 49.988 17.688 53.962 13.165 56.986 10.352 Z M 69.825 35.451 C 68.6 36.705 67.118 37.67 65.484 38.276 C 64.533 38.648 63.399 38.778 63.155 38.412 C 63.034 38.233 63.034 38.047 63.509 37.743 C 64.82 36.82 67.734 34.98 71.361 32.768 C 71.068 33.803 70.538 34.72 69.825 35.451 Z M 112.285 32.774 C 110.56 34.125 108.121 35.717 106.341 36.826 C 105.506 37.316 104.915 37.564 104.854 37.384 C 104.793 37.204 105.031 36.777 105.262 36.411 C 106.207 34.825 107.451 32.997 108.688 31.163 C 109.518 29.943 110.164 28.66 110.097 27.57 C 109.895 24.72 108.524 24.546 105.61 26.69 C 103.708 28.103 101.032 30.308 98.599 32.328 C 99.666 30.922 100.672 29.46 101.617 28.115 C 102.562 26.653 103.214 25.612 103.507 24.763 C 104.208 22.756 103.604 21.969 102.891 21.851 C 102.47 21.796 102.293 22.099 101.824 22.892 C 101.696 23.109 101.562 23.326 101.428 23.555 C 101.385 23.58 101.342 23.599 101.294 23.623 C 98.794 25.036 95.161 26.219 91.454 26.126 C 91.503 24.485 90.656 23.276 89.522 22.985 C 88.741 22.75 87.492 22.88 86.839 23.735 C 86.541 24.1 86.425 24.59 86.431 25.011 C 83.694 26.61 80.548 29.85 78.128 33.636 C 76.476 36.256 76.427 38.14 77.213 39.286 C 77.939 40.376 79.317 40.668 81.633 39.069 C 84.785 36.919 88.223 33.437 90.113 30.327 C 90.467 29.72 90.82 29.045 90.997 28.375 C 93.46 28.704 96.404 28.444 98.752 27.712 C 96.636 30.804 94.362 33.809 92.893 35.525 C 91.649 37.049 90.704 38.394 91.009 39.608 C 91.192 40.395 92.21 40.568 94.765 38.487 C 97.618 36.157 102.964 31.808 106.293 29.354 C 106.945 28.865 107.359 28.555 107.481 28.797 C 107.542 28.921 107.481 29.1 107.128 29.652 C 106.299 31.052 104.823 33.072 103.702 34.961 C 102.464 37.099 102.354 38.493 102.781 39.583 C 103.269 40.798 104.11 41.337 106.372 40.042 C 108.512 38.809 111.487 36.845 113.45 35.011 C 115.23 33.301 115.821 32.08 115.455 31.294 C 115.089 30.631 114.084 31.424 112.297 32.774 Z M 88.296 28.76 C 86.699 31.38 83.852 34.379 81.121 36.461 C 80.054 37.26 79.219 37.873 79.036 37.632 C 78.792 37.328 79.329 36.535 80.097 35.259 C 81.987 32.087 85.187 28.66 87.388 26.888 C 87.748 27.248 88.229 27.551 88.766 27.787 C 88.65 28.09 88.473 28.456 88.296 28.76 Z M 155.069 16.554 C 152.331 18.091 150.722 18.345 149.997 17.626 C 149.271 16.901 149.149 16.294 148.851 16.362 C 148.552 16.424 148.558 17.155 149.222 18.487 C 150.07 20.241 152.228 20.711 156.093 18.741 C 161.037 16.213 164.896 12.967 167.133 8.704 C 168.901 5.352 168.706 2.558 167.078 1.115 C 165.518 -0.273 162.646 -0.49 158.891 1.176 C 149.18 5.439 136.713 16.517 131.507 24.088 C 126.837 30.922 127.044 35.352 128.02 37.656 C 129.05 40.079 131.629 40.971 135.798 39.602 C 139.493 38.419 144.675 36.194 147.65 34.416 L 147.711 34.416 C 146.82 35.513 145.876 36.678 144.87 37.898 C 142.145 41.256 139.06 44.744 136.457 47.675 C 138.408 44.806 141.724 40.166 141.181 39.744 C 140.639 39.323 137.676 42.991 135.841 45.128 C 134.006 47.266 131.696 50.017 130.037 52.216 C 129.093 53.437 128.623 54.775 129.05 55.989 C 129.538 57.321 130.964 56.764 132.391 55.481 C 135.006 53.214 141.291 46.609 146.388 40.383 C 149.881 36.225 152.783 32.26 153.782 29.943 C 155.014 27.081 153.087 24.361 149.271 25.42 C 146.528 26.17 143.37 27.527 141.285 28.512 C 140.096 29.069 139.438 29.621 139.688 30.47 C 139.871 31.139 140.23 31.56 141.486 31.182 C 142.736 30.81 144.291 30.37 145.723 30.178 C 147.217 29.986 149.606 30.333 147.284 31.566 C 143.12 33.784 139.304 35.692 136.03 36.87 C 132.275 38.233 130.007 38.431 129.397 37.037 C 128.849 35.767 129.184 32.118 133.561 26.077 C 137.938 20.036 150.881 7.979 159.33 3.364 C 162.482 1.641 164.932 1.381 166.018 2.341 C 166.92 3.122 166.81 4.888 165.274 7.329 C 162.732 11.356 159.111 14.299 155.063 16.573 Z M 146.967 28.512 C 147.802 28.14 148.637 27.83 149.472 27.582 C 151.679 26.839 152.691 26.771 151.752 28.536 C 151.338 29.33 150.631 30.426 149.741 31.585 C 150.027 30.185 149.125 28.735 146.973 28.506 Z M 227.87 30.048 C 227.748 29.379 227.029 29.571 225.249 30.978 C 222.219 33.307 217.58 36.256 215.495 37.179 C 214.422 37.675 213.532 38.047 213.349 37.681 C 213.227 37.44 213.581 36.771 214.172 35.73 C 215.586 33.289 218.019 30.234 220.39 27.607 C 221.579 26.263 223.414 24.187 222.804 22.855 C 222.378 21.889 221.189 22.682 218.811 24.218 C 216.312 25.817 209.892 30.538 205.972 33.543 C 208.283 30.426 211.477 26.399 212.904 24.745 C 214.269 23.097 214.739 22.062 214.251 20.73 C 213.764 19.398 213.166 19.646 211.453 21.783 C 210.368 23.14 208.332 26.009 206.491 28.735 C 206.283 28.846 206.064 29.007 205.832 29.23 C 201.797 32.966 197.633 35.544 192.981 37.217 C 191.732 37.65 190.415 37.966 190.055 37.421 C 189.695 36.876 190.104 35.661 190.512 34.745 C 191.043 33.586 191.927 32.241 192.994 30.959 C 197.23 30.624 201.821 28.586 203.595 26.511 C 204.778 25.166 205.131 23.828 204.461 22.372 C 203.796 20.922 202.479 20.687 200.986 21.244 C 198.84 22.05 195.926 24.138 193.201 27.006 C 192.847 27.372 192.549 27.737 192.195 28.109 C 192.012 28.047 191.774 27.929 191.598 27.75 C 191.116 27.328 190.756 27.273 190.342 28.059 C 190.012 28.679 189.854 29.559 190.354 30.259 C 190.025 30.42 189.586 30.742 188.994 31.17 C 187.629 32.149 183.581 34.608 180.423 35.909 C 177.442 37.148 174.638 37.588 173.504 37.297 C 172.724 37.117 172.541 36.455 172.955 35.482 C 173.248 34.751 173.839 33.716 174.668 32.557 C 177.479 32.842 180.521 31.789 183.258 30.185 C 184.861 29.199 185.995 28.344 186.885 27.483 C 188.367 25.953 189.196 24.249 188.464 22.613 C 187.793 21.102 186.422 21.108 184.16 22.037 C 181.715 23.029 179.521 24.621 177.082 26.765 C 176.192 27.558 175.18 28.536 174.296 29.639 C 173.937 29.398 173.931 28.976 174.168 28.549 C 174.345 28.183 174.583 27.756 174.284 27.638 C 173.864 27.458 172.912 27.768 172.315 28.382 C 171.254 29.472 171.279 30.736 172.053 31.566 C 171.882 31.678 171.699 31.789 171.504 31.907 C 169.005 33.381 164.78 35.476 161.324 36.715 C 163.049 35.184 164.823 33.165 166.188 31.455 C 167.786 29.497 168.913 27.855 168.785 26.579 C 168.657 25.55 167.993 24.763 165.774 22.836 C 165.115 22.236 164.993 22.05 164.987 21.628 C 164.987 21.201 165.402 20.711 166.231 19.98 C 167.005 19.305 168.371 18.264 169.438 17.409 C 170.626 16.43 170.559 15.699 170.315 14.788 C 170.133 14.063 169.651 13.946 168.346 14.801 C 167.219 15.538 166.146 16.455 165.14 17.496 C 163.658 19.026 163.012 20.488 162.957 21.641 C 162.902 22.731 163.152 23.884 163.939 24.974 C 164.841 26.244 165.743 27.025 165.81 27.57 C 165.871 27.997 165.816 28.419 165.048 29.274 C 163.805 30.68 161.848 32.576 160.244 34.106 C 158.166 36.126 158.117 37.52 158.483 38.307 C 158.55 39.218 158.915 40.37 160.824 39.868 C 164.073 39.02 168.243 36.963 171.12 35.03 C 170.821 36.467 171.206 38.053 171.992 39.001 C 173.26 40.568 175.948 40.736 180.892 38.877 C 183.429 37.929 186.434 36.269 188.336 34.893 C 188.086 36.182 188.318 37.359 189.019 38.573 C 189.866 40.085 191.183 40.5 193.213 39.936 C 195.889 39.218 199.523 37.39 202.656 35.147 C 202.29 36.114 202.156 36.969 202.339 37.502 C 202.583 38.171 203.241 38.468 205.028 37.179 C 207.521 35.339 211.807 32.334 215.312 29.937 C 214.19 31.523 213.123 33.171 212.239 34.633 C 211.295 36.219 211.069 37.675 211.557 39.131 C 212.044 40.587 212.825 41.25 215.391 40.321 C 218.013 39.391 222.89 36.442 225.919 33.623 C 227.285 32.396 228.114 31.176 227.925 30.023 Z M 201.894 23.314 C 202.492 23.004 202.729 22.88 202.851 23.066 C 203.034 23.431 202.62 24.224 201.608 25.079 C 200.541 26.058 198.395 27.105 195.95 27.731 C 198.084 25.711 200.522 23.995 201.894 23.314 Z M 184.812 24.472 C 185.946 23.976 186.544 23.853 186.605 24.094 C 186.666 24.336 186.135 24.949 185.361 25.618 C 184.587 26.294 183.459 27.087 182.093 27.892 C 180.559 28.801 178.889 29.45 177.149 29.813 C 180.295 26.994 182.971 25.34 184.818 24.472 Z\" fill=\"var(--token-98fe88db-ee3a-4ea8-b7f0-c43f1b098335, rgb(18, 18, 18))\"></path></g></svg>',svgContentId:10120136494}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-p1erp2\",\"data-framer-name\":\"Right Buttons\",layoutDependency:layoutDependency,layoutId:\"j6nd2YxwS\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7zujmh-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ZGGVXCpWE-container\",nodeId:\"ZGGVXCpWE\",rendersWithMotion:true,scopeId:\"VupJr34s5\",children:/*#__PURE__*/_jsx(TimeDate,{color:\"rgb(153, 153, 153)\",font:{fontFamily:'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"ZGGVXCpWE\",layoutId:\"ZGGVXCpWE\",monthFormat:\"long\",outputType:\"time\",showMinutes:true,showMonth:true,showSeconds:false,showWeekday:true,showYear:true,tabularFont:true,timeFormat:\"12h\",width:\"100%\"})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1jdqY.framer-1mz0f9h, .framer-1jdqY .framer-1mz0f9h { display: block; }\",\".framer-1jdqY.framer-e8uqzl { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-1jdqY .framer-1tnocgr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 103px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 928px; }\",\".framer-1jdqY .framer-1pksxpi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 50px; min-width: 40px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-1jdqY .framer-2galm7-container { flex: none; height: auto; left: 0px; position: absolute; top: 0px; width: auto; z-index: 10; }\",\".framer-1jdqY .framer-1oh5z20, .framer-1jdqY .framer-p1erp2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-1jdqY .framer-56orb7 { flex: none; height: 88px; position: relative; text-decoration: none; width: 348px; }\",\".framer-1jdqY .framer-7zujmh-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1jdqY.framer-e8uqzl, .framer-1jdqY .framer-1pksxpi, .framer-1jdqY .framer-1oh5z20, .framer-1jdqY .framer-p1erp2 { gap: 0px; } .framer-1jdqY.framer-e8uqzl > *, .framer-1jdqY .framer-1pksxpi > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-1jdqY.framer-e8uqzl > :first-child, .framer-1jdqY .framer-1pksxpi > :first-child, .framer-1jdqY .framer-1oh5z20 > :first-child, .framer-1jdqY .framer-p1erp2 > :first-child { margin-left: 0px; } .framer-1jdqY.framer-e8uqzl > :last-child, .framer-1jdqY .framer-1pksxpi > :last-child, .framer-1jdqY .framer-1oh5z20 > :last-child, .framer-1jdqY .framer-p1erp2 > :last-child { margin-right: 0px; } .framer-1jdqY .framer-1oh5z20 > *, .framer-1jdqY .framer-p1erp2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-1jdqY.framer-v-oy2jbk.framer-e8uqzl { width: 810px; }\",\".framer-1jdqY.framer-v-oy2jbk .framer-1tnocgr { width: 730px; }\",\".framer-1jdqY.framer-v-oy2jbk .framer-56orb7 { height: 57px; width: 228px; }\",\".framer-1jdqY.framer-v-xz6q2v.framer-e8uqzl { flex-direction: column; width: 390px; }\",\".framer-1jdqY.framer-v-xz6q2v .framer-1tnocgr { width: 90%; }\",\".framer-1jdqY.framer-v-xz6q2v .framer-56orb7 { height: 38px; width: 151px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1jdqY.framer-v-xz6q2v.framer-e8uqzl { gap: 0px; } .framer-1jdqY.framer-v-xz6q2v.framer-e8uqzl > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-1jdqY.framer-v-xz6q2v.framer-e8uqzl > :first-child { margin-top: 0px; } .framer-1jdqY.framer-v-xz6q2v.framer-e8uqzl > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 103\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"VV8pFprAD\":{\"layout\":[\"fixed\",\"auto\"]},\"cw8OVO6eH\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVupJr34s5=withCSS(Component,css,\"framer-1jdqY\");export default FramerVupJr34s5;FramerVupJr34s5.displayName=\"Navigation\";FramerVupJr34s5.defaultProps={height:103,width:1200};addPropertyControls(FramerVupJr34s5,{variant:{options:[\"E4LM4Av92\",\"VV8pFprAD\",\"cw8OVO6eH\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerVupJr34s5,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"}]},...NavigationMenu2Fonts,...TimeDateFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVupJr34s5\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VV8pFprAD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cw8OVO6eH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"103\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["fontStack", "formatTimeOrDate", "outputType", "showYear", "showMonth", "showWeekday", "showMinutes", "showSeconds", "timeFormat", "monthFormat", "localCode", "date", "onlyYearIsShown", "defaultProps", "Time", "props", "mergedProps", "color", "font", "tabularFont", "useLocaleCode", "getTextContent", "te", "timeoutRef", "pe", "updateCountdown", "node", "prev", "tick", "next", "textContent", "visible", "setIsVisible", "ye", "isCanvas", "RenderTarget", "ue", "Z", "p", "addPropertyControls", "ControlType", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "tap", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "seqedYYSX", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1iygu7m", "args", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "css", "FramerRMEb2rMaN", "withCSS", "RMEb2rMaN_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavigationMenuBurgerFonts", "getFonts", "RMEb2rMaN_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "p11tDEo3S", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapj59ti8", "args", "seqedYYSX1c3g2u", "seqedYYSX1q4kzoc", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "Link", "css", "FramerhcbsUvBNF", "withCSS", "hcbsUvBNF_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavigationMenu2Fonts", "getFonts", "hcbsUvBNF_default", "TimeDateFonts", "Time", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "p11tDEo3S180hetv", "args", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Link", "SVG", "css", "FramerVupJr34s5", "withCSS", "VupJr34s5_default", "addPropertyControls", "ControlType", "addFonts"]
}
