{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/1TuPrQ340UA4qRKCzPQC/REZhOd7kvDEe1XNbxqvl/s21e4xGOE.js", "ssg:https://framerusercontent.com/modules/YLaa8d1qFbxTy5CePxwo/JZRhMT6za7NihspWh4ta/Clock.js", "ssg:https://framerusercontent.com/modules/3z0zR121A85g0WfE4CPW/jGdBh3HMbU1BjDcV8hj3/chBBeLxOO.js", "ssg:https://framerusercontent.com/modules/c1k1iGxhe3aNUYP9Ju4X/tZo5a1JQeOJbMAIypTrP/G8MYwMWFd.js", "ssg:https://framerusercontent.com/modules/aLC57ptjqs09eCF9AY3i/snb8a7Tyk5V7OvKZ7Ykg/dC5TX1xm7.js", "ssg:https://framerusercontent.com/modules/m0OGJSzADHQYDSg2S63i/GiJ6ULPY2V8dYAQmnKn7/fxOa2uaU7.js", "ssg:https://framerusercontent.com/modules/9XGd0JvOja9CE8z1pUey/xDRWNIRGJOD3mB7sS3sV/HQy1toMAB.js", "ssg:https://framerusercontent.com/modules/t3C7DDqI3UBv6RnzhFnd/5N6a5S5FJGKkT26vvSPb/flWVZcVm8.js", "ssg:https://framerusercontent.com/modules/7rSqMs84auBOGbSqXt95/SxH4ZtJ9tcJCcqiXYac7/OMi7rFr6t.js", "ssg:https://framerusercontent.com/modules/jI3fVYZEgzSuOBF0emVL/8EWxSLRu6Aq2O6ALNSIk/ro7OPezbn.js", "ssg:https://framerusercontent.com/modules/pbLmQrhYlWjMxVdYnnfE/jSXAA4GKH2AN9l79ZK3F/vayacA6eb.js", "ssg:https://framerusercontent.com/modules/zuoVcOlRqQ7G2Rr0WpwZ/SGXqbxQJJB5rlUbirg32/q1cQZH5aS.js", "ssg:https://framerusercontent.com/modules/7RGYE4paszb5mABGy046/tNHgYi3um9MEtYyYVOdn/jnQIXPCnK.js"],
  "sourcesContent": ["import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"Inter\"]);export const fonts=[];export const css=['.framer-BtI6Y .framer-styles-preset-1ypj84h:not(.rich-text-wrapper), .framer-BtI6Y .framer-styles-preset-1ypj84h.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.15px; --framer-line-height: 150%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-0f0ae4b9-e928-41c5-b457-bbd33ae176d3, #595959); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-BtI6Y\";\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\"}}}", "import{jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useState,useEffect}from\"react\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n */ export default function Clock(props){const[currentTime,setCurrentTime]=useState(new Date);useEffect(()=>{const timerID=setInterval(()=>updateCurrentTime(),1e3);return()=>{clearInterval(timerID);};},[]);const updateCurrentTime=()=>{setCurrentTime(new Date);};let text=\"\";const ampmText=props.ampmCase==\"uppercase\"?[\"AM\",\"PM\"]:[\"am\",\"pm\"];const hours=props.is12hour?currentTime.getHours()%12||12:currentTime.getHours();const minutes=currentTime.getMinutes().toString().padStart(2,\"0\");const ampm=props.is12hour?currentTime.getHours()>=12?\" \"+ampmText[1]:\" \"+ampmText[0]:\"\";if(props.seconds){const seconds=currentTime.getSeconds().toString().padStart(2,\"0\");text=`${hours}:${minutes}:${seconds}${ampm}`;}else{text=`${hours}:${minutes}${ampm}`;}if(props.timeZone){const timeZoneAbbreviation=new Intl.DateTimeFormat(\"en-US\",{timeZoneName:\"short\"}).formatToParts(new Date).find(part=>part.type===\"timeZoneName\").value;text+=\" \"+timeZoneAbbreviation;}return /*#__PURE__*/ _jsxs(\"p\",{style:{color:props.color,userSelect:props.textSelect?\"auto\":\"none\",margin:0,...props.font},children:[props.prefix,text,props.suffix]});};addPropertyControls(Clock,{seconds:{type:ControlType.Boolean,defaultValue:false,enabledTitle:\"Show\",disabledTitle:\"Hide\"},timeZone:{type:ControlType.Boolean,defaultValue:false,enabledTitle:\"Show\",disabledTitle:\"Hide\"},is12hour:{type:ControlType.Boolean,defaultValue:true,enabledTitle:\"12 Hour\",disabledTitle:\"24 Hour\",title:\"Mode\"},ampmCase:{type:ControlType.Enum,defaultValue:\"uppercase\",options:[\"uppercase\",\"lowercase\"],optionTitles:[\"AM / PM\",\"am / pm\"],title:\"Case\",hidden(props){return!props.is12hour;}},color:{type:ControlType.Color,defaultValue:\"#000\",title:\"Font Color\"},font:{type:\"font\",controls:\"extended\"},prefix:{type:ControlType.String},suffix:{type:ControlType.String},textSelect:{type:ControlType.Boolean,defaultValue:true}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Clock\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Clock.map", "// Generated by Framer (24d49ac)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"o1hT5ncJE\",\"Gw2a4JCDU\",\"XWh32wxFI\",\"jG_DvLeTU\",\"l5BCw0IYB\",\"oFBvm7v_s\"];const serializationHash=\"framer-tvugI\";const variantClassNames={Gw2a4JCDU:\"framer-v-wn58hi\",jG_DvLeTU:\"framer-v-1noxeua\",l5BCw0IYB:\"framer-v-vgetof\",o1hT5ncJE:\"framer-v-119i199\",oFBvm7v_s:\"framer-v-1pzcpnh\",XWh32wxFI:\"framer-v-w37688\"};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:.25,ease:[.12,.23,.5,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 Variants=motion(React.Fragment);const humanReadableVariantMap={\"Arrow-left\":\"oFBvm7v_s\",\"Arrow-right\":\"l5BCw0IYB\",\"Product Hunt\":\"jG_DvLeTU\",Dribbble:\"o1hT5ncJE\",LinkedIn:\"XWh32wxFI\",X:\"Gw2a4JCDU\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"o1hT5ncJE\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"o1hT5ncJE\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"Gw2a4JCDU\",\"XWh32wxFI\",\"jG_DvLeTU\",\"l5BCw0IYB\",\"oFBvm7v_s\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"Gw2a4JCDU\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"XWh32wxFI\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"l5BCw0IYB\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"oFBvm7v_s\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"jG_DvLeTU\")return true;return false;};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__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-119i199\",className,classNames),\"data-framer-name\":\"Dribbble\",layoutDependency:layoutDependency,layoutId:\"o1hT5ncJE\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({Gw2a4JCDU:{\"data-framer-name\":\"X\"},jG_DvLeTU:{\"data-framer-name\":\"Product Hunt\"},l5BCw0IYB:{\"data-framer-name\":\"Arrow-right\"},oFBvm7v_s:{\"data-framer-name\":\"Arrow-left\"},XWh32wxFI:{\"data-framer-name\":\"LinkedIn\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-11vvcaw\",\"data-framer-name\":\"Dribbble\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"bYM7IRFu8\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 20 C 4.487 20 0 15.512 0 10 C 0 4.488 4.487 0 10 0 C 15.513 0 20 4.487 20 10 C 20 15.513 15.513 20 10 20 Z M 18.433 11.368 C 18.142 11.277 15.792 10.574 13.113 11.003 C 14.23 14.073 14.686 16.573 14.773 17.093 C 16.731 15.772 18.057 13.7 18.436 11.368 Z M 13.338 17.875 C 13.21 17.125 12.713 14.515 11.513 11.4 L 11.458 11.417 C 6.633 13.096 4.908 16.437 4.758 16.75 C 6.253 17.923 8.099 18.559 9.999 18.555 C 11.183 18.555 12.308 18.313 13.333 17.877 Z M 3.654 15.725 C 3.848 15.392 6.192 11.513 10.598 10.088 C 10.71 10.05 10.823 10.018 10.935 9.988 C 10.718 9.5 10.485 9.015 10.242 8.538 C 5.975 9.813 1.838 9.758 1.463 9.75 L 1.46 10.01 C 1.46 12.204 2.292 14.208 3.655 15.723 Z M 1.638 8.263 C 2.021 8.269 5.54 8.284 9.535 7.223 C 8.569 5.52 7.512 3.871 6.368 2.283 C 3.943 3.424 2.193 5.635 1.638 8.258 Z M 8 1.71 C 8.235 2.027 9.787 4.138 11.185 6.71 C 14.223 5.572 15.51 3.843 15.663 3.625 C 14.104 2.235 12.088 1.468 10 1.47 C 9.313 1.47 8.642 1.553 8 1.707 Z M 16.612 4.613 C 16.431 4.854 15 6.69 11.842 7.979 C 12.042 8.388 12.234 8.8 12.409 9.218 C 12.476 9.368 12.534 9.518 12.592 9.659 C 15.434 9.301 18.259 9.876 18.542 9.934 C 18.526 7.918 17.809 6.068 16.617 4.618 Z\" fill=\"var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, rgb(26, 26, 26)) /* {&quot;name&quot;:&quot;Text/Primary&quot;} */\"></path></svg>',svgContentId:1353517358,withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-z7pe7y\",\"data-framer-name\":\"X\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"yAMLoGih_\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 15.751 0.961 L 18.817 0.961 L 12.118 8.619 L 20 19.038 L 13.828 19.038 L 8.995 12.718 L 3.463 19.038 L 0.395 19.038 L 7.562 10.847 L 0 0.962 L 6.328 0.962 L 10.697 6.738 Z M 14.675 17.203 L 16.374 17.203 L 5.405 2.7 L 3.582 2.7 Z\" fill=\"var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, rgb(26, 26, 26)) /* {&quot;name&quot;:&quot;Text/Primary&quot;} */\"></path></svg>',svgContentId:66068743,withExternalLayout:true,...addPropertyOverrides({Gw2a4JCDU:{svgContentId:9525118159}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-anlth\",\"data-framer-name\":\"LinkedIn\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"cU9ZrkO9m\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 17.039 17.043 L 14.078 17.043 L 14.078 12.403 C 14.078 11.296 14.055 9.872 12.534 9.872 C 10.99 9.872 10.754 11.076 10.754 12.321 L 10.754 17.043 L 7.793 17.043 L 7.793 7.5 L 10.638 7.5 L 10.638 8.801 L 10.676 8.801 C 11.073 8.051 12.04 7.259 13.484 7.259 C 16.485 7.259 17.04 9.234 17.04 11.805 L 17.04 17.043 Z M 4.448 6.194 C 3.991 6.194 3.554 6.013 3.231 5.69 C 2.909 5.367 2.728 4.93 2.728 4.473 C 2.729 3.523 3.499 2.754 4.449 2.754 C 5.399 2.755 6.169 3.525 6.168 4.475 C 6.168 5.425 5.397 6.195 4.448 6.194 Z M 5.933 17.043 L 2.963 17.043 L 2.963 7.5 L 5.933 7.5 Z M 18.521 0 L 1.476 0 C 0.66 0 0 0.645 0 1.441 L 0 18.559 C 0 19.356 0.66 20 1.476 20 L 18.518 20 C 19.333 20 20 19.356 20 18.559 L 20 1.441 C 20 0.645 19.333 0 18.518 0 Z\" fill=\"var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, rgb(26, 26, 26)) /* {&quot;name&quot;:&quot;Text/Primary&quot;} */\"></path></svg>',svgContentId:10201218003,withExternalLayout:true,...addPropertyOverrides({XWh32wxFI:{svgContentId:9923257631}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-lf63o4\",\"data-framer-name\":\"Arrow-right\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Vqj8cnYmk\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 5 12 L 19 12\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, rgb(26, 26, 26)) /* {&quot;name&quot;:&quot;Text/Primary&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 14 17 L 19 12 L 14 7\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, rgb(26, 26, 26)) /* {&quot;name&quot;:&quot;Text/Primary&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:481408015,withExternalLayout:true,...addPropertyOverrides({l5BCw0IYB:{svgContentId:10358890138}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-gjlymh\",\"data-framer-name\":\"Arrow-left\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"dULlv32sj\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 19 12 L 5 12\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, rgb(26, 26, 26)) /* {&quot;name&quot;:&quot;Text/Primary&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 10 17 L 5 12 L 10 7\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, rgb(26, 26, 26)) /* {&quot;name&quot;:&quot;Text/Primary&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:2638149230,withExternalLayout:true,...addPropertyOverrides({oFBvm7v_s:{svgContentId:9377913901}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1tnx6vc\",\"data-framer-name\":\"Product Hunt-icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"Wl4nqX7_J\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_11_2)\">\\n<path d=\"M10 0C4.47717 0 0 4.47717 0 10C0 15.5229 4.47717 20 10 20C15.5229 20 20 15.5229 20 10C20 4.47717 15.5229 0 10 0ZM11.3334 12L8.50002 12.0001V15H6.50002V5L11.3334 5.00004C13.2664 5.00004 14.8334 6.56704 14.8334 8.50002C14.8333 10.433 13.2664 12 11.3334 12Z\" fill=\"white\"/>\\n<path d=\"M11.3334 7L8.50002 7.00004V10H11.3334C12.1618 10 12.8333 9.3284 12.8333 8.49998C12.8333 7.67157 12.1618 7 11.3334 7Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_11_2\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tvugI.framer-a1tv3i, .framer-tvugI .framer-a1tv3i { display: block; }\",\".framer-tvugI.framer-119i199 { height: 24px; overflow: hidden; position: relative; width: 24px; }\",\".framer-tvugI .framer-11vvcaw, .framer-tvugI .framer-z7pe7y, .framer-tvugI .framer-anlth, .framer-tvugI .framer-1tnx6vc { flex: none; height: 20px; left: calc(50.00000000000002% - 20px / 2); position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 20px; }\",\".framer-tvugI .framer-lf63o4, .framer-tvugI .framer-gjlymh { flex: none; height: 24px; left: 0px; position: absolute; top: 0px; width: 24px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Gw2a4JCDU\":{\"layout\":[\"fixed\",\"fixed\"]},\"XWh32wxFI\":{\"layout\":[\"fixed\",\"fixed\"]},\"jG_DvLeTU\":{\"layout\":[\"fixed\",\"fixed\"]},\"l5BCw0IYB\":{\"layout\":[\"fixed\",\"fixed\"]},\"oFBvm7v_s\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerchBBeLxOO=withCSS(Component,css,\"framer-tvugI\");export default FramerchBBeLxOO;FramerchBBeLxOO.displayName=\"Icon\";FramerchBBeLxOO.defaultProps={height:24,width:24};addPropertyControls(FramerchBBeLxOO,{variant:{options:[\"o1hT5ncJE\",\"Gw2a4JCDU\",\"XWh32wxFI\",\"jG_DvLeTU\",\"l5BCw0IYB\",\"oFBvm7v_s\"],optionTitles:[\"Dribbble\",\"X\",\"LinkedIn\",\"Product Hunt\",\"Arrow-right\",\"Arrow-left\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerchBBeLxOO,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerchBBeLxOO\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"24\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Gw2a4JCDU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XWh32wxFI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jG_DvLeTU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"l5BCw0IYB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oFBvm7v_s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./chBBeLxOO.map", "// Generated by Framer (24d49ac)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Icon from\"https://framerusercontent.com/modules/3z0zR121A85g0WfE4CPW/jGdBh3HMbU1BjDcV8hj3/chBBeLxOO.js\";const IconFonts=getFonts(Icon);const cycleOrder=[\"viQa44q7m\"];const serializationHash=\"framer-HbrXi\";const variantClassNames={viQa44q7m:\"framer-v-bh9ui4\"};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 Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"viQa44q7m\",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__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-bh9ui4\",className,classNames),\"data-framer-name\":\"Social Links\",layoutDependency:layoutDependency,layoutId:\"viQa44q7m\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/sylverdesign\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1v1vdju framer-d16wfu\",\"data-framer-name\":\"X Link\",layoutDependency:layoutDependency,layoutId:\"u7O16SslT\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"24px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hd8srf-container\",layoutDependency:layoutDependency,layoutId:\"BwlbUxrsF-container\",children:/*#__PURE__*/_jsx(Icon,{height:\"100%\",id:\"BwlbUxrsF\",layoutId:\"BwlbUxrsF\",style:{height:\"100%\",width:\"100%\"},variant:\"Gw2a4JCDU\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/sylvercassart/\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-r3gico framer-d16wfu\",\"data-framer-name\":\"LinkedIn Link\",layoutDependency:layoutDependency,layoutId:\"zcTlAVEAR\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"24px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jntttd-container\",layoutDependency:layoutDependency,layoutId:\"CyXCdOGtj-container\",children:/*#__PURE__*/_jsx(Icon,{height:\"100%\",id:\"CyXCdOGtj\",layoutId:\"CyXCdOGtj\",style:{height:\"100%\",width:\"100%\"},variant:\"XWh32wxFI\",width:\"100%\"})})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HbrXi.framer-d16wfu, .framer-HbrXi .framer-d16wfu { display: block; }\",\".framer-HbrXi.framer-bh9ui4 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-HbrXi .framer-1v1vdju, .framer-HbrXi .framer-r3gico { flex: none; height: 24px; overflow: visible; position: relative; text-decoration: none; width: 24px; }\",\".framer-HbrXi .framer-hd8srf-container, .framer-HbrXi .framer-jntttd-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HbrXi.framer-bh9ui4 { gap: 0px; } .framer-HbrXi.framer-bh9ui4 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-HbrXi.framer-bh9ui4 > :first-child { margin-left: 0px; } .framer-HbrXi.framer-bh9ui4 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 64\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerG8MYwMWFd=withCSS(Component,css,\"framer-HbrXi\");export default FramerG8MYwMWFd;FramerG8MYwMWFd.displayName=\"Social Links\";FramerG8MYwMWFd.defaultProps={height:24,width:64};addFonts(FramerG8MYwMWFd,[{explicitInter:true,fonts:[]},...IconFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerG8MYwMWFd\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"64\",\"framerIntrinsicHeight\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./G8MYwMWFd.map", "// Generated by Framer (24d49ac)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Clock from\"https://framerusercontent.com/modules/YLaa8d1qFbxTy5CePxwo/JZRhMT6za7NihspWh4ta/Clock.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/1TuPrQ340UA4qRKCzPQC/REZhOd7kvDEe1XNbxqvl/s21e4xGOE.js\";import SocialLinks from\"https://framerusercontent.com/modules/c1k1iGxhe3aNUYP9Ju4X/tZo5a1JQeOJbMAIypTrP/G8MYwMWFd.js\";const ClockFonts=getFonts(Clock);const SocialLinksFonts=getFonts(SocialLinks);const cycleOrder=[\"vGDcEWSgg\",\"jc2FV7z1_\",\"zRdmaSddF\"];const serializationHash=\"framer-mk4Bx\";const variantClassNames={jc2FV7z1_:\"framer-v-1qfqts3\",vGDcEWSgg:\"framer-v-p5mudr\",zRdmaSddF:\"framer-v-xl820f\"};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 Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"vGDcEWSgg\",Phone:\"zRdmaSddF\",Tablet:\"jc2FV7z1_\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"vGDcEWSgg\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vGDcEWSgg\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"jc2FV7z1_\",\"zRdmaSddF\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-p5mudr\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"vGDcEWSgg\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({jc2FV7z1_:{\"data-framer-name\":\"Tablet\"},zRdmaSddF:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fvrt2g\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"eQ8XfMQAA\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h1a2b3\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"sxkTbz4Fz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ypj84h\",\"data-styles-preset\":\"s21e4xGOE\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0f0ae4b9-e928-41c5-b457-bbd33ae176d3, rgb(89, 89, 89)))\"},children:\"\\xa9 2024\"})}),className:\"framer-8q7crf\",\"data-framer-name\":\"Body\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I8:751;8:715\",style:{\"--extracted-r6o4lv\":\"var(--token-0f0ae4b9-e928-41c5-b457-bbd33ae176d3, rgb(89, 89, 89))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ypj84h\",\"data-styles-preset\":\"s21e4xGOE\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0f0ae4b9-e928-41c5-b457-bbd33ae176d3, rgb(89, 89, 89)))\"},children:\"Sylver Cassart\"})}),className:\"framer-1lyce1h\",\"data-framer-name\":\"Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZtETXNqB7\",style:{\"--extracted-r6o4lv\":\"var(--token-0f0ae4b9-e928-41c5-b457-bbd33ae176d3, rgb(89, 89, 89))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-110d2t1\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"HtQAojnDX\",style:{backgroundColor:\"var(--token-b70bda9a-0083-45a7-9cd0-4fff271102b2, rgb(230, 231, 234))\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12babuc-container\",layoutDependency:layoutDependency,layoutId:\"VNzDl2Btm-container\",children:/*#__PURE__*/_jsx(Clock,{ampmCase:\"uppercase\",color:\"var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, rgb(26, 26, 26))\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"-0.15px\",lineHeight:\"150%\",textAlign:\"left\"},height:\"100%\",id:\"VNzDl2Btm\",is12hour:true,layoutId:\"VNzDl2Btm\",prefix:\"\",seconds:true,style:{width:\"100%\"},suffix:\"\",textSelect:false,timeZone:false,width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gxm854\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"ztcVY5XRT\",style:{backgroundColor:\"var(--token-b70bda9a-0083-45a7-9cd0-4fff271102b2, rgb(230, 231, 234))\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ypj84h\",\"data-styles-preset\":\"s21e4xGOE\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0f0ae4b9-e928-41c5-b457-bbd33ae176d3, rgb(89, 89, 89)))\"},children:\"hello@sylvercassart.com\"})}),className:\"framer-1n5o60s\",\"data-framer-name\":\"Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zTjqTTczT\",style:{\"--extracted-r6o4lv\":\"var(--token-0f0ae4b9-e928-41c5-b457-bbd33ae176d3, rgb(89, 89, 89))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fntkhu-container\",layoutDependency:layoutDependency,layoutId:\"WKBLJX7ga-container\",children:/*#__PURE__*/_jsx(SocialLinks,{height:\"100%\",id:\"WKBLJX7ga\",layoutId:\"WKBLJX7ga\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mk4Bx.framer-16zka73, .framer-mk4Bx .framer-16zka73 { display: block; }\",\".framer-mk4Bx.framer-p5mudr { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 8px 0px; position: relative; width: 1024px; }\",\".framer-mk4Bx .framer-fvrt2g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-mk4Bx .framer-1h1a2b3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-mk4Bx .framer-8q7crf, .framer-mk4Bx .framer-1lyce1h, .framer-mk4Bx .framer-1n5o60s { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-mk4Bx .framer-110d2t1, .framer-mk4Bx .framer-1gxm854 { align-self: stretch; flex: none; height: auto; overflow: visible; position: relative; width: 1px; }\",\".framer-mk4Bx .framer-12babuc-container { flex: none; height: auto; position: relative; width: 88px; }\",\".framer-mk4Bx .framer-fntkhu-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mk4Bx .framer-fvrt2g, .framer-mk4Bx .framer-1h1a2b3 { gap: 0px; } .framer-mk4Bx .framer-fvrt2g > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-mk4Bx .framer-fvrt2g > :first-child, .framer-mk4Bx .framer-1h1a2b3 > :first-child { margin-left: 0px; } .framer-mk4Bx .framer-fvrt2g > :last-child, .framer-mk4Bx .framer-1h1a2b3 > :last-child { margin-right: 0px; } .framer-mk4Bx .framer-1h1a2b3 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-mk4Bx.framer-v-1qfqts3.framer-p5mudr { flex-direction: column; gap: 24px; justify-content: flex-start; width: 480px; }\",\".framer-mk4Bx.framer-v-1qfqts3 .framer-fvrt2g, .framer-mk4Bx.framer-v-xl820f .framer-fvrt2g { flex-direction: column; order: 1; }\",\".framer-mk4Bx.framer-v-1qfqts3 .framer-12babuc-container, .framer-mk4Bx.framer-v-xl820f .framer-12babuc-container { width: auto; }\",\".framer-mk4Bx.framer-v-1qfqts3 .framer-1gxm854, .framer-mk4Bx.framer-v-xl820f .framer-1gxm854 { align-self: unset; flex: 1 0 0px; height: 1px; }\",\".framer-mk4Bx.framer-v-1qfqts3 .framer-fntkhu-container, .framer-mk4Bx.framer-v-xl820f .framer-fntkhu-container { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mk4Bx.framer-v-1qfqts3.framer-p5mudr, .framer-mk4Bx.framer-v-1qfqts3 .framer-fvrt2g { gap: 0px; } .framer-mk4Bx.framer-v-1qfqts3.framer-p5mudr > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-mk4Bx.framer-v-1qfqts3.framer-p5mudr > :first-child, .framer-mk4Bx.framer-v-1qfqts3 .framer-fvrt2g > :first-child { margin-top: 0px; } .framer-mk4Bx.framer-v-1qfqts3.framer-p5mudr > :last-child, .framer-mk4Bx.framer-v-1qfqts3 .framer-fvrt2g > :last-child { margin-bottom: 0px; } .framer-mk4Bx.framer-v-1qfqts3 .framer-fvrt2g > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-mk4Bx.framer-v-xl820f.framer-p5mudr { flex-direction: column; gap: 24px; justify-content: flex-start; width: 360px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mk4Bx.framer-v-xl820f.framer-p5mudr, .framer-mk4Bx.framer-v-xl820f .framer-fvrt2g { gap: 0px; } .framer-mk4Bx.framer-v-xl820f.framer-p5mudr > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-mk4Bx.framer-v-xl820f.framer-p5mudr > :first-child, .framer-mk4Bx.framer-v-xl820f .framer-fvrt2g > :first-child { margin-top: 0px; } .framer-mk4Bx.framer-v-xl820f.framer-p5mudr > :last-child, .framer-mk4Bx.framer-v-xl820f .framer-fvrt2g > :last-child { margin-bottom: 0px; } .framer-mk4Bx.framer-v-xl820f .framer-fvrt2g > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 1024\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jc2FV7z1_\":{\"layout\":[\"fixed\",\"auto\"]},\"zRdmaSddF\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerdC5TX1xm7=withCSS(Component,css,\"framer-mk4Bx\");export default FramerdC5TX1xm7;FramerdC5TX1xm7.displayName=\"Navigation/Footer\";FramerdC5TX1xm7.defaultProps={height:32,width:1024};addPropertyControls(FramerdC5TX1xm7,{variant:{options:[\"vGDcEWSgg\",\"jc2FV7z1_\",\"zRdmaSddF\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerdC5TX1xm7,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...ClockFonts,...SocialLinksFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdC5TX1xm7\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"32\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1024\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jc2FV7z1_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zRdmaSddF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dC5TX1xm7.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"Inter-Medium\"]);export const fonts=[];export const css=['.framer-ivA2K .framer-styles-preset-15ooa2o:not(.rich-text-wrapper), .framer-ivA2K .framer-styles-preset-15ooa2o.rich-text-wrapper h3 { --framer-font-family: \"Inter-Medium\", \"Inter\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: -0.5px; --framer-line-height: 150%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-ivA2K\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (05fbd34)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Link,RichText,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/m0OGJSzADHQYDSg2S63i/GiJ6ULPY2V8dYAQmnKn7/fxOa2uaU7.js\";import Icon from\"https://framerusercontent.com/modules/3z0zR121A85g0WfE4CPW/jGdBh3HMbU1BjDcV8hj3/chBBeLxOO.js\";const IconFonts=getFonts(Icon);const enabledGestures={A66daeBO5:{hover:true},EWf5c2ru5:{hover:true},PFb89MFp3:{hover:true}};const cycleOrder=[\"EWf5c2ru5\",\"PFb89MFp3\",\"A66daeBO5\"];const serializationHash=\"framer-LayIM\";const variantClassNames={A66daeBO5:\"framer-v-wwek1n\",EWf5c2ru5:\"framer-v-14vq399\",PFb89MFp3:\"framer-v-evic8p\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{delay:0,duration:.25,ease:[.12,.23,.5,1],type:\"tween\"},PFb89MFp3:{delay:0,duration:.25,ease:[.12,.23,.5,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 Variants=motion(React.Fragment);const humanReadableVariantMap={Icon:\"A66daeBO5\",Primary:\"PFb89MFp3\",Secondary:\"EWf5c2ru5\"};const getProps=({height,id,link,newTab,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,G1qbEeU5V:newTab!==null&&newTab!==void 0?newTab:props.G1qbEeU5V,H9HMPBD02:link!==null&&link!==void 0?link:props.H9HMPBD02,pAN0s57YM:(_ref=text!==null&&text!==void 0?text:props.pAN0s57YM)!==null&&_ref!==void 0?_ref:\"Button\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"EWf5c2ru5\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,pAN0s57YM,H9HMPBD02,G1qbEeU5V,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"EWf5c2ru5\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"A66daeBO5-hover\")return false;if(baseVariant===\"A66daeBO5\")return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"A66daeBO5-hover\")return true;if(baseVariant===\"A66daeBO5\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];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:transition,children:/*#__PURE__*/_jsx(Link,{href:H9HMPBD02,openInNewTab:G1qbEeU5V,children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-14vq399\",className,classNames)} framer-1y3afkm`,\"data-framer-name\":\"Secondary\",layoutDependency:layoutDependency,layoutId:\"EWf5c2ru5\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"A66daeBO5-hover\":{\"data-framer-name\":undefined},\"EWf5c2ru5-hover\":{\"data-framer-name\":undefined},\"PFb89MFp3-hover\":{\"data-framer-name\":undefined},A66daeBO5:{\"data-framer-name\":\"Icon\"},PFb89MFp3:{\"data-framer-name\":\"Primary\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1humrid\",\"data-border\":true,\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"qDCc3lCa3\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":'var(--token-b70bda9a-0083-45a7-9cd0-4fff271102b2, rgb(230, 231, 234)) /* {\"name\":\"Neutral/Gray 4\"} */',\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-5fbe4e9b-0fcd-4fae-9a6b-902ca1f1dae5, rgb(255, 255, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},variants:{\"A66daeBO5-hover\":{backgroundColor:\"var(--token-8d21ddd0-30c2-4d58-9cfe-c00e05cba876, rgb(241, 242, 244))\"},\"EWf5c2ru5-hover\":{backgroundColor:\"var(--token-8d21ddd0-30c2-4d58-9cfe-c00e05cba876, rgb(242, 242, 242))\"},\"PFb89MFp3-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-619c5a0b-5c86-4bfa-b276-143601f80b30, rgb(194, 56, 10))\"},PFb89MFp3:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-2a54f3f7-c0d4-4cec-a40e-35dfcb439093, rgb(244, 89, 37))\"}},children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-15ooa2o\",\"data-styles-preset\":\"fxOa2uaU7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, rgb(44, 44, 44)))\"},children:\"Button\"})}),className:\"framer-bqetv3\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"I5:154;2:608\",style:{\"--extracted-a0htzi\":\"var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, rgb(44, 44, 44))\"},text:pAN0s57YM,variants:{PFb89MFp3:{\"--extracted-a0htzi\":\"var(--token-5fbe4e9b-0fcd-4fae-9a6b-902ca1f1dae5, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({PFb89MFp3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-15ooa2o\",\"data-styles-preset\":\"fxOa2uaU7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-5fbe4e9b-0fcd-4fae-9a6b-902ca1f1dae5, rgb(255, 255, 255)))\"},children:\"Button\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jm6wnz-container\",layoutDependency:layoutDependency,layoutId:\"TceJZy8Yl-container\",children:/*#__PURE__*/_jsx(Icon,{height:\"100%\",id:\"TceJZy8Yl\",layoutId:\"TceJZy8Yl\",style:{height:\"100%\",width:\"100%\"},variant:\"oFBvm7v_s\",width:\"100%\"})})]})})})})})});});const css=['.framer-LayIM[data-border=\"true\"]::after, .framer-LayIM [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LayIM.framer-1y3afkm, .framer-LayIM .framer-1y3afkm { display: block; }\",\".framer-LayIM.framer-14vq399 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-LayIM .framer-1humrid { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 24px 12px 24px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-LayIM .framer-bqetv3 { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 2; }\",\".framer-LayIM .framer-1jm6wnz-container { flex: none; height: 24px; position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LayIM.framer-14vq399, .framer-LayIM .framer-1humrid { gap: 0px; } .framer-LayIM.framer-14vq399 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-LayIM.framer-14vq399 > :first-child, .framer-LayIM .framer-1humrid > :first-child { margin-left: 0px; } .framer-LayIM.framer-14vq399 > :last-child, .framer-LayIM .framer-1humrid > :last-child { margin-right: 0px; } .framer-LayIM .framer-1humrid > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-LayIM.framer-v-evic8p .framer-1humrid { order: 0; }\",\".framer-LayIM.framer-v-wwek1n .framer-1humrid { padding: 12px 12px 12px 12px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 96\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"PFb89MFp3\":{\"layout\":[\"auto\",\"auto\"]},\"A66daeBO5\":{\"layout\":[\"auto\",\"auto\"]},\"OLaT7uXBM\":{\"layout\":[\"auto\",\"auto\"]},\"zpIDkpKPQ\":{\"layout\":[\"auto\",\"auto\"]},\"lNLfKPo0Y\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"pAN0s57YM\":\"text\",\"H9HMPBD02\":\"link\",\"G1qbEeU5V\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerHQy1toMAB=withCSS(Component,css,\"framer-LayIM\");export default FramerHQy1toMAB;FramerHQy1toMAB.displayName=\"Button\";FramerHQy1toMAB.defaultProps={height:48,width:96};addPropertyControls(FramerHQy1toMAB,{variant:{options:[\"EWf5c2ru5\",\"PFb89MFp3\",\"A66daeBO5\"],optionTitles:[\"Secondary\",\"Primary\",\"Icon\"],title:\"Variant\",type:ControlType.Enum},pAN0s57YM:{defaultValue:\"Button\",displayTextArea:false,title:\"Text\",type:ControlType.String},H9HMPBD02:{title:\"Link\",type:ControlType.Link},G1qbEeU5V:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean}});addFonts(FramerHQy1toMAB,[...IconFonts,...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHQy1toMAB\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"48\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"PFb89MFp3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"A66daeBO5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"OLaT7uXBM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zpIDkpKPQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"lNLfKPo0Y\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"pAN0s57YM\\\":\\\"text\\\",\\\"H9HMPBD02\\\":\\\"link\\\",\\\"G1qbEeU5V\\\":\\\"newTab\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"96\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (24d49ac)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={oCe3umCIZ:{hover:true}};const cycleOrder=[\"oCe3umCIZ\"];const serializationHash=\"framer-D1Xqq\";const variantClassNames={oCe3umCIZ:\"framer-v-1a7tu0o\"};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:.25,ease:[.12,.23,.5,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,link,width,...props})=>{return{...props,WHwBc38G2:link!==null&&link!==void 0?link:props.WHwBc38G2};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,WHwBc38G2,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oCe3umCIZ\",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:WHwBc38G2,openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KsuwnAFCLQ8VBLcvKwqgiUDA.png\"},className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1a7tu0o\",className,classNames)} framer-injgo`,\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"oCe3umCIZ\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"oCe3umCIZ-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/G33ub5FRjwpuur43CBjPpSB0hPQ.png\"},className:\"framer-1yf2ywn\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"qsSJQZkij\",...addPropertyOverrides({\"oCe3umCIZ-hover\":{transformTemplate:transformTemplate1}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-D1Xqq.framer-injgo, .framer-D1Xqq .framer-injgo { display: block; }\",\".framer-D1Xqq.framer-1a7tu0o { cursor: pointer; height: 48px; overflow: visible; position: relative; text-decoration: none; width: 48px; }\",\".framer-D1Xqq .framer-1yf2ywn { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-D1Xqq.framer-v-1a7tu0o.hover.framer-1a7tu0o { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 48px); }\",\".framer-D1Xqq.framer-v-1a7tu0o.hover .framer-1yf2ywn { height: var(--framer-aspect-ratio-supported, 50px); left: 50%; right: unset; top: 50%; width: 50px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 48\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"t5VWLHaUX\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"WHwBc38G2\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerflWVZcVm8=withCSS(Component,css,\"framer-D1Xqq\");export default FramerflWVZcVm8;FramerflWVZcVm8.displayName=\"Logo\";FramerflWVZcVm8.defaultProps={height:48,width:48};addPropertyControls(FramerflWVZcVm8,{WHwBc38G2:{title:\"Link\",type:ControlType.Link}});addFonts(FramerflWVZcVm8,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerflWVZcVm8\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"48\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"t5VWLHaUX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"WHwBc38G2\\\":\\\"link\\\"}\",\"framerIntrinsicWidth\":\"48\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./flWVZcVm8.map", "// Generated by Framer (0847096)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Logo from\"https://framerusercontent.com/modules/t3C7DDqI3UBv6RnzhFnd/5N6a5S5FJGKkT26vvSPb/flWVZcVm8.js\";import Button from\"https://framerusercontent.com/modules/9XGd0JvOja9CE8z1pUey/xDRWNIRGJOD3mB7sS3sV/HQy1toMAB.js\";const LogoFonts=getFonts(Logo);const ButtonFonts=getFonts(Button);const cycleOrder=[\"YPLWxui6D\",\"aeW5cnlvZ\",\"JVIBGxKOF\"];const serializationHash=\"framer-GMuMR\";const variantClassNames={aeW5cnlvZ:\"framer-v-4alaey\",JVIBGxKOF:\"framer-v-zl7t08\",YPLWxui6D:\"framer-v-diob26\"};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 Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"YPLWxui6D\",Phone:\"JVIBGxKOF\",Tablet:\"aeW5cnlvZ\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"YPLWxui6D\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YPLWxui6D\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if([\"aeW5cnlvZ\",\"JVIBGxKOF\"].includes(baseVariant))return false;return true;};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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-diob26\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"YPLWxui6D\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({aeW5cnlvZ:{\"data-framer-name\":\"Tablet\"},JVIBGxKOF:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||48)-0-48)/2),...addPropertyOverrides({JVIBGxKOF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-48)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-aar5ze-container\",layoutDependency:layoutDependency,layoutId:\"sVtcoayXY-container\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"sVtcoayXY\",layoutId:\"sVtcoayXY\",style:{height:\"100%\",width:\"100%\"},WHwBc38G2:resolvedLinks[0],width:\"100%\",...addPropertyOverrides({aeW5cnlvZ:{WHwBc38G2:resolvedLinks[1]},JVIBGxKOF:{WHwBc38G2:resolvedLinks[2]}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h2ciqz-container\",layoutDependency:layoutDependency,layoutId:\"KSkAkzSIR-container\",children:/*#__PURE__*/_jsx(Button,{G1qbEeU5V:true,H9HMPBD02:\"https://calendly.com/sylvercassart/15min\",height:\"100%\",id:\"KSkAkzSIR\",layoutId:\"KSkAkzSIR\",pAN0s57YM:\"Book a call\",variant:\"PFb89MFp3\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GMuMR.framer-1sm16lw, .framer-GMuMR .framer-1sm16lw { display: block; }\",\".framer-GMuMR.framer-diob26 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1024px; overflow: visible; padding: 0px; position: relative; width: 768px; }\",\".framer-GMuMR .framer-aar5ze-container { flex: none; height: 48px; position: relative; width: 48px; z-index: 1; }\",\".framer-GMuMR .framer-1h2ciqz-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-GMuMR.framer-v-4alaey.framer-diob26 { width: 480px; }\",\".framer-GMuMR.framer-v-zl7t08.framer-diob26 { width: 360px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 768\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1024px\",null,null]},\"aeW5cnlvZ\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1024px\",null,null]},\"JVIBGxKOF\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1024px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOMi7rFr6t=withCSS(Component,css,\"framer-GMuMR\");export default FramerOMi7rFr6t;FramerOMi7rFr6t.displayName=\"Navigation/Logo & Button\";FramerOMi7rFr6t.defaultProps={height:48,width:768};addPropertyControls(FramerOMi7rFr6t,{variant:{options:[\"YPLWxui6D\",\"aeW5cnlvZ\",\"JVIBGxKOF\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerOMi7rFr6t,[{explicitInter:true,fonts:[]},...LogoFonts,...ButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOMi7rFr6t\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1024px\\\",null,null]},\\\"aeW5cnlvZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1024px\\\",null,null]},\\\"JVIBGxKOF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1024px\\\",null,null]}}}\",\"framerIntrinsicHeight\":\"48\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"768\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OMi7rFr6t.map", "// Generated by Framer (838580a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-kx0xh .framer-styles-preset-1wicq5s:not(.rich-text-wrapper), .framer-kx0xh .framer-styles-preset-1wicq5s.rich-text-wrapper a { --framer-link-current-text-color: var(--token-2a54f3f7-c0d4-4cec-a40e-35dfcb439093, #6a4dff) /* {\"name\":\"Primary/Purple\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-2a54f3f7-c0d4-4cec-a40e-35dfcb439093, #824dff) /* {\"name\":\"Primary/Purple\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, #1a1a1a); --framer-link-text-decoration: none; transition: color 0.25s cubic-bezier(0.12, 0.23, 0.5, 1) 0s; }'];export const className=\"framer-kx0xh\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (838580a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Medium\"]);export const fonts=[{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://app.framerstatic.com/Inter-Medium.cyrillic-ext-M4WHNGTS.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Medium.cyrillic-JVU2PANX.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Medium.greek-ext-4KCQBEIZ.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Medium.greek-DPOQGN7L.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Medium.latin-ext-J4DBSW7F.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Medium.latin-Y3IVPL46.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Medium.vietnamese-PJV76O4P.woff2\",weight:\"500\"}]}];export const css=['.framer-etey2 .framer-styles-preset-1pnw8va:not(.rich-text-wrapper), .framer-etey2 .framer-styles-preset-1pnw8va.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: -0.5px; --framer-line-height: 150%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, #2c2c2c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-etey2\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (78454af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/jI3fVYZEgzSuOBF0emVL/8EWxSLRu6Aq2O6ALNSIk/ro7OPezbn.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/pbLmQrhYlWjMxVdYnnfE/jSXAA4GKH2AN9l79ZK3F/vayacA6eb.js\";import Button from\"https://framerusercontent.com/modules/9XGd0JvOja9CE8z1pUey/xDRWNIRGJOD3mB7sS3sV/HQy1toMAB.js\";const ButtonFonts=getFonts(Button);const cycleOrder=[\"SpHktBAn8\",\"jWADC4K2F\",\"MTo_rSZKj\"];const serializationHash=\"framer-lT7kW\";const variantClassNames={jWADC4K2F:\"framer-v-11e4fu7\",MTo_rSZKj:\"framer-v-10ak2yu\",SpHktBAn8:\"framer-v-75kh0l\"};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 transition2={delay:0,duration:.5,ease:[.45,0,0,1],type:\"tween\"};const transition3={delay:0,duration:.25,ease:[.12,.23,.5,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 Variants=motion(React.Fragment);const humanReadableVariantMap={\"Hamburger/Closed\":\"jWADC4K2F\",\"Hamburger/Opened\":\"MTo_rSZKj\",Desktop:\"SpHktBAn8\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"SpHktBAn8\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SpHktBAn8\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap6pw6r0=activeVariantCallback(async(...args)=>{setVariant(\"MTo_rSZKj\");});const onTap1vxod2t=activeVariantCallback(async(...args)=>{setVariant(\"jWADC4K2F\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"jWADC4K2F\",\"MTo_rSZKj\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({jWADC4K2F:{value:transition2},MTo_rSZKj:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-75kh0l\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"SpHktBAn8\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({jWADC4K2F:{\"data-framer-name\":\"Hamburger/Closed\"},MTo_rSZKj:{\"data-framer-name\":\"Hamburger/Opened\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15kw9q3\",\"data-border\":true,\"data-framer-name\":\"Menu Icon\",layoutDependency:layoutDependency,layoutId:\"r_j0B3uN_\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b70bda9a-0083-45a7-9cd0-4fff271102b2, rgb(230, 231, 234))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(4px)\",backgroundColor:\"rgba(255, 255, 255, 0.95)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,WebkitBackdropFilter:\"blur(4px)\"},variants:{jWADC4K2F:{backdropFilter:\"none\",backgroundColor:\"var(--token-5fbe4e9b-0fcd-4fae-9a6b-902ca1f1dae5, rgb(255, 255, 255))\",WebkitBackdropFilter:\"none\"},MTo_rSZKj:{backdropFilter:\"none\",backgroundColor:\"var(--token-5fbe4e9b-0fcd-4fae-9a6b-902ca1f1dae5, rgb(255, 255, 255))\",WebkitBackdropFilter:\"none\"}},...addPropertyOverrides({jWADC4K2F:{\"data-highlight\":true,onTap:onTap6pw6r0},MTo_rSZKj:{\"data-highlight\":true,onTap:onTap1vxod2t}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-h8n6yi\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"dYG2sM0pZ\",style:{backgroundColor:\"var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, rgb(26, 26, 26))\",borderBottomLeftRadius:99,borderBottomRightRadius:99,borderTopLeftRadius:99,borderTopRightRadius:99,rotate:0},variants:{MTo_rSZKj:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-a1an3d\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"zuAZxQoPo\",style:{backgroundColor:\"var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, rgb(26, 26, 26))\",borderBottomLeftRadius:99,borderBottomRightRadius:99,borderTopLeftRadius:99,borderTopRightRadius:99,rotate:0},variants:{MTo_rSZKj:{rotate:45}}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15klvy\",\"data-border\":true,\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"hJ4DszdyO\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b70bda9a-0083-45a7-9cd0-4fff271102b2, rgb(230, 231, 234))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-5fbe4e9b-0fcd-4fae-9a6b-902ca1f1dae5, rgb(255, 255, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,opacity:1},variants:{jWADC4K2F:{opacity:0}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y86x32\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"V87CcV2jJ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1pnw8va\",\"data-styles-preset\":\"vayacA6eb\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, rgb(44, 44, 44)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Home\"})})})}),className:\"framer-wxykua\",\"data-framer-name\":\"Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WUhEbLIxn\",style:{\"--extracted-r6o4lv\":\"var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, rgb(44, 44, 44))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1pnw8va\",\"data-styles-preset\":\"vayacA6eb\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, rgb(44, 44, 44)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"oa_L0Rq_9\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"About\"})})})}),className:\"framer-13dysdy\",\"data-framer-name\":\"Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uqVE255xC\",style:{\"--extracted-r6o4lv\":\"var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, rgb(44, 44, 44))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1pnw8va\",\"data-styles-preset\":\"vayacA6eb\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, rgb(44, 44, 44)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GQA1VRbDo\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Work\"})})})}),className:\"framer-cxklc3\",\"data-framer-name\":\"Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pkd95Viit\",style:{\"--extracted-r6o4lv\":\"var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, rgb(44, 44, 44))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1pnw8va\",\"data-styles-preset\":\"vayacA6eb\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, rgb(44, 44, 44)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":G97JU8jFJ\",webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Testimonials\"})})})}),className:\"framer-pjk2uq\",\"data-framer-name\":\"Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hQtdMfI1p\",style:{\"--extracted-r6o4lv\":\"var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, rgb(44, 44, 44))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-i26x4z-container\",layoutDependency:layoutDependency,layoutId:\"uG41lzxIB-container\",children:/*#__PURE__*/_jsx(Button,{G1qbEeU5V:true,H9HMPBD02:\"mailto:alex@visage.com\",height:\"100%\",id:\"uG41lzxIB\",layoutId:\"uG41lzxIB\",pAN0s57YM:\"Contact\",variant:\"PFb89MFp3\",width:\"100%\",...addPropertyOverrides({jWADC4K2F:{H9HMPBD02:\"mailto:alex@mail.com\"},MTo_rSZKj:{H9HMPBD02:\"mailto:alex@mail.com\"}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lT7kW.framer-1g8thuw, .framer-lT7kW .framer-1g8thuw { display: block; }\",\".framer-lT7kW.framer-75kh0l { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-lT7kW .framer-15kw9q3 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: hidden; position: relative; width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-lT7kW .framer-h8n6yi { flex: none; height: 2px; left: calc(50.00000000000002% - 18px / 2); overflow: visible; position: absolute; top: 20px; width: 18px; }\",\".framer-lT7kW .framer-a1an3d { bottom: 20px; flex: none; height: 2px; left: calc(50.00000000000002% - 18px / 2); overflow: visible; position: absolute; width: 18px; }\",\".framer-lT7kW .framer-15klvy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 24px 12px 24px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-lT7kW .framer-1y86x32 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-lT7kW .framer-wxykua, .framer-lT7kW .framer-13dysdy, .framer-lT7kW .framer-cxklc3, .framer-lT7kW .framer-pjk2uq { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-lT7kW .framer-i26x4z-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lT7kW.framer-75kh0l, .framer-lT7kW .framer-15klvy, .framer-lT7kW .framer-1y86x32 { gap: 0px; } .framer-lT7kW.framer-75kh0l > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-lT7kW.framer-75kh0l > :first-child { margin-top: 0px; } .framer-lT7kW.framer-75kh0l > :last-child { margin-bottom: 0px; } .framer-lT7kW .framer-15klvy > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-lT7kW .framer-15klvy > :first-child, .framer-lT7kW .framer-1y86x32 > :first-child { margin-left: 0px; } .framer-lT7kW .framer-15klvy > :last-child, .framer-lT7kW .framer-1y86x32 > :last-child { margin-right: 0px; } .framer-lT7kW .framer-1y86x32 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",\".framer-lT7kW.framer-v-11e4fu7.framer-75kh0l { gap: 16px; height: 48px; justify-content: flex-start; }\",\".framer-lT7kW.framer-v-11e4fu7 .framer-15kw9q3, .framer-lT7kW.framer-v-10ak2yu .framer-15kw9q3 { cursor: pointer; }\",\".framer-lT7kW.framer-v-11e4fu7 .framer-15klvy { bottom: -264px; flex-direction: column; padding: 24px; pointer-events: none; position: absolute; right: 0px; width: 168px; z-index: 1; }\",\".framer-lT7kW.framer-v-11e4fu7 .framer-1y86x32 { flex-direction: column; gap: 12px; width: 44px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lT7kW.framer-v-11e4fu7.framer-75kh0l, .framer-lT7kW.framer-v-11e4fu7 .framer-15klvy, .framer-lT7kW.framer-v-11e4fu7 .framer-1y86x32 { gap: 0px; } .framer-lT7kW.framer-v-11e4fu7.framer-75kh0l > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-lT7kW.framer-v-11e4fu7.framer-75kh0l > :first-child, .framer-lT7kW.framer-v-11e4fu7 .framer-15klvy > :first-child, .framer-lT7kW.framer-v-11e4fu7 .framer-1y86x32 > :first-child { margin-top: 0px; } .framer-lT7kW.framer-v-11e4fu7.framer-75kh0l > :last-child, .framer-lT7kW.framer-v-11e4fu7 .framer-15klvy > :last-child, .framer-lT7kW.framer-v-11e4fu7 .framer-1y86x32 > :last-child { margin-bottom: 0px; } .framer-lT7kW.framer-v-11e4fu7 .framer-15klvy > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-lT7kW.framer-v-11e4fu7 .framer-1y86x32 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-lT7kW.framer-v-10ak2yu.framer-75kh0l { gap: 16px; }\",\".framer-lT7kW.framer-v-10ak2yu .framer-h8n6yi { height: 2px; top: 23px; }\",\".framer-lT7kW.framer-v-10ak2yu .framer-a1an3d { bottom: 23px; height: 2px; }\",\".framer-lT7kW.framer-v-10ak2yu .framer-15klvy { flex-direction: column; padding: 24px; width: 168px; }\",\".framer-lT7kW.framer-v-10ak2yu .framer-1y86x32 { flex-direction: column; gap: 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lT7kW.framer-v-10ak2yu.framer-75kh0l, .framer-lT7kW.framer-v-10ak2yu .framer-15klvy, .framer-lT7kW.framer-v-10ak2yu .framer-1y86x32 { gap: 0px; } .framer-lT7kW.framer-v-10ak2yu.framer-75kh0l > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-lT7kW.framer-v-10ak2yu.framer-75kh0l > :first-child, .framer-lT7kW.framer-v-10ak2yu .framer-15klvy > :first-child, .framer-lT7kW.framer-v-10ak2yu .framer-1y86x32 > :first-child { margin-top: 0px; } .framer-lT7kW.framer-v-10ak2yu.framer-75kh0l > :last-child, .framer-lT7kW.framer-v-10ak2yu .framer-15klvy > :last-child, .framer-lT7kW.framer-v-10ak2yu .framer-1y86x32 > :last-child { margin-bottom: 0px; } .framer-lT7kW.framer-v-10ak2yu .framer-15klvy > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-lT7kW.framer-v-10ak2yu .framer-1y86x32 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-lT7kW[data-border=\"true\"]::after, .framer-lT7kW [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 48\n * @framerIntrinsicWidth 310.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"jWADC4K2F\":{\"layout\":[\"auto\",\"fixed\"]},\"MTo_rSZKj\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerq1cQZH5aS=withCSS(Component,css,\"framer-lT7kW\");export default Framerq1cQZH5aS;Framerq1cQZH5aS.displayName=\"Navigation/Menu\";Framerq1cQZH5aS.defaultProps={height:48,width:310.5};addPropertyControls(Framerq1cQZH5aS,{variant:{options:[\"SpHktBAn8\",\"jWADC4K2F\",\"MTo_rSZKj\"],optionTitles:[\"Desktop\",\"Hamburger/Closed\",\"Hamburger/Opened\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerq1cQZH5aS,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerq1cQZH5aS\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"310.5\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"jWADC4K2F\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"MTo_rSZKj\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"48\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./q1cQZH5aS.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Inter-500\",\"GF;Inter-700\"]);export const fonts=[{family:\"Inter\",moduleAsset:{localModuleIdentifier:\"local-module:css/jnQIXPCnK:default\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf\",weight:\"500\"},{family:\"Inter\",moduleAsset:{localModuleIdentifier:\"local-module:css/jnQIXPCnK:default\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf\",weight:\"700\"}];export const css=['.framer-cdoc1 .framer-styles-preset-ztszbv:not(.rich-text-wrapper), .framer-cdoc1 .framer-styles-preset-ztszbv.rich-text-wrapper h2 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -2.5px; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, #2c2c2c); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 767px) and (min-width: 480px) { .framer-cdoc1 .framer-styles-preset-ztszbv:not(.rich-text-wrapper), .framer-cdoc1 .framer-styles-preset-ztszbv.rich-text-wrapper h2 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -2px; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, #2c2c2c); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 479px) and (min-width: 0px) { .framer-cdoc1 .framer-styles-preset-ztszbv:not(.rich-text-wrapper), .framer-cdoc1 .framer-styles-preset-ztszbv.rich-text-wrapper h2 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -1.75px; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-769b2b36-b762-451a-9ad9-f333c17dfad0, #2c2c2c); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-cdoc1\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["fontStore", "fonts", "css", "className", "Clock", "props", "currentTime", "setCurrentTime", "ye", "ue", "timerID", "updateCurrentTime", "text", "ampmText", "hours", "minutes", "ampm", "seconds", "timeZoneAbbreviation", "part", "u", "addPropertyControls", "ControlType", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "FramerchBBeLxOO", "withCSS", "chBBeLxOO_default", "addPropertyControls", "ControlType", "addFonts", "IconFonts", "getFonts", "chBBeLxOO_default", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Link", "ComponentViewportProvider", "chBBeLxOO_default", "css", "FramerG8MYwMWFd", "withCSS", "G8MYwMWFd_default", "addFonts", "IconFonts", "ClockFonts", "getFonts", "Clock", "SocialLinksFonts", "G8MYwMWFd_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerdC5TX1xm7", "withCSS", "dC5TX1xm7_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "IconFonts", "getFonts", "chBBeLxOO_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "newTab", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "pAN0s57YM", "H9HMPBD02", "G1qbEeU5V", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "Link", "cx", "u", "RichText2", "css", "FramerHQy1toMAB", "withCSS", "HQy1toMAB_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "WHwBc38G2", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "Image2", "css", "FramerflWVZcVm8", "withCSS", "flWVZcVm8_default", "addPropertyControls", "ControlType", "addFonts", "LogoFonts", "getFonts", "flWVZcVm8_default", "ButtonFonts", "HQy1toMAB_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "router", "useRouter", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "css", "FramerOMi7rFr6t", "withCSS", "OMi7rFr6t_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "ButtonFonts", "getFonts", "HQy1toMAB_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap6pw6r0", "args", "onTap1vxod2t", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Link", "ComponentViewportProvider", "css", "Framerq1cQZH5aS", "withCSS", "q1cQZH5aS_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className"]
}
