{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js", "ssg:https://framerusercontent.com/modules/uGQZtcsxBzvxqsgxQ0Tz/b7VYVaGCWWNyhqVsgsiv/Hubspot.js", "ssg:https://framerusercontent.com/modules/VP8WhrpGqd5rk2rGYLga/5CkCJ9cc45nt096x9ipG/kTYvIlnER-0.js", "ssg:https://framerusercontent.com/modules/VP8WhrpGqd5rk2rGYLga/5CkCJ9cc45nt096x9ipG/kTYvIlnER.js", "ssg:https://framerusercontent.com/modules/d0XturM1c8go5rlp6lLD/4yTMePo5tUEjT0Ey7K0l/bkh4MkJES.js", "ssg:https://framerusercontent.com/modules/NcqUDykDRSDBjQC9htir/gPwPdEM4rNAVdiqRkhWj/kTYvIlnER.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,useLocaleCode}from\"framer\";import{startTransition,useCallback,useEffect,useRef,useState}from\"react\";const fontStack=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;function formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showMinutes,showSeconds},timeFormat,monthFormat,localCode){const date=new Date;const onlyYearIsShown=!showWeekday&&!showMonth&&showYear;switch(outputType){case\"date\":return new Intl.DateTimeFormat(localCode,{weekday:showWeekday?\"long\":undefined,day:onlyYearIsShown?undefined:\"numeric\",month:showMonth?monthFormat:undefined,year:showYear?\"numeric\":undefined}).format(date);case\"time\":return new Intl.DateTimeFormat(localCode,{hour:\"numeric\",minute:showMinutes?\"numeric\":undefined,second:showSeconds&&showMinutes?\"numeric\":undefined,hour12:timeFormat===\"12h\"}).format(date);default:return new Intl.DateTimeFormat(localCode).format(date);}}const defaultProps={height:20,width:140,outputType:\"time\",color:\"#999\",timeFormat:\"24h\",showYear:true,showMonth:true,showWeekday:true,showMinutes:true,showSeconds:true,monthFormat:\"long\",alignment:\"center\"};/**\n * TIME AND DATE\n * FORKED FROM PROTOTYPING\n *\n * @framerIntrinsicWidth 140\n * @framerIntrinsicHeight 20\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export function Time(props){const mergedProps={...defaultProps,...props};const{outputType,timeFormat,showYear,showMonth,showWeekday,// showHours,\nshowMinutes,showSeconds,monthFormat,color,font,tabularFont}=mergedProps;const localCode=useLocaleCode();const getTextContent=useCallback(()=>formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,// showHours,\n    showMinutes,showSeconds},timeFormat,monthFormat,localCode),[localCode,monthFormat,outputType,showMinutes,showMonth,showSeconds,showWeekday,showYear,timeFormat]);const timeoutRef=useRef()// FIXME: With React 19, we can remove this and return a cleanup from the ref callback\n;const updateCountdown=useCallback(node=>{if(node===null){// React calls w/ `null` on unmount or if the ref function changes.\nclearTimeout(timeoutRef.current);return;}let prev;const tick=()=>{const date=new Date;const next=new Date().setSeconds(date.getSeconds()+1,0)-+date;timeoutRef.current=setTimeout(tick,next);const textContent=getTextContent();if(prev!==textContent){node.textContent=textContent;prev=textContent;}};tick();},[getTextContent]);const[visible,setIsVisible]=useState(false);const isCanvas=RenderTarget.current()===RenderTarget.canvas;useEffect(()=>{startTransition(()=>setIsVisible(true));// Don\u2019t want real time on Canvas\nif(isCanvas)return;},[isCanvas]);return /*#__PURE__*/_jsx(\"p\",{suppressHydrationWarning:true,style:{margin:0,padding:0,color,fontFamily:fontStack,fontWeight:500,fontSize:16,lineHeight:1,visibility:visible?\"visible\":\"hidden\",...font,fontVariantNumeric:tabularFont?\"tabular-nums\":\"normal\",whiteSpace:\"nowrap\"},ref:isCanvas?undefined:updateCountdown,children:getTextContent()});}Time.displayName=\"Time & Date\";addPropertyControls(Time,{outputType:{title:\"Type\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"date\",\"time\"],optionTitles:[\"Date\",\"Time\"],defaultValue:defaultProps.outputType},showWeekday:{title:\"Day\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showWeekday,hidden:props=>props.outputType!==\"date\"},showMonth:{title:\"Month\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showMonth,hidden:props=>props.outputType!==\"date\"},monthFormat:{title:\"Format\",type:ControlType.Enum,options:[\"short\",\"long\",\"numeric\"],optionTitles:[\"Short\",\"Long\",\"Numeric\"],defaultValue:defaultProps.monthFormat,hidden:props=>props.outputType!==\"date\"||!props.showMonth},showYear:{title:\"Year\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showYear,hidden:props=>props.outputType!==\"date\"},timeFormat:{title:\"Format\",type:ControlType.Enum,options:[\"12h\",\"24h\"],optionTitles:[\"12h\",\"24h\"],displaySegmentedControl:true,defaultValue:defaultProps.timeFormat,hidden:props=>props.outputType!==\"time\"},// showHours: {\n//     title: \"Hours\",\n//     type: ControlType.Boolean,\n//     enabledTitle: \"Show\",\n//     disabledTitle: \"Hide\",\n//     defaultValue: defaultProps.showHours,\n//     hidden: (props) => props.outputType !== \"time\",\n// },\nshowMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showMinutes,hidden:props=>props.outputType!==\"time\"},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showSeconds,hidden:props=>props.outputType!==\"time\"||!props.showMinutes},font:{type:ControlType.Font,controls:\"extended\"},tabularFont:{title:\"Tabular\",type:ControlType.Boolean,defaultValue:true},color:{type:ControlType.Color,defaultValue:defaultProps.color}});\nexport const __FramerMetadata__ = {\"exports\":{\"Time\":{\"type\":\"reactComponent\",\"name\":\"Time\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicWidth\":\"140\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Time.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{emptyStateStyle,stateParagraphStyle,stateTitleStyle}from\"https://framer.com/m/framer/integrations-styles.js@0.2.0\";// Poll for 5 minutes ...\nfunction poll(f,delay=200,count=5*60*5,i=0){if(i>count){console.error(\"poll max attempts\",f);return;}if(!f()){console.log(\"poll\",delay,count,i);setTimeout(()=>{poll(f,delay,count,i+1);},delay);}}function EmptyState({title,description}){return /*#__PURE__*/_jsxs(\"div\",{style:{...emptyStateStyle,width:\"100%\",height:\"100%\"},children:[/*#__PURE__*/_jsx(\"h1\",{style:stateTitleStyle,children:title}),/*#__PURE__*/_jsx(\"p\",{style:stateParagraphStyle,children:description})]});}/**\n * HUBSPOT\n *\n * @framerIntrinsicWidth 480\n * @framerIntrinsicHeight 300\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function HubSpotForm({portalId,formId,advanced,region,id}){if(!portalId||!formId||!region){return /*#__PURE__*/_jsx(EmptyState,{title:\"Hubspot\",description:\"Set a portal ID and form in the Properties.\"});}// const ref = React.createRef<HTMLDivElement>()\nconst elementId=`hubspot_form_${id}`;const cleanup=()=>{const element=document.querySelector(`#${elementId}`);if(element)element.innerHTML=\"\";};React.useEffect(()=>{if(window.hbspt){handleScriptLoad();return cleanup;}const script=document.createElement(\"script\");script.src=`https://js-${region}.hsforms.net/forms/shell.js`;script.onload=handleScriptLoad();document.body.appendChild(script);return cleanup;},[portalId,formId,region]);const handleScriptLoad=()=>{console.log(\"Loading HubSpot form...\",portalId);poll(()=>{if(!window.hbspt){console.warn(`HubSpot could not be loaded: window.hbspt is missing`);return false;}if(!document.querySelector(`#${elementId}`)){console.warn(`HubSpot could not be loaded: element not found #${elementId}`);return false;}cleanup();window.hbspt.forms.create({region,portalId,formId,target:`#${elementId}`,formInstanceId:formId});return true;});};return /*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\"},id:elementId});}addPropertyControls(HubSpotForm,{portalId:{title:\"Portal\",type:ControlType.String,placeholder:\"25276298\",// defaultValue: \"25276298\",\ndescription:\"Create a [Hubspot](https://www.hubspot.com/) account, add a new form and copy your portal ID. [Learn more\u2026](https://www.framer.com/plugins/hubspot/)\"},formId:{title:\"Form\",type:ControlType.String,placeholder:\"e7167571-4bc4-4c2c-bfdc-a0a8dbfd22f1\"},advanced:{title:\"Advanced\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},region:{title:\"Region\",type:ControlType.String,placeholder:\"eu1\",defaultValue:\"eu1\",hidden:({advanced})=>!advanced}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"HubSpotForm\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"300\",\"framerIntrinsicWidth\":\"480\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Hubspot.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1hddwuu\",\"data-styles-preset\":\"X_Nd8yXBv\",children:\"Seg\\xf0u h\\xe6 vi\\xf0 n\\xfdja h\\xf3tel vin \\xfeinn\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ihpa1n\",\"data-styles-preset\":\"rn8ukwnPf\",children:\"Seg\\xf0u h\\xe6 vi\\xf0 n\\xfdja h\\xf3tel vin \\xfeinn\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f082bd6)\nimport*as localizedValues from\"./kTYvIlnER-0.js\";const valuesByLocaleId={U4sMU9nAD:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ae47b7e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={npf3Q_k9_:{hover:true,pressed:true}};const cycleOrder=[\"npf3Q_k9_\",\"Q0ozWQNjI\",\"iGhcmdJPd\",\"neqBQgXXu\",\"WUSx9SqDK\"];const serializationHash=\"framer-kJQVq\";const variantClassNames={iGhcmdJPd:\"framer-v-12ie2cl\",neqBQgXXu:\"framer-v-svzy4y\",npf3Q_k9_:\"framer-v-1kns8nt\",Q0ozWQNjI:\"framer-v-1kqladz\",WUSx9SqDK:\"framer-v-gsfkoy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-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={Default:\"npf3Q_k9_\",Disabled:\"iGhcmdJPd\",Error:\"WUSx9SqDK\",Loading:\"Q0ozWQNjI\",Success:\"neqBQgXXu\"};const getProps=({height,id,title,width,...props})=>{return{...props,pWcsx3sF1:title??props.pWcsx3sF1??\"Contact us\",variant:humanReadableVariantMap[props.variant]??props.variant??\"npf3Q_k9_\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,pWcsx3sF1,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"npf3Q_k9_\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Q0ozWQNjI\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"Q0ozWQNjI\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1kns8nt\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"npf3Q_k9_\",ref:ref??ref1,style:{backgroundColor:\"var(--token-3493f92e-7772-425d-9cb4-5560f58ccfae, rgb(101, 74, 255))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40,opacity:1,...style},variants:{\"npf3Q_k9_-hover\":{backgroundColor:\"rgba(51, 51, 51, 0.85)\",opacity:1},\"npf3Q_k9_-pressed\":{backgroundColor:\"rgb(51, 51, 51)\",opacity:1},iGhcmdJPd:{opacity:.5},neqBQgXXu:{opacity:1},WUSx9SqDK:{backgroundColor:\"rgba(255, 34, 68, 0.15)\",opacity:1}},...addPropertyOverrides({\"npf3Q_k9_-hover\":{\"data-framer-name\":undefined},\"npf3Q_k9_-pressed\":{\"data-framer-name\":undefined},iGhcmdJPd:{\"data-framer-name\":\"Disabled\"},neqBQgXXu:{\"data-framer-name\":\"Success\"},Q0ozWQNjI:{\"data-framer-name\":\"Loading\"},WUSx9SqDK:{\"data-framer-name\":\"Error\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Contact us\"})}),className:\"framer-u6y88k\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"k0eTn2vn8\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:pWcsx3sF1,variants:{WUSx9SqDK:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({neqBQgXXu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Thank you\"})}),text:undefined},WUSx9SqDK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Something went wrong\"})}),text:undefined}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-d7lnnj\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"qO91jQ8La\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-143xoyt\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"Ivs_DdsF3\",style:{background:\"conic-gradient(from 180deg at 50% 50%, rgb(68, 204, 255) 0deg, rgb(68, 204, 255) 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{Q0ozWQNjI:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rrs1fq\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"rOstHtaA0\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kJQVq.framer-ivubj9, .framer-kJQVq .framer-ivubj9 { display: block; }\",\".framer-kJQVq.framer-1kns8nt { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 40px; justify-content: center; overflow: visible; padding: 16px 20px 16px 20px; position: relative; width: min-content; }\",\".framer-kJQVq .framer-u6y88k { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-kJQVq .framer-d7lnnj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-kJQVq .framer-143xoyt { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-kJQVq .framer-1rrs1fq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kJQVq.framer-1kns8nt { gap: 0px; } .framer-kJQVq.framer-1kns8nt > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-kJQVq.framer-1kns8nt > :first-child { margin-left: 0px; } .framer-kJQVq.framer-1kns8nt > :last-child { margin-right: 0px; } }\",\".framer-kJQVq.framer-v-1kqladz.framer-1kns8nt, .framer-kJQVq.framer-v-12ie2cl.framer-1kns8nt, .framer-kJQVq.framer-v-svzy4y.framer-1kns8nt, .framer-kJQVq.framer-v-gsfkoy.framer-1kns8nt { cursor: unset; }\",\".framer-kJQVq.framer-v-1kqladz .framer-143xoyt { overflow: hidden; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 113\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"Q0ozWQNjI\":{\"layout\":[\"auto\",\"fixed\"]},\"iGhcmdJPd\":{\"layout\":[\"auto\",\"fixed\"]},\"neqBQgXXu\":{\"layout\":[\"auto\",\"fixed\"]},\"WUSx9SqDK\":{\"layout\":[\"auto\",\"fixed\"]},\"d7sxTy33z\":{\"layout\":[\"auto\",\"fixed\"]},\"Xjta_9C6g\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"pWcsx3sF1\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerbkh4MkJES=withCSS(Component,css,\"framer-kJQVq\");export default Framerbkh4MkJES;Framerbkh4MkJES.displayName=\"Button 2\";Framerbkh4MkJES.defaultProps={height:40,width:113};addPropertyControls(Framerbkh4MkJES,{variant:{options:[\"npf3Q_k9_\",\"Q0ozWQNjI\",\"iGhcmdJPd\",\"neqBQgXXu\",\"WUSx9SqDK\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum},pWcsx3sF1:{defaultValue:\"Contact us\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(Framerbkh4MkJES,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerbkh4MkJES\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"113\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Q0ozWQNjI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"iGhcmdJPd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"neqBQgXXu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"WUSx9SqDK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"d7sxTy33z\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Xjta_9C6g\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"pWcsx3sF1\\\":\\\"title\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bkh4MkJES.map", "// Generated by Framer (f082bd6)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,FormContainer,FormPlainTextInput,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Time as TimeDate}from\"https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js\";import HubSpotForm from\"https://framerusercontent.com/modules/uGQZtcsxBzvxqsgxQ0Tz/b7VYVaGCWWNyhqVsgsiv/Hubspot.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/lmj6EMW3FEtrqDEdIQmK/HLpn2Dmhue6xFJHIuJdo/oXGSdmIXV.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/3xdo3GH4MXOMLihnzqeR/1pduJ6dV6qxJEqHU4KUD/rn8ukwnPf.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/DxiNV8tVM5Ds8Y621ByL/s3wNcbuo1H9MS5P5bZj9/vHjRgAxmD.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/rI810h2F43Xkj99qMKZG/SZFa8KYOKa4XBjyhzPtC/X_Nd8yXBv.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/VP8WhrpGqd5rk2rGYLga/5CkCJ9cc45nt096x9ipG/kTYvIlnER.js\";import Button2 from\"https://framerusercontent.com/modules/d0XturM1c8go5rlp6lLD/4yTMePo5tUEjT0Ey7K0l/bkh4MkJES.js\";import Navlist from\"https://framerusercontent.com/modules/R7ZoSO1iDov7gZMfMEna/faa638CWT6j1yOiuitYw/CADARuWzP.js\";import Button from\"https://framerusercontent.com/modules/5KCeSJAOeq4PIpmC7SMX/gG0QmqK8KFynsJuOCsZq/nrbn6cqdc.js\";import Socials from\"https://framerusercontent.com/modules/SHMeTPPNSFBEhYylO1Jo/9Wn6Kn6502fPdwOLXVkK/w6yax8u3i.js\";const ButtonFonts=getFonts(Button);const Button2Fonts=getFonts(Button2);const MotionDivWithFX=withFX(motion.div);const NavlistFonts=getFonts(Navlist);const HubSpotFormFonts=getFonts(HubSpotForm);const SocialsFonts=getFonts(Socials);const TimeDateFonts=getFonts(TimeDate);const cycleOrder=[\"PLbZONYF5\",\"GN4OATIck\",\"ityg7B50S\",\"gqcJc1pRc\"];const serializationHash=\"framer-L1JhJ\";const variantClassNames={GN4OATIck:\"framer-v-yv7cq3\",gqcJc1pRc:\"framer-v-gbf9gr\",ityg7B50S:\"framer-v-d9f0ot\",PLbZONYF5:\"framer-v-52okg1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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={\"Mini Desktop\":\"gqcJc1pRc\",Desktop:\"PLbZONYF5\",Phone:\"GN4OATIck\",Tablet:\"ityg7B50S\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"PLbZONYF5\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"PLbZONYF5\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const faELl7S_Utxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"ityg7B50S\")return false;return true;};const ref2=React.useRef(null);const ref3=React.useRef(null);const router=useRouter();const isDisplayed1=()=>{if(baseVariant===\"ityg7B50S\")return true;return false;};const ref4=React.useRef(null);const ref5=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-52okg1\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"PLbZONYF5\",ref:ref??ref1,style:{backgroundColor:\"var(--token-a062a22a-9885-4b7d-84d5-7f02fae8d82f, rgb(248, 248, 248))\",...style},...addPropertyOverrides({GN4OATIck:{\"data-framer-name\":\"Phone\"},gqcJc1pRc:{\"data-framer-name\":\"Mini Desktop\"},ityg7B50S:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s9srhk\",layoutDependency:layoutDependency,layoutId:\"dTDEu0gsx\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1el72hn\",\"data-framer-name\":\"Frame 1000002795\",layoutDependency:layoutDependency,layoutId:\"I294:1414;294:1368\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-lycsqe\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"Ynnxbykrq\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"waCFlV0gJ\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1smuuiz framer-177gm5t\",\"data-framer-name\":\"hitels_purple\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:113,layoutDependency:layoutDependency,layoutId:\"waCFlV0gJ\",svg:'<svg width=\"113\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.92 10.582c2.253 0 4.024.725 5.312 2.174 1.315 1.449 1.972 3.461 1.972 6.037v11.47c0 .403-.201.604-.604.604h-6.037c-.402 0-.603-.201-.603-.604v-9.579c0-2.307-.94-3.46-2.818-3.46-1.932 0-2.897 1.153-2.897 3.46v9.58c0 .402-.202.603-.604.603H.604c-.403 0-.604-.201-.604-.604V3.298c0-.403.201-.604.604-.604H6.64c.402 0 .604.201.604.604V13.52h.12c1.02-1.958 2.871-2.938 5.554-2.938Zm13.873-1.61c-1.288 0-2.348-.389-3.18-1.167-.805-.805-1.207-1.824-1.207-3.059 0-1.207.402-2.213 1.207-3.018C24.445.923 25.505.52 26.793.52c1.26 0 2.294.402 3.099 1.207.832.805 1.248 1.811 1.248 3.018 0 1.235-.416 2.254-1.248 3.06-.805.777-1.838 1.166-3.1 1.166Zm-3.019 21.895c-.402 0-.603-.201-.603-.604V11.75c0-.402.2-.603.603-.603h6.037c.403 0 .604.201.604.603v18.514c0 .403-.201.604-.604.604h-6.037Z\" fill=\"#FFE385\"/><path d=\"M48.138 24.427c.456-.187.684-.04.684.443v5.192c0 .322-.12.537-.362.644-1.127.483-2.55.724-4.266.724-2.925 0-5.098-.684-6.52-2.052-1.423-1.395-2.134-3.528-2.134-6.4v-5.554h-2.978c-.402 0-.604-.2-.604-.603v-5.072c0-.402.202-.603.604-.603h2.978v-4.79c0-.402.202-.603.604-.603h6.037c.403 0 .604.2.604.603v4.79h5.353c.402 0 .604.201.604.603v5.072c0 .402-.202.603-.604.603h-5.353v4.387c0 1.1.228 1.879.684 2.335.483.456 1.288.684 2.415.684.859 0 1.61-.134 2.254-.402Zm12.765-13.845c3.113 0 5.662.98 7.647 2.938 2.013 1.932 3.019 4.441 3.019 7.527v.805c0 .697-.336 1.046-1.006 1.046H57.28c.43 2.012 1.717 3.019 3.864 3.019 1.502 0 2.508-.416 3.018-1.248.161-.295.39-.443.684-.443h5.635c.215 0 .362.054.443.161.107.08.147.201.12.363-.563 1.985-1.717 3.595-3.46 4.83-1.745 1.233-3.918 1.85-6.52 1.85-3.274 0-5.93-.965-7.97-2.897-2.012-1.959-3.018-4.44-3.018-7.446 0-3.032 1.006-5.54 3.018-7.526 2.04-1.986 4.642-2.979 7.808-2.979Zm.12 5.474c-1.904 0-3.112.886-3.621 2.656h6.922c-.43-1.77-1.53-2.656-3.3-2.656Zm13.476 14.811c-.403 0-.604-.201-.604-.604V3.298c0-.403.201-.604.604-.604h6.037c.402 0 .603.201.603.604v26.965c0 .403-.2.604-.603.604h-6.037Zm18.365.563c-2.844 0-5.07-.536-6.68-1.61-1.61-1.1-2.55-2.615-2.818-4.547-.08-.43.107-.644.563-.644h5.876c.322 0 .537.174.644.523.323.778 1.1 1.167 2.335 1.167 1.502 0 2.254-.47 2.254-1.409 0-.456-.201-.778-.604-.965-.376-.215-1.06-.376-2.053-.483l-2.334-.202c-2.173-.214-3.837-.858-4.99-1.932-1.128-1.073-1.691-2.441-1.691-4.105 0-2.012.805-3.622 2.415-4.83 1.61-1.207 3.944-1.81 7.003-1.81 5.554 0 8.626 2.065 9.216 6.197.081.43-.107.644-.563.644h-5.796c-.322 0-.536-.174-.644-.523-.295-.778-1.046-1.167-2.253-1.167-1.476 0-2.214.43-2.214 1.288 0 .698.94 1.127 2.817 1.288l2.335.201c2.093.215 3.702.832 4.829 1.852 1.127 1.02 1.691 2.414 1.691 4.185 0 2.147-.819 3.837-2.455 5.071-1.637 1.208-3.931 1.811-6.883 1.811Z\" fill=\"#654AFF\"/><path d=\"M111.752 30.102c-.805.805-1.864 1.208-3.179 1.208-1.315 0-2.375-.403-3.18-1.208-.805-.805-1.207-1.851-1.207-3.139 0-1.288.402-2.334 1.207-3.14.805-.831 1.865-1.247 3.18-1.247 1.315 0 2.374.416 3.179 1.248.832.805 1.248 1.851 1.248 3.14 0 1.287-.416 2.333-1.248 3.138Z\" fill=\"#FFE385\"/></svg>',withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6vpos9\",\"data-framer-name\":\"Categories\",layoutDependency:layoutDependency,layoutId:\"I294:1414;294:1371\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2rosur\",\"data-framer-name\":\"Frame 114\",layoutDependency:layoutDependency,layoutId:\"I294:1414;294:1372\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1hddwuu\",\"data-styles-preset\":\"X_Nd8yXBv\",children:\"Say hi to your new hotel platform \"})}),className:\"framer-1p1ebuf\",\"data-framer-name\":\"Say hi to your new hotel platform\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I294:1414;294:1373\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+80+0+0+0+0+51+0+0+152,...addPropertyOverrides({GN4OATIck:{y:(componentViewport?.y||0)+60+0+0+0+0+51+0+0+0+70.80000000000001}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nxciab-container\",id:`${layoutId}-nxciab`,layoutDependency:layoutDependency,layoutId:\"E7tHXeiid-container\",ref:ref2,children:[/*#__PURE__*/_jsx(Button,{Ag2LQ3oS2:true,faELl7S_U:faELl7S_Utxyyif({overlay}),height:\"100%\",id:\"E7tHXeiid\",layoutId:\"E7tHXeiid\",M_QMXn89X:\"Envelope\",oiLp7CqJL:\"Join our mailing list\",tmETOjIAC:false,variant:\"HXbN8ujpp\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref2,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-nxciab`,offsetX:0,offsetY:-10,onDismiss:overlay.hide,placement:\"top\",safeArea:false,zIndex:11,...addPropertyOverrides({GN4OATIck:{offsetY:0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-ifod7l\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"zfrU05NQH\",ref:ref3,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/c3af55ca-5014-462c-a21f-090b18c80818/submit\",className:\"framer-1y7fpdk\",layoutDependency:layoutDependency,layoutId:\"tc6Nbp8nS\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ihpa1n\",\"data-styles-preset\":\"rn8ukwnPf\",children:\"Join our mailing list to receive exciting updates directly to your inbox!\"})}),className:\"framer-1tdoyho\",\"data-framer-name\":\"Say hi to your new hotel platform\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qxEUOp83h\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dxmy7h\",layoutDependency:layoutDependency,layoutId:\"Nd1ycNWKT\",children:/*#__PURE__*/_jsxs(motion.label,{className:\"framer-6xzxnt\",layoutDependency:layoutDependency,layoutId:\"XPNS5LbEP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1ihpa1n\",\"data-styles-preset\":\"rn8ukwnPf\",children:[\"Email\",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-4e1f630f-2984-42e7-8d28-ff02ba13a1bf, rgb(255, 0, 0)))\"},children:\"*\"})]})}),className:\"framer-ei4t91\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RKzZJlSyy\",style:{\"--extracted-1w3ko1f\":\"var(--token-4e1f630f-2984-42e7-8d28-ff02ba13a1bf, rgb(255, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{autofillEnabled:true,className:\"framer-y9zgxn\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"dmEhXIAAb\",placeholder:\"\",required:true,style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-b919075a-99d6-4e2b-b477-fd0095ed49f7, rgb(93, 91, 112))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-b919075a-99d6-4e2b-b477-fd0095ed49f7, rgb(93, 91, 112))\"},type:\"email\"})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ygcqvr-container\",layoutDependency:layoutDependency,layoutId:\"jgaR_hi_4-container\",children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",id:\"jgaR_hi_4\",layoutId:\"jgaR_hi_4\",pWcsx3sF1:\"Submit\",style:{height:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"Q0ozWQNjI\",success:\"neqBQgXXu\"},\"npf3Q_k9_\"),width:\"100%\"})})})]})})})})})]})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cif182\",\"data-framer-name\":\"Product\",layoutDependency:layoutDependency,layoutId:\"I294:1414;294:1380\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5k94j1\",\"data-styles-preset\":\"vHjRgAxmD\",children:\"Product\"})}),className:\"framer-1ci2es7\",\"data-framer-name\":\"Product\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I294:1414;294:1381\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"aNQ4ddLFh\"},implicitPathVariables:undefined},{href:{webPageId:\"aNQ4ddLFh\"},implicitPathVariables:undefined},{href:{webPageId:\"aNQ4ddLFh\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+80+0+0+0+0+51+0+0+160,...addPropertyOverrides({GN4OATIck:{y:(componentViewport?.y||0)+60+0+0+0+0+51+0+150.8+0+150},gqcJc1pRc:{y:(componentViewport?.y||0)+80+0+0+0+0+51+0+0+48}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-j4vp9i-container\",layoutDependency:layoutDependency,layoutId:\"JchVzS1VS-container\",children:/*#__PURE__*/_jsx(Navlist,{cm1uHAedY:\"rgb(0, 0, 0)\",height:\"100%\",id:\"JchVzS1VS\",layoutId:\"JchVzS1VS\",style:{height:\"100%\"},u_GZ3HlCj:resolvedLinks[0],variant:\"SoeCcEccQ\",width:\"100%\",XQoRxkSqV:\"Showroom\",...addPropertyOverrides({GN4OATIck:{u_GZ3HlCj:resolvedLinks[1]},gqcJc1pRc:{u_GZ3HlCj:resolvedLinks[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VAikxDmdN\"},implicitPathVariables:undefined},{href:{webPageId:\"VAikxDmdN\"},implicitPathVariables:undefined},{href:{webPageId:\"VAikxDmdN\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+80+0+0+0+0+51+0+0+210,...addPropertyOverrides({GN4OATIck:{y:(componentViewport?.y||0)+60+0+0+0+0+51+0+150.8+0+190},gqcJc1pRc:{y:(componentViewport?.y||0)+80+0+0+0+0+51+0+0+98}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4zld9n-container\",layoutDependency:layoutDependency,layoutId:\"p7w6ilrZj-container\",children:/*#__PURE__*/_jsx(Navlist,{cm1uHAedY:\"rgb(0, 0, 0)\",height:\"100%\",id:\"p7w6ilrZj\",layoutId:\"p7w6ilrZj\",style:{height:\"100%\"},u_GZ3HlCj:resolvedLinks1[0],variant:\"SoeCcEccQ\",width:\"100%\",XQoRxkSqV:\"Custom Hotel Websites\",...addPropertyOverrides({GN4OATIck:{u_GZ3HlCj:resolvedLinks1[1]},gqcJc1pRc:{u_GZ3HlCj:resolvedLinks1[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"R8eIBLseN\"},implicitPathVariables:undefined},{href:{webPageId:\"R8eIBLseN\"},implicitPathVariables:undefined},{href:{webPageId:\"R8eIBLseN\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+80+0+0+0+0+51+0+0+260,...addPropertyOverrides({GN4OATIck:{y:(componentViewport?.y||0)+60+0+0+0+0+51+0+150.8+0+230},gqcJc1pRc:{y:(componentViewport?.y||0)+80+0+0+0+0+51+0+0+148}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-104m4em-container\",layoutDependency:layoutDependency,layoutId:\"Z1VQgJn53-container\",children:/*#__PURE__*/_jsx(Navlist,{cm1uHAedY:\"rgb(0, 0, 0)\",height:\"100%\",id:\"Z1VQgJn53\",layoutId:\"Z1VQgJn53\",style:{height:\"100%\"},u_GZ3HlCj:resolvedLinks2[0],variant:\"SoeCcEccQ\",width:\"100%\",XQoRxkSqV:\"Hotel Managers\",...addPropertyOverrides({GN4OATIck:{u_GZ3HlCj:resolvedLinks2[1]},gqcJc1pRc:{u_GZ3HlCj:resolvedLinks2[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"nZLsixBhN\"},implicitPathVariables:undefined},{href:{webPageId:\"nZLsixBhN\"},implicitPathVariables:undefined},{href:{webPageId:\"nZLsixBhN\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+80+0+0+0+0+51+0+0+310,...addPropertyOverrides({GN4OATIck:{y:(componentViewport?.y||0)+60+0+0+0+0+51+0+150.8+0+270},gqcJc1pRc:{y:(componentViewport?.y||0)+80+0+0+0+0+51+0+0+198}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ux2jmu-container\",layoutDependency:layoutDependency,layoutId:\"mx4R1AjV3-container\",children:/*#__PURE__*/_jsx(Navlist,{cm1uHAedY:\"rgb(0, 0, 0)\",height:\"100%\",id:\"mx4R1AjV3\",layoutId:\"mx4R1AjV3\",style:{height:\"100%\"},u_GZ3HlCj:resolvedLinks3[0],variant:\"SoeCcEccQ\",width:\"100%\",XQoRxkSqV:\"Book a Demo\",...addPropertyOverrides({GN4OATIck:{u_GZ3HlCj:resolvedLinks3[1]},gqcJc1pRc:{u_GZ3HlCj:resolvedLinks3[2]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nwuo40\",\"data-framer-name\":\"Resources\",layoutDependency:layoutDependency,layoutId:\"I294:1414;294:1385\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5k94j1\",\"data-styles-preset\":\"vHjRgAxmD\",children:\"Resources\"})}),className:\"framer-18f6xnf\",\"data-framer-name\":\"Resources\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I294:1414;294:1386\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"siDWOTKRQ\"},implicitPathVariables:undefined},{href:{webPageId:\"siDWOTKRQ\"},implicitPathVariables:undefined},{href:{webPageId:\"siDWOTKRQ\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+80+0+0+0+0+51+0+0+160,...addPropertyOverrides({GN4OATIck:{y:(componentViewport?.y||0)+60+0+0+0+0+51+0+482.8+0+150},gqcJc1pRc:{y:(componentViewport?.y||0)+80+0+0+0+0+51+0+0+48}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cswl0a-container\",layoutDependency:layoutDependency,layoutId:\"rxMI3Myue-container\",children:/*#__PURE__*/_jsx(Navlist,{cm1uHAedY:\"rgb(0, 0, 0)\",height:\"100%\",id:\"rxMI3Myue\",layoutId:\"rxMI3Myue\",style:{height:\"100%\"},u_GZ3HlCj:resolvedLinks4[0],variant:\"SoeCcEccQ\",width:\"100%\",XQoRxkSqV:\"Resource Center\",...addPropertyOverrides({GN4OATIck:{u_GZ3HlCj:resolvedLinks4[1]},gqcJc1pRc:{u_GZ3HlCj:resolvedLinks4[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"siDWOTKRQ\"},implicitPathVariables:undefined},{href:{webPageId:\"siDWOTKRQ\"},implicitPathVariables:undefined},{href:{webPageId:\"siDWOTKRQ\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+80+0+0+0+0+51+0+0+210,...addPropertyOverrides({GN4OATIck:{y:(componentViewport?.y||0)+60+0+0+0+0+51+0+482.8+0+190},gqcJc1pRc:{y:(componentViewport?.y||0)+80+0+0+0+0+51+0+0+98}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15ayns4-container\",layoutDependency:layoutDependency,layoutId:\"I9Gisank2-container\",children:/*#__PURE__*/_jsx(Navlist,{cm1uHAedY:\"rgb(0, 0, 0)\",height:\"100%\",id:\"I9Gisank2\",layoutId:\"I9Gisank2\",style:{height:\"100%\"},u_GZ3HlCj:resolvedLinks5[0],variant:\"SoeCcEccQ\",width:\"100%\",XQoRxkSqV:\"News\",...addPropertyOverrides({GN4OATIck:{u_GZ3HlCj:resolvedLinks5[1]},gqcJc1pRc:{u_GZ3HlCj:resolvedLinks5[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"siDWOTKRQ\"},implicitPathVariables:undefined},{href:{webPageId:\"siDWOTKRQ\"},implicitPathVariables:undefined},{href:{webPageId:\"siDWOTKRQ\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+80+0+0+0+0+51+0+0+260,...addPropertyOverrides({GN4OATIck:{y:(componentViewport?.y||0)+60+0+0+0+0+51+0+482.8+0+230},gqcJc1pRc:{y:(componentViewport?.y||0)+80+0+0+0+0+51+0+0+148}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fki3wg-container\",layoutDependency:layoutDependency,layoutId:\"QeSud6bnJ-container\",children:/*#__PURE__*/_jsx(Navlist,{cm1uHAedY:\"rgb(0, 0, 0)\",height:\"100%\",id:\"QeSud6bnJ\",layoutId:\"QeSud6bnJ\",style:{height:\"100%\"},u_GZ3HlCj:resolvedLinks6[0],variant:\"SoeCcEccQ\",width:\"100%\",XQoRxkSqV:\"Discover (Tips & Tricks)\",...addPropertyOverrides({GN4OATIck:{u_GZ3HlCj:resolvedLinks6[1]},gqcJc1pRc:{u_GZ3HlCj:resolvedLinks6[2]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15141zl\",\"data-framer-name\":\"Company\",layoutDependency:layoutDependency,layoutId:\"I294:1414;294:1392\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5k94j1\",\"data-styles-preset\":\"vHjRgAxmD\",children:\"Company\"})}),className:\"framer-u35u3\",\"data-framer-name\":\"Company\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I294:1414;294:1393\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dERi4T_ae\"},implicitPathVariables:undefined},{href:{webPageId:\"dERi4T_ae\"},implicitPathVariables:undefined},{href:{webPageId:\"dERi4T_ae\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+80+0+0+0+0+51+0+0+160,...addPropertyOverrides({GN4OATIck:{y:(componentViewport?.y||0)+60+0+0+0+0+51+0+774.8+0+150},gqcJc1pRc:{y:(componentViewport?.y||0)+80+0+0+0+0+51+0+0+48}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cap6b6-container\",layoutDependency:layoutDependency,layoutId:\"IS4u25Ups-container\",children:/*#__PURE__*/_jsx(Navlist,{cm1uHAedY:\"rgb(0, 0, 0)\",height:\"100%\",id:\"IS4u25Ups\",layoutId:\"IS4u25Ups\",u_GZ3HlCj:resolvedLinks7[0],variant:\"SoeCcEccQ\",width:\"100%\",XQoRxkSqV:\"About Hitels\",...addPropertyOverrides({GN4OATIck:{u_GZ3HlCj:resolvedLinks7[1]},gqcJc1pRc:{u_GZ3HlCj:resolvedLinks7[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"nZLsixBhN\"},implicitPathVariables:undefined},{href:{webPageId:\"nZLsixBhN\"},implicitPathVariables:undefined},{href:{webPageId:\"nZLsixBhN\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+80+0+0+0+0+51+0+0+210,...addPropertyOverrides({GN4OATIck:{y:(componentViewport?.y||0)+60+0+0+0+0+51+0+774.8+0+190},gqcJc1pRc:{y:(componentViewport?.y||0)+80+0+0+0+0+51+0+0+98}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y3po3z-container\",layoutDependency:layoutDependency,layoutId:\"h3XmXLVoL-container\",children:/*#__PURE__*/_jsx(Navlist,{cm1uHAedY:\"rgb(0, 0, 0)\",height:\"100%\",id:\"h3XmXLVoL\",layoutId:\"h3XmXLVoL\",u_GZ3HlCj:resolvedLinks8[0],variant:\"SoeCcEccQ\",width:\"100%\",XQoRxkSqV:\"Contact Us\",...addPropertyOverrides({GN4OATIck:{u_GZ3HlCj:resolvedLinks8[1]},gqcJc1pRc:{u_GZ3HlCj:resolvedLinks8[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+80+0+0+0+0+51+0+0+260,...addPropertyOverrides({GN4OATIck:{y:(componentViewport?.y||0)+60+0+0+0+0+51+0+774.8+0+230},gqcJc1pRc:{y:(componentViewport?.y||0)+80+0+0+0+0+51+0+0+148}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-uswb4b-container\",layoutDependency:layoutDependency,layoutId:\"bf73jHRVW-container\",children:/*#__PURE__*/_jsx(Navlist,{cm1uHAedY:\"rgb(0, 0, 0)\",height:\"100%\",id:\"bf73jHRVW\",layoutId:\"bf73jHRVW\",u_GZ3HlCj:\"https://ev81y1yi8yj.typeform.com/to/MPBXjKWq\",variant:\"SoeCcEccQ\",width:\"100%\",XQoRxkSqV:\"Email Us\"})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-172vpd0\",\"data-framer-name\":\"Categories Tablet\",layoutDependency:layoutDependency,layoutId:\"A213irDXU\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12h59to\",\"data-framer-name\":\"Frame 114\",layoutDependency:layoutDependency,layoutId:\"K7ePUKOnQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5k94j1\",\"data-styles-preset\":\"vHjRgAxmD\",children:\"Say hi to your new hotel platform \"})}),className:\"framer-1u3x4zi\",\"data-framer-name\":\"Say hi to your new hotel platform\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zx8jbWCeN\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,...addPropertyOverrides({ityg7B50S:{y:(componentViewport?.y||0)+40+0+0+0+0+51+0+0+0+180}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11jpgnx-container\",id:`${layoutId}-11jpgnx`,layoutDependency:layoutDependency,layoutId:\"L5BgV2a1W-container\",ref:ref4,children:[/*#__PURE__*/_jsx(Button,{Ag2LQ3oS2:true,faELl7S_U:faELl7S_Utxyyif({overlay:overlay1}),height:\"100%\",id:\"L5BgV2a1W\",layoutId:\"L5BgV2a1W\",M_QMXn89X:\"ArrowRight\",oiLp7CqJL:\"Join our mailing list\",tmETOjIAC:false,variant:\"ASNuR7qjF\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref4,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-11jpgnx`,offsetX:0,offsetY:-10,onDismiss:overlay1.hide,placement:\"top\",safeArea:false,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-8gbeov\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"JQ9031J9D\",ref:ref5,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bi64e2-container\",layoutDependency:layoutDependency,layoutId:\"rQa_gEIT3-container\",children:/*#__PURE__*/_jsx(HubSpotForm,{advanced:false,formId:\"4207328e-7c30-423f-8059-b01f3e48060e\",height:\"100%\",id:\"rQa_gEIT3\",layoutId:\"rQa_gEIT3\",portalId:\"8731541\",region:\"eu1\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})]})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4u6nm6\",layoutDependency:layoutDependency,layoutId:\"rKjUa8z4n\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gutacb\",\"data-framer-name\":\"Product\",layoutDependency:layoutDependency,layoutId:\"f7AghqR5Q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l6drpc\",\"data-styles-preset\":\"oXGSdmIXV\",children:\"Product\"})}),className:\"framer-1nqlsj1\",\"data-framer-name\":\"Product\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"n2RXZr1EV\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VAikxDmdN\"},implicitPathVariables:undefined},{href:{webPageId:\"VAikxDmdN\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,...addPropertyOverrides({ityg7B50S:{y:(componentViewport?.y||0)+40+0+0+0+0+51+0+268+0+0+210}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k0cnj7-container\",layoutDependency:layoutDependency,layoutId:\"B3FeGaYgx-container\",children:/*#__PURE__*/_jsx(Navlist,{cm1uHAedY:\"rgb(0, 0, 0)\",height:\"100%\",id:\"B3FeGaYgx\",layoutId:\"B3FeGaYgx\",style:{height:\"100%\"},u_GZ3HlCj:resolvedLinks9[0],variant:\"SoeCcEccQ\",width:\"100%\",XQoRxkSqV:\"Custom Hotel Websites\",...addPropertyOverrides({ityg7B50S:{u_GZ3HlCj:resolvedLinks9[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"aNQ4ddLFh\"},implicitPathVariables:undefined},{href:{webPageId:\"aNQ4ddLFh\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,...addPropertyOverrides({ityg7B50S:{y:(componentViewport?.y||0)+40+0+0+0+0+51+0+268+0+0+160}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-eyygi6-container\",layoutDependency:layoutDependency,layoutId:\"brYHj8mvL-container\",children:/*#__PURE__*/_jsx(Navlist,{cm1uHAedY:\"rgb(0, 0, 0)\",height:\"100%\",id:\"brYHj8mvL\",layoutId:\"brYHj8mvL\",style:{height:\"100%\"},u_GZ3HlCj:resolvedLinks10[0],variant:\"SoeCcEccQ\",width:\"100%\",XQoRxkSqV:\"Showroom\",...addPropertyOverrides({ityg7B50S:{u_GZ3HlCj:resolvedLinks10[1]}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cqjmet-container\",layoutDependency:layoutDependency,layoutId:\"vIt9Q_kqJ-container\",children:/*#__PURE__*/_jsx(Navlist,{cm1uHAedY:\"rgb(0, 0, 0)\",height:\"100%\",id:\"vIt9Q_kqJ\",layoutId:\"vIt9Q_kqJ\",style:{height:\"100%\"},u_GZ3HlCj:resolvedLinks11[0],variant:\"SoeCcEccQ\",width:\"100%\",XQoRxkSqV:\"Hitels Awards\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"R8eIBLseN\"},implicitPathVariables:undefined},{href:{webPageId:\"R8eIBLseN\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,...addPropertyOverrides({ityg7B50S:{y:(componentViewport?.y||0)+40+0+0+0+0+51+0+268+0+0+260}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1na3k0i-container\",layoutDependency:layoutDependency,layoutId:\"UFIiudzFO-container\",children:/*#__PURE__*/_jsx(Navlist,{cm1uHAedY:\"rgb(0, 0, 0)\",height:\"100%\",id:\"UFIiudzFO\",layoutId:\"UFIiudzFO\",style:{height:\"100%\"},u_GZ3HlCj:resolvedLinks12[0],variant:\"SoeCcEccQ\",width:\"100%\",XQoRxkSqV:\"Hotel Managers\",...addPropertyOverrides({ityg7B50S:{u_GZ3HlCj:resolvedLinks12[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,...addPropertyOverrides({ityg7B50S:{y:(componentViewport?.y||0)+40+0+0+0+0+51+0+268+0+0+310}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12cou7l-container\",layoutDependency:layoutDependency,layoutId:\"efPRzcE0d-container\",children:/*#__PURE__*/_jsx(Navlist,{cm1uHAedY:\"rgb(0, 0, 0)\",height:\"100%\",id:\"efPRzcE0d\",layoutId:\"efPRzcE0d\",style:{height:\"100%\"},u_GZ3HlCj:\"https://form.typeform.com/to/MPBXjKWq?typeform-source=ev81y1yi8yj.typeform.com\",variant:\"SoeCcEccQ\",width:\"100%\",XQoRxkSqV:\"Book a Demo\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14w0p8e\",\"data-framer-name\":\"Resources\",layoutDependency:layoutDependency,layoutId:\"ApuRpMNS0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l6drpc\",\"data-styles-preset\":\"oXGSdmIXV\",children:\"Resources\"})}),className:\"framer-q84b76\",\"data-framer-name\":\"Resources\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wti_h6sH8\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"siDWOTKRQ\"},implicitPathVariables:undefined},{href:{webPageId:\"siDWOTKRQ\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,...addPropertyOverrides({ityg7B50S:{y:(componentViewport?.y||0)+40+0+0+0+0+51+0+268+0+0+160}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-auhxxq-container\",layoutDependency:layoutDependency,layoutId:\"ORdRDe4qk-container\",children:/*#__PURE__*/_jsx(Navlist,{cm1uHAedY:\"rgb(0, 0, 0)\",height:\"100%\",id:\"ORdRDe4qk\",layoutId:\"ORdRDe4qk\",style:{height:\"100%\"},u_GZ3HlCj:resolvedLinks13[0],variant:\"SoeCcEccQ\",width:\"100%\",XQoRxkSqV:\"Resource Center\",...addPropertyOverrides({ityg7B50S:{u_GZ3HlCj:resolvedLinks13[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"siDWOTKRQ\"},implicitPathVariables:undefined},{href:{webPageId:\"siDWOTKRQ\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,...addPropertyOverrides({ityg7B50S:{y:(componentViewport?.y||0)+40+0+0+0+0+51+0+268+0+0+210}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lnrnyl-container\",layoutDependency:layoutDependency,layoutId:\"FjfzrnbZY-container\",children:/*#__PURE__*/_jsx(Navlist,{cm1uHAedY:\"rgb(0, 0, 0)\",height:\"100%\",id:\"FjfzrnbZY\",layoutId:\"FjfzrnbZY\",style:{height:\"100%\"},u_GZ3HlCj:resolvedLinks14[0],variant:\"SoeCcEccQ\",width:\"100%\",XQoRxkSqV:\"News\",...addPropertyOverrides({ityg7B50S:{u_GZ3HlCj:resolvedLinks14[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"siDWOTKRQ\"},implicitPathVariables:undefined},{href:{webPageId:\"siDWOTKRQ\"},implicitPathVariables:undefined}],children:resolvedLinks15=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,...addPropertyOverrides({ityg7B50S:{y:(componentViewport?.y||0)+40+0+0+0+0+51+0+268+0+0+260}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-upernk-container\",layoutDependency:layoutDependency,layoutId:\"PDQsZrLmA-container\",children:/*#__PURE__*/_jsx(Navlist,{cm1uHAedY:\"rgb(0, 0, 0)\",height:\"100%\",id:\"PDQsZrLmA\",layoutId:\"PDQsZrLmA\",style:{height:\"100%\"},u_GZ3HlCj:resolvedLinks15[0],variant:\"SoeCcEccQ\",width:\"100%\",XQoRxkSqV:\"Blog\",...addPropertyOverrides({ityg7B50S:{u_GZ3HlCj:resolvedLinks15[1]}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jzxiav\",\"data-framer-name\":\"Company\",layoutDependency:layoutDependency,layoutId:\"dhaXXiXfK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l6drpc\",\"data-styles-preset\":\"oXGSdmIXV\",children:\"Company\"})}),className:\"framer-12jpz3p\",\"data-framer-name\":\"Company\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b9yCqEGZe\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks16=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,...addPropertyOverrides({ityg7B50S:{y:(componentViewport?.y||0)+40+0+0+0+0+51+0+648+0+160}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-c6fs9l-container\",layoutDependency:layoutDependency,layoutId:\"N3esCH62K-container\",children:/*#__PURE__*/_jsx(Navlist,{cm1uHAedY:\"rgb(0, 0, 0)\",height:\"100%\",id:\"N3esCH62K\",layoutId:\"N3esCH62K\",u_GZ3HlCj:resolvedLinks16[0],variant:\"SoeCcEccQ\",width:\"100%\",XQoRxkSqV:\"About Hitels\",...addPropertyOverrides({ityg7B50S:{u_GZ3HlCj:resolvedLinks16[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks17=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,...addPropertyOverrides({ityg7B50S:{y:(componentViewport?.y||0)+40+0+0+0+0+51+0+648+0+210}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yd6jyv-container\",layoutDependency:layoutDependency,layoutId:\"rxBYdP94w-container\",children:/*#__PURE__*/_jsx(Navlist,{cm1uHAedY:\"rgb(0, 0, 0)\",height:\"100%\",id:\"rxBYdP94w\",layoutId:\"rxBYdP94w\",u_GZ3HlCj:resolvedLinks17[0],variant:\"SoeCcEccQ\",width:\"100%\",XQoRxkSqV:\"Contact Us\",...addPropertyOverrides({ityg7B50S:{u_GZ3HlCj:resolvedLinks17[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,...addPropertyOverrides({ityg7B50S:{y:(componentViewport?.y||0)+40+0+0+0+0+51+0+648+0+260}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-c0icwf-container\",layoutDependency:layoutDependency,layoutId:\"oLOGBxAu6-container\",children:/*#__PURE__*/_jsx(Navlist,{cm1uHAedY:\"rgb(0, 0, 0)\",height:\"100%\",id:\"oLOGBxAu6\",layoutId:\"oLOGBxAu6\",u_GZ3HlCj:\"https://ev81y1yi8yj.typeform.com/to/MPBXjKWq\",variant:\"SoeCcEccQ\",width:\"100%\",XQoRxkSqV:\"Email us\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks18=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-q725oc-container\",layoutDependency:layoutDependency,layoutId:\"YdxUEq0wx-container\",children:/*#__PURE__*/_jsx(Navlist,{cm1uHAedY:\"var(--token-3493f92e-7772-425d-9cb4-5560f58ccfae, rgb(101, 74, 255))\",height:\"100%\",id:\"YdxUEq0wx\",layoutId:\"YdxUEq0wx\",style:{height:\"100%\"},u_GZ3HlCj:resolvedLinks18[0],variant:\"SoeCcEccQ\",width:\"100%\",XQoRxkSqV:\"Log in\"})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j4cxhm\",\"data-framer-name\":\"Socials + Terms\",layoutDependency:layoutDependency,layoutId:\"I294:1414;294:1400\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yt6i9\",\"data-framer-name\":\"Socials\",layoutDependency:layoutDependency,layoutId:\"I294:1414;294:1401\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24.000003814697266,width:\"24px\",y:(componentViewport?.y||0)+80+0+0+271+2.999998092651367+0,...addPropertyOverrides({GN4OATIck:{y:(componentViewport?.y||0)+60+0+0+1105.8+0+0+0},ityg7B50S:{y:(componentViewport?.y||0)+40+0+0+1009+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ne0v4i-container\",layoutDependency:layoutDependency,layoutId:\"GG0_yPO5F-container\",children:/*#__PURE__*/_jsx(Socials,{GZzN_bkCg:\"instagram.com\",height:\"100%\",id:\"GG0_yPO5F\",layoutId:\"GG0_yPO5F\",nBTzAEuYg:addImageAlt({src:\"https://framerusercontent.com/images/ALFi9aO4nZQOwFnB2FgZrW7kQ.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24.000003814697266,width:\"24px\",y:(componentViewport?.y||0)+80+0+0+271+2.999998092651367+0,...addPropertyOverrides({GN4OATIck:{y:(componentViewport?.y||0)+60+0+0+1105.8+0+0+0},ityg7B50S:{y:(componentViewport?.y||0)+40+0+0+1009+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5pbte0-container\",layoutDependency:layoutDependency,layoutId:\"s4dSbssNW-container\",children:/*#__PURE__*/_jsx(Socials,{GZzN_bkCg:\"facebook.com\",height:\"100%\",id:\"s4dSbssNW\",layoutId:\"s4dSbssNW\",nBTzAEuYg:addImageAlt({src:\"https://framerusercontent.com/images/gE2I2mvRF3lihI7ey3Tn7JOclyQ.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24.000003814697266,width:\"24px\",y:(componentViewport?.y||0)+80+0+0+271+2.999998092651367+0,...addPropertyOverrides({GN4OATIck:{y:(componentViewport?.y||0)+60+0+0+1105.8+0+0+0},ityg7B50S:{y:(componentViewport?.y||0)+40+0+0+1009+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-acssez-container\",layoutDependency:layoutDependency,layoutId:\"yr9wrIU9B-container\",children:/*#__PURE__*/_jsx(Socials,{GZzN_bkCg:\"https://www.linkedin.com/\",height:\"100%\",id:\"yr9wrIU9B\",layoutId:\"yr9wrIU9B\",nBTzAEuYg:addImageAlt({src:\"https://framerusercontent.com/images/tXXOuLid4Ta0Qik4ofHKEZeZLTA.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-heh8it\",\"data-framer-name\":\"Frame 116\",layoutDependency:layoutDependency,layoutId:\"I294:1414;294:1405\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mcdfe8\",\"data-framer-name\":\"Copyright\",layoutDependency:layoutDependency,layoutId:\"Y0_lvvs2o\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ihpa1n\",\"data-styles-preset\":\"rn8ukwnPf\",children:\"\\xa9\"})}),className:\"framer-16jepjt\",\"data-framer-name\":\"\\xa9 2024 Hitels. All rights reserved.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BMJcWw4Fb\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13a2i17-container\",layoutDependency:layoutDependency,layoutId:\"Gry1_7rBa-container\",children:/*#__PURE__*/_jsx(TimeDate,{color:\"rgb(51, 51, 51)\",font:{fontFamily:'\"Pangea Regular\", \"Pangea Regular Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"140%\",textAlign:\"left\"},height:\"100%\",id:\"Gry1_7rBa\",layoutId:\"Gry1_7rBa\",monthFormat:\"long\",outputType:\"date\",showMinutes:false,showMonth:false,showSeconds:true,showWeekday:false,showYear:true,style:{height:\"100%\"},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-1ihpa1n\",\"data-styles-preset\":\"rn8ukwnPf\",children:\"Hitels. All rights reserved. \"})}),className:\"framer-11heym4\",\"data-framer-name\":\"\\xa9 2024 Hitels. All rights reserved.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I294:1414;294:1406\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"JavB1BdfO\"},implicitPathVariables:undefined},{href:{webPageId:\"JavB1BdfO\"},implicitPathVariables:undefined},{href:{webPageId:\"JavB1BdfO\"},implicitPathVariables:undefined},{href:{webPageId:\"JavB1BdfO\"},implicitPathVariables:undefined}],children:resolvedLinks19=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+80+0+0+271+0+0,...addPropertyOverrides({GN4OATIck:{y:(componentViewport?.y||0)+60+0+0+1105.8+0+54.000003814697266+0+22.4},ityg7B50S:{y:(componentViewport?.y||0)+40+0+0+1009+0+34.000003814697266+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mpvzw3-container\",layoutDependency:layoutDependency,layoutId:\"dv02sKZSW-container\",children:/*#__PURE__*/_jsx(Navlist,{cm1uHAedY:\"rgb(0, 0, 0)\",height:\"100%\",id:\"dv02sKZSW\",layoutId:\"dv02sKZSW\",style:{height:\"100%\"},u_GZ3HlCj:resolvedLinks19[0],variant:\"SoeCcEccQ\",width:\"100%\",XQoRxkSqV:\"Cookie Settings \",...addPropertyOverrides({GN4OATIck:{u_GZ3HlCj:resolvedLinks19[1]},gqcJc1pRc:{u_GZ3HlCj:resolvedLinks19[3]},ityg7B50S:{u_GZ3HlCj:resolvedLinks19[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dfA7K0vg5\"},implicitPathVariables:undefined},{href:{webPageId:\"dfA7K0vg5\"},implicitPathVariables:undefined},{href:{webPageId:\"dfA7K0vg5\"},implicitPathVariables:undefined},{href:{webPageId:\"dfA7K0vg5\"},implicitPathVariables:undefined}],children:resolvedLinks20=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+80+0+0+271+0+0,...addPropertyOverrides({GN4OATIck:{y:(componentViewport?.y||0)+60+0+0+1105.8+0+54.000003814697266+0+52.4},ityg7B50S:{y:(componentViewport?.y||0)+40+0+0+1009+0+34.000003814697266+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-s1nffi-container\",layoutDependency:layoutDependency,layoutId:\"DIf1IdaN9-container\",children:/*#__PURE__*/_jsx(Navlist,{cm1uHAedY:\"rgb(0, 0, 0)\",height:\"100%\",id:\"DIf1IdaN9\",layoutId:\"DIf1IdaN9\",style:{height:\"100%\"},u_GZ3HlCj:resolvedLinks20[0],variant:\"SoeCcEccQ\",width:\"100%\",XQoRxkSqV:\"Privacy Policy\",...addPropertyOverrides({GN4OATIck:{u_GZ3HlCj:resolvedLinks20[1]},gqcJc1pRc:{u_GZ3HlCj:resolvedLinks20[3]},ityg7B50S:{u_GZ3HlCj:resolvedLinks20[2]}},baseVariant,gestureVariant)})})})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-L1JhJ.framer-177gm5t, .framer-L1JhJ .framer-177gm5t { display: block; }\",\".framer-L1JhJ.framer-52okg1 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 80px 32px 80px; position: relative; width: 1440px; }\",\".framer-L1JhJ .framer-s9srhk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-end; max-width: 1240px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L1JhJ .framer-1el72hn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L1JhJ .framer-lycsqe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 31px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-L1JhJ .framer-1smuuiz { aspect-ratio: 3.53125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; text-decoration: none; width: 113px; }\",\".framer-L1JhJ .framer-6vpos9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L1JhJ .framer-2rosur { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 200px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 296px; }\",\".framer-L1JhJ .framer-1p1ebuf, .framer-L1JhJ .framer-1tdoyho, .framer-L1JhJ .framer-1u3x4zi { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-L1JhJ .framer-nxciab-container { flex: none; height: auto; position: relative; width: auto; z-index: 2; }\",\".framer-L1JhJ .framer-ifod7l { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 510px; will-change: var(--framer-will-change-override, transform); }\",\".framer-L1JhJ .framer-1y7fpdk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 720px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-L1JhJ .framer-1dxmy7h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L1JhJ .framer-6xzxnt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-L1JhJ .framer-ei4t91, .framer-L1JhJ .framer-16jepjt, .framer-L1JhJ .framer-11heym4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-L1JhJ .framer-y9zgxn { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-font-weight: 400; --framer-input-padding: 12px; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-L1JhJ .framer-1ygcqvr-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-L1JhJ .framer-1cif182, .framer-L1JhJ .framer-1nwuo40, .framer-L1JhJ .framer-15141zl { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-L1JhJ .framer-1ci2es7, .framer-L1JhJ .framer-u35u3, .framer-L1JhJ .framer-1nqlsj1, .framer-L1JhJ .framer-12jpz3p { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 337px; word-break: break-word; word-wrap: break-word; }\",\".framer-L1JhJ .framer-j4vp9i-container, .framer-L1JhJ .framer-4zld9n-container, .framer-L1JhJ .framer-104m4em-container, .framer-L1JhJ .framer-1ux2jmu-container, .framer-L1JhJ .framer-cswl0a-container, .framer-L1JhJ .framer-15ayns4-container, .framer-L1JhJ .framer-fki3wg-container, .framer-L1JhJ .framer-1k0cnj7-container, .framer-L1JhJ .framer-eyygi6-container, .framer-L1JhJ .framer-cqjmet-container, .framer-L1JhJ .framer-1na3k0i-container, .framer-L1JhJ .framer-12cou7l-container, .framer-L1JhJ .framer-auhxxq-container, .framer-L1JhJ .framer-1lnrnyl-container, .framer-L1JhJ .framer-upernk-container, .framer-L1JhJ .framer-q725oc-container, .framer-L1JhJ .framer-1mpvzw3-container, .framer-L1JhJ .framer-s1nffi-container { flex: none; height: 30px; position: relative; width: auto; }\",\".framer-L1JhJ .framer-18f6xnf, .framer-L1JhJ .framer-q84b76 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 214px; word-break: break-word; word-wrap: break-word; }\",\".framer-L1JhJ .framer-1cap6b6-container, .framer-L1JhJ .framer-y3po3z-container, .framer-L1JhJ .framer-uswb4b-container, .framer-L1JhJ .framer-11jpgnx-container, .framer-L1JhJ .framer-c6fs9l-container, .framer-L1JhJ .framer-1yd6jyv-container, .framer-L1JhJ .framer-c0icwf-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-L1JhJ .framer-172vpd0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L1JhJ .framer-12h59to { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L1JhJ .framer-8gbeov { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 80px 0px; position: relative; width: 339px; will-change: var(--framer-will-change-override, transform); }\",\".framer-L1JhJ .framer-1bi64e2-container { flex: none; height: 168px; position: relative; width: 90%; }\",\".framer-L1JhJ .framer-4u6nm6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L1JhJ .framer-gutacb, .framer-L1JhJ .framer-14w0p8e { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-L1JhJ .framer-jzxiav { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L1JhJ .framer-1j4cxhm { 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-L1JhJ .framer-1yt6i9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-L1JhJ .framer-ne0v4i-container, .framer-L1JhJ .framer-5pbte0-container, .framer-L1JhJ .framer-acssez-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-L1JhJ .framer-heh8it { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 845px; }\",\".framer-L1JhJ .framer-1mcdfe8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-L1JhJ .framer-13a2i17-container { flex: none; height: 22px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-L1JhJ.framer-52okg1, .framer-L1JhJ .framer-s9srhk, .framer-L1JhJ .framer-1el72hn, .framer-L1JhJ .framer-lycsqe, .framer-L1JhJ .framer-6vpos9, .framer-L1JhJ .framer-ifod7l, .framer-L1JhJ .framer-1y7fpdk, .framer-L1JhJ .framer-1dxmy7h, .framer-L1JhJ .framer-6xzxnt, .framer-L1JhJ .framer-1cif182, .framer-L1JhJ .framer-1nwuo40, .framer-L1JhJ .framer-15141zl, .framer-L1JhJ .framer-172vpd0, .framer-L1JhJ .framer-12h59to, .framer-L1JhJ .framer-8gbeov, .framer-L1JhJ .framer-4u6nm6, .framer-L1JhJ .framer-gutacb, .framer-L1JhJ .framer-14w0p8e, .framer-L1JhJ .framer-jzxiav, .framer-L1JhJ .framer-1yt6i9, .framer-L1JhJ .framer-heh8it, .framer-L1JhJ .framer-1mcdfe8 { gap: 0px; } .framer-L1JhJ.framer-52okg1 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-L1JhJ.framer-52okg1 > :first-child, .framer-L1JhJ .framer-s9srhk > :first-child, .framer-L1JhJ .framer-1el72hn > :first-child, .framer-L1JhJ .framer-ifod7l > :first-child, .framer-L1JhJ .framer-1y7fpdk > :first-child, .framer-L1JhJ .framer-6xzxnt > :first-child, .framer-L1JhJ .framer-1cif182 > :first-child, .framer-L1JhJ .framer-1nwuo40 > :first-child, .framer-L1JhJ .framer-15141zl > :first-child, .framer-L1JhJ .framer-172vpd0 > :first-child, .framer-L1JhJ .framer-12h59to > :first-child, .framer-L1JhJ .framer-8gbeov > :first-child, .framer-L1JhJ .framer-gutacb > :first-child, .framer-L1JhJ .framer-14w0p8e > :first-child, .framer-L1JhJ .framer-jzxiav > :first-child { margin-top: 0px; } .framer-L1JhJ.framer-52okg1 > :last-child, .framer-L1JhJ .framer-s9srhk > :last-child, .framer-L1JhJ .framer-1el72hn > :last-child, .framer-L1JhJ .framer-ifod7l > :last-child, .framer-L1JhJ .framer-1y7fpdk > :last-child, .framer-L1JhJ .framer-6xzxnt > :last-child, .framer-L1JhJ .framer-1cif182 > :last-child, .framer-L1JhJ .framer-1nwuo40 > :last-child, .framer-L1JhJ .framer-15141zl > :last-child, .framer-L1JhJ .framer-172vpd0 > :last-child, .framer-L1JhJ .framer-12h59to > :last-child, .framer-L1JhJ .framer-8gbeov > :last-child, .framer-L1JhJ .framer-gutacb > :last-child, .framer-L1JhJ .framer-14w0p8e > :last-child, .framer-L1JhJ .framer-jzxiav > :last-child { margin-bottom: 0px; } .framer-L1JhJ .framer-s9srhk > *, .framer-L1JhJ .framer-1el72hn > *, .framer-L1JhJ .framer-1y7fpdk > *, .framer-L1JhJ .framer-1cif182 > *, .framer-L1JhJ .framer-1nwuo40 > *, .framer-L1JhJ .framer-15141zl > *, .framer-L1JhJ .framer-gutacb > *, .framer-L1JhJ .framer-14w0p8e > *, .framer-L1JhJ .framer-jzxiav > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-L1JhJ .framer-lycsqe > *, .framer-L1JhJ .framer-4u6nm6 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-L1JhJ .framer-lycsqe > :first-child, .framer-L1JhJ .framer-6vpos9 > :first-child, .framer-L1JhJ .framer-1dxmy7h > :first-child, .framer-L1JhJ .framer-4u6nm6 > :first-child, .framer-L1JhJ .framer-1yt6i9 > :first-child, .framer-L1JhJ .framer-heh8it > :first-child, .framer-L1JhJ .framer-1mcdfe8 > :first-child { margin-left: 0px; } .framer-L1JhJ .framer-lycsqe > :last-child, .framer-L1JhJ .framer-6vpos9 > :last-child, .framer-L1JhJ .framer-1dxmy7h > :last-child, .framer-L1JhJ .framer-4u6nm6 > :last-child, .framer-L1JhJ .framer-1yt6i9 > :last-child, .framer-L1JhJ .framer-heh8it > :last-child, .framer-L1JhJ .framer-1mcdfe8 > :last-child { margin-right: 0px; } .framer-L1JhJ .framer-6vpos9 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-L1JhJ .framer-ifod7l > *, .framer-L1JhJ .framer-6xzxnt > *, .framer-L1JhJ .framer-8gbeov > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-L1JhJ .framer-1dxmy7h > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-L1JhJ .framer-172vpd0 > *, .framer-L1JhJ .framer-12h59to > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-L1JhJ .framer-1yt6i9 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-L1JhJ .framer-heh8it > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-L1JhJ .framer-1mcdfe8 > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } }\",\".framer-L1JhJ.framer-v-yv7cq3.framer-52okg1 { padding: 60px 20px 32px 20px; width: 375px; }\",\".framer-L1JhJ.framer-v-yv7cq3 .framer-lycsqe, .framer-L1JhJ.framer-v-yv7cq3 .framer-1ci2es7, .framer-L1JhJ.framer-v-d9f0ot .framer-lycsqe, .framer-L1JhJ.framer-v-gbf9gr .framer-lycsqe { width: 100%; }\",\".framer-L1JhJ.framer-v-yv7cq3 .framer-6vpos9 { flex-direction: column; }\",\".framer-L1JhJ.framer-v-yv7cq3 .framer-2rosur { gap: 24px; height: min-content; justify-content: flex-start; width: 100%; }\",\".framer-L1JhJ.framer-v-yv7cq3 .framer-ifod7l { padding: 24px; width: 339px; }\",\".framer-L1JhJ.framer-v-yv7cq3 .framer-1cif182, .framer-L1JhJ.framer-v-yv7cq3 .framer-1nwuo40, .framer-L1JhJ.framer-v-yv7cq3 .framer-15141zl { align-self: unset; flex: none; gap: 10px; height: min-content; width: 100%; }\",\".framer-L1JhJ.framer-v-yv7cq3 .framer-1j4cxhm { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 30px; justify-content: flex-start; }\",\".framer-L1JhJ.framer-v-yv7cq3 .framer-heh8it { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; justify-content: center; width: 100%; }\",\".framer-L1JhJ.framer-v-yv7cq3 .framer-1mcdfe8 { flex: none; justify-content: flex-start; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-L1JhJ.framer-v-yv7cq3 .framer-6vpos9, .framer-L1JhJ.framer-v-yv7cq3 .framer-2rosur, .framer-L1JhJ.framer-v-yv7cq3 .framer-1cif182, .framer-L1JhJ.framer-v-yv7cq3 .framer-1nwuo40, .framer-L1JhJ.framer-v-yv7cq3 .framer-15141zl, .framer-L1JhJ.framer-v-yv7cq3 .framer-1j4cxhm, .framer-L1JhJ.framer-v-yv7cq3 .framer-heh8it { gap: 0px; } .framer-L1JhJ.framer-v-yv7cq3 .framer-6vpos9 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-L1JhJ.framer-v-yv7cq3 .framer-6vpos9 > :first-child, .framer-L1JhJ.framer-v-yv7cq3 .framer-2rosur > :first-child, .framer-L1JhJ.framer-v-yv7cq3 .framer-1cif182 > :first-child, .framer-L1JhJ.framer-v-yv7cq3 .framer-1nwuo40 > :first-child, .framer-L1JhJ.framer-v-yv7cq3 .framer-15141zl > :first-child, .framer-L1JhJ.framer-v-yv7cq3 .framer-1j4cxhm > :first-child, .framer-L1JhJ.framer-v-yv7cq3 .framer-heh8it > :first-child { margin-top: 0px; } .framer-L1JhJ.framer-v-yv7cq3 .framer-6vpos9 > :last-child, .framer-L1JhJ.framer-v-yv7cq3 .framer-2rosur > :last-child, .framer-L1JhJ.framer-v-yv7cq3 .framer-1cif182 > :last-child, .framer-L1JhJ.framer-v-yv7cq3 .framer-1nwuo40 > :last-child, .framer-L1JhJ.framer-v-yv7cq3 .framer-15141zl > :last-child, .framer-L1JhJ.framer-v-yv7cq3 .framer-1j4cxhm > :last-child, .framer-L1JhJ.framer-v-yv7cq3 .framer-heh8it > :last-child { margin-bottom: 0px; } .framer-L1JhJ.framer-v-yv7cq3 .framer-2rosur > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-L1JhJ.framer-v-yv7cq3 .framer-1cif182 > *, .framer-L1JhJ.framer-v-yv7cq3 .framer-1nwuo40 > *, .framer-L1JhJ.framer-v-yv7cq3 .framer-15141zl > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-L1JhJ.framer-v-yv7cq3 .framer-1j4cxhm > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-L1JhJ.framer-v-yv7cq3 .framer-heh8it > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-L1JhJ.framer-v-d9f0ot.framer-52okg1 { gap: 70px; padding: 40px 40px 32px 40px; width: 810px; }\",\".framer-L1JhJ.framer-v-d9f0ot .framer-8gbeov { padding: 30px 0px 40px 0px; width: 534px; }\",\".framer-L1JhJ.framer-v-d9f0ot .framer-1nqlsj1 { order: 0; }\",\".framer-L1JhJ.framer-v-d9f0ot .framer-1k0cnj7-container { order: 2; }\",\".framer-L1JhJ.framer-v-d9f0ot .framer-eyygi6-container { order: 1; }\",\".framer-L1JhJ.framer-v-d9f0ot .framer-1na3k0i-container { order: 4; }\",\".framer-L1JhJ.framer-v-d9f0ot .framer-12cou7l-container { order: 5; }\",\".framer-L1JhJ.framer-v-d9f0ot .framer-1j4cxhm { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 10px; justify-content: flex-start; }\",\".framer-L1JhJ.framer-v-d9f0ot .framer-heh8it { gap: unset; justify-content: space-between; width: 100%; }\",\".framer-L1JhJ.framer-v-d9f0ot .framer-1mcdfe8 { justify-content: flex-start; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-L1JhJ.framer-v-d9f0ot.framer-52okg1, .framer-L1JhJ.framer-v-d9f0ot .framer-1j4cxhm, .framer-L1JhJ.framer-v-d9f0ot .framer-heh8it { gap: 0px; } .framer-L1JhJ.framer-v-d9f0ot.framer-52okg1 > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-L1JhJ.framer-v-d9f0ot.framer-52okg1 > :first-child, .framer-L1JhJ.framer-v-d9f0ot .framer-1j4cxhm > :first-child { margin-top: 0px; } .framer-L1JhJ.framer-v-d9f0ot.framer-52okg1 > :last-child, .framer-L1JhJ.framer-v-d9f0ot .framer-1j4cxhm > :last-child { margin-bottom: 0px; } .framer-L1JhJ.framer-v-d9f0ot .framer-1j4cxhm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-L1JhJ.framer-v-d9f0ot .framer-heh8it > *, .framer-L1JhJ.framer-v-d9f0ot .framer-heh8it > :first-child, .framer-L1JhJ.framer-v-d9f0ot .framer-heh8it > :last-child { margin: 0px; } }\",\".framer-L1JhJ.framer-v-gbf9gr.framer-52okg1 { align-content: flex-start; align-items: flex-start; padding: 80px 60px 32px 60px; width: 1200px; }\",\".framer-L1JhJ.framer-v-gbf9gr .framer-6vpos9 { gap: 100px; }\",\".framer-L1JhJ.framer-v-gbf9gr .framer-2rosur { aspect-ratio: 1.48 / 1; height: var(--framer-aspect-ratio-supported, 200px); }\",\".framer-L1JhJ.framer-v-gbf9gr .framer-1cif182, .framer-L1JhJ.framer-v-gbf9gr .framer-1nwuo40, .framer-L1JhJ.framer-v-gbf9gr .framer-15141zl { flex: none; width: min-content; }\",\".framer-L1JhJ.framer-v-gbf9gr .framer-1ci2es7, .framer-L1JhJ.framer-v-gbf9gr .framer-18f6xnf, .framer-L1JhJ.framer-v-gbf9gr .framer-u35u3 { white-space: pre; width: auto; }\",\".framer-L1JhJ.framer-v-gbf9gr .framer-1j4cxhm { gap: 0px; justify-content: flex-start; }\",\".framer-L1JhJ.framer-v-gbf9gr .framer-heh8it { flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-L1JhJ.framer-v-gbf9gr .framer-6vpos9, .framer-L1JhJ.framer-v-gbf9gr .framer-1j4cxhm { gap: 0px; } .framer-L1JhJ.framer-v-gbf9gr .framer-6vpos9 > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-L1JhJ.framer-v-gbf9gr .framer-6vpos9 > :first-child, .framer-L1JhJ.framer-v-gbf9gr .framer-1j4cxhm > :first-child { margin-left: 0px; } .framer-L1JhJ.framer-v-gbf9gr .framer-6vpos9 > :last-child, .framer-L1JhJ.framer-v-gbf9gr .framer-1j4cxhm > :last-child { margin-right: 0px; } .framer-L1JhJ.framer-v-gbf9gr .framer-1j4cxhm > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 441\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"GN4OATIck\":{\"layout\":[\"fixed\",\"auto\"]},\"ityg7B50S\":{\"layout\":[\"fixed\",\"auto\"]},\"gqcJc1pRc\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkTYvIlnER=withCSS(Component,css,\"framer-L1JhJ\");export default FramerkTYvIlnER;FramerkTYvIlnER.displayName=\"Footer/Desktop\";FramerkTYvIlnER.defaultProps={height:441,width:1440};addPropertyControls(FramerkTYvIlnER,{variant:{options:[\"PLbZONYF5\",\"GN4OATIck\",\"ityg7B50S\",\"gqcJc1pRc\"],optionTitles:[\"Desktop\",\"Phone\",\"Tablet\",\"Mini Desktop\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerkTYvIlnER,[{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:\"Pangea Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/B8sOZ1UFOHcEVeBvW1FyR5NjrQU.woff2\"}]},...ButtonFonts,...Button2Fonts,...NavlistFonts,...HubSpotFormFonts,...SocialsFonts,...TimeDateFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkTYvIlnER\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GN4OATIck\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ityg7B50S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gqcJc1pRc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"441\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["fontStack", "formatTimeOrDate", "outputType", "showYear", "showMonth", "showWeekday", "showMinutes", "showSeconds", "timeFormat", "monthFormat", "localCode", "date", "onlyYearIsShown", "defaultProps", "Time", "props", "mergedProps", "color", "font", "tabularFont", "useLocaleCode", "getTextContent", "te", "timeoutRef", "pe", "updateCountdown", "node", "prev", "tick", "next", "textContent", "visible", "setIsVisible", "ye", "isCanvas", "RenderTarget", "ue", "Z", "p", "addPropertyControls", "ControlType", "poll", "f", "delay", "count", "i", "EmptyState", "title", "description", "u", "emptyStateStyle", "p", "stateTitleStyle", "stateParagraphStyle", "HubSpotForm", "portalId", "formId", "advanced", "region", "id", "elementId", "cleanup", "element", "ue", "window", "handleScriptLoad", "script", "addPropertyControls", "ControlType", "kTYvIlnER_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v0", "p", "x", "motion", "v1", "__FramerMetadata__", "valuesByLocaleId", "kTYvIlnER_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "pWcsx3sF1", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "css", "Framerbkh4MkJES", "withCSS", "bkh4MkJES_default", "addPropertyControls", "ControlType", "addFonts", "ButtonFonts", "getFonts", "nrbn6cqdc_default", "Button2Fonts", "bkh4MkJES_default", "MotionDivWithFX", "withFX", "motion", "NavlistFonts", "CADARuWzP_default", "HubSpotFormFonts", "HubSpotForm", "SocialsFonts", "w6yax8u3i_default", "TimeDateFonts", "Time", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "formVariants", "form", "currentVariant", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "addImageAlt", "image", "alt", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "faELl7S_Utxyyif", "overlay", "loadMore", "args", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "ref2", "ref3", "router", "useRouter", "isDisplayed1", "ref4", "ref5", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Link", "SVG", "RichText2", "getLocalizedValue", "l", "ComponentViewportProvider", "AnimatePresence", "Floating", "FormContainer", "formState", "FormPlainTextInput2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "overlay1", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "resolvedLinks13", "resolvedLinks14", "resolvedLinks15", "resolvedLinks16", "resolvedLinks17", "resolvedLinks18", "resolvedLinks19", "resolvedLinks20", "css", "FramerkTYvIlnER", "withCSS", "kTYvIlnER_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
