{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/TcQV6SEsl3y6G9Op8tp0/Time.js", "ssg:https://framerusercontent.com/modules/ZBbUgv8ORYA8x3QZkkLl/pHJfsUMZMgAEBVfPYMwy/DULm3Dr6D-0.js", "ssg:https://framerusercontent.com/modules/ZBbUgv8ORYA8x3QZkkLl/pHJfsUMZMgAEBVfPYMwy/DULm3Dr6D.js", "ssg:https://framerusercontent.com/modules/5NPg2tvrJowbHcJ45J5Y/0OBDhX722NaGJiqIecjW/DULm3Dr6D.js", "ssg:https://framerusercontent.com/modules/cuKUFdzXlhvw8OVOBeAc/VOfaY9LHiTLKveiePI7P/border.js", "ssg:https://framerusercontent.com/modules/9muYaW1MvHoRQJ0P7dkP/V2GVvLqiMxXRSxszkCSa/focus.js", "ssg:https://framerusercontent.com/modules/YfmtnpWjJrP37sQ18QUZ/9Y2P24U2SBIbf2fPVsOX/hover.js", "ssg:https://framerusercontent.com/modules/wjZLfSMaP1TvJDu5PCwr/6SPClu354QJPCp6Xj5C0/padding.js", "ssg:https://framerusercontent.com/modules/N6MwtHbWoiZJNn1xpqxu/58OHv7BfCzgeBhiv1TYu/radius.js", "ssg:https://framerusercontent.com/modules/57FhkldN9P7x88MqAEaR/MaCiz8nzfVQ2yBstuToQ/LocaleSelector.js", "ssg:https://framerusercontent.com/modules/57FhkldN9P7x88MqAEaR/QntFAqtwwHPSDPIdxU3o/LocaleSelector.js", "ssg:https://framerusercontent.com/modules/aMeh4oaLDmtxS3d0CUc3/jERjs2plzNeEL5Uf4yGy/GXeqyylnp.js", "ssg:https://framerusercontent.com/modules/Q3Qev4OikJwCKt94XaxX/FEfIl113VMC4roz9rV1d/k3ryy4LI4.js", "ssg:https://framerusercontent.com/modules/HCGHtmF5zzYjHMfxzxnQ/V0lKlXCHkta1X8zIbUG3/Ln_TfAgpH.js", "ssg:https://framerusercontent.com/modules/FsRJFRmsmBxI5pSww6Yt/PNY8M3W5byTD2E1SkcPj/KQGdTPIJr-0.js", "ssg:https://framerusercontent.com/modules/KEvpXpZt3w26qNOcEM3h/JhhXUoz4kyzIx0s4rP1X/OxJREwf3p.js", "ssg:https://framerusercontent.com/modules/FsRJFRmsmBxI5pSww6Yt/PNY8M3W5byTD2E1SkcPj/KQGdTPIJr.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,useLocaleCode}from\"framer\";import{useState,useEffect,useCallback}from\"react\";const fontStack=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;function useForceRender(){const[_,set]=useState(0);return useCallback(()=>set(v=>v+1),[]);}function formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showMinutes,showSeconds},timeFormat,monthFormat,localCode){const date=new Date;const onlyYearIsShown=!showWeekday&&!showMonth&&showYear;switch(outputType){case\"date\":return new Intl.DateTimeFormat(localCode,{weekday:showWeekday?\"long\":undefined,day:onlyYearIsShown?undefined:\"numeric\",month:showMonth?monthFormat:undefined,year:showYear?\"numeric\":undefined}).format(date);case\"time\":return new Intl.DateTimeFormat(localCode,{hour:\"numeric\",minute:showMinutes?\"numeric\":undefined,second:showSeconds&&showMinutes?\"numeric\":undefined,hour12:timeFormat===\"12h\"}).format(date);default:return new Intl.DateTimeFormat(localCode).format(date);}}/**\n * TIME AND DATE\n * FORKED FROM PROTOTYPING\n *\n *\n * @framerIntrinsicWidth 140\n * @framerIntrinsicHeight 20\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export function Time(props){const{outputType,fontFamily,fontSize,fontWeight,timeFormat,showYear,showMonth,showWeekday,showHours,showMinutes,showSeconds,monthFormat,color,font,tabularFont,alignment}=props;const[visible,setIsVisible]=useState(false);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const render=useForceRender();const localCode=useLocaleCode();const textContent=formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showHours,showMinutes,showSeconds},timeFormat,monthFormat,localCode);useEffect(()=>{setIsVisible(true);// Don\u2019t want real time on Canvas\nif(isCanvas)return;const int=setInterval(()=>{render();});return()=>{clearInterval(int);};},[]);return /*#__PURE__*/_jsx(\"p\",{suppressHydrationWarning:true,style:{margin:0,padding:0,color,fontFamily:fontStack,fontWeight:500,fontSize:16,lineHeight:1,visibility:visible?\"visible\":\"hidden\",...font,fontVariantNumeric:tabularFont?\"tabular-nums\":\"normal\",whiteSpace:\"nowrap\"},children:textContent});}Time.defaultProps={height:20,width:140,outputType:\"time\",color:\"#999\",timeFormat:\"24h\",showYear:true,showMonth:true,showWeekday:true,showMinutes:true,showSeconds:true,monthFormat:\"long\",alignment:\"center\"};Time.displayName=\"Time & Date\";addPropertyControls(Time,{outputType:{title:\"Type\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"date\",\"time\"],optionTitles:[\"Date\",\"Time\"],defaultValue:Time.defaultProps.outputType},showWeekday:{title:\"Day\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showWeekday,hidden:props=>props.outputType!==\"date\"},showMonth:{title:\"Month\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showMonth,hidden:props=>props.outputType!==\"date\"},monthFormat:{title:\"Format\",type:ControlType.Enum,options:[\"short\",\"long\",\"numeric\"],optionTitles:[\"Short\",\"Long\",\"Numeric\"],defaultValue:Time.defaultProps.monthFormat,hidden:props=>props.outputType!==\"date\"||!props.showMonth},showYear:{title:\"Year\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showYear,hidden:props=>props.outputType!==\"date\"},timeFormat:{title:\"Format\",type:ControlType.Enum,options:[\"12h\",\"24h\"],optionTitles:[\"12h\",\"24h\"],displaySegmentedControl:true,defaultValue:Time.defaultProps.timeFormat,hidden:props=>props.outputType!==\"time\"},// showHours: {\n//     title: \"Hours\",\n//     type: ControlType.Boolean,\n//     enabledTitle: \"Show\",\n//     disabledTitle: \"Hide\",\n//     defaultValue: Time.defaultProps.showHours,\n//     hidden: (props) => props.outputType !== \"time\",\n// },\nshowMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showMinutes,hidden:props=>props.outputType!==\"time\"},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showSeconds,hidden:props=>props.outputType!==\"time\"||!props.showMinutes},font:{type:ControlType.Font,controls:\"extended\"},tabularFont:{title:\"Tabular\",type:ControlType.Boolean,defaultValue:true},color:{type:ControlType.Color,defaultValue:Time.defaultProps.color}});\nexport const __FramerMetadata__ = {\"exports\":{\"Time\":{\"type\":\"reactComponent\",\"name\":\"Time\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"140\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Time.map", "import{jsx as _jsx,jsxs as _jsxs}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:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\"},children:\"Explorar\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AOw94_IgO\"},motionChild:true,nodeId:\"zvWHfMYdI\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Propiedades en venta en Dubai\"})})})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FeIkqqmD9\"},motionChild:true,nodeId:\"RM3XVSHFU\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Apartamentos en venta en Dubai\"})})})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EniZ5I_8G\"},motionChild:true,nodeId:\"YXiS478GT\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Villas en venta en Dubai\"})})})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PNndRXPNU\"},motionChild:true,nodeId:\"VKz0DsGKY\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Adosados en venta en Dubai\"})})})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"wtrHzfmS6\"},motionChild:true,nodeId:\"gbLKTCCkB\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Propiedades sobre plano en venta en Dubai\"})})})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\"},children:\"Explorar\"})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"v8Is4YTfs\"},motionChild:true,nodeId:\"FRQrVJoE9\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Ver todo\"})})})});export const v8=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\"},children:\"Empresa\"})});export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mgWImbcfk\"},motionChild:true,nodeId:\"O_Hty0Q0E\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Acerca de\"})})})});export const v10=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u7pt51U7V\"},motionChild:true,nodeId:\"fqTIcu0RL\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Servicios\"})})})});export const v11=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cfizbFwFH\"},motionChild:true,nodeId:\"Sr7NUlhID\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Contacto\"})})})});export const v12=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\"},children:\"S\\xedguenos\"})});export const v13=\"Instagram\";export const v14=\"LinkedIn\";export const v15=\"Facebook\";export const v16=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"B7PiII3O6\"},motionChild:true,nodeId:\"nvNgvZqFY\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Pol\\xedtica de privacidad\"})})})});export const v17=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.3))\"},children:[\"\\xa9 2024 Liberta Realty LLC. Todos los derechos reservados.\",/*#__PURE__*/_jsx(motion.br,{}),\"Liberta Realty es una empresa registrada en Dubai, Emiratos \\xc1rabes Unidos (Licencia No. 1021375), ubicada en The Binary Tower, Oficina 1807 en Business Bay.\",/*#__PURE__*/_jsx(motion.br,{}),\"Estamos registrados y regulados por la Real Estate Regulatory Agency (RERA) bajo el n\\xfamero de oficina 28940.\"]})});\nexport const __FramerMetadata__ = {\"exports\":{\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (eea9f0c)\nimport*as localizedValues from\"./DULm3Dr6D-0.js\";const valuesByLocaleId={bsRz4t4Yb: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 (eea9f0c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Time as TimeDate}from\"https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/TcQV6SEsl3y6G9Op8tp0/Time.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/N4pJNgyAXlw2dNbNXhVu/6QaiHHZAUPdXe6Oo6AF0/AJSFjX5Vs.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/ZBbUgv8ORYA8x3QZkkLl/pHJfsUMZMgAEBVfPYMwy/DULm3Dr6D.js\";const PhosphorFonts=getFonts(Phosphor);const TimeDateFonts=getFonts(TimeDate);const cycleOrder=[\"XQp_PcGcP\",\"FO6NNLwSO\",\"K2Grx4W7F\"];const serializationHash=\"framer-eYna9\";const variantClassNames={FO6NNLwSO:\"framer-v-19fz8ef\",K2Grx4W7F:\"framer-v-1sm9ysu\",XQp_PcGcP:\"framer-v-1tzkno9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"XQp_PcGcP\",Phone:\"K2Grx4W7F\",Tablet:\"FO6NNLwSO\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"XQp_PcGcP\"};};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:\"XQp_PcGcP\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1tzkno9\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"XQp_PcGcP\",ref:refBinding,style:{backgroundColor:\"var(--token-852fbbd4-9722-42e8-b776-d23dc09ec05e, rgb(242, 242, 240))\",...style},...addPropertyOverrides({FO6NNLwSO:{\"data-framer-name\":\"Tablet\"},K2Grx4W7F:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-45rvr3\",\"data-framer-name\":\"Grid\",layoutDependency:layoutDependency,layoutId:\"gU9cwMZzo\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xoapjy\",\"data-framer-name\":\"Shortcuts\",layoutDependency:layoutDependency,layoutId:\"gDgNu9bOP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\"},children:\"Explore\"})}),className:\"framer-1hrbo84\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"ZM_Vh_1NC\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4qfl2h\",\"data-framer-name\":\"List\",layoutDependency:layoutDependency,layoutId:\"wHOCfEU2T\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AOw94_IgO\"},motionChild:true,nodeId:\"zvWHfMYdI\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Properties for sale in Dubai\"})})})}),className:\"framer-dq2md3\",\"data-framer-name\":\"Link\",fonts:[\"GF;Work Sans-300\"],layoutDependency:layoutDependency,layoutId:\"zvWHfMYdI\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FeIkqqmD9\"},motionChild:true,nodeId:\"RM3XVSHFU\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Apartments for sale in Dubai\"})})})}),className:\"framer-sw07o\",\"data-framer-name\":\"Link\",fonts:[\"GF;Work Sans-300\"],layoutDependency:layoutDependency,layoutId:\"RM3XVSHFU\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EniZ5I_8G\"},motionChild:true,nodeId:\"YXiS478GT\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Villas for sale in Dubai\"})})})}),className:\"framer-d0h4di\",\"data-framer-name\":\"Link\",fonts:[\"GF;Work Sans-300\"],layoutDependency:layoutDependency,layoutId:\"YXiS478GT\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PNndRXPNU\"},motionChild:true,nodeId:\"VKz0DsGKY\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Townhouses for sale in Dubai\"})})})}),className:\"framer-1csikhq\",\"data-framer-name\":\"Link\",fonts:[\"GF;Work Sans-300\"],layoutDependency:layoutDependency,layoutId:\"VKz0DsGKY\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"wtrHzfmS6\"},motionChild:true,nodeId:\"gbLKTCCkB\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Off-plan properties for sale in Dubai\"})})})}),className:\"framer-1toaqvb\",\"data-framer-name\":\"Link\",fonts:[\"GF;Work Sans-300\"],layoutDependency:layoutDependency,layoutId:\"gbLKTCCkB\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-atk027\",\"data-framer-name\":\"Locations\",layoutDependency:layoutDependency,layoutId:\"EtaLn1YKk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\"},children:\"Browse properties\"})}),className:\"framer-1gyiy6c\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"UUS3Wu1Vi\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-amxjsg\",\"data-framer-name\":\"List\",layoutDependency:layoutDependency,layoutId:\"BXa8Xmdg4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GpeZdWibb\"},motionChild:true,nodeId:\"vtyZT7LIC\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Palm Jumeirah\"})})})}),className:\"framer-2n51n6\",\"data-framer-name\":\"Link\",fonts:[\"GF;Work Sans-300\"],layoutDependency:layoutDependency,layoutId:\"vtyZT7LIC\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"KkWlIvAVJ\"},motionChild:true,nodeId:\"y1mGdT3C6\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Downtown Dubai\"})})})}),className:\"framer-qzo5wc\",\"data-framer-name\":\"Link\",fonts:[\"GF;Work Sans-300\"],layoutDependency:layoutDependency,layoutId:\"y1mGdT3C6\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LOfq6KpIL\"},motionChild:true,nodeId:\"SevSuxAwW\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Dubai Marina\"})})})}),className:\"framer-1iy6lw2\",\"data-framer-name\":\"Link\",fonts:[\"GF;Work Sans-300\"],layoutDependency:layoutDependency,layoutId:\"SevSuxAwW\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dA43hn6Eu\"},motionChild:true,nodeId:\"aY374Y0ny\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Bluewaters Island\"})})})}),className:\"framer-7xkd1u\",\"data-framer-name\":\"Link\",fonts:[\"GF;Work Sans-300\"],layoutDependency:layoutDependency,layoutId:\"aY374Y0ny\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"T9FXWa_QD\"},motionChild:true,nodeId:\"Y8DizzGvG\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Dubai Creek Harbour\"})})})}),className:\"framer-t3k29y\",\"data-framer-name\":\"Link\",fonts:[\"GF;Work Sans-300\"],layoutDependency:layoutDependency,layoutId:\"Y8DizzGvG\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JDwfoCgsG\"},motionChild:true,nodeId:\"hd4FAJ4uB\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Business Bay\"})})})}),className:\"framer-alu0i5\",\"data-framer-name\":\"Link\",fonts:[\"GF;Work Sans-300\"],layoutDependency:layoutDependency,layoutId:\"hd4FAJ4uB\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"v8Is4YTfs\"},motionChild:true,nodeId:\"FRQrVJoE9\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"View All\"})})})}),className:\"framer-1ceoznu\",\"data-framer-name\":\"Link\",fonts:[\"GF;Work Sans-300\"],layoutDependency:layoutDependency,layoutId:\"FRQrVJoE9\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q94m4a\",\"data-framer-name\":\"Company\",layoutDependency:layoutDependency,layoutId:\"QnHDjTVfc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\"},children:\"Company\"})}),className:\"framer-1lb7vbx\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"P4L4BZwzh\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qzm04p\",\"data-framer-name\":\"List\",layoutDependency:layoutDependency,layoutId:\"OGMRc8ecx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mgWImbcfk\"},motionChild:true,nodeId:\"O_Hty0Q0E\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"About\"})})})}),className:\"framer-hx5jfe\",\"data-framer-name\":\"Name\",fonts:[\"GF;Work Sans-300\"],layoutDependency:layoutDependency,layoutId:\"O_Hty0Q0E\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u7pt51U7V\"},motionChild:true,nodeId:\"fqTIcu0RL\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Services\"})})})}),className:\"framer-1aefoog\",\"data-framer-name\":\"Name\",fonts:[\"GF;Work Sans-300\"],layoutDependency:layoutDependency,layoutId:\"fqTIcu0RL\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cfizbFwFH\"},motionChild:true,nodeId:\"Sr7NUlhID\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Contact\"})})})}),className:\"framer-ccb4ry\",\"data-framer-name\":\"Name\",fonts:[\"GF;Work Sans-300\"],layoutDependency:layoutDependency,layoutId:\"Sr7NUlhID\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BtuOn5bZx\"},motionChild:true,nodeId:\"Mppfa035H\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Newsletter\"})})})}),className:\"framer-1l2c1yr\",\"data-framer-name\":\"Name\",fonts:[\"GF;Work Sans-300\"],layoutDependency:layoutDependency,layoutId:\"Mppfa035H\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7d2z53\",\"data-framer-name\":\"Social\",layoutDependency:layoutDependency,layoutId:\"tV2JfMRYg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\"},children:\"Follow Us\"})}),className:\"framer-leu4j6\",fonts:[\"GF;Work Sans-500\"],layoutDependency:layoutDependency,layoutId:\"o2LyJv982\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17hvws1\",\"data-framer-name\":\"List\",layoutDependency:layoutDependency,layoutId:\"QtRHOATsJ\",children:[/*#__PURE__*/_jsx(Link,{href:\"instagram.com/libertarealty\",motionChild:true,nodeId:\"kz8Gr2d7B\",scopeId:\"DULm3Dr6D\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1w13uoy framer-ddycge\",\"data-framer-name\":\"Link\",layoutDependency:layoutDependency,layoutId:\"kz8Gr2d7B\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vhwjco-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"XUpAyN9PQ-container\",nodeId:\"XUpAyN9PQ\",rendersWithMotion:true,scopeId:\"DULm3Dr6D\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:getLocalizedValue(\"v13\",activeLocale)??\"instagram\",iconSelection:\"House\",id:\"XUpAyN9PQ\",layoutId:\"XUpAyN9PQ\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"thin\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/libertarealty/\",motionChild:true,nodeId:\"uNik3l1IY\",scopeId:\"DULm3Dr6D\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-edm6mr framer-ddycge\",\"data-framer-name\":\"Link\",layoutDependency:layoutDependency,layoutId:\"uNik3l1IY\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ihg8ok-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"CB_Pkl8HM-container\",nodeId:\"CB_Pkl8HM\",rendersWithMotion:true,scopeId:\"DULm3Dr6D\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:getLocalizedValue(\"v14\",activeLocale)??\"linkedin\",iconSelection:\"House\",id:\"CB_Pkl8HM\",layoutId:\"CB_Pkl8HM\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"thin\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/libertarealty/\",motionChild:true,nodeId:\"qMrT9qOeS\",scopeId:\"DULm3Dr6D\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1uq5trj framer-ddycge\",\"data-framer-name\":\"Link\",layoutDependency:layoutDependency,layoutId:\"qMrT9qOeS\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-akkxgy-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"AEg_ouc26-container\",nodeId:\"AEg_ouc26\",rendersWithMotion:true,scopeId:\"DULm3Dr6D\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:getLocalizedValue(\"v15\",activeLocale)??\"facebook\",iconSelection:\"House\",id:\"AEg_ouc26\",layoutId:\"AEg_ouc26\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"thin\",width:\"100%\"})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3cuc8i\",layoutDependency:layoutDependency,layoutId:\"R6rAkjwX5\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-pjvktb\",\"data-framer-name\":\"Separator\",layoutDependency:layoutDependency,layoutId:\"aVsmMH_dV\",style:{backgroundColor:\"rgba(0, 0, 0, 0.1)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ko5zxf\",\"data-framer-name\":\"Actions\",layoutDependency:layoutDependency,layoutId:\"NxdUPnzR1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"B7PiII3O6\"},motionChild:true,nodeId:\"nvNgvZqFY\",openInNewTab:false,scopeId:\"DULm3Dr6D\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uwxnws\",\"data-styles-preset\":\"AJSFjX5Vs\",children:\"Privacy Policy\"})})})}),className:\"framer-r58er\",\"data-framer-name\":\"Link\",fonts:[\"GF;Work Sans-300\"],layoutDependency:layoutDependency,layoutId:\"nvNgvZqFY\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13ny01g\",layoutDependency:layoutDependency,layoutId:\"CA1IT13PT\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1scy5wq\",layoutDependency:layoutDependency,layoutId:\"erec8AKFw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-transform\":\"uppercase\"},children:\"\\xa9\"})}),className:\"framer-1ytl640\",fonts:[\"GF;Work Sans-300\"],layoutDependency:layoutDependency,layoutId:\"eZyRHIOMI\",style:{\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\",\"--framer-paragraph-spacing\":\"4px\",opacity:.3},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1f2dq1v-container\",\"data-framer-name\":\"Year\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"php4qfEpC-container\",name:\"Year\",nodeId:\"php4qfEpC\",rendersWithMotion:true,scopeId:\"DULm3Dr6D\",style:{opacity:.3},children:/*#__PURE__*/_jsx(TimeDate,{color:\"rgb(0, 0, 0)\",font:{fontFamily:'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',fontSize:\"13px\",fontStyle:\"normal\",fontWeight:300,letterSpacing:\"0em\",lineHeight:\"13px\"},height:\"100%\",id:\"php4qfEpC\",layoutId:\"php4qfEpC\",monthFormat:\"long\",name:\"Year\",outputType:\"date\",showMinutes:true,showMonth:false,showSeconds:true,showWeekday:false,showYear:true,tabularFont:true,timeFormat:\"24h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.3))\"},children:\"Liberta Realty. All rights reserved.\"})}),className:\"framer-1gur8j2\",fonts:[\"GF;Work Sans-300\"],layoutDependency:layoutDependency,layoutId:\"Dg_Qg4Z5_\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.3)\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\",\"--framer-paragraph-spacing\":\"4px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.3))\"},children:\"Liberta Realty is a licensed real estate brokerage company, registered with the Dubai Department of Economy and Tourism under license number 1021375, and regulated by the Real Estate Regulatory Agency (RERA) under registration number 28940. Our office is located at The Binary Tower, Office 1807, Business Bay, Dubai, United Arab Emirates.\"})}),className:\"framer-1g16fc2\",fonts:[\"GF;Work Sans-300\"],layoutDependency:layoutDependency,layoutId:\"FhplpLnBH\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.3)\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\",\"--framer-paragraph-spacing\":\"4px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eYna9.framer-ddycge, .framer-eYna9 .framer-ddycge { display: block; }\",\".framer-eYna9.framer-1tzkno9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: flex-start; overflow: visible; padding: 60px 45px 45px 45px; position: relative; width: 1739px; }\",\".framer-eYna9 .framer-45rvr3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 90px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eYna9 .framer-xoapjy, .framer-eYna9 .framer-atk027 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-eYna9 .framer-1hrbo84, .framer-eYna9 .framer-dq2md3, .framer-eYna9 .framer-sw07o, .framer-eYna9 .framer-d0h4di, .framer-eYna9 .framer-1csikhq, .framer-eYna9 .framer-1toaqvb, .framer-eYna9 .framer-1gyiy6c, .framer-eYna9 .framer-2n51n6, .framer-eYna9 .framer-qzo5wc, .framer-eYna9 .framer-1iy6lw2, .framer-eYna9 .framer-7xkd1u, .framer-eYna9 .framer-t3k29y, .framer-eYna9 .framer-alu0i5, .framer-eYna9 .framer-1ceoznu, .framer-eYna9 .framer-1lb7vbx, .framer-eYna9 .framer-hx5jfe, .framer-eYna9 .framer-1aefoog, .framer-eYna9 .framer-ccb4ry, .framer-eYna9 .framer-1l2c1yr, .framer-eYna9 .framer-leu4j6, .framer-eYna9 .framer-r58er { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-eYna9 .framer-4qfl2h, .framer-eYna9 .framer-amxjsg, .framer-eYna9 .framer-1qzm04p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-eYna9 .framer-q94m4a, .framer-eYna9 .framer-7d2z53 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-eYna9 .framer-17hvws1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-eYna9 .framer-1w13uoy, .framer-eYna9 .framer-edm6mr, .framer-eYna9 .framer-1uq5trj { 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; text-decoration: none; width: min-content; }\",\".framer-eYna9 .framer-1vhwjco-container, .framer-eYna9 .framer-ihg8ok-container, .framer-eYna9 .framer-akkxgy-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-eYna9 .framer-3cuc8i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eYna9 .framer-pjvktb { flex: none; height: 1px; max-width: 1200px; overflow: visible; position: relative; width: 100%; }\",\".framer-eYna9 .framer-1ko5zxf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 27px; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eYna9 .framer-13ny01g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eYna9 .framer-1scy5wq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-eYna9 .framer-1ytl640 { flex: none; height: auto; max-width: 1200px; overflow: visible; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-eYna9 .framer-1f2dq1v-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-eYna9 .framer-1gur8j2 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-eYna9 .framer-1g16fc2 { flex: none; height: auto; max-width: 1200px; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-eYna9.framer-v-19fz8ef.framer-1tzkno9 { padding: 60px 30px 45px 30px; width: 810px; }\",\".framer-eYna9.framer-v-19fz8ef .framer-45rvr3 { gap: 45px; }\",\".framer-eYna9.framer-v-1sm9ysu.framer-1tzkno9 { padding: 60px 25px 90px 25px; width: 390px; }\",\".framer-eYna9.framer-v-1sm9ysu .framer-45rvr3 { flex-direction: column; flex-wrap: nowrap; gap: 30px; }\",\".framer-eYna9.framer-v-1sm9ysu .framer-xoapjy, .framer-eYna9.framer-v-1sm9ysu .framer-4qfl2h, .framer-eYna9.framer-v-1sm9ysu .framer-atk027, .framer-eYna9.framer-v-1sm9ysu .framer-amxjsg { width: 100%; }\",\".framer-eYna9.framer-v-1sm9ysu .framer-dq2md3, .framer-eYna9.framer-v-1sm9ysu .framer-sw07o, .framer-eYna9.framer-v-1sm9ysu .framer-d0h4di, .framer-eYna9.framer-v-1sm9ysu .framer-1csikhq, .framer-eYna9.framer-v-1sm9ysu .framer-1toaqvb, .framer-eYna9.framer-v-1sm9ysu .framer-2n51n6, .framer-eYna9.framer-v-1sm9ysu .framer-qzo5wc, .framer-eYna9.framer-v-1sm9ysu .framer-1iy6lw2, .framer-eYna9.framer-v-1sm9ysu .framer-7xkd1u, .framer-eYna9.framer-v-1sm9ysu .framer-t3k29y, .framer-eYna9.framer-v-1sm9ysu .framer-alu0i5, .framer-eYna9.framer-v-1sm9ysu .framer-1ceoznu { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 515\n * @framerIntrinsicWidth 1739\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FO6NNLwSO\":{\"layout\":[\"fixed\",\"auto\"]},\"K2Grx4W7F\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerDULm3Dr6D=withCSS(Component,css,\"framer-eYna9\");export default FramerDULm3Dr6D;FramerDULm3Dr6D.displayName=\"Footer\";FramerDULm3Dr6D.defaultProps={height:515,width:1739};addPropertyControls(FramerDULm3Dr6D,{variant:{options:[\"XQp_PcGcP\",\"FO6NNLwSO\",\"K2Grx4W7F\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerDULm3Dr6D,[{explicitInter:true,fonts:[{family:\"Work Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/worksans/v23/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K3vXNi0Dp6_cOyA.woff2\",weight:\"500\"},{family:\"Work Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/worksans/v23/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32KxfXNi0Dp6_cOyA.woff2\",weight:\"300\"}]},...PhosphorFonts,...TimeDateFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDULm3Dr6D\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1739\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"515\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FO6NNLwSO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"K2Grx4W7F\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{ControlType}from\"framer\";export function getBorderStyle({color,width=0,widthPerSide=false,widthTop=0,widthRight=0,widthBottom=0,widthLeft=0,style=\"none\"}={}){const result={};if(color){result[\"--framer-border-color\"]=color;result.borderStyle=style;if(widthPerSide){result.borderTopWidth=widthTop;result.borderRightWidth=widthRight;result.borderBottomWidth=widthBottom;result.borderLeftWidth=widthLeft;}else{result.borderTopWidth=width;result.borderRightWidth=width;result.borderBottomWidth=width;result.borderLeftWidth=width;}}else{result.border=\"none\";}return result;}export const borderControls={color:{type:ControlType.Color,defaultValue:\"#444\"},width:{type:ControlType.FusedNumber,toggleKey:\"widthPerSide\",toggleTitles:[\"Width\",\"Width per side\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],defaultValue:1,min:0},style:{type:ControlType.Enum,options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"double\"],defaultValue:\"solid\"}};\nexport const __FramerMetadata__ = {\"exports\":{\"BorderOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"borderControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBorderStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./border.map", "import{ControlType}from\"framer\";export function getFocusStyle({color,width,style,offset}={}){const result={};if(color){result[\"--framer-focus-outline\"]=`${width}px ${style} ${color}`;result[\"--framer-focus-outline-offset\"]=`${offset}px`;}return result;}export const focusControls={color:{type:ControlType.Color,defaultValue:\"#09f\"},width:{type:ControlType.Number,displayStepper:true,defaultValue:1,min:0},style:{type:ControlType.Enum,options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"double\"],defaultValue:\"solid\"},offset:{type:ControlType.Number,displayStepper:true}};\nexport const __FramerMetadata__ = {\"exports\":{\"focusControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFocusStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"FocusOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./focus.map", "import{ControlType}from\"framer\";export function getHoverStyle({fillColor,textColor,borderColor}={}){return{\"--framer-hover-background-color\":fillColor,\"--framer-hover-color\":textColor,\"--framer-hover-border-color\":borderColor};}export const hoverControls={fillColor:{type:ControlType.Color,title:\"Fill\",optional:true},textColor:{type:ControlType.Color,title:\"Text\",optional:true},borderColor:{type:ControlType.Color,title:\"Border\",optional:true}};\nexport const __FramerMetadata__ = {\"exports\":{\"HoverOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getHoverStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"hoverControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hover.map", "import{ControlType}from\"framer\";export function getPaddingStyle({padding=0,paddingPerSide=false,paddingTop=0,paddingRight=0,paddingBottom=0,paddingLeft=0}={}){if(paddingPerSide){return{paddingTop:paddingTop,paddingRight:paddingRight,paddingBottom:paddingBottom,paddingLeft:paddingLeft};}else{return{paddingTop:padding,paddingRight:padding,paddingBottom:padding,paddingLeft:padding};}}export const paddingControls={padding:{type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],defaultValue:10,min:0}};\nexport const __FramerMetadata__ = {\"exports\":{\"getPaddingStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./padding.map", "import{ControlType}from\"framer\";export function getRadiusStyle({radius=0,radiusPerCorner=false,radiusTopLeft=0,radiusTopRight=0,radiusBottomRight=0,radiusBottomLeft=0}={}){const result={};if(radiusPerCorner){result.borderTopLeftRadius=radiusTopLeft;result.borderTopRightRadius=radiusTopRight;result.borderBottomRightRadius=radiusBottomRight;result.borderBottomLeftRadius=radiusBottomLeft;}else{result.borderTopLeftRadius=radius;result.borderTopRightRadius=radius;result.borderBottomRightRadius=radius;result.borderBottomLeftRadius=radius;}return result;}export const radiusControls={radius:{type:ControlType.FusedNumber,toggleKey:\"radiusPerConrner\",toggleTitles:[\"Radius\",\"Radius per side\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\",],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],defaultValue:10,min:0}};\nexport const __FramerMetadata__ = {\"exports\":{\"getRadiusStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"radiusControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./radius.map", "var e,t;import{jsx as o,jsxs as l}from\"react/jsx-runtime\";import{addPropertyControls as r,ControlType as i,// @ts-ignore Internal function\nuseLocaleInfo as a,withCSS as n}from\"framer\";import{useId as s,useRef as u,useState as d}from\"react\";import{getBorderStyle as c,borderControls as p}from\"https://framerusercontent.com/modules/cuKUFdzXlhvw8OVOBeAc/VOfaY9LHiTLKveiePI7P/border.js\";import{getFocusStyle as f,focusControls as m}from\"https://framerusercontent.com/modules/9muYaW1MvHoRQJ0P7dkP/V2GVvLqiMxXRSxszkCSa/focus.js\";import{getHoverStyle as h,hoverControls as v}from\"https://framerusercontent.com/modules/YfmtnpWjJrP37sQ18QUZ/9Y2P24U2SBIbf2fPVsOX/hover.js\";import{getPaddingStyle as g,paddingControls as y}from\"https://framerusercontent.com/modules/wjZLfSMaP1TvJDu5PCwr/6SPClu354QJPCp6Xj5C0/padding.js\";import{getRadiusStyle as b,radiusControls as w}from\"https://framerusercontent.com/modules/N6MwtHbWoiZJNn1xpqxu/58OHv7BfCzgeBhiv1TYu/radius.js\";let C=\"framer-locale-picker\";function x(e){return\"number\"==typeof e?`${e}px`:e;}function j({type:e,color:t,image:l,size:r}){return\"custom\"===e&&l?/*#__PURE__*/o(\"img\",{...l,width:r,height:r}):/*#__PURE__*/o(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",width:r,height:r,fill:t,children:/*#__PURE__*/o(\"path\",{d:\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm87.63,96H175.8c-1.41-28.46-10.27-55.47-25.12-77A88.2,88.2,0,0,1,215.63,120ZM128,215.89c-18.73-20.27-30.09-49-31.77-79.89h63.54C158.09,166.87,146.73,195.62,128,215.89ZM96.23,120c1.68-30.87,13-59.62,31.77-79.89,18.73,20.27,30.09,49,31.77,79.89Zm9.09-77C90.47,64.53,81.61,91.54,80.2,120H40.37A88.2,88.2,0,0,1,105.32,43ZM40.37,136H80.2c1.41,28.46,10.27,55.47,25.12,77A88.2,88.2,0,0,1,40.37,136Zm110.31,77c14.85-21.56,23.71-48.57,25.12-77h39.83A88.2,88.2,0,0,1,150.68,213Z\"})});}function S({type:e,color:t,image:l,size:r}){return\"custom\"===e&&l?/*#__PURE__*/o(\"img\",{...l,width:r,height:r}):/*#__PURE__*/o(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 12 12\",width:r,height:r,children:/*#__PURE__*/o(\"path\",{d:\"M 2 4.5 L 6 8.5 L 10 4.5\",fill:\"none\",stroke:t,strokeWidth:1.5,strokeLinecap:\"round\",strokeLinejoin:\"round\"})});}!function(e){e.Default=\"default\",e.Custom=\"custom\";}(e||(e={})),function(t){t.Default=\"default\",t.Custom=\"custom\";}(t||(t={}));/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any\n * @framerDisableUnlink\n * @framerIntrinsicWidth 120\n * @framerIntrinsicHeight 34\n */let T=n(({font:e,fillColor:t,textColor:r,icon:i,caret:n,options:{title:p,gap:m,border:v,hover:y,focus:w},style:x,...T})=>{var V,k;let $=s(),{activeLocale:F,locales:N,setLocale:O}=a(),Z=null!==(V=null==F?void 0:F.id)&&void 0!==V?V:\"default\",L=u(Z),[z,A]=d(Z),B=N.find(e=>e.id===z);return L.current!==Z&&(L.current=Z,z!==Z&&A(Z)),/*#__PURE__*/l(\"div\",{className:C,style:x,children:[/*#__PURE__*/o(\"label\",{htmlFor:$,children:\"Select Language\"}),/*#__PURE__*/o(\"select\",{id:$,value:z,onChange:function(e){let t=e.target.value;A(t);let o=N.find(e=>e.id===t);O(o);},children:N.map(e=>/*#__PURE__*/o(\"option\",{value:e.id,children:e.name},e.id))}),/*#__PURE__*/l(\"div\",{className:\"input\",style:{...e,\"--framer-background-color\":t,\"--framer-color\":r,...g(T),...b(T),...c(v),...h(y),...f(w),gap:m},children:[i&&/*#__PURE__*/o(\"div\",{className:\"icon\",children:/*#__PURE__*/o(j,{...i})}),p&&/*#__PURE__*/o(\"div\",{className:\"title\",children:null!==(k=null==B?void 0:B.name)&&void 0!==k?k:\"English\"}),n&&/*#__PURE__*/o(\"div\",{className:\"caret\",children:/*#__PURE__*/o(S,{...n})})]})]});},[`\n            .${C} {\n                position: relative;\n            }\n        `,`\n            .${C} label {\n                position: absolute;\n                width: 1px;\n                height: 1px;\n                margin: -1px;\n                overflow: hidden;\n                white-space: nowrap;\n                clip: rect(0 0 0 0);\n                clip-path: inset(50%);\n            }\n        `,`\n            .${C} select {\n                appearance: none;\n                position: absolute;\n                opacity: 0;\n                top: 0;\n                right: 0;\n                bottom: 0;\n                left: 0;\n                cursor: inherit;\n                width: 100%;\n            }\n        `,`\n            .${C} .input {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                height: 100%;\n                pointer-events: none;\n                overflow: hidden;\n                background-color: var(--framer-background-color);\n                color: var(--framer-color);\n                border-color: var(--framer-border-color);\n            }\n        `,`\n            .${C} select:focus-visible + .input  {\n                outline: var(--framer-focus-outline, none);\n                outline-offset: var(--framer-focus-outline-offset);\n            }\n        `,`\n            .${C}:hover .input {\n                background-color: var(--framer-hover-background-color, var(--framer-background-color));\n                color: var(--framer-hover-color, var(--framer-color));\n                border-color: var(--framer-hover-border-color, var(--framer-border-color));\n            }\n        `,`\n            .${C} .title {\n                flex: 1 1 auto;\n                white-space: nowrap;\n                text-overflow: ellipsis;\n                overflow: hidden;\n            }\n        `,`\n            .${C} .icon, .${C} .caret {\n                display: flex;\n                align-items: center;\n            }\n        `]);T.displayName=\"Locale Selector\",r(T,{font:{// @ts-ignore\ntype:i.Font,controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:\"1.5em\"}},fillColor:{type:i.Color,title:\"Fill\",optional:!0,defaultValue:\"#eee\"},textColor:{type:i.Color,title:\"Text\",defaultValue:\"#000\"},...y,...w,icon:{type:i.Object,buttonTitle:\"Size, Color\",optional:!0,controls:{type:{type:i.Enum,title:\"Icon\",options:Object.values(e),optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:!0,defaultValue:\"default\"},color:{type:i.Color,displaySegmentedControl:!0,defaultValue:\"#000\",hidden:e=>\"default\"!==e.type},image:{type:i.ResponsiveImage,title:\"File\",allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:e=>\"custom\"!==e.type},size:{type:i.Number,displayStepper:!0,defaultValue:18}}},caret:{type:i.Object,buttonTitle:\"Size, Color\",optional:!0,controls:{type:{type:i.Enum,title:\"Icon\",options:Object.values(t),optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:!0,defaultValue:\"default\"},color:{type:i.Color,displaySegmentedControl:!0,defaultValue:\"#000\",hidden:e=>\"default\"!==e.type},image:{type:i.ResponsiveImage,title:\"File\",allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:e=>\"custom\"!==e.type},size:{type:i.Number,displayStepper:!0,defaultValue:12}},defaultValue:{}},options:{type:i.Object,title:\"Options\",buttonTitle:\"Border, Hover\",controls:{title:{type:i.Boolean,defaultValue:!0},gap:{type:i.Number,displayStepper:!0,defaultValue:5},border:{type:i.Object,buttonTitle:\"Color, Width\",optional:!0,controls:p},hover:{type:i.Object,buttonTitle:\"Fill, Border\",optional:!0,controls:v},focus:{type:i.Object,buttonTitle:\"Color, Width\",controls:m}}}});export default T;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"LocaleSelector\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicHeight\":\"34\",\"framerDisableUnlink\":\"* @framerIntrinsicWidth 120\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LocaleSelector.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,// @ts-ignore Internal function\nuseLocaleInfo,withCSS}from\"framer\";import{useId,useRef,useState}from\"react\";import{getBorderStyle,borderControls}from\"https://framerusercontent.com/modules/cuKUFdzXlhvw8OVOBeAc/VOfaY9LHiTLKveiePI7P/border.js\";import{getFocusStyle,focusControls}from\"https://framerusercontent.com/modules/9muYaW1MvHoRQJ0P7dkP/V2GVvLqiMxXRSxszkCSa/focus.js\";import{getHoverStyle,hoverControls}from\"https://framerusercontent.com/modules/YfmtnpWjJrP37sQ18QUZ/9Y2P24U2SBIbf2fPVsOX/hover.js\";import{getPaddingStyle,paddingControls}from\"https://framerusercontent.com/modules/wjZLfSMaP1TvJDu5PCwr/6SPClu354QJPCp6Xj5C0/padding.js\";import{getRadiusStyle,radiusControls}from\"https://framerusercontent.com/modules/N6MwtHbWoiZJNn1xpqxu/58OHv7BfCzgeBhiv1TYu/radius.js\";const className=\"framer-locale-picker\";function addPixel(value){if(typeof value===\"number\"){return`${value}px`;}return value;}var IconType;(function(IconType){IconType[\"Default\"]=\"default\";IconType[\"Custom\"]=\"custom\";})(IconType||(IconType={}));function Icon({type,color,image,size}){if(type===IconType.Custom&&image){return /*#__PURE__*/ _jsx(\"img\",{...image,width:size,height:size});}return /*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",width:size,height:size,fill:color,children:/*#__PURE__*/ _jsx(\"path\",{d:\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm87.63,96H175.8c-1.41-28.46-10.27-55.47-25.12-77A88.2,88.2,0,0,1,215.63,120ZM128,215.89c-18.73-20.27-30.09-49-31.77-79.89h63.54C158.09,166.87,146.73,195.62,128,215.89ZM96.23,120c1.68-30.87,13-59.62,31.77-79.89,18.73,20.27,30.09,49,31.77,79.89Zm9.09-77C90.47,64.53,81.61,91.54,80.2,120H40.37A88.2,88.2,0,0,1,105.32,43ZM40.37,136H80.2c1.41,28.46,10.27,55.47,25.12,77A88.2,88.2,0,0,1,40.37,136Zm110.31,77c14.85-21.56,23.71-48.57,25.12-77h39.83A88.2,88.2,0,0,1,150.68,213Z\"})});}var CaretType;(function(CaretType){CaretType[\"Default\"]=\"default\";CaretType[\"Custom\"]=\"custom\";})(CaretType||(CaretType={}));function Caret({type,color,image,size}){if(type===CaretType.Custom&&image){return /*#__PURE__*/ _jsx(\"img\",{...image,width:size,height:size});}return /*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 12 12\",width:size,height:size,children:/*#__PURE__*/ _jsx(\"path\",{d:\"M 2 4.5 L 6 8.5 L 10 4.5\",fill:\"none\",stroke:color,strokeWidth:1.5,strokeLinecap:\"round\",strokeLinejoin:\"round\"})});}/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any\n * @framerDisableUnlink\n * @framerIntrinsicWidth 120\n * @framerIntrinsicHeight 34\n */ const LocaleSelector=withCSS(({font,fillColor,textColor,icon,caret,options:{title,gap,border,hover,focus},style,...props})=>{const id=useId();const{activeLocale,locales,setLocale}=useLocaleInfo();var ref;const activeLocaleId=(ref=activeLocale===null||activeLocale===void 0?void 0:activeLocale.id)!==null&&ref!==void 0?ref:\"default\";const lastActiveLocaleId=useRef(activeLocaleId);// The useLocaleInfo hook updates the activeLocale variable inside\n// a startTransition to load the translations with Suspense. To make\n// the component feel responsive we update our own state without Suspense.\nconst[selectedLocaleId,setSelectedLocaleId]=useState(activeLocaleId);const selectedLocale=locales.find(locale=>locale.id===selectedLocaleId);// The active locale was updated. Ensure we update our internal state as well.\nif(lastActiveLocaleId.current!==activeLocaleId){lastActiveLocaleId.current=activeLocaleId;if(selectedLocaleId!==activeLocaleId){setSelectedLocaleId(activeLocaleId);}}function handleChange(event){const localeId=event.target.value;setSelectedLocaleId(localeId);const locale=locales.find(locale=>locale.id===localeId);setLocale(locale);}var ref1;return /*#__PURE__*/ _jsxs(\"div\",{className:className,style:style,children:[/*#__PURE__*/ _jsx(\"label\",{htmlFor:id,children:\"Select Language\"}),/*#__PURE__*/ _jsx(\"select\",{id:id,value:selectedLocaleId,onChange:handleChange,children:locales.map(locale=>/*#__PURE__*/ _jsx(\"option\",{value:locale.id,children:locale.name},locale.id))}),/*#__PURE__*/ _jsxs(\"div\",{className:\"input\",style:{...font,\"--framer-background-color\":fillColor,\"--framer-color\":textColor,...getPaddingStyle(props),...getRadiusStyle(props),...getBorderStyle(border),...getHoverStyle(hover),...getFocusStyle(focus),gap},children:[icon&&/*#__PURE__*/ _jsx(\"div\",{className:\"icon\",children:/*#__PURE__*/ _jsx(Icon,{...icon})}),title&&/*#__PURE__*/ _jsx(\"div\",{className:\"title\",children:(ref1=selectedLocale===null||selectedLocale===void 0?void 0:selectedLocale.name)!==null&&ref1!==void 0?ref1:\"English\"}),caret&&/*#__PURE__*/ _jsx(\"div\",{className:\"caret\",children:/*#__PURE__*/ _jsx(Caret,{...caret})})]})]});},[`\n            .${className} {\n                position: relative;\n            }\n        `,`\n            .${className} label {\n                position: absolute;\n                width: 1px;\n                height: 1px;\n                margin: -1px;\n                overflow: hidden;\n                white-space: nowrap;\n                clip: rect(0 0 0 0);\n                clip-path: inset(50%);\n            }\n        `,`\n            .${className} select {\n                appearance: none;\n                position: absolute;\n                opacity: 0;\n                top: 0;\n                right: 0;\n                bottom: 0;\n                left: 0;\n            }\n        `,`\n            .${className} .input {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                height: 100%;\n                pointer-events: none;\n                overflow: hidden;\n                background-color: var(--framer-background-color);\n                color: var(--framer-color);\n                border-color: var(--framer-border-color);\n            }\n        `,`\n            .${className} select:focus-visible + .input  {\n                outline: var(--framer-focus-outline, none);\n                outline-offset: var(--framer-focus-outline-offset);\n            }\n        `,`\n            .${className}:hover .input {\n                background-color: var(--framer-hover-background-color, var(--framer-background-color));\n                color: var(--framer-hover-color, var(--framer-color));\n                border-color: var(--framer-hover-border-color, var(--framer-border-color));\n            }\n        `,`\n            .${className} .title {\n                flex: 1 1 auto;\n                white-space: nowrap;\n                text-overflow: ellipsis;\n                overflow: hidden;\n            }\n        `,`\n            .${className} .icon, .${className} .caret {\n                display: flex;\n                align-items: center;\n            }\n        `,]);LocaleSelector.displayName=\"Locale Selector\";addPropertyControls(LocaleSelector,{font:{// @ts-ignore\ntype:ControlType.Font,controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:\"1.5em\"}},fillColor:{type:ControlType.Color,title:\"Fill\",optional:true,defaultValue:\"#eee\"},textColor:{type:ControlType.Color,title:\"Text\",defaultValue:\"#000\"},...paddingControls,...radiusControls,icon:{type:ControlType.Object,buttonTitle:\"Size, Color\",optional:true,controls:{type:{type:ControlType.Enum,title:\"Icon\",options:Object.values(IconType),optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true,defaultValue:\"default\"},color:{type:ControlType.Color,displaySegmentedControl:true,defaultValue:\"#000\",hidden:props=>props.type!==IconType.Default},image:{type:ControlType.ResponsiveImage,title:\"File\",allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.type!==IconType.Custom},size:{type:ControlType.Number,displayStepper:true,defaultValue:18}}},caret:{type:ControlType.Object,buttonTitle:\"Size, Color\",optional:true,controls:{type:{type:ControlType.Enum,title:\"Icon\",options:Object.values(CaretType),optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true,defaultValue:\"default\"},color:{type:ControlType.Color,displaySegmentedControl:true,defaultValue:\"#000\",hidden:props=>props.type!==CaretType.Default},image:{type:ControlType.ResponsiveImage,title:\"File\",allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.type!==CaretType.Custom},size:{type:ControlType.Number,displayStepper:true,defaultValue:12}},defaultValue:{}},options:{type:ControlType.Object,title:\"Options\",buttonTitle:\"Border, Hover\",controls:{title:{type:ControlType.Boolean,defaultValue:true},gap:{type:ControlType.Number,displayStepper:true,defaultValue:5},border:{type:ControlType.Object,buttonTitle:\"Color, Width\",optional:true,controls:borderControls},hover:{type:ControlType.Object,buttonTitle:\"Fill, Border\",optional:true,controls:hoverControls},focus:{type:ControlType.Object,buttonTitle:\"Color, Width\",controls:focusControls}}}});export default LocaleSelector;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"LocaleSelector\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"* @framerIntrinsicWidth 120\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicHeight\":\"34\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LocaleSelector.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[];export const css=[\".framer-ZFmPh .framer-styles-preset-167d15e:not(.rich-text-wrapper), .framer-ZFmPh .framer-styles-preset-167d15e.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-decoration: underline; --framer-link-text-decoration: none; }\"];export const className=\"framer-ZFmPh\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Utile Display Semibold\"]);export const fonts=[{family:\"Utile Display Semibold\",url:\"https://framerusercontent.com/assets/XLTlFzkZABEMlnvtJhYfk1KcScM.woff2\"}];export const css=['.framer-eMkcP .framer-styles-preset-2qyzmh:not(.rich-text-wrapper), .framer-eMkcP .framer-styles-preset-2qyzmh.rich-text-wrapper p { --framer-font-family: \"Utile Display Semibold\", \"Utile Display Semibold Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.3px; --framer-line-height: 28px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: capitalize; }'];export const className=\"framer-eMkcP\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Work Sans-regular\",\"GF;Work Sans-700\",\"GF;Work Sans-700italic\",\"GF;Work Sans-italic\"]);export const fonts=[{family:\"Work Sans\",style:\"normal\",url:\"https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNi0Dp6_cOyA.woff2\",weight:\"400\"},{family:\"Work Sans\",style:\"normal\",url:\"https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K67QNi0Dp6_cOyA.woff2\",weight:\"700\"},{family:\"Work Sans\",style:\"italic\",url:\"https://fonts.gstatic.com/s/worksans/v19/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUOWwJpo3ZKyDSQQ.woff2\",weight:\"700\"},{family:\"Work Sans\",style:\"italic\",url:\"https://fonts.gstatic.com/s/worksans/v19/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3msJpo3ZKyDSQQ.woff2\",weight:\"400\"}];export const css=['.framer-9bat9 .framer-styles-preset-1kblrmf:not(.rich-text-wrapper), .framer-9bat9 .framer-styles-preset-1kblrmf.rich-text-wrapper p { --framer-font-family: \"Work Sans\", \"Work Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Work Sans\", \"Work Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Work Sans\", \"Work Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Work Sans\", \"Work Sans Placeholder\", sans-serif; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 1px; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: uppercase; }'];export const className=\"framer-9bat9\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{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,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AOw94_IgO\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Propiedades\"})})})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AOw94_IgO\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Propiedades\"})})})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AOw94_IgO\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Propiedades\"})})})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AOw94_IgO\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Propiedades\"})})})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AOw94_IgO\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Propiedades\"})})})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2qyzmh\",\"data-styles-preset\":\"k3ryy4LI4\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AOw94_IgO\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Propiedades\"})})})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lDZlLsLZA\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Ubicaciones\"})})})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lDZlLsLZA\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Ubicaciones\"})})})});export const v8=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lDZlLsLZA\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Ubicaciones\"})})})});export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lDZlLsLZA\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Ubicaciones\"})})})});export const v10=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lDZlLsLZA\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Ubicaciones\"})})})});export const v11=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2qyzmh\",\"data-styles-preset\":\"k3ryy4LI4\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lDZlLsLZA\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Ubicaciones\"})})})});export const v12=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u7pt51U7V\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Servicios\"})})})});export const v13=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u7pt51U7V\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Servicios\"})})})});export const v14=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u7pt51U7V\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Servicios\"})})})});export const v15=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u7pt51U7V\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Servicios\"})})})});export const v16=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u7pt51U7V\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Servicios\"})})})});export const v17=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2qyzmh\",\"data-styles-preset\":\"k3ryy4LI4\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u7pt51U7V\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Servicios\"})})})});export const v18=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mgWImbcfk\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Nosotros\"})})})});export const v19=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mgWImbcfk\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Nosotros\"})})})});export const v20=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mgWImbcfk\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Nosotros\"})})})});export const v21=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mgWImbcfk\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Nosotros\"})})})});export const v22=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mgWImbcfk\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Nosotros\"})})})});export const v23=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2qyzmh\",\"data-styles-preset\":\"k3ryy4LI4\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mgWImbcfk\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Nosotros\"})})})});export const v24=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cfizbFwFH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Contacto\"})})})});export const v25=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cfizbFwFH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Contacto\"})})})});export const v26=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cfizbFwFH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Contacto\"})})})});export const v27=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cfizbFwFH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Contacto\"})})})});export const v28=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cfizbFwFH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Contacto\"})})})});export const v29=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2qyzmh\",\"data-styles-preset\":\"k3ryy4LI4\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cfizbFwFH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Contacto\"})})})});export const v30=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AOw94_IgO\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Propiedades\"})})})});export const v31=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AOw94_IgO\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Propiedades\"})})})});export const v32=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AOw94_IgO\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Propiedades\"})})})});export const v33=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AOw94_IgO\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Propiedades\"})})})});export const v34=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"v8Is4YTfs\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Ubicaciones\"})})})});export const v35=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lDZlLsLZA\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Ubicaciones\"})})})});export const v36=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lDZlLsLZA\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Ubicaciones\"})})})});export const v37=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lDZlLsLZA\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Ubicaciones\"})})})});export const v38=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u7pt51U7V\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Servicios\"})})})});export const v39=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u7pt51U7V\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Servicios\"})})})});export const v40=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u7pt51U7V\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Servicios\"})})})});export const v41=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u7pt51U7V\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Servicios\"})})})});export const v42=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mgWImbcfk\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Nosotros\"})})})});export const v43=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mgWImbcfk\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Nosotros\"})})})});export const v44=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mgWImbcfk\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Nosotros\"})})})});export const v45=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mgWImbcfk\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Nosotros\"})})})});export const v46=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cfizbFwFH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Contacto\"})})})});export const v47=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cfizbFwFH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Contacto\"})})})});export const v48=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cfizbFwFH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Contacto\"})})})});export const v49=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cfizbFwFH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Contacto\"})})})});\nexport const __FramerMetadata__ = {\"exports\":{\"v32\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v47\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v28\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v40\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v44\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v25\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v27\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v30\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v38\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v33\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v21\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v19\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v46\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v34\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v35\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v48\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v31\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v49\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v24\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v43\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v42\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v26\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v37\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v23\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v29\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v39\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v36\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v18\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v20\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v45\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v22\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v41\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (61bac00)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./OxJREwf3p-0.js\";const cycleOrder=[\"MoJaDb2ui\",\"xLJ3jqVjJ\",\"PeBQZbLMO\"];const serializationHash=\"framer-9DLLn\";const variantClassNames={MoJaDb2ui:\"framer-v-f74brw\",PeBQZbLMO:\"framer-v-1u0n8rl\",xLJ3jqVjJ:\"framer-v-1c4xgar\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const valuesByLocaleId={bsRz4t4Yb:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};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 humanReadableVariantMap={\"Logo Only\":\"PeBQZbLMO\",\"Tex - White\":\"MoJaDb2ui\",\"Text - Black\":\"xLJ3jqVjJ\"};const getProps=({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:\"MoJaDb2ui\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"MoJaDb2ui\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"PeBQZbLMO\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-f74brw\",className,classNames)} framer-1kz9vi3`,\"data-framer-name\":\"Tex - White\",layoutDependency:layoutDependency,layoutId:\"MoJaDb2ui\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({PeBQZbLMO:{\"data-framer-name\":\"Logo Only\"},xLJ3jqVjJ:{\"data-framer-name\":\"Text - Black\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:666,intrinsicWidth:669,pixelHeight:1332,pixelWidth:1338,sizes:\"22px\",src:\"https://framerusercontent.com/images/1n0vguXv0MTlvaFCRN3FkY6I4o.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/1n0vguXv0MTlvaFCRN3FkY6I4o.png?scale-down-to=512 512w, https://framerusercontent.com/images/1n0vguXv0MTlvaFCRN3FkY6I4o.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/1n0vguXv0MTlvaFCRN3FkY6I4o.png 1338w\"},className:\"framer-ly2s1k\",\"data-framer-name\":\"Laurel\",layoutDependency:layoutDependency,layoutId:\"QPuikn3Sz\"}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-sbtp7y\",\"data-framer-name\":\"Text\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"l5dF0qZP0\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 125 11\"><path d=\"M 2.094 8.814 L 7.376 8.814 L 7.376 10.493 L 0 10.493 L 0 0.507 L 2.094 0.507 Z M 11.468 0.507 L 11.468 10.493 L 9.374 10.493 L 9.374 0.507 Z M 14.331 10.493 L 14.331 0.507 L 18.717 0.507 C 19.931 0.507 20.827 0.744 21.403 1.218 C 21.98 1.692 22.268 2.363 22.268 3.23 C 22.268 3.765 22.107 4.239 21.783 4.653 C 21.459 5.066 20.983 5.329 20.356 5.439 L 20.356 5.455 C 21.054 5.555 21.59 5.818 21.965 6.242 C 22.339 6.665 22.526 7.169 22.526 7.754 C 22.526 8.612 22.215 9.283 21.593 9.767 C 20.971 10.251 20.063 10.493 18.869 10.493 Z M 16.365 8.92 L 18.687 8.92 C 19.253 8.92 19.673 8.804 19.946 8.572 C 20.22 8.34 20.356 8.017 20.356 7.603 C 20.356 7.18 20.22 6.857 19.946 6.635 C 19.673 6.413 19.253 6.302 18.687 6.302 L 16.365 6.302 Z M 16.365 4.698 L 18.444 4.698 C 19.547 4.698 20.098 4.269 20.098 3.412 C 20.098 2.554 19.547 2.126 18.444 2.126 L 16.365 2.126 Z M 24.783 10.493 L 24.783 0.507 L 32.295 0.507 L 32.295 2.186 L 26.877 2.186 L 26.877 4.668 L 31.141 4.668 L 31.141 6.272 L 26.877 6.272 L 26.877 8.814 L 32.507 8.814 L 32.507 10.493 Z M 39.058 0.507 C 40.191 0.507 41.082 0.779 41.729 1.324 C 42.377 1.868 42.701 2.6 42.701 3.518 C 42.701 4.496 42.377 5.245 41.729 5.765 C 41.082 6.284 40.197 6.544 39.073 6.544 L 38.861 6.665 L 36.706 6.665 L 36.706 10.493 L 34.642 10.493 L 34.642 0.507 L 39.058 0.507 Z M 38.816 5.076 C 39.402 5.076 39.84 4.958 40.128 4.721 C 40.417 4.484 40.561 4.118 40.561 3.624 C 40.561 3.129 40.417 2.764 40.128 2.527 C 39.84 2.29 39.402 2.171 38.816 2.171 L 36.706 2.171 L 36.706 5.076 L 38.815 5.076 Z M 40.045 5.515 L 43.293 10.493 L 40.94 10.493 L 38.254 6.12 L 40.045 5.515 Z M 52.955 0.507 L 52.955 2.186 L 49.601 2.186 L 49.601 10.493 L 47.506 10.493 L 47.506 2.186 L 44.137 2.186 L 44.137 0.507 Z M 58.671 0.507 L 62.328 10.493 L 60.158 10.493 L 59.336 8.057 L 55.473 8.057 L 54.649 10.493 L 52.509 10.493 L 56.167 0.507 Z M 57.411 2.186 L 57.381 2.186 L 56.956 3.669 L 55.994 6.514 L 58.816 6.514 L 57.867 3.699 Z M 72.942 0.507 C 74.075 0.507 74.965 0.779 75.613 1.324 C 76.26 1.868 76.584 2.6 76.584 3.518 C 76.584 4.496 76.26 5.245 75.613 5.765 C 74.965 6.284 74.08 6.544 72.957 6.544 L 72.744 6.665 L 70.589 6.665 L 70.589 10.493 L 68.525 10.493 L 68.525 0.507 L 72.942 0.507 Z M 72.699 5.076 C 73.286 5.076 73.723 4.958 74.011 4.721 C 74.3 4.484 74.444 4.118 74.444 3.624 C 74.444 3.129 74.3 2.764 74.011 2.527 C 73.723 2.29 73.286 2.171 72.699 2.171 L 70.589 2.171 L 70.589 5.076 L 72.699 5.076 Z M 73.928 5.515 L 77.176 10.493 L 74.823 10.493 L 72.137 6.12 Z M 79.098 10.493 L 79.098 0.507 L 86.61 0.507 L 86.61 2.186 L 81.192 2.186 L 81.192 4.668 L 85.457 4.668 L 85.457 6.272 L 81.192 6.272 L 81.192 8.814 L 86.823 8.814 L 86.823 10.493 Z M 87.834 10.493 L 91.492 0.507 L 93.996 0.507 L 97.653 10.493 L 95.483 10.493 L 93.192 3.699 L 92.736 2.186 L 92.706 2.186 L 92.281 3.669 L 89.974 10.493 Z M 89.989 8.057 L 89.989 6.514 L 95.483 6.514 L 95.483 8.057 Z M 101.488 0.507 L 101.488 8.814 L 106.769 8.814 L 106.769 10.493 L 99.394 10.493 L 99.394 0.507 Z M 114.656 0.507 L 114.656 2.186 L 111.302 2.186 L 111.302 10.493 L 109.207 10.493 L 109.207 2.186 L 105.838 2.186 L 105.838 0.507 Z M 124.5 0.507 L 120.949 6.756 L 120.949 10.493 L 118.854 10.493 L 118.854 6.756 L 115.303 0.507 L 117.534 0.507 L 119.143 3.487 L 119.902 5.061 L 120.676 3.487 L 122.284 0.507 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:4073171690,withExternalLayout:true,...addPropertyOverrides({xLJ3jqVjJ:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 125 11\"><path d=\"M 2.094 8.814 L 7.376 8.814 L 7.376 10.493 L 0 10.493 L 0 0.507 L 2.094 0.507 Z M 11.468 0.507 L 11.468 10.493 L 9.374 10.493 L 9.374 0.507 Z M 14.331 10.493 L 14.331 0.507 L 18.717 0.507 C 19.931 0.507 20.827 0.744 21.403 1.218 C 21.98 1.692 22.268 2.363 22.268 3.23 C 22.268 3.765 22.107 4.239 21.783 4.653 C 21.459 5.066 20.983 5.329 20.356 5.439 L 20.356 5.455 C 21.054 5.555 21.59 5.818 21.965 6.242 C 22.339 6.665 22.526 7.169 22.526 7.754 C 22.526 8.612 22.215 9.283 21.593 9.767 C 20.971 10.251 20.063 10.493 18.869 10.493 Z M 16.365 8.92 L 18.687 8.92 C 19.253 8.92 19.673 8.804 19.946 8.572 C 20.22 8.34 20.356 8.017 20.356 7.603 C 20.356 7.18 20.22 6.857 19.946 6.635 C 19.673 6.413 19.253 6.302 18.687 6.302 L 16.365 6.302 Z M 16.365 4.698 L 18.444 4.698 C 19.547 4.698 20.098 4.269 20.098 3.412 C 20.098 2.554 19.547 2.126 18.444 2.126 L 16.365 2.126 Z M 24.783 10.493 L 24.783 0.507 L 32.295 0.507 L 32.295 2.186 L 26.877 2.186 L 26.877 4.668 L 31.141 4.668 L 31.141 6.272 L 26.877 6.272 L 26.877 8.814 L 32.507 8.814 L 32.507 10.493 Z M 39.058 0.507 C 40.191 0.507 41.082 0.779 41.729 1.324 C 42.377 1.868 42.701 2.6 42.701 3.518 C 42.701 4.496 42.377 5.245 41.729 5.765 C 41.082 6.284 40.197 6.544 39.073 6.544 L 38.861 6.665 L 36.706 6.665 L 36.706 10.493 L 34.642 10.493 L 34.642 0.507 L 39.058 0.507 Z M 38.816 5.076 C 39.402 5.076 39.84 4.958 40.128 4.721 C 40.417 4.484 40.561 4.118 40.561 3.624 C 40.561 3.129 40.417 2.764 40.128 2.527 C 39.84 2.29 39.402 2.171 38.816 2.171 L 36.706 2.171 L 36.706 5.076 L 38.815 5.076 Z M 40.045 5.515 L 43.293 10.493 L 40.94 10.493 L 38.254 6.12 L 40.045 5.515 Z M 52.955 0.507 L 52.955 2.186 L 49.601 2.186 L 49.601 10.493 L 47.506 10.493 L 47.506 2.186 L 44.137 2.186 L 44.137 0.507 Z M 58.671 0.507 L 62.328 10.493 L 60.158 10.493 L 59.336 8.057 L 55.473 8.057 L 54.649 10.493 L 52.509 10.493 L 56.167 0.507 Z M 57.411 2.186 L 57.381 2.186 L 56.956 3.669 L 55.994 6.514 L 58.816 6.514 L 57.867 3.699 Z M 72.942 0.507 C 74.075 0.507 74.965 0.779 75.613 1.324 C 76.26 1.868 76.584 2.6 76.584 3.518 C 76.584 4.496 76.26 5.245 75.613 5.765 C 74.965 6.284 74.08 6.544 72.957 6.544 L 72.744 6.665 L 70.589 6.665 L 70.589 10.493 L 68.525 10.493 L 68.525 0.507 L 72.942 0.507 Z M 72.699 5.076 C 73.286 5.076 73.723 4.958 74.011 4.721 C 74.3 4.484 74.444 4.118 74.444 3.624 C 74.444 3.129 74.3 2.764 74.011 2.527 C 73.723 2.29 73.286 2.171 72.699 2.171 L 70.589 2.171 L 70.589 5.076 L 72.699 5.076 Z M 73.928 5.515 L 77.176 10.493 L 74.823 10.493 L 72.137 6.12 Z M 79.098 10.493 L 79.098 0.507 L 86.61 0.507 L 86.61 2.186 L 81.192 2.186 L 81.192 4.668 L 85.457 4.668 L 85.457 6.272 L 81.192 6.272 L 81.192 8.814 L 86.823 8.814 L 86.823 10.493 Z M 87.834 10.493 L 91.492 0.507 L 93.996 0.507 L 97.653 10.493 L 95.483 10.493 L 93.192 3.699 L 92.736 2.186 L 92.706 2.186 L 92.281 3.669 L 89.974 10.493 Z M 89.989 8.057 L 89.989 6.514 L 95.483 6.514 L 95.483 8.057 Z M 101.488 0.507 L 101.488 8.814 L 106.769 8.814 L 106.769 10.493 L 99.394 10.493 L 99.394 0.507 Z M 114.656 0.507 L 114.656 2.186 L 111.302 2.186 L 111.302 10.493 L 109.207 10.493 L 109.207 2.186 L 105.838 2.186 L 105.838 0.507 Z M 124.5 0.507 L 120.949 6.756 L 120.949 10.493 L 118.854 10.493 L 118.854 6.756 L 115.303 0.507 L 117.534 0.507 L 119.143 3.487 L 119.902 5.061 L 120.676 3.487 L 122.284 0.507 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:2166309491}},baseVariant,gestureVariant)})]})})})})});});const css=['.framer-9DLLn [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9DLLn .framer-1kz9vi3 { display: block; }\",\".framer-9DLLn.framer-f74brw { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-9DLLn .framer-ly2s1k { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); overflow: visible; position: relative; width: 22px; }\",\".framer-9DLLn .framer-sbtp7y { flex: none; height: 11px; position: relative; width: 125px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9DLLn.framer-f74brw { gap: 0px; } .framer-9DLLn.framer-f74brw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9DLLn.framer-f74brw > :first-child { margin-left: 0px; } .framer-9DLLn.framer-f74brw > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 22\n * @framerIntrinsicWidth 157\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"xLJ3jqVjJ\":{\"layout\":[\"auto\",\"auto\"]},\"PeBQZbLMO\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n */const FramerOxJREwf3p=withCSS(Component,css,\"framer-9DLLn\");export default FramerOxJREwf3p;FramerOxJREwf3p.displayName=\"Navigation Bar / Logo\";FramerOxJREwf3p.defaultProps={height:22,width:157};addPropertyControls(FramerOxJREwf3p,{variant:{options:[\"MoJaDb2ui\",\"xLJ3jqVjJ\",\"PeBQZbLMO\"],optionTitles:[\"Tex - White\",\"Text - Black\",\"Logo Only\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerOxJREwf3p,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOxJREwf3p\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"157\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xLJ3jqVjJ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"PeBQZbLMO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"22\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OxJREwf3p.map", "// Generated by Framer (c7eb1b9)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Link,RichText,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import LocaleSelector from\"https://framerusercontent.com/modules/57FhkldN9P7x88MqAEaR/MaCiz8nzfVQ2yBstuToQ/LocaleSelector.js\";import LocaleSelector1 from\"https://framerusercontent.com/modules/57FhkldN9P7x88MqAEaR/QntFAqtwwHPSDPIdxU3o/LocaleSelector.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/aMeh4oaLDmtxS3d0CUc3/jERjs2plzNeEL5Uf4yGy/GXeqyylnp.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/Q3Qev4OikJwCKt94XaxX/FEfIl113VMC4roz9rV1d/k3ryy4LI4.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/HCGHtmF5zzYjHMfxzxnQ/V0lKlXCHkta1X8zIbUG3/Ln_TfAgpH.js\";import*as localizedValues from\"./KQGdTPIJr-0.js\";import NavigationBarLogo from\"https://framerusercontent.com/modules/KEvpXpZt3w26qNOcEM3h/JhhXUoz4kyzIx0s4rP1X/OxJREwf3p.js\";const NavigationBarLogoFonts=getFonts(NavigationBarLogo);const LocaleSelectorFonts=getFonts(LocaleSelector);const LocaleSelector1Fonts=getFonts(LocaleSelector1);const cycleOrder=[\"C7LdFhpLe\",\"XlJ6fTdXK\",\"gayWNnVn8\",\"Jb8yc2xhX\",\"Zmd1DgivH\",\"JKlefoZVY\",\"MRn9YO2M8\",\"y8uoPj0Te\",\"t2Xi6jvyF\",\"rvsnGQwN7\",\"B_LQFqeos\"];const serializationHash=\"framer-sIT3X\";const variantClassNames={B_LQFqeos:\"framer-v-120mb9y\",C7LdFhpLe:\"framer-v-5rt0oi\",gayWNnVn8:\"framer-v-1azcrou\",Jb8yc2xhX:\"framer-v-14d6w3l\",JKlefoZVY:\"framer-v-1h5665z\",MRn9YO2M8:\"framer-v-1ovp63p\",rvsnGQwN7:\"framer-v-s3dgd2\",t2Xi6jvyF:\"framer-v-17u0iaa\",XlJ6fTdXK:\"framer-v-6l8cf8\",y8uoPj0Te:\"framer-v-qr77vg\",Zmd1DgivH:\"framer-v-1lqdkba\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const valuesByLocaleId={bsRz4t4Yb:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};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 humanReadableVariantMap={\"Desktop - Compact - Blur\":\"gayWNnVn8\",\"Desktop - Compact - Filled\":\"Jb8yc2xhX\",\"Desktop - Compact - Max Width\":\"Zmd1DgivH\",\"Desktop - Compact - Transparent\":\"XlJ6fTdXK\",\"Desktop - Expanded\":\"C7LdFhpLe\",\"Mobile - Filled\":\"rvsnGQwN7\",\"Mobile - Menu\":\"B_LQFqeos\",\"Mobile - Transparent\":\"t2Xi6jvyF\",\"Tablet - Compact - Filled\":\"y8uoPj0Te\",\"Tablet - Compact - Transparent\":\"MRn9YO2M8\",\"Tablet - Expanded\":\"JKlefoZVY\"};const getProps=({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:\"C7LdFhpLe\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"C7LdFhpLe\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapr6i7ou=activeVariantCallback(async(...args)=>{setVariant(\"B_LQFqeos\");});const onTap1ocxgb7=activeVariantCallback(async(...args)=>{setVariant(\"rvsnGQwN7\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"JKlefoZVY\",\"MRn9YO2M8\",\"y8uoPj0Te\",\"t2Xi6jvyF\",\"rvsnGQwN7\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"B_LQFqeos\")return true;return false;};const isDisplayed2=()=>{if([\"JKlefoZVY\",\"MRn9YO2M8\",\"y8uoPj0Te\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"t2Xi6jvyF\",\"rvsnGQwN7\",\"B_LQFqeos\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if([\"t2Xi6jvyF\",\"rvsnGQwN7\",\"B_LQFqeos\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15,_getLocalizedValue16,_getLocalizedValue17,_getLocalizedValue18,_getLocalizedValue19,_getLocalizedValue20,_getLocalizedValue21,_getLocalizedValue22,_getLocalizedValue23,_getLocalizedValue24,_getLocalizedValue25,_getLocalizedValue26,_getLocalizedValue27,_getLocalizedValue28,_getLocalizedValue29,_getLocalizedValue30,_getLocalizedValue31,_getLocalizedValue32,_getLocalizedValue33,_getLocalizedValue34,_getLocalizedValue35,_getLocalizedValue36,_getLocalizedValue37,_getLocalizedValue38,_getLocalizedValue39,_getLocalizedValue40,_getLocalizedValue41,_getLocalizedValue42,_getLocalizedValue43,_getLocalizedValue44,_getLocalizedValue45,_getLocalizedValue46,_getLocalizedValue47,_getLocalizedValue48,_getLocalizedValue49;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-5rt0oi\",className,classNames),\"data-framer-name\":\"Desktop - Expanded\",initial:variant,layoutDependency:layoutDependency,layoutId:\"C7LdFhpLe\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"blur(0px)\",backgroundColor:\"rgba(0, 0, 0, 0)\",WebkitBackdropFilter:\"blur(0px)\",...style},variants:{B_LQFqeos:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\"},gayWNnVn8:{backdropFilter:\"blur(24px)\",backgroundColor:\"rgba(0, 0, 0, 0.08)\",WebkitBackdropFilter:\"blur(24px)\"},Jb8yc2xhX:{backdropFilter:\"none\",WebkitBackdropFilter:\"none\"},MRn9YO2M8:{backdropFilter:\"none\",WebkitBackdropFilter:\"none\"},rvsnGQwN7:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\"},y8uoPj0Te:{backdropFilter:\"none\",WebkitBackdropFilter:\"none\"},Zmd1DgivH:{backdropFilter:\"none\",WebkitBackdropFilter:\"none\"}},...addPropertyOverrides({B_LQFqeos:{\"data-border\":true,\"data-framer-name\":\"Mobile - Menu\"},gayWNnVn8:{\"data-framer-name\":\"Desktop - Compact - Blur\"},Jb8yc2xhX:{\"data-framer-name\":\"Desktop - Compact - Filled\"},JKlefoZVY:{\"data-framer-name\":\"Tablet - Expanded\"},MRn9YO2M8:{\"data-framer-name\":\"Tablet - Compact - Transparent\"},rvsnGQwN7:{\"data-border\":true,\"data-framer-name\":\"Mobile - Filled\"},t2Xi6jvyF:{\"data-framer-name\":\"Mobile - Transparent\"},XlJ6fTdXK:{\"data-framer-name\":\"Desktop - Compact - Transparent\"},y8uoPj0Te:{\"data-framer-name\":\"Tablet - Compact - Filled\"},Zmd1DgivH:{\"data-framer-name\":\"Desktop - Compact - Max Width\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m93obn\",\"data-framer-name\":\"Bar\",layoutDependency:layoutDependency,layoutId:\"VopSvUm_d\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",WebkitBackdropFilter:\"none\"},variants:{gayWNnVn8:{backdropFilter:\"blur(24px)\",WebkitBackdropFilter:\"blur(24px)\"},Jb8yc2xhX:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"blur(0px)\",backgroundColor:\"rgb(255, 255, 255)\",WebkitBackdropFilter:\"blur(0px)\"},MRn9YO2M8:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"blur(0px)\",backgroundColor:\"rgba(255, 255, 255, 0)\",WebkitBackdropFilter:\"blur(0px)\"},XlJ6fTdXK:{backdropFilter:\"blur(24px)\",WebkitBackdropFilter:\"blur(24px)\"},y8uoPj0Te:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"blur(0px)\",backgroundColor:\"rgb(255, 255, 255)\",WebkitBackdropFilter:\"blur(0px)\"},Zmd1DgivH:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"blur(0px)\",backgroundColor:\"rgb(255, 255, 255)\",WebkitBackdropFilter:\"blur(0px)\"}},...addPropertyOverrides({Jb8yc2xhX:{\"data-border\":true},MRn9YO2M8:{\"data-border\":true},y8uoPj0Te:{\"data-border\":true},Zmd1DgivH:{\"data-border\":true}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-273c8z\",\"data-framer-name\":\"Fixed Links\",layoutDependency:layoutDependency,layoutId:\"fLSgD02P4\",transformTemplate:transformTemplate1,...addPropertyOverrides({B_LQFqeos:{transformTemplate:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AOw94_IgO\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Properties\"})})})}),className:\"framer-8ub50b\",layoutDependency:layoutDependency,layoutId:\"XVmjiRahK\",variants:{gayWNnVn8:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({B_LQFqeos:{children:(_getLocalizedValue1=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2qyzmh\",\"data-styles-preset\":\"k3ryy4LI4\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AOw94_IgO\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Properties\"})})})})},gayWNnVn8:{children:(_getLocalizedValue2=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AOw94_IgO\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Properties\"})})})})},Jb8yc2xhX:{children:(_getLocalizedValue3=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AOw94_IgO\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Properties\"})})})})},XlJ6fTdXK:{children:(_getLocalizedValue4=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AOw94_IgO\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Properties\"})})})})},Zmd1DgivH:{children:(_getLocalizedValue5=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AOw94_IgO\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Properties\"})})})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-utfsdf\",layoutDependency:layoutDependency,layoutId:\"AjWi052qw\",style:{backgroundColor:\"rgba(0, 0, 0, 0.1)\"}}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-bwzdyn\",layoutDependency:layoutDependency,layoutId:\"AiiChItbG\",style:{backgroundColor:\"rgba(0, 0, 0, 0.1)\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue6=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lDZlLsLZA\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Locations\"})})})}),className:\"framer-1on90dv\",layoutDependency:layoutDependency,layoutId:\"vPYh8VdX7\",variants:{gayWNnVn8:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({B_LQFqeos:{children:(_getLocalizedValue7=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2qyzmh\",\"data-styles-preset\":\"k3ryy4LI4\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lDZlLsLZA\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Locations\"})})})})},gayWNnVn8:{children:(_getLocalizedValue8=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lDZlLsLZA\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Locations\"})})})})},Jb8yc2xhX:{children:(_getLocalizedValue9=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lDZlLsLZA\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Locations\"})})})})},XlJ6fTdXK:{children:(_getLocalizedValue10=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lDZlLsLZA\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Locations\"})})})})},Zmd1DgivH:{children:(_getLocalizedValue11=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lDZlLsLZA\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Locations\"})})})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m52tyw\",layoutDependency:layoutDependency,layoutId:\"sm_lzzu24\",style:{backgroundColor:\"rgba(0, 0, 0, 0.1)\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue12=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u7pt51U7V\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Services\"})})})}),className:\"framer-2csukh\",layoutDependency:layoutDependency,layoutId:\"A8qKx6FVa\",variants:{gayWNnVn8:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({B_LQFqeos:{children:(_getLocalizedValue13=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2qyzmh\",\"data-styles-preset\":\"k3ryy4LI4\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u7pt51U7V\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Services\"})})})})},gayWNnVn8:{children:(_getLocalizedValue14=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u7pt51U7V\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Services\"})})})})},Jb8yc2xhX:{children:(_getLocalizedValue15=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u7pt51U7V\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Services\"})})})})},XlJ6fTdXK:{children:(_getLocalizedValue16=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue16!==void 0?_getLocalizedValue16:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u7pt51U7V\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Services\"})})})})},Zmd1DgivH:{children:(_getLocalizedValue17=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue17!==void 0?_getLocalizedValue17:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u7pt51U7V\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Services\"})})})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-mm0ml3\",layoutDependency:layoutDependency,layoutId:\"weERzAiup\",style:{backgroundColor:\"rgba(0, 0, 0, 0.1)\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue18=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue18!==void 0?_getLocalizedValue18:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mgWImbcfk\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"About\"})})})}),className:\"framer-1b1vovd\",layoutDependency:layoutDependency,layoutId:\"OYdCPZcHR\",variants:{gayWNnVn8:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({B_LQFqeos:{children:(_getLocalizedValue19=getLocalizedValue(\"v23\",activeLocale))!==null&&_getLocalizedValue19!==void 0?_getLocalizedValue19:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2qyzmh\",\"data-styles-preset\":\"k3ryy4LI4\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mgWImbcfk\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"About\"})})})})},gayWNnVn8:{children:(_getLocalizedValue20=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue20!==void 0?_getLocalizedValue20:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mgWImbcfk\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"About\"})})})})},Jb8yc2xhX:{children:(_getLocalizedValue21=getLocalizedValue(\"v21\",activeLocale))!==null&&_getLocalizedValue21!==void 0?_getLocalizedValue21:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mgWImbcfk\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"About\"})})})})},XlJ6fTdXK:{children:(_getLocalizedValue22=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue22!==void 0?_getLocalizedValue22:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mgWImbcfk\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"About\"})})})})},Zmd1DgivH:{children:(_getLocalizedValue23=getLocalizedValue(\"v22\",activeLocale))!==null&&_getLocalizedValue23!==void 0?_getLocalizedValue23:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mgWImbcfk\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"About\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue24=getLocalizedValue(\"v24\",activeLocale))!==null&&_getLocalizedValue24!==void 0?_getLocalizedValue24:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cfizbFwFH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Contact\"})})})}),className:\"framer-z46fl9\",layoutDependency:layoutDependency,layoutId:\"yizVgvher\",variants:{gayWNnVn8:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({B_LQFqeos:{children:(_getLocalizedValue25=getLocalizedValue(\"v29\",activeLocale))!==null&&_getLocalizedValue25!==void 0?_getLocalizedValue25:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2qyzmh\",\"data-styles-preset\":\"k3ryy4LI4\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cfizbFwFH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Contact\"})})})})},gayWNnVn8:{children:(_getLocalizedValue26=getLocalizedValue(\"v26\",activeLocale))!==null&&_getLocalizedValue26!==void 0?_getLocalizedValue26:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cfizbFwFH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Contact\"})})})})},Jb8yc2xhX:{children:(_getLocalizedValue27=getLocalizedValue(\"v27\",activeLocale))!==null&&_getLocalizedValue27!==void 0?_getLocalizedValue27:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cfizbFwFH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Contact\"})})})})},XlJ6fTdXK:{children:(_getLocalizedValue28=getLocalizedValue(\"v25\",activeLocale))!==null&&_getLocalizedValue28!==void 0?_getLocalizedValue28:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cfizbFwFH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Contact\"})})})})},Zmd1DgivH:{children:(_getLocalizedValue29=getLocalizedValue(\"v28\",activeLocale))!==null&&_getLocalizedValue29!==void 0?_getLocalizedValue29:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cfizbFwFH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Contact\"})})})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ohwdr8\",\"data-framer-name\":\"Items\",layoutDependency:layoutDependency,layoutId:\"MYtK7jxte\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15toff5-container\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"wu2zgdJAJ-container\",name:\"Logo\",children:/*#__PURE__*/_jsx(NavigationBarLogo,{height:\"100%\",id:\"wu2zgdJAJ\",layoutId:\"wu2zgdJAJ\",name:\"Logo\",variant:\"xLJ3jqVjJ\",width:\"100%\",...addPropertyOverrides({gayWNnVn8:{style:{height:\"100%\",width:\"100%\"},variant:\"MoJaDb2ui\"},Jb8yc2xhX:{style:{height:\"100%\",width:\"100%\"}},JKlefoZVY:{variant:\"PeBQZbLMO\"},MRn9YO2M8:{style:{height:\"100%\"},variant:\"PeBQZbLMO\"},t2Xi6jvyF:{style:{height:\"100%\",width:\"100%\"}},XlJ6fTdXK:{style:{height:\"100%\",width:\"100%\"}},y8uoPj0Te:{style:{height:\"100%\"},variant:\"PeBQZbLMO\"},Zmd1DgivH:{style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ciumfk\",\"data-framer-name\":\"Inner Links\",layoutDependency:layoutDependency,layoutId:\"JcXUhuUbI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue30=getLocalizedValue(\"v30\",activeLocale))!==null&&_getLocalizedValue30!==void 0?_getLocalizedValue30:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AOw94_IgO\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Properties\"})})})}),className:\"framer-zr4mmf\",layoutDependency:layoutDependency,layoutId:\"NVTxqNvj7\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JKlefoZVY:{children:(_getLocalizedValue31=getLocalizedValue(\"v31\",activeLocale))!==null&&_getLocalizedValue31!==void 0?_getLocalizedValue31:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AOw94_IgO\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Properties\"})})})})},MRn9YO2M8:{children:(_getLocalizedValue32=getLocalizedValue(\"v32\",activeLocale))!==null&&_getLocalizedValue32!==void 0?_getLocalizedValue32:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AOw94_IgO\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Properties\"})})})})},y8uoPj0Te:{children:(_getLocalizedValue33=getLocalizedValue(\"v33\",activeLocale))!==null&&_getLocalizedValue33!==void 0?_getLocalizedValue33:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AOw94_IgO\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Properties\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue34=getLocalizedValue(\"v34\",activeLocale))!==null&&_getLocalizedValue34!==void 0?_getLocalizedValue34:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"v8Is4YTfs\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Locations\"})})})}),className:\"framer-14oyr0u\",layoutDependency:layoutDependency,layoutId:\"SLs2sk6BL\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JKlefoZVY:{children:(_getLocalizedValue35=getLocalizedValue(\"v35\",activeLocale))!==null&&_getLocalizedValue35!==void 0?_getLocalizedValue35:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lDZlLsLZA\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Locations\"})})})})},MRn9YO2M8:{children:(_getLocalizedValue36=getLocalizedValue(\"v36\",activeLocale))!==null&&_getLocalizedValue36!==void 0?_getLocalizedValue36:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lDZlLsLZA\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Locations\"})})})})},y8uoPj0Te:{children:(_getLocalizedValue37=getLocalizedValue(\"v37\",activeLocale))!==null&&_getLocalizedValue37!==void 0?_getLocalizedValue37:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lDZlLsLZA\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Locations\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue38=getLocalizedValue(\"v38\",activeLocale))!==null&&_getLocalizedValue38!==void 0?_getLocalizedValue38:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u7pt51U7V\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Services\"})})})}),className:\"framer-14lzw3a\",layoutDependency:layoutDependency,layoutId:\"QE76zIof4\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JKlefoZVY:{children:(_getLocalizedValue39=getLocalizedValue(\"v39\",activeLocale))!==null&&_getLocalizedValue39!==void 0?_getLocalizedValue39:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u7pt51U7V\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Services\"})})})})},MRn9YO2M8:{children:(_getLocalizedValue40=getLocalizedValue(\"v40\",activeLocale))!==null&&_getLocalizedValue40!==void 0?_getLocalizedValue40:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u7pt51U7V\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Services\"})})})})},y8uoPj0Te:{children:(_getLocalizedValue41=getLocalizedValue(\"v41\",activeLocale))!==null&&_getLocalizedValue41!==void 0?_getLocalizedValue41:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u7pt51U7V\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Services\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue42=getLocalizedValue(\"v42\",activeLocale))!==null&&_getLocalizedValue42!==void 0?_getLocalizedValue42:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mgWImbcfk\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"About\"})})})}),className:\"framer-vxpa0a\",layoutDependency:layoutDependency,layoutId:\"FJAlpwatA\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JKlefoZVY:{children:(_getLocalizedValue43=getLocalizedValue(\"v43\",activeLocale))!==null&&_getLocalizedValue43!==void 0?_getLocalizedValue43:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mgWImbcfk\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"About\"})})})})},MRn9YO2M8:{children:(_getLocalizedValue44=getLocalizedValue(\"v44\",activeLocale))!==null&&_getLocalizedValue44!==void 0?_getLocalizedValue44:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mgWImbcfk\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"About\"})})})})},y8uoPj0Te:{children:(_getLocalizedValue45=getLocalizedValue(\"v45\",activeLocale))!==null&&_getLocalizedValue45!==void 0?_getLocalizedValue45:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mgWImbcfk\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"About\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue46=getLocalizedValue(\"v46\",activeLocale))!==null&&_getLocalizedValue46!==void 0?_getLocalizedValue46:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cfizbFwFH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Contact\"})})})}),className:\"framer-e5an36\",layoutDependency:layoutDependency,layoutId:\"MmjSMQv0w\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JKlefoZVY:{children:(_getLocalizedValue47=getLocalizedValue(\"v47\",activeLocale))!==null&&_getLocalizedValue47!==void 0?_getLocalizedValue47:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cfizbFwFH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Contact\"})})})})},MRn9YO2M8:{children:(_getLocalizedValue48=getLocalizedValue(\"v48\",activeLocale))!==null&&_getLocalizedValue48!==void 0?_getLocalizedValue48:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cfizbFwFH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Contact\"})})})})},y8uoPj0Te:{children:(_getLocalizedValue49=getLocalizedValue(\"v49\",activeLocale))!==null&&_getLocalizedValue49!==void 0?_getLocalizedValue49:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kblrmf\",\"data-styles-preset\":\"Ln_TfAgpH\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cfizbFwFH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-167d15e\",\"data-styles-preset\":\"GXeqyylnp\",children:\"Contact\"})})})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g1uxxp\",\"data-framer-name\":\"Right Items\",layoutDependency:layoutDependency,layoutId:\"umbF2nWX2\",children:[isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v97cfn\",\"data-framer-name\":\"Menu\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"WagZ1cvyq\",onTap:onTapr6i7ou,...addPropertyOverrides({B_LQFqeos:{onTap:onTap1ocxgb7}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-w7ftu7\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"NQ0DuBgGw\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{B_LQFqeos:{rotate:45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17fb3gr\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"YpJfWIEOs\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{B_LQFqeos:{rotate:-45}}})]}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-f6g0tb-container\",layoutDependency:layoutDependency,layoutId:\"ce3u4kS_V-container\",children:/*#__PURE__*/_jsx(LocaleSelector,{caret:{color:\"rgb(0, 0, 0)\",size:12,type:\"default\"},font:{fontFamily:'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},height:\"100%\",icon:{color:\"rgb(0, 0, 0)\",size:18,type:\"default\"},id:\"ce3u4kS_V\",layoutId:\"ce3u4kS_V\",options:{focus:{color:\"rgb(0, 153, 255)\",offset:0,style:\"solid\",width:1},gap:5,hover:{borderColor:\"rgb(255, 255, 255)\",fillColor:\"rgba(255, 255, 255, 0.45)\"},title:true},padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:10,radiusBottomLeft:10,radiusBottomRight:10,radiusPerConrner:false,radiusTopLeft:10,radiusTopRight:10,style:{width:\"100%\"},textColor:\"rgb(0, 0, 0)\",width:\"100%\",...addPropertyOverrides({gayWNnVn8:{caret:{color:\"rgb(255, 255, 255)\",size:12,type:\"default\"},icon:{color:\"rgb(255, 255, 255)\",size:18,type:\"default\"},textColor:\"rgba(0, 0, 0, 0)\"},Jb8yc2xhX:{options:{focus:{color:\"rgb(0, 153, 255)\",offset:0,style:\"solid\",width:1},gap:5,title:true},textColor:\"rgba(0, 0, 0, 0)\"},MRn9YO2M8:{options:{focus:{color:\"rgb(0, 153, 255)\",offset:0,style:\"solid\",width:1},gap:5,title:true},textColor:\"rgba(0, 0, 0, 0)\"},y8uoPj0Te:{options:{focus:{color:\"rgb(0, 153, 255)\",offset:0,style:\"solid\",width:1},gap:5,title:true},textColor:\"rgba(0, 0, 0, 0)\"},Zmd1DgivH:{options:{focus:{color:\"rgb(0, 153, 255)\",offset:0,style:\"solid\",width:1},gap:5,title:true},textColor:\"rgba(0, 0, 0, 0)\"}},baseVariant,gestureVariant)})})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vogx3c\",\"data-border\":true,\"data-framer-name\":\"Language - Mobile\",layoutDependency:layoutDependency,layoutId:\"ou8SLCJML\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15acflq-container\",layoutDependency:layoutDependency,layoutId:\"Ood9f0rC1-container\",children:/*#__PURE__*/_jsx(LocaleSelector1,{caret:{color:\"rgb(0, 0, 0)\",size:12,type:\"default\"},fillColor:\"rgba(0, 0, 0, 0.03)\",font:{fontFamily:'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:300,letterSpacing:\"-0.3px\",lineHeight:\"1.5em\"},height:\"100%\",id:\"Ood9f0rC1\",layoutId:\"Ood9f0rC1\",options:{focus:{color:\"rgb(0, 153, 255)\",offset:0,style:\"solid\",width:1},gap:5,title:true},padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:10,radiusBottomLeft:10,radiusBottomRight:10,radiusPerConrner:false,radiusTopLeft:10,radiusTopRight:10,style:{width:\"100%\"},textColor:\"rgb(0, 0, 0)\",width:\"100%\"})})})]})})});});const css=['.framer-sIT3X[data-border=\"true\"]::after, .framer-sIT3X [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sIT3X.framer-1emqvqx, .framer-sIT3X .framer-1emqvqx { display: block; }\",\".framer-sIT3X.framer-5rt0oi { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1680px; }\",\".framer-sIT3X .framer-m93obn { 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: 30px 30px 30px 30px; position: relative; width: 100%; }\",\".framer-sIT3X .framer-273c8z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: 50%; width: min-content; z-index: 1; }\",\".framer-sIT3X .framer-8ub50b, .framer-sIT3X .framer-1on90dv, .framer-sIT3X .framer-2csukh, .framer-sIT3X .framer-1b1vovd, .framer-sIT3X .framer-z46fl9, .framer-sIT3X .framer-zr4mmf, .framer-sIT3X .framer-14oyr0u, .framer-sIT3X .framer-14lzw3a, .framer-sIT3X .framer-vxpa0a, .framer-sIT3X .framer-e5an36 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-sIT3X .framer-utfsdf, .framer-sIT3X .framer-bwzdyn, .framer-sIT3X .framer-1m52tyw, .framer-sIT3X .framer-mm0ml3 { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 1px; }\",\".framer-sIT3X .framer-1ohwdr8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-sIT3X .framer-15toff5-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-sIT3X .framer-1ciumfk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-sIT3X .framer-g1uxxp { 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 0px 0px 0px; position: relative; width: min-content; }\",\".framer-sIT3X .framer-v97cfn { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-sIT3X .framer-w7ftu7, .framer-sIT3X .framer-17fb3gr { flex: none; height: 1px; overflow: hidden; position: relative; width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sIT3X .framer-f6g0tb-container { flex: none; height: auto; position: relative; width: 120px; z-index: 1; }\",\".framer-sIT3X .framer-1vogx3c { align-content: flex-start; align-items: flex-start; bottom: 75px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: auto; justify-content: center; left: 0px; overflow: visible; padding: 15px 15px 15px 15px; position: absolute; width: 100%; z-index: 1; }\",\".framer-sIT3X .framer-15acflq-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sIT3X.framer-5rt0oi, .framer-sIT3X .framer-273c8z, .framer-sIT3X .framer-1ciumfk, .framer-sIT3X .framer-g1uxxp, .framer-sIT3X .framer-v97cfn, .framer-sIT3X .framer-1vogx3c { gap: 0px; } .framer-sIT3X.framer-5rt0oi > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sIT3X.framer-5rt0oi > :first-child, .framer-sIT3X .framer-v97cfn > :first-child, .framer-sIT3X .framer-1vogx3c > :first-child { margin-top: 0px; } .framer-sIT3X.framer-5rt0oi > :last-child, .framer-sIT3X .framer-v97cfn > :last-child, .framer-sIT3X .framer-1vogx3c > :last-child { margin-bottom: 0px; } .framer-sIT3X .framer-273c8z > *, .framer-sIT3X .framer-1ciumfk > * { margin: 0px; margin-left: calc(35px / 2); margin-right: calc(35px / 2); } .framer-sIT3X .framer-273c8z > :first-child, .framer-sIT3X .framer-1ciumfk > :first-child, .framer-sIT3X .framer-g1uxxp > :first-child { margin-left: 0px; } .framer-sIT3X .framer-273c8z > :last-child, .framer-sIT3X .framer-1ciumfk > :last-child, .framer-sIT3X .framer-g1uxxp > :last-child { margin-right: 0px; } .framer-sIT3X .framer-g1uxxp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-sIT3X .framer-v97cfn > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-sIT3X .framer-1vogx3c > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } }\",\".framer-sIT3X.framer-v-6l8cf8 .framer-m93obn, .framer-sIT3X.framer-v-1azcrou .framer-m93obn, .framer-sIT3X.framer-v-14d6w3l .framer-m93obn { height: 44px; padding: 0px 15px 0px 15px; }\",\".framer-sIT3X.framer-v-6l8cf8 .framer-273c8z, .framer-sIT3X.framer-v-14d6w3l .framer-273c8z, .framer-sIT3X.framer-v-1lqdkba .framer-273c8z { left: 50%; order: 0; top: 51%; }\",\".framer-sIT3X.framer-v-6l8cf8 .framer-1ohwdr8, .framer-sIT3X.framer-v-6l8cf8 .framer-f6g0tb-container, .framer-sIT3X.framer-v-14d6w3l .framer-1ohwdr8, .framer-sIT3X.framer-v-1ovp63p .framer-1ohwdr8, .framer-sIT3X.framer-v-qr77vg .framer-1ohwdr8 { order: 1; }\",\".framer-sIT3X.framer-v-6l8cf8 .framer-15toff5-container, .framer-sIT3X.framer-v-1azcrou .framer-15toff5-container, .framer-sIT3X.framer-v-14d6w3l .framer-15toff5-container, .framer-sIT3X.framer-v-1lqdkba .framer-15toff5-container { height: 20px; width: 155px; }\",\".framer-sIT3X.framer-v-1azcrou .framer-273c8z { left: 50%; top: 51%; }\",\".framer-sIT3X.framer-v-1azcrou .framer-f6g0tb-container, .framer-sIT3X.framer-v-14d6w3l .framer-f6g0tb-container, .framer-sIT3X.framer-v-1lqdkba .framer-f6g0tb-container, .framer-sIT3X.framer-v-1ovp63p .framer-f6g0tb-container, .framer-sIT3X.framer-v-qr77vg .framer-f6g0tb-container { order: 1; width: 60px; }\",\".framer-sIT3X.framer-v-1lqdkba .framer-m93obn { gap: 10px; height: 44px; justify-content: center; padding: 0px 15px 0px 15px; }\",\".framer-sIT3X.framer-v-1lqdkba .framer-1ohwdr8 { max-width: 1200px; order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sIT3X.framer-v-1lqdkba .framer-m93obn { gap: 0px; } .framer-sIT3X.framer-v-1lqdkba .framer-m93obn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-sIT3X.framer-v-1lqdkba .framer-m93obn > :first-child { margin-left: 0px; } .framer-sIT3X.framer-v-1lqdkba .framer-m93obn > :last-child { margin-right: 0px; } }\",\".framer-sIT3X.framer-v-1h5665z.framer-5rt0oi, .framer-sIT3X.framer-v-1ovp63p.framer-5rt0oi, .framer-sIT3X.framer-v-qr77vg.framer-5rt0oi { width: 900px; }\",\".framer-sIT3X.framer-v-1ovp63p .framer-m93obn, .framer-sIT3X.framer-v-qr77vg .framer-m93obn { height: 44px; padding: 0px 30px 0px 30px; }\",\".framer-sIT3X.framer-v-1ovp63p .framer-15toff5-container, .framer-sIT3X.framer-v-qr77vg .framer-15toff5-container { height: 20px; }\",\".framer-sIT3X.framer-v-17u0iaa.framer-5rt0oi, .framer-sIT3X.framer-v-s3dgd2.framer-5rt0oi { width: 390px; }\",\".framer-sIT3X.framer-v-17u0iaa .framer-m93obn { order: 1; padding: 4px 15px 4px 15px; }\",\".framer-sIT3X.framer-v-17u0iaa .framer-15toff5-container { height: 36px; width: 279px; }\",\".framer-sIT3X.framer-v-s3dgd2 .framer-m93obn { align-content: flex-start; align-items: flex-start; flex-direction: column; order: 1; padding: 4px 15px 4px 15px; }\",\".framer-sIT3X.framer-v-s3dgd2 .framer-1ohwdr8 { flex: none; order: 0; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sIT3X.framer-v-s3dgd2 .framer-m93obn { gap: 0px; } .framer-sIT3X.framer-v-s3dgd2 .framer-m93obn > *, .framer-sIT3X.framer-v-s3dgd2 .framer-m93obn > :first-child, .framer-sIT3X.framer-v-s3dgd2 .framer-m93obn > :last-child { margin: 0px; } }\",\".framer-sIT3X.framer-v-120mb9y.framer-5rt0oi { overflow: auto; width: 390px; }\",\".framer-sIT3X.framer-v-120mb9y .framer-m93obn { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; height: calc(var(--framer-viewport-height, 100vh) * 1); justify-content: flex-start; order: 1; overflow: auto; padding: 0px 0px 0px 0px; }\",\".framer-sIT3X.framer-v-120mb9y .framer-273c8z { align-content: flex-start; align-items: flex-start; flex: 1 0 0px; flex-direction: column; gap: 18px; height: 1px; justify-content: flex-start; left: unset; order: 1; padding: 30px 15px 30px 15px; position: relative; top: unset; width: 100%; }\",\".framer-sIT3X.framer-v-120mb9y .framer-8ub50b { order: 0; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sIT3X.framer-v-120mb9y .framer-utfsdf { flex: none; order: 1; width: 100%; }\",\".framer-sIT3X.framer-v-120mb9y .framer-bwzdyn { flex: none; order: 3; width: 100%; }\",\".framer-sIT3X.framer-v-120mb9y .framer-1on90dv { order: 2; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sIT3X.framer-v-120mb9y .framer-1m52tyw { flex: none; order: 5; width: 100%; }\",\".framer-sIT3X.framer-v-120mb9y .framer-2csukh { order: 4; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sIT3X.framer-v-120mb9y .framer-mm0ml3 { flex: none; order: 7; width: 100%; }\",\".framer-sIT3X.framer-v-120mb9y .framer-1b1vovd { order: 6; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sIT3X.framer-v-120mb9y .framer-z46fl9 { order: 8; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sIT3X.framer-v-120mb9y .framer-1ohwdr8 { flex: none; order: 0; padding: 4px 15px 4px 15px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 4; }\",\".framer-sIT3X.framer-v-120mb9y .framer-v97cfn { min-width: 44px; }\",\".framer-sIT3X.framer-v-120mb9y .framer-w7ftu7 { left: 23px; position: absolute; right: -3px; top: 22px; width: unset; z-index: 1; }\",\".framer-sIT3X.framer-v-120mb9y .framer-17fb3gr { bottom: 21px; left: 23px; position: absolute; right: -3px; width: unset; z-index: 1; }\",\".framer-sIT3X.framer-v-120mb9y .framer-1vogx3c, .framer-sIT3X.framer-v-120mb9y .framer-15acflq-container { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sIT3X.framer-v-120mb9y .framer-m93obn, .framer-sIT3X.framer-v-120mb9y .framer-273c8z { gap: 0px; } .framer-sIT3X.framer-v-120mb9y .framer-m93obn > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sIT3X.framer-v-120mb9y .framer-m93obn > :first-child, .framer-sIT3X.framer-v-120mb9y .framer-273c8z > :first-child { margin-top: 0px; } .framer-sIT3X.framer-v-120mb9y .framer-m93obn > :last-child, .framer-sIT3X.framer-v-120mb9y .framer-273c8z > :last-child { margin-bottom: 0px; } .framer-sIT3X.framer-v-120mb9y .framer-273c8z > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 101\n * @framerIntrinsicWidth 1680\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"XlJ6fTdXK\":{\"layout\":[\"fixed\",\"auto\"]},\"gayWNnVn8\":{\"layout\":[\"fixed\",\"auto\"]},\"Jb8yc2xhX\":{\"layout\":[\"fixed\",\"auto\"]},\"Zmd1DgivH\":{\"layout\":[\"fixed\",\"auto\"]},\"JKlefoZVY\":{\"layout\":[\"fixed\",\"auto\"]},\"MRn9YO2M8\":{\"layout\":[\"fixed\",\"auto\"]},\"y8uoPj0Te\":{\"layout\":[\"fixed\",\"auto\"]},\"t2Xi6jvyF\":{\"layout\":[\"fixed\",\"auto\"]},\"rvsnGQwN7\":{\"layout\":[\"fixed\",\"auto\"]},\"B_LQFqeos\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerKQGdTPIJr=withCSS(Component,css,\"framer-sIT3X\");export default FramerKQGdTPIJr;FramerKQGdTPIJr.displayName=\"Navigation Bar / Bar\";FramerKQGdTPIJr.defaultProps={height:101,width:1680};addPropertyControls(FramerKQGdTPIJr,{variant:{options:[\"C7LdFhpLe\",\"XlJ6fTdXK\",\"gayWNnVn8\",\"Jb8yc2xhX\",\"Zmd1DgivH\",\"JKlefoZVY\",\"MRn9YO2M8\",\"y8uoPj0Te\",\"t2Xi6jvyF\",\"rvsnGQwN7\",\"B_LQFqeos\"],optionTitles:[\"Desktop - Expanded\",\"Desktop - Compact - Transparent\",\"Desktop - Compact - Blur\",\"Desktop - Compact - Filled\",\"Desktop - Compact - Max Width\",\"Tablet - Expanded\",\"Tablet - Compact - Transparent\",\"Tablet - Compact - Filled\",\"Mobile - Transparent\",\"Mobile - Filled\",\"Mobile - Menu\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerKQGdTPIJr,[{family:\"Work Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNi0Dp6_cOyA.woff2\",weight:\"400\"},{family:\"Work Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32KxfXNi0Dp6_cOyA.woff2\",weight:\"300\"},...NavigationBarLogoFonts,...LocaleSelectorFonts,...LocaleSelector1Fonts,...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKQGdTPIJr\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XlJ6fTdXK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gayWNnVn8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Jb8yc2xhX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Zmd1DgivH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JKlefoZVY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MRn9YO2M8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y8uoPj0Te\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"t2Xi6jvyF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rvsnGQwN7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"B_LQFqeos\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"101\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1680\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KQGdTPIJr.map"],
  "mappings": "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AAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc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",
  "names": ["fontStack", "useForceRender", "_", "set", "ye", "te", "v", "formatTimeOrDate", "outputType", "showYear", "showMonth", "showWeekday", "showMinutes", "showSeconds", "timeFormat", "monthFormat", "localCode", "date", "onlyYearIsShown", "Time", "props", "fontFamily", "fontSize", "fontWeight", "showHours", "color", "font", "tabularFont", "alignment", "visible", "setIsVisible", "isCanvas", "RenderTarget", "render", "useLocaleCode", "textContent", "ue", "int", "p", "addPropertyControls", "ControlType", "DULm3Dr6D_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v17", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "motion", "v1", "Link", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v17", "__FramerMetadata__", "valuesByLocaleId", "DULm3Dr6D_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "PhosphorFonts", "getFonts", "Icon", "TimeDateFonts", "Time", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "RichText2", "getLocalizedValue", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerDULm3Dr6D", "withCSS", "DULm3Dr6D_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getBorderStyle", "color", "width", "widthPerSide", "widthTop", "widthRight", "widthBottom", "widthLeft", "style", "result", "borderControls", "ControlType", "getFocusStyle", "color", "width", "style", "offset", "result", "focusControls", "ControlType", "getHoverStyle", "fillColor", "textColor", "borderColor", "hoverControls", "ControlType", "getPaddingStyle", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "paddingControls", "ControlType", "getRadiusStyle", "radius", "radiusPerCorner", "radiusTopLeft", "radiusTopRight", "radiusBottomRight", "radiusBottomLeft", "result", "radiusControls", "ControlType", "e", "t", "C", "j", "e", "t", "l", "r", "p", "S", "T", "withCSS", "i", "n", "m", "v", "y", "w", "x", "V", "k", "$", "ae", "F", "N", "O", "useLocaleInfo", "Z", "L", "pe", "A", "ye", "B", "C", "o", "getPaddingStyle", "getRadiusStyle", "getBorderStyle", "getHoverStyle", "getFocusStyle", "addPropertyControls", "ControlType", "paddingControls", "radiusControls", "borderControls", "hoverControls", "focusControls", "LocaleSelector_default", "className", "IconType", "Icon", "type", "color", "image", "size", "p", "CaretType", "Caret", "LocaleSelector", "withCSS", "font", "fillColor", "textColor", "icon", "caret", "title", "gap", "border", "hover", "focus", "style", "props", "id", "ae", "activeLocale", "locales", "setLocale", "useLocaleInfo", "ref", "activeLocaleId", "lastActiveLocaleId", "pe", "selectedLocaleId", "setSelectedLocaleId", "ye", "selectedLocale", "locale", "handleChange", "event", "localeId", "ref1", "className", "getPaddingStyle", "getRadiusStyle", "getBorderStyle", "getHoverStyle", "getFocusStyle", "addPropertyControls", "ControlType", "paddingControls", "radiusControls", "borderControls", "hoverControls", "focusControls", "LocaleSelector_default", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "KQGdTPIJr_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v17", "v18", "v19", "v2", "v20", "v21", "v22", "v23", "v24", "v25", "v26", "v27", "v28", "v29", "v3", "v30", "v31", "v32", "v33", "v34", "v35", "v36", "v37", "v38", "v39", "v4", "v40", "v41", "v42", "v43", "v44", "v45", "v46", "v47", "v48", "v49", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "motion", "Link", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v17", "v18", "v19", "v20", "v21", "v22", "v23", "v24", "v25", "v26", "v27", "v28", "v29", "v30", "v31", "v32", "v33", "v34", "v35", "v36", "v37", "v38", "v39", "v40", "v41", "v42", "v43", "v44", "v45", "v46", "v47", "v48", "v49", "__FramerMetadata__", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "transitions", "variantClassNames", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "Link", "cx", "serializationHash", "addPropertyOverrides", "Image2", "SVG", "css", "FramerOxJREwf3p", "withCSS", "OxJREwf3p_default", "addPropertyControls", "ControlType", "addFonts", "NavigationBarLogoFonts", "getFonts", "OxJREwf3p_default", "LocaleSelectorFonts", "LocaleSelector_default", "LocaleSelector1Fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "valuesByLocaleId", "KQGdTPIJr_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapr6i7ou", "args", "onTap1ocxgb7", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "sharedStyleClassNames", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "_getLocalizedValue16", "_getLocalizedValue17", "_getLocalizedValue18", "_getLocalizedValue19", "_getLocalizedValue20", "_getLocalizedValue21", "_getLocalizedValue22", "_getLocalizedValue23", "_getLocalizedValue24", "_getLocalizedValue25", "_getLocalizedValue26", "_getLocalizedValue27", "_getLocalizedValue28", "_getLocalizedValue29", "_getLocalizedValue30", "_getLocalizedValue31", "_getLocalizedValue32", "_getLocalizedValue33", "_getLocalizedValue34", "_getLocalizedValue35", "_getLocalizedValue36", "_getLocalizedValue37", "_getLocalizedValue38", "_getLocalizedValue39", "_getLocalizedValue40", "_getLocalizedValue41", "_getLocalizedValue42", "_getLocalizedValue43", "_getLocalizedValue44", "_getLocalizedValue45", "_getLocalizedValue46", "_getLocalizedValue47", "_getLocalizedValue48", "_getLocalizedValue49", "LayoutGroup", "motion", "cx", "RichText2", "x", "Link", "css", "FramerKQGdTPIJr", "withCSS", "KQGdTPIJr_default", "addPropertyControls", "ControlType", "addFonts", "fonts"]
}
