{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js", "ssg:https://framerusercontent.com/modules/Ps7Hl98cVNbd4CvjCcLX/h56Q0E9JLSM1JZWAqAkr/JRsCseWjL.js", "ssg:https://framerusercontent.com/modules/QrVHRkPzJFMadNmYR081/eITA4bxTGfgRbH8gxzkR/zes_cOEW8.js", "ssg:https://framerusercontent.com/modules/hev5Icau5rKqor0XL9Zb/DlTIhiGsuega4ligBAr4/CAiChgF1B.js", "ssg:https://framerusercontent.com/modules/ArGb2h2ChmztssOH4BSK/LfPqvRxbcCfYmXizb4Ui/JRsCseWjL.js", "ssg:https://framerusercontent.com/modules/rWs6HdTj6Ww2cFG0DHtV/osWRh7JcrC0dsULnTdmE/zes_cOEW8.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/D4TWeLfcxT6Tysr2BlYg/iZjmqdxVx1EOiM3k1FaW/useOnNavigationTargetChange.js", "ssg:https://framerusercontent.com/modules/eMBrwoqQK7h6mEeGQUH8/GuplvPJVjmxpk9zqOTcb/isBrowser.js", "ssg:https://framerusercontent.com/modules/cuQH4dmpDnV8YK1mSgQX/KqRXqunFjE6ufhpc7ZRu/useFontControls.js", "ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js", "ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/OobIpExjjda7YDjHO9YN/SVG.js", "ssg:https://framerusercontent.com/modules/oJtDeJEWCv9KZhrimlhH/27E60wwerKRRXHVWvujY/Ez4EYNpXj.js", "ssg:https://framerusercontent.com/modules/y5380ewLWvo4eXoMWdVE/6d4PJguaMGZTKJAgy2IP/Of9MXqHn4.js", "ssg:https://framerusercontent.com/modules/c86TfpBIMzW94pUlJDta/SCq97LWIu8UfudxvOWad/ufUr6fzRr.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,useLocaleCode}from\"framer\";import{startTransition,useCallback,useEffect,useRef,useState}from\"react\";const fontStack=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;function formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showMinutes,showSeconds},timeFormat,monthFormat,localCode){const date=new Date;const onlyYearIsShown=!showWeekday&&!showMonth&&showYear;switch(outputType){case\"date\":return new Intl.DateTimeFormat(localCode,{weekday:showWeekday?\"long\":undefined,day:onlyYearIsShown?undefined:\"numeric\",month:showMonth?monthFormat:undefined,year:showYear?\"numeric\":undefined}).format(date);case\"time\":return new Intl.DateTimeFormat(localCode,{hour:\"numeric\",minute:showMinutes?\"numeric\":undefined,second:showSeconds&&showMinutes?\"numeric\":undefined,hour12:timeFormat===\"12h\"}).format(date);default:return new Intl.DateTimeFormat(localCode).format(date);}}const defaultProps={height:20,width:140,outputType:\"time\",color:\"#999\",timeFormat:\"24h\",showYear:true,showMonth:true,showWeekday:true,showMinutes:true,showSeconds:true,monthFormat:\"long\",alignment:\"center\"};/**\n * TIME AND DATE\n * FORKED FROM PROTOTYPING\n *\n * @framerIntrinsicWidth 140\n * @framerIntrinsicHeight 20\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export function Time(props){const mergedProps={...defaultProps,...props};const{outputType,timeFormat,showYear,showMonth,showWeekday,// showHours,\nshowMinutes,showSeconds,monthFormat,color,font,tabularFont}=mergedProps;const localCode=useLocaleCode();const getTextContent=useCallback(()=>formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,// showHours,\n    showMinutes,showSeconds},timeFormat,monthFormat,localCode),[localCode,monthFormat,outputType,showMinutes,showMonth,showSeconds,showWeekday,showYear,timeFormat]);const timeoutRef=useRef()// FIXME: With React 19, we can remove this and return a cleanup from the ref callback\n;const updateCountdown=useCallback(node=>{if(node===null){// React calls w/ `null` on unmount or if the ref function changes.\nclearTimeout(timeoutRef.current);return;}let prev;const tick=()=>{const date=new Date;const next=new Date().setSeconds(date.getSeconds()+1,0)-+date;timeoutRef.current=setTimeout(tick,next);const textContent=getTextContent();if(prev!==textContent){node.textContent=textContent;prev=textContent;}};tick();},[getTextContent]);const[visible,setIsVisible]=useState(false);const isCanvas=RenderTarget.current()===RenderTarget.canvas;useEffect(()=>{startTransition(()=>setIsVisible(true));// Don\u2019t want real time on Canvas\nif(isCanvas)return;},[isCanvas]);return /*#__PURE__*/_jsx(\"p\",{suppressHydrationWarning:true,style:{margin:0,padding:0,color,fontFamily:fontStack,fontWeight:500,fontSize:16,lineHeight:1,visibility:visible?\"visible\":\"hidden\",...font,fontVariantNumeric:tabularFont?\"tabular-nums\":\"normal\",whiteSpace:\"nowrap\"},ref:isCanvas?undefined:updateCountdown,children:getTextContent()});}Time.displayName=\"Time & Date\";addPropertyControls(Time,{outputType:{title:\"Type\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"date\",\"time\"],optionTitles:[\"Date\",\"Time\"],defaultValue:defaultProps.outputType},showWeekday:{title:\"Day\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showWeekday,hidden:props=>props.outputType!==\"date\"},showMonth:{title:\"Month\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showMonth,hidden:props=>props.outputType!==\"date\"},monthFormat:{title:\"Format\",type:ControlType.Enum,options:[\"short\",\"long\",\"numeric\"],optionTitles:[\"Short\",\"Long\",\"Numeric\"],defaultValue:defaultProps.monthFormat,hidden:props=>props.outputType!==\"date\"||!props.showMonth},showYear:{title:\"Year\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showYear,hidden:props=>props.outputType!==\"date\"},timeFormat:{title:\"Format\",type:ControlType.Enum,options:[\"12h\",\"24h\"],optionTitles:[\"12h\",\"24h\"],displaySegmentedControl:true,defaultValue:defaultProps.timeFormat,hidden:props=>props.outputType!==\"time\"},// showHours: {\n//     title: \"Hours\",\n//     type: ControlType.Boolean,\n//     enabledTitle: \"Show\",\n//     disabledTitle: \"Hide\",\n//     defaultValue: defaultProps.showHours,\n//     hidden: (props) => props.outputType !== \"time\",\n// },\nshowMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showMinutes,hidden:props=>props.outputType!==\"time\"},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showSeconds,hidden:props=>props.outputType!==\"time\"||!props.showMinutes},font:{type:ControlType.Font,controls:\"extended\"},tabularFont:{title:\"Tabular\",type:ControlType.Boolean,defaultValue:true},color:{type:ControlType.Color,defaultValue:defaultProps.color}});\nexport const __FramerMetadata__ = {\"exports\":{\"Time\":{\"type\":\"reactComponent\",\"name\":\"Time\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicWidth\":\"140\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Time.map", "// Generated by Framer (37fb21e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Azeret Mono-500\",\"GF;Azeret Mono-700\",\"GF;Azeret Mono-700italic\",\"GF;Azeret Mono-500italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Azeret Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfrvVh17aa-5s3AA.woff2\",weight:\"500\"},{family:\"Azeret Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfe_Jh17aa-5s3AA.woff2\",weight:\"700\"},{family:\"Azeret Mono\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZulryb2Z4nAN7J.woff2\",weight:\"700\"},{family:\"Azeret Mono\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLa7kbyb2Z4nAN7J.woff2\",weight:\"500\"}]}];export const css=['.framer-eo2br .framer-styles-preset-19bix1m:not(.rich-text-wrapper), .framer-eo2br .framer-styles-preset-19bix1m.rich-text-wrapper p { --framer-font-family: \"Azeret Mono\", monospace; --framer-font-family-bold: \"Azeret Mono\", monospace; --framer-font-family-bold-italic: \"Azeret Mono\", monospace; --framer-font-family-italic: \"Azeret Mono\", monospace; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.01em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1919px) and (min-width: 1760px) { .framer-eo2br .framer-styles-preset-19bix1m:not(.rich-text-wrapper), .framer-eo2br .framer-styles-preset-19bix1m.rich-text-wrapper p { --framer-font-family: \"Azeret Mono\", monospace; --framer-font-family-bold: \"Azeret Mono\", monospace; --framer-font-family-bold-italic: \"Azeret Mono\", monospace; --framer-font-family-italic: \"Azeret Mono\", monospace; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.01em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1759px) and (min-width: 1280px) { .framer-eo2br .framer-styles-preset-19bix1m:not(.rich-text-wrapper), .framer-eo2br .framer-styles-preset-19bix1m.rich-text-wrapper p { --framer-font-family: \"Azeret Mono\", monospace; --framer-font-family-bold: \"Azeret Mono\", monospace; --framer-font-family-bold-italic: \"Azeret Mono\", monospace; --framer-font-family-italic: \"Azeret Mono\", monospace; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.01em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1279px) and (min-width: 810px) { .framer-eo2br .framer-styles-preset-19bix1m:not(.rich-text-wrapper), .framer-eo2br .framer-styles-preset-19bix1m.rich-text-wrapper p { --framer-font-family: \"Azeret Mono\", monospace; --framer-font-family-bold: \"Azeret Mono\", monospace; --framer-font-family-bold-italic: \"Azeret Mono\", monospace; --framer-font-family-italic: \"Azeret Mono\", monospace; --framer-font-open-type-features: normal; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.01em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-eo2br .framer-styles-preset-19bix1m:not(.rich-text-wrapper), .framer-eo2br .framer-styles-preset-19bix1m.rich-text-wrapper p { --framer-font-family: \"Azeret Mono\", monospace; --framer-font-family-bold: \"Azeret Mono\", monospace; --framer-font-family-bold-italic: \"Azeret Mono\", monospace; --framer-font-family-italic: \"Azeret Mono\", monospace; --framer-font-open-type-features: normal; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.01em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-eo2br\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (37fb21e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Azeret Mono-500\",\"GF;Azeret Mono-700\",\"GF;Azeret Mono-700italic\",\"GF;Azeret Mono-500italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Azeret Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfrvVh17aa-5s3AA.woff2\",weight:\"500\"},{family:\"Azeret Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfe_Jh17aa-5s3AA.woff2\",weight:\"700\"},{family:\"Azeret Mono\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZulryb2Z4nAN7J.woff2\",weight:\"700\"},{family:\"Azeret Mono\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLa7kbyb2Z4nAN7J.woff2\",weight:\"500\"}]}];export const css=['.framer-bOO0N .framer-styles-preset-l17kfr:not(.rich-text-wrapper), .framer-bOO0N .framer-styles-preset-l17kfr.rich-text-wrapper p { --framer-font-family: \"Azeret Mono\", monospace; --framer-font-family-bold: \"Azeret Mono\", monospace; --framer-font-family-bold-italic: \"Azeret Mono\", monospace; --framer-font-family-italic: \"Azeret Mono\", monospace; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.01em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1919px) and (min-width: 1760px) { .framer-bOO0N .framer-styles-preset-l17kfr:not(.rich-text-wrapper), .framer-bOO0N .framer-styles-preset-l17kfr.rich-text-wrapper p { --framer-font-family: \"Azeret Mono\", monospace; --framer-font-family-bold: \"Azeret Mono\", monospace; --framer-font-family-bold-italic: \"Azeret Mono\", monospace; --framer-font-family-italic: \"Azeret Mono\", monospace; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.01em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1759px) and (min-width: 1280px) { .framer-bOO0N .framer-styles-preset-l17kfr:not(.rich-text-wrapper), .framer-bOO0N .framer-styles-preset-l17kfr.rich-text-wrapper p { --framer-font-family: \"Azeret Mono\", monospace; --framer-font-family-bold: \"Azeret Mono\", monospace; --framer-font-family-bold-italic: \"Azeret Mono\", monospace; --framer-font-family-italic: \"Azeret Mono\", monospace; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.01em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1279px) and (min-width: 810px) { .framer-bOO0N .framer-styles-preset-l17kfr:not(.rich-text-wrapper), .framer-bOO0N .framer-styles-preset-l17kfr.rich-text-wrapper p { --framer-font-family: \"Azeret Mono\", monospace; --framer-font-family-bold: \"Azeret Mono\", monospace; --framer-font-family-bold-italic: \"Azeret Mono\", monospace; --framer-font-family-italic: \"Azeret Mono\", monospace; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.01em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-bOO0N .framer-styles-preset-l17kfr:not(.rich-text-wrapper), .framer-bOO0N .framer-styles-preset-l17kfr.rich-text-wrapper p { --framer-font-family: \"Azeret Mono\", monospace; --framer-font-family-bold: \"Azeret Mono\", monospace; --framer-font-family-bold-italic: \"Azeret Mono\", monospace; --framer-font-family-italic: \"Azeret Mono\", monospace; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.01em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-bOO0N\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6d7081c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/Ps7Hl98cVNbd4CvjCcLX/h56Q0E9JLSM1JZWAqAkr/JRsCseWjL.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/QrVHRkPzJFMadNmYR081/eITA4bxTGfgRbH8gxzkR/zes_cOEW8.js\";const enabledGestures={gEvpeYAP2:{hover:true},h0NSr5tNe:{hover:true},i6ZpN2mT7:{hover:true},ib31pn1Yh:{hover:true},MqhkOFVTK:{hover:true},rvOZIYzF7:{hover:true}};const cycleOrder=[\"rvOZIYzF7\",\"i6ZpN2mT7\",\"h0NSr5tNe\",\"MqhkOFVTK\",\"p6sHMJ39x\",\"dd_HuWYjt\",\"gEvpeYAP2\",\"ib31pn1Yh\",\"e4S2lOL3l\",\"aItBnXi0M\"];const serializationHash=\"framer-Vg7wY\";const variantClassNames={aItBnXi0M:\"framer-v-as5iez\",dd_HuWYjt:\"framer-v-1ldftri\",e4S2lOL3l:\"framer-v-gt6ye2\",gEvpeYAP2:\"framer-v-12d2wdi\",h0NSr5tNe:\"framer-v-wt1p8c\",i6ZpN2mT7:\"framer-v-1tkns5c\",ib31pn1Yh:\"framer-v-js53wv\",MqhkOFVTK:\"framer-v-txpecn\",p6sHMJ39x:\"framer-v-1030359\",rvOZIYzF7:\"framer-v-1ossz9a\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.6,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={\"Button (L) dark gray mode\":\"ib31pn1Yh\",\"Button (L) dark mode\":\"i6ZpN2mT7\",\"Button (L) gray mode\":\"gEvpeYAP2\",\"Button (L) light mode\":\"rvOZIYzF7\",\"Button (M) dark mode\":\"MqhkOFVTK\",\"Button (M) light mode\":\"h0NSr5tNe\",\"Button (S) dark gray\":\"aItBnXi0M\",\"Button (S) dark mode\":\"p6sHMJ39x\",\"Button (S) gray\":\"e4S2lOL3l\",\"Button (S) light mode\":\"dd_HuWYjt\"};const getProps=({click,height,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,E0qxfmqZ9:click!==null&&click!==void 0?click:props.E0qxfmqZ9,Po2X5ZIUL:(_ref=title!==null&&title!==void 0?title:props.Po2X5ZIUL)!==null&&_ref!==void 0?_ref:\"Home\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"rvOZIYzF7\",yKSXSTalC:link!==null&&link!==void 0?link:props.yKSXSTalC};};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,Po2X5ZIUL,yKSXSTalC,E0qxfmqZ9,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rvOZIYzF7\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1k83j6g=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(E0qxfmqZ9){const res=await E0qxfmqZ9(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"p6sHMJ39x\",\"dd_HuWYjt\",\"e4S2lOL3l\",\"aItBnXi0M\"].includes(baseVariant))return false;return true;};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,children:/*#__PURE__*/_jsx(Link,{href:yKSXSTalC,nodeId:\"rvOZIYzF7\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1ossz9a\",className,classNames)} framer-clik4f`,\"data-framer-name\":\"Button (L) light mode\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"rvOZIYzF7\",onTap:onTap1k83j6g,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"gEvpeYAP2-hover\":{\"data-framer-name\":undefined},\"h0NSr5tNe-hover\":{\"data-framer-name\":undefined},\"i6ZpN2mT7-hover\":{\"data-framer-name\":undefined},\"ib31pn1Yh-hover\":{\"data-framer-name\":undefined},\"MqhkOFVTK-hover\":{\"data-framer-name\":undefined},\"rvOZIYzF7-hover\":{\"data-framer-name\":undefined},aItBnXi0M:{\"data-framer-name\":\"Button (S) dark gray\"},dd_HuWYjt:{\"data-framer-name\":\"Button (S) light mode\"},e4S2lOL3l:{\"data-framer-name\":\"Button (S) gray\"},gEvpeYAP2:{\"data-framer-name\":\"Button (L) gray mode\"},h0NSr5tNe:{\"data-framer-name\":\"Button (M) light mode\"},i6ZpN2mT7:{\"data-framer-name\":\"Button (L) dark mode\"},ib31pn1Yh:{\"data-framer-name\":\"Button (L) dark gray mode\"},MqhkOFVTK:{\"data-framer-name\":\"Button (M) dark mode\"},p6sHMJ39x:{\"data-framer-name\":\"Button (S) dark mode\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l17kfr\",\"data-styles-preset\":\"zes_cOEW8\",children:\"Home\"})}),className:\"framer-18k9023\",\"data-framer-name\":\"Home\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZLYO95u26\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:Po2X5ZIUL,variants:{aItBnXi0M:{\"--extracted-r6o4lv\":\"var(--token-d6baa9f9-d5cc-4e7b-8075-8c2a95119769, rgb(158, 158, 158))\"},dd_HuWYjt:{\"--extracted-r6o4lv\":\"var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, rgb(0, 0, 0))\"},e4S2lOL3l:{\"--extracted-r6o4lv\":\"var(--token-9cc0ce7c-c14e-490b-8ed7-789096bac3a8, rgb(201, 201, 201))\"},gEvpeYAP2:{\"--extracted-r6o4lv\":\"var(--token-9cc0ce7c-c14e-490b-8ed7-789096bac3a8, rgb(201, 201, 201))\"},i6ZpN2mT7:{\"--extracted-r6o4lv\":\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\"},ib31pn1Yh:{\"--extracted-r6o4lv\":\"var(--token-d6baa9f9-d5cc-4e7b-8075-8c2a95119769, rgb(158, 158, 158))\"},MqhkOFVTK:{\"--extracted-r6o4lv\":\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\"},p6sHMJ39x:{\"--extracted-r6o4lv\":\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aItBnXi0M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d6baa9f9-d5cc-4e7b-8075-8c2a95119769, rgb(158, 158, 158)))\"},children:\"Home\"})})},dd_HuWYjt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, rgb(0, 0, 0)))\"},children:\"Home\"})})},e4S2lOL3l:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9cc0ce7c-c14e-490b-8ed7-789096bac3a8, rgb(201, 201, 201)))\"},children:\"Home\"})})},gEvpeYAP2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l17kfr\",\"data-styles-preset\":\"zes_cOEW8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9cc0ce7c-c14e-490b-8ed7-789096bac3a8, rgb(201, 201, 201)))\"},children:\"Home\"})})},h0NSr5tNe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",children:\"Home\"})})},i6ZpN2mT7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l17kfr\",\"data-styles-preset\":\"zes_cOEW8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Home\"})})},ib31pn1Yh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l17kfr\",\"data-styles-preset\":\"zes_cOEW8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d6baa9f9-d5cc-4e7b-8075-8c2a95119769, rgb(158, 158, 158)))\"},children:\"Home\"})})},MqhkOFVTK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Home\"})})},p6sHMJ39x:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Home\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l17kfr\",\"data-styles-preset\":\"zes_cOEW8\",children:\"Home\"})}),className:\"framer-ltay0p\",\"data-framer-name\":\"Home\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qB0uvcUnh\",style:{\"--framer-paragraph-spacing\":\"0px\",rotateX:90},text:Po2X5ZIUL,variants:{\"gEvpeYAP2-hover\":{rotateX:0},\"h0NSr5tNe-hover\":{\"--extracted-r6o4lv\":\"var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, rgb(0, 0, 0))\",rotateX:0},\"i6ZpN2mT7-hover\":{rotateX:0},\"ib31pn1Yh-hover\":{rotateX:0},\"MqhkOFVTK-hover\":{rotateX:0},\"rvOZIYzF7-hover\":{rotateX:0},gEvpeYAP2:{\"--extracted-r6o4lv\":\"var(--token-9cc0ce7c-c14e-490b-8ed7-789096bac3a8, rgb(201, 201, 201))\",rotateX:0},h0NSr5tNe:{rotateX:0},i6ZpN2mT7:{\"--extracted-r6o4lv\":\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\"},ib31pn1Yh:{\"--extracted-r6o4lv\":\"var(--token-d6baa9f9-d5cc-4e7b-8075-8c2a95119769, rgb(158, 158, 158))\",rotateX:0},MqhkOFVTK:{\"--extracted-r6o4lv\":\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\",rotateX:0}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"h0NSr5tNe-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, rgb(0, 0, 0)))\"},children:\"Home\"})})},gEvpeYAP2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l17kfr\",\"data-styles-preset\":\"zes_cOEW8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9cc0ce7c-c14e-490b-8ed7-789096bac3a8, rgb(201, 201, 201)))\"},children:\"Home\"})})},h0NSr5tNe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",children:\"Home\"})})},i6ZpN2mT7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l17kfr\",\"data-styles-preset\":\"zes_cOEW8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Home\"})})},ib31pn1Yh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l17kfr\",\"data-styles-preset\":\"zes_cOEW8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d6baa9f9-d5cc-4e7b-8075-8c2a95119769, rgb(158, 158, 158)))\"},children:\"Home\"})})},MqhkOFVTK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Home\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Vg7wY.framer-clik4f, .framer-Vg7wY .framer-clik4f { display: block; }\",\".framer-Vg7wY.framer-1ossz9a { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 20px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Vg7wY .framer-18k9023, .framer-Vg7wY .framer-ltay0p { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Vg7wY.framer-1ossz9a { gap: 0px; } .framer-Vg7wY.framer-1ossz9a > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Vg7wY.framer-1ossz9a > :first-child { margin-top: 0px; } .framer-Vg7wY.framer-1ossz9a > :last-child { margin-bottom: 0px; } }\",\".framer-Vg7wY.framer-v-wt1p8c.framer-1ossz9a, .framer-Vg7wY.framer-v-txpecn.framer-1ossz9a, .framer-Vg7wY.framer-v-gt6ye2.framer-1ossz9a, .framer-Vg7wY.framer-v-as5iez.framer-1ossz9a { height: 18px; }\",\".framer-Vg7wY.framer-v-1030359.framer-1ossz9a, .framer-Vg7wY.framer-v-1ldftri.framer-1ossz9a { height: min-content; }\",\".framer-Vg7wY.framer-v-1ossz9a.hover.framer-1ossz9a, .framer-Vg7wY.framer-v-1tkns5c.hover.framer-1ossz9a, .framer-Vg7wY.framer-v-wt1p8c.hover.framer-1ossz9a, .framer-Vg7wY.framer-v-txpecn.hover.framer-1ossz9a, .framer-Vg7wY.framer-v-12d2wdi.hover.framer-1ossz9a, .framer-Vg7wY.framer-v-js53wv.hover.framer-1ossz9a { justify-content: flex-end; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 41\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"i6ZpN2mT7\":{\"layout\":[\"auto\",\"fixed\"]},\"h0NSr5tNe\":{\"layout\":[\"auto\",\"fixed\"]},\"MqhkOFVTK\":{\"layout\":[\"auto\",\"fixed\"]},\"p6sHMJ39x\":{\"layout\":[\"auto\",\"auto\"]},\"dd_HuWYjt\":{\"layout\":[\"auto\",\"auto\"]},\"gEvpeYAP2\":{\"layout\":[\"auto\",\"fixed\"]},\"ib31pn1Yh\":{\"layout\":[\"auto\",\"fixed\"]},\"e4S2lOL3l\":{\"layout\":[\"auto\",\"fixed\"]},\"aItBnXi0M\":{\"layout\":[\"auto\",\"fixed\"]},\"zOvgn19P5\":{\"layout\":[\"auto\",\"fixed\"]},\"t9xdXzniV\":{\"layout\":[\"auto\",\"fixed\"]},\"j9G8igZ54\":{\"layout\":[\"auto\",\"fixed\"]},\"EkmZhU_Ww\":{\"layout\":[\"auto\",\"fixed\"]},\"BOXpTUmrX\":{\"layout\":[\"auto\",\"fixed\"]},\"x6MXv3Fse\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"Po2X5ZIUL\":\"title\",\"yKSXSTalC\":\"link\",\"E0qxfmqZ9\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCAiChgF1B=withCSS(Component,css,\"framer-Vg7wY\");export default FramerCAiChgF1B;FramerCAiChgF1B.displayName=\"Button/Button\";FramerCAiChgF1B.defaultProps={height:20,width:41};addPropertyControls(FramerCAiChgF1B,{variant:{options:[\"rvOZIYzF7\",\"i6ZpN2mT7\",\"h0NSr5tNe\",\"MqhkOFVTK\",\"p6sHMJ39x\",\"dd_HuWYjt\",\"gEvpeYAP2\",\"ib31pn1Yh\",\"e4S2lOL3l\",\"aItBnXi0M\"],optionTitles:[\"Button (L) light mode\",\"Button (L) dark mode\",\"Button (M) light mode\",\"Button (M) dark mode\",\"Button (S) dark mode\",\"Button (S) light mode\",\"Button (L) gray mode\",\"Button (L) dark gray mode\",\"Button (S) gray\",\"Button (S) dark gray\"],title:\"Variant\",type:ControlType.Enum},Po2X5ZIUL:{defaultValue:\"Home\",displayTextArea:false,title:\"Title\",type:ControlType.String},yKSXSTalC:{title:\"Link\",type:ControlType.Link},E0qxfmqZ9:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerCAiChgF1B,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCAiChgF1B\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"i6ZpN2mT7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"h0NSr5tNe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"MqhkOFVTK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"p6sHMJ39x\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dd_HuWYjt\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gEvpeYAP2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"ib31pn1Yh\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"e4S2lOL3l\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"aItBnXi0M\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"zOvgn19P5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"t9xdXzniV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"j9G8igZ54\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"EkmZhU_Ww\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"BOXpTUmrX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"x6MXv3Fse\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"Po2X5ZIUL\\\":\\\"title\\\",\\\"yKSXSTalC\\\":\\\"link\\\",\\\"E0qxfmqZ9\\\":\\\"click\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"20\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"41\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CAiChgF1B.map", "// Generated by Framer (37fb21e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Azeret Mono-500\",\"GF;Azeret Mono-700\",\"GF;Azeret Mono-700italic\",\"GF;Azeret Mono-500italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Azeret Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfrvVh17aa-5s3AA.woff2\",weight:\"500\"},{family:\"Azeret Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfe_Jh17aa-5s3AA.woff2\",weight:\"700\"},{family:\"Azeret Mono\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZulryb2Z4nAN7J.woff2\",weight:\"700\"},{family:\"Azeret Mono\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLa7kbyb2Z4nAN7J.woff2\",weight:\"500\"}]}];export const css=['.framer-eo2br .framer-styles-preset-19bix1m:not(.rich-text-wrapper), .framer-eo2br .framer-styles-preset-19bix1m.rich-text-wrapper p { --framer-font-family: \"Azeret Mono\", monospace; --framer-font-family-bold: \"Azeret Mono\", monospace; --framer-font-family-bold-italic: \"Azeret Mono\", monospace; --framer-font-family-italic: \"Azeret Mono\", monospace; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.01em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1919px) and (min-width: 1760px) { .framer-eo2br .framer-styles-preset-19bix1m:not(.rich-text-wrapper), .framer-eo2br .framer-styles-preset-19bix1m.rich-text-wrapper p { --framer-font-family: \"Azeret Mono\", monospace; --framer-font-family-bold: \"Azeret Mono\", monospace; --framer-font-family-bold-italic: \"Azeret Mono\", monospace; --framer-font-family-italic: \"Azeret Mono\", monospace; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.01em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1759px) and (min-width: 1280px) { .framer-eo2br .framer-styles-preset-19bix1m:not(.rich-text-wrapper), .framer-eo2br .framer-styles-preset-19bix1m.rich-text-wrapper p { --framer-font-family: \"Azeret Mono\", monospace; --framer-font-family-bold: \"Azeret Mono\", monospace; --framer-font-family-bold-italic: \"Azeret Mono\", monospace; --framer-font-family-italic: \"Azeret Mono\", monospace; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.01em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1279px) and (min-width: 810px) { .framer-eo2br .framer-styles-preset-19bix1m:not(.rich-text-wrapper), .framer-eo2br .framer-styles-preset-19bix1m.rich-text-wrapper p { --framer-font-family: \"Azeret Mono\", monospace; --framer-font-family-bold: \"Azeret Mono\", monospace; --framer-font-family-bold-italic: \"Azeret Mono\", monospace; --framer-font-family-italic: \"Azeret Mono\", monospace; --framer-font-open-type-features: normal; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.01em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-eo2br .framer-styles-preset-19bix1m:not(.rich-text-wrapper), .framer-eo2br .framer-styles-preset-19bix1m.rich-text-wrapper p { --framer-font-family: \"Azeret Mono\", monospace; --framer-font-family-bold: \"Azeret Mono\", monospace; --framer-font-family-bold-italic: \"Azeret Mono\", monospace; --framer-font-family-italic: \"Azeret Mono\", monospace; --framer-font-open-type-features: normal; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.01em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-eo2br\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (37fb21e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Azeret Mono-500\",\"GF;Azeret Mono-700\",\"GF;Azeret Mono-700italic\",\"GF;Azeret Mono-500italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Azeret Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfrvVh17aa-5s3AA.woff2\",weight:\"500\"},{family:\"Azeret Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfe_Jh17aa-5s3AA.woff2\",weight:\"700\"},{family:\"Azeret Mono\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZulryb2Z4nAN7J.woff2\",weight:\"700\"},{family:\"Azeret Mono\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLa7kbyb2Z4nAN7J.woff2\",weight:\"500\"}]}];export const css=['.framer-bOO0N .framer-styles-preset-l17kfr:not(.rich-text-wrapper), .framer-bOO0N .framer-styles-preset-l17kfr.rich-text-wrapper p { --framer-font-family: \"Azeret Mono\", monospace; --framer-font-family-bold: \"Azeret Mono\", monospace; --framer-font-family-bold-italic: \"Azeret Mono\", monospace; --framer-font-family-italic: \"Azeret Mono\", monospace; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.01em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1919px) and (min-width: 1760px) { .framer-bOO0N .framer-styles-preset-l17kfr:not(.rich-text-wrapper), .framer-bOO0N .framer-styles-preset-l17kfr.rich-text-wrapper p { --framer-font-family: \"Azeret Mono\", monospace; --framer-font-family-bold: \"Azeret Mono\", monospace; --framer-font-family-bold-italic: \"Azeret Mono\", monospace; --framer-font-family-italic: \"Azeret Mono\", monospace; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.01em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1759px) and (min-width: 1280px) { .framer-bOO0N .framer-styles-preset-l17kfr:not(.rich-text-wrapper), .framer-bOO0N .framer-styles-preset-l17kfr.rich-text-wrapper p { --framer-font-family: \"Azeret Mono\", monospace; --framer-font-family-bold: \"Azeret Mono\", monospace; --framer-font-family-bold-italic: \"Azeret Mono\", monospace; --framer-font-family-italic: \"Azeret Mono\", monospace; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.01em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1279px) and (min-width: 810px) { .framer-bOO0N .framer-styles-preset-l17kfr:not(.rich-text-wrapper), .framer-bOO0N .framer-styles-preset-l17kfr.rich-text-wrapper p { --framer-font-family: \"Azeret Mono\", monospace; --framer-font-family-bold: \"Azeret Mono\", monospace; --framer-font-family-bold-italic: \"Azeret Mono\", monospace; --framer-font-family-italic: \"Azeret Mono\", monospace; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.01em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-bOO0N .framer-styles-preset-l17kfr:not(.rich-text-wrapper), .framer-bOO0N .framer-styles-preset-l17kfr.rich-text-wrapper p { --framer-font-family: \"Azeret Mono\", monospace; --framer-font-family-bold: \"Azeret Mono\", monospace; --framer-font-family-bold-italic: \"Azeret Mono\", monospace; --framer-font-family-italic: \"Azeret Mono\", monospace; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.01em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-bOO0N\";\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\"}}}", "import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useIsInCurrentNavigationTarget } from \"framer\";\nimport { useEffect } from \"react\";\nexport function useOnEnter(onEnter, enabled) {\n    return useOnSpecificTargetChange(true, onEnter, enabled);\n}\nexport function useOnExit(onExit, enabled) {\n    return useOnSpecificTargetChange(false, onExit, enabled);\n}\nfunction useOnSpecificTargetChange(goal, callback, enabled = true) {\n    const isInTarget = useIsInCurrentNavigationTarget();\n    useEffect(()=>{\n        if (enabled && isInTarget === goal) callback();\n    }, [\n        isInTarget\n    ]);\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useOnEnter\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnExit\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useOnNavigationTargetChange.map", "import { useMemo } from \"react\";\nexport const isBrowserSafari = ()=>{\n    if (typeof navigator !== `undefined`) {\n        const userAgent = navigator.userAgent.toLowerCase();\n        const isSafari = (userAgent.indexOf(\"safari\") > -1 || userAgent.indexOf(\"framermobile\") > -1 || userAgent.indexOf(\"framerx\") > -1) && userAgent.indexOf(\"chrome\") < 0;\n        return isSafari;\n    } else return false;\n};\nexport const useIsBrowserSafari = ()=>useMemo(()=>isBrowserSafari()\n    , [])\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./isBrowser.map", "// @ts-ignore\nimport{fontStore}from\"framer\";import{useEffect}from\"react\";import{fontStack}from\"https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js\";const fontWeights={100:\"Thin\",200:\"Extra-light\",300:\"Light\",400:\"Regular\",500:\"Medium\",600:\"Semi-bold\",700:\"Bold\",800:\"Extra-bold\",900:\"Black\"};export function useFontControls(props){const{fontFamily=\"Inter\",fontSize=16,fontWeight=400,font=false}=props;const fontWeightName=fontWeights[fontWeight];const customFontStack=`\"${fontFamily} ${fontWeightName}\", \"${fontFamily}\", ${fontStack}`;const fontFamilyStyle=fontFamily?{fontSize,fontWeight,fontFamily:customFontStack}:{fontSize,fontWeight};const fetchCustomFonts=async()=>{await fontStore.loadWebFontsFromSelectors([`CUSTOM;${fontFamily}`,`CUSTOM;${fontFamily} ${fontWeightName}`,`GF;${fontFamily}-${fontWeightName.toLowerCase()}`,]).catch(e=>console.error(e));};useEffect(()=>{if(font)fetchCustomFonts();},[font,fontFamily,fontWeight]);return fontFamilyStyle;}\nexport const __FramerMetadata__ = {\"exports\":{\"useFontControls\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useFontControls.map", "import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useCallback}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import{defaultEvents,usePadding,useRadius,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * CLIPBOARD\n *\n * @framerIntrinsicWidth 90\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Clipboard(props){const{label,content,fill,color,style,onClick,font,hoverOptions,...rest}=props;const deprecatedFont=useFontControls({fontWeight:500,...rest});const borderRadius=useRadius(props);const paddingValue=usePadding(props);const handleClick=useCallback(()=>{var ref;(ref=navigator.clipboard)===null||ref===void 0?void 0:ref.writeText(content);onClick===null||onClick===void 0?void 0:onClick();},[onClick,content]);return /*#__PURE__*/ _jsx(motion.button,{style:{border:\"none\",outline:\"none\",resize:\"none\",width:\"max-content\",wordBreak:\"break-word\",overflowWrap:\"break-word\",WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",letterSpacing:\"-0.2px\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",background:fill,borderRadius,cursor:\"pointer\",padding:paddingValue,color,...deprecatedFont,...font,...style},onClick:handleClick,...rest,whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:label});};addPropertyControls(Clipboard,{content:{type:ControlType.String,title:\"Content\",displayTextArea:true,description:\"When clicked, this content will be copied to the clipboard.\"},label:{type:ControlType.String,title:\"Label\",defaultValue:\"Copy to Clipboard\"},fill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#06F\"},color:{type:ControlType.Color,title:\"Text\",defaultValue:\"#fff\"},font:{// @ts-ignore - Internal\ntype:ControlType.Font,controls:\"extended\",defaultValue:{fontSize:16}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#0088FF\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}},padding:{type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0,title:\"Padding\",defaultValue:10},borderRadius:{title:\"Radius\",type:ControlType.FusedNumber,toggleKey:\"isMixedBorderRadius\",toggleTitles:[\"Radius\",\"Radius per corner\"],valueKeys:[\"topLeftRadius\",\"topRightRadius\",\"bottomRightRadius\",\"bottomLeftRadius\",],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0,defaultValue:50},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Clipboard\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicHeight\":\"50\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"90\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Clipboard.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function SVG(props){const[customSvgElement,setCustomSvgElement]=useState(null);useEffect(()=>{const svgContent=props.customSvgCode;processCustomSVGContent(svgContent);});const processCustomSVGContent=svgContent=>{const replacements=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']];const hasCustomStroke=svgContent.includes('stroke=\"');const hasCustomStrokeWidth=svgContent.includes('stroke-width=\"');const hasLineCap=svgContent.includes('stroke-linecap=\"');const hasLineJoin=svgContent.includes('stroke-linejoin=\"');if(svgContent.includes(\"<circle\")){// Find the circle element and update its fill attribute\nconst circleFillRegex=/<circle[^>]*fill=\"([^\"]*)\"/;const match=svgContent.match(circleFillRegex);if(match){// Update the fill attribute with the custom color\nconst updatedCircle=match[0].replace(match[1],props.customColor);svgContent=svgContent.replace(circleFillRegex,updatedCircle);}else{// If there is no fill attribute, add it with the custom color\nreplacements.push([/<circle/g,`<circle fill=\"${props.customColor}\"`]);}}if(hasCustomStroke){if(!hasLineCap){replacements.push([/<path/g,`<path stroke=\"${props.customColor}\"`]);}else{replacements.push([/<path/g,`<path stroke=\"${props.customColor}\" stroke-linecap=\"${props.lineCap}\"`]);}if(hasCustomStrokeWidth){replacements.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${props.customStrokeWidth}\"`]);}}else{replacements.push([/<path/g,`<path fill=\"${props.customColor}\"`]);}if(svgContent.includes('overflow=\"')){replacements.push([/overflow=\"[^\"]*\"/,`overflow=\"visible\"`]);}else{replacements.push([/<svg/,`<svg overflow=\"visible\"`]);}if(!hasLineJoin){replacements.push([/<path/g,`<path stroke-linejoin=\"${props.lineJoin}\"`]);}else{replacements.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${props.lineJoin}\"`]);}replacements.forEach(([regex,replacement])=>{svgContent=svgContent.replace(regex,replacement);});setCustomSvgElement(svgContent);};const customContainerStyle={padding:`${props.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:customSvgElement},style:customContainerStyle});}SVG.defaultProps={customSvgCode:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_967_124)\"> <path d=\"M18 6.09674C18 6.0348 18.0246 5.97539 18.0684 5.93159L23.6013 0.398708C23.7484 0.251575 24 0.35578 24 0.563858V11.9033C24 11.9652 23.9754 12.0246 23.9316 12.0684L18 18V6.09674Z\" fill=\"white\"/> <path d=\"M6 18V6.56386C6 6.35578 5.74843 6.25158 5.60129 6.39871L0.0684074 11.9316C0.0246069 11.9754 0 12.0348 0 12.0967V23.7664C0 23.8954 0.104567 24 0.233557 24H11.9033C11.9652 24 12.0246 23.9754 12.0684 23.9316L18 18H6Z\" fill=\"white\"/> </g> <defs> <clipPath id=\"clip0_967_124\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>`,customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\"};addPropertyControls(SVG,{customSvgCode:{type:ControlType.String,title:\"SVG Code\",displayTextArea:false},customColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"},customPadding:{type:ControlType.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:true,description:\"More components at [Framer University](https://frameruni.link/cc).\"},customStrokeWidth:{type:ControlType.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:true,hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineCap:{type:ControlType.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineJoin:{type:ControlType.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:props=>!props.customSvgCode.includes('stroke=\"')}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"24\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG.map", "// Generated by Framer (f082bd6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Clipboard from\"https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/OobIpExjjda7YDjHO9YN/SVG.js\";const SVGFonts=getFonts(SVG);const ClipboardFonts=getFonts(Clipboard);const enabledGestures={GF_EU8Hdz:{hover:true}};const cycleOrder=[\"GF_EU8Hdz\",\"Dpdu0GUZ9\",\"PcMiSDd5r\",\"ZnsKiAjcR\"];const serializationHash=\"framer-uFEJG\";const variantClassNames={Dpdu0GUZ9:\"framer-v-103bohn\",GF_EU8Hdz:\"framer-v-we3zge\",PcMiSDd5r:\"framer-v-wysqve\",ZnsKiAjcR:\"framer-v-1yydc5r\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:45,delay:0,mass:1,stiffness:600,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Copied mobile\":\"ZnsKiAjcR\",Copied:\"Dpdu0GUZ9\",Desctop:\"GF_EU8Hdz\",Mobile:\"PcMiSDd5r\"};const getProps=({click,clipboardContent,height,iconCopied,icons,id,labelCopied,labelCopy,width,...props})=>{return{...props,bPCJyrIbK:iconCopied??props.bPCJyrIbK??'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M3 15L9.29412 20L21 4\" stroke=\"black\" stroke-width=\"2\" stroke-linecap=\"square\"/> </svg>',DSjhwwbwG:click??props.DSjhwwbwG,PbW7K4Unr:icons??props.PbW7K4Unr??\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",qIDNNRI0q:clipboardContent??props.qIDNNRI0q??\"Copied text.\",rIGEnoYqD:labelCopied??props.rIGEnoYqD??\"Copied\",variant:humanReadableVariantMap[props.variant]??props.variant??\"GF_EU8Hdz\",zhU3xY_Ux:labelCopy??props.zhU3xY_Ux??\"Copy component\"};};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,zhU3xY_Ux,bPCJyrIbK,rIGEnoYqD,PbW7K4Unr,qIDNNRI0q,DSjhwwbwG,aCeOAHQBLTNRZ_28SA,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"GF_EU8Hdz\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1yktaqc=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(DSjhwwbwG){const res=await DSjhwwbwG(...args);if(res===false)return false;}setVariant(\"Dpdu0GUZ9\");});const onTapvtcpez=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(DSjhwwbwG){const res=await DSjhwwbwG(...args);if(res===false)return false;}});const onAppeare8mvik=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"GF_EU8Hdz\"),1500);});const onTapagiu4=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(DSjhwwbwG){const res=await DSjhwwbwG(...args);if(res===false)return false;}setVariant(\"ZnsKiAjcR\");});const onAppear5m9ama=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"PcMiSDd5r\"),1500);});useOnVariantChange(baseVariant,{Dpdu0GUZ9:onAppeare8mvik,ZnsKiAjcR:onAppear5m9ama});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"Dpdu0GUZ9\",\"ZnsKiAjcR\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-we3zge\",className,classNames),\"data-framer-name\":\"Desctop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"GF_EU8Hdz\",onTap:onTap1yktaqc,ref:ref??ref1,style:{...style},...addPropertyOverrides({\"GF_EU8Hdz-hover\":{\"data-framer-name\":undefined},Dpdu0GUZ9:{\"data-framer-name\":\"Copied\",onTap:onTapvtcpez},PcMiSDd5r:{\"data-framer-name\":\"Mobile\",onTap:onTapagiu4},ZnsKiAjcR:{\"data-framer-name\":\"Copied mobile\",onTap:onTapvtcpez}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e5iamm\",\"data-framer-name\":\"Content - Default\",layoutDependency:layoutDependency,layoutId:\"bTScR3DYC\",style:{filter:\"none\",opacity:1,scale:1,WebkitFilter:\"none\"},variants:{\"GF_EU8Hdz-hover\":{filter:\"none\",opacity:1,scale:1,WebkitFilter:\"none\"},Dpdu0GUZ9:{filter:\"blur(4px)\",opacity:0,scale:1.2,WebkitFilter:\"blur(4px)\"},PcMiSDd5r:{filter:\"none\",opacity:1,scale:1,WebkitFilter:\"none\"},ZnsKiAjcR:{filter:\"blur(4px)\",opacity:0,scale:1.2,WebkitFilter:\"blur(4px)\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tNjAw\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Copy component\"})}),className:\"framer-1bdoqjh\",fonts:[\"GF;Azeret Mono-600\"],layoutDependency:layoutDependency,layoutId:\"aV2KFdXNH\",style:{\"--extracted-1eung3n\":\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:zhU3xY_Ux,variants:{PcMiSDd5r:{\"--extracted-r6o4lv\":\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({PcMiSDd5r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tNTAw\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Copy component\"})}),fonts:[\"GF;Azeret Mono-500\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-211sq0\",\"data-framer-name\":\"Content - Copied\",layoutDependency:layoutDependency,layoutId:\"og0JtmYoz\",style:{filter:\"blur(4px)\",opacity:0,scale:.6,WebkitFilter:\"blur(4px)\"},transformTemplate:transformTemplate1,variants:{Dpdu0GUZ9:{filter:\"blur(0px)\",opacity:1,scale:1,WebkitFilter:\"blur(0px)\"},ZnsKiAjcR:{filter:\"blur(0px)\",opacity:1,scale:1,WebkitFilter:\"blur(0px)\"}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1le440g-container\",layoutDependency:layoutDependency,layoutId:\"b9507HIIo-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:PbW7K4Unr,customPadding:0,customStrokeWidth:2,customSvgCode:bPCJyrIbK,height:\"100%\",id:\"b9507HIIo\",layoutId:\"b9507HIIo\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({Dpdu0GUZ9:{customColor:\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\",customStrokeWidth:4},ZnsKiAjcR:{customColor:\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\",customStrokeWidth:4}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-aCeOAHQBL-TNRZ_28SA))\"},children:\"Copied\"})}),className:\"framer-18b6u09\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"MoED1MgXr\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-aCeOAHQBL-TNRZ_28SA)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-aCeOAHQBL-TNRZ_28SA\":aCeOAHQBLTNRZ_28SA},text:rIGEnoYqD,variants:{Dpdu0GUZ9:{\"--extracted-1eung3n\":\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\"},ZnsKiAjcR:{\"--extracted-r6o4lv\":\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Dpdu0GUZ9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tNjAw\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Copied\"})}),fonts:[\"GF;Azeret Mono-600\"]},ZnsKiAjcR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tNTAw\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Copied\"})}),fonts:[\"GF;Azeret Mono-500\"]}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-73why7-container\",layoutDependency:layoutDependency,layoutId:\"Lj9Z0UbHn-container\",children:/*#__PURE__*/_jsx(Clipboard,{borderRadius:100,bottomLeftRadius:100,bottomRightRadius:100,color:\"rgba(255, 255, 255, 0)\",content:qIDNNRI0q,fill:\"rgba(0, 102, 255, 0)\",font:{},height:\"100%\",id:\"Lj9Z0UbHn\",isMixedBorderRadius:false,label:\"\",layoutId:\"Lj9Z0UbHn\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:100,topRightRadius:100,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uFEJG.framer-1frtzul, .framer-uFEJG .framer-1frtzul { display: block; }\",\".framer-uFEJG.framer-we3zge { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-uFEJG .framer-1e5iamm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-uFEJG .framer-1bdoqjh, .framer-uFEJG .framer-18b6u09 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-uFEJG .framer-211sq0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 49%; overflow: hidden; padding: 0px; position: absolute; top: 50%; width: min-content; z-index: 1; }\",\".framer-uFEJG .framer-1le440g-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-uFEJG .framer-73why7-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uFEJG.framer-we3zge, .framer-uFEJG .framer-1e5iamm, .framer-uFEJG .framer-211sq0 { gap: 0px; } .framer-uFEJG.framer-we3zge > *, .framer-uFEJG .framer-1e5iamm > *, .framer-uFEJG .framer-211sq0 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-uFEJG.framer-we3zge > :first-child, .framer-uFEJG .framer-1e5iamm > :first-child, .framer-uFEJG .framer-211sq0 > :first-child { margin-left: 0px; } .framer-uFEJG.framer-we3zge > :last-child, .framer-uFEJG .framer-1e5iamm > :last-child, .framer-uFEJG .framer-211sq0 > :last-child { margin-right: 0px; } }\",\".framer-uFEJG.framer-v-103bohn .framer-211sq0, .framer-uFEJG.framer-v-1yydc5r .framer-211sq0 { justify-content: flex-start; }\",\".framer-uFEJG.framer-v-103bohn .framer-1le440g-container { height: 32px; width: 32px; }\",\".framer-uFEJG.framer-v-1yydc5r .framer-1le440g-container { height: 20px; width: 20px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 370\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Dpdu0GUZ9\":{\"layout\":[\"auto\",\"auto\"]},\"PcMiSDd5r\":{\"layout\":[\"auto\",\"auto\"]},\"ZnsKiAjcR\":{\"layout\":[\"auto\",\"auto\"]},\"spS34yu59\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"zhU3xY_Ux\":\"labelCopy\",\"bPCJyrIbK\":\"iconCopied\",\"rIGEnoYqD\":\"labelCopied\",\"PbW7K4Unr\":\"icons\",\"qIDNNRI0q\":\"clipboardContent\",\"DSjhwwbwG\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEz4EYNpXj=withCSS(Component,css,\"framer-uFEJG\");export default FramerEz4EYNpXj;FramerEz4EYNpXj.displayName=\"Button/Button copy\";FramerEz4EYNpXj.defaultProps={height:50,width:370};addPropertyControls(FramerEz4EYNpXj,{variant:{options:[\"GF_EU8Hdz\",\"Dpdu0GUZ9\",\"PcMiSDd5r\",\"ZnsKiAjcR\"],optionTitles:[\"Desctop\",\"Copied\",\"Mobile\",\"Copied mobile\"],title:\"Variant\",type:ControlType.Enum},zhU3xY_Ux:{defaultValue:\"Copy component\",displayTextArea:false,title:\"Label - Copy\",type:ControlType.String},bPCJyrIbK:{defaultValue:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M3 15L9.29412 20L21 4\" stroke=\"black\" stroke-width=\"2\" stroke-linecap=\"square\"/> </svg>',displayTextArea:false,title:\"Icon - Copied\",type:ControlType.String},rIGEnoYqD:{defaultValue:\"Copied\",displayTextArea:false,title:\"Label - Copied\",type:ControlType.String},PbW7K4Unr:{defaultValue:'var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5)) /* {\"name\":\"1\"} */',title:\"Icons\",type:ControlType.Color},qIDNNRI0q:{defaultValue:\"Copied text.\",displayTextArea:true,title:\"Clipboard Content\",type:ControlType.String},DSjhwwbwG:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerEz4EYNpXj,[{explicitInter:true,fonts:[{family:\"Azeret Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfQvJh17aa-5s3AA.woff2\",weight:\"600\"},{family:\"Azeret Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfrvVh17aa-5s3AA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...SVGFonts,...ClipboardFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEz4EYNpXj\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"50\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Dpdu0GUZ9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"PcMiSDd5r\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZnsKiAjcR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"spS34yu59\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"zhU3xY_Ux\\\":\\\"labelCopy\\\",\\\"bPCJyrIbK\\\":\\\"iconCopied\\\",\\\"rIGEnoYqD\\\":\\\"labelCopied\\\",\\\"PbW7K4Unr\\\":\\\"icons\\\",\\\"qIDNNRI0q\\\":\\\"clipboardContent\\\",\\\"DSjhwwbwG\\\":\\\"click\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"370\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ez4EYNpXj.map", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Time as TimeDate}from\"https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ArGb2h2ChmztssOH4BSK/LfPqvRxbcCfYmXizb4Ui/JRsCseWjL.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/rWs6HdTj6Ww2cFG0DHtV/osWRh7JcrC0dsULnTdmE/zes_cOEW8.js\";import ButtonButton from\"https://framerusercontent.com/modules/hev5Icau5rKqor0XL9Zb/DlTIhiGsuega4ligBAr4/CAiChgF1B.js\";import ButtonButtonCopy from\"https://framerusercontent.com/modules/oJtDeJEWCv9KZhrimlhH/27E60wwerKRRXHVWvujY/Ez4EYNpXj.js\";const ButtonButtonCopyFonts=getFonts(ButtonButtonCopy);const MotionDivWithFX=withFX(motion.div);const ButtonButtonFonts=getFonts(ButtonButton);const TimeDateFonts=getFonts(TimeDate);const cycleOrder=[\"XhO7eZTzv\",\"Mog6FQRRy\",\"f_E0qY_v7\",\"ySEkBfWo_\",\"bVPees3KH\",\"OLRfw5ts7\"];const serializationHash=\"framer-HqixO\";const variantClassNames={bVPees3KH:\"framer-v-7rslmx\",f_E0qY_v7:\"framer-v-1say24q\",Mog6FQRRy:\"framer-v-bu5gnf\",OLRfw5ts7:\"framer-v-43rmen\",XhO7eZTzv:\"framer-v-1p1uga\",ySEkBfWo_:\"framer-v-jrme13\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Footer dark 390\":\"OLRfw5ts7\",\"Footer dark 810\":\"bVPees3KH\",\"Footer Desktop Dark\":\"ySEkBfWo_\",\"Footer Desktop\":\"XhO7eZTzv\",\"Footer Mobile\":\"f_E0qY_v7\",\"Footer Tablet\":\"Mog6FQRRy\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"XhO7eZTzv\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XhO7eZTzv\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const DSjhwwbwG17wusro=activeVariantCallback(async(...args)=>{setVariant(\"OLRfw5ts7\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"ySEkBfWo_\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1p1uga\",className,classNames),\"data-framer-name\":\"Footer Desktop\",layoutDependency:layoutDependency,layoutId:\"XhO7eZTzv\",ref:refBinding,style:{backgroundColor:\"var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, rgb(0, 0, 0))\",...style},variants:{bVPees3KH:{backgroundColor:\"rgb(0, 0, 0)\"},OLRfw5ts7:{backgroundColor:\"rgb(0, 0, 0)\"}},...addPropertyOverrides({bVPees3KH:{\"data-framer-name\":\"Footer dark 810\"},f_E0qY_v7:{\"data-framer-name\":\"Footer Mobile\"},Mog6FQRRy:{\"data-framer-name\":\"Footer Tablet\"},OLRfw5ts7:{\"data-framer-name\":\"Footer dark 390\"},ySEkBfWo_:{\"data-framer-name\":\"Footer Desktop Dark\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zvrsnb\",\"data-framer-name\":\"Footer\",layoutDependency:layoutDependency,layoutId:\"NMbvla4jZ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jrsn1u\",\"data-framer-name\":\"Email, logo\",layoutDependency:layoutDependency,layoutId:\"oYQhv9gnC\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-15g4prf\",\"data-framer-name\":\"Email\",layoutDependency:layoutDependency,layoutId:\"m3K9K1cUC\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+0+(((componentViewport?.height||660)-0-826)/2+0+0)+0+0+122+0,...addPropertyOverrides({bVPees3KH:{height:50,y:(componentViewport?.y||0)+0+(((componentViewport?.height||609)-0-(((componentViewport?.height||609)-0)*1+0))/2+0+0)+20+(0+0+(((componentViewport?.height||609)-0)*1-40-661.4)/1*0)+20+0},f_E0qY_v7:{height:50,y:(componentViewport?.y||0)+0+(((componentViewport?.height||617)-0-(((componentViewport?.height||617)-0)*1.0156+0))/2+0+0)+20+(0+0+(((componentViewport?.height||617)-0)*1.0156-40-(Math.max(0,(((componentViewport?.height||617)-0)*1.0156-40-291.4)/1)*1+291.4))/1*0)+20+0+0},Mog6FQRRy:{height:50,y:(componentViewport?.y||0)+0+(((componentViewport?.height||626)-0-(((componentViewport?.height||626)-0)*.962+0))/2+0+0)+20+(0+0+(((componentViewport?.height||626)-0)*.962-40-622.4)/1*0)+20+0},OLRfw5ts7:{height:50,y:(componentViewport?.y||0)+0+(((componentViewport?.height||626)-0-(((componentViewport?.height||626)-0)*1+0))/2+0+0)+20+(0+0+(((componentViewport?.height||626)-0)*1-40-642.4)/1*0)+20+0+0},ySEkBfWo_:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||658)-0-658.8)/2+0+0)+0+0+122+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1u7tqp0-container\",layoutDependency:layoutDependency,layoutId:\"wrclJ1MbX-container\",nodeId:\"wrclJ1MbX\",rendersWithMotion:true,scopeId:\"Of9MXqHn4\",children:/*#__PURE__*/_jsx(ButtonButtonCopy,{bPCJyrIbK:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M3 15L9.29412 20L21 4\" stroke=\"black\" stroke-width=\"2\" stroke-linecap=\"square\"/> </svg>',height:\"100%\",id:\"wrclJ1MbX\",layoutId:\"wrclJ1MbX\",PbW7K4Unr:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",qIDNNRI0q:\"Hello@gordian.com\",rIGEnoYqD:\"Copied\",style:{height:\"100%\"},variant:\"GF_EU8Hdz\",width:\"100%\",zhU3xY_Ux:\"tyronemagnusen@gmail.com\",...addPropertyOverrides({bVPees3KH:{variant:\"PcMiSDd5r\"},f_E0qY_v7:{variant:\"PcMiSDd5r\"},Mog6FQRRy:{variant:\"PcMiSDd5r\"},OLRfw5ts7:{DSjhwwbwG:DSjhwwbwG17wusro,variant:\"PcMiSDd5r\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ziaqja\",layoutDependency:layoutDependency,layoutId:\"A4F0pKT_R\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||660)-0-826)/2+0+0)+0+0+122+0),pixelHeight:5e3,pixelWidth:5e3,sizes:\"640px\",src:\"https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png\",srcSet:\"https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png?scale-down-to=512 512w,https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png 5000w\"},className:\"framer-182bybq\",layoutDependency:layoutDependency,layoutId:\"SBOiQBnKN\",...addPropertyOverrides({bVPees3KH:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||609)-0-(((componentViewport?.height||609)-0)*1+0))/2+0+0)+20+(0+0+(((componentViewport?.height||609)-0)*1-40-661.4)/1*0)+20+-83),pixelHeight:5e3,pixelWidth:5e3,sizes:\"501px\",src:\"https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png\",srcSet:\"https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png?scale-down-to=512 512w,https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png 5000w\"}},f_E0qY_v7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||617)-0-(((componentViewport?.height||617)-0)*1.0156+0))/2+0+0)+20+(0+0+(((componentViewport?.height||617)-0)*1.0156-40-(Math.max(0,(((componentViewport?.height||617)-0)*1.0156-40-291.4)/1)*1+291.4))/1*0)+20+70+5.5),pixelHeight:5e3,pixelWidth:5e3,sizes:\"359px\",src:\"https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png\",srcSet:\"https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png?scale-down-to=512 512w,https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png 5000w\"}},Mog6FQRRy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||626)-0-(((componentViewport?.height||626)-0)*.962+0))/2+0+0)+20+(0+0+(((componentViewport?.height||626)-0)*.962-40-622.4)/1*0)+20+-44.5),pixelHeight:5e3,pixelWidth:5e3,sizes:\"431px\",src:\"https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png\",srcSet:\"https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png?scale-down-to=512 512w,https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png 5000w\"}},OLRfw5ts7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||626)-0-(((componentViewport?.height||626)-0)*1+0))/2+0+0)+20+(0+0+(((componentViewport?.height||626)-0)*1-40-642.4)/1*0)+20+50+1.5),pixelHeight:5e3,pixelWidth:5e3,sizes:\"570px\",src:\"https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png\",srcSet:\"https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png?scale-down-to=512 512w,https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png 5000w\"}},ySEkBfWo_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||658)-0-658.8)/2+0+0)+0+0+122+0+0),pixelHeight:5e3,pixelWidth:5e3,sizes:\"640px\",src:\"https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png\",srcSet:\"https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png?scale-down-to=512 512w,https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Cfu2rkHVrqM5zZRrbWyvonsai20.png 5000w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vff19m\",\"data-framer-name\":\"Details, attribution\",layoutDependency:layoutDependency,layoutId:\"r32GfVIhQ\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-de19m6\",\"data-framer-name\":\"Details\",layoutDependency:layoutDependency,layoutId:\"SlqS4tyg0\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-atcl5r\",\"data-framer-name\":\"Social\",layoutDependency:layoutDependency,layoutId:\"LZsksc5sX\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9lj1jn\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"LF3Kc5faO\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l17kfr\",\"data-styles-preset\":\"zes_cOEW8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Social:\"})}),className:\"framer-irpaq1\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MnD8qUT2p\",style:{\"--extracted-r6o4lv\":\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bVPees3KH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Social:\"})})},f_E0qY_v7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Social:\"})})},Mog6FQRRy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Social:\"})})},OLRfw5ts7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Social:\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5ia2mz\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"mSsGMMkVa\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+0+(((componentViewport?.height||660)-0-826)/2+0+0)+0+525+73+0+84+0+0+0,...addPropertyOverrides({bVPees3KH:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||609)-0-(((componentViewport?.height||609)-0)*1+0))/2+0+0)+20+(0+370+(((componentViewport?.height||609)-0)*1-40-661.4)/1*1)+0+0+0+0+0+0+0},f_E0qY_v7:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||617)-0-(((componentViewport?.height||617)-0)*1.0156+0))/2+0+0)+20+(0+Math.max(0,(((componentViewport?.height||617)-0)*1.0156-40-291.4)/1)*1+(((componentViewport?.height||617)-0)*1.0156-40-(Math.max(0,(((componentViewport?.height||617)-0)*1.0156-40-291.4)/1)*1+291.4))/1*1)+0+0+0+0+0+0+0},Mog6FQRRy:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||626)-0-(((componentViewport?.height||626)-0)*.962+0))/2+0+0)+20+(0+332+(((componentViewport?.height||626)-0)*.962-40-622.4)/1*1)+0+0+0+0+0+0+0},OLRfw5ts7:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||626)-0-(((componentViewport?.height||626)-0)*1+0))/2+0+0)+20+(0+351+(((componentViewport?.height||626)-0)*1-40-642.4)/1*1)+0+0+0+0+0+0+0},ySEkBfWo_:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||658)-0-658.8)/2+0+0)+0+525+73+0+.4+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10lsq4x-container\",layoutDependency:layoutDependency,layoutId:\"zkiFwNTLB-container\",nodeId:\"zkiFwNTLB\",rendersWithMotion:true,scopeId:\"Of9MXqHn4\",children:/*#__PURE__*/_jsx(ButtonButton,{height:\"100%\",id:\"zkiFwNTLB\",layoutId:\"zkiFwNTLB\",Po2X5ZIUL:\"Instagram\",style:{height:\"100%\"},variant:\"i6ZpN2mT7\",width:\"100%\",yKSXSTalC:\"https://www.instagram.com/\",...addPropertyOverrides({bVPees3KH:{variant:\"p6sHMJ39x\"},f_E0qY_v7:{variant:\"p6sHMJ39x\"},Mog6FQRRy:{variant:\"p6sHMJ39x\"},OLRfw5ts7:{E0qxfmqZ9:undefined,variant:\"p6sHMJ39x\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+0+(((componentViewport?.height||660)-0-826)/2+0+0)+0+525+73+0+84+0+0+20,...addPropertyOverrides({bVPees3KH:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||609)-0-(((componentViewport?.height||609)-0)*1+0))/2+0+0)+20+(0+370+(((componentViewport?.height||609)-0)*1-40-661.4)/1*1)+0+0+0+0+0+0+21},f_E0qY_v7:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||617)-0-(((componentViewport?.height||617)-0)*1.0156+0))/2+0+0)+20+(0+Math.max(0,(((componentViewport?.height||617)-0)*1.0156-40-291.4)/1)*1+(((componentViewport?.height||617)-0)*1.0156-40-(Math.max(0,(((componentViewport?.height||617)-0)*1.0156-40-291.4)/1)*1+291.4))/1*1)+0+0+0+0+0+0+21},Mog6FQRRy:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||626)-0-(((componentViewport?.height||626)-0)*.962+0))/2+0+0)+20+(0+332+(((componentViewport?.height||626)-0)*.962-40-622.4)/1*1)+0+0+0+0+0+0+20},OLRfw5ts7:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||626)-0-(((componentViewport?.height||626)-0)*1+0))/2+0+0)+20+(0+351+(((componentViewport?.height||626)-0)*1-40-642.4)/1*1)+0+0+0+0+0+0+21},ySEkBfWo_:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||658)-0-658.8)/2+0+0)+0+525+73+0+.4+0+0+20}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zqdtw0-container\",layoutDependency:layoutDependency,layoutId:\"h4zexGioA-container\",nodeId:\"h4zexGioA\",rendersWithMotion:true,scopeId:\"Of9MXqHn4\",children:/*#__PURE__*/_jsx(ButtonButton,{height:\"100%\",id:\"h4zexGioA\",layoutId:\"h4zexGioA\",Po2X5ZIUL:\"Linkedin\",style:{height:\"100%\"},variant:\"i6ZpN2mT7\",width:\"100%\",yKSXSTalC:\"www.linkedin.com\",...addPropertyOverrides({bVPees3KH:{variant:\"p6sHMJ39x\"},f_E0qY_v7:{variant:\"p6sHMJ39x\"},Mog6FQRRy:{variant:\"p6sHMJ39x\"},OLRfw5ts7:{variant:\"p6sHMJ39x\"}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tdqq8z\",\"data-framer-name\":\"Expertise\",layoutDependency:layoutDependency,layoutId:\"RdlDy_m7a\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-42mf2p\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"Yk8xHsJ7Z\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l17kfr\",\"data-styles-preset\":\"zes_cOEW8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Motion Design\"})}),className:\"framer-4jnh18\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"o4dj3oJh2\",style:{\"--extracted-r6o4lv\":\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bVPees3KH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Motion Design\"})})},f_E0qY_v7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Motion Design\"})})},Mog6FQRRy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Motion Design\"})})},OLRfw5ts7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Motion Design\"})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hfchhj\",\"data-framer-name\":\"Location\",layoutDependency:layoutDependency,layoutId:\"YhNn9PVeY\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dglg98\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"cOJrrTt8Q\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l17kfr\",\"data-styles-preset\":\"zes_cOEW8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Location:\"})}),className:\"framer-u65ryi\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oziPF2rkC\",style:{\"--extracted-r6o4lv\":\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bVPees3KH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Location:\"})})},f_E0qY_v7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Location:\"})})},Mog6FQRRy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Location:\"})})},OLRfw5ts7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Location:\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w3gduf\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"BPbe1L0Qu\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mfifsa\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"ifzSjsACG\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l17kfr\",\"data-styles-preset\":\"zes_cOEW8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"England, London\"})}),className:\"framer-1jovioo\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hNxBWLBuF\",style:{\"--extracted-r6o4lv\":\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bVPees3KH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"England, London\"})})},f_E0qY_v7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"England, London\"})})},Mog6FQRRy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"England, London\"})})},OLRfw5ts7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"England, London\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rej3j8\",\"data-framer-name\":\"Time\",layoutDependency:layoutDependency,layoutId:\"pCpL7T3Od\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-d2xple-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"KzTHAQKHT-container\",nodeId:\"KzTHAQKHT\",rendersWithMotion:true,scopeId:\"Of9MXqHn4\",children:/*#__PURE__*/_jsx(TimeDate,{color:\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\",font:{fontFamily:'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"KzTHAQKHT\",layoutId:\"KzTHAQKHT\",monthFormat:\"long\",outputType:\"time\",showMinutes:true,showMonth:true,showSeconds:true,showWeekday:true,showYear:true,tabularFont:false,timeFormat:\"12h\",width:\"100%\",...addPropertyOverrides({bVPees3KH:{font:{fontFamily:'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"}},f_E0qY_v7:{font:{fontFamily:'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"}},Mog6FQRRy:{font:{fontFamily:'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"}},OLRfw5ts7:{font:{fontFamily:'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"}}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yqda1f\",\"data-framer-name\":\"Available\",layoutDependency:layoutDependency,layoutId:\"NX3_PMqPn\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6e1umj\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"hNhPaMH3h\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l17kfr\",\"data-styles-preset\":\"zes_cOEW8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Available:\"})}),className:\"framer-18nammh\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"u8JsNeCo5\",style:{\"--extracted-r6o4lv\":\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bVPees3KH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Available:\"})})},f_E0qY_v7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Available:\"})})},Mog6FQRRy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Available:\"})})},OLRfw5ts7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Available:\"})})},ySEkBfWo_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l17kfr\",\"data-styles-preset\":\"zes_cOEW8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"Tyrone Magnusen\"})})}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-689lf3\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"qTycCJuxg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l17kfr\",\"data-styles-preset\":\"zes_cOEW8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"09 September\"})}),className:\"framer-1vluz80\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PueIcMaRC\",style:{\"--extracted-r6o4lv\":\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bVPees3KH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"09 September\"})})},f_E0qY_v7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"09 September\"})})},Mog6FQRRy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"09 September\"})})},OLRfw5ts7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"09 September\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l17kfr\",\"data-styles-preset\":\"zes_cOEW8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"12 october \"})}),className:\"framer-qxpba5\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"z7pcxsPKp\",style:{\"--extracted-r6o4lv\":\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bVPees3KH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"12 october\"})})},f_E0qY_v7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"12 october\"})})},Mog6FQRRy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"12 october\"})})},OLRfw5ts7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"12 october\"})})}},baseVariant,gestureVariant)})]})]})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HqixO.framer-tbfz72, .framer-HqixO .framer-tbfz72 { display: block; }\",\".framer-HqixO.framer-1p1uga { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-HqixO .framer-zvrsnb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 20px; position: relative; width: 100%; }\",\".framer-HqixO .framer-1jrsn1u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 122px 0px 122px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-HqixO .framer-15g4prf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-HqixO .framer-1u7tqp0-container { flex: none; height: 41px; position: relative; width: auto; }\",\".framer-HqixO .framer-ziaqja { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 281px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 47%; }\",\".framer-HqixO .framer-182bybq { flex: none; height: 281px; position: relative; width: 640px; z-index: 1; }\",\".framer-HqixO .framer-vff19m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: flex-start; overflow: visible; padding: 73px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-HqixO .framer-de19m6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HqixO .framer-atcl5r, .framer-HqixO .framer-1tdqq8z, .framer-HqixO .framer-1hfchhj, .framer-HqixO .framer-1yqda1f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-HqixO .framer-9lj1jn, .framer-HqixO .framer-5ia2mz, .framer-HqixO .framer-42mf2p, .framer-HqixO .framer-1dglg98, .framer-HqixO .framer-6e1umj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-HqixO .framer-irpaq1, .framer-HqixO .framer-4jnh18, .framer-HqixO .framer-u65ryi, .framer-HqixO .framer-1jovioo, .framer-HqixO .framer-18nammh { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HqixO .framer-10lsq4x-container, .framer-HqixO .framer-zqdtw0-container { flex: none; height: 20px; position: relative; width: auto; }\",\".framer-HqixO .framer-1w3gduf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 115px; }\",\".framer-HqixO .framer-1mfifsa, .framer-HqixO .framer-1rej3j8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HqixO .framer-d2xple-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-HqixO .framer-689lf3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 125px; }\",\".framer-HqixO .framer-1vluz80, .framer-HqixO .framer-qxpba5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 125px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HqixO.framer-1p1uga, .framer-HqixO .framer-zvrsnb, .framer-HqixO .framer-1jrsn1u, .framer-HqixO .framer-15g4prf, .framer-HqixO .framer-ziaqja, .framer-HqixO .framer-vff19m, .framer-HqixO .framer-atcl5r, .framer-HqixO .framer-9lj1jn, .framer-HqixO .framer-5ia2mz, .framer-HqixO .framer-1tdqq8z, .framer-HqixO .framer-42mf2p, .framer-HqixO .framer-1hfchhj, .framer-HqixO .framer-1dglg98, .framer-HqixO .framer-1w3gduf, .framer-HqixO .framer-1mfifsa, .framer-HqixO .framer-1rej3j8, .framer-HqixO .framer-1yqda1f, .framer-HqixO .framer-6e1umj, .framer-HqixO .framer-689lf3 { gap: 0px; } .framer-HqixO.framer-1p1uga > *, .framer-HqixO .framer-zvrsnb > *, .framer-HqixO .framer-9lj1jn > *, .framer-HqixO .framer-5ia2mz > *, .framer-HqixO .framer-42mf2p > *, .framer-HqixO .framer-1dglg98 > *, .framer-HqixO .framer-1w3gduf > *, .framer-HqixO .framer-1mfifsa > *, .framer-HqixO .framer-1rej3j8 > *, .framer-HqixO .framer-6e1umj > *, .framer-HqixO .framer-689lf3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-HqixO.framer-1p1uga > :first-child, .framer-HqixO .framer-zvrsnb > :first-child, .framer-HqixO .framer-vff19m > :first-child, .framer-HqixO .framer-9lj1jn > :first-child, .framer-HqixO .framer-5ia2mz > :first-child, .framer-HqixO .framer-42mf2p > :first-child, .framer-HqixO .framer-1dglg98 > :first-child, .framer-HqixO .framer-1w3gduf > :first-child, .framer-HqixO .framer-1mfifsa > :first-child, .framer-HqixO .framer-1rej3j8 > :first-child, .framer-HqixO .framer-6e1umj > :first-child, .framer-HqixO .framer-689lf3 > :first-child { margin-top: 0px; } .framer-HqixO.framer-1p1uga > :last-child, .framer-HqixO .framer-zvrsnb > :last-child, .framer-HqixO .framer-vff19m > :last-child, .framer-HqixO .framer-9lj1jn > :last-child, .framer-HqixO .framer-5ia2mz > :last-child, .framer-HqixO .framer-42mf2p > :last-child, .framer-HqixO .framer-1dglg98 > :last-child, .framer-HqixO .framer-1w3gduf > :last-child, .framer-HqixO .framer-1mfifsa > :last-child, .framer-HqixO .framer-1rej3j8 > :last-child, .framer-HqixO .framer-6e1umj > :last-child, .framer-HqixO .framer-689lf3 > :last-child { margin-bottom: 0px; } .framer-HqixO .framer-1jrsn1u > *, .framer-HqixO .framer-atcl5r > *, .framer-HqixO .framer-1tdqq8z > *, .framer-HqixO .framer-1hfchhj > *, .framer-HqixO .framer-1yqda1f > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-HqixO .framer-1jrsn1u > :first-child, .framer-HqixO .framer-15g4prf > :first-child, .framer-HqixO .framer-ziaqja > :first-child, .framer-HqixO .framer-atcl5r > :first-child, .framer-HqixO .framer-1tdqq8z > :first-child, .framer-HqixO .framer-1hfchhj > :first-child, .framer-HqixO .framer-1yqda1f > :first-child { margin-left: 0px; } .framer-HqixO .framer-1jrsn1u > :last-child, .framer-HqixO .framer-15g4prf > :last-child, .framer-HqixO .framer-ziaqja > :last-child, .framer-HqixO .framer-atcl5r > :last-child, .framer-HqixO .framer-1tdqq8z > :last-child, .framer-HqixO .framer-1hfchhj > :last-child, .framer-HqixO .framer-1yqda1f > :last-child { margin-right: 0px; } .framer-HqixO .framer-15g4prf > *, .framer-HqixO .framer-ziaqja > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-HqixO .framer-vff19m > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } }\",\".framer-HqixO.framer-v-bu5gnf.framer-1p1uga { height: 626px; width: 810px; }\",\".framer-HqixO.framer-v-bu5gnf .framer-zvrsnb { gap: unset; height: 96%; justify-content: space-between; padding: 20px 10px 20px 10px; }\",\".framer-HqixO.framer-v-bu5gnf .framer-1jrsn1u { padding: 20px 0px 122px 0px; }\",\".framer-HqixO.framer-v-bu5gnf .framer-15g4prf, .framer-HqixO.framer-v-1say24q .framer-15g4prf, .framer-HqixO.framer-v-43rmen .framer-15g4prf { gap: 4px; }\",\".framer-HqixO.framer-v-bu5gnf .framer-1u7tqp0-container, .framer-HqixO.framer-v-7rslmx .framer-1u7tqp0-container { height: auto; }\",\".framer-HqixO.framer-v-bu5gnf .framer-ziaqja { height: 190px; width: 55%; }\",\".framer-HqixO.framer-v-bu5gnf .framer-182bybq { height: 279px; order: 0; width: 431px; }\",\".framer-HqixO.framer-v-bu5gnf .framer-vff19m, .framer-HqixO.framer-v-1say24q .framer-vff19m, .framer-HqixO.framer-v-7rslmx .framer-vff19m, .framer-HqixO.framer-v-43rmen .framer-vff19m { gap: 40px; padding: 0px; }\",\".framer-HqixO.framer-v-bu5gnf .framer-de19m6, .framer-HqixO.framer-v-1say24q .framer-de19m6, .framer-HqixO.framer-v-7rslmx .framer-de19m6, .framer-HqixO.framer-v-43rmen .framer-de19m6 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 4px; justify-content: flex-start; }\",\".framer-HqixO.framer-v-bu5gnf .framer-atcl5r, .framer-HqixO.framer-v-bu5gnf .framer-1tdqq8z, .framer-HqixO.framer-v-bu5gnf .framer-1hfchhj, .framer-HqixO.framer-v-bu5gnf .framer-1yqda1f, .framer-HqixO.framer-v-1say24q .framer-1tdqq8z, .framer-HqixO.framer-v-1say24q .framer-1hfchhj, .framer-HqixO.framer-v-1say24q .framer-1yqda1f, .framer-HqixO.framer-v-7rslmx .framer-atcl5r, .framer-HqixO.framer-v-7rslmx .framer-1tdqq8z, .framer-HqixO.framer-v-7rslmx .framer-1hfchhj, .framer-HqixO.framer-v-7rslmx .framer-1yqda1f, .framer-HqixO.framer-v-43rmen .framer-atcl5r, .framer-HqixO.framer-v-43rmen .framer-1tdqq8z, .framer-HqixO.framer-v-43rmen .framer-1hfchhj, .framer-HqixO.framer-v-43rmen .framer-1yqda1f { gap: unset; justify-content: space-between; width: 100%; }\",\".framer-HqixO.framer-v-bu5gnf .framer-5ia2mz, .framer-HqixO.framer-v-bu5gnf .framer-1mfifsa, .framer-HqixO.framer-v-bu5gnf .framer-1rej3j8, .framer-HqixO.framer-v-bu5gnf .framer-689lf3, .framer-HqixO.framer-v-1say24q .framer-1w3gduf, .framer-HqixO.framer-v-1say24q .framer-1mfifsa, .framer-HqixO.framer-v-1say24q .framer-1rej3j8, .framer-HqixO.framer-v-1say24q .framer-689lf3, .framer-HqixO.framer-v-7rslmx .framer-1mfifsa, .framer-HqixO.framer-v-7rslmx .framer-1rej3j8, .framer-HqixO.framer-v-7rslmx .framer-689lf3, .framer-HqixO.framer-v-43rmen .framer-1w3gduf, .framer-HqixO.framer-v-43rmen .framer-689lf3 { align-content: flex-end; align-items: flex-end; }\",\".framer-HqixO.framer-v-bu5gnf .framer-qxpba5, .framer-HqixO.framer-v-1say24q .framer-qxpba5, .framer-HqixO.framer-v-7rslmx .framer-qxpba5, .framer-HqixO.framer-v-43rmen .framer-qxpba5 { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HqixO.framer-v-bu5gnf .framer-zvrsnb, .framer-HqixO.framer-v-bu5gnf .framer-15g4prf, .framer-HqixO.framer-v-bu5gnf .framer-vff19m, .framer-HqixO.framer-v-bu5gnf .framer-de19m6, .framer-HqixO.framer-v-bu5gnf .framer-atcl5r, .framer-HqixO.framer-v-bu5gnf .framer-1tdqq8z, .framer-HqixO.framer-v-bu5gnf .framer-1hfchhj, .framer-HqixO.framer-v-bu5gnf .framer-1yqda1f { gap: 0px; } .framer-HqixO.framer-v-bu5gnf .framer-zvrsnb > *, .framer-HqixO.framer-v-bu5gnf .framer-zvrsnb > :first-child, .framer-HqixO.framer-v-bu5gnf .framer-zvrsnb > :last-child, .framer-HqixO.framer-v-bu5gnf .framer-atcl5r > *, .framer-HqixO.framer-v-bu5gnf .framer-atcl5r > :first-child, .framer-HqixO.framer-v-bu5gnf .framer-atcl5r > :last-child, .framer-HqixO.framer-v-bu5gnf .framer-1tdqq8z > *, .framer-HqixO.framer-v-bu5gnf .framer-1tdqq8z > :first-child, .framer-HqixO.framer-v-bu5gnf .framer-1tdqq8z > :last-child, .framer-HqixO.framer-v-bu5gnf .framer-1hfchhj > *, .framer-HqixO.framer-v-bu5gnf .framer-1hfchhj > :first-child, .framer-HqixO.framer-v-bu5gnf .framer-1hfchhj > :last-child, .framer-HqixO.framer-v-bu5gnf .framer-1yqda1f > *, .framer-HqixO.framer-v-bu5gnf .framer-1yqda1f > :first-child, .framer-HqixO.framer-v-bu5gnf .framer-1yqda1f > :last-child { margin: 0px; } .framer-HqixO.framer-v-bu5gnf .framer-15g4prf > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-HqixO.framer-v-bu5gnf .framer-15g4prf > :first-child { margin-left: 0px; } .framer-HqixO.framer-v-bu5gnf .framer-15g4prf > :last-child { margin-right: 0px; } .framer-HqixO.framer-v-bu5gnf .framer-vff19m > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-HqixO.framer-v-bu5gnf .framer-vff19m > :first-child, .framer-HqixO.framer-v-bu5gnf .framer-de19m6 > :first-child { margin-top: 0px; } .framer-HqixO.framer-v-bu5gnf .framer-vff19m > :last-child, .framer-HqixO.framer-v-bu5gnf .framer-de19m6 > :last-child { margin-bottom: 0px; } .framer-HqixO.framer-v-bu5gnf .framer-de19m6 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",\".framer-HqixO.framer-v-1say24q.framer-1p1uga { height: 617px; width: 390px; }\",\".framer-HqixO.framer-v-1say24q .framer-zvrsnb { gap: unset; height: 102%; justify-content: space-between; padding: 20px 10px 20px 10px; }\",\".framer-HqixO.framer-v-1say24q .framer-1jrsn1u { flex: 1 0 0px; flex-direction: column; height: 1px; padding: 20px 0px 122px 0px; }\",\".framer-HqixO.framer-v-1say24q .framer-1u7tqp0-container, .framer-HqixO.framer-v-43rmen .framer-1u7tqp0-container { height: auto; order: 0; }\",\".framer-HqixO.framer-v-1say24q .framer-ziaqja { width: 99%; }\",\".framer-HqixO.framer-v-1say24q .framer-182bybq { height: 270px; order: 0; width: 359px; }\",\".framer-HqixO.framer-v-1say24q .framer-atcl5r { gap: unset; justify-content: space-between; width: 100%; z-index: 1; }\",\".framer-HqixO.framer-v-1say24q .framer-5ia2mz, .framer-HqixO.framer-v-7rslmx .framer-5ia2mz, .framer-HqixO.framer-v-43rmen .framer-5ia2mz { align-content: flex-end; align-items: flex-end; gap: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HqixO.framer-v-1say24q .framer-zvrsnb, .framer-HqixO.framer-v-1say24q .framer-1jrsn1u, .framer-HqixO.framer-v-1say24q .framer-15g4prf, .framer-HqixO.framer-v-1say24q .framer-vff19m, .framer-HqixO.framer-v-1say24q .framer-de19m6, .framer-HqixO.framer-v-1say24q .framer-atcl5r, .framer-HqixO.framer-v-1say24q .framer-5ia2mz, .framer-HqixO.framer-v-1say24q .framer-1tdqq8z, .framer-HqixO.framer-v-1say24q .framer-1hfchhj, .framer-HqixO.framer-v-1say24q .framer-1yqda1f { gap: 0px; } .framer-HqixO.framer-v-1say24q .framer-zvrsnb > *, .framer-HqixO.framer-v-1say24q .framer-zvrsnb > :first-child, .framer-HqixO.framer-v-1say24q .framer-zvrsnb > :last-child, .framer-HqixO.framer-v-1say24q .framer-atcl5r > *, .framer-HqixO.framer-v-1say24q .framer-atcl5r > :first-child, .framer-HqixO.framer-v-1say24q .framer-atcl5r > :last-child, .framer-HqixO.framer-v-1say24q .framer-1tdqq8z > *, .framer-HqixO.framer-v-1say24q .framer-1tdqq8z > :first-child, .framer-HqixO.framer-v-1say24q .framer-1tdqq8z > :last-child, .framer-HqixO.framer-v-1say24q .framer-1hfchhj > *, .framer-HqixO.framer-v-1say24q .framer-1hfchhj > :first-child, .framer-HqixO.framer-v-1say24q .framer-1hfchhj > :last-child, .framer-HqixO.framer-v-1say24q .framer-1yqda1f > *, .framer-HqixO.framer-v-1say24q .framer-1yqda1f > :first-child, .framer-HqixO.framer-v-1say24q .framer-1yqda1f > :last-child { margin: 0px; } .framer-HqixO.framer-v-1say24q .framer-1jrsn1u > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-HqixO.framer-v-1say24q .framer-1jrsn1u > :first-child, .framer-HqixO.framer-v-1say24q .framer-vff19m > :first-child, .framer-HqixO.framer-v-1say24q .framer-de19m6 > :first-child, .framer-HqixO.framer-v-1say24q .framer-5ia2mz > :first-child { margin-top: 0px; } .framer-HqixO.framer-v-1say24q .framer-1jrsn1u > :last-child, .framer-HqixO.framer-v-1say24q .framer-vff19m > :last-child, .framer-HqixO.framer-v-1say24q .framer-de19m6 > :last-child, .framer-HqixO.framer-v-1say24q .framer-5ia2mz > :last-child { margin-bottom: 0px; } .framer-HqixO.framer-v-1say24q .framer-15g4prf > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-HqixO.framer-v-1say24q .framer-15g4prf > :first-child { margin-left: 0px; } .framer-HqixO.framer-v-1say24q .framer-15g4prf > :last-child { margin-right: 0px; } .framer-HqixO.framer-v-1say24q .framer-vff19m > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-HqixO.framer-v-1say24q .framer-de19m6 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-HqixO.framer-v-1say24q .framer-5ia2mz > * { margin: 0px; margin-bottom: calc(1px / 2); margin-top: calc(1px / 2); } }\",\".framer-HqixO.framer-v-jrme13 .framer-15g4prf { order: 0; }\",\".framer-HqixO.framer-v-jrme13 .framer-ziaqja { flex-direction: column; order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HqixO.framer-v-jrme13 .framer-ziaqja { gap: 0px; } .framer-HqixO.framer-v-jrme13 .framer-ziaqja > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-HqixO.framer-v-jrme13 .framer-ziaqja > :first-child { margin-top: 0px; } .framer-HqixO.framer-v-jrme13 .framer-ziaqja > :last-child { margin-bottom: 0px; } }\",\".framer-HqixO.framer-v-7rslmx.framer-1p1uga { height: 609px; width: 810px; }\",\".framer-HqixO.framer-v-7rslmx .framer-zvrsnb, .framer-HqixO.framer-v-43rmen .framer-zvrsnb { gap: unset; height: 100%; justify-content: space-between; padding: 20px 10px 20px 10px; }\",\".framer-HqixO.framer-v-7rslmx .framer-1jrsn1u { gap: 0px; padding: 20px 0px 122px 0px; }\",\".framer-HqixO.framer-v-7rslmx .framer-15g4prf { gap: 4px; order: 0; }\",\".framer-HqixO.framer-v-7rslmx .framer-ziaqja { height: 228px; order: 1; width: 47%; }\",\".framer-HqixO.framer-v-7rslmx .framer-182bybq { height: 394px; order: 0; width: 501px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HqixO.framer-v-7rslmx .framer-zvrsnb, .framer-HqixO.framer-v-7rslmx .framer-1jrsn1u, .framer-HqixO.framer-v-7rslmx .framer-15g4prf, .framer-HqixO.framer-v-7rslmx .framer-vff19m, .framer-HqixO.framer-v-7rslmx .framer-de19m6, .framer-HqixO.framer-v-7rslmx .framer-atcl5r, .framer-HqixO.framer-v-7rslmx .framer-5ia2mz, .framer-HqixO.framer-v-7rslmx .framer-1tdqq8z, .framer-HqixO.framer-v-7rslmx .framer-1hfchhj, .framer-HqixO.framer-v-7rslmx .framer-1yqda1f { gap: 0px; } .framer-HqixO.framer-v-7rslmx .framer-zvrsnb > *, .framer-HqixO.framer-v-7rslmx .framer-zvrsnb > :first-child, .framer-HqixO.framer-v-7rslmx .framer-zvrsnb > :last-child, .framer-HqixO.framer-v-7rslmx .framer-atcl5r > *, .framer-HqixO.framer-v-7rslmx .framer-atcl5r > :first-child, .framer-HqixO.framer-v-7rslmx .framer-atcl5r > :last-child, .framer-HqixO.framer-v-7rslmx .framer-1tdqq8z > *, .framer-HqixO.framer-v-7rslmx .framer-1tdqq8z > :first-child, .framer-HqixO.framer-v-7rslmx .framer-1tdqq8z > :last-child, .framer-HqixO.framer-v-7rslmx .framer-1hfchhj > *, .framer-HqixO.framer-v-7rslmx .framer-1hfchhj > :first-child, .framer-HqixO.framer-v-7rslmx .framer-1hfchhj > :last-child, .framer-HqixO.framer-v-7rslmx .framer-1yqda1f > *, .framer-HqixO.framer-v-7rslmx .framer-1yqda1f > :first-child, .framer-HqixO.framer-v-7rslmx .framer-1yqda1f > :last-child { margin: 0px; } .framer-HqixO.framer-v-7rslmx .framer-1jrsn1u > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-HqixO.framer-v-7rslmx .framer-1jrsn1u > :first-child, .framer-HqixO.framer-v-7rslmx .framer-15g4prf > :first-child { margin-left: 0px; } .framer-HqixO.framer-v-7rslmx .framer-1jrsn1u > :last-child, .framer-HqixO.framer-v-7rslmx .framer-15g4prf > :last-child { margin-right: 0px; } .framer-HqixO.framer-v-7rslmx .framer-15g4prf > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-HqixO.framer-v-7rslmx .framer-vff19m > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-HqixO.framer-v-7rslmx .framer-vff19m > :first-child, .framer-HqixO.framer-v-7rslmx .framer-de19m6 > :first-child, .framer-HqixO.framer-v-7rslmx .framer-5ia2mz > :first-child { margin-top: 0px; } .framer-HqixO.framer-v-7rslmx .framer-vff19m > :last-child, .framer-HqixO.framer-v-7rslmx .framer-de19m6 > :last-child, .framer-HqixO.framer-v-7rslmx .framer-5ia2mz > :last-child { margin-bottom: 0px; } .framer-HqixO.framer-v-7rslmx .framer-de19m6 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-HqixO.framer-v-7rslmx .framer-5ia2mz > * { margin: 0px; margin-bottom: calc(1px / 2); margin-top: calc(1px / 2); } }\",\".framer-HqixO.framer-v-43rmen.framer-1p1uga { height: 626px; width: 390px; }\",\".framer-HqixO.framer-v-43rmen .framer-1jrsn1u { flex-direction: column; gap: 0px; padding: 20px 0px 0px 0px; }\",\".framer-HqixO.framer-v-43rmen .framer-ziaqja { width: 101%; }\",\".framer-HqixO.framer-v-43rmen .framer-182bybq { height: 278px; order: 0; width: 570px; }\",\".framer-HqixO.framer-v-43rmen .framer-1mfifsa, .framer-HqixO.framer-v-43rmen .framer-1rej3j8 { width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HqixO.framer-v-43rmen .framer-zvrsnb, .framer-HqixO.framer-v-43rmen .framer-1jrsn1u, .framer-HqixO.framer-v-43rmen .framer-15g4prf, .framer-HqixO.framer-v-43rmen .framer-vff19m, .framer-HqixO.framer-v-43rmen .framer-de19m6, .framer-HqixO.framer-v-43rmen .framer-atcl5r, .framer-HqixO.framer-v-43rmen .framer-5ia2mz, .framer-HqixO.framer-v-43rmen .framer-1tdqq8z, .framer-HqixO.framer-v-43rmen .framer-1hfchhj, .framer-HqixO.framer-v-43rmen .framer-1yqda1f { gap: 0px; } .framer-HqixO.framer-v-43rmen .framer-zvrsnb > *, .framer-HqixO.framer-v-43rmen .framer-zvrsnb > :first-child, .framer-HqixO.framer-v-43rmen .framer-zvrsnb > :last-child, .framer-HqixO.framer-v-43rmen .framer-atcl5r > *, .framer-HqixO.framer-v-43rmen .framer-atcl5r > :first-child, .framer-HqixO.framer-v-43rmen .framer-atcl5r > :last-child, .framer-HqixO.framer-v-43rmen .framer-1tdqq8z > *, .framer-HqixO.framer-v-43rmen .framer-1tdqq8z > :first-child, .framer-HqixO.framer-v-43rmen .framer-1tdqq8z > :last-child, .framer-HqixO.framer-v-43rmen .framer-1hfchhj > *, .framer-HqixO.framer-v-43rmen .framer-1hfchhj > :first-child, .framer-HqixO.framer-v-43rmen .framer-1hfchhj > :last-child, .framer-HqixO.framer-v-43rmen .framer-1yqda1f > *, .framer-HqixO.framer-v-43rmen .framer-1yqda1f > :first-child, .framer-HqixO.framer-v-43rmen .framer-1yqda1f > :last-child { margin: 0px; } .framer-HqixO.framer-v-43rmen .framer-1jrsn1u > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-HqixO.framer-v-43rmen .framer-1jrsn1u > :first-child, .framer-HqixO.framer-v-43rmen .framer-vff19m > :first-child, .framer-HqixO.framer-v-43rmen .framer-de19m6 > :first-child, .framer-HqixO.framer-v-43rmen .framer-5ia2mz > :first-child { margin-top: 0px; } .framer-HqixO.framer-v-43rmen .framer-1jrsn1u > :last-child, .framer-HqixO.framer-v-43rmen .framer-vff19m > :last-child, .framer-HqixO.framer-v-43rmen .framer-de19m6 > :last-child, .framer-HqixO.framer-v-43rmen .framer-5ia2mz > :last-child { margin-bottom: 0px; } .framer-HqixO.framer-v-43rmen .framer-15g4prf > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-HqixO.framer-v-43rmen .framer-15g4prf > :first-child { margin-left: 0px; } .framer-HqixO.framer-v-43rmen .framer-15g4prf > :last-child { margin-right: 0px; } .framer-HqixO.framer-v-43rmen .framer-vff19m > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-HqixO.framer-v-43rmen .framer-de19m6 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-HqixO.framer-v-43rmen .framer-5ia2mz > * { margin: 0px; margin-bottom: calc(1px / 2); margin-top: calc(1px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 660\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Mog6FQRRy\":{\"layout\":[\"fixed\",\"fixed\"]},\"f_E0qY_v7\":{\"layout\":[\"fixed\",\"fixed\"]},\"ySEkBfWo_\":{\"layout\":[\"fixed\",\"auto\"]},\"bVPees3KH\":{\"layout\":[\"fixed\",\"fixed\"]},\"OLRfw5ts7\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOf9MXqHn4=withCSS(Component,css,\"framer-HqixO\");export default FramerOf9MXqHn4;FramerOf9MXqHn4.displayName=\"Navigation/Footer\";FramerOf9MXqHn4.defaultProps={height:660,width:1280};addPropertyControls(FramerOf9MXqHn4,{variant:{options:[\"XhO7eZTzv\",\"Mog6FQRRy\",\"f_E0qY_v7\",\"ySEkBfWo_\",\"bVPees3KH\",\"OLRfw5ts7\"],optionTitles:[\"Footer Desktop\",\"Footer Tablet\",\"Footer Mobile\",\"Footer Desktop Dark\",\"Footer dark 810\",\"Footer dark 390\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerOf9MXqHn4,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Azeret Mono\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/ANLMHTNB6D2O5I43CFASACQGGIK5JLDZ/IGISU5CKQGLCD252CUY5AVZQ4UQRDFWC/BUAFC2XP3YCVWDC5LF3GWTKRIOZXURVB.woff2\",weight:\"400\"}]},...ButtonButtonCopyFonts,...ButtonButtonFonts,...TimeDateFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOf9MXqHn4\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Mog6FQRRy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"f_E0qY_v7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ySEkBfWo_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bVPees3KH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OLRfw5ts7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1280\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"660\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Of9MXqHn4.map", "// Generated by Framer (f26e712)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ArGb2h2ChmztssOH4BSK/LfPqvRxbcCfYmXizb4Ui/JRsCseWjL.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/rWs6HdTj6Ww2cFG0DHtV/osWRh7JcrC0dsULnTdmE/zes_cOEW8.js\";import ButtonButton from\"https://framerusercontent.com/modules/hev5Icau5rKqor0XL9Zb/DlTIhiGsuega4ligBAr4/CAiChgF1B.js\";const ButtonButtonFonts=getFonts(ButtonButton);const cycleOrder=[\"F_7SapKcC\",\"E4OdvjBAT\",\"l7E26X3hP\",\"yftA4bZ6M\",\"IUqZmesqJ\",\"A9AOvir3X\",\"Z8INYhUFr\",\"w92Cuwr6D\",\"C_pZq2RdH\",\"gtEBysmkZ\"];const serializationHash=\"framer-wU8ar\";const variantClassNames={A9AOvir3X:\"framer-v-1wzea2p\",C_pZq2RdH:\"framer-v-1qj7yc2\",E4OdvjBAT:\"framer-v-13jn2vo\",F_7SapKcC:\"framer-v-249oqk\",gtEBysmkZ:\"framer-v-1pfgc3n\",IUqZmesqJ:\"framer-v-qtk7ms\",l7E26X3hP:\"framer-v-6wkofd\",w92Cuwr6D:\"framer-v-1cpxvf\",yftA4bZ6M:\"framer-v-10r1hy4\",Z8INYhUFr:\"framer-v-1slqa7v\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Go back dark\":\"IUqZmesqJ\",\"Go back light\":\"A9AOvir3X\",\"Nav dark mobile\":\"Z8INYhUFr\",\"Nav dark tablet\":\"gtEBysmkZ\",\"Nav dark\":\"l7E26X3hP\",\"Nav light mobile\":\"w92Cuwr6D\",\"Nav light tablet\":\"C_pZq2RdH\",\"Nav light\":\"yftA4bZ6M\",\"Nav scroll dark\":\"E4OdvjBAT\",\"Nav scroll light\":\"F_7SapKcC\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"F_7SapKcC\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"F_7SapKcC\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"l7E26X3hP\",\"yftA4bZ6M\",\"Z8INYhUFr\",\"w92Cuwr6D\",\"C_pZq2RdH\",\"gtEBysmkZ\"].includes(baseVariant))return true;return false;};const router=useRouter();const isDisplayed1=()=>{if([\"IUqZmesqJ\",\"A9AOvir3X\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-249oqk\",className,classNames),\"data-framer-name\":\"Nav scroll light\",layoutDependency:layoutDependency,layoutId:\"F_7SapKcC\",ref:refBinding,style:{backdropFilter:\"blur(0px)\",backgroundColor:\"var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, rgb(0, 0, 0))\",WebkitBackdropFilter:\"blur(0px)\",...style},variants:{A9AOvir3X:{backgroundColor:\"rgba(0, 0, 0, 0)\"},C_pZq2RdH:{backdropFilter:\"blur(100px)\",backgroundColor:\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\",WebkitBackdropFilter:\"blur(100px)\"},gtEBysmkZ:{backdropFilter:\"blur(50px)\",WebkitBackdropFilter:\"blur(50px)\"},IUqZmesqJ:{backgroundColor:\"rgba(0, 0, 0, 0)\"},l7E26X3hP:{backgroundColor:\"rgba(0, 0, 0, 0)\"},w92Cuwr6D:{backdropFilter:\"blur(100px)\",backgroundColor:\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\",WebkitBackdropFilter:\"blur(100px)\"},yftA4bZ6M:{backgroundColor:\"rgba(0, 0, 0, 0)\"},Z8INYhUFr:{backdropFilter:\"blur(50px)\",WebkitBackdropFilter:\"blur(50px)\"}},...addPropertyOverrides({A9AOvir3X:{\"data-framer-name\":\"Go back light\"},C_pZq2RdH:{\"data-framer-name\":\"Nav light tablet\"},E4OdvjBAT:{\"data-framer-name\":\"Nav scroll dark\"},gtEBysmkZ:{\"data-framer-name\":\"Nav dark tablet\"},IUqZmesqJ:{\"data-framer-name\":\"Go back dark\"},l7E26X3hP:{\"data-framer-name\":\"Nav dark\"},w92Cuwr6D:{\"data-framer-name\":\"Nav light mobile\"},yftA4bZ6M:{\"data-framer-name\":\"Nav light\"},Z8INYhUFr:{\"data-framer-name\":\"Nav dark mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l17kfr\",\"data-styles-preset\":\"zes_cOEW8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"\\xa92025\\xa0Tyrone\"})}),className:\"framer-c1rhr1\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"d6sPPOX_Z\",style:{\"--extracted-r6o4lv\":\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{A9AOvir3X:{\"--extracted-r6o4lv\":\"var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, rgb(0, 0, 0))\"},C_pZq2RdH:{\"--extracted-r6o4lv\":\"var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, rgb(0, 0, 0))\"},w92Cuwr6D:{\"--extracted-r6o4lv\":\"var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, rgb(0, 0, 0))\"},yftA4bZ6M:{\"--extracted-r6o4lv\":\"var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({A9AOvir3X:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l17kfr\",\"data-styles-preset\":\"zes_cOEW8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, rgb(0, 0, 0)))\"},children:\"\\xa92025\\xa0Tyrone\"})})},C_pZq2RdH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, rgb(0, 0, 0)))\"},children:\"\\xa92025\\xa0Tyrone\"})})},gtEBysmkZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"\\xa92025\\xa0Tyrone\"})})},w92Cuwr6D:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, rgb(0, 0, 0)))\"},children:\"\\xa92025\\xa0Tyrone\"})})},yftA4bZ6M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l17kfr\",\"data-styles-preset\":\"zes_cOEW8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, rgb(0, 0, 0)))\"},children:\"\\xa92025\\xa0Tyrone \"})})},Z8INYhUFr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19bix1m\",\"data-styles-preset\":\"JRsCseWjL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"\\xa92025\\xa0Tyrone\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10uq8e3\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"NpLp_LNF9\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12t8b2t\",\"data-framer-name\":\"Mode\",layoutDependency:layoutDependency,layoutId:\"F3yvKrFgQ\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":KfS_2OlbD\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":KfS_2OlbD\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{webPageId:\"dI7b1ADv9\"},implicitPathVariables:undefined},{href:{webPageId:\"dI7b1ADv9\"},implicitPathVariables:undefined},{href:{webPageId:\"dI7b1ADv9\"},implicitPathVariables:undefined},{href:{webPageId:\"dI7b1ADv9\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,...addPropertyOverrides({C_pZq2RdH:{y:(componentViewport?.y||0)+8+0+0},gtEBysmkZ:{y:(componentViewport?.y||0)+8+0+0},l7E26X3hP:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||21)-0-20)/2)+0+0},w92Cuwr6D:{y:(componentViewport?.y||0)+4+22.2+0+0},yftA4bZ6M:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||21)-0-20)/2)+0+0},Z8INYhUFr:{y:(componentViewport?.y||0)+8+22.2+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ht7791-container\",layoutDependency:layoutDependency,layoutId:\"dJpwS76Fc-container\",nodeId:\"dJpwS76Fc\",rendersWithMotion:true,scopeId:\"ufUr6fzRr\",children:/*#__PURE__*/_jsx(ButtonButton,{height:\"100%\",id:\"dJpwS76Fc\",layoutId:\"dJpwS76Fc\",Po2X5ZIUL:\"Dark\",style:{height:\"100%\"},variant:\"rvOZIYzF7\",width:\"100%\",yKSXSTalC:resolvedLinks[0],...addPropertyOverrides({C_pZq2RdH:{variant:\"dd_HuWYjt\",yKSXSTalC:resolvedLinks[5]},gtEBysmkZ:{variant:\"aItBnXi0M\",yKSXSTalC:resolvedLinks[6]},l7E26X3hP:{variant:\"ib31pn1Yh\",yKSXSTalC:resolvedLinks[1]},w92Cuwr6D:{variant:\"dd_HuWYjt\",yKSXSTalC:resolvedLinks[4]},yftA4bZ6M:{yKSXSTalC:resolvedLinks[2]},Z8INYhUFr:{variant:\"aItBnXi0M\",yKSXSTalC:resolvedLinks[3]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1tZWRpdW0=\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, rgb(0, 0, 0)))\"},children:\"/\"})}),className:\"framer-ksly6g\",fonts:[\"FS;Switzer-medium\"],layoutDependency:layoutDependency,layoutId:\"YdxUNZNQ4\",style:{\"--extracted-r6o4lv\":\"var(--token-6d4eb0fa-c977-4c05-9a67-f59f3a9df7df, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{gtEBysmkZ:{\"--extracted-r6o4lv\":\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\"},l7E26X3hP:{\"--extracted-r6o4lv\":\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\"},Z8INYhUFr:{\"--extracted-r6o4lv\":\"var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gtEBysmkZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1tZWRpdW0=\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"/\"})})},l7E26X3hP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1tZWRpdW0=\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"/\"})})},Z8INYhUFr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1tZWRpdW0=\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aec3f294-10a7-400c-a5b1-328a2087f3b1, rgb(255, 255, 255)))\"},children:\"/\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":zxA_2KqMt\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":aaVo5vyqn\",webPageId:\"JuxDjKqRJ\"},implicitPathVariables:undefined},{href:{webPageId:\"JuxDjKqRJ\"},implicitPathVariables:undefined},{href:{hash:\":KfS_2OlbD\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":KfS_2OlbD\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":KfS_2OlbD\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":KfS_2OlbD\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,...addPropertyOverrides({C_pZq2RdH:{y:(componentViewport?.y||0)+8+0+0},gtEBysmkZ:{y:(componentViewport?.y||0)+8+0+0},l7E26X3hP:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||21)-0-20)/2)+0+0},w92Cuwr6D:{y:(componentViewport?.y||0)+4+22.2+0+0},yftA4bZ6M:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||21)-0-20)/2)+0+0},Z8INYhUFr:{y:(componentViewport?.y||0)+8+22.2+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hvqk59-container\",layoutDependency:layoutDependency,layoutId:\"C487fnaPj-container\",nodeId:\"C487fnaPj\",rendersWithMotion:true,scopeId:\"ufUr6fzRr\",children:/*#__PURE__*/_jsx(ButtonButton,{height:\"100%\",id:\"C487fnaPj\",layoutId:\"C487fnaPj\",Po2X5ZIUL:\"Light\",style:{height:\"100%\"},variant:\"gEvpeYAP2\",width:\"100%\",yKSXSTalC:resolvedLinks1[0],...addPropertyOverrides({C_pZq2RdH:{variant:\"e4S2lOL3l\",yKSXSTalC:resolvedLinks1[5]},gtEBysmkZ:{variant:\"p6sHMJ39x\",yKSXSTalC:resolvedLinks1[6]},l7E26X3hP:{variant:\"i6ZpN2mT7\",yKSXSTalC:resolvedLinks1[1]},w92Cuwr6D:{variant:\"e4S2lOL3l\",yKSXSTalC:resolvedLinks1[4]},yftA4bZ6M:{yKSXSTalC:resolvedLinks1[2]},Z8INYhUFr:{variant:\"p6sHMJ39x\",yKSXSTalC:resolvedLinks1[3]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":KfS_2OlbD\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{webPageId:\"dI7b1ADv9\"},implicitPathVariables:undefined},{href:{hash:\":KfS_2OlbD\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":KfS_2OlbD\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{webPageId:\"dI7b1ADv9\"},implicitPathVariables:undefined},{href:{hash:\":KfS_2OlbD\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":KfS_2OlbD\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":KfS_2OlbD\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":KfS_2OlbD\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":KfS_2OlbD\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+(10+((componentViewport?.height||41)-20-20)/2)+0,...addPropertyOverrides({A9AOvir3X:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||21)-0-20)/2)+0},C_pZq2RdH:{y:(componentViewport?.y||0)+8+0},gtEBysmkZ:{y:(componentViewport?.y||0)+8+0},IUqZmesqJ:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||21)-0-20)/2)+0},l7E26X3hP:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||21)-0-20)/2)+0},w92Cuwr6D:{y:(componentViewport?.y||0)+4+22.2+0},yftA4bZ6M:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||21)-0-20)/2)+0},Z8INYhUFr:{y:(componentViewport?.y||0)+8+22.2+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-a0f9be-container\",layoutDependency:layoutDependency,layoutId:\"dwAvefLOP-container\",nodeId:\"dwAvefLOP\",rendersWithMotion:true,scopeId:\"ufUr6fzRr\",children:/*#__PURE__*/_jsx(ButtonButton,{height:\"100%\",id:\"dwAvefLOP\",layoutId:\"dwAvefLOP\",Po2X5ZIUL:\"Home\",style:{height:\"100%\"},variant:\"i6ZpN2mT7\",width:\"100%\",yKSXSTalC:resolvedLinks2[0],...addPropertyOverrides({A9AOvir3X:{Po2X5ZIUL:\"Go back\",variant:\"rvOZIYzF7\",yKSXSTalC:resolvedLinks2[5]},C_pZq2RdH:{variant:\"dd_HuWYjt\",yKSXSTalC:resolvedLinks2[8]},E4OdvjBAT:{yKSXSTalC:resolvedLinks2[1]},gtEBysmkZ:{variant:\"p6sHMJ39x\",yKSXSTalC:resolvedLinks2[9]},IUqZmesqJ:{Po2X5ZIUL:\"Go back\",yKSXSTalC:resolvedLinks2[4]},l7E26X3hP:{yKSXSTalC:resolvedLinks2[2]},w92Cuwr6D:{variant:\"dd_HuWYjt\",yKSXSTalC:resolvedLinks2[7]},yftA4bZ6M:{variant:\"rvOZIYzF7\",yKSXSTalC:resolvedLinks2[3]},Z8INYhUFr:{variant:\"p6sHMJ39x\",yKSXSTalC:resolvedLinks2[6]}},baseVariant,gestureVariant)})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":zxA_2KqMt\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{webPageId:\"dI7b1ADv9\"},implicitPathVariables:undefined},{href:{hash:\":zxA_2KqMt\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":zxA_2KqMt\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":zxA_2KqMt\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":zxA_2KqMt\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":zxA_2KqMt\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":zxA_2KqMt\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+(10+((componentViewport?.height||41)-20-20)/2)+0,...addPropertyOverrides({C_pZq2RdH:{y:(componentViewport?.y||0)+8+0},gtEBysmkZ:{y:(componentViewport?.y||0)+8+0},l7E26X3hP:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||21)-0-20)/2)+0},w92Cuwr6D:{y:(componentViewport?.y||0)+4+22.2+0},yftA4bZ6M:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||21)-0-20)/2)+0},Z8INYhUFr:{y:(componentViewport?.y||0)+8+22.2+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14ym39z-container\",layoutDependency:layoutDependency,layoutId:\"uemrUByQ7-container\",nodeId:\"uemrUByQ7\",rendersWithMotion:true,scopeId:\"ufUr6fzRr\",children:/*#__PURE__*/_jsx(ButtonButton,{height:\"100%\",id:\"uemrUByQ7\",layoutId:\"uemrUByQ7\",Po2X5ZIUL:\"About\",style:{height:\"100%\"},variant:\"i6ZpN2mT7\",width:\"100%\",yKSXSTalC:resolvedLinks3[0],...addPropertyOverrides({C_pZq2RdH:{variant:\"dd_HuWYjt\",yKSXSTalC:resolvedLinks3[6]},E4OdvjBAT:{yKSXSTalC:resolvedLinks3[1]},gtEBysmkZ:{variant:\"p6sHMJ39x\",yKSXSTalC:resolvedLinks3[7]},l7E26X3hP:{yKSXSTalC:resolvedLinks3[2]},w92Cuwr6D:{variant:\"dd_HuWYjt\",yKSXSTalC:resolvedLinks3[5]},yftA4bZ6M:{variant:\"rvOZIYzF7\",yKSXSTalC:resolvedLinks3[3]},Z8INYhUFr:{variant:\"p6sHMJ39x\",yKSXSTalC:resolvedLinks3[4]}},baseVariant,gestureVariant)})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":mrk2OGQRE\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{webPageId:\"dI7b1ADv9\"},implicitPathVariables:undefined},{href:{hash:\":mrk2OGQRE\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":mrk2OGQRE\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":mrk2OGQRE\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":mrk2OGQRE\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":mrk2OGQRE\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":mrk2OGQRE\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+(10+((componentViewport?.height||41)-20-20)/2)+0,...addPropertyOverrides({C_pZq2RdH:{y:(componentViewport?.y||0)+8+0},gtEBysmkZ:{y:(componentViewport?.y||0)+8+0},l7E26X3hP:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||21)-0-20)/2)+0},w92Cuwr6D:{y:(componentViewport?.y||0)+4+22.2+0},yftA4bZ6M:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||21)-0-20)/2)+0},Z8INYhUFr:{y:(componentViewport?.y||0)+8+22.2+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-erp18r-container\",layoutDependency:layoutDependency,layoutId:\"NkLw97itw-container\",nodeId:\"NkLw97itw\",rendersWithMotion:true,scopeId:\"ufUr6fzRr\",children:/*#__PURE__*/_jsx(ButtonButton,{height:\"100%\",id:\"NkLw97itw\",layoutId:\"NkLw97itw\",Po2X5ZIUL:\"Works\",style:{height:\"100%\"},variant:\"i6ZpN2mT7\",width:\"100%\",yKSXSTalC:resolvedLinks4[0],...addPropertyOverrides({C_pZq2RdH:{variant:\"dd_HuWYjt\",yKSXSTalC:resolvedLinks4[6]},E4OdvjBAT:{yKSXSTalC:resolvedLinks4[1]},gtEBysmkZ:{variant:\"p6sHMJ39x\",yKSXSTalC:resolvedLinks4[7]},l7E26X3hP:{yKSXSTalC:resolvedLinks4[2]},w92Cuwr6D:{variant:\"dd_HuWYjt\",yKSXSTalC:resolvedLinks4[5]},yftA4bZ6M:{variant:\"rvOZIYzF7\",yKSXSTalC:resolvedLinks4[3]},Z8INYhUFr:{variant:\"p6sHMJ39x\",yKSXSTalC:resolvedLinks4[4]}},baseVariant,gestureVariant)})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":oGGjBndS_\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{webPageId:\"dI7b1ADv9\"},implicitPathVariables:undefined},{href:{hash:\":oGGjBndS_\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":oGGjBndS_\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":oGGjBndS_\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":oGGjBndS_\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":oGGjBndS_\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined},{href:{hash:\":oGGjBndS_\",webPageId:\"ZKHw67f68\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+(10+((componentViewport?.height||41)-20-20)/2)+0,...addPropertyOverrides({C_pZq2RdH:{y:(componentViewport?.y||0)+8+0},gtEBysmkZ:{y:(componentViewport?.y||0)+8+0},l7E26X3hP:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||21)-0-20)/2)+0},w92Cuwr6D:{y:(componentViewport?.y||0)+4+22.2+0},yftA4bZ6M:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||21)-0-20)/2)+0},Z8INYhUFr:{y:(componentViewport?.y||0)+8+22.2+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18ks81q-container\",layoutDependency:layoutDependency,layoutId:\"Qe79LE7er-container\",nodeId:\"Qe79LE7er\",rendersWithMotion:true,scopeId:\"ufUr6fzRr\",children:/*#__PURE__*/_jsx(ButtonButton,{height:\"100%\",id:\"Qe79LE7er\",layoutId:\"Qe79LE7er\",Po2X5ZIUL:\"Contact\",style:{height:\"100%\"},variant:\"i6ZpN2mT7\",width:\"100%\",yKSXSTalC:resolvedLinks5[0],...addPropertyOverrides({C_pZq2RdH:{variant:\"dd_HuWYjt\",yKSXSTalC:resolvedLinks5[6]},E4OdvjBAT:{yKSXSTalC:resolvedLinks5[1]},gtEBysmkZ:{variant:\"p6sHMJ39x\",yKSXSTalC:resolvedLinks5[7]},l7E26X3hP:{yKSXSTalC:resolvedLinks5[2]},w92Cuwr6D:{variant:\"dd_HuWYjt\",yKSXSTalC:resolvedLinks5[5]},yftA4bZ6M:{variant:\"rvOZIYzF7\",yKSXSTalC:resolvedLinks5[3]},Z8INYhUFr:{variant:\"p6sHMJ39x\",yKSXSTalC:resolvedLinks5[4]}},baseVariant,gestureVariant)})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wU8ar.framer-b9g2m5, .framer-wU8ar .framer-b9g2m5 { display: block; }\",\".framer-wU8ar.framer-249oqk { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 10px 20px 10px 20px; position: relative; width: 1000px; }\",\".framer-wU8ar .framer-c1rhr1, .framer-wU8ar .framer-ksly6g { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-wU8ar .framer-10uq8e3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-wU8ar .framer-12t8b2t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px 40px 0px 0px; position: relative; width: min-content; }\",\".framer-wU8ar .framer-ht7791-container, .framer-wU8ar .framer-hvqk59-container, .framer-wU8ar .framer-a0f9be-container, .framer-wU8ar .framer-14ym39z-container, .framer-wU8ar .framer-erp18r-container, .framer-wU8ar .framer-18ks81q-container { flex: none; height: 20px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wU8ar .framer-10uq8e3, .framer-wU8ar .framer-12t8b2t { gap: 0px; } .framer-wU8ar .framer-10uq8e3 > *, .framer-wU8ar .framer-12t8b2t > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wU8ar .framer-10uq8e3 > :first-child, .framer-wU8ar .framer-12t8b2t > :first-child { margin-left: 0px; } .framer-wU8ar .framer-10uq8e3 > :last-child, .framer-wU8ar .framer-12t8b2t > :last-child { margin-right: 0px; } }\",\".framer-wU8ar.framer-v-13jn2vo.framer-249oqk { height: 41px; }\",\".framer-wU8ar.framer-v-6wkofd.framer-249oqk, .framer-wU8ar.framer-v-10r1hy4.framer-249oqk, .framer-wU8ar.framer-v-qtk7ms.framer-249oqk, .framer-wU8ar.framer-v-1wzea2p.framer-249oqk { padding: 0px; }\",\".framer-wU8ar.framer-v-10r1hy4 .framer-c1rhr1 { order: 0; }\",\".framer-wU8ar.framer-v-10r1hy4 .framer-10uq8e3 { order: 1; }\",\".framer-wU8ar.framer-v-1slqa7v.framer-249oqk { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 4px; justify-content: flex-start; padding: 8px 10px 8px 10px; width: 500px; }\",\".framer-wU8ar.framer-v-1slqa7v .framer-10uq8e3, .framer-wU8ar.framer-v-1cpxvf .framer-10uq8e3 { gap: unset; justify-content: space-between; width: 100%; }\",\".framer-wU8ar.framer-v-1slqa7v .framer-12t8b2t, .framer-wU8ar.framer-v-1cpxvf .framer-12t8b2t, .framer-wU8ar.framer-v-1qj7yc2 .framer-12t8b2t, .framer-wU8ar.framer-v-1pfgc3n .framer-12t8b2t { gap: 2px; padding: 0px 8px 0px 0px; }\",\".framer-wU8ar.framer-v-1slqa7v .framer-ht7791-container, .framer-wU8ar.framer-v-1slqa7v .framer-hvqk59-container, .framer-wU8ar.framer-v-1slqa7v .framer-a0f9be-container, .framer-wU8ar.framer-v-1slqa7v .framer-14ym39z-container, .framer-wU8ar.framer-v-1slqa7v .framer-erp18r-container, .framer-wU8ar.framer-v-1slqa7v .framer-18ks81q-container, .framer-wU8ar.framer-v-1cpxvf .framer-ht7791-container, .framer-wU8ar.framer-v-1cpxvf .framer-hvqk59-container, .framer-wU8ar.framer-v-1cpxvf .framer-a0f9be-container, .framer-wU8ar.framer-v-1cpxvf .framer-14ym39z-container, .framer-wU8ar.framer-v-1cpxvf .framer-erp18r-container, .framer-wU8ar.framer-v-1cpxvf .framer-18ks81q-container, .framer-wU8ar.framer-v-1qj7yc2 .framer-ht7791-container, .framer-wU8ar.framer-v-1qj7yc2 .framer-hvqk59-container, .framer-wU8ar.framer-v-1qj7yc2 .framer-a0f9be-container, .framer-wU8ar.framer-v-1qj7yc2 .framer-14ym39z-container, .framer-wU8ar.framer-v-1qj7yc2 .framer-erp18r-container, .framer-wU8ar.framer-v-1qj7yc2 .framer-18ks81q-container, .framer-wU8ar.framer-v-1pfgc3n .framer-ht7791-container, .framer-wU8ar.framer-v-1pfgc3n .framer-hvqk59-container, .framer-wU8ar.framer-v-1pfgc3n .framer-a0f9be-container, .framer-wU8ar.framer-v-1pfgc3n .framer-14ym39z-container, .framer-wU8ar.framer-v-1pfgc3n .framer-erp18r-container, .framer-wU8ar.framer-v-1pfgc3n .framer-18ks81q-container { height: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wU8ar.framer-v-1slqa7v.framer-249oqk, .framer-wU8ar.framer-v-1slqa7v .framer-10uq8e3, .framer-wU8ar.framer-v-1slqa7v .framer-12t8b2t { gap: 0px; } .framer-wU8ar.framer-v-1slqa7v.framer-249oqk > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-wU8ar.framer-v-1slqa7v.framer-249oqk > :first-child { margin-top: 0px; } .framer-wU8ar.framer-v-1slqa7v.framer-249oqk > :last-child { margin-bottom: 0px; } .framer-wU8ar.framer-v-1slqa7v .framer-10uq8e3 > *, .framer-wU8ar.framer-v-1slqa7v .framer-10uq8e3 > :first-child, .framer-wU8ar.framer-v-1slqa7v .framer-10uq8e3 > :last-child { margin: 0px; } .framer-wU8ar.framer-v-1slqa7v .framer-12t8b2t > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-wU8ar.framer-v-1slqa7v .framer-12t8b2t > :first-child { margin-left: 0px; } .framer-wU8ar.framer-v-1slqa7v .framer-12t8b2t > :last-child { margin-right: 0px; } }\",\".framer-wU8ar.framer-v-1cpxvf.framer-249oqk { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 4px; justify-content: flex-start; padding: 4px 10px 8px 10px; width: 500px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wU8ar.framer-v-1cpxvf.framer-249oqk, .framer-wU8ar.framer-v-1cpxvf .framer-10uq8e3, .framer-wU8ar.framer-v-1cpxvf .framer-12t8b2t { gap: 0px; } .framer-wU8ar.framer-v-1cpxvf.framer-249oqk > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-wU8ar.framer-v-1cpxvf.framer-249oqk > :first-child { margin-top: 0px; } .framer-wU8ar.framer-v-1cpxvf.framer-249oqk > :last-child { margin-bottom: 0px; } .framer-wU8ar.framer-v-1cpxvf .framer-10uq8e3 > *, .framer-wU8ar.framer-v-1cpxvf .framer-10uq8e3 > :first-child, .framer-wU8ar.framer-v-1cpxvf .framer-10uq8e3 > :last-child { margin: 0px; } .framer-wU8ar.framer-v-1cpxvf .framer-12t8b2t > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-wU8ar.framer-v-1cpxvf .framer-12t8b2t > :first-child { margin-left: 0px; } .framer-wU8ar.framer-v-1cpxvf .framer-12t8b2t > :last-child { margin-right: 0px; } }\",\".framer-wU8ar.framer-v-1qj7yc2.framer-249oqk, .framer-wU8ar.framer-v-1pfgc3n.framer-249oqk { align-content: flex-start; align-items: flex-start; gap: 4px; justify-content: flex-start; padding: 8px 10px 8px 10px; width: 800px; }\",\".framer-wU8ar.framer-v-1qj7yc2 .framer-10uq8e3, .framer-wU8ar.framer-v-1pfgc3n .framer-10uq8e3 { flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wU8ar.framer-v-1qj7yc2.framer-249oqk, .framer-wU8ar.framer-v-1qj7yc2 .framer-12t8b2t { gap: 0px; } .framer-wU8ar.framer-v-1qj7yc2.framer-249oqk > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-wU8ar.framer-v-1qj7yc2.framer-249oqk > :first-child, .framer-wU8ar.framer-v-1qj7yc2 .framer-12t8b2t > :first-child { margin-left: 0px; } .framer-wU8ar.framer-v-1qj7yc2.framer-249oqk > :last-child, .framer-wU8ar.framer-v-1qj7yc2 .framer-12t8b2t > :last-child { margin-right: 0px; } .framer-wU8ar.framer-v-1qj7yc2 .framer-12t8b2t > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wU8ar.framer-v-1pfgc3n.framer-249oqk, .framer-wU8ar.framer-v-1pfgc3n .framer-12t8b2t { gap: 0px; } .framer-wU8ar.framer-v-1pfgc3n.framer-249oqk > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-wU8ar.framer-v-1pfgc3n.framer-249oqk > :first-child, .framer-wU8ar.framer-v-1pfgc3n .framer-12t8b2t > :first-child { margin-left: 0px; } .framer-wU8ar.framer-v-1pfgc3n.framer-249oqk > :last-child, .framer-wU8ar.framer-v-1pfgc3n .framer-12t8b2t > :last-child { margin-right: 0px; } .framer-wU8ar.framer-v-1pfgc3n .framer-12t8b2t > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 41\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"E4OdvjBAT\":{\"layout\":[\"fixed\",\"fixed\"]},\"l7E26X3hP\":{\"layout\":[\"fixed\",\"auto\"]},\"yftA4bZ6M\":{\"layout\":[\"fixed\",\"auto\"]},\"IUqZmesqJ\":{\"layout\":[\"fixed\",\"auto\"]},\"A9AOvir3X\":{\"layout\":[\"fixed\",\"auto\"]},\"Z8INYhUFr\":{\"layout\":[\"fixed\",\"auto\"]},\"w92Cuwr6D\":{\"layout\":[\"fixed\",\"auto\"]},\"C_pZq2RdH\":{\"layout\":[\"fixed\",\"auto\"]},\"gtEBysmkZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerufUr6fzRr=withCSS(Component,css,\"framer-wU8ar\");export default FramerufUr6fzRr;FramerufUr6fzRr.displayName=\"Navigation/Nav\";FramerufUr6fzRr.defaultProps={height:41,width:1e3};addPropertyControls(FramerufUr6fzRr,{variant:{options:[\"F_7SapKcC\",\"E4OdvjBAT\",\"l7E26X3hP\",\"yftA4bZ6M\",\"IUqZmesqJ\",\"A9AOvir3X\",\"Z8INYhUFr\",\"w92Cuwr6D\",\"C_pZq2RdH\",\"gtEBysmkZ\"],optionTitles:[\"Nav scroll light\",\"Nav scroll dark\",\"Nav dark\",\"Nav light\",\"Go back dark\",\"Go back light\",\"Nav dark mobile\",\"Nav light mobile\",\"Nav light tablet\",\"Nav dark tablet\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerufUr6fzRr,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/OYB4CXKJQXKTNSLJMTDQOIVUL2V5EL7S/WYO2P7DQVV5RNXGMCUO2HL4RJP4VFUAS/6XPIMU23OJVRY676OG5YVJMWEHWICATX.woff2\",weight:\"500\"}]},...ButtonButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerufUr6fzRr\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"E4OdvjBAT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"l7E26X3hP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yftA4bZ6M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IUqZmesqJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"A9AOvir3X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Z8INYhUFr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w92Cuwr6D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C_pZq2RdH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gtEBysmkZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1000\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"41\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ufUr6fzRr.map"],
  "mappings": "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",
  "names": ["fontStack", "formatTimeOrDate", "outputType", "showYear", "showMonth", "showWeekday", "showMinutes", "showSeconds", "timeFormat", "monthFormat", "localCode", "date", "onlyYearIsShown", "defaultProps", "Time", "props", "mergedProps", "color", "font", "tabularFont", "useLocaleCode", "getTextContent", "te", "timeoutRef", "pe", "updateCountdown", "node", "prev", "tick", "next", "textContent", "visible", "setIsVisible", "ye", "isCanvas", "RenderTarget", "ue", "Z", "p", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Po2X5ZIUL", "yKSXSTalC", "E0qxfmqZ9", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1k83j6g", "args", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "css", "FramerCAiChgF1B", "withCSS", "CAiChgF1B_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStack", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "useOnEnter", "onEnter", "enabled", "useOnSpecificTargetChange", "useOnExit", "onExit", "goal", "callback", "isInTarget", "useIsInCurrentNavigationTarget", "ue", "isBrowserSafari", "navigator", "userAgent", "useIsBrowserSafari", "se", "fontWeights", "useFontControls", "props", "fontFamily", "fontSize", "fontWeight", "font", "fontWeightName", "customFontStack", "fontStack", "fontFamilyStyle", "fetchCustomFonts", "fontStore", "e", "ue", "useRenderTarget", "se", "RenderTarget", "useIsOnCanvas", "se", "RenderTarget", "useRadius", "props", "borderRadius", "isMixedBorderRadius", "topLeftRadius", "topRightRadius", "bottomRightRadius", "bottomLeftRadius", "se", "borderRadiusControl", "ControlType", "usePadding", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "paddingControl", "Clipboard", "props", "label", "content", "fill", "color", "style", "onClick", "font", "hoverOptions", "rest", "deprecatedFont", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "handleClick", "te", "ref", "navigator", "p", "motion", "addPropertyControls", "ControlType", "defaultEvents", "SVG", "props", "customSvgElement", "setCustomSvgElement", "ye", "ue", "svgContent", "processCustomSVGContent", "replacements", "hasCustomStroke", "hasCustomStrokeWidth", "hasLineCap", "hasLineJoin", "circleFillRegex", "match", "updatedCircle", "regex", "replacement", "customContainerStyle", "p", "addPropertyControls", "ControlType", "SVG_default", "SVGFonts", "getFonts", "SVG_default", "ClipboardFonts", "Clipboard", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "clipboardContent", "height", "iconCopied", "icons", "id", "labelCopied", "labelCopy", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "zhU3xY_Ux", "bPCJyrIbK", "rIGEnoYqD", "PbW7K4Unr", "qIDNNRI0q", "DSjhwwbwG", "aCeOAHQBLTNRZ_28SA", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1yktaqc", "args", "onTapvtcpez", "onAppeare8mvik", "onTapagiu4", "onAppear5m9ama", "useOnVariantChange", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "css", "FramerEz4EYNpXj", "withCSS", "Ez4EYNpXj_default", "addPropertyControls", "ControlType", "addFonts", "ButtonButtonCopyFonts", "getFonts", "Ez4EYNpXj_default", "MotionDivWithFX", "withFX", "motion", "ButtonButtonFonts", "CAiChgF1B_default", "TimeDateFonts", "Time", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "DSjhwwbwG17wusro", "args", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerOf9MXqHn4", "withCSS", "Of9MXqHn4_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ButtonButtonFonts", "getFonts", "CAiChgF1B_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", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "isDisplayed1", "LayoutGroup", "u", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "css", "FramerufUr6fzRr", "withCSS", "ufUr6fzRr_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
