{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/YOcbb3cyk0md6ytVCE3R/Animator.js", "ssg:https://framerusercontent.com/modules/wr2rMCuXD2gVmmgsveUj/Ehk8JRjPxly0E4M9YLCu/m01H6b2GV.js", "ssg:https://framerusercontent.com/modules/o6Vj0xNFcyhLNm7RJEOk/6M5gRAnIpXaUid9EU2mi/n8cnDcXiJ.js", "ssg:https://framerusercontent.com/modules/Vf4KAwyFE5BSdfT5p7Qz/6Lc7orh3ZlwfaQ64z599/RHxkECKKe.js", "ssg:https://framerusercontent.com/modules/trdOj0urCKTfaUI7x1of/qMMKH1hT8jwvdRIFRQrX/RMEb2rMaN.js", "ssg:https://framerusercontent.com/modules/9sWlyRheQNv1I6z5gxhE/wFzFdX1WoXyKeLdR6xEH/nFR6xeKG9.js", "ssg:https://framerusercontent.com/modules/wOBFQaLwW33dBliqbNdV/UkB5wZ28OGZ9GpjREf8U/Gs1F4qtm8.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,useMotionValue,useTransform}from\"framer-motion\";/**\n * ANIMATOR\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Animator(props){/* Properties */const{pathAnimation,from,to,animate,shouldLoop,loopOptions,slots=[],endCircle}=props;/* State */const hasChildren=Children.count(slots)>0;/* Empty State */let customShape=/*#__PURE__*/_jsxs(\"div\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u270D\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Graphic\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Animates single or joined paths on Web Pages only.\"})]});if(hasChildren){/* Grab the SVG from the Graphic */const firstChild=getFirstChild(slots);const svgChild=getFirstChild(firstChild.props.svg);const isSpring=pathAnimation.type===\"spring\";/* Shape transition properties *//* Dividing stiffness and damping by 1000 is a trick I got from Matt \n        which helps with pathLength animations, which otherwise are so fast \n        you never even see them happen in the preview. */const shapeTransition={pathLength:{...pathAnimation,repeat:shouldLoop?Infinity:0,repeatType:loopOptions,stiffness:isSpring?pathAnimation.stiffness/1e3:pathAnimation.stiffness,damping:isSpring?pathAnimation.damping/1e3:pathAnimation.damping}};/* Add our own properties to the Path */const pathLength=useMotionValue(0);const opacity=useTransform(pathLength,[0,.025],[0,1]);const shapeProps={variants:{start:{pathLength:from/100},end:{pathLength:to/100}},transition:shapeTransition};/* Prevent animating or adjusting pathLength on the Canvas */const isCanvas=RenderTarget.current()===RenderTarget.canvas;/* Just render the full connected Graphic on Canvas, when connected */if(isCanvas){customShape=firstChild;}/* If on a web page */if(!isCanvas&&svgChild){/* Pass Attributes */let attributes=svgChild.match(/[\\w-]+=\"[^\"]*\"/g);let pathD;let stroke;let strokeWidth;let strokeLinecap;let strokeLinejoin;for(const element of attributes){if(element.includes(\"d=\")){pathD=splitAndReplace(element);}if(element.includes(\"stroke=\")){stroke=splitAndReplace(element);}if(element.includes(\"stroke-width=\")){strokeWidth=splitAndReplace(element);}if(element.includes(\"stroke-linecap=\")){strokeLinecap=splitAndReplace(element);}if(element.includes(\"stroke-linejoin=\")){strokeLinejoin=splitAndReplace(element);}}/* Grab viewbox */let svgViewbox;svgViewbox=svgChild.split(\"viewBox=\")[1];svgViewbox=svgViewbox.split(\">\")[0];svgViewbox=svgViewbox.replace(/^\"(.+(?=\"$))\"$/,\"$1\");customShape=/*#__PURE__*/_jsx(motion.div,{initial:isCanvas||animate===false?false:\"start\",animate:isCanvas||animate===false?false:\"end\",style:{width:\"100%\",height:\"100%\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",backgroundColor:\"transparent\",overflow:\"hidden\"},children:/*#__PURE__*/_jsx(motion.svg,{xmlns:\"http://www.w3.org/2000/svg\",width:\"100%\",height:\"100%\",viewBox:svgViewbox,children:/*#__PURE__*/_jsx(motion.path,{...shapeProps,d:pathD,stroke:stroke,strokeWidth:strokeWidth,strokeLinejoin:strokeLinejoin,strokeLinecap:strokeLinecap,fill:\"transparent\",style:!endCircle&&{pathLength,opacity},initial:isCanvas||animate===false?false:\"start\",animate:isCanvas||animate===false?false:\"end\"})})});}}return customShape;}/* Default Properties */Animator.defaultProps={animate:true,shouldLoop:false,loopOptions:\"reverse\",from:0,to:100,pathAnimation:{type:\"tween\",duration:2},endCircle:true};/* Property Controls */addPropertyControls(Animator,{slots:{type:ControlType.ComponentInstance,title:\"Children\"},animate:{title:\"Animate\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.animate,enabledTitle:\"True\",disabledTitle:\"False\"},shouldLoop:{title:\"Loop\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.shouldLoop,enabledTitle:\"True\",disabledTitle:\"False\",hidden(props){return props.animate===false;}},loopOptions:{type:ControlType.Enum,title:\"Type\",defaultValue:Animator.defaultProps.loopOptions,options:[\"loop\",\"reverse\",\"mirror\"],optionTitles:[\"Loop\",\"Reverse\",\"Mirror\"],hidden(props){return props.shouldLoop===false;}},endCircle:{title:\"End Circle\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.endCircle,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden(props){return props.animate===false;}},from:{title:\"From\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.from,unit:\"%\",hidden(props){return props.animate===false;}},to:{title:\"To\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.to,unit:\"%\",hidden(props){return props.animate===false;}},pathAnimation:{title:\" \",type:ControlType.Transition,defaultValue:Animator.defaultProps.pathAnimation,hidden(props){return props.animate===false;}}});/* Method to get stringless attributes */const splitAndReplace=string=>{return string.split(\"=\")[1].replace(/['\"]+/g,\"\");};/* Method to get the first child */function getFirstChild(slots){let firstChild;Children.map(slots,child=>{if(firstChild===undefined){firstChild=child;}});return firstChild;}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Animator\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Animator.map", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={YgC8qs65R:{hover:true}};const serializationHash=\"framer-ouiaq\";const variantClassNames={YgC8qs65R:\"framer-v-sqrwfh\"};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 getProps=({height,hoverBGColor,hoverTitleColor,id,link,mainBGColor,mainTitleColor,newTab,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4;return{...props,gJtx4y_sc:(_ref=hoverTitleColor!==null&&hoverTitleColor!==void 0?hoverTitleColor:props.gJtx4y_sc)!==null&&_ref!==void 0?_ref:\"var(--token-6f16ebfe-5b29-4421-be70-dd3b31451ce2, rgb(255, 255, 255))\",L6sgmO3Wj:newTab!==null&&newTab!==void 0?newTab:props.L6sgmO3Wj,LAY2dqF4k:(_ref1=mainBGColor!==null&&mainBGColor!==void 0?mainBGColor:props.LAY2dqF4k)!==null&&_ref1!==void 0?_ref1:\"var(--token-4724c72d-5fe6-46a9-889f-664e959c9af4, rgb(34, 34, 34))\",nF7ayydAH:link!==null&&link!==void 0?link:props.nF7ayydAH,oPPvRVjNa:(_ref2=mainTitleColor!==null&&mainTitleColor!==void 0?mainTitleColor:props.oPPvRVjNa)!==null&&_ref2!==void 0?_ref2:\"var(--token-6f16ebfe-5b29-4421-be70-dd3b31451ce2, rgb(255, 255, 255))\",WER6zK6AJ:(_ref3=title!==null&&title!==void 0?title:props.WER6zK6AJ)!==null&&_ref3!==void 0?_ref3:\"Title\",YrtOUhNGH:(_ref4=hoverBGColor!==null&&hoverBGColor!==void 0?hoverBGColor:props.YrtOUhNGH)!==null&&_ref4!==void 0?_ref4:\"var(--token-c4076626-00c3-424e-9567-e9785564723e, rgba(34, 34, 34, 0.7))\"};};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,nF7ayydAH,L6sgmO3Wj,WER6zK6AJ,oPPvRVjNa,LAY2dqF4k,gJtx4y_sc,YrtOUhNGH,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"YgC8qs65R\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:nF7ayydAH,openInNewTab:L6sgmO3Wj,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-sqrwfh\",className,classNames)} framer-t1nd7h`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"YgC8qs65R\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:LAY2dqF4k,borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,...style},variants:{\"YgC8qs65R-hover\":{backgroundColor:YrtOUhNGH}},...addPropertyOverrides({\"YgC8qs65R-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-oPPvRVjNa-m01H6b2GV))\"},children:\"Title\"})}),className:\"framer-lkndne\",fonts:[\"GF;DM Sans-600\"],layoutDependency:layoutDependency,layoutId:\"kLvsm3eL_\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-oPPvRVjNa-m01H6b2GV)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-gJtx4y_sc-m01H6b2GV\":gJtx4y_sc,\"--variable-reference-oPPvRVjNa-m01H6b2GV\":oPPvRVjNa},text:WER6zK6AJ,variants:{\"YgC8qs65R-hover\":{\"--extracted-r6o4lv\":\"var(--variable-reference-gJtx4y_sc-m01H6b2GV)\",\"--variable-reference-gJtx4y_sc-m01H6b2GV\":gJtx4y_sc}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"YgC8qs65R-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-gJtx4y_sc-m01H6b2GV))\"},children:\"Title\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ouiaq.framer-t1nd7h, .framer-ouiaq .framer-t1nd7h { display: block; }\",\".framer-ouiaq.framer-sqrwfh { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 12px 32px 12px 32px; position: relative; text-decoration: none; width: min-content; }\",\".framer-ouiaq .framer-lkndne { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ouiaq.framer-sqrwfh { gap: 0px; } .framer-ouiaq.framer-sqrwfh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ouiaq.framer-sqrwfh > :first-child { margin-left: 0px; } .framer-ouiaq.framer-sqrwfh > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 98\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"b0J311yFK\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"nF7ayydAH\":\"link\",\"L6sgmO3Wj\":\"newTab\",\"WER6zK6AJ\":\"title\",\"oPPvRVjNa\":\"mainTitleColor\",\"LAY2dqF4k\":\"mainBGColor\",\"gJtx4y_sc\":\"hoverTitleColor\",\"YrtOUhNGH\":\"hoverBGColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerm01H6b2GV=withCSS(Component,css,\"framer-ouiaq\");export default Framerm01H6b2GV;Framerm01H6b2GV.displayName=\"Buttons/Button CocoBasic\";Framerm01H6b2GV.defaultProps={height:42,width:98};addPropertyControls(Framerm01H6b2GV,{nF7ayydAH:{title:\"Link\",type:ControlType.Link},L6sgmO3Wj:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},WER6zK6AJ:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},oPPvRVjNa:{defaultValue:'var(--token-6f16ebfe-5b29-4421-be70-dd3b31451ce2, rgb(255, 255, 255)) /* {\"name\":\"Main Light 100%\"} */',title:\"Main Title Color\",type:ControlType.Color},LAY2dqF4k:{defaultValue:'var(--token-4724c72d-5fe6-46a9-889f-664e959c9af4, rgb(34, 34, 34)) /* {\"name\":\"Main Dark 100%\"} */',title:\"Main BG Color\",type:ControlType.Color},gJtx4y_sc:{defaultValue:'var(--token-6f16ebfe-5b29-4421-be70-dd3b31451ce2, rgb(255, 255, 255)) /* {\"name\":\"Main Light 100%\"} */',title:\"Hover Title Color\",type:ControlType.Color},YrtOUhNGH:{defaultValue:'var(--token-c4076626-00c3-424e-9567-e9785564723e, rgba(34, 34, 34, 0.7)) /* {\"name\":\"Main Dark 70%\"} */',title:\"Hover BG Color\",type:ControlType.Color}});addFonts(Framerm01H6b2GV,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAfJthS2f3ZGMZpg.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerm01H6b2GV\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"b0J311yFK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"42\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"nF7ayydAH\\\":\\\"link\\\",\\\"L6sgmO3Wj\\\":\\\"newTab\\\",\\\"WER6zK6AJ\\\":\\\"title\\\",\\\"oPPvRVjNa\\\":\\\"mainTitleColor\\\",\\\"LAY2dqF4k\\\":\\\"mainBGColor\\\",\\\"gJtx4y_sc\\\":\\\"hoverTitleColor\\\",\\\"YrtOUhNGH\\\":\\\"hoverBGColor\\\"}\",\"framerIntrinsicWidth\":\"98\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./m01H6b2GV.map", "// Generated by Framer (2923eb5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-J4rTa .framer-styles-preset-1scohoe:not(.rich-text-wrapper), .framer-J4rTa .framer-styles-preset-1scohoe.rich-text-wrapper a { --framer-link-current-text-color: var(--token-e3342d20-df05-4fdf-b8ee-7cbcc8525edc, #e0f11f) /* {\"name\":\"Vivid\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-e3342d20-df05-4fdf-b8ee-7cbcc8525edc, #e0f11f) /* {\"name\":\"Vivid\"} */; --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-J4rTa\";\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 (47dffbb)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Big Shoulders-700\",\"GF;Big Shoulders-900\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Big Shoulders\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bigshoulders/v2/qFdk35CPh40oITJ69S3GFqy5-BQAcbz7z7beObrv_PytqyTi33thrko9r-T9BdM1LlZAtA.woff2\",weight:\"700\"},{family:\"Big Shoulders\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bigshoulders/v2/qFdk35CPh40oITJ69S3GFqy5-BQAcbz7z7beObrv_PytqyTi33thrko94eT9BdM1LlZAtA.woff2\",weight:\"900\"}]}];export const css=[\".framer-pA2De .framer-styles-preset-1mstww0:not(.rich-text-wrapper), .framer-pA2De .framer-styles-preset-1mstww0.rich-text-wrapper p { --framer-font-family: \\\"Big Shoulders\\\", sans-serif; --framer-font-family-bold: \\\"Big Shoulders\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-letter-spacing: 0.04em; --framer-line-height: 140%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-e3342d20-df05-4fdf-b8ee-7cbcc8525edc, #e0f11f); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\",\"@media (max-width: 1199px) and (min-width: 810px) { .framer-pA2De .framer-styles-preset-1mstww0:not(.rich-text-wrapper), .framer-pA2De .framer-styles-preset-1mstww0.rich-text-wrapper p { --framer-font-family: \\\"Big Shoulders\\\", sans-serif; --framer-font-family-bold: \\\"Big Shoulders\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-letter-spacing: 0.04em; --framer-line-height: 140%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-e3342d20-df05-4fdf-b8ee-7cbcc8525edc, #e0f11f); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\",\"@media (max-width: 809px) and (min-width: 0px) { .framer-pA2De .framer-styles-preset-1mstww0:not(.rich-text-wrapper), .framer-pA2De .framer-styles-preset-1mstww0.rich-text-wrapper p { --framer-font-family: \\\"Big Shoulders\\\", sans-serif; --framer-font-family-bold: \\\"Big Shoulders\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 34px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-letter-spacing: 0.04em; --framer-line-height: 150%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-e3342d20-df05-4fdf-b8ee-7cbcc8525edc, #e0f11f); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\"];export const className=\"framer-pA2De\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// 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 (5da54f8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/o6Vj0xNFcyhLNm7RJEOk/6M5gRAnIpXaUid9EU2mi/n8cnDcXiJ.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Vf4KAwyFE5BSdfT5p7Qz/6Lc7orh3ZlwfaQ64z599/RHxkECKKe.js\";import NavigationMenuBurger from\"https://framerusercontent.com/modules/trdOj0urCKTfaUI7x1of/qMMKH1hT8jwvdRIFRQrX/RMEb2rMaN.js\";const NavigationMenuBurgerFonts=getFonts(NavigationMenuBurger);const cycleOrder=[\"whwXGB_s1\",\"MJWrzIFTL\"];const serializationHash=\"framer-GcSQm\";const variantClassNames={MJWrzIFTL:\"framer-v-1sojtop\",whwXGB_s1:\"framer-v-1x45zwa\"};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:\"MJWrzIFTL\",Open:\"whwXGB_s1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"whwXGB_s1\"};};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:\"whwXGB_s1\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const seqedYYSX19um385=activeVariantCallback(async(...args)=>{setVariant(\"MJWrzIFTL\");});const seqedYYSX18hync9=activeVariantCallback(async(...args)=>{setVariant(\"whwXGB_s1\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1x45zwa\",className,classNames),\"data-framer-name\":\"Open\",layoutDependency:layoutDependency,layoutId:\"whwXGB_s1\",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({MJWrzIFTL:{\"data-framer-name\":\"Closed\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9gkwg8\",\"data-framer-name\":\"Icon and Label\",layoutDependency:layoutDependency,layoutId:\"w2EXvYun4\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"40px\",y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12selbu-container\",layoutDependency:layoutDependency,layoutId:\"VHHPtMl58-container\",nodeId:\"VHHPtMl58\",rendersWithMotion:true,scopeId:\"nFR6xeKG9\",children:/*#__PURE__*/_jsx(NavigationMenuBurger,{height:\"100%\",id:\"VHHPtMl58\",layoutId:\"VHHPtMl58\",seqedYYSX:seqedYYSX19um385,style:{height:\"100%\",width:\"100%\"},variant:\"usgfcfQia\",width:\"100%\",...addPropertyOverrides({MJWrzIFTL:{seqedYYSX:seqedYYSX18hync9,variant:\"hxLwb7RHp\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1845jjg\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"wGveBqkVz\",style:{opacity:1},variants:{MJWrzIFTL:{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:\"SzUpl3CzS\",openInNewTab:false,relValues:[],scopeId:\"nFR6xeKG9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1scohoe\",\"data-styles-preset\":\"n8cnDcXiJ\",children:\"HOME\"})})})}),className:\"framer-lm1oy6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SzUpl3CzS\",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:\"VgJH_kgcH\",openInNewTab:false,relValues:[],scopeId:\"nFR6xeKG9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1scohoe\",\"data-styles-preset\":\"n8cnDcXiJ\",children:\"ABOUT\"})})})}),className:\"framer-anfp7a\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VgJH_kgcH\",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:\"fnP380xxf\"},motionChild:true,nodeId:\"wqjWEthc2\",openInNewTab:false,relValues:[],scopeId:\"nFR6xeKG9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1scohoe\",\"data-styles-preset\":\"n8cnDcXiJ\",children:\"PROJECTS\"})})})}),className:\"framer-1a0s23c\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wqjWEthc2\",verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GcSQm.framer-1j24ba1, .framer-GcSQm .framer-1j24ba1 { display: block; }\",\".framer-GcSQm.framer-1x45zwa { align-content: flex-start; align-items: flex-start; 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-GcSQm .framer-9gkwg8 { 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-GcSQm .framer-12selbu-container { flex: none; height: 50px; position: relative; width: 40px; }\",\".framer-GcSQm .framer-1845jjg { 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-GcSQm .framer-lm1oy6, .framer-GcSQm .framer-anfp7a, .framer-GcSQm .framer-1a0s23c { -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; }\",\".framer-GcSQm.framer-v-1sojtop.framer-1x45zwa { height: 50px; padding: 0px; width: 40px; }\",\".framer-GcSQm.framer-v-1sojtop .framer-9gkwg8 { justify-content: center; width: min-content; }\",\".framer-GcSQm.framer-v-1sojtop .framer-1845jjg { align-content: flex-start; align-items: flex-start; width: 120px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 214.5\n * @framerIntrinsicWidth 165\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"MJWrzIFTL\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramernFR6xeKG9=withCSS(Component,css,\"framer-GcSQm\");export default FramernFR6xeKG9;FramernFR6xeKG9.displayName=\"Navigation/Menu\";FramernFR6xeKG9.defaultProps={height:214.5,width:165};addPropertyControls(FramernFR6xeKG9,{variant:{options:[\"whwXGB_s1\",\"MJWrzIFTL\"],optionTitles:[\"Open\",\"Closed\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramernFR6xeKG9,[{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\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernFR6xeKG9\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"214.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MJWrzIFTL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"165\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nFR6xeKG9.map", "// Generated by Framer (0b8b5e5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-ydgXa .framer-styles-preset-jbxc27:not(.rich-text-wrapper), .framer-ydgXa .framer-styles-preset-jbxc27.rich-text-wrapper a { --framer-link-current-text-color: var(--token-b243fa83-280c-408f-875b-746794890bfe, #121212) /* {\"name\":\"Primary\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-e3342d20-df05-4fdf-b8ee-7cbcc8525edc, #e0f11f) /* {\"name\":\"Vivid\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-e3342d20-df05-4fdf-b8ee-7cbcc8525edc, #e0f11f); --framer-link-text-decoration: none; transition: color 0.4s cubic-bezier(0.44, 0, 0.56, 1) 0s; }'];export const className=\"framer-ydgXa\";\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\"}}}"],
  "mappings": "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",
  "names": ["Animator", "props", "pathAnimation", "from", "to", "animate", "shouldLoop", "loopOptions", "slots", "endCircle", "hasChildren", "j", "customShape", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "firstChild", "getFirstChild", "svgChild", "isSpring", "shapeTransition", "pathLength", "useMotionValue", "opacity", "useTransform", "shapeProps", "isCanvas", "RenderTarget", "attributes", "pathD", "stroke", "strokeWidth", "strokeLinecap", "strokeLinejoin", "element", "splitAndReplace", "svgViewbox", "motion", "addPropertyControls", "ControlType", "string", "child", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "hoverBGColor", "hoverTitleColor", "id", "link", "mainBGColor", "mainTitleColor", "newTab", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "nF7ayydAH", "L6sgmO3Wj", "WER6zK6AJ", "oPPvRVjNa", "LAY2dqF4k", "gJtx4y_sc", "YrtOUhNGH", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText", "css", "Framerm01H6b2GV", "withCSS", "m01H6b2GV_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "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", "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", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "seqedYYSX19um385", "args", "seqedYYSX18hync9", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "Link", "css", "FramernFR6xeKG9", "withCSS", "nFR6xeKG9_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className"]
}
