{"version":3,"file":"shared-lib.BM-5wYvC.mjs","names":["useStore","Component","fonts","css","className","fonts","css","className","fonts","css","className","addPropertyOverrides","enabledGestures","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","css","addPropertyOverrides","enabledGestures","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","css","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","css","addPropertyOverrides","BrandLogoFonts","BrandLogo","MenuMenuItemFonts","MenuMenuItem","MenuCTA","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","css","fonts","css","className","fonts","css","className","fonts","css","className","addPropertyOverrides","enabledGestures","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","css","fonts","css","className","addPropertyOverrides","enabledGestures","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","css","fonts","css","className","fonts","css","className","css","addPropertyOverrides","cycleOrder","variantClassNames","humanReadableVariantMap","transitions","Component","className","css","MenuMenuItemFonts","MenuMenuItem","IconsSocialMedia","variantClassNames","Component","className","css","BrandLogo","MenuMenuItem","ComponentsLinkButton","FooterIcons","className"],"sources":["https:/framer.com/m/framer/store.js@^1.0.0","https:/framer.com/m/framer/utils.js@^0.9.0","https:/framerusercontent.com/modules/rI3efn3t8WqpAcVNwhm9/0aAYfoh1aH44R50hhIWy/Hide_show_nav.js","https:/framerusercontent.com/modules/yn1kJ6te5Xfw7l8L884i/z7i2OaWNr53I1mTrTkZ4/lEqPEm8fL.js","https:/framerusercontent.com/modules/AWJ4z2pL68vygVg8k8Gy/9rfbdJj212FP3XLmftoY/Pl2ofxdLY.js","https:/framerusercontent.com/modules/Gh4kNcqvkJcNJjvcPvHU/OBxM5soayH3rtkbI9B1R/Pm_LS6JR1.js","https:/framerusercontent.com/modules/VTExO8LoFRBdWDvX35ks/SQSIeBB309pnHfF8up35/BY_45QHFU.js","https:/framerusercontent.com/modules/4f5CGnaqeQcYrjVzg1Kz/i4Ew1VfXIU0Fu9sUU5iD/EpBn_7SxY.js","https:/framerusercontent.com/modules/UP3QF1IiIjcrvHUhRguJ/JW5qfxBFuIqY0xbytmMf/VzLJpEO4W.js","https:/framerusercontent.com/modules/hLaolFRE43x6F99urs6V/FXMrAIirnTFsuRtqjE7a/cmdZK6bw2.js","https:/framerusercontent.com/modules/0PY0n92BNsuwp6dWSM9L/OzbJ2QNvrF7r1X6OIhOS/E21ufQdt8.js","https:/framerusercontent.com/modules/4AGDVPE4h3lsDqKAAE5J/E7DTEdS48JaFDUAdJvIl/TWmXhtBRr.js","https:/framerusercontent.com/modules/z9FIvI5JN5aIEleW12JL/02JtpgErLxUM7xXiYo78/II6Ml__VJ.js","https:/framerusercontent.com/modules/HbnoBTBPZWXo08KAku2q/D0hLW0vQ8JgnBCrepeWY/E00PHOnId.js","https:/framerusercontent.com/modules/ml6MwyxDxPRggEjtENFb/RoGQpko6gAjy5uzeF9dU/MxsVtljcN.js","https:/framerusercontent.com/modules/xX6Y5ZtVlMWxty5hYWPF/TtVC3txslAPeZ7BlBC91/fqbBijZ6o.js","https:/framerusercontent.com/modules/ksFBYAvfW8FBVNqB1hMB/zCVAAbDg3kiJZi2oAevE/bzCesMQKc.js","https:/framerusercontent.com/modules/vVWvEFrV9SZugHwAMtr9/nPPlReGx4BLFPEtyugnd/fVxnimdqP.js","https:/framerusercontent.com/modules/b8xl3nkE8ymer2rXsko5/bYNvKq2El1TBXJTDVxLI/Oww_WdhKq.js","https:/framerusercontent.com/modules/ZgJKhcausQn5NMr7szWu/Cm6OaCF0xcofq9xqjl3B/mWuQRjpoD.js","https:/framerusercontent.com/modules/38uqlR4tBHGHpsWcA122/BtAh7IydobodpLWijPYE/REiNlwljQ.js","https:/framerusercontent.com/modules/iBY5ueYNStlnjgE888K7/ZeBM6BIF3Vd2KxIvhYBg/me72slqLH.js"],"sourcesContent":["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map","export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map","import{jsx as _jsx}from\"react/jsx-runtime\";import React from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";import{motion,useViewportScroll}from\"framer-motion\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return props=>{return /*#__PURE__*/ _jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/ _jsx(Component,{...props,whileHover:{scale:1}});};}export function withHideOnScroll(Component){return props=>{const[hidden,setHidden]=React.useState(false);function update(){if((scrollY===null||scrollY===void 0?void 0:scrollY.current)<(scrollY===null||scrollY===void 0?void 0:scrollY.prev)){setHidden(false);}else if((scrollY===null||scrollY===void 0?void 0:scrollY.current)>100&&(scrollY===null||scrollY===void 0?void 0:scrollY.current)>(scrollY===null||scrollY===void 0?void 0:scrollY.prev)){setHidden(true);}}/** update the onChange callback to call for `update()` **/ React.useEffect(()=>{return scrollY.onChange(()=>update());});const variants={/** this is the \"visible\" key and it's respective style object **/ visible:{opacity:1,y:0},/** this is the \"hidden\" key and it's respective style object **/ hidden:{opacity:0,y:-25}};const{scrollY}=useViewportScroll();/** add this useEffect hook to return events everytime the scrollY changes **/ React.useEffect(()=>{return scrollY.onChange(()=>console.log(scrollY));});return /*#__PURE__*/ _jsx(motion.nav,{variants:variants,/** it's right here that we match our boolean state with these variant keys **/ animate:hidden?\"hidden\":\"visible\",/** I'm also going to add a custom easing curve and duration for the animation **/ transition:{ease:[.1,.25,.3,1],duration:.6},children:/*#__PURE__*/ _jsx(Component,{...props,whileHover:{scale:1}})});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/ _jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHideOnScroll\":{\"type\":\"reactHoc\",\"name\":\"withHideOnScroll\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Hide_show_nav.map","import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"CUSTOM;Brown LL Medium\",\"CUSTOM;Brown LL Bold\",\"CUSTOM;Brown LL Bold Italic\",\"CUSTOM;Brown LL Medium Italic\"]);export const fonts=[{family:\"Brown LL Medium\",moduleAsset:{localModuleIdentifier:\"local-module:css/lEqPEm8fL:default\",url:\"https://framerusercontent.com/assets/OYFsD1xzs1wzF2E4crxCbWI28JM.otf\"},url:\"https://framerusercontent.com/assets/OYFsD1xzs1wzF2E4crxCbWI28JM.otf\"},{family:\"Brown LL Bold\",moduleAsset:{localModuleIdentifier:\"local-module:css/lEqPEm8fL:default\",url:\"https://framerusercontent.com/assets/c5PN8RZeq3sTUHQPW8v2bs7FQ.otf\"},url:\"https://framerusercontent.com/assets/c5PN8RZeq3sTUHQPW8v2bs7FQ.otf\"},{family:\"Brown LL Bold Italic\",moduleAsset:{localModuleIdentifier:\"local-module:css/lEqPEm8fL:default\",url:\"https://framerusercontent.com/assets/U0VgTIQlQ1OGDMLxnwT9fSC1byY.otf\"},url:\"https://framerusercontent.com/assets/U0VgTIQlQ1OGDMLxnwT9fSC1byY.otf\"},{family:\"Brown LL Medium Italic\",moduleAsset:{localModuleIdentifier:\"local-module:css/lEqPEm8fL:default\",url:\"https://framerusercontent.com/assets/OBZkQ23cVfT9eIAdEhV3g8Wi9Q.otf\"},url:\"https://framerusercontent.com/assets/OBZkQ23cVfT9eIAdEhV3g8Wi9Q.otf\"}];export const css=['.framer-kJuCC .framer-styles-preset-1ftiikx:not(.rich-text-wrapper), .framer-kJuCC .framer-styles-preset-1ftiikx.rich-text-wrapper p { --framer-font-family: \"Brown LL Medium\", sans-serif; --framer-font-family-bold: \"Brown LL Bold\", sans-serif; --framer-font-family-bold-italic: \"Brown LL Bold Italic\", sans-serif; --framer-font-family-italic: \"Brown LL Medium Italic\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.25em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-kJuCC .framer-styles-preset-1ftiikx:not(.rich-text-wrapper), .framer-kJuCC .framer-styles-preset-1ftiikx.rich-text-wrapper p { --framer-font-family: \"Brown LL Medium\", sans-serif; --framer-font-family-bold: \"Brown LL Bold\", sans-serif; --framer-font-family-bold-italic: \"Brown LL Bold Italic\", sans-serif; --framer-font-family-italic: \"Brown LL Medium Italic\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.25em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-kJuCC .framer-styles-preset-1ftiikx:not(.rich-text-wrapper), .framer-kJuCC .framer-styles-preset-1ftiikx.rich-text-wrapper p { --framer-font-family: \"Brown LL Medium\", sans-serif; --framer-font-family-bold: \"Brown LL Bold\", sans-serif; --framer-font-family-bold-italic: \"Brown LL Bold Italic\", sans-serif; --framer-font-family-italic: \"Brown LL Medium Italic\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.25em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-kJuCC\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","import{fontStore as e}from\"framer\";e.loadWebFontsFromSelectors([]);export const fonts=[];export const css=['.framer-jwP9u .framer-styles-preset-10uv97w:not(.rich-text-wrapper), .framer-jwP9u .framer-styles-preset-10uv97w.rich-text-wrapper a { --framer-link-hover-text-color: var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, #ffffff) /* {\"name\":\"White\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, #ffffff); --framer-link-text-decoration: none; }'];export const className=\"framer-jwP9u\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=['.framer-zTAIS .framer-styles-preset-1vj416n:not(.rich-text-wrapper), .framer-zTAIS .framer-styles-preset-1vj416n.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000) /* {\"name\":\"Cool Black\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-link-text-decoration: none; }'];export const className=\"framer-zTAIS\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (a4aa1f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/yn1kJ6te5Xfw7l8L884i/z7i2OaWNr53I1mTrTkZ4/lEqPEm8fL.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/AWJ4z2pL68vygVg8k8Gy/9rfbdJj212FP3XLmftoY/Pl2ofxdLY.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/Gh4kNcqvkJcNJjvcPvHU/OBxM5soayH3rtkbI9B1R/Pm_LS6JR1.js\";const enabledGestures={I0fRkI7sP:{pressed:true},Ii5vXL9QE:{hover:true},Mb7pgF2_T:{hover:true,pressed:true},nZXfR524Q:{hover:true},Rk9YzhWer:{hover:true,pressed:true}};const cycleOrder=[\"U9z_1btOO\",\"Rk9YzhWer\",\"Ii5vXL9QE\",\"I0fRkI7sP\",\"Mb7pgF2_T\",\"nZXfR524Q\",\"CsCHiw1D7\"];const serializationHash=\"framer-WkWAp\";const variantClassNames={CsCHiw1D7:\"framer-v-1las49h\",I0fRkI7sP:\"framer-v-1hd9m1j\",Ii5vXL9QE:\"framer-v-owxrky\",Mb7pgF2_T:\"framer-v-1s90dan\",nZXfR524Q:\"framer-v-r52njw\",Rk9YzhWer:\"framer-v-18g3adq\",U9z_1btOO:\"framer-v-q1tzua\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Text Desktop Active\":\"I0fRkI7sP\",\"Text Desktop Black Active\":\"nZXfR524Q\",\"Text Desktop Black\":\"Mb7pgF2_T\",\"Text Desktop\":\"Rk9YzhWer\",\"Text Mobile Menu\":\"CsCHiw1D7\",\"Text Mobile\":\"Ii5vXL9QE\",\"Text+Icon\":\"U9z_1btOO\"};const getProps=({color,height,id,link,name1,tap,width,...props})=>{return{...props,f_C1eoInL:tap??props.f_C1eoInL,iX6CiYjB1:name1??props.iX6CiYjB1??\"Item\",LjQGrX0Tb:color??props.LjQGrX0Tb??\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\",O9CNUFGCq:link??props.O9CNUFGCq,variant:humanReadableVariantMap[props.variant]??props.variant??\"U9z_1btOO\"};};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,iX6CiYjB1,f_C1eoInL,O9CNUFGCq,LjQGrX0Tb,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"U9z_1btOO\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap4y6euc=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(f_C1eoInL){const res=await f_C1eoInL(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"Rk9YzhWer-hover\",\"Ii5vXL9QE-hover\",\"Rk9YzhWer-pressed\",\"I0fRkI7sP-pressed\",\"Mb7pgF2_T-hover\",\"Mb7pgF2_T-pressed\",\"nZXfR524Q-hover\"].includes(gestureVariant))return false;if([\"Rk9YzhWer\",\"Ii5vXL9QE\",\"I0fRkI7sP\",\"Mb7pgF2_T\",\"nZXfR524Q\",\"CsCHiw1D7\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"Rk9YzhWer-hover\",\"Rk9YzhWer-pressed\",\"I0fRkI7sP-pressed\",\"Mb7pgF2_T-hover\",\"Mb7pgF2_T-pressed\",\"nZXfR524Q-hover\"].includes(gestureVariant))return true;if([\"Rk9YzhWer\",\"I0fRkI7sP\",\"Mb7pgF2_T\",\"nZXfR524Q\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-q1tzua\",className,classNames),\"data-framer-name\":\"Text+Icon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"U9z_1btOO\",onTap:onTap4y6euc,ref:refBinding,style:{opacity:1,...style},variants:{\"I0fRkI7sP-pressed\":{opacity:.7},\"Ii5vXL9QE-hover\":{opacity:.7},\"Mb7pgF2_T-hover\":{opacity:1},\"Mb7pgF2_T-pressed\":{opacity:1},\"nZXfR524Q-hover\":{opacity:1},\"Rk9YzhWer-pressed\":{opacity:.7}},...addPropertyOverrides({\"I0fRkI7sP-pressed\":{\"data-framer-name\":undefined},\"Ii5vXL9QE-hover\":{\"data-framer-name\":undefined},\"Mb7pgF2_T-hover\":{\"data-framer-name\":undefined},\"Mb7pgF2_T-pressed\":{\"data-framer-name\":undefined},\"nZXfR524Q-hover\":{\"data-framer-name\":undefined},\"Rk9YzhWer-hover\":{\"data-framer-name\":undefined},\"Rk9YzhWer-pressed\":{\"data-framer-name\":undefined},CsCHiw1D7:{\"data-framer-name\":\"Text Mobile Menu\"},I0fRkI7sP:{\"data-framer-name\":\"Text Desktop Active\"},Ii5vXL9QE:{\"data-framer-name\":\"Text Mobile\"},Mb7pgF2_T:{\"data-framer-name\":\"Text Desktop Black\"},nZXfR524Q:{\"data-framer-name\":\"Text Desktop Black Active\"},Rk9YzhWer:{\"data-framer-name\":\"Text Desktop\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ofxl0o\",layoutDependency:layoutDependency,layoutId:\"WbSsyRuPB\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-xzcw90\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"bx5fI1BhU\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 18.333 C 5.398 18.333 1.667 14.603 1.667 10 C 1.667 5.398 5.397 1.667 10 1.667 C 14.603 1.667 18.333 5.397 18.333 10 C 18.333 14.603 14.603 18.333 10 18.333 Z M 8.092 16.389 C 7.27 14.645 6.793 12.759 6.689 10.833 L 3.385 10.833 C 3.716 13.453 5.562 15.632 8.092 16.389 Z M 8.358 10.833 C 8.484 12.866 9.065 14.775 10 16.46 C 10.96 14.73 11.521 12.808 11.642 10.833 Z M 16.615 10.833 L 13.311 10.833 C 13.207 12.759 12.73 14.645 11.908 16.389 C 14.438 15.632 16.284 13.453 16.615 10.833 Z M 3.385 9.167 L 6.689 9.167 C 6.793 7.241 7.27 5.355 8.092 3.611 C 5.562 4.368 3.716 6.547 3.385 9.167 Z M 8.359 9.167 L 11.641 9.167 C 11.521 7.192 10.96 5.27 10 3.54 C 9.04 5.27 8.479 7.192 8.358 9.167 Z M 11.908 3.611 C 12.73 5.355 13.207 7.241 13.311 9.167 L 16.615 9.167 C 16.284 6.547 14.438 4.368 11.908 3.611 Z\" fill=\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:11625688073,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Jyb3duIExMIE1lZGl1bQ==\",\"--framer-font-family\":'\"Brown LL Medium\", serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.25em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255)))\"},children:\"Item\"})}),className:\"framer-fv6zfn\",fonts:[\"CUSTOM;Brown LL Medium\"],layoutDependency:layoutDependency,layoutId:\"ZZhqdpni0\",style:{\"--extracted-r6o4lv\":\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-LjQGrX0Tb-BY_45QHFU\":LjQGrX0Tb},text:iX6CiYjB1,variants:{CsCHiw1D7:{\"--extracted-r6o4lv\":\"var(--variable-reference-LjQGrX0Tb-BY_45QHFU)\",\"--variable-reference-LjQGrX0Tb-BY_45QHFU\":LjQGrX0Tb},I0fRkI7sP:{\"--extracted-r6o4lv\":\"var(--variable-reference-LjQGrX0Tb-BY_45QHFU)\",\"--variable-reference-LjQGrX0Tb-BY_45QHFU\":LjQGrX0Tb},Mb7pgF2_T:{\"--extracted-r6o4lv\":\"var(--variable-reference-LjQGrX0Tb-BY_45QHFU)\",\"--variable-reference-LjQGrX0Tb-BY_45QHFU\":LjQGrX0Tb},nZXfR524Q:{\"--extracted-r6o4lv\":\"var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0))\"},Rk9YzhWer:{\"--extracted-r6o4lv\":\"var(--variable-reference-LjQGrX0Tb-BY_45QHFU)\",\"--variable-reference-LjQGrX0Tb-BY_45QHFU\":LjQGrX0Tb}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CsCHiw1D7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ftiikx\",\"data-styles-preset\":\"lEqPEm8fL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-LjQGrX0Tb-BY_45QHFU))\"},children:\"Item\"})}),fonts:[\"Inter\"]},I0fRkI7sP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ftiikx\",\"data-styles-preset\":\"lEqPEm8fL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-LjQGrX0Tb-BY_45QHFU))\"},children:/*#__PURE__*/_jsx(Link,{href:O9CNUFGCq,motionChild:true,nodeId:\"ZZhqdpni0\",openInNewTab:false,relValues:[],scopeId:\"BY_45QHFU\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-10uv97w\",\"data-styles-preset\":\"Pl2ofxdLY\",children:\"Item\"})})})}),fonts:[\"Inter\"]},Ii5vXL9QE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Jyb3duIExMIE1lZGl1bQ==\",\"--framer-font-family\":'\"Brown LL Medium\", serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.25em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:O9CNUFGCq,motionChild:true,nodeId:\"ZZhqdpni0\",openInNewTab:false,relValues:[],scopeId:\"BY_45QHFU\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-10uv97w\",\"data-styles-preset\":\"Pl2ofxdLY\",children:\"Item\"})})})})},Mb7pgF2_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ftiikx\",\"data-styles-preset\":\"lEqPEm8fL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-LjQGrX0Tb-BY_45QHFU))\"},children:/*#__PURE__*/_jsx(Link,{href:O9CNUFGCq,motionChild:true,nodeId:\"ZZhqdpni0\",openInNewTab:false,relValues:[],scopeId:\"BY_45QHFU\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1vj416n\",\"data-styles-preset\":\"Pm_LS6JR1\",children:\"Item\"})})})}),fonts:[\"Inter\"]},nZXfR524Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ftiikx\",\"data-styles-preset\":\"lEqPEm8fL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:O9CNUFGCq,motionChild:true,nodeId:\"ZZhqdpni0\",openInNewTab:false,relValues:[],scopeId:\"BY_45QHFU\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1vj416n\",\"data-styles-preset\":\"Pm_LS6JR1\",children:\"Item\"})})})}),fonts:[\"Inter\"]},Rk9YzhWer:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ftiikx\",\"data-styles-preset\":\"lEqPEm8fL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-LjQGrX0Tb-BY_45QHFU))\"},children:/*#__PURE__*/_jsx(Link,{href:O9CNUFGCq,motionChild:true,nodeId:\"ZZhqdpni0\",openInNewTab:false,relValues:[],scopeId:\"BY_45QHFU\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-10uv97w\",\"data-styles-preset\":\"Pl2ofxdLY\",children:\"Item\"})})})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-reqi7f\",\"data-framer-name\":\"Underline\",layoutDependency:layoutDependency,layoutId:\"LUVW0S2do\",style:{backgroundColor:\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\"},variants:{I0fRkI7sP:{backgroundColor:LjQGrX0Tb},Mb7pgF2_T:{backgroundColor:\"var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0))\"},nZXfR524Q:{backgroundColor:\"var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0))\"},Rk9YzhWer:{backgroundColor:LjQGrX0Tb}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WkWAp.framer-101xph7, .framer-WkWAp .framer-101xph7 { display: block; }\",\".framer-WkWAp.framer-q1tzua { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-WkWAp .framer-ofxl0o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-WkWAp .framer-xzcw90 { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-WkWAp .framer-fv6zfn { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-WkWAp .framer-reqi7f { flex: none; height: 2px; overflow: visible; position: relative; width: 0px; z-index: 1; }\",\".framer-WkWAp.framer-v-18g3adq.framer-q1tzua, .framer-WkWAp.framer-v-1hd9m1j.framer-q1tzua, .framer-WkWAp.framer-v-1s90dan.framer-q1tzua, .framer-WkWAp.framer-v-r52njw.framer-q1tzua { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 4px; height: 25px; justify-content: flex-start; }\",\".framer-WkWAp.framer-v-18g3adq .framer-ofxl0o, .framer-WkWAp.framer-v-1hd9m1j .framer-ofxl0o, .framer-WkWAp.framer-v-1s90dan .framer-ofxl0o, .framer-WkWAp.framer-v-r52njw .framer-ofxl0o { align-content: flex-start; align-items: flex-start; height: 25px; }\",\".framer-WkWAp.framer-v-18g3adq .framer-fv6zfn, .framer-WkWAp.framer-v-1hd9m1j .framer-fv6zfn, .framer-WkWAp.framer-v-1s90dan .framer-fv6zfn, .framer-WkWAp.framer-v-r52njw .framer-fv6zfn, .framer-WkWAp.framer-v-1las49h .framer-fv6zfn { order: 1; }\",\".framer-WkWAp.framer-v-1hd9m1j .framer-reqi7f, .framer-WkWAp.framer-v-r52njw .framer-reqi7f, .framer-WkWAp.framer-v-18g3adq.hover .framer-reqi7f, .framer-WkWAp.framer-v-1s90dan.hover .framer-reqi7f, .framer-WkWAp.framer-v-1s90dan.pressed .framer-reqi7f { align-self: stretch; width: auto; }\",\".framer-WkWAp.framer-v-1las49h.framer-q1tzua { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 4px; justify-content: flex-start; }\",\".framer-WkWAp.framer-v-1las49h .framer-ofxl0o { align-content: flex-start; align-items: flex-start; }\",\".framer-WkWAp.framer-v-18g3adq.pressed .framer-reqi7f { width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 22.5\n * @framerIntrinsicWidth 65\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Rk9YzhWer\":{\"layout\":[\"auto\",\"fixed\"]},\"Ii5vXL9QE\":{\"layout\":[\"auto\",\"auto\"]},\"I0fRkI7sP\":{\"layout\":[\"auto\",\"fixed\"]},\"Mb7pgF2_T\":{\"layout\":[\"auto\",\"fixed\"]},\"nZXfR524Q\":{\"layout\":[\"auto\",\"fixed\"]},\"CsCHiw1D7\":{\"layout\":[\"auto\",\"auto\"]},\"VNJ1xTkbZ\":{\"layout\":[\"auto\",\"fixed\"]},\"He_CoRuSO\":{\"layout\":[\"auto\",\"auto\"]},\"AX_Q6QpBM\":{\"layout\":[\"auto\",\"fixed\"]},\"sJov_QUvV\":{\"layout\":[\"auto\",\"fixed\"]},\"lAkZPcnLz\":{\"layout\":[\"auto\",\"fixed\"]},\"CMgYKpi8R\":{\"layout\":[\"auto\",\"fixed\"]},\"ijtFS98ew\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"iX6CiYjB1\":\"name1\",\"f_C1eoInL\":\"tap\",\"O9CNUFGCq\":\"link\",\"LjQGrX0Tb\":\"color\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerBY_45QHFU=withCSS(Component,css,\"framer-WkWAp\");export default FramerBY_45QHFU;FramerBY_45QHFU.displayName=\"Menu/Menu Item\";FramerBY_45QHFU.defaultProps={height:22.5,width:65};addPropertyControls(FramerBY_45QHFU,{variant:{options:[\"U9z_1btOO\",\"Rk9YzhWer\",\"Ii5vXL9QE\",\"I0fRkI7sP\",\"Mb7pgF2_T\",\"nZXfR524Q\",\"CsCHiw1D7\"],optionTitles:[\"Text+Icon\",\"Text Desktop\",\"Text Mobile\",\"Text Desktop Active\",\"Text Desktop Black\",\"Text Desktop Black Active\",\"Text Mobile Menu\"],title:\"Variant\",type:ControlType.Enum},iX6CiYjB1:{defaultValue:\"Item\",title:\"Name\",type:ControlType.String},f_C1eoInL:{title:\"Tap\",type:ControlType.EventHandler},O9CNUFGCq:{title:\"Link\",type:ControlType.Link},LjQGrX0Tb:{defaultValue:\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\",title:\"Color\",type:ControlType.Color}});addFonts(FramerBY_45QHFU,[{explicitInter:true,fonts:[{family:\"Brown LL Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/OYFsD1xzs1wzF2E4crxCbWI28JM.otf\"},{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),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBY_45QHFU\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"65\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"22.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Rk9YzhWer\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Ii5vXL9QE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"I0fRkI7sP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Mb7pgF2_T\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"nZXfR524Q\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"CsCHiw1D7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VNJ1xTkbZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"He_CoRuSO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AX_Q6QpBM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"sJov_QUvV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"lAkZPcnLz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"CMgYKpi8R\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"ijtFS98ew\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"iX6CiYjB1\\\":\\\"name1\\\",\\\"f_C1eoInL\\\":\\\"tap\\\",\\\"O9CNUFGCq\\\":\\\"link\\\",\\\"LjQGrX0Tb\\\":\\\"color\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BY_45QHFU.map","// Generated by Framer (a4aa1f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={tCh48T8Cq:{hover:true},UeceRjXW9:{hover:true},uZ33s2MMY:{hover:true},WxrvgmCNd:{hover:true}};const cycleOrder=[\"WxrvgmCNd\",\"tCh48T8Cq\",\"uZ33s2MMY\",\"UeceRjXW9\"];const serializationHash=\"framer-TQdiF\";const variantClassNames={tCh48T8Cq:\"framer-v-d1kop9\",UeceRjXW9:\"framer-v-1ll1srl\",uZ33s2MMY:\"framer-v-1r7un3w\",WxrvgmCNd:\"framer-v-4nnrle\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Primary - Black\":\"WxrvgmCNd\",\"Primary - White\":\"tCh48T8Cq\",\"Secondary - Black\":\"uZ33s2MMY\",\"Secondary - White\":\"UeceRjXW9\"};const getProps=({buttonText,height,id,link,tap,width,...props})=>{return{...props,h7J6stz7Z:tap??props.h7J6stz7Z,rPMkMN1nU:buttonText??props.rPMkMN1nU??\"Button\",variant:humanReadableVariantMap[props.variant]??props.variant??\"WxrvgmCNd\",vR2oUK1BU:link??props.vR2oUK1BU};};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,rPMkMN1nU,h7J6stz7Z,vR2oUK1BU,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WxrvgmCNd\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTaporwtbh=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(h7J6stz7Z){const res=await h7J6stz7Z(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:vR2oUK1BU,motionChild:true,nodeId:\"WxrvgmCNd\",scopeId:\"EpBn_7SxY\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-4nnrle\",className,classNames)} framer-ug43oz`,\"data-border\":true,\"data-framer-name\":\"Primary - Black\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"WxrvgmCNd\",onTap:onTaporwtbh,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0))\",...style},variants:{\"WxrvgmCNd-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},tCh48T8Cq:{\"--border-color\":\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\",backgroundColor:\"rgba(0, 0, 0, 0)\"},UeceRjXW9:{\"--border-color\":\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\",backgroundColor:\"rgba(0, 0, 0, 0)\"},uZ33s2MMY:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({\"tCh48T8Cq-hover\":{\"data-framer-name\":undefined},\"UeceRjXW9-hover\":{\"data-framer-name\":undefined},\"uZ33s2MMY-hover\":{\"data-framer-name\":undefined},\"WxrvgmCNd-hover\":{\"data-framer-name\":undefined},tCh48T8Cq:{\"data-framer-name\":\"Primary - White\"},UeceRjXW9:{\"data-framer-name\":\"Secondary - White\"},uZ33s2MMY:{\"data-framer-name\":\"Secondary - Black\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-w2q8sk\",layoutDependency:layoutDependency,layoutId:\"Y_B0KX0T3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Jyb3duIExMIE1lZGl1bQ==\",\"--framer-font-family\":'\"Brown LL Medium\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255)))\"},children:\"Button\"})}),className:\"framer-19bqd7q\",fonts:[\"CUSTOM;Brown LL Medium\"],layoutDependency:layoutDependency,layoutId:\"Gqw6skktj\",style:{\"--extracted-r6o4lv\":\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:rPMkMN1nU,variants:{\"tCh48T8Cq-hover\":{\"--extracted-r6o4lv\":\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\"},\"UeceRjXW9-hover\":{\"--extracted-r6o4lv\":\"var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0))\"},\"uZ33s2MMY-hover\":{\"--extracted-r6o4lv\":\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\"},\"WxrvgmCNd-hover\":{\"--extracted-r6o4lv\":\"var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0))\"},tCh48T8Cq:{\"--extracted-r6o4lv\":\"var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0))\"},uZ33s2MMY:{\"--extracted-r6o4lv\":\"var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"tCh48T8Cq-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Jyb3duIExMIE1lZGl1bQ==\",\"--framer-font-family\":'\"Brown LL Medium\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255)))\"},children:\"Button\"})})},\"UeceRjXW9-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Jyb3duIExMIE1lZGl1bQ==\",\"--framer-font-family\":'\"Brown LL Medium\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0)))\"},children:\"Button\"})})},\"uZ33s2MMY-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Jyb3duIExMIE1lZGl1bQ==\",\"--framer-font-family\":'\"Brown LL Medium\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255)))\"},children:\"Button\"})})},\"WxrvgmCNd-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Jyb3duIExMIE1lZGl1bQ==\",\"--framer-font-family\":'\"Brown LL Medium\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0)))\"},children:\"Button\"})})},tCh48T8Cq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Jyb3duIExMIE1lZGl1bQ==\",\"--framer-font-family\":'\"Brown LL Medium\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0)))\"},children:\"Button\"})})},uZ33s2MMY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Jyb3duIExMIE1lZGl1bQ==\",\"--framer-font-family\":'\"Brown LL Medium\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0)))\"},children:\"Button\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6t71x9\",\"data-framer-name\":\"BG Color\",layoutDependency:layoutDependency,layoutId:\"SQPlaIWxN\",style:{backgroundColor:\"var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0))\",opacity:1},variants:{\"tCh48T8Cq-hover\":{opacity:0},\"UeceRjXW9-hover\":{opacity:1},\"uZ33s2MMY-hover\":{opacity:1},\"WxrvgmCNd-hover\":{opacity:0},tCh48T8Cq:{backgroundColor:\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\"},UeceRjXW9:{backgroundColor:\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\",opacity:0},uZ33s2MMY:{opacity:0}}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TQdiF.framer-ug43oz, .framer-TQdiF .framer-ug43oz { display: block; }\",\".framer-TQdiF.framer-4nnrle { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-TQdiF .framer-w2q8sk { 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: 15px 30px 15px 30px; position: relative; width: min-content; z-index: 1; }\",\".framer-TQdiF .framer-19bqd7q { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TQdiF .framer-6t71x9 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-TQdiF.framer-v-1r7un3w .framer-6t71x9, .framer-TQdiF.framer-v-1ll1srl .framer-6t71x9 { right: unset; width: 1px; }\",\".framer-TQdiF.framer-v-4nnrle.hover .framer-6t71x9, .framer-TQdiF.framer-v-d1kop9.hover .framer-6t71x9 { left: unset; width: 1px; }\",\".framer-TQdiF.framer-v-1r7un3w.hover .framer-6t71x9, .framer-TQdiF.framer-v-1ll1srl.hover .framer-6t71x9 { right: 0px; width: unset; }\",'.framer-TQdiF[data-border=\"true\"]::after, .framer-TQdiF [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 50\n * @framerIntrinsicWidth 126\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"tCh48T8Cq\":{\"layout\":[\"auto\",\"auto\"]},\"uZ33s2MMY\":{\"layout\":[\"auto\",\"auto\"]},\"UeceRjXW9\":{\"layout\":[\"auto\",\"auto\"]},\"yy4g7CgpU\":{\"layout\":[\"auto\",\"auto\"]},\"yDVb6D364\":{\"layout\":[\"auto\",\"auto\"]},\"Oks5ndhaZ\":{\"layout\":[\"auto\",\"auto\"]},\"p_wZ6YS7y\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"rPMkMN1nU\":\"buttonText\",\"h7J6stz7Z\":\"tap\",\"vR2oUK1BU\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerEpBn_7SxY=withCSS(Component,css,\"framer-TQdiF\");export default FramerEpBn_7SxY;FramerEpBn_7SxY.displayName=\"Menu/CTA\";FramerEpBn_7SxY.defaultProps={height:50,width:126};addPropertyControls(FramerEpBn_7SxY,{variant:{options:[\"WxrvgmCNd\",\"tCh48T8Cq\",\"uZ33s2MMY\",\"UeceRjXW9\"],optionTitles:[\"Primary - Black\",\"Primary - White\",\"Secondary - Black\",\"Secondary - White\"],title:\"Variant\",type:ControlType.Enum},rPMkMN1nU:{defaultValue:\"Button\",title:\"Button Text\",type:ControlType.String},h7J6stz7Z:{title:\"Tap\",type:ControlType.EventHandler},vR2oUK1BU:{title:\"Link\",type:ControlType.Link}});addFonts(FramerEpBn_7SxY,[{explicitInter:true,fonts:[{family:\"Brown LL Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/OYFsD1xzs1wzF2E4crxCbWI28JM.otf\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEpBn_7SxY\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"126\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tCh48T8Cq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uZ33s2MMY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UeceRjXW9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yy4g7CgpU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yDVb6D364\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Oks5ndhaZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"p_wZ6YS7y\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"50\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"rPMkMN1nU\\\":\\\"buttonText\\\",\\\"h7J6stz7Z\\\":\\\"tap\\\",\\\"vR2oUK1BU\\\":\\\"link\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EpBn_7SxY.map","// Generated by Framer (a4aa1f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"uGGqj3g9J\",\"GGLFcFpPY\"];const serializationHash=\"framer-KnOFj\";const variantClassNames={GGLFcFpPY:\"framer-v-1lumrz5\",uGGqj3g9J:\"framer-v-8fgza3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Black:\"GGLFcFpPY\",White:\"uGGqj3g9J\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"uGGqj3g9J\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"uGGqj3g9J\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"GGLFcFpPY\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"GGLFcFpPY\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-8fgza3\",className,classNames),\"data-framer-name\":\"White\",layoutDependency:layoutDependency,layoutId:\"uGGqj3g9J\",ref:refBinding,style:{...style},...addPropertyOverrides({GGLFcFpPY:{\"data-framer-name\":\"Black\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Ogn9HCIek\"},motionChild:true,nodeId:\"Fx4nlfeYF\",scopeId:\"VzLJpEO4W\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-z95mye framer-wpv0m8\",\"data-framer-name\":\"applied_by_zeb_wordmark_white\",fill:\"black\",intrinsicHeight:120,intrinsicWidth:757,layoutDependency:layoutDependency,layoutId:\"Fx4nlfeYF\",svg:'<svg width=\"757\" height=\"120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M434.07 60.65v-.701c0-11.11 8.106-19.116 17.914-19.116 6.606 0 12.41 2.903 16.914 8.207v22.218c-3.903 5.204-10.108 8.206-16.713 8.206-2.983 0-5.781-.74-8.483-2.13l10.629 18.41c5.815-.837 11.328-3.322 15.868-7.072v6.005h17.014V0h-18.515v30.124a34.293 34.293 0 0 0-19.816-6.305c-11.059-.1-21.522 5.454-27.54 14.784l12.72 22.033.008.013Zm110.271-5.005c-5.804 0-11.309 2.602-15.112 7.006V42.234h-4.804v52.543h4.604v-6.405c7.106 8.406 19.616 9.507 28.023 2.502 8.406-7.106 9.507-19.616 2.402-28.023-3.603-4.604-9.308-7.206-15.113-7.206Zm0 35.429c-8.507.2-15.612-6.505-15.812-15.112-.201-8.507 6.505-15.613 15.112-15.813 8.507-.2 15.612 6.505 15.813 15.112v.4c.1 8.407-6.706 15.313-15.113 15.413Zm192.757-35.429c-5.805 0-11.31 2.602-15.113 7.006V42.234h-4.804v52.543h4.604v-6.405c7.106 8.406 19.616 9.507 28.023 2.502 8.407-7.106 9.508-19.616 2.402-28.023-3.603-4.604-9.308-7.206-15.112-7.206Zm0 35.429c-8.507.2-15.613-6.505-15.813-15.112-.2-8.507 6.505-15.613 15.012-15.813 8.507-.2 15.613 6.505 15.813 15.112v.4c.2 8.407-6.606 15.313-15.012 15.413Zm-46.938 4.604c5.904.1 11.809-2.502 15.612-7.106l-3.302-3.103c-2.903 3.703-7.507 5.805-12.21 5.705-8.908 0-14.212-6.906-14.512-15.112h31.225c.1-.6.1-1.101.1-1.702 0-10.608-7.606-18.715-17.814-18.715-10.809 0-18.315 9.008-18.315 20.016 0 11.91 8.507 20.017 19.216 20.017Zm11.909-24.02h-26.121c1.401-6.605 6.505-11.51 13.311-11.51 6.605 0 11.809 4.805 12.81 11.51ZM634.214 61.05h23.419l-25.621 30.825v2.902h33.628v-4.504h-26.422l25.621-30.825v-2.902h-30.625v4.504Zm-48.139 30.825-7.806 17.213h5.204l23.819-52.542h-5.104L588.677 86.37l-14.411-29.824h-5.405l17.214 35.328ZM197.16 25.322v6.005c6.005-4.804 13.511-7.506 21.217-7.406 18.615 0 33.627 15.012 33.627 36.03 0 21.116-15.112 36.229-33.927 36.229-7.006.2-13.911-2.102-19.516-6.305V120h-18.515V25.323h17.114Zm18.515 15.513c-6.606 0-12.41 2.902-16.914 8.206V71.26c3.903 5.205 10.108 8.207 16.714 8.207 10.008 0 18.214-7.906 18.214-19.316-.1-11.409-8.206-19.315-18.014-19.315ZM71.958 94.78V25.422l-17.114-.1v6.005c-5.904-4.804-13.51-7.506-21.217-7.406C15.012 23.922 0 38.934 0 59.952 0 81.167 15.112 96.18 33.928 96.18c7.706.2 15.112-2.502 21.017-7.406v6.004h17.013ZM53.343 71.06c-4.003 5.204-10.208 8.207-16.713 8.207-9.908 0-18.215-7.806-18.115-19.516 0-11.109 8.006-19.115 17.914-19.115 6.506 0 12.41 2.902 16.914 8.206V71.06Zm56.646-45.737v6.005c6.005-4.804 13.511-7.506 21.217-7.406 18.615 0 33.628 15.012 33.628 36.03 0 21.116-15.113 36.229-33.928 36.229-7.006.2-13.911-2.102-19.516-6.305V120H92.875V25.323h17.114Zm18.415 15.513c-6.605 0-12.41 2.902-16.914 8.206V71.26c3.904 5.205 10.109 8.207 16.714 8.207 10.008 0 18.215-7.906 18.215-19.316-.1-11.409-8.207-19.315-18.015-19.315ZM268.418.1h18.515v94.677h-18.515V.1Zm57.947 25.32H307.85v69.357h18.515V25.42Zm52.742 70.658c11.109 0 21.918-4.404 28.924-12.41l-10.509-11.009c-3.503 3.503-9.808 7.606-17.614 7.606-9.808 0-17.814-5.905-18.815-15.713h48.239c.3-1.801.4-3.503.4-5.304 0-19.215-12.81-35.429-32.626-35.429-20.917 0-33.628 16.914-33.628 36.23 0 21.617 15.213 36.029 35.629 36.029Zm-2.101-56.746c7.306-.3 13.511 5.204 14.111 12.51h-29.424c.901-6.705 6.906-12.51 15.313-12.51Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h757v120H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Ogn9HCIek\"},motionChild:true,nodeId:\"I1122:4409;1:153\",scopeId:\"VzLJpEO4W\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1lebeek framer-wpv0m8\",\"data-framer-name\":\"applied_by_zeb_wordmark_black\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:164,layoutDependency:layoutDependency,layoutId:\"I1122:4409;1:153\",svg:'<svg width=\"164\" height=\"26\" viewBox=\"0 0 164 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M94.0389 13.1407V12.9889C94.0389 10.5819 95.7952 8.84717 97.92 8.84717C99.351 8.84717 100.609 9.47602 101.584 10.6253V15.4392C100.739 16.5668 99.3944 17.2173 97.9634 17.2173C97.3172 17.2173 96.711 17.0569 96.1257 16.7555L98.4285 20.7444C99.6882 20.5633 100.883 20.0248 101.866 19.2122V20.5133H105.552V0H101.541V6.52696C100.283 5.6379 98.7873 5.16085 97.2479 5.16085C94.8521 5.13927 92.5852 6.34247 91.2814 8.36407L94.0373 13.1379L94.0389 13.1407ZM117.928 12.0564C116.671 12.0564 115.478 12.6202 114.654 13.5743V13.3358V9.15073H113.614V20.535H114.611V19.3206V19.1472C116.151 20.9686 118.861 21.2072 120.682 19.6893C122.503 18.1497 122.742 15.4392 121.202 13.6177C120.422 12.6202 119.186 12.0564 117.928 12.0564ZM117.928 19.7326C116.085 19.776 114.546 18.3232 114.503 16.4583C114.459 14.6152 115.912 13.0756 117.777 13.0322C119.62 12.9888 121.159 14.4417 121.202 16.3065V16.3933C121.224 18.2147 119.75 19.711 117.928 19.7326ZM159.688 12.0564C158.431 12.0564 157.238 12.6202 156.414 13.5743V13.3358V9.15073H155.374V20.535H156.371V19.3206V19.1472C157.91 20.9686 160.621 21.2072 162.442 19.6893C164.263 18.1497 164.502 15.4392 162.962 13.6177C162.182 12.6202 160.946 12.0564 159.688 12.0564ZM159.688 19.7326C157.845 19.776 156.306 18.3232 156.263 16.4583C156.219 14.6152 157.672 13.0756 159.515 13.0322C161.358 12.9888 162.897 14.4417 162.941 16.3065V16.3933C162.984 18.2147 161.51 19.711 159.688 19.7326ZM149.519 20.7302C150.798 20.7519 152.078 20.1881 152.902 19.1906L152.186 18.5184C151.557 19.3207 150.56 19.7761 149.541 19.7544C147.611 19.7544 146.462 18.2582 146.397 16.4801H153.162C153.183 16.35 153.183 16.2417 153.183 16.1117V16.1114C153.183 13.8129 151.536 12.0565 149.324 12.0565C146.982 12.0565 145.356 14.0081 145.356 16.3933C145.356 18.9737 147.199 20.7302 149.519 20.7302ZM152.099 15.526H146.44C146.744 14.0948 147.85 13.0323 149.324 13.0323C150.755 13.0323 151.883 14.0731 152.099 15.526ZM137.399 13.2274H142.473L136.922 19.9062V20.535H144.207V19.5592H138.483L144.034 12.8805V12.2516H137.399V13.2274ZM126.97 19.9062L125.279 23.6358H126.406L131.566 12.2516H130.461L127.534 18.7135L124.411 12.2516H123.241L126.97 19.9062ZM42.7136 5.48671V6.78776C44.0145 5.74692 45.6406 5.16144 47.3102 5.18313C51.343 5.18313 54.5953 8.43576 54.5953 12.9895C54.5953 17.5648 51.3213 20.8392 47.2451 20.8392C45.7274 20.8825 44.2313 20.3838 43.0171 19.473V26H39.0059V5.48671H42.7136ZM46.7247 8.84776C45.2937 8.84776 44.0362 9.47661 43.0605 10.6259V15.4398C43.9061 16.5674 45.2504 17.2179 46.6814 17.2179C48.8496 17.2179 50.6275 15.5048 50.6275 13.0328C50.6058 10.5608 48.8496 8.84776 46.7247 8.84776ZM15.5894 20.5356V5.50839L11.8818 5.48671V6.78776C10.6025 5.74691 8.95468 5.16144 7.28517 5.18313C3.25231 5.18313 0 8.43576 0 12.9895C0 17.5865 3.27399 20.8391 7.35021 20.8391C9.01973 20.8825 10.6242 20.297 11.9034 19.2345V20.5356H15.5894ZM11.5565 15.3964C10.6892 16.524 9.34496 17.1745 7.93563 17.1745C5.7891 17.1745 3.9895 15.4831 4.01118 12.9461C4.01118 10.5391 5.74574 8.80439 7.89226 8.80439C9.3016 8.80439 10.5808 9.43324 11.5565 10.5825V15.3964ZM23.8284 5.48671V6.78776C25.1294 5.74692 26.7555 5.16144 28.425 5.18313C32.4579 5.18313 35.7102 8.43576 35.7102 12.9895C35.7102 17.5648 32.4362 20.8392 28.36 20.8392C26.8422 20.8825 25.3462 20.3838 24.132 19.473V26H20.1208V5.48671H23.8284ZM27.8179 8.84776C26.3869 8.84776 25.1294 9.47661 24.1537 10.6259V15.4398C24.9993 16.5674 26.3435 17.2179 27.7746 17.2179C29.9428 17.2179 31.7207 15.5048 31.7207 13.0328C31.699 10.5608 29.9428 8.84776 27.8179 8.84776ZM58.1513 0.0216878H62.1625V20.535H58.1513V0.0216878ZM70.7052 5.50781H66.694V20.535H70.7052V5.50781ZM82.1315 20.8169C84.5382 20.8169 86.8799 19.8628 88.3976 18.128L86.121 15.7428C85.3622 16.5017 83.9962 17.3908 82.305 17.3908C80.1801 17.3908 78.4456 16.1114 78.2288 13.9863H88.6795C88.7446 13.596 88.7662 13.2274 88.7662 12.8371C88.7662 8.6737 85.9909 5.16086 81.6979 5.16086C77.1664 5.16086 74.4127 8.82549 74.4127 13.0106C74.4127 17.6944 77.7084 20.8169 82.1315 20.8169ZM81.6762 8.52191C83.259 8.45686 84.6033 9.64949 84.7334 11.2324H78.3589C78.554 9.7796 79.8549 8.52191 81.6762 8.52191Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KnOFj.framer-wpv0m8, .framer-KnOFj .framer-wpv0m8 { display: block; }\",\".framer-KnOFj.framer-8fgza3 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 26px; justify-content: center; padding: 0px; position: relative; width: 164px; }\",\".framer-KnOFj .framer-z95mye, .framer-KnOFj .framer-1lebeek { flex: 1 0 0px; height: 1px; position: relative; text-decoration: none; width: 100%; }\",\".framer-KnOFj.framer-v-1lumrz5.framer-8fgza3 { aspect-ratio: 6.3076923076923075 / 1; height: var(--framer-aspect-ratio-supported, 26px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26\n * @framerIntrinsicWidth 164\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"GGLFcFpPY\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerVzLJpEO4W=withCSS(Component,css,\"framer-KnOFj\");export default FramerVzLJpEO4W;FramerVzLJpEO4W.displayName=\"Brand/Logo\";FramerVzLJpEO4W.defaultProps={height:26,width:164};addPropertyControls(FramerVzLJpEO4W,{variant:{options:[\"uGGqj3g9J\",\"GGLFcFpPY\"],optionTitles:[\"White\",\"Black\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerVzLJpEO4W,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVzLJpEO4W\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GGLFcFpPY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"164\",\"framerIntrinsicHeight\":\"26\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VzLJpEO4W.map","// Generated by Framer (a4aa1f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,ResolveLinks,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{withHideOnScroll}from\"https://framerusercontent.com/modules/rI3efn3t8WqpAcVNwhm9/0aAYfoh1aH44R50hhIWy/Hide_show_nav.js\";import MenuMenuItem from\"https://framerusercontent.com/modules/VTExO8LoFRBdWDvX35ks/SQSIeBB309pnHfF8up35/BY_45QHFU.js\";import MenuCTA from\"https://framerusercontent.com/modules/4f5CGnaqeQcYrjVzg1Kz/i4Ew1VfXIU0Fu9sUU5iD/EpBn_7SxY.js\";import BrandLogo from\"https://framerusercontent.com/modules/UP3QF1IiIjcrvHUhRguJ/JW5qfxBFuIqY0xbytmMf/VzLJpEO4W.js\";const BrandLogoFonts=getFonts(BrandLogo);const MenuMenuItemFonts=getFonts(MenuMenuItem);const MenuCTAFonts=getFonts(MenuCTA);const MotionNavWithHideOnScroll12btm5o=withCodeBoundaryForOverrides(motion.nav,{nodeId:\"yECtPTcYA\",override:withHideOnScroll,scopeId:\"cmdZK6bw2\"});const cycleOrder=[\"yECtPTcYA\",\"u1gAHu8B8\",\"Nu6XOgygo\",\"c2xdLdJfO\",\"IuXv0lpb2\",\"a8gYV8Nxe\",\"ieCZ27Tu7\",\"NE2u6_7xS\"];const serializationHash=\"framer-rnAn4\";const variantClassNames={a8gYV8Nxe:\"framer-v-16fih2g\",c2xdLdJfO:\"framer-v-m3wg6h\",ieCZ27Tu7:\"framer-v-10mgny\",IuXv0lpb2:\"framer-v-rrr530\",NE2u6_7xS:\"framer-v-118i9y4\",Nu6XOgygo:\"framer-v-113bop6\",u1gAHu8B8:\"framer-v-p5fov2\",yECtPTcYA:\"framer-v-12btm5o\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop / Home\":\"yECtPTcYA\",\"Desktop / L\\xf6sungen\":\"Nu6XOgygo\",\"Desktop / Newsroom\":\"IuXv0lpb2\",\"Desktop / Playground\":\"a8gYV8Nxe\",\"Desktop / \\xdcber uns\":\"c2xdLdJfO\",\"Desktop/Services\":\"NE2u6_7xS\",\"Mobile / Playground\":\"ieCZ27Tu7\",\"Mobile_Tablet / Global\":\"u1gAHu8B8\"};const getProps=({height,id,menu,width,...props})=>{return{...props,MfTquifHK:menu??props.MfTquifHK,variant:humanReadableVariantMap[props.variant]??props.variant??\"yECtPTcYA\"};};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,MfTquifHK,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"yECtPTcYA\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap340qfu=activeVariantCallback(async(...args)=>{if(MfTquifHK){const res=await MfTquifHK(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"u1gAHu8B8\",\"ieCZ27Tu7\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed1=()=>{if([\"u1gAHu8B8\",\"ieCZ27Tu7\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(MotionNavWithHideOnScroll12btm5o,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-12btm5o\",className,classNames),\"data-framer-name\":\"Desktop / Home\",layoutDependency:layoutDependency,layoutId:\"yECtPTcYA\",ref:refBinding,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{a8gYV8Nxe:{background:\"linear-gradient(180deg, var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255)) 0%, var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255)) 100%)\",backgroundColor:\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\"},ieCZ27Tu7:{backgroundColor:\"rgba(0, 0, 0, 0)\"},NE2u6_7xS:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({a8gYV8Nxe:{\"data-framer-name\":\"Desktop / Playground\"},c2xdLdJfO:{\"data-framer-name\":\"Desktop / \\xdcber uns\"},ieCZ27Tu7:{\"data-framer-name\":\"Mobile / Playground\"},IuXv0lpb2:{\"data-framer-name\":\"Desktop / Newsroom\"},NE2u6_7xS:{\"data-framer-name\":\"Desktop/Services\"},Nu6XOgygo:{\"data-framer-name\":\"Desktop / L\\xf6sungen\"},u1gAHu8B8:{\"data-framer-name\":\"Mobile_Tablet / Global\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b4jdsl\",layoutDependency:layoutDependency,layoutId:\"yfJ7XjAm5\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fov0yn\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"vY3mvuHVd\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,width:\"160px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||88)-0-90)/2)+32+0,...addPropertyOverrides({ieCZ27Tu7:{height:22,width:\"135.3846px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||62)-0-62)/2)+20+0},u1gAHu8B8:{height:22,width:\"135.3846px\",y:(componentViewport?.y||0)+0+20+-1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13canx1-container\",layoutDependency:layoutDependency,layoutId:\"kNOgACt0r-container\",nodeId:\"kNOgACt0r\",rendersWithMotion:true,scopeId:\"cmdZK6bw2\",children:/*#__PURE__*/_jsx(BrandLogo,{height:\"100%\",id:\"kNOgACt0r\",layoutId:\"kNOgACt0r\",style:{height:\"100%\",width:\"100%\"},variant:\"uGGqj3g9J\",width:\"100%\",...addPropertyOverrides({a8gYV8Nxe:{variant:\"GGLFcFpPY\"}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11x8hw5\",\"data-framer-name\":\"Middle\",layoutDependency:layoutDependency,layoutId:\"VrybfIiCU\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"I2eRtWU5K\"},implicitPathVariables:undefined},{href:{webPageId:\"I2eRtWU5K\"},implicitPathVariables:undefined},{href:{webPageId:\"I2eRtWU5K\"},implicitPathVariables:undefined},{href:{webPageId:\"I2eRtWU5K\"},implicitPathVariables:undefined},{href:{webPageId:\"I2eRtWU5K\"},implicitPathVariables:undefined},{href:{webPageId:\"I2eRtWU5K\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+(0+((componentViewport?.height||88)-0-90)/2)+32.5+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1alda74-container\",layoutDependency:layoutDependency,layoutId:\"wc1oaYF9u-container\",nodeId:\"wc1oaYF9u\",rendersWithMotion:true,scopeId:\"cmdZK6bw2\",children:/*#__PURE__*/_jsx(MenuMenuItem,{height:\"100%\",id:\"wc1oaYF9u\",iX6CiYjB1:\"L\\xf6sungen\",layoutId:\"wc1oaYF9u\",LjQGrX0Tb:\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\",O9CNUFGCq:resolvedLinks[0],style:{height:\"100%\"},variant:\"Rk9YzhWer\",width:\"100%\",...addPropertyOverrides({a8gYV8Nxe:{LjQGrX0Tb:\"var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0))\",O9CNUFGCq:resolvedLinks[4],variant:\"Mb7pgF2_T\"},c2xdLdJfO:{O9CNUFGCq:resolvedLinks[2]},IuXv0lpb2:{O9CNUFGCq:resolvedLinks[3]},NE2u6_7xS:{O9CNUFGCq:resolvedLinks[5]},Nu6XOgygo:{O9CNUFGCq:resolvedLinks[1],variant:\"I0fRkI7sP\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"W4PrWJquw\"},implicitPathVariables:undefined},{href:{webPageId:\"W4PrWJquw\"},implicitPathVariables:undefined},{href:{webPageId:\"W4PrWJquw\"},implicitPathVariables:undefined},{href:{webPageId:\"W4PrWJquw\"},implicitPathVariables:undefined},{href:{webPageId:\"W4PrWJquw\"},implicitPathVariables:undefined},{href:{webPageId:\"W4PrWJquw\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+(0+((componentViewport?.height||88)-0-90)/2)+32.5+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xa6yb7-container\",layoutDependency:layoutDependency,layoutId:\"l1StRO6go-container\",nodeId:\"l1StRO6go\",rendersWithMotion:true,scopeId:\"cmdZK6bw2\",children:/*#__PURE__*/_jsx(MenuMenuItem,{height:\"100%\",id:\"l1StRO6go\",iX6CiYjB1:\"Services\",layoutId:\"l1StRO6go\",LjQGrX0Tb:\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\",O9CNUFGCq:resolvedLinks1[0],style:{height:\"100%\"},variant:\"Rk9YzhWer\",width:\"100%\",...addPropertyOverrides({a8gYV8Nxe:{LjQGrX0Tb:\"var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0))\",O9CNUFGCq:resolvedLinks1[4],variant:\"Mb7pgF2_T\"},c2xdLdJfO:{O9CNUFGCq:resolvedLinks1[2]},IuXv0lpb2:{O9CNUFGCq:resolvedLinks1[3]},NE2u6_7xS:{O9CNUFGCq:resolvedLinks1[5],variant:\"I0fRkI7sP\"},Nu6XOgygo:{O9CNUFGCq:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tq4yRM2zI\"},implicitPathVariables:undefined},{href:{webPageId:\"tq4yRM2zI\"},implicitPathVariables:undefined},{href:{webPageId:\"tq4yRM2zI\"},implicitPathVariables:undefined},{href:{webPageId:\"tq4yRM2zI\"},implicitPathVariables:undefined},{href:{webPageId:\"tq4yRM2zI\"},implicitPathVariables:undefined},{href:{webPageId:\"tq4yRM2zI\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+(0+((componentViewport?.height||88)-0-90)/2)+32.5+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cexxwh-container\",layoutDependency:layoutDependency,layoutId:\"ZYWHNLtfC-container\",nodeId:\"ZYWHNLtfC\",rendersWithMotion:true,scopeId:\"cmdZK6bw2\",children:/*#__PURE__*/_jsx(MenuMenuItem,{height:\"100%\",id:\"ZYWHNLtfC\",iX6CiYjB1:\"\\xdcber uns\",layoutId:\"ZYWHNLtfC\",LjQGrX0Tb:\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\",O9CNUFGCq:resolvedLinks2[0],style:{height:\"100%\"},variant:\"Rk9YzhWer\",width:\"100%\",...addPropertyOverrides({a8gYV8Nxe:{LjQGrX0Tb:\"var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0))\",O9CNUFGCq:resolvedLinks2[4],variant:\"Mb7pgF2_T\"},c2xdLdJfO:{O9CNUFGCq:resolvedLinks2[2],variant:\"I0fRkI7sP\"},IuXv0lpb2:{O9CNUFGCq:resolvedLinks2[3]},NE2u6_7xS:{O9CNUFGCq:resolvedLinks2[5]},Nu6XOgygo:{O9CNUFGCq:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"iy0oQD59u\"},implicitPathVariables:undefined},{href:{webPageId:\"iy0oQD59u\"},implicitPathVariables:undefined},{href:{webPageId:\"iy0oQD59u\"},implicitPathVariables:undefined},{href:{webPageId:\"iy0oQD59u\"},implicitPathVariables:undefined},{href:{webPageId:\"iy0oQD59u\"},implicitPathVariables:undefined},{href:{webPageId:\"iy0oQD59u\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+(0+((componentViewport?.height||88)-0-90)/2)+32.5+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xeixha-container\",layoutDependency:layoutDependency,layoutId:\"h6TLd4Epn-container\",nodeId:\"h6TLd4Epn\",rendersWithMotion:true,scopeId:\"cmdZK6bw2\",children:/*#__PURE__*/_jsx(MenuMenuItem,{height:\"100%\",id:\"h6TLd4Epn\",iX6CiYjB1:\"Newsroom\",layoutId:\"h6TLd4Epn\",LjQGrX0Tb:\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\",O9CNUFGCq:resolvedLinks3[0],style:{height:\"100%\"},variant:\"Rk9YzhWer\",width:\"100%\",...addPropertyOverrides({a8gYV8Nxe:{O9CNUFGCq:resolvedLinks3[4],variant:\"Mb7pgF2_T\"},c2xdLdJfO:{O9CNUFGCq:resolvedLinks3[2]},IuXv0lpb2:{O9CNUFGCq:resolvedLinks3[3],variant:\"I0fRkI7sP\"},NE2u6_7xS:{O9CNUFGCq:resolvedLinks3[5]},Nu6XOgygo:{O9CNUFGCq:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tvm3bftXC\"},implicitPathVariables:undefined},{href:{webPageId:\"tvm3bftXC\"},implicitPathVariables:undefined},{href:{webPageId:\"tvm3bftXC\"},implicitPathVariables:undefined},{href:{webPageId:\"tvm3bftXC\"},implicitPathVariables:undefined},{href:{webPageId:\"tvm3bftXC\"},implicitPathVariables:undefined},{href:{webPageId:\"tvm3bftXC\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+(0+((componentViewport?.height||88)-0-90)/2)+32.5+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-486sv5-container\",layoutDependency:layoutDependency,layoutId:\"vqn24ZxDL-container\",nodeId:\"vqn24ZxDL\",rendersWithMotion:true,scopeId:\"cmdZK6bw2\",children:/*#__PURE__*/_jsx(MenuMenuItem,{height:\"100%\",id:\"vqn24ZxDL\",iX6CiYjB1:\"Playground\",layoutId:\"vqn24ZxDL\",LjQGrX0Tb:\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\",O9CNUFGCq:resolvedLinks4[0],style:{height:\"100%\"},variant:\"Rk9YzhWer\",width:\"100%\",...addPropertyOverrides({a8gYV8Nxe:{O9CNUFGCq:resolvedLinks4[4],variant:\"nZXfR524Q\"},c2xdLdJfO:{O9CNUFGCq:resolvedLinks4[2]},IuXv0lpb2:{O9CNUFGCq:resolvedLinks4[3]},NE2u6_7xS:{O9CNUFGCq:resolvedLinks4[5]},Nu6XOgygo:{O9CNUFGCq:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-wuv79q\",\"data-framer-name\":\"CTA & Language Switcher\",layoutDependency:layoutDependency,layoutId:\"SyiWIaLeI\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sOzwyWMaU\"},implicitPathVariables:undefined},{href:{webPageId:\"sOzwyWMaU\"},implicitPathVariables:undefined},{href:{webPageId:\"sOzwyWMaU\"},implicitPathVariables:undefined},{href:{webPageId:\"sOzwyWMaU\"},implicitPathVariables:undefined},{href:{webPageId:\"sOzwyWMaU\"},implicitPathVariables:undefined},{href:{webPageId:\"sOzwyWMaU\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+(0+((componentViewport?.height||88)-0-90)/2)+20+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-t4mczy-container\",layoutDependency:layoutDependency,layoutId:\"rqhcdzdJU-container\",nodeId:\"rqhcdzdJU\",rendersWithMotion:true,scopeId:\"cmdZK6bw2\",children:/*#__PURE__*/_jsx(MenuCTA,{height:\"100%\",id:\"rqhcdzdJU\",layoutId:\"rqhcdzdJU\",rPMkMN1nU:\"Kontaktieren\",variant:\"tCh48T8Cq\",vR2oUK1BU:resolvedLinks5[0],width:\"100%\",...addPropertyOverrides({a8gYV8Nxe:{variant:\"WxrvgmCNd\",vR2oUK1BU:resolvedLinks5[4]},c2xdLdJfO:{vR2oUK1BU:resolvedLinks5[2]},IuXv0lpb2:{vR2oUK1BU:resolvedLinks5[3]},NE2u6_7xS:{vR2oUK1BU:resolvedLinks5[5]},Nu6XOgygo:{vR2oUK1BU:resolvedLinks5[1]}},baseVariant,gestureVariant)})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"sOzwyWMaU\"},motionChild:true,nodeId:\"OEbc0Uwrq\",openInNewTab:false,scopeId:\"cmdZK6bw2\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ubmyky framer-mxni9m\",\"data-framer-name\":\"Contact\",layoutDependency:layoutDependency,layoutId:\"OEbc0Uwrq\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({ieCZ27Tu7:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||62)-0-62)/2)+20},u1gAHu8B8:{y:(componentViewport?.y||0)+0+20}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ugutnw-container\",layoutDependency:layoutDependency,layoutId:\"Hu1XG_NGt-container\",nodeId:\"Hu1XG_NGt\",rendersWithMotion:true,scopeId:\"cmdZK6bw2\",children:/*#__PURE__*/_jsx(MenuMenuItem,{height:\"100%\",id:\"Hu1XG_NGt\",iX6CiYjB1:\"Kontakt\",layoutId:\"Hu1XG_NGt\",LjQGrX0Tb:\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\",variant:\"I0fRkI7sP\",width:\"100%\",...addPropertyOverrides({ieCZ27Tu7:{variant:\"CsCHiw1D7\"},u1gAHu8B8:{variant:\"CsCHiw1D7\"}},baseVariant,gestureVariant)})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-f0xyv9\",\"data-framer-name\":\"Burger Menu\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"qrIF19Rr5\",onTap:onTap340qfu,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({ieCZ27Tu7:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||62)-0-62)/2)+20},u1gAHu8B8:{y:(componentViewport?.y||0)+0+20}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xe5u3g-container\",layoutDependency:layoutDependency,layoutId:\"ikvwDSDjg-container\",nodeId:\"ikvwDSDjg\",rendersWithMotion:true,scopeId:\"cmdZK6bw2\",children:/*#__PURE__*/_jsx(MenuMenuItem,{height:\"100%\",id:\"ikvwDSDjg\",iX6CiYjB1:\"Men\\xfc\",layoutId:\"ikvwDSDjg\",LjQGrX0Tb:\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\",variant:\"I0fRkI7sP\",width:\"100%\",...addPropertyOverrides({ieCZ27Tu7:{variant:\"CsCHiw1D7\"},u1gAHu8B8:{variant:\"CsCHiw1D7\"}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rnAn4.framer-mxni9m, .framer-rnAn4 .framer-mxni9m { display: block; }\",\".framer-rnAn4.framer-12btm5o { 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-rnAn4 .framer-1b4jdsl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 20px; position: relative; width: 1px; }\",\".framer-rnAn4 .framer-1fov0yn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 26px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rnAn4 .framer-13canx1-container { flex: none; height: 26px; position: relative; width: 160px; }\",\".framer-rnAn4 .framer-11x8hw5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rnAn4 .framer-1alda74-container, .framer-rnAn4 .framer-xa6yb7-container, .framer-rnAn4 .framer-cexxwh-container, .framer-rnAn4 .framer-1xeixha-container, .framer-rnAn4 .framer-486sv5-container { flex: none; height: 25px; position: relative; width: auto; }\",\".framer-rnAn4 .framer-wuv79q { 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-rnAn4 .framer-t4mczy-container, .framer-rnAn4 .framer-ugutnw-container, .framer-rnAn4 .framer-xe5u3g-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-rnAn4 .framer-1ubmyky { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 66px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 66px; }\",\".framer-rnAn4 .framer-f0xyv9 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rnAn4.framer-v-p5fov2.framer-12btm5o { align-content: flex-start; align-items: flex-start; mix-blend-mode: difference; width: 390px; }\",\".framer-rnAn4.framer-v-p5fov2 .framer-1fov0yn { aspect-ratio: 8.384615384615385 / 1; gap: unset; height: var(--framer-aspect-ratio-supported, 22px); justify-content: space-between; width: 168px; }\",\".framer-rnAn4.framer-v-p5fov2 .framer-13canx1-container, .framer-rnAn4.framer-v-10mgny .framer-13canx1-container { aspect-ratio: 6.153846153846154 / 1; height: var(--framer-aspect-ratio-supported, 22px); width: 135px; }\",\".framer-rnAn4.framer-v-p5fov2 .framer-1ubmyky, .framer-rnAn4.framer-v-10mgny .framer-1ubmyky { height: 62px; padding: 0px 10px 0px 10px; width: min-content; }\",\".framer-rnAn4.framer-v-p5fov2 .framer-f0xyv9, .framer-rnAn4.framer-v-10mgny .framer-f0xyv9 { height: 62px; padding: 0px 20px 0px 10px; }\",\".framer-rnAn4.framer-v-113bop6 .framer-1alda74-container { order: 0; }\",\".framer-rnAn4.framer-v-113bop6 .framer-xa6yb7-container { order: 1; }\",\".framer-rnAn4.framer-v-113bop6 .framer-cexxwh-container { order: 2; }\",\".framer-rnAn4.framer-v-113bop6 .framer-1xeixha-container { order: 3; }\",\".framer-rnAn4.framer-v-113bop6 .framer-486sv5-container { order: 4; }\",\".framer-rnAn4.framer-v-10mgny.framer-12btm5o { mix-blend-mode: difference; width: 390px; }\",\".framer-rnAn4.framer-v-10mgny .framer-1fov0yn { flex: 1 0 0px; gap: unset; height: min-content; justify-content: space-between; width: 1px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 88\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"u1gAHu8B8\":{\"layout\":[\"fixed\",\"auto\"]},\"Nu6XOgygo\":{\"layout\":[\"fixed\",\"auto\"]},\"c2xdLdJfO\":{\"layout\":[\"fixed\",\"auto\"]},\"IuXv0lpb2\":{\"layout\":[\"fixed\",\"auto\"]},\"a8gYV8Nxe\":{\"layout\":[\"fixed\",\"auto\"]},\"ieCZ27Tu7\":{\"layout\":[\"fixed\",\"auto\"]},\"NE2u6_7xS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"MfTquifHK\":\"menu\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramercmdZK6bw2=withCSS(Component,css,\"framer-rnAn4\");export default FramercmdZK6bw2;FramercmdZK6bw2.displayName=\"Menu/Nav Bar\";FramercmdZK6bw2.defaultProps={height:88,width:1200};addPropertyControls(FramercmdZK6bw2,{variant:{options:[\"yECtPTcYA\",\"u1gAHu8B8\",\"Nu6XOgygo\",\"c2xdLdJfO\",\"IuXv0lpb2\",\"a8gYV8Nxe\",\"ieCZ27Tu7\",\"NE2u6_7xS\"],optionTitles:[\"Desktop / Home\",\"Mobile_Tablet / Global\",\"Desktop / L\\xf6sungen\",\"Desktop / \\xdcber uns\",\"Desktop / Newsroom\",\"Desktop / Playground\",\"Mobile / Playground\",\"Desktop/Services\"],title:\"Variant\",type:ControlType.Enum},MfTquifHK:{title:\"Menu\",type:ControlType.EventHandler}});addFonts(FramercmdZK6bw2,[{explicitInter:true,fonts:[]},...BrandLogoFonts,...MenuMenuItemFonts,...MenuCTAFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercmdZK6bw2\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"88\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"u1gAHu8B8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Nu6XOgygo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"c2xdLdJfO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IuXv0lpb2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"a8gYV8Nxe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ieCZ27Tu7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NE2u6_7xS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"MfTquifHK\\\":\\\"menu\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (d275c2b)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Brown LL Regular\",\"CUSTOM;Brown LL Bold\",\"CUSTOM;Brown LL Bold Italic\",\"CUSTOM;Brown LL Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Brown LL Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/48j4Nz9raZ0FpdynbT6fvPyxzE.otf\"},{family:\"Brown LL Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/c5PN8RZeq3sTUHQPW8v2bs7FQ.otf\"},{family:\"Brown LL Bold Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/U0VgTIQlQ1OGDMLxnwT9fSC1byY.otf\"},{family:\"Brown LL Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/m1FZD5jOzltY3UlM9ks3Zyli6M.otf\"}]}];export const css=['.framer-TszZt .framer-styles-preset-167en5e:not(.rich-text-wrapper), .framer-TszZt .framer-styles-preset-167en5e.rich-text-wrapper p { --framer-font-family: \"Brown LL Regular\", \"Brown LL Regular Placeholder\", sans-serif; --framer-font-family-bold: \"Brown LL Bold\", \"Brown LL Bold Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Brown LL Bold Italic\", \"Brown LL Bold Italic Placeholder\", sans-serif; --framer-font-family-italic: \"Brown LL Italic\", \"Brown LL Italic Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-TszZt .framer-styles-preset-167en5e:not(.rich-text-wrapper), .framer-TszZt .framer-styles-preset-167en5e.rich-text-wrapper p { --framer-font-family: \"Brown LL Regular\", \"Brown LL Regular Placeholder\", sans-serif; --framer-font-family-bold: \"Brown LL Bold\", \"Brown LL Bold Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Brown LL Bold Italic\", \"Brown LL Bold Italic Placeholder\", sans-serif; --framer-font-family-italic: \"Brown LL Italic\", \"Brown LL Italic Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-TszZt .framer-styles-preset-167en5e:not(.rich-text-wrapper), .framer-TszZt .framer-styles-preset-167en5e.rich-text-wrapper p { --framer-font-family: \"Brown LL Regular\", \"Brown LL Regular Placeholder\", sans-serif; --framer-font-family-bold: \"Brown LL Bold\", \"Brown LL Bold Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Brown LL Bold Italic\", \"Brown LL Bold Italic Placeholder\", sans-serif; --framer-font-family-italic: \"Brown LL Italic\", \"Brown LL Italic Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-TszZt\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (d275c2b)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Brown LL Bold\",\"CUSTOM;Brown LL Bold\",\"CUSTOM;Brown LL Bold Italic\",\"CUSTOM;Brown LL Bold Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Brown LL Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/c5PN8RZeq3sTUHQPW8v2bs7FQ.otf\"},{family:\"Brown LL Bold Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/U0VgTIQlQ1OGDMLxnwT9fSC1byY.otf\"}]}];export const css=['.framer-8yLAE .framer-styles-preset-1wqhsl0:not(.rich-text-wrapper), .framer-8yLAE .framer-styles-preset-1wqhsl0.rich-text-wrapper h5 { --framer-font-family: \"Brown LL Bold\", \"Brown LL Bold Placeholder\", sans-serif; --framer-font-family-bold: \"Brown LL Bold\", \"Brown LL Bold Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Brown LL Bold Italic\", \"Brown LL Bold Italic Placeholder\", sans-serif; --framer-font-family-italic: \"Brown LL Bold Italic\", \"Brown LL Bold Italic Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.25em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-8yLAE .framer-styles-preset-1wqhsl0:not(.rich-text-wrapper), .framer-8yLAE .framer-styles-preset-1wqhsl0.rich-text-wrapper h5 { --framer-font-family: \"Brown LL Bold\", \"Brown LL Bold Placeholder\", sans-serif; --framer-font-family-bold: \"Brown LL Bold\", \"Brown LL Bold Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Brown LL Bold Italic\", \"Brown LL Bold Italic Placeholder\", sans-serif; --framer-font-family-italic: \"Brown LL Bold Italic\", \"Brown LL Bold Italic Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.25em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-8yLAE .framer-styles-preset-1wqhsl0:not(.rich-text-wrapper), .framer-8yLAE .framer-styles-preset-1wqhsl0.rich-text-wrapper h5 { --framer-font-family: \"Brown LL Bold\", \"Brown LL Bold Placeholder\", sans-serif; --framer-font-family-bold: \"Brown LL Bold\", \"Brown LL Bold Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Brown LL Bold Italic\", \"Brown LL Bold Italic Placeholder\", sans-serif; --framer-font-family-italic: \"Brown LL Bold Italic\", \"Brown LL Bold Italic Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.25em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-8yLAE\";\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\"}}}","import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"CUSTOM;Brown LL Medium\"]);export const fonts=[{family:\"Brown LL Medium\",moduleAsset:{localModuleIdentifier:\"local-module:css/II6Ml__VJ:default\",url:\"assets/OYFsD1xzs1wzF2E4crxCbWI28JM.otf\"},url:new URL(\"assets/OYFsD1xzs1wzF2E4crxCbWI28JM.otf\",\"https://framerusercontent.com/modules/z9FIvI5JN5aIEleW12JL/02JtpgErLxUM7xXiYo78/II6Ml__VJ.js\").href}];export const css=['.framer-euuXE .framer-styles-preset-lmg35l:not(.rich-text-wrapper), .framer-euuXE .framer-styles-preset-lmg35l.rich-text-wrapper p { --framer-font-family: \"Brown LL Medium\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.25em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-euuXE .framer-styles-preset-lmg35l:not(.rich-text-wrapper), .framer-euuXE .framer-styles-preset-lmg35l.rich-text-wrapper p { --framer-font-family: \"Brown LL Medium\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.25em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-euuXE .framer-styles-preset-lmg35l:not(.rich-text-wrapper), .framer-euuXE .framer-styles-preset-lmg35l.rich-text-wrapper p { --framer-font-family: \"Brown LL Medium\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.25em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-euuXE\";\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 (a4aa1f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/z9FIvI5JN5aIEleW12JL/02JtpgErLxUM7xXiYo78/II6Ml__VJ.js\";const enabledGestures={tMOXpGxbL:{hover:true},ueiq4WEgo:{hover:true}};const cycleOrder=[\"tMOXpGxbL\",\"ueiq4WEgo\"];const serializationHash=\"framer-pKp1Y\";const variantClassNames={tMOXpGxbL:\"framer-v-1gv55t8\",ueiq4WEgo:\"framer-v-1qvb91y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Black:\"tMOXpGxbL\",White:\"ueiq4WEgo\"};const getProps=({height,id,link,linkEvent,text,width,...props})=>{return{...props,ha_6Kfy8j:text??props.ha_6Kfy8j??\"Link\",KBRX2Ajs0:linkEvent??props.KBRX2Ajs0,nS0aegT4J:link??props.nS0aegT4J,variant:humanReadableVariantMap[props.variant]??props.variant??\"tMOXpGxbL\"};};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,ha_6Kfy8j,nS0aegT4J,KBRX2Ajs0,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tMOXpGxbL\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1yv5iue=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(KBRX2Ajs0){const res=await KBRX2Ajs0(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:nS0aegT4J,motionChild:true,nodeId:\"tMOXpGxbL\",scopeId:\"E00PHOnId\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1gv55t8\",className,classNames)} framer-b8vs2y`,\"data-framer-name\":\"Black\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"tMOXpGxbL\",onTap:onTap1yv5iue,ref:refBinding,style:{opacity:1,...style},variants:{\"tMOXpGxbL-hover\":{opacity:.7},\"ueiq4WEgo-hover\":{opacity:.7}},...addPropertyOverrides({\"tMOXpGxbL-hover\":{\"data-framer-name\":undefined},\"ueiq4WEgo-hover\":{\"data-framer-name\":undefined},ueiq4WEgo:{\"data-framer-name\":\"White\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j9ehby\",layoutDependency:layoutDependency,layoutId:\"Ypd1YsYKr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lmg35l\",\"data-styles-preset\":\"II6Ml__VJ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0)))\"},children:\"Link\"})}),className:\"framer-z8h9z0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lEjyPwjre\",style:{\"--extracted-r6o4lv\":\"var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ha_6Kfy8j,variants:{ueiq4WEgo:{\"--extracted-r6o4lv\":\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({ueiq4WEgo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lmg35l\",\"data-styles-preset\":\"II6Ml__VJ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255)))\"},children:\"Link\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ryol2a\",layoutDependency:layoutDependency,layoutId:\"HQde5qWz3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ii2bci\",\"data-framer-name\":\"Oben\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"vilb8HHus\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 16.004 9.414 L 7.397 18.021 L 5.983 16.607 L 14.59 8 L 7.003 8 L 7.003 6 L 18.003 6 L 18.003 17 L 16.003 17 L 16.003 9.414 Z\" fill=\"var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;Cool Black&quot;} */\"></path></svg>',svgContentId:12152295750,withExternalLayout:true,...addPropertyOverrides({\"tMOXpGxbL-hover\":{svgContentId:10985146635},\"ueiq4WEgo-hover\":{svgContentId:10657190008},ueiq4WEgo:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 16.004 9.414 L 7.397 18.021 L 5.983 16.607 L 14.59 8 L 7.003 8 L 7.003 6 L 18.003 6 L 18.003 17 L 16.003 17 L 16.003 9.414 Z\" fill=\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:11842961265}},baseVariant,gestureVariant)})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pKp1Y.framer-b8vs2y, .framer-pKp1Y .framer-b8vs2y { display: block; }\",\".framer-pKp1Y.framer-1gv55t8 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-pKp1Y .framer-j9ehby { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-pKp1Y .framer-z8h9z0 { flex: none; height: 24px; position: relative; white-space: pre; width: auto; }\",\".framer-pKp1Y .framer-1ryol2a { flex: none; height: 24px; overflow: hidden; position: relative; width: 24px; }\",\".framer-pKp1Y .framer-ii2bci { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-pKp1Y.framer-v-1gv55t8.hover .framer-ii2bci, .framer-pKp1Y.framer-v-1qvb91y.hover .framer-ii2bci { left: unset; right: -3px; top: -3px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 68\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"ueiq4WEgo\":{\"layout\":[\"auto\",\"auto\"]},\"t8XcOBrZd\":{\"layout\":[\"auto\",\"auto\"]},\"ejusQw7mx\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ha_6Kfy8j\":\"text\",\"nS0aegT4J\":\"link\",\"KBRX2Ajs0\":\"linkEvent\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerE00PHOnId=withCSS(Component,css,\"framer-pKp1Y\");export default FramerE00PHOnId;FramerE00PHOnId.displayName=\"Components/Link Button\";FramerE00PHOnId.defaultProps={height:24,width:68};addPropertyControls(FramerE00PHOnId,{variant:{options:[\"tMOXpGxbL\",\"ueiq4WEgo\"],optionTitles:[\"Black\",\"White\"],title:\"Variant\",type:ControlType.Enum},ha_6Kfy8j:{defaultValue:\"Link\",displayTextArea:false,placeholder:\"Link\",title:\"Text\",type:ControlType.String},nS0aegT4J:{title:\"Link\",type:ControlType.Link},KBRX2Ajs0:{title:\"Link Event\",type:ControlType.EventHandler}});addFonts(FramerE00PHOnId,[{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)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerE00PHOnId\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"68\",\"framerVariables\":\"{\\\"ha_6Kfy8j\\\":\\\"text\\\",\\\"nS0aegT4J\\\":\\\"link\\\",\\\"KBRX2Ajs0\\\":\\\"linkEvent\\\"}\",\"framerIntrinsicHeight\":\"24\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ueiq4WEgo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"t8XcOBrZd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ejusQw7mx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./E00PHOnId.map","import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"CUSTOM;Brown LL Medium\",\"CUSTOM;Brown LL Bold\",\"CUSTOM;Brown LL Bold Italic\",\"CUSTOM;Brown LL Medium Italic\"]);export const fonts=[{family:\"Brown LL Medium\",moduleAsset:{localModuleIdentifier:\"local-module:css/MxsVtljcN:default\",url:\"assets/OYFsD1xzs1wzF2E4crxCbWI28JM.otf\"},url:new URL(\"assets/OYFsD1xzs1wzF2E4crxCbWI28JM.otf\",\"https://framerusercontent.com/modules/ml6MwyxDxPRggEjtENFb/RoGQpko6gAjy5uzeF9dU/MxsVtljcN.js\").href},{family:\"Brown LL Bold\",moduleAsset:{localModuleIdentifier:\"local-module:css/MxsVtljcN:default\",url:\"assets/c5PN8RZeq3sTUHQPW8v2bs7FQ.otf\"},url:new URL(\"assets/c5PN8RZeq3sTUHQPW8v2bs7FQ.otf\",\"https://framerusercontent.com/modules/ml6MwyxDxPRggEjtENFb/RoGQpko6gAjy5uzeF9dU/MxsVtljcN.js\").href},{family:\"Brown LL Bold Italic\",moduleAsset:{localModuleIdentifier:\"local-module:css/MxsVtljcN:default\",url:\"assets/U0VgTIQlQ1OGDMLxnwT9fSC1byY.otf\"},url:new URL(\"assets/U0VgTIQlQ1OGDMLxnwT9fSC1byY.otf\",\"https://framerusercontent.com/modules/ml6MwyxDxPRggEjtENFb/RoGQpko6gAjy5uzeF9dU/MxsVtljcN.js\").href},{family:\"Brown LL Medium Italic\",moduleAsset:{localModuleIdentifier:\"local-module:css/MxsVtljcN:default\",url:\"assets/OBZkQ23cVfT9eIAdEhV3g8Wi9Q.otf\"},url:new URL(\"assets/OBZkQ23cVfT9eIAdEhV3g8Wi9Q.otf\",\"https://framerusercontent.com/modules/ml6MwyxDxPRggEjtENFb/RoGQpko6gAjy5uzeF9dU/MxsVtljcN.js\").href}];export const css=['.framer-y7I98 .framer-styles-preset-1l5w9qt:not(.rich-text-wrapper), .framer-y7I98 .framer-styles-preset-1l5w9qt.rich-text-wrapper p { --framer-font-family: \"Brown LL Medium\", sans-serif; --framer-font-family-bold: \"Brown LL Bold\", sans-serif; --framer-font-family-bold-italic: \"Brown LL Bold Italic\", sans-serif; --framer-font-family-italic: \"Brown LL Medium Italic\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-y7I98 .framer-styles-preset-1l5w9qt:not(.rich-text-wrapper), .framer-y7I98 .framer-styles-preset-1l5w9qt.rich-text-wrapper p { --framer-font-family: \"Brown LL Medium\", sans-serif; --framer-font-family-bold: \"Brown LL Bold\", sans-serif; --framer-font-family-bold-italic: \"Brown LL Bold Italic\", sans-serif; --framer-font-family-italic: \"Brown LL Medium Italic\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-y7I98 .framer-styles-preset-1l5w9qt:not(.rich-text-wrapper), .framer-y7I98 .framer-styles-preset-1l5w9qt.rich-text-wrapper p { --framer-font-family: \"Brown LL Medium\", sans-serif; --framer-font-family-bold: \"Brown LL Bold\", sans-serif; --framer-font-family-bold-italic: \"Brown LL Bold Italic\", sans-serif; --framer-font-family-italic: \"Brown LL Medium Italic\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-y7I98\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (a4aa1f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/ml6MwyxDxPRggEjtENFb/RoGQpko6gAjy5uzeF9dU/MxsVtljcN.js\";const enabledGestures={aSA21t419:{hover:true},pV3zjZGu2:{hover:true},sixQvwa1k:{hover:true},yY7zjSprT:{hover:true}};const cycleOrder=[\"aSA21t419\",\"yY7zjSprT\",\"sixQvwa1k\",\"pV3zjZGu2\"];const serializationHash=\"framer-QiHuc\";const variantClassNames={aSA21t419:\"framer-v-1bqr1xh\",pV3zjZGu2:\"framer-v-aysq5t\",sixQvwa1k:\"framer-v-sti181\",yY7zjSprT:\"framer-v-znzwgu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={\"Primary - Black\":\"aSA21t419\",\"Primary - White\":\"yY7zjSprT\",\"Secondary - Black\":\"sixQvwa1k\",\"Secondary - White\":\"pV3zjZGu2\"};const getProps=({buttonText,height,id,link,tap2,width,...props})=>{return{...props,fs8rXgseD:tap2??props.fs8rXgseD,rPMkMN1nU:buttonText??props.rPMkMN1nU??\"Button\",variant:humanReadableVariantMap[props.variant]??props.variant??\"aSA21t419\",vR2oUK1BU:link??props.vR2oUK1BU};};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,rPMkMN1nU,vR2oUK1BU,fs8rXgseD,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"aSA21t419\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapr8su50=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(fs8rXgseD){const res=await fs8rXgseD(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:vR2oUK1BU,motionChild:true,nodeId:\"aSA21t419\",scopeId:\"fqbBijZ6o\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1bqr1xh\",className,classNames)} framer-pzegb9`,\"data-border\":true,\"data-framer-name\":\"Primary - Black\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"aSA21t419\",onTap:onTapr8su50,ref:refBinding,style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",...style},variants:{pV3zjZGu2:{\"--border-color\":\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\"},yY7zjSprT:{\"--border-color\":\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\"}},...addPropertyOverrides({\"aSA21t419-hover\":{\"data-framer-name\":undefined},\"pV3zjZGu2-hover\":{\"data-framer-name\":undefined},\"sixQvwa1k-hover\":{\"data-framer-name\":undefined},\"yY7zjSprT-hover\":{\"data-framer-name\":undefined},pV3zjZGu2:{\"data-framer-name\":\"Secondary - White\"},sixQvwa1k:{\"data-framer-name\":\"Secondary - Black\"},yY7zjSprT:{\"data-framer-name\":\"Primary - White\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.button,{className:\"framer-yv82yj\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"PkKkGg60x\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l5w9qt\",\"data-styles-preset\":\"MxsVtljcN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Button\"})}),className:\"framer-2piwir\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bIq3gRB9V\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:rPMkMN1nU,variants:{\"aSA21t419-hover\":{\"--extracted-r6o4lv\":\"rgb(0, 0, 0)\"},\"pV3zjZGu2-hover\":{\"--extracted-r6o4lv\":\"var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0))\"},\"sixQvwa1k-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},\"yY7zjSprT-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},sixQvwa1k:{\"--extracted-r6o4lv\":\"var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0))\"},yY7zjSprT:{\"--extracted-r6o4lv\":\"var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"aSA21t419-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l5w9qt\",\"data-styles-preset\":\"MxsVtljcN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 0, 0))\"},children:\"Button\"})})},\"pV3zjZGu2-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l5w9qt\",\"data-styles-preset\":\"MxsVtljcN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0)))\"},children:\"Button\"})})},\"sixQvwa1k-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l5w9qt\",\"data-styles-preset\":\"MxsVtljcN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Button\"})})},\"yY7zjSprT-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l5w9qt\",\"data-styles-preset\":\"MxsVtljcN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Button\"})})},sixQvwa1k:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l5w9qt\",\"data-styles-preset\":\"MxsVtljcN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0)))\"},children:\"Button\"})})},yY7zjSprT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l5w9qt\",\"data-styles-preset\":\"MxsVtljcN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0)))\"},children:\"Button\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-h3w1t1\",\"data-framer-name\":\"BG Color\",layoutDependency:layoutDependency,layoutId:\"gSZZPOhqD\",style:{backgroundColor:\"var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, rgb(0, 0, 0))\",opacity:1},variants:{\"aSA21t419-hover\":{opacity:0},\"pV3zjZGu2-hover\":{opacity:1},\"sixQvwa1k-hover\":{opacity:1},\"yY7zjSprT-hover\":{opacity:0},pV3zjZGu2:{backgroundColor:\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\",opacity:0},sixQvwa1k:{opacity:0},yY7zjSprT:{backgroundColor:\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\"}}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QiHuc.framer-pzegb9, .framer-QiHuc .framer-pzegb9 { display: block; }\",\".framer-QiHuc.framer-1bqr1xh { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-QiHuc .framer-yv82yj { 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: 15px 30px 15px 30px; position: relative; width: min-content; z-index: 1; }\",\".framer-QiHuc .framer-2piwir { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-QiHuc .framer-h3w1t1 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-QiHuc.framer-v-sti181 .framer-h3w1t1, .framer-QiHuc.framer-v-aysq5t .framer-h3w1t1 { right: unset; width: 1px; }\",\".framer-QiHuc.framer-v-1bqr1xh.hover .framer-h3w1t1, .framer-QiHuc.framer-v-znzwgu.hover .framer-h3w1t1 { left: unset; width: 1px; }\",\".framer-QiHuc.framer-v-sti181.hover .framer-h3w1t1, .framer-QiHuc.framer-v-aysq5t.hover .framer-h3w1t1 { right: 0px; width: unset; }\",...sharedStyle.css,'.framer-QiHuc[data-border=\"true\"]::after, .framer-QiHuc [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 50\n * @framerIntrinsicWidth 126\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"yY7zjSprT\":{\"layout\":[\"auto\",\"auto\"]},\"sixQvwa1k\":{\"layout\":[\"auto\",\"auto\"]},\"pV3zjZGu2\":{\"layout\":[\"auto\",\"auto\"]},\"CYxSALKEO\":{\"layout\":[\"auto\",\"auto\"]},\"tfXE1BpRP\":{\"layout\":[\"auto\",\"auto\"]},\"EjNiZ3yI_\":{\"layout\":[\"auto\",\"auto\"]},\"QZMgPbOFf\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"rPMkMN1nU\":\"buttonText\",\"vR2oUK1BU\":\"link\",\"fs8rXgseD\":\"tap2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerfqbBijZ6o=withCSS(Component,css,\"framer-QiHuc\");export default FramerfqbBijZ6o;FramerfqbBijZ6o.displayName=\"Components/Button\";FramerfqbBijZ6o.defaultProps={height:50,width:126};addPropertyControls(FramerfqbBijZ6o,{variant:{options:[\"aSA21t419\",\"yY7zjSprT\",\"sixQvwa1k\",\"pV3zjZGu2\"],optionTitles:[\"Primary - Black\",\"Primary - White\",\"Secondary - Black\",\"Secondary - White\"],title:\"Variant\",type:ControlType.Enum},rPMkMN1nU:{defaultValue:\"Button\",title:\"Button Text\",type:ControlType.String},vR2oUK1BU:{title:\"Link\",type:ControlType.Link},fs8rXgseD:{title:\"Tap 2\",type:ControlType.EventHandler}});addFonts(FramerfqbBijZ6o,[{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)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfqbBijZ6o\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"50\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yY7zjSprT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"sixQvwa1k\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pV3zjZGu2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"CYxSALKEO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tfXE1BpRP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"EjNiZ3yI_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"QZMgPbOFf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"126\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"rPMkMN1nU\\\":\\\"buttonText\\\",\\\"vR2oUK1BU\\\":\\\"link\\\",\\\"fs8rXgseD\\\":\\\"tap2\\\"}\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fqbBijZ6o.map","import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"CUSTOM;Pensum Display Regular\",\"CUSTOM;Pensum Display Regular Italic\"]);export const fonts=[{family:\"Pensum Display Regular\",moduleAsset:{localModuleIdentifier:\"local-module:css/bzCesMQKc:default\",url:\"assets/MTdnvdimJIrtQh4XgjWZFi6zniE.ttf\"},url:new URL(\"assets/MTdnvdimJIrtQh4XgjWZFi6zniE.ttf\",\"https://framerusercontent.com/modules/ksFBYAvfW8FBVNqB1hMB/zCVAAbDg3kiJZi2oAevE/bzCesMQKc.js\").href},{family:\"Pensum Display Regular Italic\",moduleAsset:{localModuleIdentifier:\"local-module:css/bzCesMQKc:default\",url:\"assets/vxBSAS2NcUIq71I3lpkvtHHEOI.ttf\"},url:new URL(\"assets/vxBSAS2NcUIq71I3lpkvtHHEOI.ttf\",\"https://framerusercontent.com/modules/ksFBYAvfW8FBVNqB1hMB/zCVAAbDg3kiJZi2oAevE/bzCesMQKc.js\").href}];export const css=['.framer-yD8O2 .framer-styles-preset-agcqpx:not(.rich-text-wrapper), .framer-yD8O2 .framer-styles-preset-agcqpx.rich-text-wrapper p { --framer-font-family: \"Pensum Display Regular\", sans-serif; --framer-font-family-italic: \"Pensum Display Regular Italic\", sans-serif; --framer-font-size: 80px; --framer-font-style: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: -2px; --framer-line-height: 1.25em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-yD8O2 .framer-styles-preset-agcqpx:not(.rich-text-wrapper), .framer-yD8O2 .framer-styles-preset-agcqpx.rich-text-wrapper p { --framer-font-family: \"Pensum Display Regular\", sans-serif; --framer-font-family-italic: \"Pensum Display Regular Italic\", sans-serif; --framer-font-size: 60px; --framer-font-style: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: -2px; --framer-line-height: 1.25em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-yD8O2 .framer-styles-preset-agcqpx:not(.rich-text-wrapper), .framer-yD8O2 .framer-styles-preset-agcqpx.rich-text-wrapper p { --framer-font-family: \"Pensum Display Regular\", sans-serif; --framer-font-family-italic: \"Pensum Display Regular Italic\", sans-serif; --framer-font-size: 60px; --framer-font-style: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: -2px; --framer-line-height: 1.25em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-yD8O2\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Pensum Display Regular\",\"CUSTOM;Pensum Display Regular Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Pensum Display Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/MTdnvdimJIrtQh4XgjWZFi6zniE.ttf\"},{family:\"Pensum Display Regular Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/vxBSAS2NcUIq71I3lpkvtHHEOI.ttf\"}]}];export const css=['.framer-hHTZG .framer-styles-preset-1wml6uu:not(.rich-text-wrapper), .framer-hHTZG .framer-styles-preset-1wml6uu.rich-text-wrapper h2 { --framer-font-family: \"Pensum Display Regular\", \"Pensum Display Regular Placeholder\", sans-serif; --framer-font-family-italic: \"Pensum Display Regular Italic\", \"Pensum Display Regular Italic Placeholder\", sans-serif; --framer-font-size: 60px; --framer-font-style: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: -1px; --framer-line-height: 1.35em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-hHTZG .framer-styles-preset-1wml6uu:not(.rich-text-wrapper), .framer-hHTZG .framer-styles-preset-1wml6uu.rich-text-wrapper h2 { --framer-font-family: \"Pensum Display Regular\", \"Pensum Display Regular Placeholder\", sans-serif; --framer-font-family-italic: \"Pensum Display Regular Italic\", \"Pensum Display Regular Italic Placeholder\", sans-serif; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: -1px; --framer-line-height: 1.35em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-hHTZG .framer-styles-preset-1wml6uu:not(.rich-text-wrapper), .framer-hHTZG .framer-styles-preset-1wml6uu.rich-text-wrapper h2 { --framer-font-family: \"Pensum Display Regular\", \"Pensum Display Regular Placeholder\", sans-serif; --framer-font-family-italic: \"Pensum Display Regular Italic\", \"Pensum Display Regular Italic Placeholder\", sans-serif; --framer-font-size: 38px; --framer-font-style: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: -1px; --framer-line-height: 1.35em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-hHTZG\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (d275c2b)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Brown LL Regular\",\"CUSTOM;Brown LL Bold\",\"CUSTOM;Brown LL Bold Italic\",\"CUSTOM;Brown LL Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Brown LL Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/48j4Nz9raZ0FpdynbT6fvPyxzE.otf\"},{family:\"Brown LL Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/c5PN8RZeq3sTUHQPW8v2bs7FQ.otf\"},{family:\"Brown LL Bold Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/U0VgTIQlQ1OGDMLxnwT9fSC1byY.otf\"},{family:\"Brown LL Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/m1FZD5jOzltY3UlM9ks3Zyli6M.otf\"}]}];export const css=['.framer-lioYS .framer-styles-preset-1mv2rrq:not(.rich-text-wrapper), .framer-lioYS .framer-styles-preset-1mv2rrq.rich-text-wrapper p { --framer-font-family: \"Brown LL Regular\", \"Brown LL Regular Placeholder\", sans-serif; --framer-font-family-bold: \"Brown LL Bold\", \"Brown LL Bold Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Brown LL Bold Italic\", \"Brown LL Bold Italic Placeholder\", sans-serif; --framer-font-family-italic: \"Brown LL Italic\", \"Brown LL Italic Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-lioYS .framer-styles-preset-1mv2rrq:not(.rich-text-wrapper), .framer-lioYS .framer-styles-preset-1mv2rrq.rich-text-wrapper p { --framer-font-family: \"Brown LL Regular\", \"Brown LL Regular Placeholder\", sans-serif; --framer-font-family-bold: \"Brown LL Bold\", \"Brown LL Bold Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Brown LL Bold Italic\", \"Brown LL Bold Italic Placeholder\", sans-serif; --framer-font-family-italic: \"Brown LL Italic\", \"Brown LL Italic Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-lioYS .framer-styles-preset-1mv2rrq:not(.rich-text-wrapper), .framer-lioYS .framer-styles-preset-1mv2rrq.rich-text-wrapper p { --framer-font-family: \"Brown LL Regular\", \"Brown LL Regular Placeholder\", sans-serif; --framer-font-family-bold: \"Brown LL Bold\", \"Brown LL Bold Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Brown LL Bold Italic\", \"Brown LL Bold Italic Placeholder\", sans-serif; --framer-font-family-italic: \"Brown LL Italic\", \"Brown LL Italic Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-7991f00c-3814-4f12-8a8b-275815b7e6c5, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-lioYS\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (b62ce54)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"ydt_7Uvzg\",\"jaouE67XJ\",\"pTUcoZZro\",\"PkH3mDDw2\"];const variantClassNames={jaouE67XJ:\"framer-v-1q9rb7v\",PkH3mDDw2:\"framer-v-bykpfc\",pTUcoZZro:\"framer-v-dd09qd\",ydt_7Uvzg:\"framer-v-xpoaz3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={Arrow:\"PkH3mDDw2\",Dribbble:\"ydt_7Uvzg\",Instagram:\"pTUcoZZro\",LinkedIn:\"jaouE67XJ\"};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"ydt_7Uvzg\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"ydt_7Uvzg\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const isDisplayed=()=>{if([\"jaouE67XJ\",\"pTUcoZZro\",\"PkH3mDDw2\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"jaouE67XJ\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"pTUcoZZro\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"PkH3mDDw2\")return true;return false;};const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-Z1zkU\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-xpoaz3\",className),\"data-framer-name\":\"Dribbble\",layoutDependency:layoutDependency,layoutId:\"ydt_7Uvzg\",ref:ref,style:{...style},transition:transition,...addPropertyOverrides({jaouE67XJ:{\"data-framer-name\":\"LinkedIn\"},PkH3mDDw2:{\"data-framer-name\":\"Arrow\"},pTUcoZZro:{\"data-framer-name\":\"Instagram\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-e10sih\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Dgj9o4T54\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 19.989 11.572 C 19.907 9.998 19.36 8.484 18.416 7.221 C 18.128 7.531 17.821 7.821 17.496 8.091 C 16.497 8.921 15.38 9.598 14.183 10.101 C 14.35 10.451 14.503 10.79 14.638 11.11 L 14.638 11.113 C 14.665 11.174 14.688 11.231 14.732 11.342 L 14.749 11.382 C 16.262 11.212 17.858 11.275 19.405 11.485 C 19.611 11.512 19.805 11.541 19.989 11.572 Z M 10.604 4.122 C 11.579 5.495 12.477 6.921 13.296 8.392 C 14.519 7.91 15.53 7.302 16.344 6.625 C 16.674 6.351 16.938 6.093 17.14 5.87 C 15.701 4.66 13.88 3.997 12 4 C 11.524 4 11.058 4.042 10.604 4.121 Z M 4.253 9.997 C 4.934 9.98 5.615 9.939 6.293 9.874 C 7.933 9.727 9.558 9.453 11.155 9.052 C 10.321 7.602 9.42 6.192 8.455 4.825 C 6.37 5.858 4.837 7.745 4.253 9.997 Z M 5.783 17.035 C 6.252 16.358 6.779 15.722 7.358 15.136 C 8.812 13.646 10.528 12.486 12.514 11.846 L 12.576 11.828 C 12.411 11.464 12.256 11.139 12.1 10.833 C 10.264 11.368 8.33 11.702 6.403 11.875 C 5.463 11.96 4.62 11.997 4 12.003 C 3.998 13.836 4.628 15.613 5.784 17.035 Z M 15.004 19.415 C 14.618 17.47 14.072 15.561 13.372 13.706 C 11.372 14.433 9.776 15.496 8.543 16.764 C 8.045 17.266 7.604 17.821 7.226 18.419 C 8.605 19.448 10.28 20.002 12 20 C 13.03 20.001 14.05 19.804 15.005 19.417 Z M 16.878 18.34 C 18.439 17.14 19.503 15.406 19.865 13.47 C 19.525 13.385 19.094 13.3 18.62 13.234 C 17.566 13.082 16.497 13.071 15.44 13.201 C 16.035 14.88 16.515 16.597 16.878 18.341 Z M 12 22 C 6.477 22 2 17.523 2 12 C 2 6.477 6.477 2 12 2 C 17.523 2 22 6.477 22 12 C 22 17.523 17.523 22 12 22 Z\" fill=\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:1969541756,transition:transition,withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-14b72xg\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"KZUyM5ZhZ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 18.336 18.339 L 15.671 18.339 L 15.671 14.162 C 15.671 13.166 15.651 11.884 14.281 11.884 C 12.892 11.884 12.68 12.968 12.68 14.089 L 12.68 18.339 L 10.014 18.339 L 10.014 9.75 L 12.574 9.75 L 12.574 10.92 L 12.609 10.92 C 12.967 10.246 13.837 9.533 15.137 9.533 C 17.837 9.533 18.337 11.311 18.337 13.624 L 18.337 18.339 Z M 7.004 8.575 C 6.593 8.576 6.199 8.412 5.908 8.122 C 5.618 7.831 5.455 7.437 5.456 7.026 C 5.457 6.171 6.15 5.478 7.005 5.479 C 7.86 5.48 8.553 6.173 8.552 7.028 C 8.551 7.883 7.858 8.576 7.003 8.575 Z M 8.34 18.339 L 5.667 18.339 L 5.667 9.75 L 8.34 9.75 Z M 19.67 3 L 4.33 3 C 3.594 3 3 3.58 3 4.297 L 3 19.703 C 3 20.42 3.594 21 4.328 21 L 19.667 21 C 20.4 21 21 20.42 21 19.703 L 21 4.297 C 21 3.581 20.4 3 19.666 3 L 19.669 3 Z\" fill=\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:3337598308,transition:transition,withExternalLayout:true,...addPropertyOverrides({jaouE67XJ:{svgContentId:3619021548}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-1cviqkg\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"EaQZbvuXn\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12.001 9 C 10.344 9 9.001 10.343 9.001 12 C 9.001 13.657 10.344 15 12.001 15 C 13.658 15 15.001 13.657 15.001 12 C 15.001 10.343 13.658 9 12.001 9 Z M 12.001 7 C 14.762 7 17.001 9.239 17.001 12 C 17.001 14.761 14.762 17 12.001 17 C 9.24 17 7.001 14.761 7.001 12 C 7.001 9.239 9.24 7 12.001 7 Z M 18.501 6.75 C 18.501 7.44 17.941 8 17.251 8 C 16.561 8 16.001 7.44 16.001 6.75 C 16.001 6.06 16.561 5.5 17.251 5.5 C 17.941 5.5 18.501 6.06 18.501 6.75 Z M 12.001 4 C 9.527 4 9.123 4.007 7.972 4.058 C 7.188 4.095 6.662 4.2 6.174 4.39 C 5.766 4.54 5.396 4.78 5.094 5.093 C 4.781 5.395 4.54 5.765 4.39 6.173 C 4.2 6.663 4.095 7.188 4.059 7.971 C 4.007 9.075 4 9.461 4 12 C 4 14.475 4.007 14.878 4.058 16.029 C 4.095 16.812 4.2 17.339 4.389 17.826 C 4.559 18.261 4.759 18.574 5.091 18.906 C 5.428 19.242 5.741 19.443 6.171 19.609 C 6.665 19.8 7.191 19.906 7.971 19.942 C 9.075 19.994 9.461 20 12 20 C 14.475 20 14.878 19.993 16.029 19.942 C 16.811 19.905 17.337 19.8 17.826 19.611 C 18.234 19.46 18.603 19.22 18.906 18.908 C 19.243 18.572 19.444 18.259 19.61 17.828 C 19.8 17.336 19.906 16.81 19.942 16.028 C 19.994 14.925 20 14.538 20 12 C 20 9.526 19.993 9.122 19.942 7.971 C 19.905 7.189 19.799 6.661 19.61 6.173 C 19.459 5.765 19.219 5.396 18.907 5.093 C 18.605 4.78 18.236 4.539 17.827 4.389 C 17.337 4.199 16.811 4.094 16.029 4.058 C 14.926 4.006 14.54 4 12 4 Z M 12.001 2 C 14.718 2 15.057 2.01 16.124 2.06 C 17.188 2.11 17.914 2.277 18.551 2.525 C 19.211 2.779 19.767 3.123 20.323 3.678 C 20.831 4.178 21.225 4.783 21.476 5.45 C 21.723 6.087 21.891 6.813 21.941 7.878 C 21.988 8.944 22.001 9.283 22.001 12 C 22.001 14.717 21.991 15.056 21.941 16.122 C 21.891 17.187 21.723 17.912 21.476 18.55 C 21.226 19.218 20.832 19.823 20.323 20.322 C 19.823 20.83 19.218 21.224 18.551 21.475 C 17.914 21.722 17.188 21.89 16.124 21.94 C 15.057 21.987 14.718 22 12.001 22 C 9.284 22 8.945 21.99 7.878 21.94 C 6.814 21.89 6.089 21.722 5.451 21.475 C 4.783 21.224 4.179 20.831 3.679 20.322 C 3.17 19.822 2.777 19.217 2.526 18.55 C 2.278 17.913 2.111 17.187 2.061 16.122 C 2.013 15.056 2.001 14.717 2.001 12 C 2.001 9.283 2.011 8.944 2.061 7.878 C 2.111 6.812 2.278 6.088 2.526 5.45 C 2.776 4.782 3.17 4.177 3.679 3.678 C 4.179 3.169 4.783 2.776 5.451 2.525 C 6.088 2.277 6.813 2.11 7.878 2.06 C 8.945 2.013 9.284 2 12.001 2 Z\" fill=\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:3434642519,transition:transition,withExternalLayout:true,...addPropertyOverrides({pTUcoZZro:{svgContentId:3102731788}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-1q0xtwy\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"VgbwlCHRh\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 13 7.828 L 13 20 L 11 20 L 11 7.828 L 5.636 13.192 L 4.222 11.778 L 12 4 L 19.778 11.778 L 18.364 13.192 Z\" fill=\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:4253784026,transition:transition,withExternalLayout:true,...addPropertyOverrides({PkH3mDDw2:{svgContentId:4179217428}},baseVariant,gestureVariant)})]})})});});const css=['.framer-Z1zkU [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Z1zkU .framer-bef6ov { display: block; }\",\".framer-Z1zkU .framer-xpoaz3 { height: 24px; mix-blend-mode: difference; position: relative; width: 24px; }\",\".framer-Z1zkU .framer-e10sih, .framer-Z1zkU .framer-14b72xg, .framer-Z1zkU .framer-1cviqkg { flex: none; height: 24px; left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-Z1zkU .framer-1q0xtwy { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-Z1zkU.framer-v-1q9rb7v .framer-xpoaz3, .framer-Z1zkU.framer-v-dd09qd .framer-xpoaz3, .framer-Z1zkU.framer-v-bykpfc .framer-xpoaz3 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 24px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"jaouE67XJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"pTUcoZZro\":{\"layout\":[\"fixed\",\"fixed\"]},\"PkH3mDDw2\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n */ const FramermWuQRjpoD=withCSS(Component,css,\"framer-Z1zkU\");export default FramermWuQRjpoD;FramermWuQRjpoD.displayName=\"Icons/Social Media\";FramermWuQRjpoD.defaultProps={height:24,width:24};addPropertyControls(FramermWuQRjpoD,{variant:{options:[\"ydt_7Uvzg\",\"jaouE67XJ\",\"pTUcoZZro\",\"PkH3mDDw2\"],optionTitles:[\"Dribbble\",\"LinkedIn\",\"Instagram\",\"Arrow\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramermWuQRjpoD,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermWuQRjpoD\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jaouE67XJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pTUcoZZro\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PkH3mDDw2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"24\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mWuQRjpoD.map","// Generated by Framer (532f6a7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Link,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import MenuMenuItem from\"https://framerusercontent.com/modules/VTExO8LoFRBdWDvX35ks/SQSIeBB309pnHfF8up35/BY_45QHFU.js\";import IconsSocialMedia from\"https://framerusercontent.com/modules/ZgJKhcausQn5NMr7szWu/Cm6OaCF0xcofq9xqjl3B/mWuQRjpoD.js\";const MenuMenuItemFonts=getFonts(MenuMenuItem);const IconsSocialMediaFonts=getFonts(IconsSocialMedia);const enabledGestures={HOwTQc_6L:{hover:true},l9gHqgrJK:{hover:true},LNgvvFXSa:{hover:true},LTOGQDYJx:{hover:true},RJ7YFGHHi:{hover:true}};const cycleOrder=[\"LTOGQDYJx\",\"l9gHqgrJK\",\"LNgvvFXSa\",\"HOwTQc_6L\",\"RJ7YFGHHi\"];const variantClassNames={HOwTQc_6L:\"framer-v-pvhgf4\",l9gHqgrJK:\"framer-v-93gdeu\",LNgvvFXSa:\"framer-v-1ih7n5l\",LTOGQDYJx:\"framer-v-1dakhh1\",RJ7YFGHHi:\"framer-v-1rbwoaj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={\"Back to top\":\"RJ7YFGHHi\",\"Language Switcher\":\"HOwTQc_6L\",Dribbble:\"LNgvvFXSa\",Instagram:\"l9gHqgrJK\",LinkedIn:\"LTOGQDYJx\"};const transitions={default:{damping:60,delay:0,duration:.2,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"tween\"}};const transformTemplate=(_,t)=>`translate(-50%, -50%) ${t}`;const Component=/*#__PURE__*/React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"LTOGQDYJx\",link:wFSoZ7UCD,...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"LTOGQDYJx\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const isDisplayed=()=>{if(gestureVariant===\"HOwTQc_6L-hover\")return true;if(baseVariant===\"HOwTQc_6L\")return true;return false;};const isDisplayed1=()=>{if([\"HOwTQc_6L-hover\",\"RJ7YFGHHi-hover\"].includes(gestureVariant))return false;if([\"HOwTQc_6L\",\"RJ7YFGHHi\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(gestureVariant===\"RJ7YFGHHi-hover\")return true;if(baseVariant===\"RJ7YFGHHi\")return true;return false;};const defaultLayoutId=React.useId();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-CiccX\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/appliedbyzeb/mycompany/\",...addPropertyOverrides({\"HOwTQc_6L-hover\":{href:undefined},HOwTQc_6L:{href:undefined},l9gHqgrJK:{href:\"https://www.instagram.com/applied_by_zeb/\",openInNewTab:true},LNgvvFXSa:{href:\"https://dribbble.com/applied_by_zeb\",openInNewTab:true},RJ7YFGHHi:{href:wFSoZ7UCD,openInNewTab:false,smoothScroll:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(\"framer-1dakhh1\",className)} framer-knl3z0`,\"data-border\":true,\"data-framer-name\":\"LinkedIn\",layoutDependency:layoutDependency,layoutId:\"LTOGQDYJx\",ref:ref,style:{\"--border-bottom-width\":\"2px\",\"--border-color\":'var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:99,borderBottomRightRadius:99,borderTopLeftRadius:99,borderTopRightRadius:99,...style},transition:transition,variants:{\"l9gHqgrJK-hover\":{backgroundColor:\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\"},\"LNgvvFXSa-hover\":{backgroundColor:\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\"},\"LTOGQDYJx-hover\":{backgroundColor:\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\"},\"RJ7YFGHHi-hover\":{backgroundColor:\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\"}},...addPropertyOverrides({\"HOwTQc_6L-hover\":{\"data-framer-name\":undefined},\"l9gHqgrJK-hover\":{\"data-framer-name\":undefined},\"LNgvvFXSa-hover\":{\"data-framer-name\":undefined},\"LTOGQDYJx-hover\":{\"data-framer-name\":undefined},\"RJ7YFGHHi-hover\":{\"data-framer-name\":undefined},HOwTQc_6L:{\"data-framer-name\":\"Language Switcher\"},l9gHqgrJK:{\"data-framer-name\":\"Instagram\"},LNgvvFXSa:{\"data-framer-name\":\"Dribbble\"},RJ7YFGHHi:{\"data-framer-name\":\"Back to top\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-116z4cl-container\",layoutDependency:layoutDependency,layoutId:\"IiptuwEZa-container\",transformTemplate:transformTemplate,transition:transition,...addPropertyOverrides({\"HOwTQc_6L-hover\":{transformTemplate:undefined},HOwTQc_6L:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MenuMenuItem,{height:\"100%\",id:\"IiptuwEZa\",layoutId:\"IiptuwEZa\",name:\"EN\",style:{height:\"100%\"},variant:\"U9z_1btOO\",width:\"100%\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-judh4u-container\",layoutDependency:layoutDependency,layoutId:\"LKoUuDD7s-container\",transition:transition,children:/*#__PURE__*/_jsx(IconsSocialMedia,{height:\"100%\",id:\"LKoUuDD7s\",layoutId:\"LKoUuDD7s\",style:{height:\"100%\",width:\"100%\"},variant:\"jaouE67XJ\",width:\"100%\",...addPropertyOverrides({l9gHqgrJK:{variant:\"pTUcoZZro\"},LNgvvFXSa:{variant:\"ydt_7Uvzg\"}},baseVariant,gestureVariant)})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-t1yac5-container\",layoutDependency:layoutDependency,layoutId:\"rlQhQjscg-container\",transition:transition,children:/*#__PURE__*/_jsx(IconsSocialMedia,{height:\"100%\",id:\"rlQhQjscg\",layoutId:\"rlQhQjscg\",style:{height:\"100%\",width:\"100%\"},variant:\"PkH3mDDw2\",width:\"100%\"})})]})})})});});const css=['.framer-CiccX [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CiccX .framer-knl3z0 { display: block; }\",\".framer-CiccX .framer-1dakhh1 { height: 44px; position: relative; text-decoration: none; width: 44px; }\",\".framer-CiccX .framer-116z4cl-container { flex: none; height: 24px; left: 50%; position: absolute; top: 50%; width: auto; }\",\".framer-CiccX .framer-judh4u-container, .framer-CiccX .framer-t1yac5-container { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-CiccX .framer-v-1dakhh1 .framer-1dakhh1, .framer-CiccX .framer-v-93gdeu .framer-1dakhh1, .framer-CiccX .framer-v-1ih7n5l .framer-1dakhh1, .framer-CiccX .framer-v-pvhgf4 .framer-1dakhh1, .framer-CiccX .framer-v-1rbwoaj .framer-1dakhh1 { cursor: pointer; }\",\".framer-CiccX.framer-v-pvhgf4 .framer-1dakhh1 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px 0px 0px 0px; width: min-content; }\",\".framer-CiccX.framer-v-pvhgf4 .framer-116z4cl-container { left: unset; position: relative; top: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CiccX.framer-v-pvhgf4 .framer-1dakhh1 { gap: 0px; } .framer-CiccX.framer-v-pvhgf4 .framer-1dakhh1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-CiccX.framer-v-pvhgf4 .framer-1dakhh1 > :first-child { margin-left: 0px; } .framer-CiccX.framer-v-pvhgf4 .framer-1dakhh1 > :last-child { margin-right: 0px; } }\",\".framer-CiccX.framer-v-pvhgf4.hover .framer-116z4cl-container { left: unset; top: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 44\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"l9gHqgrJK\":{\"layout\":[\"fixed\",\"fixed\"]},\"LNgvvFXSa\":{\"layout\":[\"fixed\",\"fixed\"]},\"HOwTQc_6L\":{\"layout\":[\"auto\",\"fixed\"]},\"RJ7YFGHHi\":{\"layout\":[\"fixed\",\"fixed\"]},\"mv6moGE4O\":{\"layout\":[\"fixed\",\"fixed\"]},\"P3Dfx46Gu\":{\"layout\":[\"fixed\",\"fixed\"]},\"R7TOQblKW\":{\"layout\":[\"fixed\",\"fixed\"]},\"IiQcYR1dl\":{\"layout\":[\"auto\",\"fixed\"]},\"dz4Te9SkN\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"wFSoZ7UCD\":\"link\"}\n */const FramerREiNlwljQ=withCSS(Component,css,\"framer-CiccX\");export default FramerREiNlwljQ;FramerREiNlwljQ.displayName=\"Footer/Icons\";FramerREiNlwljQ.defaultProps={height:44,width:44};addPropertyControls(FramerREiNlwljQ,{variant:{options:[\"LTOGQDYJx\",\"l9gHqgrJK\",\"LNgvvFXSa\",\"HOwTQc_6L\",\"RJ7YFGHHi\"],optionTitles:[\"LinkedIn\",\"Instagram\",\"Dribbble\",\"Language Switcher\",\"Back to top\"],title:\"Variant\",type:ControlType.Enum},wFSoZ7UCD:{title:\"Link\",type:ControlType.Link}});addFonts(FramerREiNlwljQ,[...MenuMenuItemFonts,...IconsSocialMediaFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerREiNlwljQ\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"44\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"l9gHqgrJK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LNgvvFXSa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HOwTQc_6L\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"RJ7YFGHHi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mv6moGE4O\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"P3Dfx46Gu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"R7TOQblKW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IiQcYR1dl\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"dz4Te9SkN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"wFSoZ7UCD\\\":\\\"link\\\"}\",\"framerIntrinsicHeight\":\"44\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (a4aa1f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import MenuMenuItem from\"https://framerusercontent.com/modules/VTExO8LoFRBdWDvX35ks/SQSIeBB309pnHfF8up35/BY_45QHFU.js\";import ComponentsLinkButton from\"https://framerusercontent.com/modules/HbnoBTBPZWXo08KAku2q/D0hLW0vQ8JgnBCrepeWY/E00PHOnId.js\";import FooterIcons from\"https://framerusercontent.com/modules/38uqlR4tBHGHpsWcA122/BtAh7IydobodpLWijPYE/REiNlwljQ.js\";import BrandLogo from\"https://framerusercontent.com/modules/UP3QF1IiIjcrvHUhRguJ/JW5qfxBFuIqY0xbytmMf/VzLJpEO4W.js\";const BrandLogoFonts=getFonts(BrandLogo);const MenuMenuItemFonts=getFonts(MenuMenuItem);const ComponentsLinkButtonFonts=getFonts(ComponentsLinkButton);const FooterIconsFonts=getFonts(FooterIcons);const serializationHash=\"framer-rJq0N\";const variantClassNames={pcE723LuF:\"framer-v-1mgl7lr\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({closeOverlay,height,id,width,...props})=>{return{...props,UI_0vNZoz:closeOverlay??props.UI_0vNZoz};};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,UI_0vNZoz,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"pcE723LuF\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1u7lxtq=activeVariantCallback(async(...args)=>{if(UI_0vNZoz){const res=await UI_0vNZoz(...args);if(res===false)return false;}});const f_C1eoInL1u7lxtq=activeVariantCallback(async(...args)=>{if(UI_0vNZoz){const res=await UI_0vNZoz(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1mgl7lr\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"pcE723LuF\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1775euj\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"zQxwZJP94\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-193u6fm\",\"data-framer-name\":\"Empty\",layoutDependency:layoutDependency,layoutId:\"ANtRR9sTl\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sd2727\",layoutDependency:layoutDependency,layoutId:\"hoLkgYWFM\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-144mpql\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"qzwKoKkbj\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,width:\"135.3846px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-40-(Math.max(0,((componentViewport?.height||800)-40-0)/1)*1+0))/2+0+0)+0+(0+0+(Math.max(0,((componentViewport?.height||800)-40-0)/1)*1-0-346)/2*0)+0+20+-1,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16bdoc7-container\",layoutDependency:layoutDependency,layoutId:\"BPeSvbRub-container\",nodeId:\"BPeSvbRub\",rendersWithMotion:true,scopeId:\"me72slqLH\",children:/*#__PURE__*/_jsx(BrandLogo,{height:\"100%\",id:\"BPeSvbRub\",layoutId:\"BPeSvbRub\",style:{height:\"100%\",width:\"100%\"},variant:\"uGGqj3g9J\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gulpyp\",\"data-framer-name\":\"Burger Menu\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"q8klwDX7i\",onTap:onTap1u7lxtq,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-40-(Math.max(0,((componentViewport?.height||800)-40-0)/1)*1+0))/2+0+0)+0+(0+0+(Math.max(0,((componentViewport?.height||800)-40-0)/1)*1-0-346)/2*0)+0+19,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1etperv-container\",layoutDependency:layoutDependency,layoutId:\"NN1QL1m_Y-container\",nodeId:\"NN1QL1m_Y\",rendersWithMotion:true,scopeId:\"me72slqLH\",children:/*#__PURE__*/_jsx(MenuMenuItem,{height:\"100%\",id:\"NN1QL1m_Y\",iX6CiYjB1:\"Schlie\\xdfen\",layoutId:\"NN1QL1m_Y\",LjQGrX0Tb:\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\",variant:\"CsCHiw1D7\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-de7tbb\",\"data-framer-name\":\"Items\",layoutDependency:layoutDependency,layoutId:\"V_xy3r_wZ\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9gxkat\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"oIrIuPbUn\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"I2eRtWU5K\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-40-(Math.max(0,((componentViewport?.height||800)-40-0)/1)*1+0))/2+0+0)+0+(0+60+(Math.max(0,((componentViewport?.height||800)-40-0)/1)*1-0-346)/2*1)+0+0+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-h1dbb1-container\",layoutDependency:layoutDependency,layoutId:\"zoAfecBt2-container\",nodeId:\"zoAfecBt2\",rendersWithMotion:true,scopeId:\"me72slqLH\",children:/*#__PURE__*/_jsx(MenuMenuItem,{f_C1eoInL:f_C1eoInL1u7lxtq,height:\"100%\",id:\"zoAfecBt2\",iX6CiYjB1:\"L\\xf6sungen\",layoutId:\"zoAfecBt2\",LjQGrX0Tb:\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\",O9CNUFGCq:resolvedLinks[0],variant:\"Ii5vXL9QE\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"W4PrWJquw\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-40-(Math.max(0,((componentViewport?.height||800)-40-0)/1)*1+0))/2+0+0)+0+(0+60+(Math.max(0,((componentViewport?.height||800)-40-0)/1)*1-0-346)/2*1)+0+0+0+52,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17a5bmv-container\",layoutDependency:layoutDependency,layoutId:\"gkxYeZy9w-container\",nodeId:\"gkxYeZy9w\",rendersWithMotion:true,scopeId:\"me72slqLH\",children:/*#__PURE__*/_jsx(MenuMenuItem,{f_C1eoInL:f_C1eoInL1u7lxtq,height:\"100%\",id:\"gkxYeZy9w\",iX6CiYjB1:\"Services\",layoutId:\"gkxYeZy9w\",LjQGrX0Tb:\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\",O9CNUFGCq:resolvedLinks1[0],variant:\"Ii5vXL9QE\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tq4yRM2zI\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-40-(Math.max(0,((componentViewport?.height||800)-40-0)/1)*1+0))/2+0+0)+0+(0+60+(Math.max(0,((componentViewport?.height||800)-40-0)/1)*1-0-346)/2*1)+0+0+0+104,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jysi8c-container\",layoutDependency:layoutDependency,layoutId:\"GDQdRY2vu-container\",nodeId:\"GDQdRY2vu\",rendersWithMotion:true,scopeId:\"me72slqLH\",children:/*#__PURE__*/_jsx(MenuMenuItem,{f_C1eoInL:f_C1eoInL1u7lxtq,height:\"100%\",id:\"GDQdRY2vu\",iX6CiYjB1:\"\\xdcber uns\",layoutId:\"GDQdRY2vu\",LjQGrX0Tb:\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\",O9CNUFGCq:resolvedLinks2[0],variant:\"Ii5vXL9QE\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"iy0oQD59u\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-40-(Math.max(0,((componentViewport?.height||800)-40-0)/1)*1+0))/2+0+0)+0+(0+60+(Math.max(0,((componentViewport?.height||800)-40-0)/1)*1-0-346)/2*1)+0+0+0+156,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cknof3-container\",layoutDependency:layoutDependency,layoutId:\"Jb1qnd06n-container\",nodeId:\"Jb1qnd06n\",rendersWithMotion:true,scopeId:\"me72slqLH\",children:/*#__PURE__*/_jsx(MenuMenuItem,{f_C1eoInL:f_C1eoInL1u7lxtq,height:\"100%\",id:\"Jb1qnd06n\",iX6CiYjB1:\"Newsroom\",layoutId:\"Jb1qnd06n\",LjQGrX0Tb:\"var(--token-5e831aa2-d934-46d4-9b0a-cefa9114ae8c, rgb(255, 255, 255))\",O9CNUFGCq:resolvedLinks3[0],variant:\"Ii5vXL9QE\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sorvrn\",\"data-framer-name\":\"Footer\",layoutDependency:layoutDependency,layoutId:\"xB2sy4oSY\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mzs2og\",\"data-framer-name\":\"Newsletter\",layoutDependency:layoutDependency,layoutId:\"fLH3KpK64\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UtCzLeYvd\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-40-(Math.max(0,((componentViewport?.height||800)-40-0)/1)*1+0))/2+0+0)+0+(0+238+(Math.max(0,((componentViewport?.height||800)-40-0)/1)*1-0-346)/2*2)+0+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kt7dxj-container\",layoutDependency:layoutDependency,layoutId:\"zgjmeAwVZ-container\",nodeId:\"zgjmeAwVZ\",rendersWithMotion:true,scopeId:\"me72slqLH\",children:/*#__PURE__*/_jsx(ComponentsLinkButton,{ha_6Kfy8j:\"Newsletter abonnieren\",height:\"100%\",id:\"zgjmeAwVZ\",layoutId:\"zgjmeAwVZ\",nS0aegT4J:resolvedLinks4[0],variant:\"ueiq4WEgo\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18prmst\",\"data-framer-name\":\"Language-SM\",layoutDependency:layoutDependency,layoutId:\"Z9b9bDnN9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o6o1kf\",\"data-framer-name\":\"Social Media\",layoutDependency:layoutDependency,layoutId:\"RvMSoCA8J\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-z34b51-container\",layoutDependency:layoutDependency,layoutId:\"tAWkgrJEr-container\",nodeId:\"tAWkgrJEr\",rendersWithMotion:true,scopeId:\"me72slqLH\",children:/*#__PURE__*/_jsx(FooterIcons,{height:\"100%\",id:\"tAWkgrJEr\",layoutId:\"tAWkgrJEr\",style:{height:\"100%\",width:\"100%\"},variant:\"LTOGQDYJx\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-csk8my-container\",layoutDependency:layoutDependency,layoutId:\"jxQrVN7LV-container\",nodeId:\"jxQrVN7LV\",rendersWithMotion:true,scopeId:\"me72slqLH\",children:/*#__PURE__*/_jsx(FooterIcons,{height:\"100%\",id:\"jxQrVN7LV\",layoutId:\"jxQrVN7LV\",style:{height:\"100%\",width:\"100%\"},variant:\"l9gHqgrJK\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-f3acsc-container\",layoutDependency:layoutDependency,layoutId:\"lCDtRpFhD-container\",nodeId:\"lCDtRpFhD\",rendersWithMotion:true,scopeId:\"me72slqLH\",children:/*#__PURE__*/_jsx(FooterIcons,{height:\"100%\",id:\"lCDtRpFhD\",layoutId:\"lCDtRpFhD\",style:{height:\"100%\",width:\"100%\"},variant:\"LNgvvFXSa\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eimygt\",\"data-framer-name\":\"Language\",layoutDependency:layoutDependency,layoutId:\"Y79Olo6t3\"})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rJq0N.framer-1tcx0zz, .framer-rJq0N .framer-1tcx0zz { display: block; }\",\".framer-rJq0N.framer-1mgl7lr { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 800px; justify-content: center; overflow: hidden; padding: 0px 20px 40px 20px; position: relative; width: 390px; }\",\".framer-rJq0N .framer-1775euj { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rJq0N .framer-193u6fm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rJq0N .framer-1sd2727 { 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: 20px 20px 20px 0px; position: relative; width: 100px; }\",\".framer-rJq0N .framer-144mpql { align-content: center; align-items: center; aspect-ratio: 8.384615384615385 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: var(--framer-aspect-ratio-supported, 20px); justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 168px; }\",\".framer-rJq0N .framer-16bdoc7-container { aspect-ratio: 6.153846153846154 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 135px; }\",\".framer-rJq0N .framer-1gulpyp { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 60px; justify-content: center; overflow: visible; padding: 0px 0px 0px 10px; position: relative; width: min-content; }\",\".framer-rJq0N .framer-1etperv-container, .framer-rJq0N .framer-h1dbb1-container, .framer-rJq0N .framer-17a5bmv-container, .framer-rJq0N .framer-jysi8c-container, .framer-rJq0N .framer-cknof3-container, .framer-rJq0N .framer-1kt7dxj-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-rJq0N .framer-de7tbb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rJq0N .framer-9gxkat { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rJq0N .framer-1sorvrn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rJq0N .framer-1mzs2og { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rJq0N .framer-18prmst { 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: 0px; position: relative; width: 100%; }\",\".framer-rJq0N .framer-1o6o1kf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rJq0N .framer-z34b51-container, .framer-rJq0N .framer-csk8my-container, .framer-rJq0N .framer-f3acsc-container { flex: none; height: 44px; position: relative; width: 44px; }\",\".framer-rJq0N .framer-1eimygt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 45px; min-width: 128px; overflow: visible; padding: 0px; position: relative; width: min-content; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 390\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"UI_0vNZoz\":\"closeOverlay\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerme72slqLH=withCSS(Component,css,\"framer-rJq0N\");export default Framerme72slqLH;Framerme72slqLH.displayName=\"Menu/Mobile Menu\";Framerme72slqLH.defaultProps={height:800,width:390};addPropertyControls(Framerme72slqLH,{UI_0vNZoz:{title:\"Close Overlay\",type:ControlType.EventHandler}});addFonts(Framerme72slqLH,[{explicitInter:true,fonts:[]},...BrandLogoFonts,...MenuMenuItemFonts,...ComponentsLinkButtonFonts,...FooterIconsFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerme72slqLH\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"UI_0vNZoz\\\":\\\"closeOverlay\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"390\",\"framerIntrinsicHeight\":\"800\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}