{"version":3,"file":"I0Gry1Gu9.ZNxd5Ftu.mjs","names":["useCallback","useRef","useState","fonts","css","className","fonts","css","className","fonts","css","className","fonts","css","className","fonts","css","className","addPropertyOverrides","TimeDate","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","useRef","className","Image","css","fonts","css","className","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","useRef","className","css","_Fragment","fonts","css","className","fonts","css","className","fonts","css","className","MainButton","x","useRef","className","css"],"sources":["https:/framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js","https:/framerusercontent.com/modules/yLYT4bBB80pxFRKRYqf4/Dksk94wy9a9gjahh16d4/azdl1AvOx.js","https:/framerusercontent.com/modules/XVDuUmBnef9I8wju4AxO/XjTWZWVdFrLkuQMTqEjn/Sa0KYnozZ.js","https:/framerusercontent.com/modules/Eor3LViuVPnnwDMBA067/ct7gVGBnZ8kI7MpF6x48/ShWZEHUVJ.js","https:/framerusercontent.com/modules/Zs3RatRyOudBuzWprkg0/tbczfyQGJgMZ24lGbC6J/SOIjhPxvx.js","https:/framerusercontent.com/modules/tjEYrLjUQqGNBieVCwGO/953bJ1nKwxYaCPiM6v1K/TqXXBne5W.js","https:/framerusercontent.com/modules/v4LHVmZLr3qDrsrsmrAB/SUHRd5ThTI3dy9rQSb2M/h6h4fuPpF.js","https:/framerusercontent.com/modules/dK364s63RL8zwGyG7pi4/35OjC6zL4t2Sd7qGCx7c/gF0iu5Eho.js","https:/framerusercontent.com/modules/HlFJ9mE9AyEHKy7qjvXC/ezdkklxEfwqs7yRH9zuD/rBkgiofdr.js","https:/framerusercontent.com/modules/9ajhXMTvNHa3o84QkAph/PajmEC9KX2YkEmLmmwER/StopScroll_Prod.js","https:/framerusercontent.com/modules/FwbCTbOH41ooSZ4ovPpl/P9DPEDCvnSvycgynqMg9/h8pMRLjyh.js","https:/framerusercontent.com/modules/wyliyBX09fUguCNBsZBb/eDjPzqAzujx5G70I2MTG/QFc_gNAUq.js","https:/framerusercontent.com/modules/R84rNqGrFbC2YIroyx8b/Lqeaal9FY96cBMTw4gLE/ro7OPezbn.js","https:/framerusercontent.com/modules/ytJ2jobsQJhLNEDNxw2Y/12NPJGfYavpwwFsVqXpk/JhaIXtr0U.js","https:/framerusercontent.com/modules/t7THTLbSjd1vNMk01sCm/NjiS5ce7IXpibQQUyFLM/I0Gry1Gu9.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’t 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 (f030ee3)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Haffer Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Haffer Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/iqpHHMapspN1ZqZl6618xxUE.woff2\"}]}];export const css=['.framer-3cag6 .framer-styles-preset-1bsb0r8:not(.rich-text-wrapper), .framer-3cag6 .framer-styles-preset-1bsb0r8.rich-text-wrapper p { --framer-font-family: \"Haffer Bold\", \"Haffer Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, #716d6d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 768px) { .framer-3cag6 .framer-styles-preset-1bsb0r8:not(.rich-text-wrapper), .framer-3cag6 .framer-styles-preset-1bsb0r8.rich-text-wrapper p { --framer-font-family: \"Haffer Bold\", \"Haffer Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, #716d6d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 767px) and (min-width: 0px) { .framer-3cag6 .framer-styles-preset-1bsb0r8:not(.rich-text-wrapper), .framer-3cag6 .framer-styles-preset-1bsb0r8.rich-text-wrapper p { --framer-font-family: \"Haffer Bold\", \"Haffer Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, #716d6d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-3cag6\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (f030ee3)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Haffer Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Haffer Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/iqpHHMapspN1ZqZl6618xxUE.woff2\"}]}];export const css=['.framer-n5uwJ .framer-styles-preset-3lb7um:not(.rich-text-wrapper), .framer-n5uwJ .framer-styles-preset-3lb7um.rich-text-wrapper p { --framer-font-family: \"Haffer Bold\", \"Haffer Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, #716d6d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 768px) { .framer-n5uwJ .framer-styles-preset-3lb7um:not(.rich-text-wrapper), .framer-n5uwJ .framer-styles-preset-3lb7um.rich-text-wrapper p { --framer-font-family: \"Haffer Bold\", \"Haffer Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, #716d6d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 767px) and (min-width: 0px) { .framer-n5uwJ .framer-styles-preset-3lb7um:not(.rich-text-wrapper), .framer-n5uwJ .framer-styles-preset-3lb7um.rich-text-wrapper p { --framer-font-family: \"Haffer Bold\", \"Haffer Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, #716d6d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-n5uwJ\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (f030ee3)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Haffer Medium\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Haffer Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/2fazGb4KFqyY0UVKuGAf33r38.woff2\"}]}];export const css=['.framer-t10Uf .framer-styles-preset-fc18ei:not(.rich-text-wrapper), .framer-t10Uf .framer-styles-preset-fc18ei.rich-text-wrapper p { --framer-font-family: \"Haffer Medium\", \"Haffer Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, #716d6d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 768px) { .framer-t10Uf .framer-styles-preset-fc18ei:not(.rich-text-wrapper), .framer-t10Uf .framer-styles-preset-fc18ei.rich-text-wrapper p { --framer-font-family: \"Haffer Medium\", \"Haffer Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, #716d6d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 767px) and (min-width: 0px) { .framer-t10Uf .framer-styles-preset-fc18ei:not(.rich-text-wrapper), .framer-t10Uf .framer-styles-preset-fc18ei.rich-text-wrapper p { --framer-font-family: \"Haffer Medium\", \"Haffer Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, #716d6d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-t10Uf\";\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 (f030ee3)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Haffer Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Haffer Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/iqpHHMapspN1ZqZl6618xxUE.woff2\"}]}];export const css=[\".framer-RObIY .framer-styles-preset-ys975a:not(.rich-text-wrapper), .framer-RObIY .framer-styles-preset-ys975a.rich-text-wrapper h4 { --framer-font-family: \\\"Haffer Bold\\\", \\\"Haffer Bold Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-382b7462-4f82-44d1-bc11-550c4fdec63b, #241f1f); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\",\"@media (max-width: 1199px) and (min-width: 768px) { .framer-RObIY .framer-styles-preset-ys975a:not(.rich-text-wrapper), .framer-RObIY .framer-styles-preset-ys975a.rich-text-wrapper h4 { --framer-font-family: \\\"Haffer Bold\\\", \\\"Haffer Bold Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-382b7462-4f82-44d1-bc11-550c4fdec63b, #241f1f); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\",\"@media (max-width: 767px) and (min-width: 0px) { .framer-RObIY .framer-styles-preset-ys975a:not(.rich-text-wrapper), .framer-RObIY .framer-styles-preset-ys975a.rich-text-wrapper h4 { --framer-font-family: \\\"Haffer Bold\\\", \\\"Haffer Bold Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-382b7462-4f82-44d1-bc11-550c4fdec63b, #241f1f); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\"];export const className=\"framer-RObIY\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (f14cb6b)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-m8Fjj .framer-styles-preset-htg9wz:not(.rich-text-wrapper), .framer-m8Fjj .framer-styles-preset-htg9wz.rich-text-wrapper a { --framer-link-current-text-color: var(--token-c14ad992-4298-4b17-9928-8523585e1be8, #ffffff); --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-e97e3b73-5102-4469-825f-e64224c471b5, #e9e9e9); --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-c14ad992-4298-4b17-9928-8523585e1be8, #ffffff); --framer-link-text-decoration: none; }\"];export const className=\"framer-m8Fjj\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,Link,RichText,SmartComponentScopedContainer,SVG,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 CustomHubspotForm from\"https://framerusercontent.com/modules/6N4rItB93vBCFWmPezjL/pmDpldxL3wcIpmsJgIE8/New_form.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/yLYT4bBB80pxFRKRYqf4/Dksk94wy9a9gjahh16d4/azdl1AvOx.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/XVDuUmBnef9I8wju4AxO/XjTWZWVdFrLkuQMTqEjn/Sa0KYnozZ.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/Eor3LViuVPnnwDMBA067/ct7gVGBnZ8kI7MpF6x48/ShWZEHUVJ.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Zs3RatRyOudBuzWprkg0/tbczfyQGJgMZ24lGbC6J/SOIjhPxvx.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/tjEYrLjUQqGNBieVCwGO/953bJ1nKwxYaCPiM6v1K/TqXXBne5W.js\";const CustomHubspotFormFonts=getFonts(CustomHubspotForm);const TimeDateFonts=getFonts(TimeDate);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"YKdeu5ofT\",\"Fhh9zhrPN\",\"nGZHORsVj\"];const serializationHash=\"framer-esO2v\";const variantClassNames={Fhh9zhrPN:\"framer-v-1hcqx11\",nGZHORsVj:\"framer-v-z0ildy\",YKdeu5ofT:\"framer-v-1acmiz9\"};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:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:0,delay:0,duration:1,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"YKdeu5ofT\",Phone:\"nGZHORsVj\",Tablet:\"Fhh9zhrPN\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"YKdeu5ofT\"};};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:\"YKdeu5ofT\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"Fhh9zhrPN\",\"nGZHORsVj\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"Fhh9zhrPN\",\"nGZHORsVj\"].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.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1acmiz9\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"YKdeu5ofT\",ref:refBinding,style:{backgroundColor:\"rgb(255, 92, 95)\",...style},...addPropertyOverrides({Fhh9zhrPN:{\"data-framer-name\":\"Tablet\"},nGZHORsVj:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cwfdnb\",\"data-framer-name\":\"Background\",layoutDependency:layoutDependency,layoutId:\"j_NxXNwPL\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:32,borderBottomRightRadius:32}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-tk4om4\",\"data-framer-name\":\"Frame 2147224619\",layoutDependency:layoutDependency,layoutId:\"sJ8EYMGQS\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w3uqn4\",layoutDependency:layoutDependency,layoutId:\"Tl2SQesTb\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t85t8k\",\"data-framer-name\":\"Frame 2147224617\",layoutDependency:layoutDependency,layoutId:\"GfmcLRtfk\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9i8vc8\",\"data-framer-name\":\"Frame 2147224616\",layoutDependency:layoutDependency,layoutId:\"ROuDwSM08\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mp2Z5AjDb\"},motionChild:true,nodeId:\"xV_ZcHzhJ\",openInNewTab:false,scopeId:\"h6h4fuPpF\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1sby21 framer-g965du\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"xV_ZcHzhJ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-sh8jey\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:168,layoutDependency:layoutDependency,layoutId:\"Iqn5l1mqk\",svg:'<svg width=\"168\" height=\"56\" viewBox=\"0 0 168 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M105.325 0C102.949 0 101.232 1.66816 101.232 3.99179C101.232 6.31542 102.951 7.98358 105.325 7.98358C107.699 7.98358 109.469 6.26487 109.469 3.99179C109.469 1.71871 107.701 0 105.325 0Z\" fill=\"white\"/>\\n<path d=\"M118.801 20.9278H118.799C118.799 19.2276 120.562 18.2183 122.828 18.2183C126.038 18.2183 127.863 19.8544 128.429 22.3095H135.666C135.036 16.3311 130.696 12.3022 122.828 12.3022C115.78 12.3022 111.562 16.3311 111.562 21.4282C111.562 28.2554 117.322 29.7459 122.16 30.9977C125.663 31.9039 128.682 32.6851 128.682 35.2756C128.682 37.4156 126.731 38.8007 123.961 38.8007C120.122 38.8007 118.422 36.6607 118.171 33.9529H110.87C111.247 40.4992 115.967 45.0302 123.961 45.0302C131.009 45.0302 136.172 40.939 136.172 34.9605C136.172 27.4595 130.004 25.9703 125.019 24.7666C121.638 23.9501 118.801 23.265 118.801 20.9244V20.9278Z\" fill=\"white\"/>\\n<path d=\"M101.291 12.8077H109.285V44.9307H101.291V12.8077Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M64.4225 12.3022C60.269 12.3022 56.4288 14.1271 54.604 16.7085V12.806H46.6103V55.9827H54.604V40.5632C56.4288 43.207 60.3313 45.0318 64.4225 45.0318C73.7372 45.0318 79.842 38.612 79.842 28.667C79.842 18.7221 73.7372 12.3022 64.4225 12.3022ZM63.1638 38.1705C58.1273 38.1705 54.604 34.268 54.604 28.667C54.604 23.0661 58.1273 19.0995 63.1638 19.0995C68.2003 19.0995 71.7877 22.938 71.7877 28.667C71.7877 34.3961 68.2003 38.1705 63.1638 38.1705Z\" fill=\"white\"/>\\n<path d=\"M91.9555 33.2621H91.9572V33.2605C91.9572 36.4721 93.5933 38.1082 96.1748 38.1082C97.3695 38.1082 98.5658 37.8555 99.5094 37.478V44.213C98.5018 44.6545 96.7393 45.0319 94.9144 45.0319C88.2434 45.0319 83.9635 40.8767 83.9635 33.9547V19.2917H78.8664V12.8078H83.9635L83.9703 12.7893L85.7715 5.06688H91.9555V12.8061H99.4454V19.29H91.9555V33.2621Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M149.713 37.0634H149.715L167.636 20.5638C164.817 15.6385 159.511 12.3174 153.428 12.3174C144.395 12.3174 137.07 19.6404 137.07 28.6754C137.07 37.7105 144.393 45.0335 153.428 45.0335C156.495 45.0335 162.605 44.2331 167.635 38.5429V30.9991C158.65 41.4832 149.715 37.0651 149.715 37.0651L149.713 37.0634ZM148.286 20.9362C150.535 19.0742 154.257 18.412 156.969 19.5275C157.172 19.6118 158.163 20.1981 158.163 20.1981L145.342 32.0775C144.208 28.0874 145.002 23.6524 148.286 20.9345V20.9362Z\" fill=\"white\"/>\\n<path d=\"M22.5269 8.07126V0.025341C34.9673 0.025341 45.0538 10.1101 45.0538 22.5522C45.0538 34.9943 34.969 45.0791 22.5269 45.0791C10.0848 45.0791 0 34.9927 0 22.5522H8.04592C8.04592 30.5493 14.5298 37.0332 22.5269 37.0332C30.524 37.0332 37.0079 30.5493 37.0079 22.5522C37.0079 14.5552 30.524 8.07126 22.5269 8.07126Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1weq10s\",layoutDependency:layoutDependency,layoutId:\"jp8qwN_Zz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-ys975a\",\"data-styles-preset\":\"SOIjhPxvx\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-96f5bd3f-8dbd-4de3-bd00-4c6381aef386, rgb(98, 0, 0)))\"},children:\"Website\"})}),className:\"framer-9vobk6\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gm6cnwl0A\",style:{\"--extracted-1eung3n\":\"var(--token-96f5bd3f-8dbd-4de3-bd00-4c6381aef386, rgb(98, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{nGZHORsVj:{\"--extracted-1of0zx5\":\"var(--token-96f5bd3f-8dbd-4de3-bd00-4c6381aef386, rgb(98, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nGZHORsVj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-ys975a\",\"data-styles-preset\":\"SOIjhPxvx\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-96f5bd3f-8dbd-4de3-bd00-4c6381aef386, rgb(98, 0, 0)))\"},children:\"Website\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-ys975a\",\"data-styles-preset\":\"SOIjhPxvx\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-96f5bd3f-8dbd-4de3-bd00-4c6381aef386, rgb(98, 0, 0)))\"},children:\"analytics\"})}),className:\"framer-1xslsqk\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"w8ESogy4Z\",style:{\"--extracted-1eung3n\":\"var(--token-96f5bd3f-8dbd-4de3-bd00-4c6381aef386, rgb(98, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{nGZHORsVj:{\"--extracted-1of0zx5\":\"var(--token-96f5bd3f-8dbd-4de3-bd00-4c6381aef386, rgb(98, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nGZHORsVj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-ys975a\",\"data-styles-preset\":\"SOIjhPxvx\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-96f5bd3f-8dbd-4de3-bd00-4c6381aef386, rgb(98, 0, 0)))\"},children:\"analytics\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-ys975a\",\"data-styles-preset\":\"SOIjhPxvx\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-96f5bd3f-8dbd-4de3-bd00-4c6381aef386, rgb(98, 0, 0)))\"},children:\"that\"})}),className:\"framer-1vv3ahs\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aY6kDS_TN\",style:{\"--extracted-1eung3n\":\"var(--token-96f5bd3f-8dbd-4de3-bd00-4c6381aef386, rgb(98, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{nGZHORsVj:{\"--extracted-1of0zx5\":\"var(--token-96f5bd3f-8dbd-4de3-bd00-4c6381aef386, rgb(98, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nGZHORsVj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-ys975a\",\"data-styles-preset\":\"SOIjhPxvx\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-96f5bd3f-8dbd-4de3-bd00-4c6381aef386, rgb(98, 0, 0)))\"},children:\"that\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8wl9bu\",layoutDependency:layoutDependency,layoutId:\"WIBy2NIVK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-ys975a\",\"data-styles-preset\":\"SOIjhPxvx\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-96f5bd3f-8dbd-4de3-bd00-4c6381aef386, rgb(98, 0, 0)))\"},children:\"finally\"})}),className:\"framer-1es9ev\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NovDrshL3\",style:{\"--extracted-1eung3n\":\"var(--token-96f5bd3f-8dbd-4de3-bd00-4c6381aef386, rgb(98, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{nGZHORsVj:{\"--extracted-1of0zx5\":\"var(--token-96f5bd3f-8dbd-4de3-bd00-4c6381aef386, rgb(98, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nGZHORsVj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-ys975a\",\"data-styles-preset\":\"SOIjhPxvx\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-96f5bd3f-8dbd-4de3-bd00-4c6381aef386, rgb(98, 0, 0)))\"},children:\"finally\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:27.2,intrinsicWidth:400,pixelHeight:34,pixelWidth:500,src:\"https://framerusercontent.com/images/6plh4y35oVsI3vWdBnil9Z5u7N4.png\"},className:\"framer-fcxon5\",\"data-framer-name\":\"Vector (1)\",layoutDependency:layoutDependency,layoutId:\"zvk02W3xr\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-ys975a\",\"data-styles-preset\":\"SOIjhPxvx\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-c14ad992-4298-4b17-9928-8523585e1be8, rgb(255, 255, 255)))\"},children:\"make\"})}),className:\"framer-19harjj\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"V5L3VLPY6\",style:{\"--extracted-1eung3n\":\"var(--token-c14ad992-4298-4b17-9928-8523585e1be8, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{nGZHORsVj:{\"--extracted-1of0zx5\":\"var(--token-c14ad992-4298-4b17-9928-8523585e1be8, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nGZHORsVj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-ys975a\",\"data-styles-preset\":\"SOIjhPxvx\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c14ad992-4298-4b17-9928-8523585e1be8, rgb(255, 255, 255)))\"},children:\"make\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-ys975a\",\"data-styles-preset\":\"SOIjhPxvx\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-c14ad992-4298-4b17-9928-8523585e1be8, rgb(255, 255, 255)))\"},children:\"sense\"})}),className:\"framer-1oxskpt\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CZ_rlgqS6\",style:{\"--extracted-1eung3n\":\"var(--token-c14ad992-4298-4b17-9928-8523585e1be8, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{nGZHORsVj:{\"--extracted-1of0zx5\":\"var(--token-c14ad992-4298-4b17-9928-8523585e1be8, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nGZHORsVj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-ys975a\",\"data-styles-preset\":\"SOIjhPxvx\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c14ad992-4298-4b17-9928-8523585e1be8, rgb(255, 255, 255)))\"},children:\"sense\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q2pllr\",layoutDependency:layoutDependency,layoutId:\"zIXjLBCEs\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e64ctv\",\"data-framer-name\":\"Newsletter Subscription\",layoutDependency:layoutDependency,layoutId:\"LUmKoRXoS\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gegp9c\",\"data-framer-name\":\"Newsletter Heading\",layoutDependency:layoutDependency,layoutId:\"nrtCYL8j_\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3lb7um\",\"data-styles-preset\":\"Sa0KYnozZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c14ad992-4298-4b17-9928-8523585e1be8, rgb(255, 255, 255)))\"},children:\"Subscribe to our newsletter\"})}),className:\"framer-kib7d3\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"B4AcSTB5N\",style:{\"--extracted-r6o4lv\":\"var(--token-c14ad992-4298-4b17-9928-8523585e1be8, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Fhh9zhrPN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1bsb0r8\",\"data-styles-preset\":\"azdl1AvOx\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c14ad992-4298-4b17-9928-8523585e1be8, rgb(255, 255, 255)))\"},children:\"Subscribe to our newsletter\"})})},nGZHORsVj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1bsb0r8\",\"data-styles-preset\":\"azdl1AvOx\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c14ad992-4298-4b17-9928-8523585e1be8, rgb(255, 255, 255)))\"},children:\"Subscribe to our newsletter\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jc4v22\",layoutDependency:layoutDependency,layoutId:\"Ge_uV7x_z\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18b6ijb-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"aCE6dvOjs-container\",nodeId:\"aCE6dvOjs\",rendersWithMotion:true,scopeId:\"h6h4fuPpF\",children:/*#__PURE__*/_jsx(CustomHubspotForm,{height:\"100%\",id:\"aCE6dvOjs\",layoutId:\"aCE6dvOjs\",style:{width:\"100%\"},width:\"100%\"})})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1flhve8\",\"data-framer-name\":\"Social Media Links\",layoutDependency:layoutDependency,layoutId:\"gMzgQFpnU\",children:[/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"UFHxtiSSF\",scopeId:\"h6h4fuPpF\",...addPropertyOverrides({Fhh9zhrPN:{href:\"https://www.linkedin.com/company/optise\"},nGZHORsVj:{href:\"https://www.linkedin.com/company/optise\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-15q64oj framer-g965du\",\"data-framer-name\":\"Facebook Icon\",layoutDependency:layoutDependency,layoutId:\"UFHxtiSSF\",style:{backgroundColor:\"rgb(216, 69, 71)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/Z82BYw5eTgM5fJWjVX1tqTWPY.svg\"},className:\"framer-13lvadh\",\"data-framer-name\":\"Social Icons\",layoutDependency:layoutDependency,layoutId:\"Ll70VYQJa\"})})}),/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"ZK2wFv7JW\",scopeId:\"h6h4fuPpF\",...addPropertyOverrides({Fhh9zhrPN:{href:\"https://www.instagram.com/optisedotcom/\"},nGZHORsVj:{href:\"https://www.instagram.com/optisedotcom/\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-bb8s2z framer-g965du\",\"data-framer-name\":\"Twitter Icon\",layoutDependency:layoutDependency,layoutId:\"ZK2wFv7JW\",style:{backgroundColor:\"rgb(216, 69, 71)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/phnv6v0T9myhSQaQEjkDNKv7z4.svg\"},className:\"framer-1l3ntl4\",\"data-framer-name\":\"Social Icons\",layoutDependency:layoutDependency,layoutId:\"I94P4MM7p\"})})}),/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"C4LhZguQL\",scopeId:\"h6h4fuPpF\",...addPropertyOverrides({Fhh9zhrPN:{href:\"https://www.youtube.com/@optise-com\"},nGZHORsVj:{href:\"https://www.youtube.com/@optise-com\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ajv6i7 framer-g965du\",\"data-framer-name\":\"Instagram Icon\",layoutDependency:layoutDependency,layoutId:\"C4LhZguQL\",style:{backgroundColor:\"rgb(216, 69, 71)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/PVGyLgUk4mqQiUeSHnolAwiRo.svg\"},className:\"framer-3zhl25\",\"data-framer-name\":\"Social Icons\",layoutDependency:layoutDependency,layoutId:\"JJs1W0njO\"})})}),/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"ynaWHg3SH\",scopeId:\"h6h4fuPpF\",...addPropertyOverrides({Fhh9zhrPN:{href:\"https://www.facebook.com/profile.php?id=61563381876984\"},nGZHORsVj:{href:\"https://www.facebook.com/profile.php?id=61563381876984\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1xeevq3 framer-g965du\",\"data-framer-name\":\"LinkedIn Icon\",layoutDependency:layoutDependency,layoutId:\"ynaWHg3SH\",style:{backgroundColor:\"rgb(216, 69, 71)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/qtP88jI5rdNwWzU2BWSRyW2IDRk.svg\"},className:\"framer-6ufb45\",\"data-framer-name\":\"Social Icons\",layoutDependency:layoutDependency,layoutId:\"TjvDkiXTa\"})})}),/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"F4w_ctfMV\",scopeId:\"h6h4fuPpF\",...addPropertyOverrides({Fhh9zhrPN:{href:\"https://www.tiktok.com/@optise.com\"},nGZHORsVj:{href:\"https://www.tiktok.com/@optise.com\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-lko6eg framer-g965du\",\"data-framer-name\":\"LinkedIn Icon\",layoutDependency:layoutDependency,layoutId:\"F4w_ctfMV\",style:{backgroundColor:\"rgb(216, 69, 71)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/IXhZDHKjKQbvfeRTs7MeoUQco.svg\"},className:\"framer-l9jr6z\",\"data-framer-name\":\"Social Icons\",layoutDependency:layoutDependency,layoutId:\"RsF0IYHeZ\"})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sj9qe5\",\"data-framer-name\":\"Frame 2147224618\",layoutDependency:layoutDependency,layoutId:\"kW3LFfGVn\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tat0s0\",\"data-framer-name\":\"Social Media Links\",layoutDependency:layoutDependency,layoutId:\"ivdq6rfkC\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/optise\",motionChild:true,nodeId:\"LZWiZUbjZ\",scopeId:\"h6h4fuPpF\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ray3z1 framer-g965du\",\"data-framer-name\":\"Facebook Icon\",layoutDependency:layoutDependency,layoutId:\"LZWiZUbjZ\",style:{backgroundColor:\"rgb(216, 69, 71)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/Z82BYw5eTgM5fJWjVX1tqTWPY.svg\"},className:\"framer-h6u59d\",\"data-framer-name\":\"Social Icons\",layoutDependency:layoutDependency,layoutId:\"H3ocF5QF3\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/optisedotcom/\",motionChild:true,nodeId:\"zaC3r9aAl\",scopeId:\"h6h4fuPpF\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1i3u1lb framer-g965du\",\"data-framer-name\":\"Twitter Icon\",layoutDependency:layoutDependency,layoutId:\"zaC3r9aAl\",style:{backgroundColor:\"rgb(216, 69, 71)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/phnv6v0T9myhSQaQEjkDNKv7z4.svg\"},className:\"framer-180cqte\",\"data-framer-name\":\"Social Icons\",layoutDependency:layoutDependency,layoutId:\"hjvid867o\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/@optise-com\",motionChild:true,nodeId:\"nj3VQFAIi\",scopeId:\"h6h4fuPpF\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1f7h85x framer-g965du\",\"data-framer-name\":\"Instagram Icon\",layoutDependency:layoutDependency,layoutId:\"nj3VQFAIi\",style:{backgroundColor:\"rgb(216, 69, 71)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/PVGyLgUk4mqQiUeSHnolAwiRo.svg\"},className:\"framer-1fkd40o\",\"data-framer-name\":\"Social Icons\",layoutDependency:layoutDependency,layoutId:\"TKWmK5SL0\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/profile.php?id=61563381876984\",motionChild:true,nodeId:\"XsjuAcloe\",scopeId:\"h6h4fuPpF\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1khkyx1 framer-g965du\",\"data-framer-name\":\"LinkedIn Icon\",layoutDependency:layoutDependency,layoutId:\"XsjuAcloe\",style:{backgroundColor:\"rgb(216, 69, 71)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/qtP88jI5rdNwWzU2BWSRyW2IDRk.svg\"},className:\"framer-1rwp1yp\",\"data-framer-name\":\"Social Icons\",layoutDependency:layoutDependency,layoutId:\"KzzYuCLsB\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.tiktok.com/@optise.com\",motionChild:true,nodeId:\"DT0L87pu_\",scopeId:\"h6h4fuPpF\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-liq47h framer-g965du\",\"data-framer-name\":\"LinkedIn Icon\",layoutDependency:layoutDependency,layoutId:\"DT0L87pu_\",style:{backgroundColor:\"rgb(216, 69, 71)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/IXhZDHKjKQbvfeRTs7MeoUQco.svg\"},className:\"framer-15ucxce\",\"data-framer-name\":\"Social Icons\",layoutDependency:layoutDependency,layoutId:\"xBElepDZD\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l3bjir\",\"data-framer-name\":\"Footer Links\",layoutDependency:layoutDependency,layoutId:\"OHlV2FVZy\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10nozwj\",layoutDependency:layoutDependency,layoutId:\"giC51LJWe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhZmZlciBNZWRpdW0=\",\"--framer-font-family\":'\"Haffer Medium\", \"Haffer Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c14ad992-4298-4b17-9928-8523585e1be8, rgb(255, 255, 255)))\"},children:\"\\xa9 \"})}),className:\"framer-1x7vu9o\",\"data-framer-name\":\"Heading\",fonts:[\"CUSTOM;Haffer Medium\"],layoutDependency:layoutDependency,layoutId:\"MhrzWmDF4\",style:{\"--extracted-r6o4lv\":\"var(--token-c14ad992-4298-4b17-9928-8523585e1be8, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nGZHORsVj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhZmZlciBNZWRpdW0=\",\"--framer-font-family\":'\"Haffer Medium\", \"Haffer Medium Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c14ad992-4298-4b17-9928-8523585e1be8, rgb(255, 255, 255)))\"},children:\"\\xa9 \"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ny7js9-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"nxxkxXwuf-container\",nodeId:\"nxxkxXwuf\",rendersWithMotion:true,scopeId:\"h6h4fuPpF\",children:/*#__PURE__*/_jsx(TimeDate,{color:\"var(--token-c14ad992-4298-4b17-9928-8523585e1be8, rgb(255, 255, 255))\",font:{fontFamily:'\"Haffer Medium\", \"Haffer Medium Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"nxxkxXwuf\",layoutId:\"nxxkxXwuf\",monthFormat:\"long\",outputType:\"date\",showMinutes:true,showMonth:false,showSeconds:true,showWeekday:false,showYear:true,tabularFont:true,timeFormat:\"24h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-fc18ei\",\"data-styles-preset\":\"ShWZEHUVJ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c14ad992-4298-4b17-9928-8523585e1be8, rgb(255, 255, 255)))\"},children:\"Optise. All rights reserved\"})}),className:\"framer-nt2hri\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DxPfVFrRY\",style:{\"--extracted-r6o4lv\":\"var(--token-c14ad992-4298-4b17-9928-8523585e1be8, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-einy8c\",layoutDependency:layoutDependency,layoutId:\"mGRIgOUqr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-fc18ei\",\"data-styles-preset\":\"ShWZEHUVJ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZiLgu0xfp\"},motionChild:true,nodeId:\"BxWZJga4h\",openInNewTab:false,scopeId:\"h6h4fuPpF\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-htg9wz\",\"data-styles-preset\":\"TqXXBne5W\",children:\"Terms of Service\"})})})}),className:\"framer-fxduy9\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BxWZJga4h\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-fc18ei\",\"data-styles-preset\":\"ShWZEHUVJ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XpSPK_81c\"},motionChild:true,nodeId:\"F_3sYeV1S\",openInNewTab:false,scopeId:\"h6h4fuPpF\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-htg9wz\",\"data-styles-preset\":\"TqXXBne5W\",children:\"Privacy Policy\"})})})}),className:\"framer-1iq0i9i\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"F_3sYeV1S\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-esO2v.framer-g965du, .framer-esO2v .framer-g965du { display: block; }\",\".framer-esO2v.framer-1acmiz9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 32px 0px; position: relative; width: 1200px; }\",\".framer-esO2v .framer-1cwfdnb { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-esO2v .framer-tk4om4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 88px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-esO2v .framer-w3uqn4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 88px; height: min-content; justify-content: flex-start; max-width: 1640px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-esO2v .framer-t85t8k { align-content: flex-end; align-items: flex-end; 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-esO2v .framer-9i8vc8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 519px; min-width: 257px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-esO2v .framer-1sby21 { flex: none; gap: 0px; height: 56px; overflow: visible; position: relative; text-decoration: none; width: 168px; }\",\".framer-esO2v .framer-sh8jey { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-esO2v .framer-1weq10s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-esO2v .framer-9vobk6, .framer-esO2v .framer-1xslsqk, .framer-esO2v .framer-1vv3ahs, .framer-esO2v .framer-1es9ev, .framer-esO2v .framer-19harjj, .framer-esO2v .framer-1oxskpt, .framer-esO2v .framer-1x7vu9o, .framer-esO2v .framer-nt2hri, .framer-esO2v .framer-fxduy9, .framer-esO2v .framer-1iq0i9i { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-esO2v .framer-8wl9bu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-esO2v .framer-fcxon5 { bottom: -10px; flex: none; height: 6px; overflow: visible; position: absolute; right: -10px; width: 120px; z-index: 1; }\",\".framer-esO2v .framer-q2pllr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 480px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-esO2v .framer-1e64ctv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 519px; min-width: 348px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-esO2v .framer-1gegp9c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-esO2v .framer-kib7d3 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-esO2v .framer-jc4v22 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-esO2v .framer-18b6ijb-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-esO2v .framer-1flhve8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-esO2v .framer-15q64oj, .framer-esO2v .framer-bb8s2z, .framer-esO2v .framer-ajv6i7, .framer-esO2v .framer-1xeevq3, .framer-esO2v .framer-lko6eg { flex: none; gap: 0px; height: 40px; overflow: visible; position: relative; width: 40px; }\",\".framer-esO2v .framer-13lvadh, .framer-esO2v .framer-1l3ntl4, .framer-esO2v .framer-3zhl25, .framer-esO2v .framer-6ufb45, .framer-esO2v .framer-l9jr6z, .framer-esO2v .framer-h6u59d, .framer-esO2v .framer-180cqte, .framer-esO2v .framer-1fkd40o, .framer-esO2v .framer-1rwp1yp, .framer-esO2v .framer-15ucxce { flex: none; gap: 0px; height: 20px; left: calc(50% - 20px / 2); overflow: hidden; position: absolute; top: calc(50% - 20px / 2); width: 20px; }\",\".framer-esO2v .framer-sj9qe5 { 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-esO2v .framer-1tat0s0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-esO2v .framer-ray3z1, .framer-esO2v .framer-1i3u1lb, .framer-esO2v .framer-1f7h85x, .framer-esO2v .framer-1khkyx1, .framer-esO2v .framer-liq47h { flex: none; gap: 0px; height: 40px; overflow: visible; position: relative; text-decoration: none; width: 40px; }\",\".framer-esO2v .framer-l3bjir, .framer-esO2v .framer-einy8c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-esO2v .framer-10nozwj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-esO2v .framer-1ny7js9-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-esO2v.framer-v-1hcqx11.framer-1acmiz9 { width: 768px; }\",\".framer-esO2v.framer-v-1hcqx11 .framer-tk4om4 { padding: 0px 40px 0px 40px; }\",\".framer-esO2v.framer-v-1hcqx11 .framer-w3uqn4 { gap: 48px; }\",\".framer-esO2v.framer-v-1hcqx11 .framer-fcxon5 { bottom: -8px; height: 4px; right: 0px; width: 80px; }\",\".framer-esO2v.framer-v-1hcqx11 .framer-q2pllr { align-self: stretch; flex-direction: column; gap: 24px; height: auto; }\",\".framer-esO2v.framer-v-1hcqx11 .framer-1e64ctv { flex: none; order: 1; width: 100%; }\",\".framer-esO2v.framer-v-1hcqx11 .framer-1flhve8 { flex: none; order: 0; width: 100%; }\",\".framer-esO2v.framer-v-1hcqx11 .framer-15q64oj, .framer-esO2v.framer-v-1hcqx11 .framer-bb8s2z, .framer-esO2v.framer-v-1hcqx11 .framer-ajv6i7, .framer-esO2v.framer-v-1hcqx11 .framer-1xeevq3, .framer-esO2v.framer-v-1hcqx11 .framer-lko6eg, .framer-esO2v.framer-v-z0ildy .framer-15q64oj, .framer-esO2v.framer-v-z0ildy .framer-bb8s2z, .framer-esO2v.framer-v-z0ildy .framer-ajv6i7, .framer-esO2v.framer-v-z0ildy .framer-1xeevq3, .framer-esO2v.framer-v-z0ildy .framer-lko6eg { text-decoration: none; }\",\".framer-esO2v.framer-v-1hcqx11 .framer-l3bjir { flex: 1 0 0px; gap: unset; justify-content: space-between; width: 1px; }\",\".framer-esO2v.framer-v-z0ildy.framer-1acmiz9 { width: 390px; }\",\".framer-esO2v.framer-v-z0ildy .framer-tk4om4 { padding: 0px 16px 0px 16px; }\",\".framer-esO2v.framer-v-z0ildy .framer-w3uqn4 { gap: 40px; }\",\".framer-esO2v.framer-v-z0ildy .framer-t85t8k { flex-direction: column; gap: 40px; justify-content: flex-start; padding: 0px 16px 0px 16px; }\",\".framer-esO2v.framer-v-z0ildy .framer-9i8vc8 { flex: none; width: 100%; }\",\".framer-esO2v.framer-v-z0ildy .framer-fcxon5 { bottom: -8px; height: 4px; left: calc(47.236180904522634% - 77px / 2); right: unset; width: 77px; }\",\".framer-esO2v.framer-v-z0ildy .framer-q2pllr { flex: none; flex-direction: column; gap: 48px; width: 100%; }\",\".framer-esO2v.framer-v-z0ildy .framer-1e64ctv { flex: none; gap: 8px; order: 0; width: 100%; }\",\".framer-esO2v.framer-v-z0ildy .framer-jc4v22 { gap: 0px; }\",\".framer-esO2v.framer-v-z0ildy .framer-1flhve8 { flex: none; gap: unset; justify-content: space-between; order: 1; width: 100%; }\",\".framer-esO2v.framer-v-z0ildy .framer-l3bjir { flex: 1 0 0px; flex-direction: column; gap: 24px; width: 1px; }\",\".framer-esO2v.framer-v-z0ildy .framer-10nozwj { width: 100%; }\",\".framer-esO2v.framer-v-z0ildy .framer-einy8c { gap: unset; justify-content: space-between; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 426\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Fhh9zhrPN\":{\"layout\":[\"fixed\",\"auto\"]},\"nGZHORsVj\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerh6h4fuPpF=withCSS(Component,css,\"framer-esO2v\");export default Framerh6h4fuPpF;Framerh6h4fuPpF.displayName=\"Footer\";Framerh6h4fuPpF.defaultProps={height:426,width:1200};addPropertyControls(Framerh6h4fuPpF,{variant:{options:[\"YKdeu5ofT\",\"Fhh9zhrPN\",\"nGZHORsVj\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerh6h4fuPpF,[{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:\"Haffer Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/2fazGb4KFqyY0UVKuGAf33r38.woff2\"}]},...CustomHubspotFormFonts,...TimeDateFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerh6h4fuPpF\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Fhh9zhrPN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nGZHORsVj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"426\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./h6h4fuPpF.map","// Generated by Framer (890879b)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Haffer Medium\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Haffer Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/2fazGb4KFqyY0UVKuGAf33r38.woff2\"}]}];export const css=['.framer-Ubxkf .framer-styles-preset-bs7xtl:not(.rich-text-wrapper), .framer-Ubxkf .framer-styles-preset-bs7xtl.rich-text-wrapper p { --framer-font-family: \"Haffer Medium\", \"Haffer Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, #716d6d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 768px) { .framer-Ubxkf .framer-styles-preset-bs7xtl:not(.rich-text-wrapper), .framer-Ubxkf .framer-styles-preset-bs7xtl.rich-text-wrapper p { --framer-font-family: \"Haffer Medium\", \"Haffer Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, #716d6d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 767px) and (min-width: 0px) { .framer-Ubxkf .framer-styles-preset-bs7xtl:not(.rich-text-wrapper), .framer-Ubxkf .framer-styles-preset-bs7xtl.rich-text-wrapper p { --framer-font-family: \"Haffer Medium\", \"Haffer Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, #716d6d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-Ubxkf\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (0c5492c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/dK364s63RL8zwGyG7pi4/35OjC6zL4t2Sd7qGCx7c/gF0iu5Eho.js\";const enabledGestures={bCA_9woj1:{hover:true},Fzqj_Bfla:{hover:true},HTXgv4oTq:{hover:true},owN9v8Gcp:{hover:true},uQtj9bkcc:{hover:true},yPy7BlpcP:{hover:true}};const cycleOrder=[\"bCA_9woj1\",\"yPy7BlpcP\",\"uQtj9bkcc\",\"HTXgv4oTq\",\"owN9v8Gcp\",\"Fzqj_Bfla\"];const serializationHash=\"framer-LJOZQ\";const variantClassNames={bCA_9woj1:\"framer-v-wsv2cl\",Fzqj_Bfla:\"framer-v-icfnbx\",HTXgv4oTq:\"framer-v-1j6gk4h\",owN9v8Gcp:\"framer-v-12fq80s\",uQtj9bkcc:\"framer-v-5h74cu\",yPy7BlpcP:\"framer-v-2decyo\"};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={\"No Fill\":\"Fzqj_Bfla\",Black:\"uQtj9bkcc\",Coral:\"bCA_9woj1\",Mustard:\"owN9v8Gcp\",Pink:\"HTXgv4oTq\",White:\"yPy7BlpcP\"};const getProps=({click,height,id,link,title,width,...props})=>{return{...props,JXMIoYZp4:link??props.JXMIoYZp4,PUhePhWff:click??props.PUhePhWff,variant:humanReadableVariantMap[props.variant]??props.variant??\"bCA_9woj1\",xjqfdJLBf:title??props.xjqfdJLBf??\"Get Started\"};};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,JXMIoYZp4,PUhePhWff,xjqfdJLBf,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bCA_9woj1\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap12adsb7=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(PUhePhWff){const res=await PUhePhWff(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:JXMIoYZp4,motionChild:true,nodeId:\"bCA_9woj1\",openInNewTab:false,scopeId:\"rBkgiofdr\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-wsv2cl\",className,classNames)} framer-19nad7x`,\"data-framer-name\":\"Coral\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"bCA_9woj1\",onTap:onTap12adsb7,ref:refBinding,style:{backgroundColor:\"var(--token-8d33228b-8c75-41bb-83fb-4883be6ab415, rgb(255, 92, 95))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},variants:{\"bCA_9woj1-hover\":{backgroundColor:\"var(--token-5fa59a6b-5464-4045-a015-f2025a993c96, rgb(255, 218, 219))\"},\"Fzqj_Bfla-hover\":{backgroundColor:\"var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, rgb(113, 109, 109))\"},\"HTXgv4oTq-hover\":{backgroundColor:\"var(--token-011b8310-bf7c-4e17-a770-b1891ce4b789, rgb(255, 141, 177))\"},\"owN9v8Gcp-hover\":{backgroundColor:\"var(--token-401e8050-0946-4b63-a5f9-e305007d0af5, rgb(253, 175, 58))\"},\"uQtj9bkcc-hover\":{backgroundColor:\"var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, rgb(113, 109, 109))\"},\"yPy7BlpcP-hover\":{backgroundColor:\"var(--token-eddd7fb3-7911-4fab-931b-6cc64b0426d0, rgb(244, 244, 244))\"},Fzqj_Bfla:{backgroundColor:\"rgba(0, 0, 0, 0)\"},HTXgv4oTq:{backgroundColor:\"var(--token-f24a789d-7c9d-4372-bcb7-b38a15cf341c, rgb(255, 111, 156))\"},owN9v8Gcp:{backgroundColor:\"var(--token-c0b3d6cb-0030-4765-b8f4-34aedb8f78fa, rgb(254, 152, 0))\"},uQtj9bkcc:{backgroundColor:\"var(--token-382b7462-4f82-44d1-bc11-550c4fdec63b, rgb(36, 31, 31))\"},yPy7BlpcP:{backgroundColor:\"var(--token-c14ad992-4298-4b17-9928-8523585e1be8, rgb(255, 255, 255))\"}},...addPropertyOverrides({\"bCA_9woj1-hover\":{\"data-framer-name\":undefined},\"Fzqj_Bfla-hover\":{\"data-framer-name\":undefined},\"HTXgv4oTq-hover\":{\"data-framer-name\":undefined},\"owN9v8Gcp-hover\":{\"data-framer-name\":undefined},\"uQtj9bkcc-hover\":{\"data-framer-name\":undefined},\"yPy7BlpcP-hover\":{\"data-framer-name\":undefined},Fzqj_Bfla:{\"data-framer-name\":\"No Fill\"},HTXgv4oTq:{\"data-framer-name\":\"Pink\"},owN9v8Gcp:{\"data-framer-name\":\"Mustard\"},uQtj9bkcc:{\"data-framer-name\":\"Black\"},yPy7BlpcP:{\"data-framer-name\":\"White\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bs7xtl\",\"data-styles-preset\":\"gF0iu5Eho\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c14ad992-4298-4b17-9928-8523585e1be8, rgb(255, 255, 255)))\"},children:\"Get Started\"})}),className:\"framer-16ip3l1\",\"data-framer-name\":\"Contact\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oRXss3cLi\",style:{\"--extracted-r6o4lv\":\"var(--token-c14ad992-4298-4b17-9928-8523585e1be8, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:xjqfdJLBf,variants:{\"bCA_9woj1-hover\":{\"--extracted-r6o4lv\":\"var(--token-3e0c25bf-1849-47e8-8fae-4035f0806dab, rgb(138, 23, 24))\"},Fzqj_Bfla:{\"--extracted-r6o4lv\":\"var(--token-382b7462-4f82-44d1-bc11-550c4fdec63b, rgb(36, 31, 31))\"},yPy7BlpcP:{\"--extracted-r6o4lv\":\"var(--token-382b7462-4f82-44d1-bc11-550c4fdec63b, rgb(36, 31, 31))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"bCA_9woj1-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bs7xtl\",\"data-styles-preset\":\"gF0iu5Eho\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3e0c25bf-1849-47e8-8fae-4035f0806dab, rgb(138, 23, 24)))\"},children:\"Get Started\"})})},Fzqj_Bfla:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bs7xtl\",\"data-styles-preset\":\"gF0iu5Eho\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-382b7462-4f82-44d1-bc11-550c4fdec63b, rgb(36, 31, 31)))\"},children:\"Get Started\"})})},yPy7BlpcP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bs7xtl\",\"data-styles-preset\":\"gF0iu5Eho\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-382b7462-4f82-44d1-bc11-550c4fdec63b, rgb(36, 31, 31)))\"},children:\"Get Started\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LJOZQ.framer-19nad7x, .framer-LJOZQ .framer-19nad7x { display: block; }\",\".framer-LJOZQ.framer-wsv2cl { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 15px 24px 17px 24px; position: relative; text-decoration: none; width: min-content; }\",\".framer-LJOZQ .framer-16ip3l1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LJOZQ.framer-wsv2cl { gap: 0px; } .framer-LJOZQ.framer-wsv2cl > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-LJOZQ.framer-wsv2cl > :first-child { margin-left: 0px; } .framer-LJOZQ.framer-wsv2cl > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 56\n * @framerIntrinsicWidth 152.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"yPy7BlpcP\":{\"layout\":[\"auto\",\"auto\"]},\"uQtj9bkcc\":{\"layout\":[\"auto\",\"auto\"]},\"HTXgv4oTq\":{\"layout\":[\"auto\",\"auto\"]},\"owN9v8Gcp\":{\"layout\":[\"auto\",\"auto\"]},\"Fzqj_Bfla\":{\"layout\":[\"auto\",\"auto\"]},\"bt8BdRauJ\":{\"layout\":[\"auto\",\"auto\"]},\"dz0VRjm17\":{\"layout\":[\"auto\",\"auto\"]},\"tdaHfpelc\":{\"layout\":[\"auto\",\"auto\"]},\"p2qWZEapW\":{\"layout\":[\"auto\",\"auto\"]},\"uam6QLkqv\":{\"layout\":[\"auto\",\"auto\"]},\"PM63b1fxi\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"JXMIoYZp4\":\"link\",\"PUhePhWff\":\"click\",\"xjqfdJLBf\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerrBkgiofdr=withCSS(Component,css,\"framer-LJOZQ\");export default FramerrBkgiofdr;FramerrBkgiofdr.displayName=\"Main Button\";FramerrBkgiofdr.defaultProps={height:56,width:152.5};addPropertyControls(FramerrBkgiofdr,{variant:{options:[\"bCA_9woj1\",\"yPy7BlpcP\",\"uQtj9bkcc\",\"HTXgv4oTq\",\"owN9v8Gcp\",\"Fzqj_Bfla\"],optionTitles:[\"Coral\",\"White\",\"Black\",\"Pink\",\"Mustard\",\"No Fill\"],title:\"Variant\",type:ControlType.Enum},JXMIoYZp4:{title:\"Link\",type:ControlType.Link},PUhePhWff:{title:\"Click\",type:ControlType.EventHandler},xjqfdJLBf:{defaultValue:\"Get Started\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerrBkgiofdr,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrBkgiofdr\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yPy7BlpcP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uQtj9bkcc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HTXgv4oTq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"owN9v8Gcp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Fzqj_Bfla\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"bt8BdRauJ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dz0VRjm17\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tdaHfpelc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"p2qWZEapW\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uam6QLkqv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"PM63b1fxi\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"152.5\",\"framerIntrinsicHeight\":\"56\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"JXMIoYZp4\\\":\\\"link\\\",\\\"PUhePhWff\\\":\\\"click\\\",\\\"xjqfdJLBf\\\":\\\"title\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */export default function StopScroll(props){const{toggle}=props;return toggle?/*#__PURE__*/_jsx(\"style\",{\"data-frameruni-stop-scroll\":true,children:`body { overflow: hidden !important; }`}):/*#__PURE__*/_jsx(_Fragment,{});}StopScroll.displayName=\"Stop Scroll\";addPropertyControls(StopScroll,{toggle:{type:ControlType.Boolean,title:\"Block Scroll\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"StopScroll\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"auto\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./StopScroll_Prod.map","// Generated by Framer (f030ee3)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Haffer Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Haffer Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/iqpHHMapspN1ZqZl6618xxUE.woff2\"}]}];export const css=[\".framer-co3IR .framer-styles-preset-1cpqhvd:not(.rich-text-wrapper), .framer-co3IR .framer-styles-preset-1cpqhvd.rich-text-wrapper h1 { --framer-font-family: \\\"Haffer Bold\\\", \\\"Haffer Bold Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 72px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-382b7462-4f82-44d1-bc11-550c4fdec63b, #241f1f); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\",\"@media (max-width: 1199px) and (min-width: 768px) { .framer-co3IR .framer-styles-preset-1cpqhvd:not(.rich-text-wrapper), .framer-co3IR .framer-styles-preset-1cpqhvd.rich-text-wrapper h1 { --framer-font-family: \\\"Haffer Bold\\\", \\\"Haffer Bold Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 64px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-382b7462-4f82-44d1-bc11-550c4fdec63b, #241f1f); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\",\"@media (max-width: 767px) and (min-width: 0px) { .framer-co3IR .framer-styles-preset-1cpqhvd:not(.rich-text-wrapper), .framer-co3IR .framer-styles-preset-1cpqhvd.rich-text-wrapper h1 { --framer-font-family: \\\"Haffer Bold\\\", \\\"Haffer Bold Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 56px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-382b7462-4f82-44d1-bc11-550c4fdec63b, #241f1f); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\"];export const className=\"framer-co3IR\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (f030ee3)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Haffer Medium\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Haffer Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/2fazGb4KFqyY0UVKuGAf33r38.woff2\"}]}];export const css=['.framer-Z2d2s .framer-styles-preset-mzs948:not(.rich-text-wrapper), .framer-Z2d2s .framer-styles-preset-mzs948.rich-text-wrapper p { --framer-font-family: \"Haffer Medium\", \"Haffer Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, #716d6d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 768px) { .framer-Z2d2s .framer-styles-preset-mzs948:not(.rich-text-wrapper), .framer-Z2d2s .framer-styles-preset-mzs948.rich-text-wrapper p { --framer-font-family: \"Haffer Medium\", \"Haffer Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, #716d6d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 767px) and (min-width: 0px) { .framer-Z2d2s .framer-styles-preset-mzs948:not(.rich-text-wrapper), .framer-Z2d2s .framer-styles-preset-mzs948.rich-text-wrapper p { --framer-font-family: \"Haffer Medium\", \"Haffer Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, #716d6d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-Z2d2s\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (890879b)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-dF28E .framer-styles-preset-1wicq5s:not(.rich-text-wrapper), .framer-dF28E .framer-styles-preset-1wicq5s.rich-text-wrapper a { --framer-link-current-text-color: var(--token-724956b1-28c3-4ce1-96e1-8bccf960d9b3, #ff5c5f); --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-724956b1-28c3-4ce1-96e1-8bccf960d9b3, #ff5c5f); --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-724956b1-28c3-4ce1-96e1-8bccf960d9b3, #ff5c5f); --framer-link-text-decoration: none; }\"];export const className=\"framer-dF28E\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (8ebf084)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import StopScroll from\"https://framerusercontent.com/modules/9ajhXMTvNHa3o84QkAph/PajmEC9KX2YkEmLmmwER/StopScroll_Prod.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/wyliyBX09fUguCNBsZBb/eDjPzqAzujx5G70I2MTG/QFc_gNAUq.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/R84rNqGrFbC2YIroyx8b/Lqeaal9FY96cBMTw4gLE/ro7OPezbn.js\";import MainButton from\"https://framerusercontent.com/modules/HlFJ9mE9AyEHKy7qjvXC/ezdkklxEfwqs7yRH9zuD/rBkgiofdr.js\";const MainButtonFonts=getFonts(MainButton);const StopScrollFonts=getFonts(StopScroll);const cycleOrder=[\"yKaeApYE6\",\"bgS5aHxOu\",\"LdjXnZhQ4\",\"SHd_gI8Dk\",\"KiPwS2P1S\"];const serializationHash=\"framer-HL0Se\";const variantClassNames={bgS5aHxOu:\"framer-v-m3z4nh\",KiPwS2P1S:\"framer-v-onlkp7\",LdjXnZhQ4:\"framer-v-16i7bcw\",SHd_gI8Dk:\"framer-v-y75m6w\",yKaeApYE6:\"framer-v-1n48equ\"};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 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={\"Phone Close\":\"LdjXnZhQ4\",\"Phone Open\":\"SHd_gI8Dk\",\"Phone with X\":\"KiPwS2P1S\",Desktop:\"yKaeApYE6\",Tablet:\"bgS5aHxOu\"};const getProps=({button,close,getStarted,height,id,width,x,...props})=>{return{...props,cGf4RGEzo:button??props.cGf4RGEzo,KZM63UyzP:x??props.KZM63UyzP??true,mlXc2w5ae:close??props.mlXc2w5ae,O38PNfKe2:getStarted??props.O38PNfKe2??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"yKaeApYE6\"};};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,cGf4RGEzo,KZM63UyzP,O38PNfKe2,mlXc2w5ae,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"yKaeApYE6\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1opnafn=activeVariantCallback(async(...args)=>{if(cGf4RGEzo){const res=await cGf4RGEzo(...args);if(res===false)return false;}});const PUhePhWffzaivv5=activeVariantCallback(async(...args)=>{setVariant(\"gpvp3P8vI\");});const onTap44x6or=activeVariantCallback(async(...args)=>{if(mlXc2w5ae){const res=await mlXc2w5ae(...args);if(res===false)return false;}});const onTap1b4ibu2=activeVariantCallback(async(...args)=>{setVariant(\"SHd_gI8Dk\");});const onTapajaf8i=activeVariantCallback(async(...args)=>{setVariant(\"LdjXnZhQ4\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"LdjXnZhQ4\",\"SHd_gI8Dk\",\"KiPwS2P1S\"].includes(baseVariant))return false;return true;};const isDisplayed1=value=>{if([\"LdjXnZhQ4\",\"SHd_gI8Dk\",\"KiPwS2P1S\"].includes(baseVariant))return false;return value;};const isDisplayed2=()=>{if([\"LdjXnZhQ4\",\"SHd_gI8Dk\",\"KiPwS2P1S\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"SHd_gI8Dk\",\"KiPwS2P1S\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(baseVariant===\"LdjXnZhQ4\")return false;return true;};const isDisplayed5=()=>{if(baseVariant===\"SHd_gI8Dk\")return true;return false;};const isDisplayed6=value=>{if(baseVariant===\"SHd_gI8Dk\")return true;return value;};const isDisplayed7=()=>{if(baseVariant===\"SHd_gI8Dk\")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.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1n48equ\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"yKaeApYE6\",ref:refBinding,style:{...style},...addPropertyOverrides({bgS5aHxOu:{\"data-framer-name\":\"Tablet\"},KiPwS2P1S:{\"data-framer-name\":\"Phone with X\"},LdjXnZhQ4:{\"data-framer-name\":\"Phone Close\"},SHd_gI8Dk:{\"data-framer-name\":\"Phone Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cuwaio\",layoutDependency:layoutDependency,layoutId:\"RI9Lp19fi\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mp2Z5AjDb\"},motionChild:true,nodeId:\"nJvYMg1xB\",openInNewTab:false,scopeId:\"JhaIXtr0U\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1wry3jo framer-etizjs\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"nJvYMg1xB\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ip4mbf\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:120,layoutDependency:layoutDependency,layoutId:\"DrEUmhHgo\",svg:'<svg width=\"120\" height=\"40\" viewBox=\"0 0 120 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M75.2322 0C73.5352 0 72.3087 1.19154 72.3087 2.85128C72.3087 4.51101 73.5364 5.70255 75.2322 5.70255C76.9281 5.70255 78.1918 4.4749 78.1918 2.85128C78.1918 1.22765 76.9293 0 75.2322 0Z\" fill=\"#FF5C5F\"/>\\n<path d=\"M84.8579 14.9484H84.8567C84.8567 13.734 86.1156 13.0131 87.7344 13.0131C90.0273 13.0131 91.3307 14.1817 91.7351 15.9353H96.9045C96.4544 11.6651 93.354 8.7873 87.7344 8.7873C82.6999 8.7873 79.6873 11.6651 79.6873 15.3059C79.6873 20.1824 83.8018 21.247 87.2574 22.1412C89.7592 22.7885 91.9157 23.3465 91.9157 25.1969C91.9157 26.7254 90.5219 27.7148 88.5432 27.7148C85.8015 27.7148 84.5871 26.1862 84.4077 24.2521H79.1926C79.4622 28.928 82.8335 32.1644 88.5432 32.1644C93.5778 32.1644 97.2656 29.2421 97.2656 24.9718C97.2656 19.6139 92.8603 18.5502 89.2996 17.6904C86.8845 17.1072 84.8579 16.6178 84.8579 14.946V14.9484Z\" fill=\"#FF5C5F\"/>\\n<path d=\"M72.3511 9.14837H78.0608V32.0934H72.3511V9.14837Z\" fill=\"#FF5C5F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M46.0161 8.7873C43.0493 8.7873 40.3063 10.0908 39.0028 11.9347V9.14717H33.293V39.9877H39.0028V28.9737C40.3063 30.8621 43.0938 32.1656 46.0161 32.1656C52.6695 32.1656 57.03 27.58 57.03 20.4765C57.03 13.3729 52.6695 8.7873 46.0161 8.7873ZM45.117 27.2646C41.5195 27.2646 39.0028 24.4771 39.0028 20.4765C39.0028 16.4758 41.5195 13.6425 45.117 13.6425C48.7145 13.6425 51.2769 16.3843 51.2769 20.4765C51.2769 24.5686 48.7145 27.2646 45.117 27.2646Z\" fill=\"#FF5C5F\"/>\\n<path d=\"M65.6825 23.7587H65.6837V23.7575C65.6837 26.0515 66.8524 27.2202 68.6963 27.2202C69.5496 27.2202 70.4042 27.0396 71.0781 26.77V31.5807C70.3584 31.8961 69.0995 32.1657 67.796 32.1657C63.031 32.1657 59.9739 29.1976 59.9739 24.2533V13.7798H56.3331V9.14844H59.9739L59.9788 9.1352L61.2654 3.6192H65.6825V9.14723H71.0324V13.7786H65.6825V23.7587Z\" fill=\"#FF5C5F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M106.938 26.4739H106.939L119.74 14.6884C117.727 11.1704 113.937 8.79811 109.592 8.79811C103.139 8.79811 97.9073 14.0289 97.9073 20.4824C97.9073 26.936 103.138 32.1668 109.592 32.1668C111.782 32.1668 116.146 31.5951 119.739 27.5306V22.1422C113.322 29.6308 106.939 26.4751 106.939 26.4751L106.938 26.4739ZM105.918 14.9544C107.525 13.6245 110.184 13.1515 112.12 13.9482C112.266 14.0084 112.974 14.4272 112.974 14.4272L103.816 22.9125C103.006 20.0624 103.573 16.8946 105.918 14.9532V14.9544Z\" fill=\"#FF5C5F\"/>\\n<path d=\"M16.0906 5.76519V0.0181007C24.9767 0.0181007 32.1813 7.22152 32.1813 16.1087C32.1813 24.996 24.9779 32.1994 16.0906 32.1994C7.20342 32.1994 0 24.9948 0 16.1087H5.74709C5.74709 21.8209 10.3785 26.4523 16.0906 26.4523C21.8028 26.4523 26.4342 21.8209 26.4342 16.1087C26.4342 10.3966 21.8028 5.76519 16.0906 5.76519Z\" fill=\"#FF5C5F\"/>\\n</svg>\\n',withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jy928t\",layoutDependency:layoutDependency,layoutId:\"thAx3RIWV\",children:[O38PNfKe2&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xoxnav\",\"data-framer-name\":\"Menu\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"q8WgBlwM0\",onTap:onTap1opnafn,style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mzs948\",\"data-styles-preset\":\"QFc_gNAUq\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, rgb(113, 109, 109)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JktlyJwb7\"},motionChild:true,nodeId:\"O7S_XpbAr\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"JhaIXtr0U\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Resources\"})})})}),className:\"framer-ip6vi3\",\"data-framer-name\":\"Contact\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"O7S_XpbAr\",style:{\"--extracted-r6o4lv\":\"var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, rgb(113, 109, 109))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),O38PNfKe2&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-t79gkt\",\"data-framer-name\":\"Menu\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"sigzdpsXZ\",onTap:onTap1opnafn,style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mzs948\",\"data-styles-preset\":\"QFc_gNAUq\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, rgb(113, 109, 109)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"x_HdG_yWB\"},motionChild:true,nodeId:\"wVD_aID3d\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"JhaIXtr0U\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"About us\"})})})}),className:\"framer-1ephcb5\",\"data-framer-name\":\"Contact\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wVD_aID3d\",style:{\"--extracted-r6o4lv\":\"var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, rgb(113, 109, 109))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed1(O38PNfKe2)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:(componentViewport?.y||0)+(24+((componentViewport?.height||109)-48-60.8)/2)+2.4,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kz7f3u-container\",layoutDependency:layoutDependency,layoutId:\"ecvCeQfiL-container\",nodeId:\"ecvCeQfiL\",rendersWithMotion:true,scopeId:\"JhaIXtr0U\",children:/*#__PURE__*/_jsx(MainButton,{height:\"100%\",id:\"ecvCeQfiL\",JXMIoYZp4:\"https://app.optise.com/register\",layoutId:\"ecvCeQfiL\",PUhePhWff:PUhePhWffzaivv5,variant:\"bCA_9woj1\",width:\"100%\",xjqfdJLBf:\"Get Started\"})})}),isDisplayed1(KZM63UyzP)&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-815qtc\",\"data-framer-name\":\"Close\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"glUeCHyn5\",onTap:onTap44x6or,style:{backgroundColor:\"rgba(251, 218, 173, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19kkc51\",\"data-framer-name\":\"X\",layoutDependency:layoutDependency,layoutId:\"vtpXzdzyH\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-n89p2f\",\"data-framer-name\":\"Vector\",layoutDependency:layoutDependency,layoutId:\"vixWl9csX\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hp1bxi\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"Wsyimd3H3\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"-1 -1 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M18 0L0 18\" stroke=\"#0F0F0F\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ljyjj\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"eyTcObPgv\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"-1 -1 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M18 18L0 0\" stroke=\"#0F0F0F\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vbwxkl\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"BK1yTivE7\",...addPropertyOverrides({KiPwS2P1S:{\"data-highlight\":true,onTap:onTap1b4ibu2},LdjXnZhQ4:{\"data-highlight\":true,onTap:onTap1b4ibu2},SHd_gI8Dk:{\"data-highlight\":true,onTap:onTapajaf8i}},baseVariant,gestureVariant),children:[isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-qmdg3v\",\"data-framer-name\":\"Menu\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"uTim2f2ew\",svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M3.75 12h16.5M3.75 6h16.5M3.75 18h16.5\" stroke=\"#0F0F0F\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18ib7dc\",\"data-framer-name\":\"X\",layoutDependency:layoutDependency,layoutId:\"VD4IdsCxh\",...addPropertyOverrides({KiPwS2P1S:{\"data-highlight\":true,onTap:onTap44x6or}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-11pv5bx\",\"data-framer-name\":\"Vector\",layoutDependency:layoutDependency,layoutId:\"kQUGJ1o0y\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-10v1qnw\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"xPFzadBVb\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"-1 -1 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M18 0L0 18\" stroke=\"#0F0F0F\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-l1o77z\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"kUHYBRWa3\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"-1 -1 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M18 18L0 0\" stroke=\"#0F0F0F\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})]})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m9v50h\",layoutDependency:layoutDependency,layoutId:\"EhyBnbM8a\",children:[isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kke5kx\",layoutDependency:layoutDependency,layoutId:\"k_n2yDMk_\",children:[isDisplayed6(O38PNfKe2)&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-je01nr\",\"data-framer-name\":\"Menu\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"EL4VcQW6P\",onTap:onTap1opnafn,style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mzs948\",\"data-styles-preset\":\"QFc_gNAUq\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, rgb(113, 109, 109)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JktlyJwb7\"},motionChild:true,nodeId:\"l23DosI8J\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"JhaIXtr0U\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Resources\"})})})}),className:\"framer-191h98h\",\"data-framer-name\":\"Contact\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"l23DosI8J\",style:{\"--extracted-r6o4lv\":\"var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, rgb(113, 109, 109))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed6(O38PNfKe2)&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-dtf9ou\",\"data-framer-name\":\"Menu\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"CliDid9nu\",onTap:onTap1opnafn,style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mzs948\",\"data-styles-preset\":\"QFc_gNAUq\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, rgb(113, 109, 109)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"x_HdG_yWB\"},motionChild:true,nodeId:\"kkW8ZPpwt\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"JhaIXtr0U\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"About us\"})})})}),className:\"framer-fcnkwd\",\"data-framer-name\":\"Contact\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kkW8ZPpwt\",style:{\"--extracted-r6o4lv\":\"var(--token-671f0608-bbbe-4f51-bad5-4e3926a9da8d, rgb(113, 109, 109))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({SHd_gI8Dk:{height:56,width:`min(${componentViewport?.width||\"100vw\"}, 1640px)`,y:(componentViewport?.y||0)+24+80+0+331.6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xwmfc6-container\",layoutDependency:layoutDependency,layoutId:\"e5SPn8PNU-container\",nodeId:\"e5SPn8PNU\",rendersWithMotion:true,scopeId:\"JhaIXtr0U\",children:/*#__PURE__*/_jsx(MainButton,{height:\"100%\",id:\"e5SPn8PNU\",JXMIoYZp4:\"https://app.optise.com/register\",layoutId:\"e5SPn8PNU\",PUhePhWff:PUhePhWffzaivv5,style:{width:\"100%\"},variant:\"bCA_9woj1\",width:\"100%\",xjqfdJLBf:\"Get Started\"})})}),isDisplayed7()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h6yfbf\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"w1UrNHBSN\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-stb2jq\",\"data-framer-name\":\"Menu\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"HryeEjtOe\",svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M3.75 12h16.5M3.75 6h16.5M3.75 18h16.5\" stroke=\"#0F0F0F\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true})})]}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1j2shab-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"VAACUcufg-container\",nodeId:\"VAACUcufg\",rendersWithMotion:true,scopeId:\"JhaIXtr0U\",style:{opacity:0},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(StopScroll,{height:\"100%\",id:\"VAACUcufg\",layoutId:\"VAACUcufg\",toggle:true,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HL0Se.framer-etizjs, .framer-HL0Se .framer-etizjs { display: block; }\",\".framer-HL0Se.framer-1n48equ { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 24px 0px 24px 0px; position: relative; width: 1200px; }\",\".framer-HL0Se .framer-cuwaio { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1640px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-HL0Se .framer-1wry3jo { flex: none; gap: 0px; height: 40px; overflow: visible; position: relative; text-decoration: none; width: 120px; }\",\".framer-HL0Se .framer-1ip4mbf, .framer-HL0Se .framer-n89p2f, .framer-HL0Se .framer-11pv5bx { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-HL0Se .framer-jy928t { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px 40px 0px 0px; position: relative; width: 1px; }\",\".framer-HL0Se .framer-1xoxnav, .framer-HL0Se .framer-t79gkt, .framer-HL0Se .framer-je01nr, .framer-HL0Se .framer-dtf9ou { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 15px 24px 17px 24px; position: relative; width: min-content; }\",\".framer-HL0Se .framer-ip6vi3, .framer-HL0Se .framer-1ephcb5, .framer-HL0Se .framer-191h98h, .framer-HL0Se .framer-fcnkwd { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HL0Se .framer-1kz7f3u-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-HL0Se .framer-815qtc { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; min-height: 56px; min-width: 56px; overflow: visible; padding: 12px; position: relative; width: min-content; z-index: 4; }\",\".framer-HL0Se .framer-19kkc51 { flex: none; gap: 0px; height: 32px; left: calc(50.00000000000002% - 32px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 32px / 2); width: 32px; z-index: 1; }\",\".framer-HL0Se .framer-1hp1bxi { bottom: 8px; flex: none; left: 6px; position: absolute; right: 8px; top: 6px; }\",\".framer-HL0Se .framer-1ljyjj { flex: none; height: 18px; left: calc(50.00000000000002% - 18px / 2); position: absolute; top: calc(50.00000000000002% - 18px / 2); width: 18px; }\",\".framer-HL0Se .framer-vbwxkl, .framer-HL0Se .framer-1h6yfbf { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 24px; }\",\".framer-HL0Se .framer-qmdg3v, .framer-HL0Se .framer-stb2jq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-HL0Se .framer-18ib7dc { flex: none; gap: 0px; height: 24px; left: calc(50.00000000000002% - 24px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; z-index: 1; }\",\".framer-HL0Se .framer-10v1qnw, .framer-HL0Se .framer-l1o77z { flex: none; height: 20px; left: calc(50.00000000000002% - 20px / 2); position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 20px; }\",\".framer-HL0Se .framer-1m9v50h { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 200px; height: min-content; justify-content: flex-start; max-width: 1640px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-HL0Se .framer-kke5kx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-HL0Se .framer-1xwmfc6-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-HL0Se .framer-1j2shab-container { -webkit-user-select: none; flex: none; height: auto; left: 0%; pointer-events: none; position: absolute; top: 0%; user-select: none; width: auto; z-index: 1; }\",\".framer-HL0Se.framer-v-m3z4nh.framer-1n48equ { width: 810px; }\",\".framer-HL0Se.framer-v-m3z4nh .framer-jy928t { padding: 0px 20px 0px 0px; }\",\".framer-HL0Se.framer-v-16i7bcw.framer-1n48equ, .framer-HL0Se.framer-v-onlkp7.framer-1n48equ { align-content: flex-start; align-items: flex-start; justify-content: flex-start; width: 390px; }\",\".framer-HL0Se.framer-v-16i7bcw .framer-vbwxkl, .framer-HL0Se.framer-v-y75m6w .framer-vbwxkl, .framer-HL0Se.framer-v-onlkp7 .framer-vbwxkl, .framer-HL0Se.framer-v-onlkp7 .framer-18ib7dc { cursor: pointer; }\",\".framer-HL0Se.framer-v-y75m6w.framer-1n48equ { flex-direction: column; gap: 40px; justify-content: flex-start; max-height: calc(var(--framer-viewport-height, 100vh) * 1); min-height: calc(var(--framer-viewport-height, 100vh) * 1); width: 390px; }\",\".framer-HL0Se.framer-v-y75m6w .framer-cuwaio, .framer-HL0Se.framer-v-y75m6w .framer-1m9v50h { flex: none; width: 100%; }\",\".framer-HL0Se.framer-v-y75m6w .framer-je01nr, .framer-HL0Se.framer-v-y75m6w .framer-dtf9ou { width: 100%; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 109\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"bgS5aHxOu\":{\"layout\":[\"fixed\",\"auto\"]},\"LdjXnZhQ4\":{\"layout\":[\"fixed\",\"auto\"]},\"SHd_gI8Dk\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",\"100vh\"]},\"KiPwS2P1S\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"cGf4RGEzo\":\"button\",\"KZM63UyzP\":\"x\",\"O38PNfKe2\":\"getStarted\",\"mlXc2w5ae\":\"close\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerJhaIXtr0U=withCSS(Component,css,\"framer-HL0Se\");export default FramerJhaIXtr0U;FramerJhaIXtr0U.displayName=\"Header\";FramerJhaIXtr0U.defaultProps={height:109,width:1200};addPropertyControls(FramerJhaIXtr0U,{variant:{options:[\"yKaeApYE6\",\"bgS5aHxOu\",\"LdjXnZhQ4\",\"SHd_gI8Dk\",\"KiPwS2P1S\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone Close\",\"Phone Open\",\"Phone with X\"],title:\"Variant\",type:ControlType.Enum},cGf4RGEzo:{title:\"Button\",type:ControlType.EventHandler},KZM63UyzP:{defaultValue:true,title:\"X\",type:ControlType.Boolean},O38PNfKe2:{defaultValue:true,title:\"Get Started\",type:ControlType.Boolean},mlXc2w5ae:{title:\"Close\",type:ControlType.EventHandler}});addFonts(FramerJhaIXtr0U,[{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\"}]},...MainButtonFonts,...StopScrollFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJhaIXtr0U\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bgS5aHxOu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LdjXnZhQ4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SHd_gI8Dk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",\\\"100vh\\\"]},\\\"KiPwS2P1S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"109\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"cGf4RGEzo\\\":\\\"button\\\",\\\"KZM63UyzP\\\":\\\"x\\\",\\\"O38PNfKe2\\\":\\\"getStarted\\\",\\\"mlXc2w5ae\\\":\\\"close\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JhaIXtr0U.map","// Generated by Framer (f030ee3)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Haffer Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Haffer Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/iqpHHMapspN1ZqZl6618xxUE.woff2\"}]}];export const css=[\".framer-im5YO .framer-styles-preset-wpkj19:not(.rich-text-wrapper), .framer-im5YO .framer-styles-preset-wpkj19.rich-text-wrapper h5 { --framer-font-family: \\\"Haffer Bold\\\", \\\"Haffer Bold Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-382b7462-4f82-44d1-bc11-550c4fdec63b, #241f1f); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\",\"@media (max-width: 1199px) and (min-width: 768px) { .framer-im5YO .framer-styles-preset-wpkj19:not(.rich-text-wrapper), .framer-im5YO .framer-styles-preset-wpkj19.rich-text-wrapper h5 { --framer-font-family: \\\"Haffer Bold\\\", \\\"Haffer Bold Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-382b7462-4f82-44d1-bc11-550c4fdec63b, #241f1f); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\",\"@media (max-width: 767px) and (min-width: 0px) { .framer-im5YO .framer-styles-preset-wpkj19:not(.rich-text-wrapper), .framer-im5YO .framer-styles-preset-wpkj19.rich-text-wrapper h5 { --framer-font-family: \\\"Haffer Bold\\\", \\\"Haffer Bold Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-382b7462-4f82-44d1-bc11-550c4fdec63b, #241f1f); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\"];export const className=\"framer-im5YO\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}