{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/3EUiFCzP0YKfL7511uTT/lT8uQhmLwy8UfDIZoddm/Z3dmvbiyz.js", "ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js", "ssg:https://framerusercontent.com/modules/CjSuiV2HTImGoZW7XqOT/NHiL44QjEdASGctQKXPV/fKqVORDqh.js", "ssg:https://framerusercontent.com/modules/RU8ulUs3hYk1z9J9f7A9/82JPwusPbNUIobAVeMoW/OWYZwpYLq.js", "ssg:https://framerusercontent.com/modules/84XPGZaPtF7fi1GAQ2Hm/y1N3AsLYRsfEpYLnLY9j/cZflC2cnb.js", "ssg:https://framerusercontent.com/modules/a4zy9jnSYOcka4osZBOe/V2kLCfIjOfyfpDefjGXZ/Z3dmvbiyz.js", "ssg:https://framerusercontent.com/modules/sSfAw4qwispdlPiTzBQl/3VDj0ppgBNv3gW8fJOa6/OWYZwpYLq.js", "ssg:https://framerusercontent.com/modules/6ognJKWMsdMD9CHWbxcD/163qOuRnhl3M7I4ntDPG/oZjrZ_jFE.js", "ssg:https://framerusercontent.com/modules/nEK7X3dYLkO89LI5V338/aKmcw34K2wgEPQsWLJjq/IV_O8bx2o.js", "ssg:https://framerusercontent.com/modules/gnLrkeeBY7VT9OVTgRQR/KNNhRbnjtFC4qNjL7T3P/Overrides.js", "ssg:https://framerusercontent.com/modules/s2nFZ12YtzAwiibRxlWy/H988gdRJER8jKzyzwWCV/oZjrZ_jFE.js", "ssg:https://framerusercontent.com/modules/pEKT9fMtiDVblOyGhGgp/HHYcdzPTz13jx644lrI0/AHXi9m9RX.js", "ssg:https://framerusercontent.com/modules/4ZXTUFPmt58W7pEUK9p0/GoLFDp1RmbpwU9g3vh3t/oRxZ8H1K5.js", "ssg:https://framerusercontent.com/modules/xtpbpTSZfoqK054bpv48/rEgPrqDzehaD0z9TBqBY/ssbnToXC_.js"],
  "sourcesContent": ["// Generated by Framer (b23dae6)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Uncut Sans Semibold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Uncut Sans Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/d4rXOHtUCj3IyGJ0UtT9YhNPok.woff2\"}]}];export const css=['.framer-W6CKb .framer-styles-preset-1lvl2t7:not(.rich-text-wrapper), .framer-W6CKb .framer-styles-preset-1lvl2t7.rich-text-wrapper p { --framer-font-family: \"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif; --framer-font-open-type-features: \\'ss05\\' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.16em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-baa253ac-3b5f-4cf4-b776-756bcd1c0034, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-W6CKb\";\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\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function SVG(props){const[customSvgElement,setCustomSvgElement]=useState(null);useEffect(()=>{const svgContent=props.customSvgCode;processCustomSVGContent(svgContent);});const processCustomSVGContent=svgContent=>{const replacements=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']];const hasCustomStroke=svgContent.includes('stroke=\"');const hasCustomStrokeWidth=svgContent.includes('stroke-width=\"');const hasLineCap=svgContent.includes('stroke-linecap=\"');const hasLineJoin=svgContent.includes('stroke-linejoin=\"');if(svgContent.includes(\"<circle\")){const circleFillRegex=/<circle[^>]*fill=\"([^\"]*)\"/;const match=svgContent.match(circleFillRegex);if(match){const updatedCircle=match[0].replace(match[1],props.customColor);svgContent=svgContent.replace(circleFillRegex,updatedCircle);}else{replacements.push([/<circle/g,`<circle fill=\"${props.customColor}\"`]);}}if(hasCustomStroke){if(!hasLineCap){replacements.push([/<path/g,`<path stroke=\"${props.customColor}\"`]);}else{replacements.push([/<path/g,`<path stroke=\"${props.customColor}\" stroke-linecap=\"${props.lineCap}\"`]);}if(hasCustomStrokeWidth){replacements.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${props.customStrokeWidth}\"`]);}}else{replacements.push([/<path/g,`<path fill=\"${props.customColor}\"`]);}if(svgContent.includes('overflow=\"')){replacements.push([/overflow=\"[^\"]*\"/,`overflow=\"visible\"`]);}else{replacements.push([/<svg/,`<svg overflow=\"visible\"`]);}if(!hasLineJoin){replacements.push([/<path/g,`<path stroke-linejoin=\"${props.lineJoin}\"`]);}else{replacements.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${props.lineJoin}\"`]);}replacements.forEach(([regex,replacement])=>{svgContent=svgContent.replace(regex,replacement);});setCustomSvgElement(svgContent);};const customContainerStyle={padding:`${props.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};const accessibilityProps={role:\"img\",...props.title&&{\"aria-label\":props.title},...props.description&&{\"aria-description\":props.description}};return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:customSvgElement},style:customContainerStyle,...accessibilityProps});}SVG.displayName=\"SVG\";SVG.defaultProps={customSvgCode:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_967_124)\"> <path d=\"M18 6.09674C18 6.0348 18.0246 5.97539 18.0684 5.93159L23.6013 0.398708C23.7484 0.251575 24 0.35578 24 0.563858V11.9033C24 11.9652 23.9754 12.0246 23.9316 12.0684L18 18V6.09674Z\" fill=\"white\"/> <path d=\"M6 18V6.56386C6 6.35578 5.74843 6.25158 5.60129 6.39871L0.0684074 11.9316C0.0246069 11.9754 0 12.0348 0 12.0967V23.7664C0 23.8954 0.104567 24 0.233557 24H11.9033C11.9652 24 12.0246 23.9754 12.0684 23.9316L18 18H6Z\" fill=\"white\"/> </g> <defs> <clipPath id=\"clip0_967_124\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>`,customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\",title:\"\",description:\"\"};addPropertyControls(SVG,{customSvgCode:{type:ControlType.String,title:\"SVG Code\",displayTextArea:false},customColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"},customPadding:{type:ControlType.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:true},customStrokeWidth:{type:ControlType.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:true,hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineCap:{type:ControlType.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineJoin:{type:ControlType.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},title:{type:ControlType.String,title:\"Title\",defaultValue:\"\",placeholder:\"Icon name...\"},description:{type:ControlType.String,title:\"Description\",defaultValue:\"\",placeholder:\"Icon purpose...\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG_Prod.map", "// Generated by Framer (b23dae6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";const SVGFonts=getFonts(SVG);const cycleOrder=[\"p2JFBfR1O\",\"zCCmZ6azP\",\"tTrn50mSu\",\"uTZRZhUS7\"];const serializationHash=\"framer-WPSTD\";const variantClassNames={p2JFBfR1O:\"framer-v-1fxg7c\",tTrn50mSu:\"framer-v-9k3yjo\",uTZRZhUS7:\"framer-v-ie97x9\",zCCmZ6azP:\"framer-v-147nk02\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.6,ease:[.19,1,.22,1],type:\"tween\"};const transition2={duration:0,type:\"tween\"};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"Olpx1ReJI\":return-90;case\"KIV6d2UyI\":return 0;case\"HWiYmqZPs\":return 90;case\"bS4ZFQjz_\":return 180;case\"jx5zTOM9c\":return-45;default:return 0;}};const toNumber=value=>{if(typeof value===\"number\"&&Number.isFinite(value))return value;if(typeof value!==\"string\")return 0;const parsedNumber=parseFloat(value);return typeof parsedNumber===\"number\"&&Number.isFinite(parsedNumber)?parsedNumber:0;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Arrow Down\":\"HWiYmqZPs\",\"Arrow External\":\"jx5zTOM9c\",\"Arrow Left\":\"bS4ZFQjz_\",\"Arrow Right\":\"KIV6d2UyI\",\"Arrow Up\":\"Olpx1ReJI\"};const humanReadableVariantMap={Appear:\"tTrn50mSu\",Default:\"p2JFBfR1O\",Hover:\"zCCmZ6azP\",Static:\"uTZRZhUS7\"};const getProps=({border,color,height,icon,id,mouseEnter,width,...props})=>{return{...props,bpWWoWR0b:mouseEnter??props.bpWWoWR0b,sTXq5iDDx:border??props.sTXq5iDDx??{borderColor:'var(--token-baa253ac-3b5f-4cf4-b776-756bcd1c0034, rgb(0, 0, 0)) /* {\"name\":\"Foreground\"} */',borderStyle:\"solid\",borderWidth:1},Txdxb50Uw:color??props.Txdxb50Uw??\"var(--token-baa253ac-3b5f-4cf4-b776-756bcd1c0034, rgb(0, 0, 0))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"p2JFBfR1O\",vwVTD_Jaa:humanReadableEnumMap[icon]??icon??props.vwVTD_Jaa??\"KIV6d2UyI\"};};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,vwVTD_Jaa,Txdxb50Uw,sTXq5iDDx,bpWWoWR0b,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"p2JFBfR1O\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterqr7sdd=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(bpWWoWR0b){const res=await bpWWoWR0b(...args);if(res===false)return false;}});const onAppear1xjbjq3=activeVariantCallback(async(...args)=>{setVariant(\"zCCmZ6azP\");});useOnVariantChange(baseVariant,{tTrn50mSu:onAppear1xjbjq3});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const rotation=toNumber(convertFromEnum(vwVTD_Jaa,activeLocale));const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({uTZRZhUS7:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1fxg7c\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"p2JFBfR1O\",onMouseEnter:onMouseEnterqr7sdd,ref:ref??ref1,style:{...style},...addPropertyOverrides({tTrn50mSu:{\"data-framer-name\":\"Appear\"},uTZRZhUS7:{\"data-framer-name\":\"Static\"},zCCmZ6azP:{\"data-framer-name\":\"Hover\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-76xbd7\",\"data-border\":true,\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"FnIJuUSNd\",style:{\"--border-bottom-width\":(sTXq5iDDx.borderBottomWidth??sTXq5iDDx.borderWidth)+\"px\",\"--border-color\":sTXq5iDDx.borderColor,\"--border-left-width\":(sTXq5iDDx.borderLeftWidth??sTXq5iDDx.borderWidth)+\"px\",\"--border-right-width\":(sTXq5iDDx.borderRightWidth??sTXq5iDDx.borderWidth)+\"px\",\"--border-style\":sTXq5iDDx.borderStyle,\"--border-top-width\":(sTXq5iDDx.borderTopWidth??sTXq5iDDx.borderWidth)+\"px\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\",rotate:rotation},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-m8wzld\",layoutDependency:layoutDependency,layoutId:\"eHKlgzeQc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b27ih3-container\",layoutDependency:layoutDependency,layoutId:\"i3PuRBtWo-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:Txdxb50Uw,customPadding:0,customStrokeWidth:2,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"10\" height=\"9\"><g transform=\"translate(0 0.354)\"><path d=\"M 5.513 0 L 9.495 3.982 L 5.513 7.964\" fill=\"transparent\" stroke=\"rgb(0,0,0)\" stroke-miterlimit=\"10\" />     <path d=\"M 9.484 4.057 L 0 4.057\" fill=\"transparent\" stroke=\"rgb(0,0,0)\" stroke-miterlimit=\"10\" /></g></svg>',description:\"\",height:\"100%\",id:\"i3PuRBtWo\",layoutId:\"i3PuRBtWo\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-37ots9\",layoutDependency:layoutDependency,layoutId:\"Y3AiMRd18\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bp6edp-container\",layoutDependency:layoutDependency,layoutId:\"TiT9YGmgq-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:Txdxb50Uw,customPadding:0,customStrokeWidth:2,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"10\" height=\"9\"><g transform=\"translate(0 0.354)\"><path d=\"M 5.513 0 L 9.495 3.982 L 5.513 7.964\" fill=\"transparent\" stroke=\"rgb(0,0,0)\" stroke-miterlimit=\"10\" />     <path d=\"M 9.484 4.057 L 0 4.057\" fill=\"transparent\" stroke=\"rgb(0,0,0)\" stroke-miterlimit=\"10\" /></g></svg>',description:\"\",height:\"100%\",id:\"TiT9YGmgq\",layoutId:\"TiT9YGmgq\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WPSTD.framer-13v070s, .framer-WPSTD .framer-13v070s { display: block; }\",\".framer-WPSTD.framer-1fxg7c { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 20px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 20px; }\",\".framer-WPSTD .framer-76xbd7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-WPSTD .framer-m8wzld { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; left: -15px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-WPSTD .framer-1b27ih3-container { flex: none; height: 9px; position: relative; width: 10px; z-index: 1; }\",\".framer-WPSTD .framer-37ots9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 9px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 10px; }\",\".framer-WPSTD .framer-1bp6edp-container { flex: none; height: 9px; position: relative; width: 10px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WPSTD.framer-1fxg7c, .framer-WPSTD .framer-76xbd7, .framer-WPSTD .framer-m8wzld, .framer-WPSTD .framer-37ots9 { gap: 0px; } .framer-WPSTD.framer-1fxg7c > *, .framer-WPSTD .framer-76xbd7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-WPSTD.framer-1fxg7c > :first-child, .framer-WPSTD .framer-76xbd7 > :first-child { margin-top: 0px; } .framer-WPSTD.framer-1fxg7c > :last-child, .framer-WPSTD .framer-76xbd7 > :last-child { margin-bottom: 0px; } .framer-WPSTD .framer-m8wzld > *, .framer-WPSTD .framer-37ots9 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-WPSTD .framer-m8wzld > :first-child, .framer-WPSTD .framer-37ots9 > :first-child { margin-left: 0px; } .framer-WPSTD .framer-m8wzld > :last-child, .framer-WPSTD .framer-37ots9 > :last-child { margin-right: 0px; } }\",\".framer-WPSTD.framer-v-147nk02.framer-1fxg7c, .framer-WPSTD.framer-v-9k3yjo.framer-1fxg7c, .framer-WPSTD.framer-v-ie97x9.framer-1fxg7c { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 20px); }\",\".framer-WPSTD.framer-v-147nk02 .framer-m8wzld { left: 0px; }\",\".framer-WPSTD.framer-v-147nk02 .framer-37ots9 { position: absolute; right: -10px; top: calc(50.00000000000002% - 9px / 2); z-index: 1; }\",\".framer-WPSTD.framer-v-147nk02 .framer-1bp6edp-container { z-index: 1; }\",'.framer-WPSTD[data-border=\"true\"]::after, .framer-WPSTD [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 20\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"zCCmZ6azP\":{\"layout\":[\"fixed\",\"fixed\"]},\"tTrn50mSu\":{\"layout\":[\"fixed\",\"fixed\"]},\"uTZRZhUS7\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"vwVTD_Jaa\":\"icon\",\"Txdxb50Uw\":\"color\",\"sTXq5iDDx\":\"border\",\"bpWWoWR0b\":\"mouseEnter\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfKqVORDqh=withCSS(Component,css,\"framer-WPSTD\");export default FramerfKqVORDqh;FramerfKqVORDqh.displayName=\"Icon\";FramerfKqVORDqh.defaultProps={height:20,width:20};addPropertyControls(FramerfKqVORDqh,{variant:{options:[\"p2JFBfR1O\",\"zCCmZ6azP\",\"tTrn50mSu\",\"uTZRZhUS7\"],optionTitles:[\"Default\",\"Hover\",\"Appear\",\"Static\"],title:\"Variant\",type:ControlType.Enum},vwVTD_Jaa:{defaultValue:\"KIV6d2UyI\",description:\"\",options:[\"Olpx1ReJI\",\"KIV6d2UyI\",\"HWiYmqZPs\",\"bS4ZFQjz_\",\"jx5zTOM9c\"],optionTitles:[\"Arrow Up\",\"Arrow Right\",\"Arrow Down\",\"Arrow Left\",\"Arrow External\"],title:\"Icon\",type:ControlType.Enum},Txdxb50Uw:{defaultValue:'var(--token-baa253ac-3b5f-4cf4-b776-756bcd1c0034, rgb(0, 0, 0)) /* {\"name\":\"Foreground\"} */',title:\"Color\",type:ControlType.Color},sTXq5iDDx:{defaultValue:{borderColor:'var(--token-baa253ac-3b5f-4cf4-b776-756bcd1c0034, rgb(0, 0, 0)) /* {\"name\":\"Foreground\"} */',borderStyle:\"solid\",borderWidth:1},title:\"Border\",type:ControlType.Border},bpWWoWR0b:{title:\"Mouse Enter\",type:ControlType.EventHandler}});addFonts(FramerfKqVORDqh,[{explicitInter:true,fonts:[]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfKqVORDqh\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"vwVTD_Jaa\\\":\\\"icon\\\",\\\"Txdxb50Uw\\\":\\\"color\\\",\\\"sTXq5iDDx\\\":\\\"border\\\",\\\"bpWWoWR0b\\\":\\\"mouseEnter\\\"}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zCCmZ6azP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tTrn50mSu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uTZRZhUS7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"20\",\"framerIntrinsicWidth\":\"20\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fKqVORDqh.map", "// Generated by Framer (b23dae6)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"ossE_UmYH\",\"xQG6ND9pu\",\"hVDNHl6Gh\",\"k_NoDg4oR\",\"P8xcDUBbL\"];const serializationHash=\"framer-gPr1h\";const variantClassNames={hVDNHl6Gh:\"framer-v-6jgje1\",k_NoDg4oR:\"framer-v-a530vm\",ossE_UmYH:\"framer-v-1l2qppe\",P8xcDUBbL:\"framer-v-1nl6tnq\",xQG6ND9pu:\"framer-v-g9l70t\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:-90,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:2,ease:[.075,.82,.165,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:1,rotate:0,rotateX:-90,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={delay:2,duration:2,ease:[.075,.82,.165,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Horizontal (Scroll)\":\"ossE_UmYH\",\"Horizontal (Static)\":\"xQG6ND9pu\",\"Vertical (Appear)\":\"k_NoDg4oR\",\"Vertical (Delayed)\":\"P8xcDUBbL\",\"Vertical (Scroll)\":\"hVDNHl6Gh\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ossE_UmYH\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ossE_UmYH\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-1l2qppe\",className,classNames),\"data-framer-name\":\"Horizontal (Scroll)\",layoutDependency:layoutDependency,layoutId:\"ossE_UmYH\",ref:ref??ref1,style:{...style},...addPropertyOverrides({hVDNHl6Gh:{\"data-framer-name\":\"Vertical (Scroll)\"},k_NoDg4oR:{\"data-framer-name\":\"Vertical (Appear)\"},P8xcDUBbL:{\"data-framer-name\":\"Vertical (Delayed)\"},xQG6ND9pu:{\"data-framer-name\":\"Horizontal (Static)\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-ugbsau\",\"data-border\":true,\"data-framer-appear-id\":\"ugbsau\",\"data-framer-name\":\"Border\",layoutDependency:layoutDependency,layoutId:\"a9Z6D1icf\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-baa253ac-3b5f-4cf4-b776-756bcd1c0034, rgb(0, 0, 0))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",originX:0},variants:{hVDNHl6Gh:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"0px\",originX:undefined,originY:0},k_NoDg4oR:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"0px\",originX:undefined,originY:1},P8xcDUBbL:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"0px\",originX:undefined,originY:1},xQG6ND9pu:{originX:1}},...addPropertyOverrides({hVDNHl6Gh:{__framer__enter:animation2},k_NoDg4oR:{__framer__styleAppearEffectEnabled:undefined,animate:animation1,initial:animation2,optimized:true},P8xcDUBbL:{__framer__styleAppearEffectEnabled:undefined,animate:animation3,initial:animation2,optimized:true},xQG6ND9pu:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gPr1h.framer-8w632s, .framer-gPr1h .framer-8w632s { display: block; }\",\".framer-gPr1h.framer-1l2qppe { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 800px; }\",\".framer-gPr1h .framer-ugbsau { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gPr1h.framer-1l2qppe { gap: 0px; } .framer-gPr1h.framer-1l2qppe > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-gPr1h.framer-1l2qppe > :first-child { margin-left: 0px; } .framer-gPr1h.framer-1l2qppe > :last-child { margin-right: 0px; } }\",\".framer-gPr1h.framer-v-6jgje1.framer-1l2qppe, .framer-gPr1h.framer-v-a530vm.framer-1l2qppe, .framer-gPr1h.framer-v-1nl6tnq.framer-1l2qppe { height: 800px; width: 1px; }\",'.framer-gPr1h[data-border=\"true\"]::after, .framer-gPr1h [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1\n * @framerIntrinsicWidth 800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"xQG6ND9pu\":{\"layout\":[\"fixed\",\"fixed\"]},\"hVDNHl6Gh\":{\"layout\":[\"fixed\",\"fixed\"]},\"k_NoDg4oR\":{\"layout\":[\"fixed\",\"fixed\"]},\"P8xcDUBbL\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOWYZwpYLq=withCSS(Component,css,\"framer-gPr1h\");export default FramerOWYZwpYLq;FramerOWYZwpYLq.displayName=\"Line\";FramerOWYZwpYLq.defaultProps={height:1,width:800};addPropertyControls(FramerOWYZwpYLq,{variant:{options:[\"ossE_UmYH\",\"xQG6ND9pu\",\"hVDNHl6Gh\",\"k_NoDg4oR\",\"P8xcDUBbL\"],optionTitles:[\"Horizontal (Scroll)\",\"Horizontal (Static)\",\"Vertical (Scroll)\",\"Vertical (Appear)\",\"Vertical (Delayed)\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerOWYZwpYLq,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOWYZwpYLq\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"800\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xQG6ND9pu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hVDNHl6Gh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"k_NoDg4oR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"P8xcDUBbL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OWYZwpYLq.map", "// Generated by Framer (fd7a51d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/3EUiFCzP0YKfL7511uTT/lT8uQhmLwy8UfDIZoddm/Z3dmvbiyz.js\";import Icon from\"https://framerusercontent.com/modules/CjSuiV2HTImGoZW7XqOT/NHiL44QjEdASGctQKXPV/fKqVORDqh.js\";import Line from\"https://framerusercontent.com/modules/RU8ulUs3hYk1z9J9f7A9/82JPwusPbNUIobAVeMoW/OWYZwpYLq.js\";const LineFonts=getFonts(Line);const IconFonts=getFonts(Icon);const LineControls=getPropertyControls(Line);const cycleOrder=[\"j39FV34Am\",\"SMCpIhfEA\",\"lpSEIxd0a\",\"kZGxtjJVC\"];const serializationHash=\"framer-Svu6X\";const variantClassNames={j39FV34Am:\"framer-v-147hiwu\",kZGxtjJVC:\"framer-v-13ea3a0\",lpSEIxd0a:\"framer-v-1wrjrw5\",SMCpIhfEA:\"framer-v-1b8qnwz\"};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 transition2={delay:0,duration:.15,ease:[.44,0,.56,1],type:\"tween\"};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 negate=value=>{return!value;};const transition3={delay:0,duration:.6,ease:[.19,1,.22,1],type:\"tween\"};const transition4={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Horizontal (Scroll)\":\"ossE_UmYH\",\"Horizontal (Static)\":\"xQG6ND9pu\",\"Vertical (Appear)\":\"k_NoDg4oR\",\"Vertical (Delayed)\":\"P8xcDUBbL\",\"Vertical (Scroll)\":\"hVDNHl6Gh\"};const humanReadableVariantMap={Active:\"kZGxtjJVC\",Default:\"j39FV34Am\",Hover:\"lpSEIxd0a\",Proxy:\"SMCpIhfEA\"};const getProps=({click,height,icon,id,lineVariant,link,title,width,...props})=>{return{...props,F2dL7oP0t:link??props.F2dL7oP0t,ffJHc2QT8:icon??props.ffJHc2QT8??true,Q9Bv1yCH8:humanReadableEnumMap[lineVariant]??lineVariant??props.Q9Bv1yCH8??\"ossE_UmYH\",SkIGlE6hQ:title??props.SkIGlE6hQ??\"Templates Store\",variant:humanReadableVariantMap[props.variant]??props.variant??\"j39FV34Am\",XKyDLRxWU:click??props.XKyDLRxWU};};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,F2dL7oP0t,SkIGlE6hQ,Q9Bv1yCH8,ffJHc2QT8,XKyDLRxWU,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"j39FV34Am\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1yvjku8=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"lpSEIxd0a\");});const onMouseLeave1nygfqx=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"j39FV34Am\");});const onAppear1i1bekl=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"SMCpIhfEA\"),300);});const onTap1qg0lqg=activeVariantCallback(async(...args)=>{if(XKyDLRxWU){const res=await XKyDLRxWU(...args);if(res===false)return false;}});useOnVariantChange(baseVariant,{lpSEIxd0a:onAppear1i1bekl});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const visible=negate(ffJHc2QT8);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-147hiwu\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"j39FV34Am\",onMouseEnter:onMouseEnter1yvjku8,ref:ref??ref1,style:{...style},...addPropertyOverrides({kZGxtjJVC:{\"data-framer-name\":\"Active\",\"data-highlight\":undefined,onMouseEnter:undefined},lpSEIxd0a:{\"data-framer-name\":\"Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeave1nygfqx},SMCpIhfEA:{\"data-framer-name\":\"Proxy\",onMouseEnter:undefined,onMouseLeave:onMouseLeave1nygfqx}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fo0696-container\",layoutDependency:layoutDependency,layoutId:\"W2I0AUY2m-container\",children:/*#__PURE__*/_jsx(Line,{height:\"100%\",id:\"W2I0AUY2m\",layoutId:\"W2I0AUY2m\",style:{width:\"100%\"},variant:Q9Bv1yCH8,width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:F2dL7oP0t,nodeId:\"l_RBaOVRF\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1apexsg framer-jyc557\",\"data-framer-name\":\"Padding\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"l_RBaOVRF\",onTap:onTap1qg0lqg,style:{opacity:1},variants:{kZGxtjJVC:{opacity:1},lpSEIxd0a:{opacity:.5},SMCpIhfEA:{opacity:.5}},children:[/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lvl2t7\",\"data-styles-preset\":\"Z3dmvbiyz\",children:\"Templates Store\"})}),className:\"framer-1gz6ign\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"a4oDlXpnG\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:1},text:SkIGlE6hQ,variants:{kZGxtjJVC:{opacity:.5}},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3mb14e\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"vNLM9kSew\",style:{borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"},children:[ffJHc2QT8&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jfu79m\",\"data-framer-name\":\"Default Icon\",layoutDependency:layoutDependency,layoutId:\"oSwKYdRcm\",style:{borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+0+57.19999999999999+0+0+0+-7.5,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jt7zrm-container\",layoutDependency:layoutDependency,layoutId:\"SCyQd_BL5-container\",children:/*#__PURE__*/_jsx(Icon,{height:\"100%\",id:\"SCyQd_BL5\",layoutId:\"SCyQd_BL5\",sTXq5iDDx:{borderColor:'var(--token-baa253ac-3b5f-4cf4-b776-756bcd1c0034, rgb(0, 0, 0)) /* {\"name\":\"Foreground\"} */',borderStyle:\"solid\",borderWidth:1},Txdxb50Uw:\"var(--token-baa253ac-3b5f-4cf4-b776-756bcd1c0034, rgb(0, 0, 0))\",variant:\"uTZRZhUS7\",vwVTD_Jaa:\"KIV6d2UyI\",width:\"100%\",...addPropertyOverrides({lpSEIxd0a:{variant:\"tTrn50mSu\"}},baseVariant,gestureVariant)})})})}),visible&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1olzlxv\",\"data-framer-name\":\"Hover Icon\",layoutDependency:layoutDependency,layoutId:\"k1YGa3ysM\",style:{borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"},children:[/*#__PURE__*/_jsx(Transition,{value:transition3,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+0+57.19999999999999+0+15+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h7wygl-container\",layoutDependency:layoutDependency,layoutId:\"usO2O6EPO-container\",style:{opacity:0},variants:{lpSEIxd0a:{opacity:1},SMCpIhfEA:{opacity:1}},children:/*#__PURE__*/_jsx(Icon,{height:\"100%\",id:\"usO2O6EPO\",layoutId:\"usO2O6EPO\",sTXq5iDDx:{borderColor:'var(--token-baa253ac-3b5f-4cf4-b776-756bcd1c0034, rgb(0, 0, 0)) /* {\"name\":\"Foreground\"} */',borderStyle:\"solid\",borderWidth:0},Txdxb50Uw:\"var(--token-baa253ac-3b5f-4cf4-b776-756bcd1c0034, rgb(0, 0, 0))\",variant:\"uTZRZhUS7\",vwVTD_Jaa:\"KIV6d2UyI\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Transition,{value:transition4,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-bv7247\",\"data-framer-name\":\"Arrow circle\",fill:'var(--token-baa253ac-3b5f-4cf4-b776-756bcd1c0034, rgb(0, 0, 0)) /* {\"name\":\"Foreground\"} */',intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"zLTeZ1oS3\",style:{opacity:0},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\"><circle cx=\"10\" cy=\"10\" r=\"9.5\" fill=\"none\" stroke=\"#000\" stroke-miterlimit=\"10\"/></svg>',variants:{lpSEIxd0a:{opacity:1},SMCpIhfEA:{opacity:1}},withExternalLayout:true})})]})]})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Svu6X.framer-jyc557, .framer-Svu6X .framer-jyc557 { display: block; }\",\".framer-Svu6X.framer-147hiwu { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 400px; }\",\".framer-Svu6X .framer-fo0696-container { flex: none; height: auto; pointer-events: none; position: absolute; right: 0px; top: 0px; width: 100%; z-index: 1; }\",\".framer-Svu6X .framer-1apexsg { align-content: center; align-items: center; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 15px 30px 15px 30px; position: relative; text-decoration: none; width: 1px; }\",\".framer-Svu6X .framer-1gz6ign { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Svu6X .framer-3mb14e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 20px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 20px; }\",\".framer-Svu6X .framer-1jfu79m { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Svu6X .framer-jt7zrm-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-Svu6X .framer-1olzlxv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Svu6X .framer-1h7wygl-container { flex: none; height: auto; left: -20px; position: absolute; top: 0px; width: auto; z-index: 1; }\",\".framer-Svu6X .framer-bv7247 { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Svu6X.framer-147hiwu, .framer-Svu6X .framer-3mb14e, .framer-Svu6X .framer-1jfu79m, .framer-Svu6X .framer-1olzlxv { gap: 0px; } .framer-Svu6X.framer-147hiwu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Svu6X.framer-147hiwu > :first-child { margin-left: 0px; } .framer-Svu6X.framer-147hiwu > :last-child { margin-right: 0px; } .framer-Svu6X .framer-3mb14e > *, .framer-Svu6X .framer-1jfu79m > *, .framer-Svu6X .framer-1olzlxv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Svu6X .framer-3mb14e > :first-child, .framer-Svu6X .framer-1jfu79m > :first-child, .framer-Svu6X .framer-1olzlxv > :first-child { margin-top: 0px; } .framer-Svu6X .framer-3mb14e > :last-child, .framer-Svu6X .framer-1jfu79m > :last-child, .framer-Svu6X .framer-1olzlxv > :last-child { margin-bottom: 0px; } }\",\".framer-Svu6X.framer-v-1b8qnwz .framer-1h7wygl-container, .framer-Svu6X.framer-v-1wrjrw5 .framer-1h7wygl-container { left: 0px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 51\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SMCpIhfEA\":{\"layout\":[\"fixed\",\"auto\"]},\"lpSEIxd0a\":{\"layout\":[\"fixed\",\"auto\"]},\"kZGxtjJVC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"F2dL7oP0t\":\"link\",\"SkIGlE6hQ\":\"title\",\"Q9Bv1yCH8\":\"lineVariant\",\"ffJHc2QT8\":\"icon\",\"XKyDLRxWU\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercZflC2cnb=withCSS(Component,css,\"framer-Svu6X\");export default FramercZflC2cnb;FramercZflC2cnb.displayName=\"Menu Item\";FramercZflC2cnb.defaultProps={height:51,width:400};addPropertyControls(FramercZflC2cnb,{variant:{options:[\"j39FV34Am\",\"SMCpIhfEA\",\"lpSEIxd0a\",\"kZGxtjJVC\"],optionTitles:[\"Default\",\"Proxy\",\"Hover\",\"Active\"],title:\"Variant\",type:ControlType.Enum},F2dL7oP0t:{title:\"Link\",type:ControlType.Link},SkIGlE6hQ:{defaultValue:\"Templates Store\",displayTextArea:false,title:\"Title\",type:ControlType.String},Q9Bv1yCH8:LineControls?.[\"variant\"]&&{...LineControls[\"variant\"],defaultValue:\"ossE_UmYH\",description:undefined,hidden:undefined,title:\"Line Variant\"},ffJHc2QT8:{defaultValue:true,title:\"Icon\",type:ControlType.Boolean},XKyDLRxWU:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramercZflC2cnb,[{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\"}]},...LineFonts,...IconFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercZflC2cnb\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SMCpIhfEA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lpSEIxd0a\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kZGxtjJVC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"51\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"F2dL7oP0t\\\":\\\"link\\\",\\\"SkIGlE6hQ\\\":\\\"title\\\",\\\"Q9Bv1yCH8\\\":\\\"lineVariant\\\",\\\"ffJHc2QT8\\\":\\\"icon\\\",\\\"XKyDLRxWU\\\":\\\"click\\\"}\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cZflC2cnb.map", "// Generated by Framer (b23dae6)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Uncut Sans Semibold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Uncut Sans Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/d4rXOHtUCj3IyGJ0UtT9YhNPok.woff2\"}]}];export const css=['.framer-W6CKb .framer-styles-preset-1lvl2t7:not(.rich-text-wrapper), .framer-W6CKb .framer-styles-preset-1lvl2t7.rich-text-wrapper p { --framer-font-family: \"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif; --framer-font-open-type-features: \\'ss05\\' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.16em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-baa253ac-3b5f-4cf4-b776-756bcd1c0034, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-W6CKb\";\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 (b23dae6)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"ossE_UmYH\",\"xQG6ND9pu\",\"hVDNHl6Gh\",\"k_NoDg4oR\",\"P8xcDUBbL\"];const serializationHash=\"framer-gPr1h\";const variantClassNames={hVDNHl6Gh:\"framer-v-6jgje1\",k_NoDg4oR:\"framer-v-a530vm\",ossE_UmYH:\"framer-v-1l2qppe\",P8xcDUBbL:\"framer-v-1nl6tnq\",xQG6ND9pu:\"framer-v-g9l70t\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:-90,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:2,ease:[.075,.82,.165,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:1,rotate:0,rotateX:-90,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={delay:2,duration:2,ease:[.075,.82,.165,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Horizontal (Scroll)\":\"ossE_UmYH\",\"Horizontal (Static)\":\"xQG6ND9pu\",\"Vertical (Appear)\":\"k_NoDg4oR\",\"Vertical (Delayed)\":\"P8xcDUBbL\",\"Vertical (Scroll)\":\"hVDNHl6Gh\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ossE_UmYH\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ossE_UmYH\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-1l2qppe\",className,classNames),\"data-framer-name\":\"Horizontal (Scroll)\",layoutDependency:layoutDependency,layoutId:\"ossE_UmYH\",ref:ref??ref1,style:{...style},...addPropertyOverrides({hVDNHl6Gh:{\"data-framer-name\":\"Vertical (Scroll)\"},k_NoDg4oR:{\"data-framer-name\":\"Vertical (Appear)\"},P8xcDUBbL:{\"data-framer-name\":\"Vertical (Delayed)\"},xQG6ND9pu:{\"data-framer-name\":\"Horizontal (Static)\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-ugbsau\",\"data-border\":true,\"data-framer-appear-id\":\"ugbsau\",\"data-framer-name\":\"Border\",layoutDependency:layoutDependency,layoutId:\"a9Z6D1icf\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-baa253ac-3b5f-4cf4-b776-756bcd1c0034, rgb(0, 0, 0))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",originX:0},variants:{hVDNHl6Gh:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"0px\",originX:undefined,originY:0},k_NoDg4oR:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"0px\",originX:undefined,originY:1},P8xcDUBbL:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"0px\",originX:undefined,originY:1},xQG6ND9pu:{originX:1}},...addPropertyOverrides({hVDNHl6Gh:{__framer__enter:animation2},k_NoDg4oR:{__framer__styleAppearEffectEnabled:undefined,animate:animation1,initial:animation2,optimized:true},P8xcDUBbL:{__framer__styleAppearEffectEnabled:undefined,animate:animation3,initial:animation2,optimized:true},xQG6ND9pu:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gPr1h.framer-8w632s, .framer-gPr1h .framer-8w632s { display: block; }\",\".framer-gPr1h.framer-1l2qppe { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 800px; }\",\".framer-gPr1h .framer-ugbsau { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gPr1h.framer-1l2qppe { gap: 0px; } .framer-gPr1h.framer-1l2qppe > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-gPr1h.framer-1l2qppe > :first-child { margin-left: 0px; } .framer-gPr1h.framer-1l2qppe > :last-child { margin-right: 0px; } }\",\".framer-gPr1h.framer-v-6jgje1.framer-1l2qppe, .framer-gPr1h.framer-v-a530vm.framer-1l2qppe, .framer-gPr1h.framer-v-1nl6tnq.framer-1l2qppe { height: 800px; width: 1px; }\",'.framer-gPr1h[data-border=\"true\"]::after, .framer-gPr1h [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1\n * @framerIntrinsicWidth 800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"xQG6ND9pu\":{\"layout\":[\"fixed\",\"fixed\"]},\"hVDNHl6Gh\":{\"layout\":[\"fixed\",\"fixed\"]},\"k_NoDg4oR\":{\"layout\":[\"fixed\",\"fixed\"]},\"P8xcDUBbL\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOWYZwpYLq=withCSS(Component,css,\"framer-gPr1h\");export default FramerOWYZwpYLq;FramerOWYZwpYLq.displayName=\"Line\";FramerOWYZwpYLq.defaultProps={height:1,width:800};addPropertyControls(FramerOWYZwpYLq,{variant:{options:[\"ossE_UmYH\",\"xQG6ND9pu\",\"hVDNHl6Gh\",\"k_NoDg4oR\",\"P8xcDUBbL\"],optionTitles:[\"Horizontal (Scroll)\",\"Horizontal (Static)\",\"Vertical (Scroll)\",\"Vertical (Appear)\",\"Vertical (Delayed)\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerOWYZwpYLq,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOWYZwpYLq\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"800\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xQG6ND9pu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hVDNHl6Gh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"k_NoDg4oR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"P8xcDUBbL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OWYZwpYLq.map", "// Generated by Framer (56d1180)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-PAXAH .framer-styles-preset-1ypntbs:not(.rich-text-wrapper), .framer-PAXAH .framer-styles-preset-1ypntbs.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-decoration: none; --framer-link-text-decoration: none; transition: color 0.3s cubic-bezier(0.44, 0, 0.56, 1) 0s; }\"];export const className=\"framer-PAXAH\";\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 (ae50a0d)\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,withFX,withOptimizedAppearEffect}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/6ognJKWMsdMD9CHWbxcD/163qOuRnhl3M7I4ntDPG/oZjrZ_jFE.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/a4zy9jnSYOcka4osZBOe/V2kLCfIjOfyfpDefjGXZ/Z3dmvbiyz.js\";import Line from\"https://framerusercontent.com/modules/sSfAw4qwispdlPiTzBQl/3VDj0ppgBNv3gW8fJOa6/OWYZwpYLq.js\";const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const LineFonts=getFonts(Line);const cycleOrder=[\"MTkh8WqWI\",\"WMLYM0XGQ\"];const serializationHash=\"framer-qSCpG\";const variantClassNames={MTkh8WqWI:\"framer-v-99o3ol\",WMLYM0XGQ:\"framer-v-1h2vh4i\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const transition3={bounce:0,delay:2.5,duration:1,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-25};const negate=value=>{return!value;};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={Default:\"MTkh8WqWI\",Phone:\"WMLYM0XGQ\"};const getProps=({delayedTitle,height,id,menuClick,title,width,...props})=>{return{...props,LEvG9FaSP:title??props.LEvG9FaSP??\"Atelier Amiri\",QMIz_GHWd:delayedTitle??props.QMIz_GHWd,tBnQsfIR_:menuClick??props.tBnQsfIR_,variant:humanReadableVariantMap[props.variant]??props.variant??\"MTkh8WqWI\"};};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,LEvG9FaSP,QMIz_GHWd,tBnQsfIR_,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MTkh8WqWI\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap63159f=activeVariantCallback(async(...args)=>{if(tBnQsfIR_){const res=await tBnQsfIR_(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=negate(QMIz_GHWd);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.header,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-99o3ol\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"MTkh8WqWI\",ref:refBinding,style:{backdropFilter:\"blur(10px)\",backgroundColor:\"var(--token-7799abdb-1909-4d06-81e5-fbe311c4122b, rgb(200, 197, 175))\",WebkitBackdropFilter:\"blur(10px)\",...style},...addPropertyOverrides({WMLYM0XGQ:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7qa2bs\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"ksTB976ht\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-159zage\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"SjqoTYMYQ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-oqqa6m\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"IVujPWmKl\",children:/*#__PURE__*/_jsx(motion.button,{className:\"framer-1eqi050\",\"data-framer-name\":\"Button\",\"data-highlight\":true,\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"tiT1D09Vv\",onTap:onTap63159f,whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lvl2t7\",\"data-styles-preset\":\"Z3dmvbiyz\",children:\"Menu\"})}),className:\"framer-dsrp2s\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fE85tjjbh\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p4s2f7\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"UrCZyqhnU\",children:[QMIz_GHWd&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-4b68p5\",\"data-framer-name\":\"Delayed\",layoutDependency:layoutDependency,layoutId:\"pcGac6UZF\",children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWJyaWwgRmF0ZmFjZS1yZWd1bGFy\",\"--framer-font-family\":'\"Abril Fatface\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.16em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-baa253ac-3b5f-4cf4-b776-756bcd1c0034, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"QUJHKTiGX\",openInNewTab:false,scopeId:\"IV_O8bx2o\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ypntbs\",\"data-styles-preset\":\"oZjrZ_jFE\",children:\"Atelier Amiri\"})})})}),className:\"framer-e264vj\",\"data-framer-appear-id\":\"e264vj\",fonts:[\"GF;Abril Fatface-regular\"],initial:animation2,layoutDependency:layoutDependency,layoutId:\"QUJHKTiGX\",optimized:true,style:{\"--extracted-r6o4lv\":\"var(--token-baa253ac-3b5f-4cf4-b776-756bcd1c0034, rgb(0, 0, 0))\"},text:LEvG9FaSP,verticalAlignment:\"top\",whileHover:animation,withExternalLayout:true})}),visible&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-pj94v4\",\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"KEP1kXKBK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWJyaWwgRmF0ZmFjZS1yZWd1bGFy\",\"--framer-font-family\":'\"Abril Fatface\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.16em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-baa253ac-3b5f-4cf4-b776-756bcd1c0034, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"G2adiZREY\",openInNewTab:false,scopeId:\"IV_O8bx2o\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ypntbs\",\"data-styles-preset\":\"oZjrZ_jFE\",children:\"Atelier Amiri\"})})})}),className:\"framer-1fequrc\",fonts:[\"GF;Abril Fatface-regular\"],layoutDependency:layoutDependency,layoutId:\"G2adiZREY\",style:{\"--extracted-r6o4lv\":\"var(--token-baa253ac-3b5f-4cf4-b776-756bcd1c0034, rgb(0, 0, 0))\"},text:LEvG9FaSP,verticalAlignment:\"top\",whileHover:animation,withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hh08d0\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"gdFjDpYfM\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lvl2t7\",\"data-styles-preset\":\"Z3dmvbiyz\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QysaOkGnT\"},motionChild:true,nodeId:\"lxqkhPBpu\",openInNewTab:false,scopeId:\"IV_O8bx2o\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ypntbs\",\"data-styles-preset\":\"oZjrZ_jFE\",children:\"Contact\"})})})}),className:\"framer-ms7qnl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lxqkhPBpu\",verticalAlignment:\"top\",whileHover:animation,withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+(componentViewport?.height||51)-1,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-o5abce-container\",layoutDependency:layoutDependency,layoutId:\"lLyMUdTSK-container\",nodeId:\"lLyMUdTSK\",rendersWithMotion:true,scopeId:\"IV_O8bx2o\",children:/*#__PURE__*/_jsx(Line,{height:\"100%\",id:\"lLyMUdTSK\",layoutId:\"lLyMUdTSK\",style:{width:\"100%\"},variant:\"ossE_UmYH\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qSCpG.framer-10bcznz, .framer-qSCpG .framer-10bcznz { display: block; }\",\".framer-qSCpG.framer-99o3ol { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-qSCpG .framer-7qa2bs { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-qSCpG .framer-159zage { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 15px 30px 15px 30px; position: relative; width: 1px; }\",\".framer-qSCpG .framer-oqqa6m { 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; z-index: 1; }\",\".framer-qSCpG .framer-1eqi050 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-qSCpG .framer-dsrp2s { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-qSCpG .framer-p4s2f7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; left: 0px; overflow: hidden; padding: 0px; pointer-events: none; position: absolute; top: 0px; width: 100%; }\",\".framer-qSCpG .framer-4b68p5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-qSCpG .framer-e264vj, .framer-qSCpG .framer-1fequrc, .framer-qSCpG .framer-ms7qnl { flex: none; height: auto; pointer-events: auto; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-qSCpG .framer-pj94v4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qSCpG .framer-1hh08d0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-qSCpG .framer-o5abce-container { bottom: 0px; flex: none; height: auto; left: 0px; pointer-events: none; position: absolute; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qSCpG.framer-99o3ol, .framer-qSCpG .framer-7qa2bs, .framer-qSCpG .framer-oqqa6m, .framer-qSCpG .framer-1eqi050, .framer-qSCpG .framer-p4s2f7, .framer-qSCpG .framer-4b68p5, .framer-qSCpG .framer-pj94v4, .framer-qSCpG .framer-1hh08d0 { gap: 0px; } .framer-qSCpG.framer-99o3ol > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-qSCpG.framer-99o3ol > :first-child, .framer-qSCpG .framer-7qa2bs > :first-child, .framer-qSCpG .framer-oqqa6m > :first-child, .framer-qSCpG .framer-1eqi050 > :first-child, .framer-qSCpG .framer-1hh08d0 > :first-child { margin-left: 0px; } .framer-qSCpG.framer-99o3ol > :last-child, .framer-qSCpG .framer-7qa2bs > :last-child, .framer-qSCpG .framer-oqqa6m > :last-child, .framer-qSCpG .framer-1eqi050 > :last-child, .framer-qSCpG .framer-1hh08d0 > :last-child { margin-right: 0px; } .framer-qSCpG .framer-7qa2bs > *, .framer-qSCpG .framer-oqqa6m > *, .framer-qSCpG .framer-1eqi050 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-qSCpG .framer-p4s2f7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-qSCpG .framer-p4s2f7 > :first-child, .framer-qSCpG .framer-4b68p5 > :first-child, .framer-qSCpG .framer-pj94v4 > :first-child { margin-top: 0px; } .framer-qSCpG .framer-p4s2f7 > :last-child, .framer-qSCpG .framer-4b68p5 > :last-child, .framer-qSCpG .framer-pj94v4 > :last-child { margin-bottom: 0px; } .framer-qSCpG .framer-4b68p5 > *, .framer-qSCpG .framer-pj94v4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-qSCpG .framer-1hh08d0 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",\".framer-qSCpG.framer-v-1h2vh4i.framer-99o3ol { width: 320px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 51\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WMLYM0XGQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"LEvG9FaSP\":\"title\",\"QMIz_GHWd\":\"delayedTitle\",\"tBnQsfIR_\":\"menuClick\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIV_O8bx2o=withCSS(Component,css,\"framer-qSCpG\");export default FramerIV_O8bx2o;FramerIV_O8bx2o.displayName=\"Layout/Header\";FramerIV_O8bx2o.defaultProps={height:51,width:1200};addPropertyControls(FramerIV_O8bx2o,{variant:{options:[\"MTkh8WqWI\",\"WMLYM0XGQ\"],optionTitles:[\"Default\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},LEvG9FaSP:{defaultValue:\"Atelier Amiri\",displayTextArea:false,title:\"Title\",type:ControlType.String},QMIz_GHWd:{defaultValue:false,title:\"Delayed Title\",type:ControlType.Boolean},tBnQsfIR_:{title:\"Menu Click\",type:ControlType.EventHandler}});addFonts(FramerIV_O8bx2o,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Abril Fatface\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/abrilfatface/v23/zOL64pLDlL1D99S8g8PtiKchm-VsjOLhZBY.woff2\",weight:\"400\"}]},...LineFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIV_O8bx2o\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WMLYM0XGQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerVariables\":\"{\\\"LEvG9FaSP\\\":\\\"title\\\",\\\"QMIz_GHWd\\\":\\\"delayedTitle\\\",\\\"tBnQsfIR_\\\":\\\"menuClick\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"51\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IV_O8bx2o.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";export function withSliderVariant(Component){return props=>{const ref=useRef();const[variant,setVariant]=useState(\"Default\");useEffect(()=>{const observer=new IntersectionObserver(([entry])=>{if(entry.isIntersecting){setVariant(\"Visible\");}else{setVariant(\"Default\");}},{threshold:.1});if(ref.current){observer.observe(ref.current);}return()=>{if(ref.current){observer.unobserve(ref.current);observer.disconnect();}};},[]);return /*#__PURE__*/_jsx(Component,{...props,ref:ref,variant:variant});};}export function withPullContainer(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,style:{...props.style,marginRight:-1,marginBottom:-1}});};}export function withNegativeBottom(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,style:{...props.style,bottom:-1}});};}export function withHeightAuto(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,style:{...props.style,height:\"auto\"}});};}export function withIntroHide(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{y:[0,\"-100%\"]},transition:{duration:2,ease:[.86,0,.07,1],delay:1}});};}export function withEscTap(Component){return props=>{const{onTap}=props;useEffect(()=>{const onKeyDown=e=>{if(e.key===\"Escape\"){onTap();}};document.addEventListener(\"keydown\",onKeyDown);return()=>document.addEventListener(\"keydown\",onKeyDown);},[]);return /*#__PURE__*/_jsx(Component,{...props});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withSliderVariant\":{\"type\":\"reactHoc\",\"name\":\"withSliderVariant\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withPullContainer\":{\"type\":\"reactHoc\",\"name\":\"withPullContainer\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withEscTap\":{\"type\":\"reactHoc\",\"name\":\"withEscTap\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withNegativeBottom\":{\"type\":\"reactHoc\",\"name\":\"withNegativeBottom\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHeightAuto\":{\"type\":\"reactHoc\",\"name\":\"withHeightAuto\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withIntroHide\":{\"type\":\"reactHoc\",\"name\":\"withIntroHide\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Overrides.map", "// Generated by Framer (56d1180)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-PAXAH .framer-styles-preset-1ypntbs:not(.rich-text-wrapper), .framer-PAXAH .framer-styles-preset-1ypntbs.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-decoration: none; --framer-link-text-decoration: none; transition: color 0.3s cubic-bezier(0.44, 0, 0.56, 1) 0s; }\"];export const className=\"framer-PAXAH\";\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 (b23dae6)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/s2nFZ12YtzAwiibRxlWy/H988gdRJER8jKzyzwWCV/oZjrZ_jFE.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/3EUiFCzP0YKfL7511uTT/lT8uQhmLwy8UfDIZoddm/Z3dmvbiyz.js\";const serializationHash=\"framer-ilAXI\";const variantClassNames={wbdkI0R6l:\"framer-v-cjdebc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.15,ease:[.44,0,.56,1],type:\"tween\"};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({click,height,id,label,link,width,...props})=>{return{...props,KVclrq3nk:click??props.KVclrq3nk,KXPD0LWxL:label??props.KXPD0LWxL??\"Label\",pU5PGplG9:link??props.pU5PGplG9};};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,KVclrq3nk,KXPD0LWxL,pU5PGplG9,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"wbdkI0R6l\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapnj6xfg=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(KVclrq3nk){await delay(()=>{},100);const res=await KVclrq3nk(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-cjdebc\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wbdkI0R6l\",onTap:onTapnj6xfg,ref:ref??ref1,style:{...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lvl2t7\",\"data-styles-preset\":\"Z3dmvbiyz\",children:/*#__PURE__*/_jsx(Link,{href:pU5PGplG9,nodeId:\"AQp2hWUsr\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ypntbs\",\"data-styles-preset\":\"oZjrZ_jFE\",children:\"Label\"})})})}),className:\"framer-1qioq03\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AQp2hWUsr\",text:KXPD0LWxL,verticalAlignment:\"top\",whileHover:animation,withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ilAXI.framer-ag9ri3, .framer-ilAXI .framer-ag9ri3 { display: block; }\",\".framer-ilAXI.framer-cjdebc { 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: 0px; position: relative; width: min-content; }\",\".framer-ilAXI .framer-1qioq03 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ilAXI.framer-cjdebc { gap: 0px; } .framer-ilAXI.framer-cjdebc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ilAXI.framer-cjdebc > :first-child { margin-left: 0px; } .framer-ilAXI.framer-cjdebc > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 21\n * @framerIntrinsicWidth 43.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"KVclrq3nk\":\"click\",\"KXPD0LWxL\":\"label\",\"pU5PGplG9\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAHXi9m9RX=withCSS(Component,css,\"framer-ilAXI\");export default FramerAHXi9m9RX;FramerAHXi9m9RX.displayName=\"Menu Link\";FramerAHXi9m9RX.defaultProps={height:21,width:43.5};addPropertyControls(FramerAHXi9m9RX,{KVclrq3nk:{title:\"Click\",type:ControlType.EventHandler},KXPD0LWxL:{defaultValue:\"Label\",displayTextArea:false,title:\"Label\",type:ControlType.String},pU5PGplG9:{title:\"Link\",type:ControlType.Link}});addFonts(FramerAHXi9m9RX,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAHXi9m9RX\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"21\",\"framerIntrinsicWidth\":\"43.5\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"KVclrq3nk\\\":\\\"click\\\",\\\"KXPD0LWxL\\\":\\\"label\\\",\\\"pU5PGplG9\\\":\\\"link\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{withEscTap}from\"https://framerusercontent.com/modules/gnLrkeeBY7VT9OVTgRQR/KNNhRbnjtFC4qNjL7T3P/Overrides.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/a4zy9jnSYOcka4osZBOe/V2kLCfIjOfyfpDefjGXZ/Z3dmvbiyz.js\";import MenuLink from\"https://framerusercontent.com/modules/pEKT9fMtiDVblOyGhGgp/HHYcdzPTz13jx644lrI0/AHXi9m9RX.js\";import MenuItem from\"https://framerusercontent.com/modules/84XPGZaPtF7fi1GAQ2Hm/y1N3AsLYRsfEpYLnLY9j/cZflC2cnb.js\";import Line from\"https://framerusercontent.com/modules/sSfAw4qwispdlPiTzBQl/3VDj0ppgBNv3gW8fJOa6/OWYZwpYLq.js\";const MotionDivWithEscTapi6x1u=withCodeBoundaryForOverrides(motion.div,{nodeId:\"YG6BXfCXo\",override:withEscTap,scopeId:\"oRxZ8H1K5\"});const MenuItemFonts=getFonts(MenuItem);const LineFonts=getFonts(Line);const MenuLinkFonts=getFonts(MenuLink);const cycleOrder=[\"p9TKfwr26\",\"igN0o7VFJ\",\"E0feDt7dT\",\"X3jKFPhT8\",\"cDW8QmiCK\",\"VxaupQN7H\",\"bYKp7eEVV\"];const serializationHash=\"framer-9cy7T\";const variantClassNames={bYKp7eEVV:\"framer-v-kgz18q\",cDW8QmiCK:\"framer-v-10cv1in\",E0feDt7dT:\"framer-v-1nv7854\",igN0o7VFJ:\"framer-v-1jse10x\",p9TKfwr26:\"framer-v-1xdajky\",VxaupQN7H:\"framer-v-1nmflm2\",X3jKFPhT8:\"framer-v-1jivmn8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};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={About:\"VxaupQN7H\",Collection:\"E0feDt7dT\",Consulting:\"igN0o7VFJ\",Contact:\"bYKp7eEVV\",Default:\"p9TKfwr26\",Sell:\"cDW8QmiCK\",Service:\"X3jKFPhT8\"};const getProps=({close,height,id,width,...props})=>{return{...props,gRjP9vB3l:close??props.gRjP9vB3l,variant:humanReadableVariantMap[props.variant]??props.variant??\"p9TKfwr26\"};};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,gRjP9vB3l,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"p9TKfwr26\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1kmesfl=activeVariantCallback(async(...args)=>{if(gRjP9vB3l){const res=await gRjP9vB3l(...args);if(res===false)return false;}});const XKyDLRxWU1kmesfl=activeVariantCallback(async(...args)=>{if(gRjP9vB3l){const res=await gRjP9vB3l(...args);if(res===false)return false;}});const KVclrq3nk1kmesfl=activeVariantCallback(async(...args)=>{if(gRjP9vB3l){const res=await gRjP9vB3l(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1xdajky\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"p9TKfwr26\",ref:refBinding,style:{...style},...addPropertyOverrides({bYKp7eEVV:{\"data-framer-name\":\"Contact\"},cDW8QmiCK:{\"data-framer-name\":\"Sell\"},E0feDt7dT:{\"data-framer-name\":\"Collection\"},igN0o7VFJ:{\"data-framer-name\":\"Consulting\"},VxaupQN7H:{\"data-framer-name\":\"About\"},X3jKFPhT8:{\"data-framer-name\":\"Service\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-186208v\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"mPTE7aWrb\",style:{backgroundColor:\"var(--token-7799abdb-1909-4d06-81e5-fbe311c4122b, rgb(234, 233, 229))\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1teyeia\",\"data-framer-name\":\"Main\",layoutDependency:layoutDependency,layoutId:\"RwNBhV8rt\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o2x1y6\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"H1oujUQtn\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rtcf7n\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"xRpT9TmD8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lvl2t7\",\"data-styles-preset\":\"Z3dmvbiyz\",children:\"Menu\"})}),className:\"framer-aj49u3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JMNXzH3nY\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithEscTapi6x1u,{className:\"framer-i6x1u\",\"data-framer-name\":\"Close\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"YG6BXfCXo\",onTap:onTap1kmesfl,whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lvl2t7\",\"data-styles-preset\":\"Z3dmvbiyz\",children:\"Close\"})}),className:\"framer-11kqni1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EOnpWtD3q\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.nav,{className:\"framer-4bkqby\",\"data-framer-name\":\"Nav\",layoutDependency:layoutDependency,layoutId:\"kw1oqfiaY\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"OZQ12Jc38\"},implicitPathVariables:undefined},{href:{webPageId:\"OZQ12Jc38\"},implicitPathVariables:undefined},{href:{webPageId:\"OZQ12Jc38\"},implicitPathVariables:undefined},{href:{webPageId:\"OZQ12Jc38\"},implicitPathVariables:undefined},{href:{webPageId:\"OZQ12Jc38\"},implicitPathVariables:undefined},{href:{webPageId:\"OZQ12Jc38\"},implicitPathVariables:undefined},{href:{webPageId:\"OZQ12Jc38\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-47h44y-container\",layoutDependency:layoutDependency,layoutId:\"ifSKdWfMr-container\",nodeId:\"ifSKdWfMr\",rendersWithMotion:true,scopeId:\"oRxZ8H1K5\",children:/*#__PURE__*/_jsx(MenuItem,{F2dL7oP0t:resolvedLinks[0],ffJHc2QT8:false,height:\"100%\",id:\"ifSKdWfMr\",layoutId:\"ifSKdWfMr\",Q9Bv1yCH8:\"xQG6ND9pu\",SkIGlE6hQ:\"Consulting\",style:{width:\"100%\"},variant:\"j39FV34Am\",width:\"100%\",XKyDLRxWU:XKyDLRxWU1kmesfl,...addPropertyOverrides({bYKp7eEVV:{F2dL7oP0t:resolvedLinks[6]},cDW8QmiCK:{F2dL7oP0t:resolvedLinks[4]},E0feDt7dT:{F2dL7oP0t:resolvedLinks[2]},igN0o7VFJ:{F2dL7oP0t:resolvedLinks[1],variant:\"kZGxtjJVC\"},VxaupQN7H:{F2dL7oP0t:resolvedLinks[5]},X3jKFPhT8:{F2dL7oP0t:resolvedLinks[3]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"M3ohHvmWS\"},implicitPathVariables:undefined},{href:{webPageId:\"M3ohHvmWS\"},implicitPathVariables:undefined},{href:{webPageId:\"M3ohHvmWS\"},implicitPathVariables:undefined},{href:{webPageId:\"M3ohHvmWS\"},implicitPathVariables:undefined},{href:{webPageId:\"M3ohHvmWS\"},implicitPathVariables:undefined},{href:{webPageId:\"M3ohHvmWS\"},implicitPathVariables:undefined},{href:{webPageId:\"M3ohHvmWS\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-l5ycxj-container\",layoutDependency:layoutDependency,layoutId:\"F_1d2gydi-container\",nodeId:\"F_1d2gydi\",rendersWithMotion:true,scopeId:\"oRxZ8H1K5\",children:/*#__PURE__*/_jsx(MenuItem,{F2dL7oP0t:resolvedLinks1[0],ffJHc2QT8:false,height:\"100%\",id:\"F_1d2gydi\",layoutId:\"F_1d2gydi\",Q9Bv1yCH8:\"xQG6ND9pu\",SkIGlE6hQ:\"Collection\",style:{width:\"100%\"},variant:\"j39FV34Am\",width:\"100%\",XKyDLRxWU:XKyDLRxWU1kmesfl,...addPropertyOverrides({bYKp7eEVV:{F2dL7oP0t:resolvedLinks1[6]},cDW8QmiCK:{F2dL7oP0t:resolvedLinks1[4]},E0feDt7dT:{F2dL7oP0t:resolvedLinks1[2],variant:\"kZGxtjJVC\"},igN0o7VFJ:{F2dL7oP0t:resolvedLinks1[1]},VxaupQN7H:{F2dL7oP0t:resolvedLinks1[5]},X3jKFPhT8:{F2dL7oP0t:resolvedLinks1[3]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VKUHnOsxl\"},implicitPathVariables:undefined},{href:{webPageId:\"VKUHnOsxl\"},implicitPathVariables:undefined},{href:{webPageId:\"VKUHnOsxl\"},implicitPathVariables:undefined},{href:{webPageId:\"VKUHnOsxl\"},implicitPathVariables:undefined},{href:{webPageId:\"VKUHnOsxl\"},implicitPathVariables:undefined},{href:{webPageId:\"VKUHnOsxl\"},implicitPathVariables:undefined},{href:{webPageId:\"VKUHnOsxl\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16j6keh-container\",layoutDependency:layoutDependency,layoutId:\"GHnNAWJNL-container\",nodeId:\"GHnNAWJNL\",rendersWithMotion:true,scopeId:\"oRxZ8H1K5\",children:/*#__PURE__*/_jsx(MenuItem,{F2dL7oP0t:resolvedLinks2[0],ffJHc2QT8:false,height:\"100%\",id:\"GHnNAWJNL\",layoutId:\"GHnNAWJNL\",Q9Bv1yCH8:\"xQG6ND9pu\",SkIGlE6hQ:\"Service\",style:{width:\"100%\"},variant:\"j39FV34Am\",width:\"100%\",XKyDLRxWU:XKyDLRxWU1kmesfl,...addPropertyOverrides({bYKp7eEVV:{F2dL7oP0t:resolvedLinks2[6]},cDW8QmiCK:{F2dL7oP0t:resolvedLinks2[4]},E0feDt7dT:{F2dL7oP0t:resolvedLinks2[2]},igN0o7VFJ:{F2dL7oP0t:resolvedLinks2[1]},VxaupQN7H:{F2dL7oP0t:resolvedLinks2[5]},X3jKFPhT8:{F2dL7oP0t:resolvedLinks2[3],variant:\"kZGxtjJVC\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"P82giYPs3\"},implicitPathVariables:undefined},{href:{webPageId:\"P82giYPs3\"},implicitPathVariables:undefined},{href:{webPageId:\"P82giYPs3\"},implicitPathVariables:undefined},{href:{webPageId:\"P82giYPs3\"},implicitPathVariables:undefined},{href:{webPageId:\"P82giYPs3\"},implicitPathVariables:undefined},{href:{webPageId:\"P82giYPs3\"},implicitPathVariables:undefined},{href:{webPageId:\"P82giYPs3\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6r8brw-container\",layoutDependency:layoutDependency,layoutId:\"iQGZ4_YXp-container\",nodeId:\"iQGZ4_YXp\",rendersWithMotion:true,scopeId:\"oRxZ8H1K5\",children:/*#__PURE__*/_jsx(MenuItem,{F2dL7oP0t:resolvedLinks3[0],ffJHc2QT8:false,height:\"100%\",id:\"iQGZ4_YXp\",layoutId:\"iQGZ4_YXp\",Q9Bv1yCH8:\"xQG6ND9pu\",SkIGlE6hQ:\"Sell\",style:{width:\"100%\"},variant:\"j39FV34Am\",width:\"100%\",XKyDLRxWU:XKyDLRxWU1kmesfl,...addPropertyOverrides({bYKp7eEVV:{F2dL7oP0t:resolvedLinks3[6]},cDW8QmiCK:{F2dL7oP0t:resolvedLinks3[4],variant:\"kZGxtjJVC\"},E0feDt7dT:{F2dL7oP0t:resolvedLinks3[2]},igN0o7VFJ:{F2dL7oP0t:resolvedLinks3[1]},VxaupQN7H:{F2dL7oP0t:resolvedLinks3[5]},X3jKFPhT8:{F2dL7oP0t:resolvedLinks3[3]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jER1fnGhs\"},implicitPathVariables:undefined},{href:{webPageId:\"jER1fnGhs\"},implicitPathVariables:undefined},{href:{webPageId:\"jER1fnGhs\"},implicitPathVariables:undefined},{href:{webPageId:\"jER1fnGhs\"},implicitPathVariables:undefined},{href:{webPageId:\"jER1fnGhs\"},implicitPathVariables:undefined},{href:{webPageId:\"jER1fnGhs\"},implicitPathVariables:undefined},{href:{webPageId:\"jER1fnGhs\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hkwglg-container\",layoutDependency:layoutDependency,layoutId:\"P15OyS0TG-container\",nodeId:\"P15OyS0TG\",rendersWithMotion:true,scopeId:\"oRxZ8H1K5\",children:/*#__PURE__*/_jsx(MenuItem,{F2dL7oP0t:resolvedLinks4[0],ffJHc2QT8:false,height:\"100%\",id:\"P15OyS0TG\",layoutId:\"P15OyS0TG\",Q9Bv1yCH8:\"xQG6ND9pu\",SkIGlE6hQ:\"About\",style:{width:\"100%\"},variant:\"j39FV34Am\",width:\"100%\",XKyDLRxWU:XKyDLRxWU1kmesfl,...addPropertyOverrides({bYKp7eEVV:{F2dL7oP0t:resolvedLinks4[6]},cDW8QmiCK:{F2dL7oP0t:resolvedLinks4[4]},E0feDt7dT:{F2dL7oP0t:resolvedLinks4[2]},igN0o7VFJ:{F2dL7oP0t:resolvedLinks4[1]},VxaupQN7H:{F2dL7oP0t:resolvedLinks4[5],variant:\"kZGxtjJVC\"},X3jKFPhT8:{F2dL7oP0t:resolvedLinks4[3]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QysaOkGnT\"},implicitPathVariables:undefined},{href:{webPageId:\"QysaOkGnT\"},implicitPathVariables:undefined},{href:{webPageId:\"QysaOkGnT\"},implicitPathVariables:undefined},{href:{webPageId:\"QysaOkGnT\"},implicitPathVariables:undefined},{href:{webPageId:\"QysaOkGnT\"},implicitPathVariables:undefined},{href:{webPageId:\"QysaOkGnT\"},implicitPathVariables:undefined},{href:{webPageId:\"QysaOkGnT\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a3ykkq-container\",layoutDependency:layoutDependency,layoutId:\"rH3JrV8CT-container\",nodeId:\"rH3JrV8CT\",rendersWithMotion:true,scopeId:\"oRxZ8H1K5\",children:/*#__PURE__*/_jsx(MenuItem,{F2dL7oP0t:resolvedLinks5[0],ffJHc2QT8:false,height:\"100%\",id:\"rH3JrV8CT\",layoutId:\"rH3JrV8CT\",Q9Bv1yCH8:\"xQG6ND9pu\",SkIGlE6hQ:\"Contact\",style:{width:\"100%\"},variant:\"j39FV34Am\",width:\"100%\",XKyDLRxWU:XKyDLRxWU1kmesfl,...addPropertyOverrides({bYKp7eEVV:{F2dL7oP0t:resolvedLinks5[6],variant:\"kZGxtjJVC\"},cDW8QmiCK:{F2dL7oP0t:resolvedLinks5[4]},E0feDt7dT:{F2dL7oP0t:resolvedLinks5[2]},igN0o7VFJ:{F2dL7oP0t:resolvedLinks5[1]},VxaupQN7H:{F2dL7oP0t:resolvedLinks5[5]},X3jKFPhT8:{F2dL7oP0t:resolvedLinks5[3]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ta44e2-container\",layoutDependency:layoutDependency,layoutId:\"EXvE9LwKd-container\",nodeId:\"EXvE9LwKd\",rendersWithMotion:true,scopeId:\"oRxZ8H1K5\",children:/*#__PURE__*/_jsx(Line,{height:\"100%\",id:\"EXvE9LwKd\",layoutId:\"EXvE9LwKd\",style:{width:\"100%\"},variant:\"xQG6ND9pu\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kx6zaz\",\"data-framer-name\":\"Meta\",layoutDependency:layoutDependency,layoutId:\"rUuAtifIc\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nrobia\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"HloO2BYdR\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1npft8u\",\"data-framer-name\":\"Nav\",layoutDependency:layoutDependency,layoutId:\"KN9rG1JLd\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"RftNy4RFN\"},implicitPathVariables:undefined},{href:{webPageId:\"RftNy4RFN\"},implicitPathVariables:undefined},{href:{webPageId:\"RftNy4RFN\"},implicitPathVariables:undefined},{href:{webPageId:\"RftNy4RFN\"},implicitPathVariables:undefined},{href:{webPageId:\"RftNy4RFN\"},implicitPathVariables:undefined},{href:{webPageId:\"RftNy4RFN\"},implicitPathVariables:undefined},{href:{webPageId:\"RftNy4RFN\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ffxsnh-container\",layoutDependency:layoutDependency,layoutId:\"uM6dxx3iY-container\",nodeId:\"uM6dxx3iY\",rendersWithMotion:true,scopeId:\"oRxZ8H1K5\",children:/*#__PURE__*/_jsx(MenuLink,{height:\"100%\",id:\"uM6dxx3iY\",KVclrq3nk:KVclrq3nk1kmesfl,KXPD0LWxL:\"FAQ\",layoutId:\"uM6dxx3iY\",pU5PGplG9:resolvedLinks6[0],width:\"100%\",...addPropertyOverrides({bYKp7eEVV:{pU5PGplG9:resolvedLinks6[6]},cDW8QmiCK:{pU5PGplG9:resolvedLinks6[4]},E0feDt7dT:{pU5PGplG9:resolvedLinks6[2]},igN0o7VFJ:{pU5PGplG9:resolvedLinks6[1]},VxaupQN7H:{pU5PGplG9:resolvedLinks6[5]},X3jKFPhT8:{pU5PGplG9:resolvedLinks6[3]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"u3QuZl6vR\"},implicitPathVariables:undefined},{href:{webPageId:\"u3QuZl6vR\"},implicitPathVariables:undefined},{href:{webPageId:\"u3QuZl6vR\"},implicitPathVariables:undefined},{href:{webPageId:\"u3QuZl6vR\"},implicitPathVariables:undefined},{href:{webPageId:\"u3QuZl6vR\"},implicitPathVariables:undefined},{href:{webPageId:\"u3QuZl6vR\"},implicitPathVariables:undefined},{href:{webPageId:\"u3QuZl6vR\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lk06tx-container\",layoutDependency:layoutDependency,layoutId:\"c4SA4xKLz-container\",nodeId:\"c4SA4xKLz\",rendersWithMotion:true,scopeId:\"oRxZ8H1K5\",children:/*#__PURE__*/_jsx(MenuLink,{height:\"100%\",id:\"c4SA4xKLz\",KVclrq3nk:KVclrq3nk1kmesfl,KXPD0LWxL:\"Terms & Conditions\",layoutId:\"c4SA4xKLz\",pU5PGplG9:resolvedLinks7[0],width:\"100%\",...addPropertyOverrides({bYKp7eEVV:{pU5PGplG9:resolvedLinks7[6]},cDW8QmiCK:{pU5PGplG9:resolvedLinks7[4]},E0feDt7dT:{pU5PGplG9:resolvedLinks7[2]},igN0o7VFJ:{pU5PGplG9:resolvedLinks7[1]},VxaupQN7H:{pU5PGplG9:resolvedLinks7[5]},X3jKFPhT8:{pU5PGplG9:resolvedLinks7[3]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gE9ilJIY7\"},implicitPathVariables:undefined},{href:{webPageId:\"gE9ilJIY7\"},implicitPathVariables:undefined},{href:{webPageId:\"gE9ilJIY7\"},implicitPathVariables:undefined},{href:{webPageId:\"gE9ilJIY7\"},implicitPathVariables:undefined},{href:{webPageId:\"gE9ilJIY7\"},implicitPathVariables:undefined},{href:{webPageId:\"gE9ilJIY7\"},implicitPathVariables:undefined},{href:{webPageId:\"gE9ilJIY7\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1usesh2-container\",layoutDependency:layoutDependency,layoutId:\"QhxqUGDCc-container\",nodeId:\"QhxqUGDCc\",rendersWithMotion:true,scopeId:\"oRxZ8H1K5\",children:/*#__PURE__*/_jsx(MenuLink,{height:\"100%\",id:\"QhxqUGDCc\",KVclrq3nk:KVclrq3nk1kmesfl,KXPD0LWxL:\"Privacy Policy\",layoutId:\"QhxqUGDCc\",pU5PGplG9:resolvedLinks8[0],width:\"100%\",...addPropertyOverrides({bYKp7eEVV:{pU5PGplG9:resolvedLinks8[6]},cDW8QmiCK:{pU5PGplG9:resolvedLinks8[4]},E0feDt7dT:{pU5PGplG9:resolvedLinks8[2]},igN0o7VFJ:{pU5PGplG9:resolvedLinks8[1]},VxaupQN7H:{pU5PGplG9:resolvedLinks8[5]},X3jKFPhT8:{pU5PGplG9:resolvedLinks8[3]}},baseVariant,gestureVariant)})})})})]})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9cy7T.framer-sbrlxx, .framer-9cy7T .framer-sbrlxx { display: block; }\",\".framer-9cy7T.framer-1xdajky { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 800px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 400px; }\",\".framer-9cy7T .framer-186208v { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: hidden; overflow-y: auto; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-9cy7T .framer-1teyeia, .framer-9cy7T .framer-4bkqby { 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; position: relative; width: 100%; }\",\".framer-9cy7T .framer-o2x1y6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 15px 16px 15px 30px; position: relative; width: 100%; }\",\".framer-9cy7T .framer-1rtcf7n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9cy7T .framer-aj49u3, .framer-9cy7T .framer-11kqni1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-9cy7T .framer-i6x1u { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-9cy7T .framer-47h44y-container, .framer-9cy7T .framer-l5ycxj-container, .framer-9cy7T .framer-16j6keh-container, .framer-9cy7T .framer-6r8brw-container, .framer-9cy7T .framer-1hkwglg-container, .framer-9cy7T .framer-1a3ykkq-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-9cy7T .framer-ta44e2-container { bottom: 0px; flex: none; height: auto; left: 0px; position: absolute; width: 100%; z-index: 1; }\",\".framer-9cy7T .framer-1kx6zaz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px; position: relative; width: 100%; }\",\".framer-9cy7T .framer-1nrobia { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9cy7T .framer-1npft8u { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-9cy7T .framer-ffxsnh-container, .framer-9cy7T .framer-lk06tx-container, .framer-9cy7T .framer-1usesh2-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9cy7T.framer-1xdajky, .framer-9cy7T .framer-1teyeia, .framer-9cy7T .framer-1rtcf7n, .framer-9cy7T .framer-i6x1u, .framer-9cy7T .framer-4bkqby, .framer-9cy7T .framer-1kx6zaz, .framer-9cy7T .framer-1nrobia, .framer-9cy7T .framer-1npft8u { gap: 0px; } .framer-9cy7T.framer-1xdajky > *, .framer-9cy7T .framer-1teyeia > *, .framer-9cy7T .framer-4bkqby > *, .framer-9cy7T .framer-1kx6zaz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9cy7T.framer-1xdajky > :first-child, .framer-9cy7T .framer-1teyeia > :first-child, .framer-9cy7T .framer-4bkqby > :first-child, .framer-9cy7T .framer-1kx6zaz > :first-child, .framer-9cy7T .framer-1npft8u > :first-child { margin-top: 0px; } .framer-9cy7T.framer-1xdajky > :last-child, .framer-9cy7T .framer-1teyeia > :last-child, .framer-9cy7T .framer-4bkqby > :last-child, .framer-9cy7T .framer-1kx6zaz > :last-child, .framer-9cy7T .framer-1npft8u > :last-child { margin-bottom: 0px; } .framer-9cy7T .framer-1rtcf7n > *, .framer-9cy7T .framer-i6x1u > *, .framer-9cy7T .framer-1nrobia > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9cy7T .framer-1rtcf7n > :first-child, .framer-9cy7T .framer-i6x1u > :first-child, .framer-9cy7T .framer-1nrobia > :first-child { margin-left: 0px; } .framer-9cy7T .framer-1rtcf7n > :last-child, .framer-9cy7T .framer-i6x1u > :last-child, .framer-9cy7T .framer-1nrobia > :last-child { margin-right: 0px; } .framer-9cy7T .framer-1npft8u > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"igN0o7VFJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"E0feDt7dT\":{\"layout\":[\"fixed\",\"fixed\"]},\"X3jKFPhT8\":{\"layout\":[\"fixed\",\"fixed\"]},\"cDW8QmiCK\":{\"layout\":[\"fixed\",\"fixed\"]},\"VxaupQN7H\":{\"layout\":[\"fixed\",\"fixed\"]},\"bYKp7eEVV\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"gRjP9vB3l\":\"close\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroRxZ8H1K5=withCSS(Component,css,\"framer-9cy7T\");export default FrameroRxZ8H1K5;FrameroRxZ8H1K5.displayName=\"Menu Panel\";FrameroRxZ8H1K5.defaultProps={height:800,width:400};addPropertyControls(FrameroRxZ8H1K5,{variant:{options:[\"p9TKfwr26\",\"igN0o7VFJ\",\"E0feDt7dT\",\"X3jKFPhT8\",\"cDW8QmiCK\",\"VxaupQN7H\",\"bYKp7eEVV\"],optionTitles:[\"Default\",\"Consulting\",\"Collection\",\"Service\",\"Sell\",\"About\",\"Contact\"],title:\"Variant\",type:ControlType.Enum},gRjP9vB3l:{title:\"Close\",type:ControlType.EventHandler}});addFonts(FrameroRxZ8H1K5,[{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\"}]},...MenuItemFonts,...LineFonts,...MenuLinkFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroRxZ8H1K5\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"igN0o7VFJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"E0feDt7dT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"X3jKFPhT8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cDW8QmiCK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VxaupQN7H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bYKp7eEVV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"gRjP9vB3l\\\":\\\"close\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"400\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"800\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oRxZ8H1K5.map", "// Generated by Framer (801536f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/3EUiFCzP0YKfL7511uTT/lT8uQhmLwy8UfDIZoddm/Z3dmvbiyz.js\";import Icon from\"https://framerusercontent.com/modules/CjSuiV2HTImGoZW7XqOT/NHiL44QjEdASGctQKXPV/fKqVORDqh.js\";const IconFonts=getFonts(Icon);const IconControls=getPropertyControls(Icon);const enabledGestures={F9rpFOx3u:{hover:true},gDCkbdrE_:{hover:true},WIoQrXZkh:{hover:true}};const cycleOrder=[\"F9rpFOx3u\",\"gDCkbdrE_\",\"WIoQrXZkh\"];const serializationHash=\"framer-zrJiA\";const variantClassNames={F9rpFOx3u:\"framer-v-3u7sb0\",gDCkbdrE_:\"framer-v-9ioyuc\",WIoQrXZkh:\"framer-v-1hzp0pg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.15,ease:[.44,0,.56,1],type:\"tween\"};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Arrow Down\":\"HWiYmqZPs\",\"Arrow External\":\"jx5zTOM9c\",\"Arrow Left\":\"bS4ZFQjz_\",\"Arrow Right\":\"KIV6d2UyI\",\"Arrow Up\":\"Olpx1ReJI\"};const humanReadableEnumMap1={After:\"w0AfcEi8U\",Before:\"tyDqHMWnr\",None:\"eU7H4EFAF\"};const humanReadableVariantMap={Default:\"F9rpFOx3u\",Minimal:\"WIoQrXZkh\",Secondary:\"gDCkbdrE_\"};const getProps=({background,click,color,height,icon,iconBorder,iconColor,iconPosition,id,label,link,width,...props})=>{return{...props,DS7mNPbxu:humanReadableEnumMap1[iconPosition]??iconPosition??props.DS7mNPbxu??\"w0AfcEi8U\",fxlycmQzG:humanReadableEnumMap[icon]??icon??props.fxlycmQzG??\"KIV6d2UyI\",GN2WXjDvr:background??props.GN2WXjDvr??\"var(--token-7876e3d2-8550-481d-8504-4172c74e6969, rgb(247, 247, 247))\",lGUVeRtPn:iconBorder??props.lGUVeRtPn??{borderColor:'var(--token-91dd73ad-94f2-430f-9d01-6e1f58610127, rgb(234, 233, 229)) /* {\"name\":\"On Accent\"} */',borderStyle:\"solid\",borderWidth:1},nnN3aHCoU:click??props.nnN3aHCoU,NSezwnmCY:iconColor??props.NSezwnmCY??\"var(--token-91dd73ad-94f2-430f-9d01-6e1f58610127, rgb(234, 233, 229))\",qdeMrq_Ji:color??props.qdeMrq_Ji??\"var(--token-91dd73ad-94f2-430f-9d01-6e1f58610127, rgb(255, 255, 255))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"F9rpFOx3u\",vbRM54FBB:link??props.vbRM54FBB,xZLoaM7wQ:label??props.xZLoaM7wQ??\"Label\"};};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,xZLoaM7wQ,vbRM54FBB,GN2WXjDvr,qdeMrq_Ji,fxlycmQzG,DS7mNPbxu,NSezwnmCY,lGUVeRtPn,nnN3aHCoU,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"F9rpFOx3u\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapepns4u=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(nnN3aHCoU){const res=await nnN3aHCoU(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const visible=equals(DS7mNPbxu,\"tyDqHMWnr\");const visible1=isSet(xZLoaM7wQ);const visible2=equals(DS7mNPbxu,\"w0AfcEi8U\");const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:vbRM54FBB,nodeId:\"F9rpFOx3u\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-3u7sb0\",className,classNames)} framer-136lyb1`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"F9rpFOx3u\",onTap:onTapepns4u,ref:ref??ref1,style:{backgroundColor:GN2WXjDvr,borderBottomLeftRadius:17,borderBottomRightRadius:17,borderTopLeftRadius:17,borderTopRightRadius:17,...style},variants:{\"WIoQrXZkh-hover\":{backgroundColor:\"var(--token-682e69e6-8a14-44eb-a003-a529a38801c4, rgb(222, 221, 214))\"},gDCkbdrE_:{backgroundColor:\"var(--token-682e69e6-8a14-44eb-a003-a529a38801c4, rgb(222, 221, 214))\"},WIoQrXZkh:{backgroundColor:\"rgba(222, 221, 213, 0)\"}},...addPropertyOverrides({\"F9rpFOx3u-hover\":{\"data-framer-name\":undefined},\"gDCkbdrE_-hover\":{\"data-framer-name\":undefined},\"WIoQrXZkh-hover\":{\"data-framer-name\":undefined},gDCkbdrE_:{\"data-framer-name\":\"Secondary\"},WIoQrXZkh:{\"data-framer-name\":\"Minimal\"}},baseVariant,gestureVariant),children:[visible&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-17i8ybl\",\"data-framer-name\":\"Icon Padding\",layoutDependency:layoutDependency,layoutId:\"rTzmfnBuz\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+(6+((componentViewport?.height||33)-12-20)/2)+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v83t1k-container\",layoutDependency:layoutDependency,layoutId:\"dTlagftXH-container\",children:/*#__PURE__*/_jsx(Icon,{height:\"100%\",id:\"dTlagftXH\",layoutId:\"dTlagftXH\",sTXq5iDDx:{borderColor:'var(--token-91dd73ad-94f2-430f-9d01-6e1f58610127, rgb(234, 233, 229)) /* {\"name\":\"On Accent\"} */',borderStyle:\"solid\",borderWidth:1},style:{height:\"100%\",width:\"100%\"},Txdxb50Uw:\"var(--token-91dd73ad-94f2-430f-9d01-6e1f58610127, rgb(234, 233, 229))\",variant:\"p2JFBfR1O\",vwVTD_Jaa:fxlycmQzG,width:\"100%\",...addPropertyOverrides({\"F9rpFOx3u-hover\":{variant:\"zCCmZ6azP\"},\"gDCkbdrE_-hover\":{variant:\"zCCmZ6azP\"},\"WIoQrXZkh-hover\":{sTXq5iDDx:{borderColor:'var(--token-7876e3d2-8550-481d-8504-4172c74e6969, rgb(0, 0, 0)) /* {\"name\":\"Accent\"} */',borderStyle:\"solid\",borderWidth:1},Txdxb50Uw:\"var(--token-7876e3d2-8550-481d-8504-4172c74e6969, rgb(0, 0, 0))\",variant:\"zCCmZ6azP\"},gDCkbdrE_:{sTXq5iDDx:{borderColor:'var(--token-af2a6339-a082-4f09-940f-57b5476b7e6b, rgb(0, 0, 0)) /* {\"name\":\"On Muted\"} */',borderStyle:\"solid\",borderWidth:1},Txdxb50Uw:\"var(--token-af2a6339-a082-4f09-940f-57b5476b7e6b, rgb(0, 0, 0))\"},WIoQrXZkh:{sTXq5iDDx:{borderColor:'var(--token-af2a6339-a082-4f09-940f-57b5476b7e6b, rgb(0, 0, 0)) /* {\"name\":\"On Muted\"} */',borderStyle:\"solid\",borderWidth:1},Txdxb50Uw:\"var(--token-af2a6339-a082-4f09-940f-57b5476b7e6b, rgb(0, 0, 0))\"}},baseVariant,gestureVariant)})})})}),visible1&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lvl2t7\",\"data-styles-preset\":\"Z3dmvbiyz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-qdeMrq_Ji-ssbnToXC_))\"},children:\"Label\"})}),className:\"framer-1vgltz4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tL4SOliKJ\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-qdeMrq_Ji-ssbnToXC_)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-qdeMrq_Ji-ssbnToXC_\":qdeMrq_Ji},text:xZLoaM7wQ,variants:{gDCkbdrE_:{\"--extracted-r6o4lv\":\"var(--token-af2a6339-a082-4f09-940f-57b5476b7e6b, rgb(0, 0, 0))\"},WIoQrXZkh:{\"--extracted-r6o4lv\":\"var(--token-baa253ac-3b5f-4cf4-b776-756bcd1c0034, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gDCkbdrE_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lvl2t7\",\"data-styles-preset\":\"Z3dmvbiyz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af2a6339-a082-4f09-940f-57b5476b7e6b, rgb(0, 0, 0)))\"},children:\"Label\"})})},WIoQrXZkh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lvl2t7\",\"data-styles-preset\":\"Z3dmvbiyz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-baa253ac-3b5f-4cf4-b776-756bcd1c0034, rgb(0, 0, 0)))\"},children:\"Label\"})})}},baseVariant,gestureVariant)}),visible2&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-9ezi9o\",\"data-framer-name\":\"Icon Padding\",layoutDependency:layoutDependency,layoutId:\"VziMxCbJh\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+(6+((componentViewport?.height||33)-12-20)/2)+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hobj8d-container\",layoutDependency:layoutDependency,layoutId:\"G9lgd6549-container\",children:/*#__PURE__*/_jsx(Icon,{height:\"100%\",id:\"G9lgd6549\",layoutId:\"G9lgd6549\",sTXq5iDDx:lGUVeRtPn,style:{height:\"100%\",width:\"100%\"},Txdxb50Uw:NSezwnmCY,variant:\"p2JFBfR1O\",vwVTD_Jaa:fxlycmQzG,width:\"100%\",...addPropertyOverrides({\"F9rpFOx3u-hover\":{variant:\"zCCmZ6azP\"},\"gDCkbdrE_-hover\":{variant:\"zCCmZ6azP\"},\"WIoQrXZkh-hover\":{variant:\"zCCmZ6azP\"},gDCkbdrE_:{sTXq5iDDx:{borderColor:'var(--token-baa253ac-3b5f-4cf4-b776-756bcd1c0034, rgb(0, 0, 0)) /* {\"name\":\"Foreground\"} */',borderStyle:\"solid\",borderWidth:1},Txdxb50Uw:\"var(--token-baa253ac-3b5f-4cf4-b776-756bcd1c0034, rgb(0, 0, 0))\"},WIoQrXZkh:{sTXq5iDDx:{borderColor:'var(--token-baa253ac-3b5f-4cf4-b776-756bcd1c0034, rgb(0, 0, 0)) /* {\"name\":\"Foreground\"} */',borderStyle:\"solid\",borderWidth:1},Txdxb50Uw:\"var(--token-baa253ac-3b5f-4cf4-b776-756bcd1c0034, rgb(0, 0, 0))\"}},baseVariant,gestureVariant)})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zrJiA.framer-136lyb1, .framer-zrJiA .framer-136lyb1 { display: block; }\",\".framer-zrJiA.framer-3u7sb0 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 6px 14px 6px 14px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-zrJiA .framer-17i8ybl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 8px 0px 0px; position: relative; width: min-content; }\",\".framer-zrJiA .framer-1v83t1k-container, .framer-zrJiA .framer-hobj8d-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-zrJiA .framer-1vgltz4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-zrJiA .framer-9ezi9o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 8px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zrJiA.framer-3u7sb0, .framer-zrJiA .framer-17i8ybl, .framer-zrJiA .framer-9ezi9o { gap: 0px; } .framer-zrJiA.framer-3u7sb0 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-zrJiA.framer-3u7sb0 > :first-child, .framer-zrJiA .framer-17i8ybl > :first-child { margin-left: 0px; } .framer-zrJiA.framer-3u7sb0 > :last-child, .framer-zrJiA .framer-17i8ybl > :last-child { margin-right: 0px; } .framer-zrJiA .framer-17i8ybl > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-zrJiA .framer-9ezi9o > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-zrJiA .framer-9ezi9o > :first-child { margin-top: 0px; } .framer-zrJiA .framer-9ezi9o > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 33\n * @framerIntrinsicWidth 99.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"gDCkbdrE_\":{\"layout\":[\"auto\",\"auto\"]},\"WIoQrXZkh\":{\"layout\":[\"auto\",\"auto\"]},\"fCa7phOWx\":{\"layout\":[\"auto\",\"auto\"]},\"JjZ1FJZfS\":{\"layout\":[\"auto\",\"auto\"]},\"XyVuMtFps\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"xZLoaM7wQ\":\"label\",\"vbRM54FBB\":\"link\",\"GN2WXjDvr\":\"background\",\"qdeMrq_Ji\":\"color\",\"fxlycmQzG\":\"icon\",\"DS7mNPbxu\":\"iconPosition\",\"NSezwnmCY\":\"iconColor\",\"lGUVeRtPn\":\"iconBorder\",\"nnN3aHCoU\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerssbnToXC_=withCSS(Component,css,\"framer-zrJiA\");export default FramerssbnToXC_;FramerssbnToXC_.displayName=\"Button\";FramerssbnToXC_.defaultProps={height:33,width:99.5};addPropertyControls(FramerssbnToXC_,{variant:{options:[\"F9rpFOx3u\",\"gDCkbdrE_\",\"WIoQrXZkh\"],optionTitles:[\"Default\",\"Secondary\",\"Minimal\"],title:\"Variant\",type:ControlType.Enum},xZLoaM7wQ:{defaultValue:\"Label\",displayTextArea:false,title:\"Label\",type:ControlType.String},vbRM54FBB:{title:\"Link\",type:ControlType.Link},GN2WXjDvr:{defaultValue:'var(--token-7876e3d2-8550-481d-8504-4172c74e6969, rgb(247, 247, 247)) /* {\"name\":\"Contrast\"} */',title:\"Background\",type:ControlType.Color},qdeMrq_Ji:{defaultValue:\"var(--token-91dd73ad-94f2-430f-9d01-6e1f58610127, rgb(255, 255, 255))\",title:\"Color\",type:ControlType.Color},fxlycmQzG:IconControls?.[\"vwVTD_Jaa\"]&&{...IconControls[\"vwVTD_Jaa\"],defaultValue:\"KIV6d2UyI\",description:undefined,hidden:undefined,title:\"Icon\"},DS7mNPbxu:{defaultValue:\"w0AfcEi8U\",options:[\"tyDqHMWnr\",\"w0AfcEi8U\",\"eU7H4EFAF\"],optionTitles:[\"Before\",\"After\",\"None\"],title:\"Icon Position\",type:ControlType.Enum},NSezwnmCY:{defaultValue:'var(--token-91dd73ad-94f2-430f-9d01-6e1f58610127, rgb(234, 233, 229)) /* {\"name\":\"On Accent\"} */',title:\"Icon Color\",type:ControlType.Color},lGUVeRtPn:{defaultValue:{borderColor:'var(--token-91dd73ad-94f2-430f-9d01-6e1f58610127, rgb(234, 233, 229)) /* {\"name\":\"On Accent\"} */',borderStyle:\"solid\",borderWidth:1},title:\"Icon Border\",type:ControlType.Border},nnN3aHCoU:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerssbnToXC_,[{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\"}]},...IconFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerssbnToXC_\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"99.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gDCkbdrE_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"WIoQrXZkh\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fCa7phOWx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"JjZ1FJZfS\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"XyVuMtFps\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"xZLoaM7wQ\\\":\\\"label\\\",\\\"vbRM54FBB\\\":\\\"link\\\",\\\"GN2WXjDvr\\\":\\\"background\\\",\\\"qdeMrq_Ji\\\":\\\"color\\\",\\\"fxlycmQzG\\\":\\\"icon\\\",\\\"DS7mNPbxu\\\":\\\"iconPosition\\\",\\\"NSezwnmCY\\\":\\\"iconColor\\\",\\\"lGUVeRtPn\\\":\\\"iconBorder\\\",\\\"nnN3aHCoU\\\":\\\"click\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"33\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["fontStore", "fonts", "css", "className", "SVG", "props", "customSvgElement", "setCustomSvgElement", "ye", "ue", "svgContent", "processCustomSVGContent", "replacements", "hasCustomStroke", "hasCustomStrokeWidth", "hasLineCap", "hasLineJoin", "circleFillRegex", "match", "updatedCircle", "regex", "replacement", "customContainerStyle", "accessibilityProps", "p", "addPropertyControls", "ControlType", "SVG_Prod_default", "SVGFonts", "getFonts", "SVG_Prod_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "convertFromEnum", "value", "activeLocale", "toNumber", "parsedNumber", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "border", "color", "height", "icon", "id", "mouseEnter", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vwVTD_Jaa", "Txdxb50Uw", "sTXq5iDDx", "bpWWoWR0b", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterqr7sdd", "args", "onAppear1xjbjq3", "useOnVariantChange", "scopingClassNames", "cx", "ref1", "pe", "rotation", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "css", "FramerfKqVORDqh", "withCSS", "fKqVORDqh_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "animation2", "transition3", "animation3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "css", "FramerOWYZwpYLq", "withCSS", "OWYZwpYLq_default", "addPropertyControls", "ControlType", "addFonts", "LineFonts", "getFonts", "OWYZwpYLq_default", "IconFonts", "fKqVORDqh_default", "LineControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "negate", "transition3", "transition4", "Variants", "motion", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "click", "height", "icon", "id", "lineVariant", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "F2dL7oP0t", "SkIGlE6hQ", "Q9Bv1yCH8", "ffJHc2QT8", "XKyDLRxWU", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1yvjku8", "args", "onMouseLeave1nygfqx", "onAppear1i1bekl", "onTap1qg0lqg", "useOnVariantChange", "scopingClassNames", "cx", "ref1", "pe", "visible", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "Link", "RichText2", "SVG", "css", "FramercZflC2cnb", "withCSS", "cZflC2cnb_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "animation2", "transition3", "animation3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "css", "FramerOWYZwpYLq", "withCSS", "OWYZwpYLq_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "RichTextWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "RichText2", "LineFonts", "getFonts", "OWYZwpYLq_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transition3", "animation1", "animation2", "negate", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "delayedTitle", "height", "id", "menuClick", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "LEvG9FaSP", "QMIz_GHWd", "tBnQsfIR_", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap63159f", "args", "scopingClassNames", "cx", "visible", "LayoutGroup", "u", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerIV_O8bx2o", "withCSS", "IV_O8bx2o_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "withPullContainer", "Component", "props", "p", "withHeightAuto", "Component", "props", "p", "withIntroHide", "withEscTap", "onTap", "ue", "onKeyDown", "e", "fontStore", "fonts", "css", "className", "serializationHash", "variantClassNames", "transition1", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "getProps", "click", "height", "id", "label", "link", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "KVclrq3nk", "KXPD0LWxL", "pU5PGplG9", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapnj6xfg", "args", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "RichText2", "Link", "css", "FramerAHXi9m9RX", "withCSS", "AHXi9m9RX_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithEscTapi6x1u", "withCodeBoundaryForOverrides", "motion", "withEscTap", "MenuItemFonts", "getFonts", "cZflC2cnb_default", "LineFonts", "OWYZwpYLq_default", "MenuLinkFonts", "AHXi9m9RX_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "humanReadableVariantMap", "getProps", "close", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "gRjP9vB3l", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1kmesfl", "args", "XKyDLRxWU1kmesfl", "KVclrq3nk1kmesfl", "scopingClassNames", "cx", "router", "useRouter", "LayoutGroup", "u", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "css", "FrameroRxZ8H1K5", "withCSS", "oRxZ8H1K5_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "IconFonts", "getFonts", "fKqVORDqh_default", "IconControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "equals", "a", "b", "isSet", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableEnumMap", "humanReadableEnumMap1", "humanReadableVariantMap", "getProps", "background", "click", "color", "height", "icon", "iconBorder", "iconColor", "iconPosition", "id", "label", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "xZLoaM7wQ", "vbRM54FBB", "GN2WXjDvr", "qdeMrq_Ji", "fxlycmQzG", "DS7mNPbxu", "NSezwnmCY", "lGUVeRtPn", "nnN3aHCoU", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapepns4u", "args", "scopingClassNames", "cx", "ref1", "pe", "visible", "visible1", "visible2", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "RichText2", "css", "FramerssbnToXC_", "withCSS", "ssbnToXC_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
