{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js", "ssg:https://framerusercontent.com/modules/wCWpAleCypT4MqsVs3C8/QAzpr7cL1nLo7aeENCgp/FXOkUf8JN.js", "ssg:https://framerusercontent.com/modules/zIj0iTN8ND3JyUUqGoo4/IeK2elHK1OxLL47O4cw6/gBWRxyKR7.js", "ssg:https://framerusercontent.com/modules/cuKUFdzXlhvw8OVOBeAc/T08RxQJ4qrs7LLc8wx4E/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/XQ1GMXuIqYrEN1c0R6E5/padding.js", "ssg:https://framerusercontent.com/modules/N6MwtHbWoiZJNn1xpqxu/ZEWmVGYDUhL44tluQO5y/radius.js", "ssg:https://framerusercontent.com/modules/57FhkldN9P7x88MqAEaR/fW26mCIOTpHHBOBnf7GZ/LocaleSelector.js", "ssg:https://framerusercontent.com/modules/myvGGXi56E7lFB6tbGWt/awFJ6iOkZfF7pXnjVLiO/l7xe_bXpH.js", "ssg:https://framerusercontent.com/modules/FH9fz6gUVlpEgy9KeMqh/9Yl3q4EblSKmHROyX0cS/JNUQKu9Vo.js", "ssg:https://framerusercontent.com/modules/mTV3ZmvXCoOwgUkwED40/Teq46DU4mF9907nLQhLa/sQRnmNtCN.js", "ssg:https://framerusercontent.com/modules/UCEBL2NkwB1peLOx6GVI/BobInhrj3EnZR2zlxFuW/ebmAEorRV.js", "ssg:https://framerusercontent.com/modules/lqsgu4tGosP98Vu877RM/8Vca7lSi8cXpiuZkwLvl/kXK2VlsWc.js", "ssg:https://framerusercontent.com/modules/S3oZgYdvbur3JxcyJh1d/H5Yefgz2s4gicIbm3dqS/jJ9t9IU_F.js", "ssg:https://framerusercontent.com/modules/pZw4aJJ9UpgNKUJUec4v/p9aacK9byBLwQSRG3MVi/JZspN2FQM.js", "ssg:https://framerusercontent.com/modules/xCI5bc22IXKCgMfBrvVK/h99PzAdghNXrntnHK5tV/LEq671n7a.js", "ssg:https://framerusercontent.com/modules/50bLHW9QQ6M7y1zHBXmF/qamYGTWV1JXqmKQCPLJb/ottQu0lpV.js", "ssg:https://framerusercontent.com/modules/kJU9hga8HpCGKp5r4gUD/jwUai9zvTeb1gdmDLery/jsvS2drHQ.js", "ssg:https://framerusercontent.com/modules/8dk4FPbFT0DhqMyJsWOK/EIbEe21MLYhyO8eYOSX0/EZv1kDkHa.js", "ssg:https://framerusercontent.com/modules/h0ntprFztne7gLBVhzSm/RS2xF4GtDmoB9cFyzxH9/ebmAEorRV.js", "ssg:https://framerusercontent.com/modules/A0RIXHIQ8rEEsdi39deh/YhOMxiqoYyKbl90ABCxo/xZILHBB1o.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,useLocaleCode}from\"framer\";import{startTransition,useCallback,useEffect,useRef,useState}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 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);}}const 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\"};/**\n * TIME AND DATE\n * FORKED FROM PROTOTYPING\n *\n * @framerIntrinsicWidth 140\n * @framerIntrinsicHeight 20\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export function Time(props){const mergedProps={...defaultProps,...props};const{outputType,timeFormat,showYear,showMonth,showWeekday,// showHours,\nshowMinutes,showSeconds,monthFormat,color,font,tabularFont}=mergedProps;const localCode=useLocaleCode();const getTextContent=useCallback(()=>formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,// showHours,\n    showMinutes,showSeconds},timeFormat,monthFormat,localCode),[localCode,monthFormat,outputType,showMinutes,showMonth,showSeconds,showWeekday,showYear,timeFormat]);const timeoutRef=useRef()// FIXME: With React 19, we can remove this and return a cleanup from the ref callback\n;const updateCountdown=useCallback(node=>{if(node===null){// React calls w/ `null` on unmount or if the ref function changes.\nclearTimeout(timeoutRef.current);return;}let prev;const tick=()=>{const date=new Date;const next=new Date().setSeconds(date.getSeconds()+1,0)-+date;timeoutRef.current=setTimeout(tick,next);const textContent=getTextContent();if(prev!==textContent){node.textContent=textContent;prev=textContent;}};tick();},[getTextContent]);const[visible,setIsVisible]=useState(false);const isCanvas=RenderTarget.current()===RenderTarget.canvas;useEffect(()=>{startTransition(()=>setIsVisible(true));// Don\u2019t want real time on Canvas\nif(isCanvas)return;},[isCanvas]);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\"},ref:isCanvas?undefined:updateCountdown,children:getTextContent()});}Time.displayName=\"Time & Date\";addPropertyControls(Time,{outputType:{title:\"Type\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"date\",\"time\"],optionTitles:[\"Date\",\"Time\"],defaultValue:defaultProps.outputType},showWeekday:{title:\"Day\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showWeekday,hidden:props=>props.outputType!==\"date\"},showMonth:{title:\"Month\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showMonth,hidden:props=>props.outputType!==\"date\"},monthFormat:{title:\"Format\",type:ControlType.Enum,options:[\"short\",\"long\",\"numeric\"],optionTitles:[\"Short\",\"Long\",\"Numeric\"],defaultValue:defaultProps.monthFormat,hidden:props=>props.outputType!==\"date\"||!props.showMonth},showYear:{title:\"Year\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showYear,hidden:props=>props.outputType!==\"date\"},timeFormat:{title:\"Format\",type:ControlType.Enum,options:[\"12h\",\"24h\"],optionTitles:[\"12h\",\"24h\"],displaySegmentedControl:true,defaultValue:defaultProps.timeFormat,hidden:props=>props.outputType!==\"time\"},// showHours: {\n//     title: \"Hours\",\n//     type: ControlType.Boolean,\n//     enabledTitle: \"Show\",\n//     disabledTitle: \"Hide\",\n//     defaultValue: defaultProps.showHours,\n//     hidden: (props) => props.outputType !== \"time\",\n// },\nshowMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showMinutes,hidden:props=>props.outputType!==\"time\"},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue: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:defaultProps.color}});\nexport const __FramerMetadata__ = {\"exports\":{\"Time\":{\"type\":\"reactComponent\",\"name\":\"Time\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicWidth\":\"140\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Time.map", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={qjF_0ylnD:{hover:true}};const serializationHash=\"framer-mp4dg\";const variantClassNames={qjF_0ylnD:\"framer-v-vh1owk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({contactDetailsLink,contactDetailsTitle,height,id,newTab,width,...props})=>{var _ref,_ref1;return{...props,GV7afZjGy:(_ref=newTab!==null&&newTab!==void 0?newTab:props.GV7afZjGy)!==null&&_ref!==void 0?_ref:true,RKO1oRO98:contactDetailsLink!==null&&contactDetailsLink!==void 0?contactDetailsLink:props.RKO1oRO98,vwGB8EEIS:(_ref1=contactDetailsTitle!==null&&contactDetailsTitle!==void 0?contactDetailsTitle:props.vwGB8EEIS)!==null&&_ref1!==void 0?_ref1:\"mail@example.com\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,vwGB8EEIS,RKO1oRO98,GV7afZjGy,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"qjF_0ylnD\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:RKO1oRO98,nodeId:\"qjF_0ylnD\",openInNewTab:GV7afZjGy,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-vh1owk\",className,classNames)} framer-ov73wh`,\"data-framer-name\":\"Footer contact details\",layoutDependency:layoutDependency,layoutId:\"qjF_0ylnD\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"qjF_0ylnD-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.5px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"mail@nebula.com\"})}),className:\"framer-418ibx\",fonts:[\"GF;Inter Tight-regular\"],layoutDependency:layoutDependency,layoutId:\"sZGNGCaEq\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vwGB8EEIS,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.5px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"mail@example.com\"})}),className:\"framer-1ri2353\",fonts:[\"GF;Inter Tight-regular\"],layoutDependency:layoutDependency,layoutId:\"dHjwQIHpy\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vwGB8EEIS,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mp4dg.framer-ov73wh, .framer-mp4dg .framer-ov73wh { display: block; }\",\".framer-mp4dg.framer-vh1owk { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 19px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-mp4dg .framer-418ibx { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-mp4dg .framer-1ri2353 { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mp4dg.framer-vh1owk { gap: 0px; } .framer-mp4dg.framer-vh1owk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-mp4dg.framer-vh1owk > :first-child { margin-top: 0px; } .framer-mp4dg.framer-vh1owk > :last-child { margin-bottom: 0px; } }\",\".framer-mp4dg.framer-v-vh1owk.hover.framer-vh1owk { justify-content: flex-end; }\",\".framer-mp4dg.framer-v-vh1owk.hover .framer-418ibx { z-index: 1; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 19\n * @framerIntrinsicWidth 142\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"gMO_nt4SD\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"vwGB8EEIS\":\"contactDetailsTitle\",\"RKO1oRO98\":\"contactDetailsLink\",\"GV7afZjGy\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFXOkUf8JN=withCSS(Component,css,\"framer-mp4dg\");export default FramerFXOkUf8JN;FramerFXOkUf8JN.displayName=\"Footer - Button contact details\";FramerFXOkUf8JN.defaultProps={height:19,width:142};addPropertyControls(FramerFXOkUf8JN,{vwGB8EEIS:{defaultValue:\"mail@example.com\",description:\"Title of the contact details.\",displayTextArea:false,placeholder:\"mail@example.com\",title:\"Contact Details Title\",type:ControlType.String},RKO1oRO98:{description:\"Link to which the contact details point.\",title:\"Contact Details Link\",type:ControlType.Link},GV7afZjGy:{defaultValue:true,description:\"Open link in new tab?\",title:\"New tab?\",type:ControlType.Boolean}});addFonts(FramerFXOkUf8JN,[{explicitInter:true,fonts:[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qWSRToK8EPg.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFXOkUf8JN\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"gMO_nt4SD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"142\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"19\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"vwGB8EEIS\\\":\\\"contactDetailsTitle\\\",\\\"RKO1oRO98\\\":\\\"contactDetailsLink\\\",\\\"GV7afZjGy\\\":\\\"newTab\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FXOkUf8JN.map", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={pVc8mD1GE:{hover:true}};const serializationHash=\"framer-eiKYo\";const variantClassNames={pVc8mD1GE:\"framer-v-15l6lcz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:300,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({contactButtonLink,contactButtonTitle,height,id,newTab,width,...props})=>{var _ref;return{...props,a_tThaokp:(_ref=contactButtonTitle!==null&&contactButtonTitle!==void 0?contactButtonTitle:props.a_tThaokp)!==null&&_ref!==void 0?_ref:\"Contact\",Hyefms2Dh:newTab!==null&&newTab!==void 0?newTab:props.Hyefms2Dh,TvaJdc_kn:contactButtonLink!==null&&contactButtonLink!==void 0?contactButtonLink:props.TvaJdc_kn};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,a_tThaokp,TvaJdc_kn,Hyefms2Dh,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"pVc8mD1GE\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:TvaJdc_kn,nodeId:\"pVc8mD1GE\",openInNewTab:Hyefms2Dh,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-15l6lcz\",className,classNames)} framer-crnvfl`,\"data-framer-name\":\"Navigation button contact\",layoutDependency:layoutDependency,layoutId:\"pVc8mD1GE\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"pVc8mD1GE-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:\"Contact\"})}),className:\"framer-tl5d2k\",fonts:[\"GF;Inter Tight-regular\"],layoutDependency:layoutDependency,layoutId:\"UlW2pg7AC\",style:{\"--extracted-1eung3n\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:a_tThaokp,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||20)-0-19)/2)),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/80ciNZpezWIjtjuOmGuff6aTdc.png\"},className:\"framer-1pz3aau\",\"data-framer-name\":\"Right_up_Arrow\",layoutDependency:layoutDependency,layoutId:\"YDPc35ft_\",style:{rotate:0},variants:{\"pVc8mD1GE-hover\":{rotate:45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cc3mhk\",layoutDependency:layoutDependency,layoutId:\"WPrP2aVRp\",style:{backgroundColor:\"var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202))\"}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eiKYo.framer-crnvfl, .framer-eiKYo .framer-crnvfl { display: block; }\",\".framer-eiKYo.framer-15l6lcz { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 20px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-eiKYo .framer-tl5d2k { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-eiKYo .framer-1pz3aau { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); overflow: visible; position: relative; width: 19px; }\",\".framer-eiKYo .framer-cc3mhk { bottom: 0px; flex: none; height: 1px; left: -1px; overflow: visible; position: absolute; width: 1px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eiKYo.framer-15l6lcz { gap: 0px; } .framer-eiKYo.framer-15l6lcz > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-eiKYo.framer-15l6lcz > :first-child { margin-left: 0px; } .framer-eiKYo.framer-15l6lcz > :last-child { margin-right: 0px; } }\",\".framer-eiKYo.framer-v-15l6lcz.hover .framer-cc3mhk { left: -1px; right: 0px; width: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 82.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"X6ls7FrQ2\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"a_tThaokp\":\"contactButtonTitle\",\"TvaJdc_kn\":\"contactButtonLink\",\"Hyefms2Dh\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramergBWRxyKR7=withCSS(Component,css,\"framer-eiKYo\");export default FramergBWRxyKR7;FramergBWRxyKR7.displayName=\"Footer - Menu item with icon\";FramergBWRxyKR7.defaultProps={height:20,width:82.5};addPropertyControls(FramergBWRxyKR7,{a_tThaokp:{defaultValue:\"Contact\",description:\"Title of the contact button.\",displayTextArea:false,placeholder:\"Contact\",title:\"Contact Button Title\",type:ControlType.String},TvaJdc_kn:{description:\"Link to which the contact button points.\",title:\"Contact Button Link\",type:ControlType.Link},Hyefms2Dh:{defaultValue:false,description:\"Open the link in a new tab?\",title:\"New Tab?\",type:ControlType.Boolean}});addFonts(FramergBWRxyKR7,[{explicitInter:true,fonts:[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qWSRToK8EPg.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergBWRxyKR7\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"a_tThaokp\\\":\\\"contactButtonTitle\\\",\\\"TvaJdc_kn\\\":\\\"contactButtonLink\\\",\\\"Hyefms2Dh\\\":\\\"newTab\\\"}\",\"framerIntrinsicWidth\":\"82.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"X6ls7FrQ2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"20\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./gBWRxyKR7.map", "import{ControlType as e}from\"framer\";export function getBorderStyle({color:e,width:t=0,widthPerSide:o=!1,widthTop:d=0,widthRight:r=0,widthBottom:i=0,widthLeft:l=0,style:h=\"none\"}={}){let b={};return e?(b[\"--framer-border-color\"]=e,b.borderStyle=h,o?(b.borderTopWidth=d,b.borderRightWidth=r,b.borderBottomWidth=i,b.borderLeftWidth=l):(b.borderTopWidth=t,b.borderRightWidth=t,b.borderBottomWidth=t,b.borderLeftWidth=t)):b.border=\"none\",b;}export const borderControls={color:{type:e.Color,defaultValue:\"#444\"},width:{type:e.FusedNumber,toggleKey:\"widthPerSide\",toggleTitles:[\"Width\",\"Width per side\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],defaultValue:1,min:0},style:{type:e.Enum,options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"double\"],defaultValue:\"solid\"}};\nexport const __FramerMetadata__ = {\"exports\":{\"borderControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBorderStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"BorderOptions\":{\"type\":\"tsType\",\"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(typeof padding===\"string\"){return{padding};}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.Padding,defaultValue:\"10px\"}};\nexport const __FramerMetadata__ = {\"exports\":{\"paddingControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getPaddingStyle\":{\"type\":\"function\",\"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}={}){if(typeof radius===\"string\"){return{borderRadius:radius};}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.BorderRadius,defaultValue:\"10px\"}};\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", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,// @ts-ignore Internal function\nuseLocaleInfo,// @ts-ignore Internal function\nuseLocalesForCurrentRoute,withCSS}from\"framer\";import{useId,useState}from\"react\";import{getBorderStyle,borderControls}from\"https://framerusercontent.com/modules/cuKUFdzXlhvw8OVOBeAc/T08RxQJ4qrs7LLc8wx4E/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/XQ1GMXuIqYrEN1c0R6E5/padding.js\";import{getRadiusStyle,radiusControls}from\"https://framerusercontent.com/modules/N6MwtHbWoiZJNn1xpqxu/ZEWmVGYDUhL44tluQO5y/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===\"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===\"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();const localesForCurrentRoute=useLocalesForCurrentRoute();const activeLocaleId=activeLocale?.id??\"default\";const[lastActiveLocaleId,setLastActiveLocaleId]=useState(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!==activeLocaleId){setLastActiveLocaleId(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);}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,// If a navigation occurs from switching locales\n// the browser can attempt to autofill the select to the last value\n// when you use browser back navigation. We don't want that.\nautoComplete:\"off\",children:localesForCurrentRoute.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:selectedLocale?.name??\"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                cursor: inherit;\n                width: 100%;\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        `],\"framer-library-LocalePicker\");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,defaultValue:\"#000\",hidden:props=>props.type!==\"default\"},image:{type:ControlType.ResponsiveImage,title:\"File\",hidden:props=>props.type!==\"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,defaultValue:\"#000\",hidden:props=>props.type!==\"default\"},image:{type:ControlType.ResponsiveImage,title:\"File\",hidden:props=>props.type!==\"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\",\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"34\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LocaleSelector.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter Tight-regular\",\"GF;Inter Tight-700\",\"GF;Inter Tight-700italic\",\"GF;Inter Tight-italic\"]);export const fonts=[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qWSRToK8EPg.woff2\",weight:\"400\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj6AiqWSRToK8EPg.woff2\",weight:\"700\"},{family:\"Inter Tight\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ylGC5SgqoUPvi5.woff2\",weight:\"700\"},{family:\"Inter Tight\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHy5SgqoUPvi5.woff2\",weight:\"400\"}];export const css=['.framer-FzbDc .framer-styles-preset-kjpgfo:not(.rich-text-wrapper), .framer-FzbDc .framer-styles-preset-kjpgfo.rich-text-wrapper h4 { --framer-font-family: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-italic: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-size: 14px; --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: 0.5px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-FzbDc\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,CycleVariantState,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/myvGGXi56E7lFB6tbGWt/awFJ6iOkZfF7pXnjVLiO/l7xe_bXpH.js\";const enabledGestures={jUsTSCXrC:{hover:true},LFNpQM7rV:{hover:true},yCheO_fjb:{hover:true},ZUOffMA1r:{hover:true}};const cycleOrder=[\"yCheO_fjb\",\"jUsTSCXrC\",\"LFNpQM7rV\",\"ZUOffMA1r\"];const serializationHash=\"framer-7uXyQ\";const variantClassNames={jUsTSCXrC:\"framer-v-gho2zc\",LFNpQM7rV:\"framer-v-1xopbkz\",yCheO_fjb:\"framer-v-s8l5et\",ZUOffMA1r:\"framer-v-18g4thf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};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={\"Button State 1\":\"yCheO_fjb\",\"Button State 2\":\"jUsTSCXrC\",\"Button State 3\":\"LFNpQM7rV\",\"Button State 4\":\"ZUOffMA1r\"};const getProps=({buttonLink,buttonText,height,id,newTab,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,FkwW3a0aw:(_ref=newTab!==null&&newTab!==void 0?newTab:props.FkwW3a0aw)!==null&&_ref!==void 0?_ref:true,lPe31cTnC:(_ref1=buttonText!==null&&buttonText!==void 0?buttonText:props.lPe31cTnC)!==null&&_ref1!==void 0?_ref1:\"Button text\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"yCheO_fjb\",wiM4R7YyN:buttonLink!==null&&buttonLink!==void 0?buttonLink:props.wiM4R7YyN};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,lPe31cTnC,wiM4R7YyN,FkwW3a0aw,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"yCheO_fjb\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearfzmf19=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),1e3);});useOnVariantChange(baseVariant,{default:onAppearfzmf19});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:wiM4R7YyN,nodeId:\"yCheO_fjb\",openInNewTab:FkwW3a0aw,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-s8l5et\",className,classNames)} framer-1i5s5p5`,\"data-framer-name\":\"Button State 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"yCheO_fjb\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-0143b987-3044-47c5-b1a5-35e8c9d574b4, rgb(35, 35, 35))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({\"jUsTSCXrC-hover\":{\"data-framer-name\":undefined},\"LFNpQM7rV-hover\":{\"data-framer-name\":undefined},\"yCheO_fjb-hover\":{\"data-framer-name\":undefined},\"ZUOffMA1r-hover\":{\"data-framer-name\":undefined},jUsTSCXrC:{\"data-framer-name\":\"Button State 2\"},LFNpQM7rV:{\"data-framer-name\":\"Button State 3\"},ZUOffMA1r:{\"data-framer-name\":\"Button State 4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-101v2z0\",\"data-framer-name\":\"Glow\",layoutDependency:layoutDependency,layoutId:\"g_euzJuqm\",style:{background:'radial-gradient(30.099999999999998% 30.099999999999998% at 50% 100%, var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202)) /* {\"name\":\"Lime Green\"} */ 0%, rgba(171, 171, 171, 0) 100%)',borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,filter:\"blur(15px)\",WebkitFilter:\"blur(15px)\"},variants:{\"jUsTSCXrC-hover\":{background:'radial-gradient(75% 75% at 50% 50%, var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202)) /* {\"name\":\"Lime Green\"} */ 0%, rgba(171, 171, 171, 0) 100%)'},\"LFNpQM7rV-hover\":{background:'radial-gradient(75% 75% at 50% 50%, var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202)) /* {\"name\":\"Lime Green\"} */ 0%, rgba(171, 171, 171, 0) 100%)'},\"yCheO_fjb-hover\":{background:'radial-gradient(75% 75% at 50% 50%, var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202)) /* {\"name\":\"Lime Green\"} */ 0%, rgba(171, 171, 171, 0) 100%)'},\"ZUOffMA1r-hover\":{background:'radial-gradient(75% 75% at 50% 50%, var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202)) /* {\"name\":\"Lime Green\"} */ 0%, rgba(171, 171, 171, 0) 100%)'},jUsTSCXrC:{background:'radial-gradient(25% 40.300000000000004% at 0% 50%, var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202)) /* {\"name\":\"Lime Green\"} */ 0%, rgba(171, 171, 171, 0) 100%)'},LFNpQM7rV:{background:'radial-gradient(30% 29.9% at 50% 0%, var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202)) /* {\"name\":\"Lime Green\"} */ 0%, rgba(171, 171, 171, 0) 100%)'},ZUOffMA1r:{background:'radial-gradient(25% 40.300000000000004% at 100% 50%, var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202)) /* {\"name\":\"Lime Green\"} */ 0%, rgba(171, 171, 171, 0) 100%)'}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-okw4ap\",\"data-framer-name\":\"Stroke\",layoutDependency:layoutDependency,layoutId:\"qHuGIOuuP\",style:{background:'radial-gradient(39.800000000000004% 40.300000000000004% at 50% 100%, var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202)) /* {\"name\":\"Lime Green\"} */ 0%, rgba(171, 171, 171, 0) 100%)',borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{\"jUsTSCXrC-hover\":{background:'radial-gradient(75% 75% at 50% 50%, var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202)) /* {\"name\":\"Lime Green\"} */ 0%, rgba(171, 171, 171, 0) 100%)'},\"LFNpQM7rV-hover\":{background:'radial-gradient(75% 75% at 50% 50%, var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202)) /* {\"name\":\"Lime Green\"} */ 0%, rgba(171, 171, 171, 0) 100%)'},\"yCheO_fjb-hover\":{background:'radial-gradient(75% 75% at 50% 50%, var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202)) /* {\"name\":\"Lime Green\"} */ 0%, rgba(171, 171, 171, 0) 100%)'},\"ZUOffMA1r-hover\":{background:'radial-gradient(75% 75% at 50% 50%, var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202)) /* {\"name\":\"Lime Green\"} */ 0%, rgba(171, 171, 171, 0) 100%)'},jUsTSCXrC:{background:'radial-gradient(50% 40.300000000000004% at 0% 50%, var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202)) /* {\"name\":\"Lime Green\"} */ 0%, rgba(171, 171, 171, 0) 100%)'},LFNpQM7rV:{background:'radial-gradient(39.800000000000004% 40.300000000000004% at 50% 0%, var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202)) /* {\"name\":\"Lime Green\"} */ 0%, rgba(171, 171, 171, 0) 100%)'},ZUOffMA1r:{background:'radial-gradient(50% 40.300000000000004% at 100% 50%, var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202)) /* {\"name\":\"Lime Green\"} */ 0%, rgba(171, 171, 171, 0) 100%)'}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-127nktg\",\"data-framer-name\":\"Fill\",layoutDependency:layoutDependency,layoutId:\"p3c1Z9rmC\",style:{backgroundColor:\"var(--token-03eab235-3bed-40df-b779-0a3a00befd1f, rgb(15, 15, 15))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-kjpgfo\",\"data-styles-preset\":\"l7xe_bXpH\",children:\"Button text\"})}),className:\"framer-10ofhyd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gLBq5VcJZ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:lPe31cTnC,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7uXyQ.framer-1i5s5p5, .framer-7uXyQ .framer-1i5s5p5 { display: block; }\",\".framer-7uXyQ.framer-s8l5et { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-7uXyQ .framer-101v2z0, .framer-7uXyQ .framer-okw4ap { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-7uXyQ .framer-127nktg { bottom: 1px; flex: none; left: 1px; overflow: visible; position: absolute; right: 1px; top: 1px; z-index: 0; }\",\".framer-7uXyQ .framer-10ofhyd { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7uXyQ.framer-s8l5et { gap: 0px; } .framer-7uXyQ.framer-s8l5et > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-7uXyQ.framer-s8l5et > :first-child { margin-left: 0px; } .framer-7uXyQ.framer-s8l5et > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 43.5\n * @framerIntrinsicWidth 111.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"jUsTSCXrC\":{\"layout\":[\"auto\",\"auto\"]},\"LFNpQM7rV\":{\"layout\":[\"auto\",\"auto\"]},\"ZUOffMA1r\":{\"layout\":[\"auto\",\"auto\"]},\"q1ohUuyv3\":{\"layout\":[\"auto\",\"auto\"]},\"KDFb98kkF\":{\"layout\":[\"auto\",\"auto\"]},\"T05yUIuG_\":{\"layout\":[\"auto\",\"auto\"]},\"zIiX0qfbc\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"lPe31cTnC\":\"buttonText\",\"wiM4R7YyN\":\"buttonLink\",\"FkwW3a0aw\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJNUQKu9Vo=withCSS(Component,css,\"framer-7uXyQ\");export default FramerJNUQKu9Vo;FramerJNUQKu9Vo.displayName=\"Button with rotating shimmer - black\";FramerJNUQKu9Vo.defaultProps={height:43.5,width:111.5};addPropertyControls(FramerJNUQKu9Vo,{variant:{options:[\"yCheO_fjb\",\"jUsTSCXrC\",\"LFNpQM7rV\",\"ZUOffMA1r\"],optionTitles:[\"Button State 1\",\"Button State 2\",\"Button State 3\",\"Button State 4\"],title:\"Variant\",type:ControlType.Enum},lPe31cTnC:{defaultValue:\"Button text\",description:\"Text shown on the button.\",displayTextArea:false,title:\"Button text\",type:ControlType.String},wiM4R7YyN:{description:\"Link to which the button points.\",title:\"Button Link\",type:ControlType.Link},FkwW3a0aw:{defaultValue:true,description:\"Open link in a new tab?\",title:\"New Tab?\",type:ControlType.Boolean}});addFonts(FramerJNUQKu9Vo,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJNUQKu9Vo\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"jUsTSCXrC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"LFNpQM7rV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZUOffMA1r\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"q1ohUuyv3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"KDFb98kkF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"T05yUIuG_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zIiX0qfbc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"111.5\",\"framerVariables\":\"{\\\"lPe31cTnC\\\":\\\"buttonText\\\",\\\"wiM4R7YyN\\\":\\\"buttonLink\\\",\\\"FkwW3a0aw\\\":\\\"newTab\\\"}\",\"framerIntrinsicHeight\":\"43.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JNUQKu9Vo.map", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/myvGGXi56E7lFB6tbGWt/awFJ6iOkZfF7pXnjVLiO/l7xe_bXpH.js\";const enabledGestures={iWiuvYiJ6:{hover:true}};const serializationHash=\"framer-O1QD3\";const variantClassNames={iWiuvYiJ6:\"framer-v-1qrmhus\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:300,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,menuItem,menuItemLink,newTab,width,...props})=>{var _ref;return{...props,cU9ezo6Gr:menuItemLink!==null&&menuItemLink!==void 0?menuItemLink:props.cU9ezo6Gr,GnaXn2XRM:(_ref=menuItem!==null&&menuItem!==void 0?menuItem:props.GnaXn2XRM)!==null&&_ref!==void 0?_ref:\"Menu\",zPP4DL6s3:newTab!==null&&newTab!==void 0?newTab:props.zPP4DL6s3};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,GnaXn2XRM,cU9ezo6Gr,zPP4DL6s3,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"iWiuvYiJ6\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:cU9ezo6Gr,nodeId:\"iWiuvYiJ6\",openInNewTab:zPP4DL6s3,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1qrmhus\",className,classNames)} framer-tt4gv0`,\"data-framer-name\":\"Navigation button process\",layoutDependency:layoutDependency,layoutId:\"iWiuvYiJ6\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"iWiuvYiJ6-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w385eu\",\"data-framer-name\":\"Menu item\",layoutDependency:layoutDependency,layoutId:\"J3T1J0BCN\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aqn17\",layoutDependency:layoutDependency,layoutId:\"sNMh3HLUL\",style:{backgroundColor:\"var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202))\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-kjpgfo\",\"data-styles-preset\":\"l7xe_bXpH\",children:\"Process\"})}),className:\"framer-fjy2i8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iAJaKInt6\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:GnaXn2XRM,verticalAlignment:\"top\",withExternalLayout:true})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-O1QD3.framer-tt4gv0, .framer-O1QD3 .framer-tt4gv0 { display: block; }\",\".framer-O1QD3.framer-1qrmhus { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-O1QD3 .framer-w385eu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-O1QD3 .framer-1aqn17 { bottom: 0px; flex: none; height: 1px; left: -1px; overflow: visible; position: absolute; width: 1px; z-index: 1; }\",\".framer-O1QD3 .framer-fjy2i8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-O1QD3.framer-1qrmhus, .framer-O1QD3 .framer-w385eu { gap: 0px; } .framer-O1QD3.framer-1qrmhus > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-O1QD3.framer-1qrmhus > :first-child { margin-top: 0px; } .framer-O1QD3.framer-1qrmhus > :last-child { margin-bottom: 0px; } .framer-O1QD3 .framer-w385eu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-O1QD3 .framer-w385eu > :first-child { margin-left: 0px; } .framer-O1QD3 .framer-w385eu > :last-child { margin-right: 0px; } }\",\".framer-O1QD3.framer-v-1qrmhus.hover .framer-1aqn17 { bottom: 0px; right: 0px; width: unset; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 19.5\n * @framerIntrinsicWidth 36.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"dbDfZI7VB\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"GnaXn2XRM\":\"menuItem\",\"cU9ezo6Gr\":\"menuItemLink\",\"zPP4DL6s3\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersQRnmNtCN=withCSS(Component,css,\"framer-O1QD3\");export default FramersQRnmNtCN;FramersQRnmNtCN.displayName=\"Navigation - Menu item\";FramersQRnmNtCN.defaultProps={height:19.5,width:36.5};addPropertyControls(FramersQRnmNtCN,{GnaXn2XRM:{defaultValue:\"Menu\",description:\"Menu item text.\",displayTextArea:false,placeholder:\"Menu\",title:\"Menu item\",type:ControlType.String},cU9ezo6Gr:{description:\"Link to which the menu item points.\",title:\"Menu item link\",type:ControlType.Link},zPP4DL6s3:{defaultValue:false,description:\"Open link in a new tab?\",title:\"New Tab?\",type:ControlType.Boolean}});addFonts(FramersQRnmNtCN,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersQRnmNtCN\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"19.5\",\"framerIntrinsicWidth\":\"36.5\",\"framerVariables\":\"{\\\"GnaXn2XRM\\\":\\\"menuItem\\\",\\\"cU9ezo6Gr\\\":\\\"menuItemLink\\\",\\\"zPP4DL6s3\\\":\\\"newTab\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dbDfZI7VB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./sQRnmNtCN.map", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={DEWgs1VYL:{hover:true}};const serializationHash=\"framer-PYIWa\";const variantClassNames={DEWgs1VYL:\"framer-v-14ys2jn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,logoText,logoTextOnHover,width,...props})=>{var _ref,_ref1;return{...props,wYKrcpmTB:(_ref=logoText!==null&&logoText!==void 0?logoText:props.wYKrcpmTB)!==null&&_ref!==void 0?_ref:\"Company\",z59PjYocl:(_ref1=logoTextOnHover!==null&&logoTextOnHover!==void 0?logoTextOnHover:props.z59PjYocl)!==null&&_ref1!==void 0?_ref1:\"Company\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,wYKrcpmTB,z59PjYocl,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"DEWgs1VYL\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"DEWgs1VYL\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-14ys2jn\",className,classNames)} framer-kyw1hn`,\"data-framer-name\":\"Navigation Logo\",layoutDependency:layoutDependency,layoutId:\"DEWgs1VYL\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"DEWgs1VYL-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202)))\"},children:\"NEBULA\"})}),className:\"framer-suynu9\",fonts:[\"GF;Space Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"b57iPTAgE\",style:{\"--extracted-r6o4lv\":\"var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:wYKrcpmTB,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202)))\"},children:\"NEBULA\"})}),className:\"framer-1xplxmb\",fonts:[\"GF;Space Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"Os09QpOwk\",style:{\"--extracted-r6o4lv\":\"var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:z59PjYocl,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PYIWa.framer-kyw1hn, .framer-PYIWa .framer-kyw1hn { display: block; }\",\".framer-PYIWa.framer-14ys2jn { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 25px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-PYIWa .framer-suynu9 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-PYIWa .framer-1xplxmb { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PYIWa.framer-14ys2jn { gap: 0px; } .framer-PYIWa.framer-14ys2jn > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-PYIWa.framer-14ys2jn > :first-child { margin-top: 0px; } .framer-PYIWa.framer-14ys2jn > :last-child { margin-bottom: 0px; } }\",\".framer-PYIWa.framer-v-14ys2jn.hover.framer-14ys2jn { justify-content: flex-end; }\",\".framer-PYIWa.framer-v-14ys2jn.hover .framer-suynu9 { position: absolute; right: 0px; top: -25px; z-index: 1; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 25\n * @framerIntrinsicWidth 82\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"QuAdNiQGR\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"wYKrcpmTB\":\"logoText\",\"z59PjYocl\":\"logoTextOnHover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerebmAEorRV=withCSS(Component,css,\"framer-PYIWa\");export default FramerebmAEorRV;FramerebmAEorRV.displayName=\"Navigation - Logo\";FramerebmAEorRV.defaultProps={height:25,width:82};addPropertyControls(FramerebmAEorRV,{wYKrcpmTB:{defaultValue:\"Company\",description:\"\",displayTextArea:false,placeholder:\"Company\",title:\"Logo text\",type:ControlType.String},z59PjYocl:{defaultValue:\"Company\",description:\"\",displayTextArea:false,placeholder:\"Company\",title:\"Logo text on hover\",type:ControlType.String}});addFonts(FramerebmAEorRV,[{explicitInter:true,fonts:[{family:\"Space Grotesk\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/spacegrotesk/v16/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7oUUsmNsFjTDJK.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerebmAEorRV\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"25\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"82\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"wYKrcpmTB\\\":\\\"logoText\\\",\\\"z59PjYocl\\\":\\\"logoTextOnHover\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"QuAdNiQGR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ebmAEorRV.map", "// Generated by Framer (f73129a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={jQEg3rVm_:{hover:true}};const serializationHash=\"framer-1m3oZ\";const variantClassNames={jQEg3rVm_:\"framer-v-1bybgom\"};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:300,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,menuItem,menuItemLink,newTab,width,...props})=>{return{...props,cU9ezo6Gr:menuItemLink??props.cU9ezo6Gr,GnaXn2XRM:menuItem??props.GnaXn2XRM??\"Menu\",zPP4DL6s3:newTab??props.zPP4DL6s3};};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,GnaXn2XRM,cU9ezo6Gr,zPP4DL6s3,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"jQEg3rVm_\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:cU9ezo6Gr,motionChild:true,nodeId:\"jQEg3rVm_\",openInNewTab:zPP4DL6s3,scopeId:\"kXK2VlsWc\",smoothScroll:true,...addPropertyOverrides({\"jQEg3rVm_-hover\":{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1bybgom\",className,classNames)} framer-lshhbk`,\"data-framer-name\":\"Navigation button process\",layoutDependency:layoutDependency,layoutId:\"jQEg3rVm_\",ref:refBinding,style:{...style},...addPropertyOverrides({\"jQEg3rVm_-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m0fy1r\",\"data-framer-name\":\"Menu item\",layoutDependency:layoutDependency,layoutId:\"ABjeRB5NI\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-dgvkkl\",layoutDependency:layoutDependency,layoutId:\"TNyVvsqSl\",style:{backgroundColor:\"var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202))\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:\"Process\"})}),className:\"framer-9r59li\",fonts:[\"GF;Inter Tight-regular\"],layoutDependency:layoutDependency,layoutId:\"cY4eoC9oB\",style:{\"--extracted-1eung3n\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:GnaXn2XRM,verticalAlignment:\"top\",withExternalLayout:true})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1m3oZ.framer-lshhbk, .framer-1m3oZ .framer-lshhbk { display: block; }\",\".framer-1m3oZ.framer-1bybgom { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-1m3oZ .framer-m0fy1r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-1m3oZ .framer-dgvkkl { bottom: 0px; flex: none; height: 1px; left: -1px; overflow: visible; position: absolute; width: 1px; z-index: 1; }\",\".framer-1m3oZ .framer-9r59li { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-1m3oZ.framer-v-1bybgom.hover .framer-dgvkkl { bottom: 0px; right: 0px; width: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 36\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"bCyz3JhOG\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"GnaXn2XRM\":\"menuItem\",\"cU9ezo6Gr\":\"menuItemLink\",\"zPP4DL6s3\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerkXK2VlsWc=withCSS(Component,css,\"framer-1m3oZ\");export default FramerkXK2VlsWc;FramerkXK2VlsWc.displayName=\"Navigation - Menu item 2\";FramerkXK2VlsWc.defaultProps={height:20,width:36};addPropertyControls(FramerkXK2VlsWc,{GnaXn2XRM:{defaultValue:\"Menu\",description:\"Menu item text.\",displayTextArea:false,placeholder:\"Menu\",title:\"Menu item\",type:ControlType.String},cU9ezo6Gr:{description:\"Link to which the menu item points.\",title:\"Menu item link\",type:ControlType.Link},zPP4DL6s3:{defaultValue:false,description:\"Open link in a new tab?\",title:\"New Tab?\",type:ControlType.Boolean}});addFonts(FramerkXK2VlsWc,[{explicitInter:true,fonts:[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qWSRToK8EPg.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkXK2VlsWc\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"20\",\"framerIntrinsicWidth\":\"36\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"bCyz3JhOG\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"GnaXn2XRM\\\":\\\"menuItem\\\",\\\"cU9ezo6Gr\\\":\\\"menuItemLink\\\",\\\"zPP4DL6s3\\\":\\\"newTab\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kXK2VlsWc.map", "// Generated by Framer (5351ffe)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import LocaleSelector from\"https://framerusercontent.com/modules/57FhkldN9P7x88MqAEaR/fW26mCIOTpHHBOBnf7GZ/LocaleSelector.js\";import ButtonWithRotatingShimmerBlack from\"https://framerusercontent.com/modules/FH9fz6gUVlpEgy9KeMqh/9Yl3q4EblSKmHROyX0cS/JNUQKu9Vo.js\";import NavigationMenuItem from\"https://framerusercontent.com/modules/mTV3ZmvXCoOwgUkwED40/Teq46DU4mF9907nLQhLa/sQRnmNtCN.js\";import NavigationLogo from\"https://framerusercontent.com/modules/UCEBL2NkwB1peLOx6GVI/BobInhrj3EnZR2zlxFuW/ebmAEorRV.js\";import NavigationMenuItem2 from\"https://framerusercontent.com/modules/lqsgu4tGosP98Vu877RM/8Vca7lSi8cXpiuZkwLvl/kXK2VlsWc.js\";const NavigationLogoFonts=getFonts(NavigationLogo);const NavigationMenuItemFonts=getFonts(NavigationMenuItem);const NavigationMenuItem2Fonts=getFonts(NavigationMenuItem2);const LocaleSelectorFonts=getFonts(LocaleSelector);const ButtonWithRotatingShimmerBlackFonts=getFonts(ButtonWithRotatingShimmerBlack);const serializationHash=\"framer-Y5wk2\";const variantClassNames={hYNRnUPQi:\"framer-v-1p8tmej\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({buttonWithRotatingShimmerLink,buttonWithRotatingShimmerText,height,id,logoImage,logoText,logoTextOnHover,menuItem1,menuItem1Link,menuItem2,menuItem2Link,menuItem5,menuItem5Link,menuItem6,menuItem6Link,newTab,newTab1,newTab2,newTab6,width,...props})=>{return{...props,AKiHJSbtj:menuItem5??props.AKiHJSbtj??\"Team\",Fv7GsCbQt:menuItem5Link??props.Fv7GsCbQt,gIoF6pZQx:menuItem6Link??props.gIoF6pZQx,JjlQqVt_0:menuItem2??props.JjlQqVt_0??\"Services\",locDNESqS:menuItem1??props.locDNESqS??\"Process\",MUyzKGXnD:menuItem1Link??props.MUyzKGXnD,Mzvbq6XGp:logoImage??props.Mzvbq6XGp??{alt:\"\",pixelHeight:280,pixelWidth:280,src:\"https://framerusercontent.com/images/EqsnowJafXtaNwlwCSjortZ8HOs.png\"},pahEe8Fw0:menuItem2Link??props.pahEe8Fw0,pPkA46E6R:logoTextOnHover??props.pPkA46E6R??\"NEBULA\",q2Xr7SlEo:newTab1??props.q2Xr7SlEo,qQKjGBX1k:newTab6??props.qQKjGBX1k,rbo9Mjbeg:menuItem6??props.rbo9Mjbeg??\"Case Studies\",rJJqicL60:logoText??props.rJJqicL60??\"NEBULA\",VRorMD0gc:buttonWithRotatingShimmerLink??props.VRorMD0gc,W2I3pPuGU:buttonWithRotatingShimmerText??props.W2I3pPuGU??\"Buy this template\",yztqrLXaD:newTab??props.yztqrLXaD,zi0cZZNCu:newTab2??props.zi0cZZNCu??true};};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,Mzvbq6XGp,rJJqicL60,pPkA46E6R,locDNESqS,MUyzKGXnD,JjlQqVt_0,pahEe8Fw0,yztqrLXaD,AKiHJSbtj,Fv7GsCbQt,q2Xr7SlEo,rbo9Mjbeg,gIoF6pZQx,qQKjGBX1k,W2I3pPuGU,VRorMD0gc,zi0cZZNCu,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"hYNRnUPQi\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1p8tmej\",className,classNames),\"data-framer-name\":\"Desktop (1440)\",layoutDependency:layoutDependency,layoutId:\"hYNRnUPQi\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dpil0h\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"cBsLdDa2Q\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r3h38d\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"E5PSYBwEo\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||80)-0-44)/2)+4.5+0),pixelHeight:280,pixelWidth:280,sizes:\"40px\",...toResponsiveImage(Mzvbq6XGp)},className:\"framer-1v9lvx0\",layoutDependency:layoutDependency,layoutId:\"SYjfShI5p\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+(0+((componentViewport?.height||80)-0-44)/2)+4.5+5,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1j2a712-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"qz33MZdb4-container\",nodeId:\"qz33MZdb4\",rendersWithMotion:true,scopeId:\"jJ9t9IU_F\",children:/*#__PURE__*/_jsx(NavigationLogo,{height:\"100%\",id:\"qz33MZdb4\",layoutId:\"qz33MZdb4\",width:\"100%\",wYKrcpmTB:rJJqicL60,z59PjYocl:pPkA46E6R})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oncc6z\",\"data-border\":true,\"data-framer-name\":\"Menu items\",layoutDependency:layoutDependency,layoutId:\"b39volA4I\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-0143b987-3044-47c5-b1a5-35e8c9d574b4, rgb(35, 35, 35))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,WebkitBackdropFilter:\"blur(10px)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:(componentViewport?.y||0)+(0+((componentViewport?.height||80)-0-44)/2)+0+12.5,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-o969ya-container\",\"data-framer-name\":\"Menu item\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"BKQQvde48-container\",name:\"Menu item\",nodeId:\"BKQQvde48\",rendersWithMotion:true,scopeId:\"jJ9t9IU_F\",children:/*#__PURE__*/_jsx(NavigationMenuItem,{cU9ezo6Gr:MUyzKGXnD,GnaXn2XRM:locDNESqS,height:\"100%\",id:\"BKQQvde48\",layoutId:\"BKQQvde48\",name:\"Menu item\",width:\"100%\",zPP4DL6s3:qQKjGBX1k})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+(0+((componentViewport?.height||80)-0-44)/2)+0+12,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vtsmy1-container\",\"data-framer-name\":\"Case Studies\",layoutDependency:layoutDependency,layoutId:\"zQcRVWM7T-container\",name:\"Case Studies\",nodeId:\"zQcRVWM7T\",rendersWithMotion:true,scopeId:\"jJ9t9IU_F\",children:/*#__PURE__*/_jsx(NavigationMenuItem2,{cU9ezo6Gr:gIoF6pZQx,GnaXn2XRM:rbo9Mjbeg,height:\"100%\",id:\"zQcRVWM7T\",layoutId:\"zQcRVWM7T\",name:\"Case Studies\",width:\"100%\",zPP4DL6s3:qQKjGBX1k})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:(componentViewport?.y||0)+(0+((componentViewport?.height||80)-0-44)/2)+0+12.5,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jke0q4-container\",\"data-framer-name\":\"Menu item\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"J_qk5_LDK-container\",name:\"Menu item\",nodeId:\"J_qk5_LDK\",rendersWithMotion:true,scopeId:\"jJ9t9IU_F\",children:/*#__PURE__*/_jsx(NavigationMenuItem,{cU9ezo6Gr:pahEe8Fw0,GnaXn2XRM:JjlQqVt_0,height:\"100%\",id:\"J_qk5_LDK\",layoutId:\"J_qk5_LDK\",name:\"Menu item\",width:\"100%\",zPP4DL6s3:yztqrLXaD})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:(componentViewport?.y||0)+(0+((componentViewport?.height||80)-0-44)/2)+0+12.5,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1q2hqac-container\",\"data-framer-name\":\"Menu item\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"JwErzIaqT-container\",name:\"Menu item\",nodeId:\"JwErzIaqT\",rendersWithMotion:true,scopeId:\"jJ9t9IU_F\",children:/*#__PURE__*/_jsx(NavigationMenuItem,{cU9ezo6Gr:Fv7GsCbQt,GnaXn2XRM:AKiHJSbtj,height:\"100%\",id:\"JwErzIaqT\",layoutId:\"JwErzIaqT\",name:\"Menu item\",width:\"100%\",zPP4DL6s3:q2Xr7SlEo})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o9tkz3\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"Gp4jbfGYO\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tkh7s4-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"VZmy89JKq-container\",nodeId:\"VZmy89JKq\",rendersWithMotion:true,scopeId:\"jJ9t9IU_F\",children:/*#__PURE__*/_jsx(LocaleSelector,{caret:{color:\"rgb(255, 255, 255)\",size:12,type:\"default\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.5em\"},height:\"100%\",icon:{color:\"rgb(255, 255, 255)\",size:18,type:\"default\"},id:\"VZmy89JKq\",layoutId:\"VZmy89JKq\",options:{focus:{color:\"rgb(0, 153, 255)\",offset:0,style:\"solid\",width:1},gap:5,title:true},padding:\"10px\",radius:\"10px\",style:{width:\"100%\"},textColor:\"rgb(255, 255, 255)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+(0+((componentViewport?.height||80)-0-44)/2)+.5+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11n9fob-container\",\"data-framer-name\":\"Button\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"I3qFVYW51-container\",name:\"Button\",nodeId:\"I3qFVYW51\",rendersWithMotion:true,scopeId:\"jJ9t9IU_F\",children:/*#__PURE__*/_jsx(ButtonWithRotatingShimmerBlack,{FkwW3a0aw:zi0cZZNCu,height:\"100%\",id:\"I3qFVYW51\",layoutId:\"I3qFVYW51\",lPe31cTnC:W2I3pPuGU,name:\"Button\",variant:\"yCheO_fjb\",width:\"100%\",wiM4R7YyN:VRorMD0gc})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Y5wk2.framer-12ilice, .framer-Y5wk2 .framer-12ilice { display: block; }\",\".framer-Y5wk2.framer-1p8tmej { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-Y5wk2 .framer-dpil0h { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 1px; }\",\".framer-Y5wk2 .framer-1r3h38d { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Y5wk2 .framer-1v9lvx0 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 40px; }\",\".framer-Y5wk2 .framer-1j2a712-container, .framer-Y5wk2 .framer-o969ya-container, .framer-Y5wk2 .framer-1vtsmy1-container, .framer-Y5wk2 .framer-jke0q4-container, .framer-Y5wk2 .framer-1q2hqac-container, .framer-Y5wk2 .framer-11n9fob-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Y5wk2 .framer-1oncc6z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; width: min-content; }\",\".framer-Y5wk2 .framer-1o9tkz3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Y5wk2 .framer-1tkh7s4-container { flex: none; height: auto; position: relative; width: 120px; }\",'.framer-Y5wk2[data-border=\"true\"]::after, .framer-Y5wk2 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Mzvbq6XGp\":\"logoImage\",\"rJJqicL60\":\"logoText\",\"pPkA46E6R\":\"logoTextOnHover\",\"locDNESqS\":\"menuItem1\",\"MUyzKGXnD\":\"menuItem1Link\",\"JjlQqVt_0\":\"menuItem2\",\"pahEe8Fw0\":\"menuItem2Link\",\"yztqrLXaD\":\"newTab\",\"AKiHJSbtj\":\"menuItem5\",\"Fv7GsCbQt\":\"menuItem5Link\",\"q2Xr7SlEo\":\"newTab1\",\"rbo9Mjbeg\":\"menuItem6\",\"gIoF6pZQx\":\"menuItem6Link\",\"qQKjGBX1k\":\"newTab6\",\"W2I3pPuGU\":\"buttonWithRotatingShimmerText\",\"VRorMD0gc\":\"buttonWithRotatingShimmerLink\",\"zi0cZZNCu\":\"newTab2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerjJ9t9IU_F=withCSS(Component,css,\"framer-Y5wk2\");export default FramerjJ9t9IU_F;FramerjJ9t9IU_F.displayName=\"Navigation - Desktop 2\";FramerjJ9t9IU_F.defaultProps={height:80,width:1440};addPropertyControls(FramerjJ9t9IU_F,{Mzvbq6XGp:{__defaultAssetReference:\"data:framer/asset-reference,EqsnowJafXtaNwlwCSjortZ8HOs.png?originalFilename=Nebula+Logo.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,EqsnowJafXtaNwlwCSjortZ8HOs.png?originalFilename=Nebula+Logo.png&preferredSize=auto\"},title:\"Logo image\",type:ControlType.ResponsiveImage},rJJqicL60:{defaultValue:\"NEBULA\",displayTextArea:false,placeholder:\"Company\",title:\"Logo Text\",type:ControlType.String},pPkA46E6R:{defaultValue:\"NEBULA\",displayTextArea:false,placeholder:\"Company\",title:\"Logo Text On Hover\",type:ControlType.String},locDNESqS:{defaultValue:\"Process\",description:\"Menu item text.\",displayTextArea:false,placeholder:\"Menu\",title:\"Menu Item 1\",type:ControlType.String},MUyzKGXnD:{description:\"Link to which the menu item points.\",title:\"Menu Item 1 Link\",type:ControlType.Link},JjlQqVt_0:{defaultValue:\"Services\",description:\"Menu item text.\",displayTextArea:false,placeholder:\"Menu\",title:\"Menu Item 2\",type:ControlType.String},pahEe8Fw0:{description:\"Link to which the menu item points.\",title:\"Menu Item 2 Link\",type:ControlType.Link},yztqrLXaD:{defaultValue:false,description:\"Open link in a new tab?\",title:\"New Tab?\",type:ControlType.Boolean},AKiHJSbtj:{defaultValue:\"Team\",description:\"Menu item text.\",displayTextArea:false,placeholder:\"Menu\",title:\"Menu Item 5\",type:ControlType.String},Fv7GsCbQt:{description:\"Link to which the menu item points.\",title:\"Menu Item 5 Link\",type:ControlType.Link},q2Xr7SlEo:{defaultValue:false,description:\"Open link in a new tab?\",title:\"New Tab?\",type:ControlType.Boolean},rbo9Mjbeg:{defaultValue:\"Case Studies\",description:\"Menu item text.\",displayTextArea:false,placeholder:\"Menu\",title:\"Menu Item 6\",type:ControlType.String},gIoF6pZQx:{description:\"Link to which the menu item points.\",title:\"Menu Item 6 Link \",type:ControlType.Link},qQKjGBX1k:{defaultValue:false,description:\"Open link in a new tab?\",title:\"New Tab? 6\",type:ControlType.Boolean},W2I3pPuGU:{defaultValue:\"Buy this template\",description:\"Button text.\",displayTextArea:false,title:\"Button with rotating shimmer text\",type:ControlType.String},VRorMD0gc:{description:\"Link to which the button points.\",title:\"Button with rotating shimmer link\",type:ControlType.Link},zi0cZZNCu:{defaultValue:true,description:\"Open link in a new tab?\",title:\"New Tab?\",type:ControlType.Boolean}});addFonts(FramerjJ9t9IU_F,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...NavigationLogoFonts,...NavigationMenuItemFonts,...NavigationMenuItem2Fonts,...LocaleSelectorFonts,...ButtonWithRotatingShimmerBlackFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjJ9t9IU_F\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"Mzvbq6XGp\\\":\\\"logoImage\\\",\\\"rJJqicL60\\\":\\\"logoText\\\",\\\"pPkA46E6R\\\":\\\"logoTextOnHover\\\",\\\"locDNESqS\\\":\\\"menuItem1\\\",\\\"MUyzKGXnD\\\":\\\"menuItem1Link\\\",\\\"JjlQqVt_0\\\":\\\"menuItem2\\\",\\\"pahEe8Fw0\\\":\\\"menuItem2Link\\\",\\\"yztqrLXaD\\\":\\\"newTab\\\",\\\"AKiHJSbtj\\\":\\\"menuItem5\\\",\\\"Fv7GsCbQt\\\":\\\"menuItem5Link\\\",\\\"q2Xr7SlEo\\\":\\\"newTab1\\\",\\\"rbo9Mjbeg\\\":\\\"menuItem6\\\",\\\"gIoF6pZQx\\\":\\\"menuItem6Link\\\",\\\"qQKjGBX1k\\\":\\\"newTab6\\\",\\\"W2I3pPuGU\\\":\\\"buttonWithRotatingShimmerText\\\",\\\"VRorMD0gc\\\":\\\"buttonWithRotatingShimmerLink\\\",\\\"zi0cZZNCu\\\":\\\"newTab2\\\"}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"80\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jJ9t9IU_F.map", "// Generated by Framer (d31cd55)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={iZ2LXhzBf:{hover:true}};const serializationHash=\"framer-811J3\";const variantClassNames={iZ2LXhzBf:\"framer-v-7myasi\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:300,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({footerMenuItemLink,footerMenuItemTitle,height,id,newTab,width,...props})=>{var _ref;return{...props,DSS0z9g4K:newTab!==null&&newTab!==void 0?newTab:props.DSS0z9g4K,fXVKDjrjF:footerMenuItemLink!==null&&footerMenuItemLink!==void 0?footerMenuItemLink:props.fXVKDjrjF,LUldJrVDw:(_ref=footerMenuItemTitle!==null&&footerMenuItemTitle!==void 0?footerMenuItemTitle:props.LUldJrVDw)!==null&&_ref!==void 0?_ref:\"Menu\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,LUldJrVDw,fXVKDjrjF,DSS0z9g4K,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"iZ2LXhzBf\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:fXVKDjrjF,openInNewTab:DSS0z9g4K,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-7myasi\",className,classNames)} framer-vji7n8`,\"data-framer-name\":\"Footer button process\",layoutDependency:layoutDependency,layoutId:\"iZ2LXhzBf\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"iZ2LXhzBf-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ys7xdr\",\"data-framer-name\":\"Menu item\",layoutDependency:layoutDependency,layoutId:\"N8bfARKj6\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10wqwv2\",layoutDependency:layoutDependency,layoutId:\"C7i0qmZHX\",style:{backgroundColor:\"var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202))\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.5px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Process\"})}),className:\"framer-xkuj8v\",fonts:[\"GF;Inter Tight-regular\"],layoutDependency:layoutDependency,layoutId:\"U06Trlgjf\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:LUldJrVDw,verticalAlignment:\"top\",withExternalLayout:true})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-811J3.framer-vji7n8, .framer-811J3 .framer-vji7n8 { display: block; }\",\".framer-811J3.framer-7myasi { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-811J3 .framer-1ys7xdr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-811J3 .framer-10wqwv2 { bottom: 0px; flex: none; height: 1px; left: -1px; overflow: visible; position: absolute; width: 1px; z-index: 1; }\",\".framer-811J3 .framer-xkuj8v { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-811J3.framer-7myasi, .framer-811J3 .framer-1ys7xdr { gap: 0px; } .framer-811J3.framer-7myasi > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-811J3.framer-7myasi > :first-child { margin-top: 0px; } .framer-811J3.framer-7myasi > :last-child { margin-bottom: 0px; } .framer-811J3 .framer-1ys7xdr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-811J3 .framer-1ys7xdr > :first-child { margin-left: 0px; } .framer-811J3 .framer-1ys7xdr > :last-child { margin-right: 0px; } }\",\".framer-811J3.framer-v-7myasi.hover .framer-10wqwv2 { right: 0px; width: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 19\n * @framerIntrinsicWidth 41\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"a3bVelnLf\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"LUldJrVDw\":\"footerMenuItemTitle\",\"fXVKDjrjF\":\"footerMenuItemLink\",\"DSS0z9g4K\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJZspN2FQM=withCSS(Component,css,\"framer-811J3\");export default FramerJZspN2FQM;FramerJZspN2FQM.displayName=\"Footer - Menu item\";FramerJZspN2FQM.defaultProps={height:19,width:41};addPropertyControls(FramerJZspN2FQM,{LUldJrVDw:{defaultValue:\"Menu\",description:\"TItle of the footer menu item.\",displayTextArea:false,placeholder:\"Menu\",title:\"Footer Menu Item Title\",type:ControlType.String},fXVKDjrjF:{description:\"Link to which the menu item points.\",title:\"Footer Menu Item Link\",type:ControlType.Link},DSS0z9g4K:{defaultValue:false,description:\"Open this link in a new tab?\",title:\"New Tab?\",type:ControlType.Boolean}});addFonts(FramerJZspN2FQM,[{explicitInter:true,fonts:[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qWSRToK8EPg.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJZspN2FQM\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"19\",\"framerIntrinsicWidth\":\"41\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"a3bVelnLf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"LUldJrVDw\\\":\\\"footerMenuItemTitle\\\",\\\"fXVKDjrjF\\\":\\\"footerMenuItemLink\\\",\\\"DSS0z9g4K\\\":\\\"newTab\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JZspN2FQM.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-yx2IU\";const variantClassNames={P56tbLt58:\"framer-v-1lhftab\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};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({defaultVariant:\"P56tbLt58\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yx2IU.framer-10e1bx1, .framer-yx2IU .framer-10e1bx1 { display: block; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerLEq671n7a=withCSS(Component,css,\"framer-yx2IU\");export default FramerLEq671n7a;FramerLEq671n7a.displayName=\"Navigation - Desktop\";FramerLEq671n7a.defaultProps={height:80,width:1440};addFonts(FramerLEq671n7a,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLEq671n7a\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"80\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LEq671n7a.map", "// Generated by Framer (7d51cf8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={gQyp3CHHB:{hover:true},JWfBgK65m:{hover:true},yFOTahoMZ:{hover:true}};const cycleOrder=[\"yFOTahoMZ\",\"JWfBgK65m\",\"gQyp3CHHB\"];const serializationHash=\"framer-WqMRk\";const variantClassNames={gQyp3CHHB:\"framer-v-1985pdu\",JWfBgK65m:\"framer-v-16ec5dx\",yFOTahoMZ:\"framer-v-ix5wny\"};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:200,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 1440 & 1200\":\"yFOTahoMZ\",\"Phone 390\":\"gQyp3CHHB\",\"Tablet 1199\":\"JWfBgK65m\"};const getProps=({email,height,id,link,newTab,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"yFOTahoMZ\",wVrNq3684:newTab??props.wVrNq3684??true,WxmEj9Z8F:link??props.WxmEj9Z8F,YP0cK_Pj4:email??props.YP0cK_Pj4??\"mail@nebula.com\"};};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,YP0cK_Pj4,WxmEj9Z8F,wVrNq3684,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"yFOTahoMZ\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:WxmEj9Z8F,motionChild:true,nodeId:\"yFOTahoMZ\",openInNewTab:wVrNq3684,scopeId:\"ottQu0lpV\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-ix5wny\",className,classNames)} framer-isoa0`,\"data-framer-name\":\"Desktop 1440 & 1200\",layoutDependency:layoutDependency,layoutId:\"yFOTahoMZ\",ref:refBinding,style:{...style},...addPropertyOverrides({\"gQyp3CHHB-hover\":{\"data-framer-name\":undefined},\"JWfBgK65m-hover\":{\"data-framer-name\":undefined},\"yFOTahoMZ-hover\":{\"data-framer-name\":undefined},gQyp3CHHB:{\"data-framer-name\":\"Phone 390\"},JWfBgK65m:{\"data-framer-name\":\"Tablet 1199\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"55px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"mail@nebula.com\"})}),className:\"framer-4ys4o6\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cPoQ9GmFG\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.7},text:YP0cK_Pj4,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gQyp3CHHB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"mail@nebula.com\"})})},JWfBgK65m:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"35px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"mail@nebula.com\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-p4sann\",\"data-framer-name\":\"Underline frame\",layoutDependency:layoutDependency,layoutId:\"Hs9EhGZnv\",style:{backgroundColor:\"var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202))\"}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WqMRk.framer-isoa0, .framer-WqMRk .framer-isoa0 { display: block; }\",\".framer-WqMRk.framer-ix5wny { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-WqMRk .framer-4ys4o6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 2; }\",\".framer-WqMRk .framer-p4sann { bottom: 1px; flex: none; height: 2px; left: -2px; overflow: visible; position: absolute; width: 2px; z-index: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WqMRk.framer-ix5wny { gap: 0px; } .framer-WqMRk.framer-ix5wny > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-WqMRk.framer-ix5wny > :first-child { margin-left: 0px; } .framer-WqMRk.framer-ix5wny > :last-child { margin-right: 0px; } }\",\".framer-WqMRk.framer-v-ix5wny.hover .framer-p4sann { left: calc(50.061500615006175% - 808px / 2); width: 808px; }\",\".framer-WqMRk.framer-v-16ec5dx.hover .framer-p4sann { width: 609px; }\",\".framer-WqMRk.framer-v-1985pdu.hover .framer-p4sann { width: 344px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 66\n * @framerIntrinsicWidth 462\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"JWfBgK65m\":{\"layout\":[\"auto\",\"auto\"]},\"gQyp3CHHB\":{\"layout\":[\"auto\",\"auto\"]},\"DkiRGAxNe\":{\"layout\":[\"auto\",\"auto\"]},\"h7YMBuzdV\":{\"layout\":[\"auto\",\"auto\"]},\"ZL0BmmwSe\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"YP0cK_Pj4\":\"email\",\"WxmEj9Z8F\":\"link\",\"wVrNq3684\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerottQu0lpV=withCSS(Component,css,\"framer-WqMRk\");export default FramerottQu0lpV;FramerottQu0lpV.displayName=\"Footer - Button email\";FramerottQu0lpV.defaultProps={height:66,width:462};addPropertyControls(FramerottQu0lpV,{variant:{options:[\"yFOTahoMZ\",\"JWfBgK65m\",\"gQyp3CHHB\"],optionTitles:[\"Desktop 1440 & 1200\",\"Tablet 1199\",\"Phone 390\"],title:\"Variant\",type:ControlType.Enum},YP0cK_Pj4:{defaultValue:\"mail@nebula.com\",description:\"Email text.\",displayTextArea:false,title:\"Email\",type:ControlType.String},WxmEj9Z8F:{description:\"Link to which the email button points.\",title:\"Link\",type:ControlType.Link},wVrNq3684:{defaultValue:true,description:\"Open link in a new tab?\",title:\"New Tab?\",type:ControlType.Boolean}});addFonts(FramerottQu0lpV,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerottQu0lpV\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"JWfBgK65m\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gQyp3CHHB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"DkiRGAxNe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"h7YMBuzdV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZL0BmmwSe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"462\",\"framerIntrinsicHeight\":\"66\",\"framerVariables\":\"{\\\"YP0cK_Pj4\\\":\\\"email\\\",\\\"WxmEj9Z8F\\\":\\\"link\\\",\\\"wVrNq3684\\\":\\\"newTab\\\"}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ottQu0lpV.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter Tight-regular\",\"GF;Inter Tight-700\",\"GF;Inter Tight-700italic\",\"GF;Inter Tight-italic\"]);export const fonts=[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qWSRToK8EPg.woff2\",weight:\"400\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj6AiqWSRToK8EPg.woff2\",weight:\"700\"},{family:\"Inter Tight\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ylGC5SgqoUPvi5.woff2\",weight:\"700\"},{family:\"Inter Tight\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHy5SgqoUPvi5.woff2\",weight:\"400\"}];export const css=['.framer-aPL0z .framer-styles-preset-mzgsmc:not(.rich-text-wrapper), .framer-aPL0z .framer-styles-preset-mzgsmc.rich-text-wrapper h3 { --framer-font-family: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-italic: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-size: 35px; --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: 0.5px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 1200px) { .framer-aPL0z .framer-styles-preset-mzgsmc:not(.rich-text-wrapper), .framer-aPL0z .framer-styles-preset-mzgsmc.rich-text-wrapper h3 { --framer-font-family: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-italic: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-size: 35px; --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: 0.5px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 999px) { .framer-aPL0z .framer-styles-preset-mzgsmc:not(.rich-text-wrapper), .framer-aPL0z .framer-styles-preset-mzgsmc.rich-text-wrapper h3 { --framer-font-family: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-italic: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-size: 35px; --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: 0.5px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 998px) and (min-width: 810px) { .framer-aPL0z .framer-styles-preset-mzgsmc:not(.rich-text-wrapper), .framer-aPL0z .framer-styles-preset-mzgsmc.rich-text-wrapper h3 { --framer-font-family: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-italic: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-size: 35px; --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: 0.5px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-aPL0z .framer-styles-preset-mzgsmc:not(.rich-text-wrapper), .framer-aPL0z .framer-styles-preset-mzgsmc.rich-text-wrapper h3 { --framer-font-family: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-italic: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-size: 30px; --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: 0.5px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-aPL0z\";\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([]);export const fonts=[];export const css=[\".framer-gtFKN .framer-styles-preset-1qn428g:not(.rich-text-wrapper), .framer-gtFKN .framer-styles-preset-1qn428g.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-decoration: none; --framer-link-text-decoration: none; }\"];export const className=\"framer-gtFKN\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={DEWgs1VYL:{hover:true}};const serializationHash=\"framer-PYIWa\";const variantClassNames={DEWgs1VYL:\"framer-v-14ys2jn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,logoText,logoTextOnHover,width,...props})=>{var _ref,_ref1;return{...props,wYKrcpmTB:(_ref=logoText!==null&&logoText!==void 0?logoText:props.wYKrcpmTB)!==null&&_ref!==void 0?_ref:\"Company\",z59PjYocl:(_ref1=logoTextOnHover!==null&&logoTextOnHover!==void 0?logoTextOnHover:props.z59PjYocl)!==null&&_ref1!==void 0?_ref1:\"Company\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,wYKrcpmTB,z59PjYocl,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"DEWgs1VYL\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"DEWgs1VYL\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-14ys2jn\",className,classNames)} framer-kyw1hn`,\"data-framer-name\":\"Navigation Logo\",layoutDependency:layoutDependency,layoutId:\"DEWgs1VYL\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"DEWgs1VYL-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202)))\"},children:\"NEBULA\"})}),className:\"framer-suynu9\",fonts:[\"GF;Space Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"b57iPTAgE\",style:{\"--extracted-r6o4lv\":\"var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:wYKrcpmTB,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202)))\"},children:\"NEBULA\"})}),className:\"framer-1xplxmb\",fonts:[\"GF;Space Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"Os09QpOwk\",style:{\"--extracted-r6o4lv\":\"var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:z59PjYocl,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PYIWa.framer-kyw1hn, .framer-PYIWa .framer-kyw1hn { display: block; }\",\".framer-PYIWa.framer-14ys2jn { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 25px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-PYIWa .framer-suynu9 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-PYIWa .framer-1xplxmb { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PYIWa.framer-14ys2jn { gap: 0px; } .framer-PYIWa.framer-14ys2jn > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-PYIWa.framer-14ys2jn > :first-child { margin-top: 0px; } .framer-PYIWa.framer-14ys2jn > :last-child { margin-bottom: 0px; } }\",\".framer-PYIWa.framer-v-14ys2jn.hover.framer-14ys2jn { justify-content: flex-end; }\",\".framer-PYIWa.framer-v-14ys2jn.hover .framer-suynu9 { position: absolute; right: 0px; top: -25px; z-index: 1; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 25\n * @framerIntrinsicWidth 82\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"QuAdNiQGR\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"wYKrcpmTB\":\"logoText\",\"z59PjYocl\":\"logoTextOnHover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerebmAEorRV=withCSS(Component,css,\"framer-PYIWa\");export default FramerebmAEorRV;FramerebmAEorRV.displayName=\"Navigation - Logo\";FramerebmAEorRV.defaultProps={height:25,width:82};addPropertyControls(FramerebmAEorRV,{wYKrcpmTB:{defaultValue:\"Company\",description:\"\",displayTextArea:false,placeholder:\"Company\",title:\"Logo text\",type:ControlType.String},z59PjYocl:{defaultValue:\"Company\",description:\"\",displayTextArea:false,placeholder:\"Company\",title:\"Logo text on hover\",type:ControlType.String}});addFonts(FramerebmAEorRV,[{explicitInter:true,fonts:[{family:\"Space Grotesk\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/spacegrotesk/v16/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7oUUsmNsFjTDJK.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerebmAEorRV\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"25\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"82\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"wYKrcpmTB\\\":\\\"logoText\\\",\\\"z59PjYocl\\\":\\\"logoTextOnHover\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"QuAdNiQGR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ebmAEorRV.map", "// Generated by Framer (5351ffe)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import LocaleSelector from\"https://framerusercontent.com/modules/57FhkldN9P7x88MqAEaR/fW26mCIOTpHHBOBnf7GZ/LocaleSelector.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/8dk4FPbFT0DhqMyJsWOK/EIbEe21MLYhyO8eYOSX0/EZv1kDkHa.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/kJU9hga8HpCGKp5r4gUD/jwUai9zvTeb1gdmDLery/jsvS2drHQ.js\";import NavigationLogo from\"https://framerusercontent.com/modules/h0ntprFztne7gLBVhzSm/RS2xF4GtDmoB9cFyzxH9/ebmAEorRV.js\";const NavigationLogoFonts=getFonts(NavigationLogo);const LocaleSelectorFonts=getFonts(LocaleSelector);const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const cycleOrder=[\"tXQgt646C\",\"zp2BB6lSe\"];const serializationHash=\"framer-QzMZc\";const variantClassNames={tXQgt646C:\"framer-v-ahryu5\",zp2BB6lSe:\"framer-v-weth9n\"};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:300,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={damping:30,delay:.5,mass:1,stiffness:300,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={damping:30,delay:.6,mass:1,stiffness:300,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={damping:30,delay:.7,mass:1,stiffness:300,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={damping:30,delay:.8,mass:1,stiffness:300,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={damping:30,delay:1,mass:1,stiffness:300,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Closed:\"tXQgt646C\",Open:\"zp2BB6lSe\"};const getProps=({height,iconImage,id,logoImage,logoText,logoTextOnHover,menuItem1,menuItem1Link,menuItem2,menuItem2Link,menuItem4,menuItem4Link,menuItem6,menuItemWithIconLink,menuItemWithIconTitle,newTab,newTab1,newTab2,newTab3,width,...props})=>{return{...props,DG_2WQ8MX:iconImage??props.DG_2WQ8MX??{pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/80ciNZpezWIjtjuOmGuff6aTdc.png\"},f3xyZUTEy:newTab2??props.f3xyZUTEy,H_oZIw57j:logoImage??props.H_oZIw57j??{pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/yAW8TftB1kjyQ0mEMyGZtQUqg.png\"},HJ5vrwg5O:menuItemWithIconTitle??props.HJ5vrwg5O??\"Kontakt\",i8Z9c2SDA:newTab1??props.i8Z9c2SDA,Iq3tKjshQ:menuItem4Link??props.Iq3tKjshQ,L2a1A4uva:menuItem2??props.L2a1A4uva??\"Proces\",lWgkR2bp_:menuItem6??props.lWgkR2bp_??\"Case Studies\",N_ACceePd:logoText??props.N_ACceePd??\"Scaling Labs\",OetXiprH5:menuItem1??props.OetXiprH5??\"Nasze rozwi\u0105zania\",OjQnwE0jB:menuItemWithIconLink??props.OjQnwE0jB,OTdHMYbxl:newTab??props.OTdHMYbxl,pVkuV6j6a:logoTextOnHover??props.pVkuV6j6a??\"Scaling Labs\",RdzMC4efm:menuItem1Link??props.RdzMC4efm,SsjhGIxoG:menuItem2Link??props.SsjhGIxoG,variant:humanReadableVariantMap[props.variant]??props.variant??\"tXQgt646C\",vxRYTgGdV:newTab3??props.vxRYTgGdV,zRRzGxuZq:menuItem4??props.zRRzGxuZq??\"FAQ\"};};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,N_ACceePd,pVkuV6j6a,H_oZIw57j,OetXiprH5,RdzMC4efm,OTdHMYbxl,L2a1A4uva,SsjhGIxoG,i8Z9c2SDA,lWgkR2bp_,zRRzGxuZq,Iq3tKjshQ,f3xyZUTEy,HJ5vrwg5O,DG_2WQ8MX,OjQnwE0jB,vxRYTgGdV,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tXQgt646C\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapk92qop=activeVariantCallback(async(...args)=>{setVariant(\"zp2BB6lSe\");});const onTapch8gwg=activeVariantCallback(async(...args)=>{setVariant(\"tXQgt646C\");});const onTap190aexa=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"tXQgt646C\"),500);});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"zp2BB6lSe\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"zp2BB6lSe\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ahryu5\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"tXQgt646C\",ref:refBinding,style:{...style},...addPropertyOverrides({zp2BB6lSe:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+(0+((componentViewport?.height||80)-0-25)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1w5xcp1-container\",\"data-framer-name\":\"Text logo\",layoutDependency:layoutDependency,layoutId:\"INnWyESUq-container\",name:\"Text logo\",nodeId:\"INnWyESUq\",rendersWithMotion:true,scopeId:\"xZILHBB1o\",children:/*#__PURE__*/_jsx(NavigationLogo,{height:\"100%\",id:\"INnWyESUq\",layoutId:\"INnWyESUq\",name:\"Text logo\",width:\"100%\",wYKrcpmTB:N_ACceePd,z59PjYocl:pVkuV6j6a})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k0m1af\",\"data-framer-name\":\"Filler frame\",layoutDependency:layoutDependency,layoutId:\"wEPTvCJho\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dli6iv-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"hVEP9ki9I-container\",nodeId:\"hVEP9ki9I\",rendersWithMotion:true,scopeId:\"xZILHBB1o\",children:/*#__PURE__*/_jsx(LocaleSelector,{caret:{color:\"rgb(255, 255, 255)\",size:12,type:\"default\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.5em\"},height:\"100%\",icon:{color:\"rgb(255, 255, 255)\",size:18,type:\"default\"},id:\"hVEP9ki9I\",layoutId:\"hVEP9ki9I\",options:{focus:{color:\"rgb(0, 153, 255)\",offset:0,style:\"solid\",width:1},gap:5,title:false},padding:\"10px\",radius:\"10px\",style:{width:\"100%\"},textColor:\"rgb(0, 0, 0)\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q10852\",\"data-border\":true,\"data-framer-name\":\"Menu\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"KeqneQe71\",onTap:onTapk92qop,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-0143b987-3044-47c5-b1a5-35e8c9d574b4, rgb(35, 35, 35))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:25,WebkitBackdropFilter:\"blur(10px)\"},variants:{zp2BB6lSe:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}},...addPropertyOverrides({zp2BB6lSe:{\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mghfx1\",\"data-framer-name\":\"Logo & menu icon\",layoutDependency:layoutDependency,layoutId:\"vXL3TpYb_\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:280,pixelWidth:280,...toResponsiveImage(H_oZIw57j)},className:\"framer-1652niq\",\"data-framer-name\":\"Logo image\",layoutDependency:layoutDependency,layoutId:\"owYPp456W\",...addPropertyOverrides({zp2BB6lSe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+15+15+0+2.5),pixelHeight:280,pixelWidth:280,sizes:\"20px\",...toResponsiveImage(H_oZIw57j)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1upkgxq\",\"data-framer-name\":\"Menu icon\",layoutDependency:layoutDependency,layoutId:\"tf0ONkPjV\",...addPropertyOverrides({zp2BB6lSe:{\"data-highlight\":true,onTap:onTapch8gwg}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-feb10y\",\"data-framer-name\":\"Top bar\",layoutDependency:layoutDependency,layoutId:\"AaG5su1yQ\",style:{backgroundColor:\"var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{zp2BB6lSe:{rotate:45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-atgtwi\",\"data-framer-name\":\"Bottom bar\",layoutDependency:layoutDependency,layoutId:\"LekAlQDf0\",style:{backgroundColor:\"var(--token-47b26cf5-d422-4df9-aa20-34b4c0bbd027, rgb(211, 255, 202))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{zp2BB6lSe:{rotate:-45}}})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ui3otw\",\"data-framer-name\":\"Menu items\",layoutDependency:layoutDependency,layoutId:\"QECu8FO83\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-mzgsmc\",\"data-styles-preset\":\"jsvS2drHQ\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:RdzMC4efm,motionChild:true,nodeId:\"prfmqDvQY\",openInNewTab:OTdHMYbxl,scopeId:\"xZILHBB1o\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qn428g\",\"data-styles-preset\":\"EZv1kDkHa\",children:\"Process\"})})})}),className:\"framer-jzk7gl\",\"data-framer-appear-id\":\"jzk7gl\",\"data-highlight\":true,fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"prfmqDvQY\",onTap:onTap190aexa,optimized:true,style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",\"--variable-reference-OTdHMYbxl-xZILHBB1o\":OTdHMYbxl},text:OetXiprH5,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-mzgsmc\",\"data-styles-preset\":\"jsvS2drHQ\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:SsjhGIxoG,motionChild:true,nodeId:\"PXoage4jw\",openInNewTab:i8Z9c2SDA,scopeId:\"xZILHBB1o\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qn428g\",\"data-styles-preset\":\"EZv1kDkHa\",children:\"Services\"})})})}),className:\"framer-1wsesnu\",\"data-framer-appear-id\":\"1wsesnu\",\"data-highlight\":true,fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"PXoage4jw\",onTap:onTap190aexa,optimized:true,style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",\"--variable-reference-i8Z9c2SDA-xZILHBB1o\":i8Z9c2SDA},text:L2a1A4uva,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-mzgsmc\",\"data-styles-preset\":\"jsvS2drHQ\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":pZ9j1gAlx\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"DVdWJ1UQy\",openInNewTab:false,scopeId:\"xZILHBB1o\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qn428g\",\"data-styles-preset\":\"EZv1kDkHa\",children:\"Case Studies\"})})})}),className:\"framer-kz1sht\",\"data-framer-appear-id\":\"kz1sht\",\"data-highlight\":true,fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"DVdWJ1UQy\",onTap:onTap190aexa,optimized:true,style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\"},text:lWgkR2bp_,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-mzgsmc\",\"data-styles-preset\":\"jsvS2drHQ\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:Iq3tKjshQ,motionChild:true,nodeId:\"Zvofge4Sa\",openInNewTab:f3xyZUTEy,scopeId:\"xZILHBB1o\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qn428g\",\"data-styles-preset\":\"EZv1kDkHa\",children:\"Plans\"})})})}),className:\"framer-3udsv0\",\"data-framer-appear-id\":\"3udsv0\",\"data-highlight\":true,fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"Zvofge4Sa\",onTap:onTap190aexa,optimized:true,style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",\"--variable-reference-f3xyZUTEy-xZILHBB1o\":f3xyZUTEy},text:zRRzGxuZq,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:OjQnwE0jB,motionChild:true,nodeId:\"GDvk_QYiv\",openInNewTab:vxRYTgGdV,scopeId:\"xZILHBB1o\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1j7f1ai framer-1c6kftt\",layoutDependency:layoutDependency,layoutId:\"GDvk_QYiv\",children:[/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-mzgsmc\",\"data-styles-preset\":\"jsvS2drHQ\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"Contact\"})}),className:\"framer-12fwvmk\",\"data-framer-appear-id\":\"12fwvmk\",\"data-highlight\":true,fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"Pxa9NIVVD\",onTap:onTap190aexa,optimized:true,style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\"},text:HJ5vrwg5O,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation5,background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,pixelHeight:512,pixelWidth:512,sizes:\"35px\",...toResponsiveImage(DG_2WQ8MX)},className:\"framer-1g91zvi\",\"data-framer-appear-id\":\"1g91zvi\",\"data-framer-name\":\"Icon image\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"tIbRqmWR1\",optimized:true,...addPropertyOverrides({zp2BB6lSe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+15+15+30+25+216+7),pixelHeight:512,pixelWidth:512,sizes:\"35px\",...toResponsiveImage(DG_2WQ8MX)}}},baseVariant,gestureVariant)})]})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QzMZc.framer-1c6kftt, .framer-QzMZc .framer-1c6kftt { display: block; }\",\".framer-QzMZc.framer-ahryu5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: visible; padding: 0px 15px 0px 15px; position: relative; width: 390px; }\",\".framer-QzMZc .framer-1w5xcp1-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-QzMZc .framer-1k0m1af { flex: 1 0 0px; gap: 10px; height: 10px; overflow: visible; position: relative; width: 1px; }\",\".framer-QzMZc .framer-dli6iv-container { flex: none; height: auto; position: relative; width: 120px; }\",\".framer-QzMZc .framer-1q10852 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 50px; justify-content: center; overflow: visible; padding: 15px; position: relative; width: 50px; }\",\".framer-QzMZc .framer-mghfx1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QzMZc .framer-1652niq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-QzMZc .framer-1upkgxq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-QzMZc .framer-feb10y, .framer-QzMZc .framer-atgtwi { flex: none; height: 1px; overflow: visible; position: relative; width: 20px; }\",\".framer-QzMZc .framer-1ui3otw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 25px; position: relative; width: 100%; }\",\".framer-QzMZc .framer-jzk7gl, .framer-QzMZc .framer-1wsesnu, .framer-QzMZc .framer-kz1sht, .framer-QzMZc .framer-3udsv0, .framer-QzMZc .framer-12fwvmk { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 3; }\",\".framer-QzMZc .framer-1j7f1ai { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-QzMZc .framer-1g91zvi { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); overflow: visible; position: relative; width: 35px; }\",\".framer-QzMZc.framer-v-weth9n.framer-ahryu5 { align-content: flex-start; align-items: flex-start; padding: 15px 15px 0px 15px; }\",\".framer-QzMZc.framer-v-weth9n .framer-1q10852 { cursor: unset; flex: 1 0 0px; height: min-content; width: 1px; z-index: 2; }\",\".framer-QzMZc.framer-v-weth9n .framer-1upkgxq { cursor: pointer; flex: none; height: 25px; width: 25px; }\",\".framer-QzMZc.framer-v-weth9n .framer-feb10y { left: calc(52.00000000000002% - 20px / 2); position: absolute; top: calc(52.00000000000002% - 1px / 2); z-index: 1; }\",\".framer-QzMZc.framer-v-weth9n .framer-atgtwi { bottom: 12px; left: calc(52.00000000000002% - 20px / 2); position: absolute; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-QzMZc[data-border=\"true\"]::after, .framer-QzMZc [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 390\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"zp2BB6lSe\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"N_ACceePd\":\"logoText\",\"pVkuV6j6a\":\"logoTextOnHover\",\"H_oZIw57j\":\"logoImage\",\"OetXiprH5\":\"menuItem1\",\"RdzMC4efm\":\"menuItem1Link\",\"OTdHMYbxl\":\"newTab\",\"L2a1A4uva\":\"menuItem2\",\"SsjhGIxoG\":\"menuItem2Link\",\"i8Z9c2SDA\":\"newTab1\",\"lWgkR2bp_\":\"menuItem6\",\"zRRzGxuZq\":\"menuItem4\",\"Iq3tKjshQ\":\"menuItem4Link\",\"f3xyZUTEy\":\"newTab2\",\"HJ5vrwg5O\":\"menuItemWithIconTitle\",\"DG_2WQ8MX\":\"iconImage\",\"OjQnwE0jB\":\"menuItemWithIconLink\",\"vxRYTgGdV\":\"newTab3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerxZILHBB1o=withCSS(Component,css,\"framer-QzMZc\");export default FramerxZILHBB1o;FramerxZILHBB1o.displayName=\"Navigation - Tablet & phone\";FramerxZILHBB1o.defaultProps={height:80,width:390};addPropertyControls(FramerxZILHBB1o,{variant:{options:[\"tXQgt646C\",\"zp2BB6lSe\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},N_ACceePd:{defaultValue:\"Scaling Labs\",displayTextArea:false,placeholder:\"Company\",title:\"Logo Text\",type:ControlType.String},pVkuV6j6a:{defaultValue:\"Scaling Labs\",displayTextArea:false,placeholder:\"Company\",title:\"Logo Text On Hover\",type:ControlType.String},H_oZIw57j:{__defaultAssetReference:\"data:framer/asset-reference,yAW8TftB1kjyQ0mEMyGZtQUqg.png?originalFilename=Scaling+Labs+%289%29.png&preferredSize=auto\",title:\"Logo image\",type:ControlType.ResponsiveImage},OetXiprH5:{defaultValue:\"Nasze rozwi\u0105zania\",description:\"Menu item text.\",displayTextArea:false,title:\"Menu item 1\",type:ControlType.String},RdzMC4efm:{description:\"Link to which the menu item points.\",title:\"Menu item 1 link\",type:ControlType.Link},OTdHMYbxl:{defaultValue:false,description:\"Open link in a new tab?\",title:\"New Tab?\",type:ControlType.Boolean},L2a1A4uva:{defaultValue:\"Proces\",description:\"Menu item text.\",displayTextArea:false,title:\"Menu item 2\",type:ControlType.String},SsjhGIxoG:{description:\"Link to which the menu item points.\",title:\"Menu item 2 link\",type:ControlType.Link},i8Z9c2SDA:{defaultValue:false,description:\"Open link in a new tab?\",title:\"New Tab?\",type:ControlType.Boolean},lWgkR2bp_:{defaultValue:\"Case Studies\",description:\"Menu item text.\",displayTextArea:false,title:\"Menu item 6\",type:ControlType.String},zRRzGxuZq:{defaultValue:\"FAQ\",description:\"Menu item text.\",displayTextArea:false,title:\"Menu item 4\",type:ControlType.String},Iq3tKjshQ:{description:\"Link to which the menu item points.\",title:\"Menu item 4 Link\",type:ControlType.Link},f3xyZUTEy:{defaultValue:false,description:\"Open link in a new tab?\",title:\"New Tab?\",type:ControlType.Boolean},HJ5vrwg5O:{defaultValue:\"Kontakt\",description:\"Menu item with icon text.\",displayTextArea:false,title:\"Menu Item With Icon Title\",type:ControlType.String},DG_2WQ8MX:{__defaultAssetReference:\"data:framer/asset-reference,80ciNZpezWIjtjuOmGuff6aTdc.png?originalFilename=right-up.png&preferredSize=auto\",title:\"Icon Image\",type:ControlType.ResponsiveImage},OjQnwE0jB:{description:\"Link to which the menu item with icon points.\",title:\"Menu Item With Icon Link\",type:ControlType.Link},vxRYTgGdV:{defaultValue:false,description:\"Open link in a new tab?\",title:\"New Tab?\",type:ControlType.Boolean}});addFonts(FramerxZILHBB1o,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...NavigationLogoFonts,...LocaleSelectorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxZILHBB1o\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"390\",\"framerVariables\":\"{\\\"N_ACceePd\\\":\\\"logoText\\\",\\\"pVkuV6j6a\\\":\\\"logoTextOnHover\\\",\\\"H_oZIw57j\\\":\\\"logoImage\\\",\\\"OetXiprH5\\\":\\\"menuItem1\\\",\\\"RdzMC4efm\\\":\\\"menuItem1Link\\\",\\\"OTdHMYbxl\\\":\\\"newTab\\\",\\\"L2a1A4uva\\\":\\\"menuItem2\\\",\\\"SsjhGIxoG\\\":\\\"menuItem2Link\\\",\\\"i8Z9c2SDA\\\":\\\"newTab1\\\",\\\"lWgkR2bp_\\\":\\\"menuItem6\\\",\\\"zRRzGxuZq\\\":\\\"menuItem4\\\",\\\"Iq3tKjshQ\\\":\\\"menuItem4Link\\\",\\\"f3xyZUTEy\\\":\\\"newTab2\\\",\\\"HJ5vrwg5O\\\":\\\"menuItemWithIconTitle\\\",\\\"DG_2WQ8MX\\\":\\\"iconImage\\\",\\\"OjQnwE0jB\\\":\\\"menuItemWithIconLink\\\",\\\"vxRYTgGdV\\\":\\\"newTab3\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"80\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zp2BB6lSe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xZILHBB1o.map"],
  "mappings": "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",
  "names": ["fontStack", "formatTimeOrDate", "outputType", "showYear", "showMonth", "showWeekday", "showMinutes", "showSeconds", "timeFormat", "monthFormat", "localCode", "date", "onlyYearIsShown", "defaultProps", "Time", "props", "mergedProps", "color", "font", "tabularFont", "useLocaleCode", "getTextContent", "te", "timeoutRef", "pe", "updateCountdown", "node", "prev", "tick", "next", "textContent", "visible", "setIsVisible", "isCanvas", "RenderTarget", "ue", "Z", "p", "addPropertyControls", "ControlType", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "contactDetailsLink", "contactDetailsTitle", "height", "id", "newTab", "width", "props", "_ref", "_ref1", "createLayoutDependency", "Variants", "motion", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vwGB8EEIS", "RKO1oRO98", "GV7afZjGy", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText2", "css", "FramerFXOkUf8JN", "withCSS", "FXOkUf8JN_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "contactButtonLink", "contactButtonTitle", "height", "id", "newTab", "width", "props", "_ref", "createLayoutDependency", "Variants", "motion", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "a_tThaokp", "TvaJdc_kn", "Hyefms2Dh", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramergBWRxyKR7", "withCSS", "gBWRxyKR7_default", "addPropertyControls", "ControlType", "addFonts", "getBorderStyle", "t", "o", "d", "r", "i", "l", "h", "b", "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", "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", "localesForCurrentRoute", "useLocalesForCurrentRoute", "activeLocaleId", "lastActiveLocaleId", "setLastActiveLocaleId", "selectedLocaleId", "setSelectedLocaleId", "selectedLocale", "locale", "handleChange", "event", "localeId", "u", "className", "getPaddingStyle", "getRadiusStyle", "getBorderStyle", "getHoverStyle", "getFocusStyle", "addPropertyControls", "ControlType", "paddingControls", "radiusControls", "borderControls", "hoverControls", "focusControls", "LocaleSelector_default", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "buttonLink", "buttonText", "height", "id", "newTab", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Variants", "motion", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "lPe31cTnC", "wiM4R7YyN", "FkwW3a0aw", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearfzmf19", "args", "CycleVariantState", "useOnVariantChange", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText2", "css", "FramerJNUQKu9Vo", "withCSS", "JNUQKu9Vo_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "menuItem", "menuItemLink", "newTab", "width", "props", "_ref", "createLayoutDependency", "Variants", "motion", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "GnaXn2XRM", "cU9ezo6Gr", "zPP4DL6s3", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText2", "css", "FramersQRnmNtCN", "withCSS", "sQRnmNtCN_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "logoText", "logoTextOnHover", "width", "props", "_ref", "_ref1", "createLayoutDependency", "Variants", "motion", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "wYKrcpmTB", "z59PjYocl", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText2", "css", "FramerebmAEorRV", "withCSS", "ebmAEorRV_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "menuItem", "menuItemLink", "newTab", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "GnaXn2XRM", "cU9ezo6Gr", "zPP4DL6s3", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText2", "css", "FramerkXK2VlsWc", "withCSS", "kXK2VlsWc_default", "addPropertyControls", "ControlType", "addFonts", "NavigationLogoFonts", "getFonts", "ebmAEorRV_default", "NavigationMenuItemFonts", "sQRnmNtCN_default", "NavigationMenuItem2Fonts", "kXK2VlsWc_default", "LocaleSelectorFonts", "LocaleSelector_default", "ButtonWithRotatingShimmerBlackFonts", "JNUQKu9Vo_default", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "buttonWithRotatingShimmerLink", "buttonWithRotatingShimmerText", "height", "id", "logoImage", "logoText", "logoTextOnHover", "menuItem1", "menuItem1Link", "menuItem2", "menuItem2Link", "menuItem5", "menuItem5Link", "menuItem6", "menuItem6Link", "newTab", "newTab1", "newTab2", "newTab6", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "Mzvbq6XGp", "rJJqicL60", "pPkA46E6R", "locDNESqS", "MUyzKGXnD", "JjlQqVt_0", "pahEe8Fw0", "yztqrLXaD", "AKiHJSbtj", "Fv7GsCbQt", "q2Xr7SlEo", "rbo9Mjbeg", "gIoF6pZQx", "qQKjGBX1k", "W2I3pPuGU", "VRorMD0gc", "zi0cZZNCu", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "ebmAEorRV_default", "sQRnmNtCN_default", "kXK2VlsWc_default", "LocaleSelector_default", "JNUQKu9Vo_default", "css", "FramerjJ9t9IU_F", "withCSS", "jJ9t9IU_F_default", "addPropertyControls", "ControlType", "addFonts", "NavigationLogoFonts", "NavigationMenuItemFonts", "NavigationMenuItem2Fonts", "LocaleSelectorFonts", "ButtonWithRotatingShimmerBlackFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "footerMenuItemLink", "footerMenuItemTitle", "height", "id", "newTab", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "LUldJrVDw", "fXVKDjrjF", "DSS0z9g4K", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "u", "RichText2", "css", "FramerJZspN2FQM", "withCSS", "JZspN2FQM_default", "addPropertyControls", "ControlType", "addFonts", "variantClassNames", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "sharedStyleClassNames", "p", "LayoutGroup", "css", "FramerLEq671n7a", "withCSS", "LEq671n7a_default", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "email", "height", "id", "link", "newTab", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "YP0cK_Pj4", "WxmEj9Z8F", "wVrNq3684", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText2", "css", "FramerottQu0lpV", "withCSS", "ottQu0lpV_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "logoText", "logoTextOnHover", "width", "props", "_ref", "_ref1", "createLayoutDependency", "Variants", "motion", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "wYKrcpmTB", "z59PjYocl", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText2", "css", "FramerebmAEorRV", "withCSS", "ebmAEorRV_default", "addPropertyControls", "ControlType", "addFonts", "NavigationLogoFonts", "getFonts", "ebmAEorRV_default", "LocaleSelectorFonts", "LocaleSelector_default", "RichTextWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "RichText2", "ImageWithFXWithOptimizedAppearEffect", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transition2", "animation", "animation1", "transition3", "animation2", "transition4", "animation3", "transition5", "animation4", "transition6", "animation5", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "iconImage", "id", "logoImage", "logoText", "logoTextOnHover", "menuItem1", "menuItem1Link", "menuItem2", "menuItem2Link", "menuItem4", "menuItem4Link", "menuItem6", "menuItemWithIconLink", "menuItemWithIconTitle", "newTab", "newTab1", "newTab2", "newTab3", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "N_ACceePd", "pVkuV6j6a", "H_oZIw57j", "OetXiprH5", "RdzMC4efm", "OTdHMYbxl", "L2a1A4uva", "SsjhGIxoG", "i8Z9c2SDA", "lWgkR2bp_", "zRRzGxuZq", "Iq3tKjshQ", "f3xyZUTEy", "HJ5vrwg5O", "DG_2WQ8MX", "OjQnwE0jB", "vxRYTgGdV", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapk92qop", "args", "onTapch8gwg", "onTap190aexa", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "getLoadingLazyAtYPosition", "Link", "css", "FramerxZILHBB1o", "withCSS", "xZILHBB1o_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
