{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/fnqnvv4vlRZdBnKB0w9J/jtLA0uyrFNsiunKrAcPT/Examples.js", "ssg:https://framerusercontent.com/modules/dKdwUsRUdl20oPSfESZB/XBCBpp1LO0BJqNQ8oFUF/IdGZkW4nr.js", "ssg:https://framerusercontent.com/modules/bPGsGnJvsPSBGmwYbbEe/ihbhEluOaj6s0wrawWRl/NlA2yKI2o.js", "ssg:https://framerusercontent.com/modules/Oo0Fh3g5bxBEjgL5PJQu/JVzpACy0PKHddf4raU1W/rGU0cQKj3.js", "ssg:https://framerusercontent.com/modules/3UrwGZkDYvnvbgBtJO3h/OvOTMG0u1yyA6ODb6SWg/rHVB6_q13-0.js", "ssg:https://framerusercontent.com/modules/3UrwGZkDYvnvbgBtJO3h/OvOTMG0u1yyA6ODb6SWg/rHVB6_q13.js", "ssg:https://framerusercontent.com/modules/oBP8T8uhR88iv22pJMna/lwmz7ZCkHGp6zUHPkcsK/e0jobvtYP.js", "ssg:https://framerusercontent.com/modules/gZYvkudiDaQHubK6Ch2F/mBuR2CUMiVMl3GqJ22CC/rHVB6_q13.js", "ssg:https://framerusercontent.com/modules/2Qf14dMFe0aBlT1olpiJ/zqHR0CBZWrqAEbYRVidj/u5WejuYsD-0.js", "ssg:https://framerusercontent.com/modules/2Qf14dMFe0aBlT1olpiJ/zqHR0CBZWrqAEbYRVidj/u5WejuYsD.js", "ssg:https://framerusercontent.com/modules/PG5qB48gBaURQACO4wJ7/XDZTdHidiMetWRNEA3jj/Do0AEx9pt.js", "ssg:https://framerusercontent.com/modules/cPnBTQsy7XySp4f0KR72/Zmjm96ZX6XrJPHLjTNXP/w1sFOgJoQ.js", "ssg:https://framerusercontent.com/modules/rWwED5vUyzXhaHxzhO08/OHqVeMwdOZDTHCfn1cBf/u5WejuYsD.js", "ssg:https://framerusercontent.com/modules/bjcvh2BprpTk3W1t1YR5/xskH3TkImlipQ8BRBT6E/ltbHwn8Nt.js", "ssg:https://framerusercontent.com/modules/cHuVNpcJV0lw9k2pTGkW/cKpoEo56C6qkWVRh7Hgr/zEKKIkLA1-0.js", "ssg:https://framerusercontent.com/modules/cHuVNpcJV0lw9k2pTGkW/cKpoEo56C6qkWVRh7Hgr/zEKKIkLA1.js", "ssg:https://framerusercontent.com/modules/cnp66TcHs5LdZ8JOGNIc/dmTKrDOZqLscVVjOnl8Y/FBtnvTcfB.js", "ssg:https://framerusercontent.com/modules/F242KqOPfE9bEqajRPF3/gwxSPQmFEkY2JPm7uGdU/npKT5EKvu-0.js", "ssg:https://framerusercontent.com/modules/F242KqOPfE9bEqajRPF3/gwxSPQmFEkY2JPm7uGdU/npKT5EKvu.js", "ssg:https://framerusercontent.com/modules/8lK43UTgNRgWOBMO95Q7/iMmcqIGm4mg1N5tL1LUT/npKT5EKvu.js", "ssg:https://framerusercontent.com/modules/4vleXPV0UQvLUPgYFkkH/JmSBJia24yFCzcGyKVIx/zEKKIkLA1.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.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{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{useRef,useEffect,useState}from\"react\";// Learn more: https://www.framer.com/developers/overrides/\nconst OPEN_VARIANT_NAME=\"Touch Open\";const useStore=createStore({background:\"#0099FF\",layoutDependency:null});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.05}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}export function AdjustHeroHeight(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,style:{height:`calc(100vh - 94px)`}});};}export function HideParentBackground(Component){return props=>{const src=props.background?.srcSet?.split(\"?\")?.[0]||\"\";delete props.background?.src;delete props.background?.srcSet;delete props.background?.fill;return /*#__PURE__*/_jsx(Component,{...props,style:{backgroundImage:`url(${src})`,backgroundAttachment:\"local\",backgroundPosition:\"top\"}});};}export function MarginTopAuto(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props});};}export function BlockFixed(Component){return props=>{const ref=useRef();useEffect(()=>{document.body.style.overflow=\"hidden\";return()=>{document.body.style.overflow=\"\";};});return /*#__PURE__*/_jsx(Component,{...props,ref:ref,style:{...props.style,position:\"fixed\",height:\"100vh\",width:\"100%\",top:\"0\",left:\"0\",transform:\"none\"}});};}export function PopupFixed(Component){return props=>{const ref=useRef();useEffect(()=>{document.body.style.overflow=\"hidden\";return()=>{document.body.style.overflow=\"\";};});return /*#__PURE__*/_jsx(Component,{...props,ref:ref,style:{...props.style,position:\"fixed\",height:\"100vh\",width:\"100%\",top:\"0\",left:\"50%\",background:\"rgba(0, 0, 0, 0.8)\"}});};}export function BlockFixedFilters(Component){return props=>{const ref=useRef();const[store,setStore]=useStore();if(!store.layoutDependency){setStore({...store,layoutDependency:props.layoutDependency});}useEffect(e=>{document.body.style.overflow=store.layoutDependency!=props.layoutDependency?\"hidden\":\"\";return()=>{document.body.style.overflow=\"\";};});return /*#__PURE__*/_jsx(Component,{...props,ref:ref,style:{...props.style,position:\"fixed\",height:\"100vh\",width:\"100%\",top:\"0\",left:\"0\"}});};}const MARGIN_LEFT=\"-6px\";export function MarginLeft(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,style:{marginLeft:MARGIN_LEFT}});};}const MARGIN_RIGHT=\"-6px\";export function MarginRight(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,style:{marginRight:MARGIN_RIGHT}});};}export function ToggleContent(Component){return props=>{const[open,setOpen]=useState(false);return /*#__PURE__*/_jsx(Component,{...props,onClick:setOpen});};}export function CollectionWithFiltering(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props});};}export function OverflowEllipsis2Lines(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,style:{display:\"-webkit-box\",\"-webkit-line-clamp\":\"2\",textOverflow:\"ellipsis\",\"-webkit-box-orient\":\"vertical\",overflow:\"hidden\"}});};}export function OverflowEllipsis6Lines(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,style:{display:\"-webkit-box\",\"-webkit-line-clamp\":\"7\",textOverflow:\"ellipsis\",\"-webkit-box-orient\":\"vertical\",overflow:\"hidden\"}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"PopupFixed\":{\"type\":\"reactHoc\",\"name\":\"PopupFixed\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"BlockFixedFilters\":{\"type\":\"reactHoc\",\"name\":\"BlockFixedFilters\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"AdjustHeroHeight\":{\"type\":\"reactHoc\",\"name\":\"AdjustHeroHeight\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"MarginRight\":{\"type\":\"reactHoc\",\"name\":\"MarginRight\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"OverflowEllipsis2Lines\":{\"type\":\"reactHoc\",\"name\":\"OverflowEllipsis2Lines\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"CollectionWithFiltering\":{\"type\":\"reactHoc\",\"name\":\"CollectionWithFiltering\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"MarginLeft\":{\"type\":\"reactHoc\",\"name\":\"MarginLeft\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"BlockFixed\":{\"type\":\"reactHoc\",\"name\":\"BlockFixed\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ToggleContent\":{\"type\":\"reactHoc\",\"name\":\"ToggleContent\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"OverflowEllipsis6Lines\":{\"type\":\"reactHoc\",\"name\":\"OverflowEllipsis6Lines\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HideParentBackground\":{\"type\":\"reactHoc\",\"name\":\"HideParentBackground\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"MarginTopAuto\":{\"type\":\"reactHoc\",\"name\":\"MarginTopAuto\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Examples.map", "// Generated by Framer (128ce9c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-KP4su\";const variantClassNames={eke3N8HYl:\"framer-v-jj7t4i\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({click,height,id,width,...props})=>{return{...props,vBtECYJM2:click??props.vBtECYJM2};};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,vBtECYJM2,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"eke3N8HYl\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapqkos70=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(vBtECYJM2){const res=await vBtECYJM2(...args);if(res===false)return false;}});const onTapej2a74=activeVariantCallback(async(...args)=>{if(vBtECYJM2){const res=await vBtECYJM2(...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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-jj7t4i\",className,classNames),\"data-framer-name\":\"socials\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"eke3N8HYl\",onTap:onTapqkos70,ref:refBinding,style:{...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oafb8i\",layoutDependency:layoutDependency,layoutId:\"jpYriUNwD\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mhx6x\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vnwj1awFK\",onTap:onTapej2a74}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-e4cia3\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Ce7HcCl1l\",onTap:onTapej2a74,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/alessyvvv?igsh=MXU4aDhmNWc3aHdqOA==\",motionChild:true,nodeId:\"Ut37EKovt\",scopeId:\"IdGZkW4nr\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-rny7b framer-yysd5p\",\"data-framer-name\":\"Instagram\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Ut37EKovt\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 19\"><path d=\"M -30.65 8.395 C -30.65 4.8 -30.65 3.002 -29.794 1.708 C -29.411 1.13 -28.916 0.635 -28.338 0.252 C -27.043 -0.605 -25.246 -0.605 -21.65 -0.605 C -18.055 -0.605 -16.258 -0.605 -14.963 0.252 C -14.385 0.635 -13.89 1.13 -13.507 1.708 C -12.65 3.002 -12.65 4.8 -12.65 8.395 C -12.65 11.99 -12.65 13.788 -13.507 15.083 C -13.89 15.661 -14.385 16.156 -14.963 16.538 C -16.258 17.395 -18.055 17.395 -21.65 17.395 C -25.246 17.395 -27.043 17.395 -28.338 16.538 C -28.916 16.155 -29.411 15.66 -29.794 15.082 C -30.65 13.788 -30.65 11.99 -30.65 8.395 Z M -16.991 8.395 C -16.966 10.076 -17.849 11.64 -19.301 12.488 C -20.753 13.335 -22.548 13.335 -24 12.488 C -25.452 11.64 -26.335 10.076 -26.31 8.395 C -26.273 5.848 -24.198 3.803 -21.651 3.803 C -19.103 3.803 -17.028 5.848 -16.991 8.395 Z M -21.651 11.478 C -19.948 11.478 -18.568 10.098 -18.568 8.395 C -18.568 6.692 -19.948 5.312 -21.651 5.312 C -23.354 5.312 -24.734 6.692 -24.734 8.395 C -24.734 10.098 -23.354 11.478 -21.651 11.478 Z M -16.807 4.597 C -16.202 4.597 -15.712 4.107 -15.712 3.502 C -15.712 2.897 -16.202 2.407 -16.807 2.407 C -17.412 2.407 -17.902 2.897 -17.902 3.502 C -17.902 4.107 -17.412 4.597 -16.807 4.597 Z\" fill=\"rgb(152,113,255)\"></path></svg>',svgContentId:9203424102,withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ms8zva\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"QLDR8Fjg3\",onTap:onTapej2a74,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/@Alessyvv\",motionChild:true,nodeId:\"Fx2Vz9jU0\",openInNewTab:true,scopeId:\"IdGZkW4nr\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-f4dptq framer-yysd5p\",\"data-framer-name\":\"YouTube\",fill:\"black\",intrinsicHeight:15,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"Fx2Vz9jU0\",svg:'<svg width=\"22\" height=\"15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m11.788 14.375-4.062-.076c-1.316-.026-2.634.026-3.924-.248-1.961-.41-2.1-2.417-2.245-4.101-.2-2.368-.123-4.779.255-7.127C2.025 1.505 2.865.719 4.164.633 8.55.324 12.964.36 17.34.506a9.31 9.31 0 0 1 1.383.168c2.25.403 2.304 2.679 2.45 4.594.145 1.935.084 3.88-.194 5.802-.223 1.592-.65 2.926-2.45 3.055-2.256.169-4.46.304-6.722.261 0-.01-.013-.01-.02-.01ZM9.4 10.346c1.7-.997 3.367-1.978 5.057-2.969C12.754 6.38 11.09 5.399 9.4 4.408v5.938Z\" fill=\"#9871FF\"/></svg>',withExternalLayout:true})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KP4su.framer-yysd5p, .framer-KP4su .framer-yysd5p { display: block; }\",\".framer-KP4su.framer-jj7t4i { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-KP4su .framer-1oafb8i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-KP4su .framer-1mhx6x { 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; min-height: 20px; min-width: 19px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-KP4su .framer-e4cia3, .framer-KP4su .framer-1ms8zva { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-KP4su .framer-rny7b { flex: none; height: 19px; position: relative; text-decoration: none; width: 20px; }\",\".framer-KP4su .framer-f4dptq { aspect-ratio: 1.4666666666666666 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); position: relative; text-decoration: none; width: 22px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KP4su.framer-jj7t4i, .framer-KP4su .framer-1oafb8i, .framer-KP4su .framer-1mhx6x, .framer-KP4su .framer-e4cia3, .framer-KP4su .framer-1ms8zva { gap: 0px; } .framer-KP4su.framer-jj7t4i > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-KP4su.framer-jj7t4i > :first-child, .framer-KP4su .framer-1oafb8i > :first-child, .framer-KP4su .framer-1mhx6x > :first-child, .framer-KP4su .framer-e4cia3 > :first-child, .framer-KP4su .framer-1ms8zva > :first-child { margin-left: 0px; } .framer-KP4su.framer-jj7t4i > :last-child, .framer-KP4su .framer-1oafb8i > :last-child, .framer-KP4su .framer-1mhx6x > :last-child, .framer-KP4su .framer-e4cia3 > :last-child, .framer-KP4su .framer-1ms8zva > :last-child { margin-right: 0px; } .framer-KP4su .framer-1oafb8i > * { margin: 0px; margin-left: calc(22px / 2); margin-right: calc(22px / 2); } .framer-KP4su .framer-1mhx6x > *, .framer-KP4su .framer-e4cia3 > *, .framer-KP4su .framer-1ms8zva > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 105\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"vBtECYJM2\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerIdGZkW4nr=withCSS(Component,css,\"framer-KP4su\");export default FramerIdGZkW4nr;FramerIdGZkW4nr.displayName=\"socials\";FramerIdGZkW4nr.defaultProps={height:20,width:105};addPropertyControls(FramerIdGZkW4nr,{vBtECYJM2:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerIdGZkW4nr,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIdGZkW4nr\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"20\",\"framerIntrinsicWidth\":\"105\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"vBtECYJM2\\\":\\\"click\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IdGZkW4nr.map", "// Generated by Framer (cc4e308)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Socials from\"https://framerusercontent.com/modules/dKdwUsRUdl20oPSfESZB/XBCBpp1LO0BJqNQ8oFUF/IdGZkW4nr.js\";import Logo from\"https://framerusercontent.com/modules/Oo0Fh3g5bxBEjgL5PJQu/JVzpACy0PKHddf4raU1W/rGU0cQKj3.js\";import LanguageSwitcher from\"https://framerusercontent.com/modules/gZYvkudiDaQHubK6Ch2F/mBuR2CUMiVMl3GqJ22CC/rHVB6_q13.js\";import Menu from\"https://framerusercontent.com/modules/rWwED5vUyzXhaHxzhO08/OHqVeMwdOZDTHCfn1cBf/u5WejuYsD.js\";const LogoFonts=getFonts(Logo);const MenuFonts=getFonts(Menu);const LanguageSwitcherFonts=getFonts(LanguageSwitcher);const SocialsFonts=getFonts(Socials);const serializationHash=\"framer-kFJWa\";const variantClassNames={GzmYvGiZj:\"framer-v-1a5lo84\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};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=({close,height,id,padding,width,...props})=>{return{...props,aJbVlBhA3:padding??props.aJbVlBhA3??\"16px 12px 16px 12px\",NFSYhaDUv:close??props.NFSYhaDUv};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,NFSYhaDUv,aJbVlBhA3,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"GzmYvGiZj\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const ZgGy8EzfC13xdpjx=activeVariantCallback(async(...args)=>{if(NFSYhaDUv){const res=await NFSYhaDUv(...args);if(res===false)return false;}});const onTap13xdpjx=activeVariantCallback(async(...args)=>{if(NFSYhaDUv){const res=await NFSYhaDUv(...args);if(res===false)return false;}});const RjpoQAkrx13xdpjx=activeVariantCallback(async(...args)=>{if(NFSYhaDUv){const res=await NFSYhaDUv(...args);if(res===false)return false;}});const KiaMmcVSW13xdpjx=activeVariantCallback(async(...args)=>{if(NFSYhaDUv){const res=await NFSYhaDUv(...args);if(res===false)return false;}});const vBtECYJM213xdpjx=activeVariantCallback(async(...args)=>{if(NFSYhaDUv){const res=await NFSYhaDUv(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1a5lo84\",className,classNames),\"data-framer-name\":\"menu\",layoutDependency:layoutDependency,layoutId:\"GzmYvGiZj\",ref:ref??ref1,style:{backgroundColor:\"rgb(30, 23, 51)\",...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-f90p6n\",\"data-framer-name\":\"bg\",layoutDependency:layoutDependency,layoutId:\"yUnRChB7M\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-11ihckb\",\"data-framer-name\":\"Mask\",fill:\"black\",intrinsicHeight:353,intrinsicWidth:375,layoutDependency:layoutDependency,layoutId:\"mQ0u_Uctk\",svg:'<svg width=\"375\" height=\"353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><mask id=\"a\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"375\" height=\"353\"><path d=\"M208.09 189.578c-23.014 14.428-48.676-14.174-31.853-35.5L291.872 7.498A18.62 18.62 0 0 1 310.078.76c35.315 6.933 61.772 36.42 64.853 72.282a18.622 18.622 0 0 1-8.663 17.374L208.09 189.578Z\" fill=\"#9871FF\"/><path d=\"M235.462 20.392c-18.818-6.76-39.084-10.141-60.799-10.141-25.035 0-48.193 4.382-69.473 13.145-20.967 8.45-39.273 20.5-54.92 36.15-15.648 15.336-27.852 33.333-36.615 53.99C4.893 134.192.512 156.727.512 181.14c0 24.1 4.38 46.635 13.143 67.605 8.763 20.657 21.124 38.81 37.084 54.459 15.96 15.649 34.423 27.856 55.39 36.619 21.28 8.764 44.438 13.145 69.473 13.145 24.41 0 47.098-4.381 68.065-13.145 21.28-8.763 39.744-20.813 55.391-36.15 15.647-15.649 27.851-33.802 36.614-54.459 8.762-20.97 13.143-43.505 13.143-67.604 0-12.249-1.103-24.026-3.309-35.329l-72.644 45.541c-1.179 16.343-5.121 31.092-11.827 44.247-8.136 15.649-19.715 27.855-34.736 36.619-14.709 8.764-31.92 13.145-51.636 13.145-14.708 0-28.164-2.504-40.369-7.511-12.204-5.008-22.688-12.05-31.451-21.127-8.45-9.389-15.02-20.5-19.715-33.333-4.694-12.832-7.041-27.073-7.041-42.722 0-20.97 4.068-39.123 12.205-54.459 8.136-15.649 19.558-27.7 34.267-36.15 15.021-8.763 32.389-13.145 52.104-13.145 5.208 0 10.239.314 15.094.942l45.705-57.936Z\" fill=\"#1E1733\"/></mask><g mask=\"url(#a)\"><path fill=\"#9871FF\" fill-opacity=\".2\" d=\"M-93.953-530.958h657.884v986.827H-93.953z\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cbin2n\",\"data-framer-name\":\"header\",layoutDependency:layoutDependency,layoutId:\"Tmbtwo_6m\",style:{\"--78gjxp\":numberToPixelString(aJbVlBhA3)},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-31urnu-container\",layoutDependency:layoutDependency,layoutId:\"tj9FzK9f2-container\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"tj9FzK9f2\",layoutId:\"tj9FzK9f2\",variant:\"bwtyBjsss\",width:\"100%\",ZgGy8EzfC:ZgGy8EzfC13xdpjx})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ngi7bw\",\"data-framer-name\":\"close hamburger\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"MPN2eKK49\",onTap:onTap13xdpjx,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15qi9dw\",\"data-framer-name\":\"X-close\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"XGrUBK0O_\",svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M18 6 6 18M6 6l12 12\" stroke=\"#fff\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fr78o4\",\"data-framer-name\":\"center\",layoutDependency:layoutDependency,layoutId:\"iOx_4KBIt\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fm0t3d-container\",layoutDependency:layoutDependency,layoutId:\"d6B6SwDrs-container\",children:/*#__PURE__*/_jsx(Menu,{height:\"100%\",Hs2K_4Aqo:24,id:\"d6B6SwDrs\",IMJPp1JN8:\"column\",layoutId:\"d6B6SwDrs\",nx5SiaIh4:\"center\",RjpoQAkrx:RjpoQAkrx13xdpjx,style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r0djlw-container\",layoutDependency:layoutDependency,layoutId:\"FjbXuinkI-container\",children:/*#__PURE__*/_jsx(LanguageSwitcher,{height:\"100%\",id:\"FjbXuinkI\",KiaMmcVSW:KiaMmcVSW13xdpjx,layoutId:\"FjbXuinkI\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1txgvet-container\",layoutDependency:layoutDependency,layoutId:\"cjB5lxw2F-container\",children:/*#__PURE__*/_jsx(Socials,{height:\"100%\",id:\"cjB5lxw2F\",layoutId:\"cjB5lxw2F\",vBtECYJM2:vBtECYJM213xdpjx,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kFJWa.framer-1l6ojsa, .framer-kFJWa .framer-1l6ojsa { display: block; }\",\".framer-kFJWa.framer-1a5lo84 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: 800px; justify-content: space-between; padding: 0px 0px 40px 0px; position: relative; width: 400px; }\",\".framer-kFJWa .framer-f90p6n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-kFJWa .framer-11ihckb { aspect-ratio: 1.0623229461756374 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 353px); position: relative; width: 100%; z-index: 0; }\",\".framer-kFJWa .framer-cbin2n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; padding: var(--78gjxp); position: relative; width: 100%; z-index: 1; }\",\".framer-kFJWa .framer-31urnu-container, .framer-kFJWa .framer-1r0djlw-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-kFJWa .framer-ngi7bw { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-kFJWa .framer-15qi9dw { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-kFJWa .framer-1fr78o4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-kFJWa .framer-1fm0t3d-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-kFJWa .framer-1txgvet-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kFJWa .framer-f90p6n, .framer-kFJWa .framer-ngi7bw, .framer-kFJWa .framer-1fr78o4 { gap: 0px; } .framer-kFJWa .framer-f90p6n > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-kFJWa .framer-f90p6n > :first-child, .framer-kFJWa .framer-1fr78o4 > :first-child { margin-top: 0px; } .framer-kFJWa .framer-f90p6n > :last-child, .framer-kFJWa .framer-1fr78o4 > :last-child { margin-bottom: 0px; } .framer-kFJWa .framer-ngi7bw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-kFJWa .framer-ngi7bw > :first-child { margin-left: 0px; } .framer-kFJWa .framer-ngi7bw > :last-child { margin-right: 0px; } .framer-kFJWa .framer-1fr78o4 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"NFSYhaDUv\":\"close\",\"aJbVlBhA3\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNlA2yKI2o=withCSS(Component,css,\"framer-kFJWa\");export default FramerNlA2yKI2o;FramerNlA2yKI2o.displayName=\"hamburger menu\";FramerNlA2yKI2o.defaultProps={height:800,width:400};addPropertyControls(FramerNlA2yKI2o,{NFSYhaDUv:{title:\"Close\",type:ControlType.EventHandler},aJbVlBhA3:{defaultValue:\"16px 12px 16px 12px\",title:\"Padding\",type:ControlType.Padding}});addFonts(FramerNlA2yKI2o,[{explicitInter:true,fonts:[]},...LogoFonts,...MenuFonts,...LanguageSwitcherFonts,...SocialsFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNlA2yKI2o\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"800\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"NFSYhaDUv\\\":\\\"close\\\",\\\"aJbVlBhA3\\\":\\\"padding\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4d22d44)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"z2uPTi51o\",\"bwtyBjsss\"];const serializationHash=\"framer-nuaFz\";const variantClassNames={bwtyBjsss:\"framer-v-zex3fp\",z2uPTi51o:\"framer-v-obxi68\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"z2uPTi51o\",\"Variant 2\":\"bwtyBjsss\"};const getProps=({click,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"z2uPTi51o\",ZgGy8EzfC:click!==null&&click!==void 0?click:props.ZgGy8EzfC};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ZgGy8EzfC,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"z2uPTi51o\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1n4eph1=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(ZgGy8EzfC){const res=await ZgGy8EzfC(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-obxi68\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"z2uPTi51o\",onTap:onTap1n4eph1,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({bwtyBjsss:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"yijZnBC1Z\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1s5vj6f framer-j8zic3\",\"data-framer-name\":\"Logo\",fill:\"black\",intrinsicHeight:21,intrinsicWidth:253,layoutDependency:layoutDependency,layoutId:\"yijZnBC1Z\",svg:'<svg width=\"253\" height=\"21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M218.184 12.94V9.844h3.977c.836 0 1.477-.213 1.922-.64.462-.427.693-1.006.693-1.735 0-.676-.222-1.237-.667-1.682-.445-.444-1.085-.667-1.921-.667h-4.004V1.864h4.484c1.246 0 2.34.24 3.283.72.943.463 1.681 1.113 2.215 1.949.534.836.801 1.797.801 2.882 0 1.104-.267 2.073-.801 2.91-.534.818-1.281 1.459-2.242 1.921-.961.463-2.091.694-3.389.694h-4.351Zm-3.203 7.767V1.864h4.191v18.843h-4.191Zm10.249 0-5.871-8.114 3.843-1.04 6.992 9.154h-4.964Zm-22.676 0V2.13h4.19v18.576h-4.19ZM196.655 5.52V1.864h15.987V5.52h-15.987ZM188.737 21c-1.548 0-2.882-.249-4.003-.747-1.103-.516-2.117-1.29-3.043-2.322l2.723-2.696c.605.694 1.272 1.237 2.001 1.628.748.374 1.611.56 2.589.56.89 0 1.575-.16 2.055-.48.499-.32.748-.765.748-1.334 0-.516-.16-.934-.481-1.255-.32-.32-.747-.595-1.281-.827a18.68 18.68 0 0 0-1.735-.667 27.023 27.023 0 0 1-1.868-.72 8.969 8.969 0 0 1-1.735-1.042 4.958 4.958 0 0 1-1.254-1.574c-.32-.64-.481-1.441-.481-2.402 0-1.157.276-2.153.828-2.99.569-.836 1.352-1.467 2.349-1.894.996-.445 2.144-.668 3.442-.668 1.317 0 2.518.232 3.604.694 1.103.463 2.01 1.095 2.722 1.895l-2.722 2.696c-.57-.587-1.148-1.023-1.735-1.308-.57-.285-1.219-.427-1.949-.427-.729 0-1.307.142-1.734.427-.427.267-.641.658-.641 1.174 0 .48.16.872.48 1.175.321.284.739.533 1.255.747a35.88 35.88 0 0 0 1.735.64c.64.214 1.272.463 1.895.748a7.18 7.18 0 0 1 1.708 1.094c.534.427.961.979 1.281 1.655.32.658.48 1.477.48 2.455 0 1.797-.64 3.212-1.921 4.244-1.281 1.014-3.052 1.521-5.312 1.521Zm-25.968-.293 7.473-18.843h3.789l7.393 18.843h-4.43l-5.658-15.64h1.521l-5.738 15.64h-4.35Zm4.243-3.416v-3.417h10.276v3.417h-10.276Zm-17.269 3.416V1.864h4.19v18.843h-4.19Zm3.23 0v-3.683h9.314v3.683h-9.314Zm-23.905 0 7.473-18.843h3.79l7.393 18.843h-4.43l-5.658-15.64h1.521l-5.738 15.64h-4.351Zm4.244-3.416v-3.417h10.275v3.417h-10.275Zm-13.587 3.416-7.259-18.843h4.484l5.524 15.24h-1.841l5.605-15.24h4.43l-7.34 18.843h-3.603Zm-31.082 0 7.473-18.843h3.79l7.392 18.843h-4.43L97.21 5.067h1.521l-5.738 15.64h-4.35Zm4.243-3.416v-3.417h10.276v3.417H92.886Zm-10.648 3.416V1.864h4.19v18.843h-4.19ZM72.337 21c-1.548 0-2.882-.249-4.003-.747-1.104-.516-2.118-1.29-3.043-2.322l2.722-2.696c.605.694 1.272 1.237 2.002 1.628.747.374 1.61.56 2.589.56.89 0 1.575-.16 2.055-.48.498-.32.747-.765.747-1.334 0-.516-.16-.934-.48-1.255-.32-.32-.747-.595-1.281-.827a18.73 18.73 0 0 0-1.735-.667 26.835 26.835 0 0 1-1.868-.72 8.97 8.97 0 0 1-1.735-1.042 4.963 4.963 0 0 1-1.255-1.574c-.32-.64-.48-1.441-.48-2.402 0-1.157.276-2.153.828-2.99.569-.836 1.352-1.467 2.348-1.894.996-.445 2.144-.668 3.443-.668 1.317 0 2.518.232 3.603.694 1.103.463 2.01 1.095 2.722 1.895l-2.722 2.696c-.57-.587-1.147-1.023-1.735-1.308-.569-.285-1.218-.427-1.948-.427s-1.308.142-1.735.427c-.427.267-.64.658-.64 1.174 0 .48.16.872.48 1.175.32.284.739.533 1.255.747a36.9 36.9 0 0 0 1.734.64c.64.214 1.273.463 1.895.748.623.284 1.192.65 1.708 1.094a4.6 4.6 0 0 1 1.281 1.655c.32.658.48 1.477.48 2.455 0 1.797-.64 3.212-1.92 4.244C76.366 20.493 74.596 21 72.336 21Zm-15.092 0c-1.548 0-2.882-.249-4.003-.747-1.103-.516-2.117-1.29-3.043-2.322l2.723-2.696c.605.694 1.272 1.237 2.001 1.628.747.374 1.61.56 2.59.56.889 0 1.574-.16 2.054-.48.498-.32.748-.765.748-1.334 0-.516-.16-.934-.48-1.255-.321-.32-.748-.595-1.282-.827a18.73 18.73 0 0 0-1.735-.667 26.835 26.835 0 0 1-1.868-.72 8.97 8.97 0 0 1-1.735-1.042 4.963 4.963 0 0 1-1.254-1.574c-.32-.64-.48-1.441-.48-2.402 0-1.157.275-2.153.827-2.99.57-.836 1.352-1.467 2.348-1.894.997-.445 2.144-.668 3.443-.668 1.317 0 2.518.232 3.603.694 1.104.463 2.01 1.095 2.723 1.895l-2.723 2.696c-.569-.587-1.147-1.023-1.734-1.308-.57-.285-1.22-.427-1.949-.427-.73 0-1.308.142-1.735.427-.427.267-.64.658-.64 1.174 0 .48.16.872.48 1.175.32.284.739.533 1.255.747a35.88 35.88 0 0 0 1.735.64c.64.214 1.272.463 1.894.748.623.284 1.193.65 1.709 1.094a4.6 4.6 0 0 1 1.28 1.655c.32.658.481 1.477.481 2.455 0 1.797-.64 3.212-1.922 4.244-1.28 1.014-3.051 1.521-5.31 1.521Zm-21.608-.293V1.864h4.19v18.843h-4.19Zm3.202 0v-3.63h10.33v3.63h-10.33Zm0-7.874V9.337h9.395v3.496H38.84Zm0-7.366V1.864h10.196v3.603H38.839Zm-18.163 15.24V1.864h4.19v18.843h-4.19Zm3.23 0v-3.683h9.314v3.683h-9.315ZM0 20.707 7.473 1.864h3.79l7.393 18.843h-4.43l-5.66-15.64h1.522L4.35 20.707H0Zm4.244-3.416v-3.417h10.275v3.417H4.244Z\" fill=\"#fff\"/><path d=\"M242.684 11.711c-1.309.82-2.768-.806-1.812-2.018l6.575-8.333a1.06 1.06 0 0 1 1.035-.383 4.59 4.59 0 0 1 3.688 4.11 1.06 1.06 0 0 1-.493.987l-8.993 5.637Z\" fill=\"#9871FF\"/><path d=\"m246.155 2.999-2.43 3.08 2.43-3.08Z\" fill=\"#fff\"/><path d=\"M244.24 2.093c-1.07-.384-2.222-.576-3.456-.576-1.424 0-2.741.249-3.95.747a9.258 9.258 0 0 0-3.123 2.055 9.37 9.37 0 0 0-2.082 3.07c-.498 1.174-.747 2.455-.747 3.843 0 1.37.249 2.65.747 3.843a9.465 9.465 0 0 0 2.109 3.096 9.91 9.91 0 0 0 3.149 2.082c1.21.498 2.527.747 3.95.747 1.388 0 2.678-.249 3.87-.747a9.74 9.74 0 0 0 3.149-2.055 9.673 9.673 0 0 0 2.082-3.096c.498-1.192.747-2.473.747-3.844 0-.696-.062-1.365-.188-2.008l-4.13 2.589c-.067.929-.291 1.768-.673 2.515a5.06 5.06 0 0 1-1.975 2.082c-.836.498-1.814.747-2.935.747-.837 0-1.602-.142-2.296-.427a5.188 5.188 0 0 1-1.788-1.2 5.761 5.761 0 0 1-1.121-1.895c-.267-.73-.4-1.54-.4-2.43 0-1.191.231-2.223.694-3.095a4.937 4.937 0 0 1 1.948-2.055c.854-.498 1.842-.748 2.963-.748.296 0 .582.018.857.054l2.599-3.294Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nuaFz.framer-j8zic3, .framer-nuaFz .framer-j8zic3 { display: block; }\",\".framer-nuaFz.framer-obxi68 { 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; width: min-content; }\",\".framer-nuaFz .framer-1s5vj6f { aspect-ratio: 12.047619047619047 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); position: relative; text-decoration: none; width: 253px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nuaFz.framer-obxi68 { gap: 0px; } .framer-nuaFz.framer-obxi68 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-nuaFz.framer-obxi68 > :first-child { margin-top: 0px; } .framer-nuaFz.framer-obxi68 > :last-child { margin-bottom: 0px; } }\",\".framer-nuaFz.framer-v-zex3fp .framer-1s5vj6f { aspect-ratio: 12.142857142857142 / 1; height: var(--framer-aspect-ratio-supported, 14px); width: 170px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 21\n * @framerIntrinsicWidth 253\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"bwtyBjsss\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ZgGy8EzfC\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrGU0cQKj3=withCSS(Component,css,\"framer-nuaFz\");export default FramerrGU0cQKj3;FramerrGU0cQKj3.displayName=\"logo\";FramerrGU0cQKj3.defaultProps={height:21,width:253};addPropertyControls(FramerrGU0cQKj3,{variant:{options:[\"z2uPTi51o\",\"bwtyBjsss\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},ZgGy8EzfC:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerrGU0cQKj3,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrGU0cQKj3\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"bwtyBjsss\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"ZgGy8EzfC\\\":\\\"click\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"253\",\"framerIntrinsicHeight\":\"21\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rGU0cQKj3.map", "export const v0=\"EN\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (128ce9c)\nimport*as localizedValues from\"./rHVB6_q13-0.js\";const valuesByLocaleId={K4ycrtqk6:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={pcY4SDGpA:{hover:true,pressed:true}};const cycleOrder=[\"pcY4SDGpA\",\"rYAyqGDJJ\"];const serializationHash=\"framer-dKrhk\";const variantClassNames={pcY4SDGpA:\"framer-v-rktba0\",rYAyqGDJJ:\"framer-v-1km9kth\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={active:\"rYAyqGDJJ\",default:\"pcY4SDGpA\"};const getProps=({click,height,id,title,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"pcY4SDGpA\",x7l12wsEf:(_ref1=title!==null&&title!==void 0?title:props.x7l12wsEf)!==null&&_ref1!==void 0?_ref1:\"EN\",Xf8zJE4o4:click!==null&&click!==void 0?click:props.Xf8zJE4o4};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Xf8zJE4o4,x7l12wsEf,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pcY4SDGpA\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapynhzrr=activeVariantCallback(async(...args)=>{if(Xf8zJE4o4){const res=await Xf8zJE4o4(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-rktba0\",className,classNames),\"data-framer-name\":\"default\",layoutDependency:layoutDependency,layoutId:\"pcY4SDGpA\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"pcY4SDGpA-hover\":{\"data-framer-name\":undefined},\"pcY4SDGpA-pressed\":{\"data-framer-name\":undefined},rYAyqGDJJ:{\"data-framer-name\":\"active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"EN\"})}),className:\"framer-yb1kzd\",\"data-highlight\":true,fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"GIZuCrd80\",onTap:onTapynhzrr,style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:.6},text:x7l12wsEf,transformTemplate:transformTemplate1,variants:{\"pcY4SDGpA-hover\":{opacity:1},\"pcY4SDGpA-pressed\":{opacity:1},rYAyqGDJJ:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dKrhk.framer-wgcetv, .framer-dKrhk .framer-wgcetv { display: block; }\",\".framer-dKrhk.framer-rktba0 { cursor: pointer; height: 28px; overflow: visible; position: relative; width: 24px; }\",\".framer-dKrhk .framer-yb1kzd { cursor: pointer; flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre; width: auto; }\",\".framer-dKrhk.framer-v-1km9kth.framer-rktba0 { cursor: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 28\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"rYAyqGDJJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"naSuOabX3\":{\"layout\":[\"fixed\",\"fixed\"]},\"SYT2gsQn4\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Xf8zJE4o4\":\"click\",\"x7l12wsEf\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framere0jobvtYP=withCSS(Component,css,\"framer-dKrhk\");export default Framere0jobvtYP;Framere0jobvtYP.displayName=\"language switcher item\";Framere0jobvtYP.defaultProps={height:28,width:24};addPropertyControls(Framere0jobvtYP,{variant:{options:[\"pcY4SDGpA\",\"rYAyqGDJJ\"],optionTitles:[\"default\",\"active\"],title:\"Variant\",type:ControlType.Enum},Xf8zJE4o4:{title:\"Click\",type:ControlType.EventHandler},x7l12wsEf:{defaultValue:\"EN\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(Framere0jobvtYP,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framere0jobvtYP\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"28\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rYAyqGDJJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"naSuOabX3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SYT2gsQn4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"24\",\"framerVariables\":\"{\\\"Xf8zJE4o4\\\":\\\"click\\\",\\\"x7l12wsEf\\\":\\\"title\\\"}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./e0jobvtYP.map", "// Generated by Framer (128ce9c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import getLocalizedValue from\"https://framerusercontent.com/modules/3UrwGZkDYvnvbgBtJO3h/OvOTMG0u1yyA6ODb6SWg/rHVB6_q13.js\";import LanguageSwitcherItem from\"https://framerusercontent.com/modules/oBP8T8uhR88iv22pJMna/lwmz7ZCkHGp6zUHPkcsK/e0jobvtYP.js\";const LanguageSwitcherItemFonts=getFonts(LanguageSwitcherItem);const serializationHash=\"framer-M4qma\";const variantClassNames={EKYweaMbT:\"framer-v-uecurp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"default\":return\"rYAyqGDJJ\";default:return\"pcY4SDGpA\";}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({click,height,id,width,...props})=>{return{...props,KiaMmcVSW:click??props.KiaMmcVSW};};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,KiaMmcVSW,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"EKYweaMbT\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapw3wys4=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(KiaMmcVSW){const res=await KiaMmcVSW(...args);if(res===false)return false;}});const Xf8zJE4o417b0nju=activeVariantCallback(async(...args)=>{setLocale(\"default\");});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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-uecurp\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"EKYweaMbT\",onTap:onTapw3wys4,ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,width:\"24px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||32)-0-28)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-a4l41r-container\",layoutDependency:layoutDependency,layoutId:\"LqwsuvLYp-container\",nodeId:\"LqwsuvLYp\",rendersWithMotion:true,scopeId:\"rHVB6_q13\",children:/*#__PURE__*/_jsx(LanguageSwitcherItem,{height:\"100%\",id:\"LqwsuvLYp\",layoutId:\"LqwsuvLYp\",style:{height:\"100%\",width:\"100%\"},variant:convertFromEnum(activeLocale?.id,activeLocale),width:\"100%\",x7l12wsEf:getLocalizedValue(\"v0\",activeLocale)??\"EN\",Xf8zJE4o4:Xf8zJE4o417b0nju})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-f54goo\",\"data-framer-name\":\"line\",layoutDependency:layoutDependency,layoutId:\"AaQr4hLRP\",style:{backgroundColor:\"rgb(255, 255, 255)\",opacity:.2}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-M4qma.framer-1wt5diy, .framer-M4qma .framer-1wt5diy { display: block; }\",\".framer-M4qma.framer-uecurp { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-M4qma .framer-a4l41r-container { flex: none; height: 28px; position: relative; width: 24px; }\",\".framer-M4qma .framer-f54goo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 26px; justify-content: center; padding: 16px 0px 16px 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-M4qma.framer-uecurp, .framer-M4qma .framer-f54goo { gap: 0px; } .framer-M4qma.framer-uecurp > *, .framer-M4qma .framer-f54goo > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-M4qma.framer-uecurp > :first-child, .framer-M4qma .framer-f54goo > :first-child { margin-left: 0px; } .framer-M4qma.framer-uecurp > :last-child, .framer-M4qma .framer-f54goo > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 33\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"KiaMmcVSW\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerrHVB6_q13=withCSS(Component,css,\"framer-M4qma\");export default FramerrHVB6_q13;FramerrHVB6_q13.displayName=\"language switcher\";FramerrHVB6_q13.defaultProps={height:32,width:33};addPropertyControls(FramerrHVB6_q13,{KiaMmcVSW:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerrHVB6_q13,[{explicitInter:true,fonts:[]},...LanguageSwitcherItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrHVB6_q13\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"32\",\"framerIntrinsicWidth\":\"33\",\"framerVariables\":\"{\\\"KiaMmcVSW\\\":\\\"click\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "export const v0=\"Ricette\";export const v1=\"Coaching\";export const v2=\"SU DI ME\";\nexport const __FramerMetadata__ = {\"exports\":{\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ab692b1)\nimport*as localizedValues from\"./u5WejuYsD-0.js\";const valuesByLocaleId={K4ycrtqk6:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b2780b5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-hp7tR .framer-styles-preset-1uxk31g:not(.rich-text-wrapper), .framer-hp7tR .framer-styles-preset-1uxk31g.rich-text-wrapper a { --framer-link-current-text-color: #ffffff; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: #ffffff; --framer-link-hover-text-decoration: none; --framer-link-text-color: rgba(255, 255, 255, 0.6); --framer-link-text-decoration: none; }\"];export const className=\"framer-hp7tR\";\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 (b2780b5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/PG5qB48gBaURQACO4wJ7/XDZTdHidiMetWRNEA3jj/Do0AEx9pt.js\";const enabledGestures={bPGqwkXKR:{hover:true,pressed:true}};const serializationHash=\"framer-g3rvb\";const variantClassNames={bPGqwkXKR:\"framer-v-18k8atn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({click,fontSize,height,id,link,title,width,...props})=>{var _ref,_ref1;return{...props,PfSxMipWh:(_ref=fontSize!==null&&fontSize!==void 0?fontSize:props.PfSxMipWh)!==null&&_ref!==void 0?_ref:16,qCSUzm9Yq:click!==null&&click!==void 0?click:props.qCSUzm9Yq,rSK_dJCwH:(_ref1=title!==null&&title!==void 0?title:props.rSK_dJCwH)!==null&&_ref1!==void 0?_ref1:\"About me\",yvvAq26Od:link!==null&&link!==void 0?link:props.yvvAq26Od};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,qCSUzm9Yq,rSK_dJCwH,yvvAq26Od,PfSxMipWh,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"bPGqwkXKR\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapbrf2og=activeVariantCallback(async(...args)=>{if(qCSUzm9Yq){const res=await qCSUzm9Yq(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-18k8atn\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"bPGqwkXKR\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},variants:{\"bPGqwkXKR-hover\":{\"--border-color\":\"rgb(189, 255, 106)\"}},...addPropertyOverrides({\"bPGqwkXKR-hover\":{\"data-framer-name\":undefined},\"bPGqwkXKR-pressed\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tw0r1b\",\"data-framer-name\":\"wrap\",layoutDependency:layoutDependency,layoutId:\"VtbHis7tq\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-PfSxMipWh-w1sFOgJoQ) * 1px)\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"155%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:yvvAq26Od,nodeId:\"fTBx4_qFd\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uxk31g\",\"data-styles-preset\":\"Do0AEx9pt\",children:\"About me\"})})})}),className:\"framer-zqvccn\",\"data-highlight\":true,fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"fTBx4_qFd\",onTap:onTapbrf2og,style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--variable-reference-PfSxMipWh-w1sFOgJoQ\":PfSxMipWh},text:rSK_dJCwH,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-g3rvb.framer-1t981gh, .framer-g3rvb .framer-1t981gh { display: block; }\",\".framer-g3rvb.framer-18k8atn { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-g3rvb .framer-1tw0r1b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 3px 0px; position: relative; width: min-content; }\",\".framer-g3rvb .framer-zqvccn { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-g3rvb.framer-18k8atn, .framer-g3rvb .framer-1tw0r1b { gap: 0px; } .framer-g3rvb.framer-18k8atn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-g3rvb.framer-18k8atn > :first-child { margin-left: 0px; } .framer-g3rvb.framer-18k8atn > :last-child { margin-right: 0px; } .framer-g3rvb .framer-1tw0r1b > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-g3rvb .framer-1tw0r1b > :first-child { margin-top: 0px; } .framer-g3rvb .framer-1tw0r1b > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-g3rvb[data-border=\"true\"]::after, .framer-g3rvb [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 28\n * @framerIntrinsicWidth 85\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"X9uWIQdAv\":{\"layout\":[\"auto\",\"auto\"]},\"d7vRUtWBb\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"qCSUzm9Yq\":\"click\",\"rSK_dJCwH\":\"title\",\"yvvAq26Od\":\"link\",\"PfSxMipWh\":\"fontSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerw1sFOgJoQ=withCSS(Component,css,\"framer-g3rvb\");export default Framerw1sFOgJoQ;Framerw1sFOgJoQ.displayName=\"menu item\";Framerw1sFOgJoQ.defaultProps={height:28,width:85};addPropertyControls(Framerw1sFOgJoQ,{qCSUzm9Yq:{title:\"Click\",type:ControlType.EventHandler},rSK_dJCwH:{defaultValue:\"About me\",displayTextArea:false,title:\"Title\",type:ControlType.String},yvvAq26Od:{title:\"Link\",type:ControlType.Link},PfSxMipWh:{defaultValue:16,title:\"Font Size\",type:ControlType.Number}});addFonts(Framerw1sFOgJoQ,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerw1sFOgJoQ\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"85\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"X9uWIQdAv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"d7vRUtWBb\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"28\",\"framerVariables\":\"{\\\"qCSUzm9Yq\\\":\\\"click\\\",\\\"rSK_dJCwH\\\":\\\"title\\\",\\\"yvvAq26Od\\\":\\\"link\\\",\\\"PfSxMipWh\\\":\\\"fontSize\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ab692b1)\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 getLocalizedValue from\"https://framerusercontent.com/modules/2Qf14dMFe0aBlT1olpiJ/zqHR0CBZWrqAEbYRVidj/u5WejuYsD.js\";import MenuItem from\"https://framerusercontent.com/modules/cPnBTQsy7XySp4f0KR72/Zmjm96ZX6XrJPHLjTNXP/w1sFOgJoQ.js\";const MenuItemFonts=getFonts(MenuItem);const serializationHash=\"framer-1absw\";const variantClassNames={AyWFdRTUi:\"framer-v-g077gc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Horizontal:\"row\",Vertical:\"column\"};const humanReadableEnumMap1={Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const getProps=({align,direction,gap,height,id,onClick,width,...props})=>{return{...props,Hs2K_4Aqo:gap??props.Hs2K_4Aqo??24,IMJPp1JN8:humanReadableEnumMap[direction]??direction??props.IMJPp1JN8??\"row\",nx5SiaIh4:humanReadableEnumMap1[align]??align??props.nx5SiaIh4??\"center\",RjpoQAkrx:onClick??props.RjpoQAkrx};};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,IMJPp1JN8,Hs2K_4Aqo,nx5SiaIh4,RjpoQAkrx,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"AyWFdRTUi\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const qCSUzm9Yq2kgvzi=activeVariantCallback(async(...args)=>{if(RjpoQAkrx){const res=await RjpoQAkrx(...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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-g077gc\",className,classNames),\"data-framer-name\":\"horizontal\",layoutDependency:layoutDependency,layoutId:\"AyWFdRTUi\",ref:refBinding,style:{\"--150eqsa\":IMJPp1JN8===\"column\"?0:\"calc(calc(max(0, var(--ecos5j)) * 1px) / 2)\",\"--17yv8py\":IMJPp1JN8===\"row\"?0:\"calc(calc(max(0, var(--ecos5j)) * 1px) / 2)\",\"--1dceb6g\":IMJPp1JN8,\"--ax9bho\":nx5SiaIh4,\"--ecos5j\":Hs2K_4Aqo,borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QzLOacRbs\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16bo6iv-container\",layoutDependency:layoutDependency,layoutId:\"RJE5n2Xz9-container\",nodeId:\"RJE5n2Xz9\",rendersWithMotion:true,scopeId:\"u5WejuYsD\",children:/*#__PURE__*/_jsx(MenuItem,{height:\"100%\",id:\"RJE5n2Xz9\",layoutId:\"RJE5n2Xz9\",PfSxMipWh:16,qCSUzm9Yq:qCSUzm9Yq2kgvzi,rSK_dJCwH:getLocalizedValue(\"v0\",activeLocale)??\"Recipes\",width:\"100%\",yvvAq26Od:resolvedLinks[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uXH10ukcn\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-x9zesw-container\",layoutDependency:layoutDependency,layoutId:\"YGcWnbbB3-container\",nodeId:\"YGcWnbbB3\",rendersWithMotion:true,scopeId:\"u5WejuYsD\",children:/*#__PURE__*/_jsx(MenuItem,{height:\"100%\",id:\"YGcWnbbB3\",layoutId:\"YGcWnbbB3\",PfSxMipWh:16,qCSUzm9Yq:qCSUzm9Yq2kgvzi,rSK_dJCwH:getLocalizedValue(\"v1\",activeLocale)??\"coaching\",width:\"100%\",yvvAq26Od:resolvedLinks1[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":NYCi4FS09\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-trdxl2-container\",layoutDependency:layoutDependency,layoutId:\"kgEfX7Ihw-container\",nodeId:\"kgEfX7Ihw\",rendersWithMotion:true,scopeId:\"u5WejuYsD\",children:/*#__PURE__*/_jsx(MenuItem,{height:\"100%\",id:\"kgEfX7Ihw\",layoutId:\"kgEfX7Ihw\",PfSxMipWh:16,qCSUzm9Yq:qCSUzm9Yq2kgvzi,rSK_dJCwH:getLocalizedValue(\"v2\",activeLocale)??\"About me\",width:\"100%\",yvvAq26Od:resolvedLinks2[0]})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1absw.framer-1hvh1jt, .framer-1absw .framer-1hvh1jt { display: block; }\",\".framer-1absw.framer-g077gc { align-content: var(--ax9bho); align-items: var(--ax9bho); display: flex; flex-direction: var(--1dceb6g); flex-wrap: nowrap; gap: calc(max(0, var(--ecos5j)) * 1px); height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-1absw .framer-16bo6iv-container, .framer-1absw .framer-x9zesw-container, .framer-1absw .framer-trdxl2-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1absw.framer-g077gc { gap: 0px; } .framer-1absw.framer-g077gc > * { margin-bottom: var(--17yv8py); margin-left: var(--150eqsa); margin-right: var(--150eqsa); margin-top: var(--17yv8py); } .framer-1absw.framer-g077gc > :first-child { margin-left: 0px; margin-top: 0px; } .framer-1absw.framer-g077gc > :last-child { margin-bottom: 0px; margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 28\n * @framerIntrinsicWidth 285.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"IMJPp1JN8\":\"direction\",\"Hs2K_4Aqo\":\"gap\",\"nx5SiaIh4\":\"align\",\"RjpoQAkrx\":\"onClick\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameru5WejuYsD=withCSS(Component,css,\"framer-1absw\");export default Frameru5WejuYsD;Frameru5WejuYsD.displayName=\"menu\";Frameru5WejuYsD.defaultProps={height:28,width:285.5};addPropertyControls(Frameru5WejuYsD,{IMJPp1JN8:{defaultValue:\"row\",displaySegmentedControl:true,optionIcons:[\"direction-horizontal\",\"direction-vertical\"],options:[\"row\",\"column\"],optionTitles:[\"Horizontal\",\"Vertical\"],title:\"Direction\",type:ControlType.Enum},Hs2K_4Aqo:{defaultValue:24,min:0,title:\"Gap\",type:ControlType.Number},nx5SiaIh4:{defaultValue:\"center\",options:[\"flex-start\",\"center\",\"flex-end\"],optionTitles:[\"Start\",\"Center\",\"End\"],title:\"Align\",type:ControlType.Enum},RjpoQAkrx:{title:\"On Click\",type:ControlType.EventHandler}});addFonts(Frameru5WejuYsD,[{explicitInter:true,fonts:[]},...MenuItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameru5WejuYsD\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"IMJPp1JN8\\\":\\\"direction\\\",\\\"Hs2K_4Aqo\\\":\\\"gap\\\",\\\"nx5SiaIh4\\\":\\\"align\\\",\\\"RjpoQAkrx\\\":\\\"onClick\\\"}\",\"framerIntrinsicHeight\":\"28\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"285.5\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (cc4e308)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{BlockFixed}from\"https://framerusercontent.com/modules/fnqnvv4vlRZdBnKB0w9J/jtLA0uyrFNsiunKrAcPT/Examples.js\";import Socials from\"https://framerusercontent.com/modules/dKdwUsRUdl20oPSfESZB/XBCBpp1LO0BJqNQ8oFUF/IdGZkW4nr.js\";import HamburgerMenu,*as HamburgerMenuInfo from\"https://framerusercontent.com/modules/bPGsGnJvsPSBGmwYbbEe/ihbhEluOaj6s0wrawWRl/NlA2yKI2o.js\";import Logo from\"https://framerusercontent.com/modules/Oo0Fh3g5bxBEjgL5PJQu/JVzpACy0PKHddf4raU1W/rGU0cQKj3.js\";import LanguageSwitcher from\"https://framerusercontent.com/modules/gZYvkudiDaQHubK6Ch2F/mBuR2CUMiVMl3GqJ22CC/rHVB6_q13.js\";import Menu from\"https://framerusercontent.com/modules/rWwED5vUyzXhaHxzhO08/OHqVeMwdOZDTHCfn1cBf/u5WejuYsD.js\";const LogoFonts=getFonts(Logo);const MenuFonts=getFonts(Menu);const SocialsFonts=getFonts(Socials);const LanguageSwitcherFonts=getFonts(LanguageSwitcher);const HamburgerMenuFonts=getFonts(HamburgerMenu);const HamburgerMenuBlockFixedWithMappedReactProps1bik870=withMappedReactProps(BlockFixed(HamburgerMenu),HamburgerMenuInfo);const cycleOrder=[\"dTDWRQLES\",\"ZFfddk80y\",\"tM6tNqaop\",\"ZRn7sLgmA\",\"rbpRBbg4U\"];const serializationHash=\"framer-squTQ\";const variantClassNames={dTDWRQLES:\"framer-v-9hqbil\",rbpRBbg4U:\"framer-v-1vni4ef\",tM6tNqaop:\"framer-v-1583ad9\",ZFfddk80y:\"framer-v-5geft1\",ZRn7sLgmA:\"framer-v-11wf87x\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,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={\"phone menu\":\"rbpRBbg4U\",\"tablet menu\":\"ZRn7sLgmA\",desktop:\"dTDWRQLES\",phone:\"ZFfddk80y\",tablet:\"tM6tNqaop\"};const getProps=({height,id,openMobileMenu,width,...props})=>{return{...props,F1GUypWNv:openMobileMenu??props.F1GUypWNv,variant:humanReadableVariantMap[props.variant]??props.variant??\"dTDWRQLES\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,F1GUypWNv,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dTDWRQLES\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1oeipi8=activeVariantCallback(async(...args)=>{setVariant(\"rbpRBbg4U\");});const onTap5sg6ou=activeVariantCallback(async(...args)=>{setVariant(\"ZRn7sLgmA\");});const onTap1sz4q6e=activeVariantCallback(async(...args)=>{if(F1GUypWNv){const res=await F1GUypWNv(...args);if(res===false)return false;}});const KiaMmcVSW1r2szww=activeVariantCallback(async(...args)=>{setVariant(\"dTDWRQLES\");});const NFSYhaDUv1rtekov=activeVariantCallback(async(...args)=>{setVariant(\"ZFfddk80y\");});const NFSYhaDUvvho6qg=activeVariantCallback(async(...args)=>{setVariant(\"tM6tNqaop\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"ZFfddk80y\",\"tM6tNqaop\",\"ZRn7sLgmA\",\"rbpRBbg4U\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"ZFfddk80y\",\"tM6tNqaop\",\"ZRn7sLgmA\",\"rbpRBbg4U\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"ZRn7sLgmA\",\"rbpRBbg4U\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-9hqbil\",className,classNames),\"data-framer-name\":\"desktop\",layoutDependency:layoutDependency,layoutId:\"dTDWRQLES\",ref:ref??ref1,style:{...style},...addPropertyOverrides({rbpRBbg4U:{\"data-framer-name\":\"phone menu\"},tM6tNqaop:{\"data-framer-name\":\"tablet\"},ZFfddk80y:{\"data-framer-name\":\"phone\"},ZRn7sLgmA:{\"data-framer-name\":\"tablet menu\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:(componentViewport?.y||0)+(16+((componentViewport?.height||64)-32-21)/2),...addPropertyOverrides({rbpRBbg4U:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-21)/2)},tM6tNqaop:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||56)-32-21)/2)},ZFfddk80y:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-21)/2)},ZRn7sLgmA:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||24)-0-21)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j9hzgx-container\",layoutDependency:layoutDependency,layoutId:\"VXN6tEZW0-container\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"VXN6tEZW0\",layoutId:\"VXN6tEZW0\",variant:\"z2uPTi51o\",width:\"100%\",...addPropertyOverrides({rbpRBbg4U:{variant:\"bwtyBjsss\"},tM6tNqaop:{variant:\"bwtyBjsss\"},ZFfddk80y:{variant:\"bwtyBjsss\"},ZRn7sLgmA:{variant:\"bwtyBjsss\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-3z9myu\",\"data-framer-name\":\"hamburger menu icon\",layoutDependency:layoutDependency,layoutId:\"OGxXIndH6\",...addPropertyOverrides({rbpRBbg4U:{\"data-highlight\":true,onTap:onTap1sz4q6e},tM6tNqaop:{\"data-highlight\":true,onTap:onTap5sg6ou},ZFfddk80y:{\"data-highlight\":true,onTap:onTap1oeipi8},ZRn7sLgmA:{\"data-highlight\":true,onTap:onTap1sz4q6e}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-qq1u3d\",\"data-framer-name\":\"Menu-03\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"F0HX1NEbN\",svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M3 12h18M3 6h18M3 18h12\" stroke=\"#fff\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,width:\"620px\",y:(componentViewport?.y||0)+(16+((componentViewport?.height||64)-32-28)/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qnuwu9-container\",layoutDependency:layoutDependency,layoutId:\"bBu4jw9Ri-container\",children:/*#__PURE__*/_jsx(Menu,{height:\"100%\",Hs2K_4Aqo:24,id:\"bBu4jw9Ri\",IMJPp1JN8:\"row\",layoutId:\"bBu4jw9Ri\",nx5SiaIh4:\"center\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c8enou\",\"data-framer-name\":\"right\",layoutDependency:layoutDependency,layoutId:\"g_oPzepT_\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+(16+((componentViewport?.height||64)-32-32)/2)+6,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-107nn1j-container\",layoutDependency:layoutDependency,layoutId:\"nMdq9qwGA-container\",children:/*#__PURE__*/_jsx(Socials,{height:\"100%\",id:\"nMdq9qwGA\",layoutId:\"nMdq9qwGA\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(16+((componentViewport?.height||64)-32-32)/2)+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2q9w6m-container\",layoutDependency:layoutDependency,layoutId:\"jctsXDVg2-container\",children:/*#__PURE__*/_jsx(LanguageSwitcher,{height:\"100%\",id:\"jctsXDVg2\",KiaMmcVSW:KiaMmcVSW1r2szww,layoutId:\"jctsXDVg2\",width:\"100%\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o4mmha\",\"data-framer-name\":\"phone menu\",layoutDependency:layoutDependency,layoutId:\"cYQv1djFL\",children:isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({rbpRBbg4U:{height:800,width:\"400px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-1)/2)+-399.5},ZRn7sLgmA:{height:800,width:\"400px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||24)-0-1)/2)+-399.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16qtgq2-container\",layoutDependency:layoutDependency,layoutId:\"P6s5ipkmk-container\",children:/*#__PURE__*/_jsx(HamburgerMenuBlockFixedWithMappedReactProps1bik870,{aJbVlBhA3:\"16px 12px 16px 12px\",height:\"100%\",id:\"P6s5ipkmk\",layoutId:\"P6s5ipkmk\",NFSYhaDUv:NFSYhaDUv1rtekov,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({ZRn7sLgmA:{aJbVlBhA3:\"16px 32px 16px 32px\",NFSYhaDUv:NFSYhaDUvvho6qg}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-squTQ.framer-616wqb, .framer-squTQ .framer-616wqb { display: block; }\",\".framer-squTQ.framer-9hqbil { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; padding: 16px 24px 16px 24px; position: relative; width: 1200px; }\",\".framer-squTQ .framer-1j9hzgx-container, .framer-squTQ .framer-107nn1j-container, .framer-squTQ .framer-2q9w6m-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-squTQ .framer-3z9myu { 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: 25px; min-width: 230px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-squTQ .framer-qq1u3d { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-squTQ .framer-qnuwu9-container { flex: none; height: 28px; position: relative; width: 620px; }\",\".framer-squTQ .framer-c8enou { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-squTQ .framer-1o4mmha { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-squTQ .framer-16qtgq2-container { flex: none; height: 800px; position: relative; width: 400px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-squTQ .framer-3z9myu, .framer-squTQ .framer-c8enou, .framer-squTQ .framer-1o4mmha { gap: 0px; } .framer-squTQ .framer-3z9myu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-squTQ .framer-3z9myu > :first-child { margin-top: 0px; } .framer-squTQ .framer-3z9myu > :last-child { margin-bottom: 0px; } .framer-squTQ .framer-c8enou > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-squTQ .framer-c8enou > :first-child, .framer-squTQ .framer-1o4mmha > :first-child { margin-left: 0px; } .framer-squTQ .framer-c8enou > :last-child, .framer-squTQ .framer-1o4mmha > :last-child { margin-right: 0px; } .framer-squTQ .framer-1o4mmha > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-squTQ.framer-v-5geft1.framer-9hqbil { padding: 16px 12px 16px 12px; width: 400px; }\",\".framer-squTQ.framer-v-5geft1 .framer-1j9hzgx-container, .framer-squTQ.framer-v-1583ad9 .framer-1j9hzgx-container, .framer-squTQ.framer-v-11wf87x .framer-1j9hzgx-container, .framer-squTQ.framer-v-1vni4ef .framer-1j9hzgx-container { order: 0; }\",\".framer-squTQ.framer-v-5geft1 .framer-3z9myu, .framer-squTQ.framer-v-1583ad9 .framer-3z9myu, .framer-squTQ.framer-v-11wf87x .framer-3z9myu, .framer-squTQ.framer-v-1vni4ef .framer-3z9myu { cursor: pointer; flex-direction: row; min-height: unset; min-width: unset; order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-squTQ.framer-v-5geft1 .framer-3z9myu { gap: 0px; } .framer-squTQ.framer-v-5geft1 .framer-3z9myu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-squTQ.framer-v-5geft1 .framer-3z9myu > :first-child { margin-left: 0px; } .framer-squTQ.framer-v-5geft1 .framer-3z9myu > :last-child { margin-right: 0px; } }\",\".framer-squTQ.framer-v-1583ad9.framer-9hqbil { padding: 16px 32px 16px 32px; width: 400px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-squTQ.framer-v-1583ad9 .framer-3z9myu { gap: 0px; } .framer-squTQ.framer-v-1583ad9 .framer-3z9myu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-squTQ.framer-v-1583ad9 .framer-3z9myu > :first-child { margin-left: 0px; } .framer-squTQ.framer-v-1583ad9 .framer-3z9myu > :last-child { margin-right: 0px; } }\",\".framer-squTQ.framer-v-11wf87x.framer-9hqbil, .framer-squTQ.framer-v-1vni4ef.framer-9hqbil { padding: 0px; width: 400px; }\",\".framer-squTQ.framer-v-11wf87x .framer-1o4mmha, .framer-squTQ.framer-v-1vni4ef .framer-1o4mmha { order: 4; }\",\".framer-squTQ.framer-v-11wf87x .framer-16qtgq2-container, .framer-squTQ.framer-v-1vni4ef .framer-16qtgq2-container { z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-squTQ.framer-v-11wf87x .framer-3z9myu { gap: 0px; } .framer-squTQ.framer-v-11wf87x .framer-3z9myu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-squTQ.framer-v-11wf87x .framer-3z9myu > :first-child { margin-left: 0px; } .framer-squTQ.framer-v-11wf87x .framer-3z9myu > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-squTQ.framer-v-1vni4ef .framer-3z9myu { gap: 0px; } .framer-squTQ.framer-v-1vni4ef .framer-3z9myu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-squTQ.framer-v-1vni4ef .framer-3z9myu > :first-child { margin-left: 0px; } .framer-squTQ.framer-v-1vni4ef .framer-3z9myu > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZFfddk80y\":{\"layout\":[\"fixed\",\"auto\"]},\"tM6tNqaop\":{\"layout\":[\"fixed\",\"auto\"]},\"ZRn7sLgmA\":{\"layout\":[\"fixed\",\"auto\"]},\"rbpRBbg4U\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"F1GUypWNv\":\"openMobileMenu\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerltbHwn8Nt=withCSS(Component,css,\"framer-squTQ\");export default FramerltbHwn8Nt;FramerltbHwn8Nt.displayName=\"header\";FramerltbHwn8Nt.defaultProps={height:64,width:1200};addPropertyControls(FramerltbHwn8Nt,{variant:{options:[\"dTDWRQLES\",\"ZFfddk80y\",\"tM6tNqaop\",\"ZRn7sLgmA\",\"rbpRBbg4U\"],optionTitles:[\"desktop\",\"phone\",\"tablet\",\"tablet menu\",\"phone menu\"],title:\"Variant\",type:ControlType.Enum},F1GUypWNv:{title:\"Open Mobile Menu\",type:ControlType.EventHandler}});addFonts(FramerltbHwn8Nt,[{explicitInter:true,fonts:[]},...LogoFonts,...MenuFonts,...SocialsFonts,...LanguageSwitcherFonts,...HamburgerMenuFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerltbHwn8Nt\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"64\",\"framerVariables\":\"{\\\"F1GUypWNv\\\":\\\"openMobileMenu\\\"}\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZFfddk80y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tM6tNqaop\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZRn7sLgmA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rbpRBbg4U\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Copyright \\xa9 2025 Tutti i diritti riservati\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (47ebf4a)\nimport*as localizedValues from\"./zEKKIkLA1-0.js\";const valuesByLocaleId={K4ycrtqk6:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4d22d44)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-FN4s4 .framer-styles-preset-1g7dyib:not(.rich-text-wrapper), .framer-FN4s4 .framer-styles-preset-1g7dyib.rich-text-wrapper a { --framer-link-current-text-decoration: underline; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #ffffff; --framer-link-text-decoration: none; }\"];export const className=\"framer-FN4s4\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{Link}from\"framer\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{vs8f9LDBO:\"terms-and-conditions\"},unresolvedPathSlugs:{vs8f9LDBO:{collectionId:\"SkIdYSJKY\",collectionItemId:\"fHEpSG1MF\"}},webPageId:\"A0tai5wyF\"},motionChild:true,nodeId:\"MIPgdy4wO\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1g7dyib\",\"data-styles-preset\":\"FBtnvTcfB\",children:\"Termini e Condizioni\"})})})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"|\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{vs8f9LDBO:\"privacy-policy\"},unresolvedPathSlugs:{vs8f9LDBO:{collectionId:\"SkIdYSJKY\",collectionItemId:\"W0cAB5MEM\"}},webPageId:\"A0tai5wyF\"},motionChild:true,nodeId:\"csuay7kJp\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1g7dyib\",\"data-styles-preset\":\"FBtnvTcfB\",children:\"Informativa sulla privacy\"})})})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-decoration\":\"underline\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:alessia@gmail.com\",motionChild:true,nodeId:\"boKdP4UeQ\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1g7dyib\",\"data-styles-preset\":\"FBtnvTcfB\",children:\"valastroalessia54@gmail.com\"})})})});\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2ca17d4)\nimport*as localizedValues from\"./npKT5EKvu-0.js\";const valuesByLocaleId={K4ycrtqk6:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2ca17d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/cnp66TcHs5LdZ8JOGNIc/dmTKrDOZqLscVVjOnl8Y/FBtnvTcfB.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/F242KqOPfE9bEqajRPF3/gwxSPQmFEkY2JPm7uGdU/npKT5EKvu.js\";const cycleOrder=[\"KWziALQtl\",\"LTGeZ00LT\"];const serializationHash=\"framer-OBLsd\";const variantClassNames={KWziALQtl:\"framer-v-c9lwz3\",LTGeZ00LT:\"framer-v-k06vyy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"menu mobile\":\"LTGeZ00LT\",menu:\"KWziALQtl\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"KWziALQtl\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KWziALQtl\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"LTGeZ00LT\")return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-c9lwz3\",className,classNames),\"data-framer-name\":\"menu\",layoutDependency:layoutDependency,layoutId:\"KWziALQtl\",ref:ref??ref1,style:{...style},...addPropertyOverrides({LTGeZ00LT:{\"data-framer-name\":\"menu mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-glnst2\",layoutDependency:layoutDependency,layoutId:\"VDiB8awg3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{vs8f9LDBO:\"terms-and-conditions\"},unresolvedPathSlugs:{vs8f9LDBO:{collectionId:\"SkIdYSJKY\",collectionItemId:\"fHEpSG1MF\"}},webPageId:\"A0tai5wyF\"},motionChild:true,nodeId:\"MIPgdy4wO\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1g7dyib\",\"data-styles-preset\":\"FBtnvTcfB\",children:\"Terms and Conditions\"})})})}),className:\"framer-160xbol\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MIPgdy4wO\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"|\"})}),className:\"framer-19gzzxy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yqVUD1Xei\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{vs8f9LDBO:\"privacy-policy\"},unresolvedPathSlugs:{vs8f9LDBO:{collectionId:\"SkIdYSJKY\",collectionItemId:\"W0cAB5MEM\"}},webPageId:\"A0tai5wyF\"},motionChild:true,nodeId:\"csuay7kJp\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1g7dyib\",\"data-styles-preset\":\"FBtnvTcfB\",children:\"Privacy Policy\"})})})}),className:\"framer-1bx4qbu\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"csuay7kJp\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"|\"})}),className:\"framer-12jyzqb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JX_aTKOfs\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ydkgyl\",layoutDependency:layoutDependency,layoutId:\"EcDn5JEVJ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-decoration\":\"underline\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:alessia@gmail.com\",motionChild:true,nodeId:\"boKdP4UeQ\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1g7dyib\",\"data-styles-preset\":\"FBtnvTcfB\",children:\"valastroalessia54@gmail.com\"})})})}),className:\"framer-1g935h2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"boKdP4UeQ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OBLsd.framer-l7901u, .framer-OBLsd .framer-l7901u { display: block; }\",\".framer-OBLsd.framer-c9lwz3 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-OBLsd .framer-glnst2, .framer-OBLsd .framer-1ydkgyl { 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-OBLsd .framer-160xbol, .framer-OBLsd .framer-19gzzxy, .framer-OBLsd .framer-1bx4qbu, .framer-OBLsd .framer-12jyzqb, .framer-OBLsd .framer-1g935h2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OBLsd.framer-c9lwz3, .framer-OBLsd .framer-glnst2, .framer-OBLsd .framer-1ydkgyl { gap: 0px; } .framer-OBLsd.framer-c9lwz3 > *, .framer-OBLsd .framer-glnst2 > *, .framer-OBLsd .framer-1ydkgyl > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-OBLsd.framer-c9lwz3 > :first-child, .framer-OBLsd .framer-glnst2 > :first-child, .framer-OBLsd .framer-1ydkgyl > :first-child { margin-left: 0px; } .framer-OBLsd.framer-c9lwz3 > :last-child, .framer-OBLsd .framer-glnst2 > :last-child, .framer-OBLsd .framer-1ydkgyl > :last-child { margin-right: 0px; } }\",\".framer-OBLsd.framer-v-k06vyy.framer-c9lwz3 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 12px; padding: 0px 0px 12px 0px; }\",\".framer-OBLsd.framer-v-k06vyy .framer-160xbol { order: 0; }\",\".framer-OBLsd.framer-v-k06vyy .framer-19gzzxy { order: 1; }\",\".framer-OBLsd.framer-v-k06vyy .framer-1bx4qbu { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OBLsd.framer-v-k06vyy.framer-c9lwz3 { gap: 0px; } .framer-OBLsd.framer-v-k06vyy.framer-c9lwz3 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-OBLsd.framer-v-k06vyy.framer-c9lwz3 > :first-child { margin-top: 0px; } .framer-OBLsd.framer-v-k06vyy.framer-c9lwz3 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 547\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"LTGeZ00LT\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernpKT5EKvu=withCSS(Component,css,\"framer-OBLsd\");export default FramernpKT5EKvu;FramernpKT5EKvu.displayName=\"footer menu\";FramernpKT5EKvu.defaultProps={height:24,width:547};addPropertyControls(FramernpKT5EKvu,{variant:{options:[\"KWziALQtl\",\"LTGeZ00LT\"],optionTitles:[\"menu\",\"menu mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramernpKT5EKvu,[{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\":\"FramernpKT5EKvu\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"LTGeZ00LT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"547\",\"framerIntrinsicHeight\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{MarginTopAuto}from\"https://framerusercontent.com/modules/fnqnvv4vlRZdBnKB0w9J/jtLA0uyrFNsiunKrAcPT/Examples.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/cHuVNpcJV0lw9k2pTGkW/cKpoEo56C6qkWVRh7Hgr/zEKKIkLA1.js\";import Socials from\"https://framerusercontent.com/modules/dKdwUsRUdl20oPSfESZB/XBCBpp1LO0BJqNQ8oFUF/IdGZkW4nr.js\";import FooterMenu from\"https://framerusercontent.com/modules/8lK43UTgNRgWOBMO95Q7/iMmcqIGm4mg1N5tL1LUT/npKT5EKvu.js\";import Logo from\"https://framerusercontent.com/modules/Oo0Fh3g5bxBEjgL5PJQu/JVzpACy0PKHddf4raU1W/rGU0cQKj3.js\";import LanguageSwitcher from\"https://framerusercontent.com/modules/gZYvkudiDaQHubK6Ch2F/mBuR2CUMiVMl3GqJ22CC/rHVB6_q13.js\";import Menu from\"https://framerusercontent.com/modules/rWwED5vUyzXhaHxzhO08/OHqVeMwdOZDTHCfn1cBf/u5WejuYsD.js\";const LogoFonts=getFonts(Logo);const MenuFonts=getFonts(Menu);const SocialsFonts=getFonts(Socials);const LanguageSwitcherFonts=getFonts(LanguageSwitcher);const FooterMenuFonts=getFonts(FooterMenu);const MotionDivMarginTopAutogp3yqn=withCodeBoundaryForOverrides(motion.div,{nodeId:\"BeEqISry_\",override:MarginTopAuto,scopeId:\"zEKKIkLA1\"});const cycleOrder=[\"BeEqISry_\",\"qY0IM5w6H\",\"fETUTOvwR\"];const serializationHash=\"framer-Prz18\";const variantClassNames={BeEqISry_:\"framer-v-gp3yqn\",fETUTOvwR:\"framer-v-d9f4oq\",qY0IM5w6H:\"framer-v-y4g874\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={desktop:\"BeEqISry_\",phone:\"fETUTOvwR\",tablet:\"qY0IM5w6H\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"BeEqISry_\"};};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:\"BeEqISry_\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"qY0IM5w6H\",\"fETUTOvwR\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"qY0IM5w6H\",\"fETUTOvwR\"].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(MotionDivMarginTopAutogp3yqn,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-gp3yqn\",className,classNames),\"data-framer-name\":\"desktop\",layoutDependency:layoutDependency,layoutId:\"BeEqISry_\",ref:refBinding,style:{...style},...addPropertyOverrides({fETUTOvwR:{\"data-framer-name\":\"phone\"},qY0IM5w6H:{\"data-framer-name\":\"tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e4q6m7\",\"data-framer-name\":\"top\",layoutDependency:layoutDependency,layoutId:\"EjzQL9HK7\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:(componentViewport?.y||0)+180+(((componentViewport?.height||351)-204-148)/2+0+0)+3.5,...addPropertyOverrides({fETUTOvwR:{y:(componentViewport?.y||0)+150+(((componentViewport?.height||200)-174-225)/2+0+0)+0},qY0IM5w6H:{y:(componentViewport?.y||0)+150+(((componentViewport?.height||426)-174-253)/2+0+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-beu91g-container\",layoutDependency:layoutDependency,layoutId:\"W42G7F_OU-container\",nodeId:\"W42G7F_OU\",rendersWithMotion:true,scopeId:\"zEKKIkLA1\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"W42G7F_OU\",layoutId:\"W42G7F_OU\",variant:\"z2uPTi51o\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+180+(((componentViewport?.height||351)-204-148)/2+0+0)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3n9ytu-container\",layoutDependency:layoutDependency,layoutId:\"JKK1jDXKn-container\",nodeId:\"JKK1jDXKn\",rendersWithMotion:true,scopeId:\"zEKKIkLA1\",children:/*#__PURE__*/_jsx(Menu,{height:\"100%\",Hs2K_4Aqo:24,id:\"JKK1jDXKn\",IMJPp1JN8:\"row\",layoutId:\"JKK1jDXKn\",nx5SiaIh4:\"center\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mpya70\",\"data-framer-name\":\"center\",layoutDependency:layoutDependency,layoutId:\"ESoNFOO0D\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+180+(((componentViewport?.height||351)-204-148)/2+44+0)+6,...addPropertyOverrides({fETUTOvwR:{y:(componentViewport?.y||0)+150+(((componentViewport?.height||200)-174-225)/2+53+0)+6},qY0IM5w6H:{y:(componentViewport?.y||0)+150+(((componentViewport?.height||426)-174-253)/2+53+0)+6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-a1bvvk-container\",layoutDependency:layoutDependency,layoutId:\"e1jg5t6lN-container\",nodeId:\"e1jg5t6lN\",rendersWithMotion:true,scopeId:\"zEKKIkLA1\",children:/*#__PURE__*/_jsx(Socials,{height:\"100%\",id:\"e1jg5t6lN\",layoutId:\"e1jg5t6lN\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+180+(((componentViewport?.height||351)-204-148)/2+44+0)+0,...addPropertyOverrides({fETUTOvwR:{y:(componentViewport?.y||0)+150+(((componentViewport?.height||200)-174-225)/2+53+0)+0},qY0IM5w6H:{y:(componentViewport?.y||0)+150+(((componentViewport?.height||426)-174-253)/2+53+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1p0vreu-container\",layoutDependency:layoutDependency,layoutId:\"h2_GfaBus-container\",nodeId:\"h2_GfaBus\",rendersWithMotion:true,scopeId:\"zEKKIkLA1\",children:/*#__PURE__*/_jsx(LanguageSwitcher,{height:\"100%\",id:\"h2_GfaBus\",layoutId:\"h2_GfaBus\",width:\"100%\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-q0jjn2\",\"data-framer-name\":\"center-bottom\",layoutDependency:layoutDependency,layoutId:\"mE3RCHJsJ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,...addPropertyOverrides({fETUTOvwR:{y:(componentViewport?.y||0)+150+(((componentViewport?.height||200)-174-225)/2+117+0)+0+0},qY0IM5w6H:{y:(componentViewport?.y||0)+150+(((componentViewport?.height||426)-174-253)/2+117+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wh42gz-container\",layoutDependency:layoutDependency,layoutId:\"pHI3ij4qD-container\",nodeId:\"pHI3ij4qD\",rendersWithMotion:true,scopeId:\"zEKKIkLA1\",children:/*#__PURE__*/_jsx(Menu,{height:\"100%\",Hs2K_4Aqo:24,id:\"pHI3ij4qD\",IMJPp1JN8:\"row\",layoutId:\"pHI3ij4qD\",nx5SiaIh4:\"center\",width:\"100%\",...addPropertyOverrides({fETUTOvwR:{Hs2K_4Aqo:16,IMJPp1JN8:\"column\",nx5SiaIh4:\"flex-start\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11z2x3f\",\"data-border\":true,\"data-framer-name\":\"bottom\",layoutDependency:layoutDependency,layoutId:\"ofLI3riey\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(152, 113, 255, 0.2)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},variants:{fETUTOvwR:{\"--border-top-width\":\"0px\"}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Copyright \\xa9 2025 All Rights Reserved\"})}),className:\"framer-ml8lp4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MQkDG4zQU\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+180+(((componentViewport?.height||351)-204-148)/2+100+0)+24,...addPropertyOverrides({fETUTOvwR:{y:(componentViewport?.y||0)+150+(((componentViewport?.height||200)-174-225)/2+177+0)+0+0},qY0IM5w6H:{y:(componentViewport?.y||0)+150+(((componentViewport?.height||426)-174-253)/2+169+0)+24+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-p4ok3p-container\",layoutDependency:layoutDependency,layoutId:\"GHrz0RJIK-container\",nodeId:\"GHrz0RJIK\",rendersWithMotion:true,scopeId:\"zEKKIkLA1\",children:/*#__PURE__*/_jsx(FooterMenu,{height:\"100%\",id:\"GHrz0RJIK\",layoutId:\"GHrz0RJIK\",variant:\"KWziALQtl\",width:\"100%\",...addPropertyOverrides({fETUTOvwR:{variant:\"LTGeZ00LT\"}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Prz18.framer-nlirvc, .framer-Prz18 .framer-nlirvc { display: block; }\",\".framer-Prz18.framer-gp3yqn { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 180px 24px 24px 24px; position: relative; width: 1200px; }\",\".framer-Prz18 .framer-e4q6m7 { 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 0px 16px 0px; position: relative; width: 100%; }\",\".framer-Prz18 .framer-beu91g-container, .framer-Prz18 .framer-3n9ytu-container, .framer-Prz18 .framer-a1bvvk-container, .framer-Prz18 .framer-1p0vreu-container, .framer-Prz18 .framer-wh42gz-container, .framer-Prz18 .framer-p4ok3p-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Prz18 .framer-1mpya70 { 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 0px 24px 0px; position: relative; width: 100%; }\",\".framer-Prz18 .framer-q0jjn2 { 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: 100%; }\",\".framer-Prz18 .framer-11z2x3f { 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: 24px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Prz18 .framer-ml8lp4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Prz18.framer-gp3yqn, .framer-Prz18 .framer-q0jjn2 { gap: 0px; } .framer-Prz18.framer-gp3yqn > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Prz18.framer-gp3yqn > :first-child { margin-top: 0px; } .framer-Prz18.framer-gp3yqn > :last-child { margin-bottom: 0px; } .framer-Prz18 .framer-q0jjn2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Prz18 .framer-q0jjn2 > :first-child { margin-left: 0px; } .framer-Prz18 .framer-q0jjn2 > :last-child { margin-right: 0px; } }\",\".framer-Prz18.framer-v-y4g874.framer-gp3yqn { padding: 150px 32px 24px 32px; }\",\".framer-Prz18.framer-v-y4g874 .framer-e4q6m7, .framer-Prz18.framer-v-y4g874 .framer-1mpya70, .framer-Prz18.framer-v-d9f4oq .framer-e4q6m7, .framer-Prz18.framer-v-d9f4oq .framer-1mpya70 { padding: 0px 0px 32px 0px; }\",\".framer-Prz18.framer-v-y4g874 .framer-beu91g-container, .framer-Prz18.framer-v-y4g874 .framer-p4ok3p-container, .framer-Prz18.framer-v-d9f4oq .framer-p4ok3p-container { order: 0; }\",\".framer-Prz18.framer-v-y4g874 .framer-q0jjn2 { padding: 0px 0px 24px 0px; }\",\".framer-Prz18.framer-v-y4g874 .framer-11z2x3f { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 12px; justify-content: flex-start; }\",\".framer-Prz18.framer-v-y4g874 .framer-ml8lp4, .framer-Prz18.framer-v-d9f4oq .framer-ml8lp4 { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Prz18.framer-v-y4g874 .framer-11z2x3f { gap: 0px; } .framer-Prz18.framer-v-y4g874 .framer-11z2x3f > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Prz18.framer-v-y4g874 .framer-11z2x3f > :first-child { margin-top: 0px; } .framer-Prz18.framer-v-y4g874 .framer-11z2x3f > :last-child { margin-bottom: 0px; } }\",\".framer-Prz18.framer-v-d9f4oq.framer-gp3yqn { padding: 150px 12px 24px 12px; }\",\".framer-Prz18.framer-v-d9f4oq .framer-q0jjn2 { align-content: flex-start; align-items: flex-start; flex-direction: column; padding: 0px 0px 32px 0px; }\",\".framer-Prz18.framer-v-d9f4oq .framer-11z2x3f { align-content: flex-start; align-items: flex-start; flex-direction: column; padding: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Prz18.framer-v-d9f4oq .framer-q0jjn2, .framer-Prz18.framer-v-d9f4oq .framer-11z2x3f { gap: 0px; } .framer-Prz18.framer-v-d9f4oq .framer-q0jjn2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Prz18.framer-v-d9f4oq .framer-q0jjn2 > :first-child { margin-top: 0px; } .framer-Prz18.framer-v-d9f4oq .framer-q0jjn2 > :last-child { margin-bottom: 0px; } .framer-Prz18.framer-v-d9f4oq .framer-11z2x3f > *, .framer-Prz18.framer-v-d9f4oq .framer-11z2x3f > :first-child, .framer-Prz18.framer-v-d9f4oq .framer-11z2x3f > :last-child { margin: 0px; } }\",'.framer-Prz18[data-border=\"true\"]::after, .framer-Prz18 [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 351\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qY0IM5w6H\":{\"layout\":[\"fixed\",\"auto\"]},\"fETUTOvwR\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerzEKKIkLA1=withCSS(Component,css,\"framer-Prz18\");export default FramerzEKKIkLA1;FramerzEKKIkLA1.displayName=\"footer\";FramerzEKKIkLA1.defaultProps={height:351,width:1200};addPropertyControls(FramerzEKKIkLA1,{variant:{options:[\"BeEqISry_\",\"qY0IM5w6H\",\"fETUTOvwR\"],optionTitles:[\"desktop\",\"tablet\",\"phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerzEKKIkLA1,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...LogoFonts,...MenuFonts,...SocialsFonts,...LanguageSwitcherFonts,...FooterMenuFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzEKKIkLA1\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qY0IM5w6H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fETUTOvwR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"351\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "HideParentBackground", "Component", "props", "src", "p", "MarginTopAuto", "BlockFixed", "ref", "pe", "ue", "PopupFixed", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "vBtECYJM2", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapqkos70", "args", "onTapej2a74", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "Link", "SVG", "css", "FramerIdGZkW4nr", "withCSS", "IdGZkW4nr_default", "addPropertyControls", "ControlType", "addFonts", "NlA2yKI2o_exports", "__export", "__FramerMetadata__", "NlA2yKI2o_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ZgGy8EzfC", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1n4eph1", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "Link", "SVG", "css", "FramerrGU0cQKj3", "withCSS", "rGU0cQKj3_default", "addPropertyControls", "ControlType", "addFonts", "rHVB6_q13_0_exports", "__export", "__FramerMetadata__", "v0", "v0", "__FramerMetadata__", "valuesByLocaleId", "rHVB6_q13_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "title", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Xf8zJE4o4", "x7l12wsEf", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapynhzrr", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "Framere0jobvtYP", "withCSS", "e0jobvtYP_default", "addPropertyControls", "ControlType", "addFonts", "LanguageSwitcherItemFonts", "getFonts", "e0jobvtYP_default", "serializationHash", "variantClassNames", "transition1", "convertFromEnum", "value", "activeLocale", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "KiaMmcVSW", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapw3wys4", "args", "Xf8zJE4o417b0nju", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "e0jobvtYP_default", "getLocalizedValue", "css", "FramerrHVB6_q13", "withCSS", "rHVB6_q13_default", "addPropertyControls", "ControlType", "addFonts", "LanguageSwitcherItemFonts", "u5WejuYsD_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v0", "v1", "v2", "__FramerMetadata__", "valuesByLocaleId", "u5WejuYsD_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "fontStore", "fonts", "css", "className", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "fontSize", "height", "id", "link", "title", "width", "props", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "qCSUzm9Yq", "rSK_dJCwH", "yvvAq26Od", "PfSxMipWh", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapbrf2og", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "Link", "css", "Framerw1sFOgJoQ", "withCSS", "w1sFOgJoQ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MenuItemFonts", "getFonts", "w1sFOgJoQ_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableEnumMap1", "getProps", "align", "direction", "gap", "height", "id", "onClick", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "IMJPp1JN8", "Hs2K_4Aqo", "nx5SiaIh4", "RjpoQAkrx", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "qCSUzm9Yq2kgvzi", "args", "scopingClassNames", "cx", "serializationHash", "router", "useRouter", "LayoutGroup", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "w1sFOgJoQ_default", "getLocalizedValue", "resolvedLinks1", "resolvedLinks2", "css", "Frameru5WejuYsD", "withCSS", "u5WejuYsD_default", "addPropertyControls", "ControlType", "addFonts", "MenuItemFonts", "LogoFonts", "getFonts", "rGU0cQKj3_default", "MenuFonts", "u5WejuYsD_default", "LanguageSwitcherFonts", "rHVB6_q13_default", "SocialsFonts", "IdGZkW4nr_default", "serializationHash", "variantClassNames", "transition1", "numberToPixelString", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "close", "height", "id", "padding", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "NFSYhaDUv", "aJbVlBhA3", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "ZgGy8EzfC13xdpjx", "args", "onTap13xdpjx", "RjpoQAkrx13xdpjx", "KiaMmcVSW13xdpjx", "vBtECYJM213xdpjx", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "SVG", "ComponentViewportProvider", "rGU0cQKj3_default", "u5WejuYsD_default", "rHVB6_q13_default", "IdGZkW4nr_default", "css", "FramerNlA2yKI2o", "withCSS", "NlA2yKI2o_default", "addPropertyControls", "ControlType", "addFonts", "LogoFonts", "MenuFonts", "LanguageSwitcherFonts", "SocialsFonts", "__FramerMetadata__", "LogoFonts", "getFonts", "rGU0cQKj3_default", "MenuFonts", "u5WejuYsD_default", "SocialsFonts", "IdGZkW4nr_default", "LanguageSwitcherFonts", "rHVB6_q13_default", "HamburgerMenuFonts", "NlA2yKI2o_default", "HamburgerMenuBlockFixedWithMappedReactProps1bik870", "withMappedReactProps", "BlockFixed", "NlA2yKI2o_exports", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "openMobileMenu", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "F1GUypWNv", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1oeipi8", "args", "onTap5sg6ou", "onTap1sz4q6e", "KiaMmcVSW1r2szww", "NFSYhaDUv1rtekov", "NFSYhaDUvvho6qg", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "SVG", "css", "FramerltbHwn8Nt", "withCSS", "ltbHwn8Nt_default", "addPropertyControls", "ControlType", "addFonts", "zEKKIkLA1_0_exports", "__export", "__FramerMetadata__", "v0", "v0", "p", "x", "motion", "__FramerMetadata__", "valuesByLocaleId", "zEKKIkLA1_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "fontStore", "fonts", "css", "className", "npKT5EKvu_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v0", "p", "x", "motion", "Link", "v1", "v2", "v3", "__FramerMetadata__", "valuesByLocaleId", "npKT5EKvu_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "getLocalizedValue", "Link", "css", "FramernpKT5EKvu", "withCSS", "npKT5EKvu_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "LogoFonts", "getFonts", "rGU0cQKj3_default", "MenuFonts", "u5WejuYsD_default", "SocialsFonts", "IdGZkW4nr_default", "LanguageSwitcherFonts", "rHVB6_q13_default", "FooterMenuFonts", "npKT5EKvu_default", "MotionDivMarginTopAutogp3yqn", "withCodeBoundaryForOverrides", "motion", "MarginTopAuto", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "getLocalizedValue", "css", "FramerzEKKIkLA1", "withCSS", "zEKKIkLA1_default", "addPropertyControls", "ControlType", "addFonts", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "useIsOnCanvas", "se", "RenderTarget", "useRadius", "props", "borderRadius", "isMixedBorderRadius", "topLeftRadius", "topRightRadius", "bottomRightRadius", "bottomLeftRadius", "se", "borderRadiusControl", "ControlType", "paddingControl", "ControlType"]
}
