{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/s801VqobGI0Gkh3K9b41/Embed.js", "ssg:https://framerusercontent.com/modules/ZAuH8Ef6T5ZL7Sy9Vg7t/0CbZ6xYMNlCW6NZwlTCW/rnXKbBPi1.js", "ssg:https://framerusercontent.com/modules/VsYjFmG7ZOrYIJoPhE9E/EuT4oKi4XtA9SfjxiOKY/WWOhmVFYv.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,zoom,radius,border,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,zoom:zoom,radius:radius,border:border,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}},border:{title:\"Border\",type:ControlType.Border,optional:true,hidden(props){return props.type!==\"url\";}},radius:{type:ControlType.BorderRadius,title:\"Radius\",hidden(props){return props.type!==\"url\";}},zoom:{title:\"Zoom\",defaultValue:1,type:ControlType.Number,hidden(props){return props.type!==\"url\";},min:.1,max:1,step:.1,displayStepper:true}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,zoom,radius,border,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style,...border,zoom:zoom,borderRadius:radius,transformOrigin:\"top center\"},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{const iframeWindow=ref.current?.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow?.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (890879b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/0XjvojfxMAMQ06c4bM9p/3g5vr5wiLgqHBSjKbWTq/DoitCSbJr.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/ga7nBYANAdSrBygZd2ky/PltrJYkyvT3RXvrsTtDe/MOqZA7eLR.js\";import Button from\"https://framerusercontent.com/modules/vcHAKwtgthIFzk1oAlcA/v1DqJWPx8ojeCU1LghsX/htHeLsUT5.js\";const VideoFonts=getFonts(Video);const ButtonFonts=getFonts(Button);const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const cycleOrder=[\"iQ11OJ4fg\",\"Z0ny8P3Ib\",\"DJZZLkAI7\"];const serializationHash=\"framer-GeHwR\";const variantClassNames={DJZZLkAI7:\"framer-v-hvoe5u\",iQ11OJ4fg:\"framer-v-j7a86x\",Z0ny8P3Ib:\"framer-v-1ixqz5f\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"iQ11OJ4fg\",Phone:\"DJZZLkAI7\",Tablet:\"Z0ny8P3Ib\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"iQ11OJ4fg\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"iQ11OJ4fg\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(ImageWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",positionX:\"center\",positionY:\"center\"},className:cx(scopingClassNames,\"framer-j7a86x\",className,classNames),\"data-framer-appear-id\":\"j7a86x\",\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"iQ11OJ4fg\",optimized:true,ref:refBinding,style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({DJZZLkAI7:{\"data-framer-name\":\"Phone\"},Z0ny8P3Ib:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tuxlck-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Ohq5i8nfn-container\",nodeId:\"Ohq5i8nfn\",rendersWithMotion:true,scopeId:\"rnXKbBPi1\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Ohq5i8nfn\",isMixedBorderRadius:false,layoutId:\"Ohq5i8nfn\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/V8AkPaq7qDjOh2Cadn20ljaVZI.mp4\",srcType:\"Upload\",srcUrl:\"https://s3-figma-videos-production-sig.figma.com/video/1286639424679211859/TEAM/48e7/a58c/-65e0-44ca-8f0a-53c7f939abc4?Expires=1743984000&Key-Pair-Id=APKAQ4GOSFWCW27IBOMQ&Signature=LCghFD8GkeSEdG0zmjvSR0ekBuiWGr-~kufjfTf-McFprfU~1a53V0gdYwvbXRcCUp4Lk3Ef9vWdbLIZDpk-dAfu7TNmFNdaMeZRZJ-cooElDHaISJFqHG~Qg-Vm3jWqttaMoOORwweY95r~8me4qpaCISYYJOmv4ZpUdgvXLDWM6Cnn2IPwqUDFRTYrIiqhiGSXbin9GWZZDk~ScRd-WLC1Yri0pWJnvbPFrF09kzYFGYjQP-eL4MBwKGENOqnReS2X7vH40Vi2pVuJS2-FpcXn918biaUWt9Gtxu2UPjFUMB9GUjP-aNSDlXJlWWSRNhMJ3mecZ4T0UaJPTWCifg__\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ahthb9\",layoutDependency:layoutDependency,layoutId:\"IPFjZvlS9\",style:{background:\"linear-gradient(180deg, rgba(23, 23, 23, 0) 0%, rgba(20, 20, 20, 0.56) 50.226984797297305%, rgba(23, 23, 23, 0.85) 100%)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b9e610\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"AtGmJMmrK\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r6lp15\",layoutDependency:layoutDependency,layoutId:\"PppZBYxIy\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-uuxcvl\",layoutDependency:layoutDependency,layoutId:\"q7BjUSBMY\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1doxabh\",\"data-styles-preset\":\"MOqZA7eLR\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:\"Cases\"})}),className:\"framer-q3u4d0\",\"data-framer-name\":\"Empower seamless hospitality\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xuy8GKojE\",style:{\"--extracted-gdpscs\":\"rgb(255, 255, 255)\",transformPerspective:500},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-lgjgoa\",\"data-styles-preset\":\"DoitCSbJr\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"See how hotels like yours use Innspire to elevate guest experiences, boost efficiency, and drive results across every level.\"})}),className:\"framer-1d7fln3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fSImeUq6F\",style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3by623\",layoutDependency:layoutDependency,layoutId:\"ICHyDiCxd\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+70+0+120+0+0+313.515+0+3,...addPropertyOverrides({DJZZLkAI7:{y:(componentViewport?.y||0)+70+(((componentViewport?.height||440)-70-(Math.max(0,((componentViewport?.height||440)-70-0)/1)*1+0))/2+0+0)+0+0+30+189+0+3},Z0ny8P3Ib:{y:(componentViewport?.y||0)+70+(((componentViewport?.height||786)-70-231.03)/2+0+0)+0+0+0+178.03+0+3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-i0uhry-container\",layoutDependency:layoutDependency,layoutId:\"eLlqZdMiu-container\",nodeId:\"eLlqZdMiu\",rendersWithMotion:true,scopeId:\"rnXKbBPi1\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"eLlqZdMiu\",JuWRVbWZ0:\"Book a demo\",KlR9gJTLp:\"https://www.innspire.com/book-meeting\",layoutId:\"eLlqZdMiu\",variant:\"Wr4VsvfJe\",width:\"100%\"})})})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GeHwR.framer-1jyvcoe, .framer-GeHwR .framer-1jyvcoe { display: block; }\",\".framer-GeHwR.framer-j7a86x { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 786px; justify-content: flex-start; max-width: 1350px; overflow: hidden; padding: 70px 70px 0px 70px; position: relative; width: 1350px; will-change: var(--framer-will-change-override, transform); }\",\".framer-GeHwR .framer-1tuxlck-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-GeHwR .framer-1ahthb9 { bottom: 0px; flex: none; gap: 10px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-GeHwR .framer-1b9e610 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 61px; height: 592px; justify-content: flex-start; overflow: hidden; padding: 120px 0px 0px 0px; position: relative; width: 1136px; z-index: 1; }\",\".framer-GeHwR .framer-1r6lp15 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: 480px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1136px; }\",\".framer-GeHwR .framer-uuxcvl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 112px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GeHwR .framer-q3u4d0 { flex: none; height: 95px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-GeHwR .framer-1d7fln3 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 491px; word-break: break-word; word-wrap: break-word; }\",\".framer-GeHwR .framer-3by623 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 53px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 152px; z-index: 10; }\",\".framer-GeHwR .framer-i0uhry-container { flex: none; height: auto; position: relative; width: auto; z-index: 10; }\",\".framer-GeHwR.framer-v-1ixqz5f.framer-j7a86x { justify-content: center; width: 770px; }\",\".framer-GeHwR.framer-v-1ixqz5f .framer-1b9e610 { height: min-content; padding: 0px; width: 100%; }\",\".framer-GeHwR.framer-v-1ixqz5f .framer-1r6lp15 { height: min-content; width: 100%; }\",\".framer-GeHwR.framer-v-1ixqz5f .framer-uuxcvl, .framer-GeHwR.framer-v-hvoe5u .framer-uuxcvl { height: min-content; }\",\".framer-GeHwR.framer-v-1ixqz5f .framer-q3u4d0 { height: auto; }\",\".framer-GeHwR.framer-v-hvoe5u.framer-j7a86x { height: 440px; justify-content: center; width: 350px; }\",\".framer-GeHwR.framer-v-hvoe5u .framer-1ahthb9 { align-content: center; align-items: center; bottom: unset; display: flex; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: center; padding: 0px; top: calc(49.92248062015506% - 100% / 2); }\",\".framer-GeHwR.framer-v-hvoe5u .framer-1b9e610 { flex: 1 0 0px; height: 1px; padding: 0px; width: 352px; }\",\".framer-GeHwR.framer-v-hvoe5u .framer-1r6lp15 { gap: 0px; height: min-content; justify-content: flex-start; order: 0; padding: 30px 0px 30px 0px; width: 100%; }\",\".framer-GeHwR.framer-v-hvoe5u .framer-q3u4d0 { height: 66px; }\",\".framer-GeHwR.framer-v-hvoe5u .framer-1d7fln3 { height: 123px; width: 292px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 786\n * @framerIntrinsicWidth 1350\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1350px\",null,null]},\"Z0ny8P3Ib\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1350px\",null,null]},\"DJZZLkAI7\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1350px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerrnXKbBPi1=withCSS(Component,css,\"framer-GeHwR\");export default FramerrnXKbBPi1;FramerrnXKbBPi1.displayName=\"Header Cases\";FramerrnXKbBPi1.defaultProps={height:786,width:1350};addPropertyControls(FramerrnXKbBPi1,{variant:{options:[\"iQ11OJ4fg\",\"Z0ny8P3Ib\",\"DJZZLkAI7\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerrnXKbBPi1,[{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\"}]},...VideoFonts,...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrnXKbBPi1\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1350\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1350px\\\",null,null]},\\\"Z0ny8P3Ib\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1350px\\\",null,null]},\\\"DJZZLkAI7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1350px\\\",null,null]}}}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"786\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b96610a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/s801VqobGI0Gkh3K9b41/Embed.js\";import Footer from\"#framer/local/canvasComponent/CibtiOm6U/CibtiOm6U.js\";import Navigation from\"#framer/local/canvasComponent/jATtDbBTl/jATtDbBTl.js\";import HeaderCases from\"#framer/local/canvasComponent/rnXKbBPi1/rnXKbBPi1.js\";import*as sharedStyle1 from\"#framer/local/css/DoitCSbJr/DoitCSbJr.js\";import*as sharedStyle from\"#framer/local/css/SmHQu_Oum/SmHQu_Oum.js\";import*as sharedStyle2 from\"#framer/local/css/sWkIeX9Y3/sWkIeX9Y3.js\";import metadataProvider from\"#framer/local/webPageMetadata/WWOhmVFYv/WWOhmVFYv.js\";const NavigationFonts=getFonts(Navigation);const HeaderCasesFonts=getFonts(HeaderCases);const VideoFonts=getFonts(Video);const EmbedFonts=getFonts(Embed);const FooterFonts=getFonts(Footer);const breakpoints={d1WHIRGil:\"(max-width: 809px)\",TCuCXiLr1:\"(min-width: 810px) and (max-width: 1399px)\",tzR1sOS5s:\"(min-width: 1400px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-iZORC\";const variantClassNames={d1WHIRGil:\"framer-v-9ao7so\",TCuCXiLr1:\"framer-v-64o78c\",tzR1sOS5s:\"framer-v-1bn8atf\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"tzR1sOS5s\",Phone:\"d1WHIRGil\",Tablet:\"TCuCXiLr1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"tzR1sOS5s\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"yUSQd4sqr\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"Zx80CrUew\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"dSOMkKOlt\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"D6BZLVheb\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"kqTyuQdak\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"rRYedGOgw\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"Ec5Ine8zB\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"I20YfdFW7\");const ref8=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"tzR1sOS5s\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1bn8atf\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ltkpa-container\",layoutScroll:true,nodeId:\"nyICZk2rb\",scopeId:\"WWOhmVFYv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{variant:\"GBfN6jTv7\"},TCuCXiLr1:{variant:\"cPOLgRu1C\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"nyICZk2rb\",layoutId:\"nyICZk2rb\",style:{width:\"100%\"},variant:\"EIQwa4svM\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fx88l4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{width:\"350px\",y:(componentViewport?.y||0)+0+0+90+-184},TCuCXiLr1:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+80+0+20+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:786,y:(componentViewport?.y||0)+60+0+30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sngz9j-container\",nodeId:\"fz4NNRx9g\",scopeId:\"WWOhmVFYv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{style:{width:\"100%\"},variant:\"DJZZLkAI7\"},TCuCXiLr1:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(HeaderCases,{height:\"100%\",id:\"fz4NNRx9g\",layoutId:\"fz4NNRx9g\",style:{height:\"100%\"},variant:\"iQ11OJ4fg\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hw2ifh\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vsd5tv\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ugqcc7\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-blenvl\",\"data-framer-name\":\"park-lane-logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 263.82 34\"><path d=\"M 225.519 24.559 L 225.519 1.37 L 228.83 1.37 L 228.83 33.99 L 225.519 33.99 C 225.519 24.915 221.319 21.507 216.061 18.308 C 212.895 16.38 208.161 14.274 205.4 10.5 L 205.4 33.99 L 202.089 33.99 L 202.089 1.37 L 205.4 1.37 C 205.4 10.707 210.16 13.646 215.28 16.788 C 215.28 16.788 223.058 20.683 225.519 24.559 Z M 70.052 17.735 C 67.797 18.632 65.907 20.221 64.358 21.88 L 64.358 2.17 L 75.481 2.17 C 78.558 2.17 80.191 3.73 80.781 4.532 C 81.892 6.041 82.496 8.075 82.247 9.898 C 81.99 11.772 80.382 15.145 75.917 16.123 C 72.605 16.848 71.828 17.029 70.052 17.735 Z M 72.839 17.684 C 74.126 17.34 75.427 17.149 75.427 17.149 C 79.077 16.626 82.881 15.905 85.118 12.686 C 87.191 9.702 86.223 5.528 83.591 3.278 C 81.856 1.794 79.741 1.394 77.553 1.363 L 61.048 1.363 L 61.048 33.983 L 64.358 33.983 L 64.358 27.936 C 64.358 27.936 64.36 23.286 66.974 20.79 C 69.222 18.645 71.238 18.041 73.549 18.579 C 77.988 19.614 84.139 30.932 84.714 33.99 L 88.684 33.99 C 82.829 18.455 72.839 17.684 72.839 17.684 Z M 21.226 9.95 C 20.96 11.814 19.771 13.38 18.364 14.488 C 16.357 16.069 13.995 16.431 13.995 16.431 C 13.116 16.593 11.36 16.894 9.473 17.634 L 9.473 17.629 C 7.3 18.463 5.097 19.976 3.317 21.626 L 3.317 2.12 L 14.459 2.12 C 17.541 2.12 19.018 3.492 19.769 4.486 C 20.901 5.982 21.498 8.04 21.226 9.95 Z M 22.584 3.229 C 20.846 1.743 18.727 1.342 16.535 1.311 L 0 1.311 L 0 33.99 L 3.317 33.99 L 3.317 27.936 C 3.317 25.31 4.034 22.694 5.473 21.108 C 5.473 21.108 6.176 20.187 7.81 19.255 C 7.81 19.255 10.394 17.7 14.405 17.125 C 17.953 16.618 21.872 15.879 24.113 12.655 C 26.191 9.665 25.22 5.484 22.584 3.229 Z M 239.687 33.183 L 239.687 26.112 C 239.687 26.112 239.495 11.917 252.968 17.324 L 255.638 14.689 C 255.638 14.689 244.224 9.95 239.687 20.891 L 239.687 2.178 L 258.192 2.178 C 260.014 2.178 259.93 3.67 259.93 3.67 C 259.93 3.678 259.933 3.686 259.933 3.694 C 259.923 4.836 259.16 5.237 258.579 5.938 C 258.016 6.617 257.264 7.299 257.055 8.204 C 256.877 8.98 257.063 9.865 257.455 10.545 C 257.455 10.545 258.141 11.668 259.846 12.968 C 259.275 11.984 259.288 10.742 259.92 9.833 C 260.481 9.029 261.189 8.342 261.76 7.545 C 262.365 6.703 262.986 5.653 262.854 4.554 C 262.79 3.826 262.487 3.112 262.023 2.564 C 261.11 1.485 259.594 1.401 258.301 1.373 L 236.377 1.37 L 236.377 33.99 L 259.008 33.99 C 260.325 33.964 261.901 33.906 262.839 32.797 C 263.303 32.249 263.606 31.534 263.67 30.806 C 263.802 29.708 263.18 28.657 262.576 27.815 C 262.005 27.018 261.297 26.332 260.736 25.527 C 260.104 24.618 260.086 23.363 260.685 22.333 C 258.612 24.089 258.271 24.815 258.271 24.815 C 257.878 25.495 257.692 26.38 257.871 27.157 C 258.08 28.061 258.832 28.743 259.395 29.422 C 259.976 30.123 260.738 30.524 260.748 31.666 C 260.748 31.674 260.746 31.682 260.746 31.691 C 260.746 31.691 260.83 33.183 259.008 33.183 Z M 160.178 24.819 C 159.786 25.498 159.599 26.383 159.778 27.159 C 159.987 28.064 160.738 28.745 161.302 29.424 C 161.883 30.124 162.645 30.526 162.655 31.667 C 162.654 31.675 162.652 31.683 162.652 31.692 C 162.652 31.692 162.737 33.183 160.914 33.183 L 144.351 33.183 L 144.351 1.381 L 141.041 1.381 L 141.041 33.99 L 160.914 33.99 C 162.231 33.964 163.806 33.906 164.744 32.797 C 165.208 32.249 165.51 31.535 165.575 30.807 C 165.707 29.709 165.086 28.659 164.482 27.818 C 163.909 27.021 163.202 26.334 162.642 25.53 C 162.009 24.621 161.988 23.393 162.595 22.291 C 160.667 23.903 160.178 24.819 160.178 24.819 Z M 183.567 16.634 C 175.281 21.491 173.232 24.439 173.232 24.439 C 172.994 24.739 172.779 25.057 172.586 25.39 C 171.998 22.19 171.851 20.058 171.991 16.728 C 172.093 14.302 172.59 5.858 181.862 3.643 C 185.302 2.822 188.92 3.139 192.244 4.291 C 192.124 10.726 187.247 14.475 183.567 16.634 Z M 184.721 0.961 C 180.854 1.665 177.096 3.739 174.374 6.594 C 169.704 11.492 169.086 18.325 169.735 24.832 C 170.044 27.931 170.671 30.992 171.507 33.99 L 174.813 33.99 C 174.588 33.283 174.372 32.574 174.165 31.862 C 173.504 29.21 174.158 25.964 175.906 23.619 C 177.585 21.365 180.098 19.774 182.264 18.377 C 184.273 17.082 189.222 14.707 192.248 10.505 L 192.248 33.99 L 195.557 33.99 L 195.557 2.275 C 192.087 0.89 188.419 0.288 184.721 0.961 Z M 40.356 22.399 C 35.538 24.433 33.073 33.31 28.314 30.629 C 24.493 28.477 28.185 21.248 29.191 18.94 C 29.974 17.146 34.282 8.379 34.873 7.122 C 36.574 3.51 41.179 3.793 42.318 7.005 C 43.256 9.651 47.879 23.209 47.879 23.209 C 45.507 21.712 42.49 21.498 40.356 22.399 Z M 43.925 1.311 L 36.683 1.311 C 36.683 1.311 26.599 22.418 25.248 25.122 C 22.569 30.483 24.942 32.993 26.548 33.619 C 33.521 36.337 36.328 22.954 42.419 22.662 C 46.417 22.471 48.904 26.55 50.157 30.166 L 51.405 33.965 L 55.144 33.965 Z M 108.202 18.576 C 113.502 19.412 118.486 30.541 119.374 33.997 L 123.347 33.997 C 123.347 33.997 116.712 15.778 105.246 17.778 C 105.246 17.778 106.724 16.734 108.029 15.904 C 108.029 15.904 111.607 13.838 116.829 10.232 C 122.053 6.626 122.203 4.065 121.579 2.307 C 120.949 0.529 118.338 0.951 117.391 1.115 C 116.535 1.263 115.796 1.459 114.707 1.294 C 113.984 1.185 113.485 0.862 113.017 0 C 113.017 0 112.534 5.378 115.971 4.486 C 118.398 3.856 119.087 4.358 119.248 4.954 C 119.347 5.32 119.759 7.086 115.682 9.812 C 111.652 12.507 110.188 13.447 107.649 15.023 C 105.11 16.598 101.275 18.582 98.648 22.679 L 98.648 1.349 L 95.335 1.349 L 95.335 33.99 L 98.648 33.99 L 98.648 29.354 C 98.648 25.172 100.441 17.353 108.202 18.576 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path></svg>',svgContentId:12231963501,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:\"Case Study\"})}),className:\"framer-1rkikmv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+528+100+0+10+274),pixelHeight:1800,pixelWidth:2400,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 20px, 1200px)`,src:\"https://framerusercontent.com/images/SRs7BOyXVYAMVDnGBANjbPzay0.png\",srcSet:\"https://framerusercontent.com/images/SRs7BOyXVYAMVDnGBANjbPzay0.png?scale-down-to=512 512w,https://framerusercontent.com/images/SRs7BOyXVYAMVDnGBANjbPzay0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SRs7BOyXVYAMVDnGBANjbPzay0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/SRs7BOyXVYAMVDnGBANjbPzay0.png 2400w\"}},TCuCXiLr1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+826+100+0+20+274),pixelHeight:1800,pixelWidth:2400,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/SRs7BOyXVYAMVDnGBANjbPzay0.png\",srcSet:\"https://framerusercontent.com/images/SRs7BOyXVYAMVDnGBANjbPzay0.png?scale-down-to=512 512w,https://framerusercontent.com/images/SRs7BOyXVYAMVDnGBANjbPzay0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SRs7BOyXVYAMVDnGBANjbPzay0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/SRs7BOyXVYAMVDnGBANjbPzay0.png 2400w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+846+100+0+100+274),pixelHeight:1800,pixelWidth:2400,positionX:\"center\",positionY:\"center\",sizes:\"1200px\",src:\"https://framerusercontent.com/images/SRs7BOyXVYAMVDnGBANjbPzay0.png\",srcSet:\"https://framerusercontent.com/images/SRs7BOyXVYAMVDnGBANjbPzay0.png?scale-down-to=512 512w,https://framerusercontent.com/images/SRs7BOyXVYAMVDnGBANjbPzay0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SRs7BOyXVYAMVDnGBANjbPzay0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/SRs7BOyXVYAMVDnGBANjbPzay0.png 2400w\"},className:\"framer-d6qvy8\",\"data-framer-name\":\"Parallax image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16ose6w\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-lgjgoa\",\"data-styles-preset\":\"DoitCSbJr\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"From Park to Palm: Park Lane NY Reimagines the Luxury Guest Journey with Innspire\"}),\"\\xa0\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-lgjgoa\",\"data-styles-preset\":\"DoitCSbJr\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"From Park to Palm: Park Lane NY Reimagines the Luxury Guest Journey with InnSpire\"}),\"\\xa0\"]})}),className:\"framer-17y2ucj\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Park Lane New York, an iconic hotel overlooking Central Park, partnered with Innspire as part of its complete transformation into a reimagined luxury destination. The hotel introduced a seamless, mobile-first guest journey powered by Innspire \u2014 including \",/*#__PURE__*/_jsx(\"strong\",{children:\"digital check-in, mobile key access\"}),\", and \",/*#__PURE__*/_jsx(\"strong\",{children:\"in-room entertainment\"}),\". Guests can now arrive, access their rooms, and stream personal content effortlessly, all without stopping at the front desk.\\xa0\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:[\"Park Lane New York, an iconic hotel overlooking Central Park, partnered with InnSpire as part of its complete transformation into a reimagined luxury destination. The hotel introduced a seamless, mobile-first guest journey powered by Innspire \u2014 including \",/*#__PURE__*/_jsx(\"strong\",{children:\"digital check-in, mobile key access\"}),\", and \",/*#__PURE__*/_jsx(\"strong\",{children:\"in-room entertainment\"}),\". Guests can now arrive, access their rooms, and stream personal content effortlessly, all without stopping at the front desk.\\xa0\"]})}),className:\"framer-1of9t8y\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14uh2li\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-p4o8dh\",\"data-styles-preset\":\"sWkIeX9Y3\",style:{\"--framer-text-alignment\":\"center\"},children:\"\u201CThrough our partnership with the talented Innspire team, we were able to create a seamless hotel experience beginning prior to arrival, all from within the palm of your hands.\u201D\\xa0\"})}),className:\"framer-qm8pfw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[\"\u2014 \",/*#__PURE__*/_jsx(\"strong\",{children:\"Niles Harris, Managing Director & Vice President of Operations, Park Lane New York\"}),\"\\xa0\"]})}),className:\"framer-2x6uik\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12kr738\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+528+100+0+10+1625.03+0+0),pixelHeight:3750,pixelWidth:5e3,sizes:`min(${componentViewport?.width||\"100vw\"} - 20px, 1200px)`,src:\"https://framerusercontent.com/images/lnKhwUGDTLiEBsx5gXWWopvSIeo.png\",srcSet:\"https://framerusercontent.com/images/lnKhwUGDTLiEBsx5gXWWopvSIeo.png?scale-down-to=512 512w,https://framerusercontent.com/images/lnKhwUGDTLiEBsx5gXWWopvSIeo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lnKhwUGDTLiEBsx5gXWWopvSIeo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/lnKhwUGDTLiEBsx5gXWWopvSIeo.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/lnKhwUGDTLiEBsx5gXWWopvSIeo.png 5000w\"}},TCuCXiLr1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+826+100+0+20+1625.03+0+0),pixelHeight:3750,pixelWidth:5e3,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/lnKhwUGDTLiEBsx5gXWWopvSIeo.png\",srcSet:\"https://framerusercontent.com/images/lnKhwUGDTLiEBsx5gXWWopvSIeo.png?scale-down-to=512 512w,https://framerusercontent.com/images/lnKhwUGDTLiEBsx5gXWWopvSIeo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lnKhwUGDTLiEBsx5gXWWopvSIeo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/lnKhwUGDTLiEBsx5gXWWopvSIeo.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/lnKhwUGDTLiEBsx5gXWWopvSIeo.png 5000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+846+100+0+100+1625.03+0),pixelHeight:3750,pixelWidth:5e3,sizes:\"569px\",src:\"https://framerusercontent.com/images/lnKhwUGDTLiEBsx5gXWWopvSIeo.png\",srcSet:\"https://framerusercontent.com/images/lnKhwUGDTLiEBsx5gXWWopvSIeo.png?scale-down-to=512 512w,https://framerusercontent.com/images/lnKhwUGDTLiEBsx5gXWWopvSIeo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lnKhwUGDTLiEBsx5gXWWopvSIeo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/lnKhwUGDTLiEBsx5gXWWopvSIeo.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/lnKhwUGDTLiEBsx5gXWWopvSIeo.png 5000w\"},className:\"framer-q9385k\",\"data-framer-name\":\"Parallax image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-51q98k\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ccy857\",\"data-framer-name\":\"Paragraph\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[\"\\xa0As part of the ongoing roadmap, Park Lane is building out additional digital layers: \",/*#__PURE__*/_jsx(\"strong\",{children:\"integrated guest messaging\"}),\", \",/*#__PURE__*/_jsx(\"strong\",{children:\"in-room ordering\"}),\", and \",/*#__PURE__*/_jsx(\"strong\",{children:\"real-time service communication\"}),\" will all be accessible from guests\u2019 personal devices and in-room interfaces. This progressive rollout reinforces the hotel\u2019s commitment to delivering modern, intuitive service while increasing operational efficiency.\\xa0\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:[\"\\xa0As part of the ongoing roadmap, Park Lane is building out additional digital layers: \",/*#__PURE__*/_jsx(\"strong\",{children:\"integrated guest messaging\"}),\", \",/*#__PURE__*/_jsx(\"strong\",{children:\"in-room ordering\"}),\", and \",/*#__PURE__*/_jsx(\"strong\",{children:\"real-time service communication\"}),\" will all be accessible from guests\u2019 personal devices and in-room interfaces. This progressive rollout reinforces the hotel\u2019s commitment to delivering modern, intuitive service while increasing operational efficiency.\\xa0\"]})}),className:\"framer-lal8oz\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1654ac9\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dmhs44\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vz19k1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 186.79 55.8\"><path d=\"M 85.828 1.806 L 87.268 1.806 L 87.268 0 L 82.656 0 L 82.207 1.806 L 83.799 1.806 L 83.799 13.849 L 85.828 13.849 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 97.438 54.763 C 95.857 55.26 94.72 55.505 94.026 55.505 C 90.866 55.505 88.405 53.974 86.65 50.916 C 84.895 47.859 84.02 43.562 84.02 38.038 C 84.02 32.514 84.895 28.223 86.65 25.16 C 88.405 22.103 90.866 20.571 94.026 20.571 C 94.72 20.571 95.857 20.817 97.438 21.314 L 96.026 25.4 C 95.309 25.154 94.644 25.026 94.026 25.026 C 90.691 25.026 89.023 29.363 89.023 38.032 C 89.023 46.702 90.691 51.039 94.026 51.039 C 94.644 51.039 95.309 50.916 96.026 50.665 L 97.438 54.751 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 14.443 37.926 C 14.443 44.023 13.626 48.454 11.994 51.231 C 10.483 53.756 8.198 55.019 5.136 55.019 L 0.133 55.019 L 0.133 20.833 L 5.136 20.833 C 8.174 20.833 10.448 22.108 11.959 24.662 C 13.615 27.439 14.443 31.858 14.443 37.926 Z M 9.413 37.902 C 9.413 29.478 7.978 25.27 5.115 25.27 L 5.115 50.541 C 7.984 50.541 9.413 46.326 9.413 37.908 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 38.811 39.897 C 38.811 50.279 36.525 55.47 31.953 55.47 C 27.382 55.47 25.061 50.279 25.061 39.897 C 25.061 34.87 25.493 31.164 26.356 28.784 C 27.417 25.809 29.283 24.324 31.953 24.324 C 34.624 24.324 36.362 25.797 37.475 28.744 C 38.368 31.199 38.811 34.911 38.811 39.891 Z M 34.338 39.891 C 34.338 32.163 33.533 28.299 31.929 28.299 C 30.326 28.299 29.521 32.163 29.521 39.891 C 29.521 47.619 30.326 51.484 31.929 51.484 C 33.533 51.484 34.338 47.619 34.338 39.891 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 62.113 55.798 L 63.261 55.798 L 63.261 24.657 L 58.771 24.657 L 58.771 39.488 L 50.806 23.991 L 49.657 23.991 L 49.657 55.131 L 54.142 55.131 L 54.142 40.306 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 107.589 55.131 L 116.598 55.131 L 116.598 51.156 L 112.08 51.156 L 112.08 42.867 L 116.598 42.867 L 116.598 38.892 L 112.08 38.892 L 112.08 28.638 L 116.598 28.638 L 115.263 24.657 L 107.589 24.657 L 107.589 38.892 L 106.073 38.892 L 106.073 42.867 L 107.589 42.867 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 138.727 45.69 C 138.727 50.572 135.725 53.839 129.719 55.499 L 127.718 51.115 C 129.573 50.572 130.92 49.999 131.759 49.408 C 133.071 48.467 133.724 47.228 133.724 45.69 C 133.724 44.527 133.17 43.101 132.057 41.417 C 131.042 39.88 130.028 38.331 129.019 36.77 C 127.905 34.765 127.351 32.806 127.351 30.901 C 127.351 28.445 128.337 26.23 130.313 24.248 C 132.115 22.389 134.319 21.162 136.914 20.571 L 138.395 25.289 C 134.366 26.405 132.354 28.276 132.354 30.901 C 132.354 32.309 132.908 33.888 134.022 35.618 C 135.037 37.126 136.051 38.64 137.06 40.154 C 138.174 42.06 138.727 43.907 138.727 45.69 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 155.408 55.003 L 160.079 55.003 L 153.408 23.862 L 152.108 23.862 L 146.842 48.315 L 145.14 48.315 L 144.253 52.29 L 146.032 52.29 L 145.437 55.003 L 150.108 55.003 L 150.627 52.29 L 154.889 52.29 Z M 152.62 40.684 L 153.991 48.225 L 151.174 48.225 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 185.765 53.686 L 181.391 55.06 L 177.239 42.573 L 177.239 54.574 L 172.755 54.574 L 172.755 24.101 L 177.239 24.101 C 179.858 24.101 181.846 25.094 183.21 27.076 C 184.447 28.859 185.065 31.279 185.065 34.331 C 185.065 37.558 184.074 40.223 182.097 42.328 L 185.765 53.674 Z M 180.405 34.236 C 180.405 30.074 179.344 27.993 177.215 27.993 L 177.215 41.034 C 178.154 41.034 178.924 40.403 179.513 39.141 C 180.108 37.878 180.399 36.241 180.399 34.236 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 98.499 13.849 L 96.47 13.849 L 96.47 8.278 L 94.487 8.278 L 94.487 13.849 L 92.464 13.849 L 92.464 8.278 L 91.77 8.278 L 91.77 6.471 L 92.464 6.471 L 92.464 0 L 94.487 0 L 94.487 6.471 L 96.47 6.471 L 96.47 0 L 98.499 0 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 104.143 13.849 L 108.225 13.849 L 108.225 12.042 L 106.167 12.042 L 106.167 8.278 L 108.225 8.278 L 108.225 6.471 L 106.167 6.471 L 106.167 1.806 L 108.225 1.806 L 107.625 0 L 104.143 0 L 104.143 6.471 L 103.449 6.471 L 103.449 8.278 L 104.143 8.278 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path></svg>',svgContentId:12037407165},TCuCXiLr1:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 186.79 55.8\"><path d=\"M 85.828 1.806 L 87.268 1.806 L 87.268 0 L 82.656 0 L 82.207 1.806 L 83.799 1.806 L 83.799 13.849 L 85.828 13.849 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 97.438 54.763 C 95.857 55.26 94.72 55.505 94.026 55.505 C 90.866 55.505 88.405 53.974 86.65 50.916 C 84.895 47.859 84.02 43.562 84.02 38.038 C 84.02 32.514 84.895 28.223 86.65 25.16 C 88.405 22.103 90.866 20.571 94.026 20.571 C 94.72 20.571 95.857 20.817 97.438 21.314 L 96.026 25.4 C 95.309 25.154 94.644 25.026 94.026 25.026 C 90.691 25.026 89.023 29.363 89.023 38.032 C 89.023 46.702 90.691 51.039 94.026 51.039 C 94.644 51.039 95.309 50.916 96.026 50.665 L 97.438 54.751 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 14.443 37.926 C 14.443 44.023 13.626 48.454 11.994 51.231 C 10.483 53.756 8.198 55.019 5.136 55.019 L 0.133 55.019 L 0.133 20.833 L 5.136 20.833 C 8.174 20.833 10.448 22.108 11.959 24.662 C 13.615 27.439 14.443 31.858 14.443 37.926 Z M 9.413 37.902 C 9.413 29.478 7.978 25.27 5.115 25.27 L 5.115 50.541 C 7.984 50.541 9.413 46.326 9.413 37.908 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 38.811 39.897 C 38.811 50.279 36.525 55.47 31.953 55.47 C 27.382 55.47 25.061 50.279 25.061 39.897 C 25.061 34.87 25.493 31.164 26.356 28.784 C 27.417 25.809 29.283 24.324 31.953 24.324 C 34.624 24.324 36.362 25.797 37.475 28.744 C 38.368 31.199 38.811 34.911 38.811 39.891 Z M 34.338 39.891 C 34.338 32.163 33.533 28.299 31.929 28.299 C 30.326 28.299 29.521 32.163 29.521 39.891 C 29.521 47.619 30.326 51.484 31.929 51.484 C 33.533 51.484 34.338 47.619 34.338 39.891 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 62.113 55.798 L 63.261 55.798 L 63.261 24.657 L 58.771 24.657 L 58.771 39.488 L 50.806 23.991 L 49.657 23.991 L 49.657 55.131 L 54.142 55.131 L 54.142 40.306 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 107.589 55.131 L 116.598 55.131 L 116.598 51.156 L 112.08 51.156 L 112.08 42.867 L 116.598 42.867 L 116.598 38.892 L 112.08 38.892 L 112.08 28.638 L 116.598 28.638 L 115.263 24.657 L 107.589 24.657 L 107.589 38.892 L 106.073 38.892 L 106.073 42.867 L 107.589 42.867 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 138.727 45.69 C 138.727 50.572 135.725 53.839 129.719 55.499 L 127.718 51.115 C 129.573 50.572 130.92 49.999 131.759 49.408 C 133.071 48.467 133.724 47.228 133.724 45.69 C 133.724 44.527 133.17 43.101 132.057 41.417 C 131.042 39.88 130.028 38.331 129.019 36.77 C 127.905 34.765 127.351 32.806 127.351 30.901 C 127.351 28.445 128.337 26.23 130.313 24.248 C 132.115 22.389 134.319 21.162 136.914 20.571 L 138.395 25.289 C 134.366 26.405 132.354 28.276 132.354 30.901 C 132.354 32.309 132.908 33.888 134.022 35.618 C 135.037 37.126 136.051 38.64 137.06 40.154 C 138.174 42.06 138.727 43.907 138.727 45.69 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 155.408 55.003 L 160.079 55.003 L 153.408 23.862 L 152.108 23.862 L 146.842 48.315 L 145.14 48.315 L 144.253 52.29 L 146.032 52.29 L 145.437 55.003 L 150.108 55.003 L 150.627 52.29 L 154.889 52.29 Z M 152.62 40.684 L 153.991 48.225 L 151.174 48.225 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 185.765 53.686 L 181.391 55.06 L 177.239 42.573 L 177.239 54.574 L 172.755 54.574 L 172.755 24.101 L 177.239 24.101 C 179.858 24.101 181.846 25.094 183.21 27.076 C 184.447 28.859 185.065 31.279 185.065 34.331 C 185.065 37.558 184.074 40.223 182.097 42.328 L 185.765 53.674 Z M 180.405 34.236 C 180.405 30.074 179.344 27.993 177.215 27.993 L 177.215 41.034 C 178.154 41.034 178.924 40.403 179.513 39.141 C 180.108 37.878 180.399 36.241 180.399 34.236 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 98.499 13.849 L 96.47 13.849 L 96.47 8.278 L 94.487 8.278 L 94.487 13.849 L 92.464 13.849 L 92.464 8.278 L 91.77 8.278 L 91.77 6.471 L 92.464 6.471 L 92.464 0 L 94.487 0 L 94.487 6.471 L 96.47 6.471 L 96.47 0 L 98.499 0 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 104.143 13.849 L 108.225 13.849 L 108.225 12.042 L 106.167 12.042 L 106.167 8.278 L 108.225 8.278 L 108.225 6.471 L 106.167 6.471 L 106.167 1.806 L 108.225 1.806 L 107.625 0 L 104.143 0 L 104.143 6.471 L 103.449 6.471 L 103.449 8.278 L 104.143 8.278 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path></svg>',svgContentId:12037407165}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-c220zc\",\"data-framer-name\":\"logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 186.79 55.8\"><path d=\"M 85.828 1.806 L 87.268 1.806 L 87.268 0 L 82.656 0 L 82.207 1.806 L 83.799 1.806 L 83.799 13.849 L 85.828 13.849 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 97.438 54.763 C 95.857 55.26 94.72 55.505 94.026 55.505 C 90.866 55.505 88.405 53.974 86.65 50.916 C 84.895 47.859 84.02 43.562 84.02 38.038 C 84.02 32.514 84.895 28.223 86.65 25.16 C 88.405 22.103 90.866 20.571 94.026 20.571 C 94.72 20.571 95.857 20.817 97.438 21.314 L 96.026 25.4 C 95.309 25.154 94.644 25.026 94.026 25.026 C 90.691 25.026 89.023 29.363 89.023 38.032 C 89.023 46.702 90.691 51.039 94.026 51.039 C 94.644 51.039 95.309 50.916 96.026 50.665 L 97.438 54.751 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 14.443 38.038 C 14.443 44.135 13.627 48.566 11.994 51.343 C 10.484 53.869 8.198 55.131 5.137 55.131 L 0.134 55.131 L 0.134 20.945 L 5.137 20.945 C 8.175 20.945 10.449 22.22 11.959 24.774 C 13.615 27.551 14.443 31.97 14.443 38.038 Z M 9.44 38.038 C 9.44 29.614 8.006 25.406 5.143 25.406 L 5.143 50.677 C 8.012 50.677 9.44 46.462 9.44 38.044 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 38.946 39.897 C 38.946 50.279 36.66 55.47 32.088 55.47 C 27.517 55.47 25.196 50.279 25.196 39.897 C 25.196 34.87 25.627 31.164 26.49 28.784 C 27.552 25.809 29.418 24.324 32.088 24.324 C 34.759 24.324 36.497 25.797 37.61 28.744 C 38.502 31.199 38.946 34.911 38.946 39.891 Z M 34.497 39.891 C 34.497 32.163 33.692 28.299 32.088 28.299 C 30.485 28.299 29.68 32.163 29.68 39.891 C 29.68 47.619 30.485 51.484 32.088 51.484 C 33.692 51.484 34.497 47.619 34.497 39.891 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 62.113 55.798 L 63.261 55.798 L 63.261 24.657 L 58.771 24.657 L 58.771 39.488 L 50.806 23.991 L 49.657 23.991 L 49.657 55.131 L 54.142 55.131 L 54.142 40.306 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 107.589 55.131 L 116.598 55.131 L 116.598 51.156 L 112.08 51.156 L 112.08 42.867 L 116.598 42.867 L 116.598 38.892 L 112.08 38.892 L 112.08 28.638 L 116.598 28.638 L 115.263 24.657 L 107.589 24.657 L 107.589 38.892 L 106.073 38.892 L 106.073 42.867 L 107.589 42.867 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 138.727 45.69 C 138.727 50.572 135.725 53.839 129.719 55.499 L 127.718 51.115 C 129.573 50.572 130.92 49.999 131.759 49.408 C 133.071 48.467 133.724 47.228 133.724 45.69 C 133.724 44.527 133.17 43.101 132.057 41.417 C 131.042 39.88 130.028 38.331 129.019 36.77 C 127.905 34.765 127.351 32.806 127.351 30.901 C 127.351 28.445 128.337 26.23 130.313 24.248 C 132.115 22.389 134.319 21.162 136.914 20.571 L 138.395 25.289 C 134.366 26.405 132.354 28.276 132.354 30.901 C 132.354 32.309 132.908 33.888 134.022 35.618 C 135.037 37.126 136.051 38.64 137.06 40.154 C 138.174 42.06 138.727 43.907 138.727 45.69 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 158.705 55.131 L 163.376 55.131 L 156.705 23.991 L 155.405 23.991 L 150.139 48.444 L 148.437 48.444 L 147.55 52.419 L 149.328 52.419 L 148.734 55.131 L 153.405 55.131 L 153.923 52.419 L 158.186 52.419 Z M 156.075 40.903 L 157.445 48.444 L 154.629 48.444 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 186.694 54.237 L 182.321 55.611 L 178.169 43.124 L 178.169 55.125 L 173.685 55.125 L 173.685 24.651 L 178.169 24.651 C 180.787 24.651 182.776 25.645 184.14 27.627 C 185.376 29.41 185.995 31.83 185.995 34.881 C 185.995 38.108 185.003 40.774 183.026 42.879 L 186.694 54.225 Z M 181.359 34.876 C 181.359 30.714 180.298 28.633 178.169 28.633 L 178.169 41.674 C 179.108 41.674 179.878 41.043 180.467 39.78 C 181.061 38.518 181.353 36.881 181.353 34.876 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 98.499 13.849 L 96.47 13.849 L 96.47 8.278 L 94.487 8.278 L 94.487 13.849 L 92.464 13.849 L 92.464 8.278 L 91.77 8.278 L 91.77 6.471 L 92.464 6.471 L 92.464 0 L 94.487 0 L 94.487 6.471 L 96.47 6.471 L 96.47 0 L 98.499 0 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path><path d=\"M 104.143 13.849 L 108.225 13.849 L 108.225 12.042 L 106.167 12.042 L 106.167 8.278 L 108.225 8.278 L 108.225 6.471 L 106.167 6.471 L 106.167 1.806 L 108.225 1.806 L 107.625 0 L 104.143 0 L 104.143 6.471 L 103.449 6.471 L 103.449 8.278 L 104.143 8.278 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path></svg>',svgContentId:10153736588,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:\"Case Study\"})}),className:\"framer-16sypoy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u0ygbo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ec0Qkl0qU\",scopeId:\"WWOhmVFYv\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,controls:false,height:\"100%\",id:\"ec0Qkl0qU\",isMixedBorderRadius:false,layoutId:\"ec0Qkl0qU\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/9tX07WjwCiH8nSvurqg3KfZmNs.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:10,topRightRadius:10,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16qlz7y\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-lgjgoa\",\"data-styles-preset\":\"DoitCSbJr\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"AI That Delivers: The Don CeSar Automates 80% of Guest Requests with Innspire\u2019s Virtual Concierge\"}),\"\\xa0\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-lgjgoa\",\"data-styles-preset\":\"DoitCSbJr\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"AI That Delivers: The Don CeSar Automates 80% of Guest Requests with Innspire\u2019s Virtual Concierge\"}),\"\\xa0\"]})}),className:\"framer-vjdkmp\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[\"The iconic \",/*#__PURE__*/_jsx(\"strong\",{children:\"Don CeSar\"}),\" \u2014 known as The Pink Palace\\xae on Florida\u2019s Gulf Coast \u2014 has taken luxury service to a new level with \",/*#__PURE__*/_jsx(\"strong\",{children:\"Innspire\u2019s fully integrated digital guest journey\"}),\", headlined by its \",/*#__PURE__*/_jsx(\"strong\",{children:\"AI-powered Virtual Concierge\"}),\". The AI assistant now handles over \",/*#__PURE__*/_jsx(\"strong\",{children:\"80% of guest inquiries without staff intervention\"}),\", offering real-time answers, local guidance, and direct service links \u2014 all from within a custom-built mobile app. Even better, it\u2019s \",/*#__PURE__*/_jsx(\"strong\",{children:\"fully connected to the hotel\u2019s task management system\"}),\", automatically turning guest requests into actionable tasks and routing them to the appropriate team \u2014 whether housekeeping, F&B, or engineering.\\xa0\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:[\"The iconic \",/*#__PURE__*/_jsx(\"strong\",{children:\"Don CeSar\"}),\" \u2014 known as The Pink Palace\\xae on Florida\u2019s Gulf Coast \u2014 has taken luxury service to a new level with \",/*#__PURE__*/_jsx(\"strong\",{children:\"Innspire\u2019s fully integrated digital guest journey\"}),\", headlined by its \",/*#__PURE__*/_jsx(\"strong\",{children:\"AI-powered Virtual Concierge\"}),\". The AI assistant now handles over \",/*#__PURE__*/_jsx(\"strong\",{children:\"80% of guest inquiries without staff intervention\"}),\", offering real-time answers, local guidance, and direct service links \u2014 all from within a custom-built mobile app. Even better, it\u2019s \",/*#__PURE__*/_jsx(\"strong\",{children:\"fully connected to the hotel\u2019s task management system\"}),\", automatically turning guest requests into actionable tasks and routing them to the appropriate team \u2014 whether housekeeping, F&B, or engineering.\\xa0\"]})}),className:\"framer-1xro19q\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6bx6su\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-p4o8dh\",\"data-styles-preset\":\"sWkIeX9Y3\",style:{\"--framer-text-alignment\":\"center\"},children:'\"Implementing Innspire\u2019s AI-powered guest messaging has been a seamless enhancement to the guest experience at The Don CeSar. It effortlessly handles everyday inquiries, allowing our front desk team to focus on what we do best, delivering the kind of personalized, thoughtful service that defines a stay with us. Guests are receiving quicker, more convenient responses, and our staff is more empowered than ever. It\u2019s elevated both our efficiency and our signature level of hospitality.\"'})}),className:\"framer-160huwq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[\"\u2014 \",/*#__PURE__*/_jsx(\"strong\",{children:\"Parker Harvey, The Don CeSar Resort\"})]})}),className:\"framer-1qblemq\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vkabke\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+528+100+2297.03+10+1523.915+0+0),pixelHeight:3750,pixelWidth:5e3,sizes:`min(${componentViewport?.width||\"100vw\"} - 20px, 1200px)`,src:\"https://framerusercontent.com/images/fj3aiprhYsIZQKxukP0XwBxUx0.png\",srcSet:\"https://framerusercontent.com/images/fj3aiprhYsIZQKxukP0XwBxUx0.png?scale-down-to=512 512w,https://framerusercontent.com/images/fj3aiprhYsIZQKxukP0XwBxUx0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fj3aiprhYsIZQKxukP0XwBxUx0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/fj3aiprhYsIZQKxukP0XwBxUx0.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/fj3aiprhYsIZQKxukP0XwBxUx0.png 5000w\"}},TCuCXiLr1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+826+100+2584.03+20+1380.415+0+0),pixelHeight:3750,pixelWidth:5e3,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/fj3aiprhYsIZQKxukP0XwBxUx0.png\",srcSet:\"https://framerusercontent.com/images/fj3aiprhYsIZQKxukP0XwBxUx0.png?scale-down-to=512 512w,https://framerusercontent.com/images/fj3aiprhYsIZQKxukP0XwBxUx0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fj3aiprhYsIZQKxukP0XwBxUx0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/fj3aiprhYsIZQKxukP0XwBxUx0.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/fj3aiprhYsIZQKxukP0XwBxUx0.png 5000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+846+100+2441.03+100+1451.915+0),pixelHeight:3750,pixelWidth:5e3,sizes:\"569px\",src:\"https://framerusercontent.com/images/fj3aiprhYsIZQKxukP0XwBxUx0.png\",srcSet:\"https://framerusercontent.com/images/fj3aiprhYsIZQKxukP0XwBxUx0.png?scale-down-to=512 512w,https://framerusercontent.com/images/fj3aiprhYsIZQKxukP0XwBxUx0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fj3aiprhYsIZQKxukP0XwBxUx0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/fj3aiprhYsIZQKxukP0XwBxUx0.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/fj3aiprhYsIZQKxukP0XwBxUx0.png 5000w\"},className:\"framer-13v4lif\",\"data-framer-name\":\"Parallax image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x55pg1\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-qhsky6\",\"data-framer-name\":\"Paragraph\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[\"This mobile-first experience also includes \",/*#__PURE__*/_jsx(\"strong\",{children:\"contactless check-in/out\"}),\", \",/*#__PURE__*/_jsx(\"strong\",{children:\"digital key access\"}),\", and \",/*#__PURE__*/_jsx(\"strong\",{children:\"F&B Everywhere\"}),\", which allows guests to drop a pin and have food or drinks delivered poolside \u2014 with beach delivery also supported through the same system. The app provides an unprecedented level of freedom and personalization, while increasing guest satisfaction and operational efficiency. As \",/*#__PURE__*/_jsx(\"strong\",{children:\"Thomas Fraher, General Manager of The Don CeSar\"}),\", puts it:\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:[\"This mobile-first experience also includes \",/*#__PURE__*/_jsx(\"strong\",{children:\"contactless check-in/out\"}),\", \",/*#__PURE__*/_jsx(\"strong\",{children:\"digital key access\"}),\", and \",/*#__PURE__*/_jsx(\"strong\",{children:\"F&B Everywhere\"}),\", which allows guests to drop a pin and have food or drinks delivered poolside \u2014 with beach delivery also supported through the same system. The app provides an unprecedented level of freedom and personalization, while increasing guest satisfaction and operational efficiency. As \",/*#__PURE__*/_jsx(\"strong\",{children:\"Thomas Fraher, General Manager of The Don CeSar\"}),\", puts it:\"]})}),className:\"framer-1ewqetq\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wqlll\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-p4o8dh\",\"data-styles-preset\":\"sWkIeX9Y3\",style:{\"--framer-text-alignment\":\"center\"},children:\"\u201CInnSpire created a truly seamless guest journey that lives up to our impeccable service standards.\u201D\"})}),className:\"framer-cov2km\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[\"\u2014 \",/*#__PURE__*/_jsx(\"strong\",{children:\"Thomas Fraher, General Manager, The Don CeSar\"})]})}),className:\"framer-17s4g4h\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ap1mzc\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dl1qy7\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8ozarq\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1xeqblx\",\"data-framer-name\":\"Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 182 28\"><path d=\"M 117.945 7.841 C 117.945 9.987 116.436 11.295 113.797 11.295 L 105.597 11.295 L 105.597 4.201 L 113.797 4.201 C 116.531 4.201 117.945 5.695 117.945 7.841 Z M 26.682 0.561 L 22.44 0.561 L 13.861 19.415 L 4.524 0.561 L 0 0.561 L 13.765 28 Z M 32.903 26.32 L 36.862 26.32 L 36.862 0.561 L 32.903 0.561 Z M 67.033 17.92 C 64.771 21.56 61.564 23.241 57.982 23.241 C 52.42 23.241 48.271 19.04 48.271 13.44 C 48.271 7.841 52.326 3.64 58.078 3.64 C 61.66 3.64 65.054 5.693 66.94 8.492 L 66.94 3.268 C 64.677 1.122 61.66 0 57.982 0 C 50.061 0 44.31 5.974 44.31 13.44 C 44.31 20.906 49.779 26.974 57.886 26.974 C 61.845 26.974 64.579 25.761 66.937 23.613 L 67.031 17.92 Z M 93.432 4.201 L 93.432 0.561 L 75.425 0.561 L 75.425 26.32 L 93.622 26.32 L 93.622 22.587 L 79.291 22.587 L 79.291 15.028 L 91.17 15.028 L 91.17 11.295 L 79.291 11.295 L 79.291 4.201 Z M 123.131 26.32 L 116.438 14.467 C 119.266 13.72 122.096 11.667 122.096 7.748 C 122.096 3.454 118.89 0.561 113.61 0.561 L 101.731 0.561 L 101.731 26.32 L 105.503 26.32 L 105.503 15.121 L 112.386 15.121 L 118.513 26.32 L 123.134 26.32 Z M 155.469 13.44 C 155.469 6.067 149.53 0 141.893 0 C 134.256 0 128.221 6.067 128.221 13.44 C 128.221 20.813 134.256 26.881 141.797 26.881 C 149.339 26.881 155.469 20.906 155.469 13.44 Z M 181.961 0.561 L 177.719 0.561 L 170.931 13.068 L 163.01 0.561 L 158.39 0.561 L 168.855 16.894 L 163.669 26.32 L 167.911 26.32 Z M 151.321 13.44 C 151.321 18.854 146.983 23.241 141.797 23.241 C 136.611 23.241 132.274 18.947 132.274 13.44 C 132.274 7.934 136.328 3.64 141.797 3.64 C 147.266 3.64 151.321 8.12 151.321 13.44 Z\" fill=\"var(--token-02d5cbdd-b080-458a-9a55-3707f1bd4ea2, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;Dark-100&quot;} */\"></path></svg>',svgContentId:12596311433,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:\"Case Study\"})}),className:\"framer-vln40h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+528+100+5241.03+10+268),pixelHeight:3789,pixelWidth:6143,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 20px, 1200px)`,src:\"https://framerusercontent.com/images/idiY3S2twYYOGPDkU1CmHa1xLM.png\",srcSet:\"https://framerusercontent.com/images/idiY3S2twYYOGPDkU1CmHa1xLM.png?scale-down-to=512 512w,https://framerusercontent.com/images/idiY3S2twYYOGPDkU1CmHa1xLM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/idiY3S2twYYOGPDkU1CmHa1xLM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/idiY3S2twYYOGPDkU1CmHa1xLM.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/idiY3S2twYYOGPDkU1CmHa1xLM.png 6143w\"}},TCuCXiLr1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+826+100+5528.03+20+268),pixelHeight:3789,pixelWidth:6143,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/idiY3S2twYYOGPDkU1CmHa1xLM.png\",srcSet:\"https://framerusercontent.com/images/idiY3S2twYYOGPDkU1CmHa1xLM.png?scale-down-to=512 512w,https://framerusercontent.com/images/idiY3S2twYYOGPDkU1CmHa1xLM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/idiY3S2twYYOGPDkU1CmHa1xLM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/idiY3S2twYYOGPDkU1CmHa1xLM.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/idiY3S2twYYOGPDkU1CmHa1xLM.png 6143w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+846+100+5385.03+100+268),pixelHeight:3789,pixelWidth:6143,positionX:\"center\",positionY:\"center\",sizes:\"1200px\",src:\"https://framerusercontent.com/images/idiY3S2twYYOGPDkU1CmHa1xLM.png\",srcSet:\"https://framerusercontent.com/images/idiY3S2twYYOGPDkU1CmHa1xLM.png?scale-down-to=512 512w,https://framerusercontent.com/images/idiY3S2twYYOGPDkU1CmHa1xLM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/idiY3S2twYYOGPDkU1CmHa1xLM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/idiY3S2twYYOGPDkU1CmHa1xLM.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/idiY3S2twYYOGPDkU1CmHa1xLM.png 6143w\"},className:\"framer-1eaqca4\",\"data-framer-name\":\"Parallax image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17abhax\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-lgjgoa\",\"data-styles-preset\":\"DoitCSbJr\",style:{\"--framer-text-alignment\":\"center\"},children:\"Viceroy Los Cabos: Elevating Luxury Through a Seamless Digital Guest Journey\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-lgjgoa\",\"data-styles-preset\":\"DoitCSbJr\",children:\"Viceroy Los Cabos: Elevating Luxury Through a Seamless Digital Guest Journey\"})}),className:\"framer-iawjpa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Nestled on the stunning coast of Baja California, \",/*#__PURE__*/_jsx(\"em\",{children:\"Viceroy Los Cabos\"}),\" stands as a beacon of modern luxury. Recently ranked the #1 Resort in Western Mexico and #2 Best Resort in the World by \",/*#__PURE__*/_jsx(\"em\",{children:\"Cond\\xe9 Nast Traveler\u2019s\"}),\" Readers\u2019 Choice Awards, the property continues to raise the bar\u2014this time with a fully connected, guest-centric digital experience powered by Innspire. With its iconic architecture, renowned rooftop bar, and expansive pool areas, Viceroy Los Cabos sought to offer guests even greater control, comfort, and connectivity\u2014without compromising the resort\u2019s signature sophistication.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"By partnering with Innspire, Viceroy Los Cabos introduced a Digital Guest Journey that allows guests to engage with the resort through their own mobile devices. From ordering food and drinks across the property to streaming personal content in-room, the platform empowers guests to tailor their experience with ease.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:[\"Nestled on the stunning coast of Baja California, \",/*#__PURE__*/_jsx(\"em\",{children:\"Viceroy Los Cabos\"}),\" stands as a beacon of modern luxury. Recently ranked the #1 Resort in Western Mexico and #2 Best Resort in the World by \",/*#__PURE__*/_jsx(\"em\",{children:\"Cond\\xe9 Nast Traveler\u2019s\"}),\" Readers\u2019 Choice Awards, the property continues to raise the bar\u2014this time with a fully connected, guest-centric digital experience powered by Innspire. With its iconic architecture, renowned rooftop bar, and expansive pool areas, Viceroy Los Cabos sought to offer guests even greater control, comfort, and connectivity\u2014without compromising the resort\u2019s signature sophistication.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"By partnering with Innspire, Viceroy Los Cabos introduced a Digital Guest Journey that allows guests to engage with the resort through their own mobile devices. From ordering food and drinks across the property to streaming personal content in-room, the platform empowers guests to tailor their experience with ease.\"]})}),className:\"framer-1vci3h4\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-terpyp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-p4o8dh\",\"data-styles-preset\":\"sWkIeX9Y3\",style:{\"--framer-text-alignment\":\"center\"},children:\"\u201CWe are exceptionally thrilled with the technical services we can now offer our guests. Innspire\u2019s advantages provide even more comfort and convenience to elevate an already unforgettable experience.\u201D\"})}),className:\"framer-zq6ysg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[\"\u2014 \",/*#__PURE__*/_jsx(\"strong\",{children:\"Martin Kipping\"}),\"\\xa0\",/*#__PURE__*/_jsx(\"strong\",{children:\"General Manager of Viceroy Los Cabos\"}),\"\\xa0\"]})}),className:\"framer-eruha0\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dszxda\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+528+100+5241.03+10+1619.03+0+0),pixelHeight:1125,pixelWidth:1500,sizes:`min(${componentViewport?.width||\"100vw\"} - 20px, 1200px)`,src:\"https://framerusercontent.com/images/iV7C69dFZpqy65IfjitEqLbXiKI.png\",srcSet:\"https://framerusercontent.com/images/iV7C69dFZpqy65IfjitEqLbXiKI.png?scale-down-to=512 512w,https://framerusercontent.com/images/iV7C69dFZpqy65IfjitEqLbXiKI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iV7C69dFZpqy65IfjitEqLbXiKI.png 1500w\"}},TCuCXiLr1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+826+100+5528.03+20+1619.03+0+0),pixelHeight:1125,pixelWidth:1500,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/iV7C69dFZpqy65IfjitEqLbXiKI.png\",srcSet:\"https://framerusercontent.com/images/iV7C69dFZpqy65IfjitEqLbXiKI.png?scale-down-to=512 512w,https://framerusercontent.com/images/iV7C69dFZpqy65IfjitEqLbXiKI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iV7C69dFZpqy65IfjitEqLbXiKI.png 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+846+100+5385.03+100+1619.03+0),pixelHeight:1125,pixelWidth:1500,sizes:\"569px\",src:\"https://framerusercontent.com/images/iV7C69dFZpqy65IfjitEqLbXiKI.png\",srcSet:\"https://framerusercontent.com/images/iV7C69dFZpqy65IfjitEqLbXiKI.png?scale-down-to=512 512w,https://framerusercontent.com/images/iV7C69dFZpqy65IfjitEqLbXiKI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iV7C69dFZpqy65IfjitEqLbXiKI.png 1500w\"},className:\"framer-1yngpb3\",\"data-framer-name\":\"Parallax image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ew2d06\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r51stw\",\"data-framer-name\":\"Paragraph\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Mobile Ordering\"}),\": Seamless access to F&B from any location\u2014whether lounging poolside or enjoying the rooftop bar\u2019s panoramic views.\\xa0\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"In-Room Streaming\"}),\": Guests enjoy their favorite content on demand, using their own devices.\\xa0\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Effortless Service Requests\"}),\": Products and services are just a tap away, enhancing responsiveness and personalization.\\xa0\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:\"The mobile platform has enriched the resort\u2019s already exceptional service, blending high-touch hospitality with modern convenience.\\xa0\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Mobile Ordering\"}),\": Seamless access to F&B from any location\u2014whether lounging poolside or enjoying the rooftop bar\u2019s panoramic views.\\xa0\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"In-Room Streaming\"}),\": Guests enjoy their favorite content on demand, using their own devices.\\xa0\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Effortless Service Requests\"}),\": Products and services are just a tap away, enhancing responsiveness and personalization.\\xa0\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:\"The mobile platform has enriched the resort\u2019s already exceptional service, blending high-touch hospitality with modern convenience.\\xa0\"})]}),className:\"framer-1jc6q7n\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1guyzbk\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lluqwa\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qlf4x5\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-16pzrgc\",\"data-framer-name\":\"PTH Logo svg 1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 173 52\"><g><path d=\"M 0 52 L 0 0 L 173 0 L 173 52 Z\" fill=\"transparent\"></path><path d=\"M 42.534 13.156 L 27.478 13.156 L 27.478 16.566 L 42.534 16.566 C 46.141 16.566 49.076 19.491 49.076 23.087 C 49.076 26.682 46.141 29.607 42.534 29.607 L 27.478 29.607 L 27.478 33.006 L 42.534 33.006 C 48.02 33.006 52.486 28.555 52.486 23.087 C 52.486 17.618 48.02 13.168 42.534 13.168 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path><path d=\"M 3.422 16.566 L 21.783 16.566 L 21.783 13.156 L 0 13.156 L 0 40.358 L 3.422 40.358 L 3.422 32.994 L 21.783 32.994 L 21.783 29.595 L 3.422 29.595 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path><path d=\"M 22.92 20.22 L 26.341 20.22 L 26.341 3.399 L 47.904 3.399 L 47.904 0 L 0 0 L 0 3.399 L 22.92 3.399 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path><path d=\"M 26.341 25.884 L 22.92 25.884 L 22.92 52 L 26.341 52 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path><path d=\"M 38.091 4.659 L 34.681 4.659 L 34.681 12.023 L 38.091 12.023 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path><path d=\"M 38.091 34.127 L 34.681 34.127 L 34.681 44.89 L 38.091 44.89 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path><path d=\"M 38.091 28.462 L 38.091 17.699 L 34.681 17.699 L 34.681 21.353 L 14.789 21.353 L 14.789 17.699 L 11.367 17.699 L 11.367 28.462 L 14.789 28.462 L 14.789 24.751 L 34.681 24.751 L 34.681 28.462 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path><path d=\"M 14.789 4.659 L 11.379 4.659 L 11.379 12.023 L 14.789 12.023 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path><path d=\"M 14.789 34.127 L 11.379 34.127 L 11.379 44.89 L 14.789 44.89 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path><path d=\"M 68.701 3.434 L 73.48 3.434 C 76.368 3.434 78.27 4.96 78.27 7.48 L 78.27 7.514 C 78.27 10.266 75.974 11.688 73.248 11.688 L 70.14 11.688 L 70.14 16.185 L 68.701 16.185 Z M 73.295 10.37 C 75.417 10.37 76.797 9.237 76.797 7.572 L 76.797 7.538 C 76.797 5.723 75.429 4.775 73.364 4.775 L 70.128 4.775 L 70.128 10.381 L 73.283 10.381 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path><path d=\"M 87.271 3.341 L 88.617 3.341 L 94.44 16.173 L 92.885 16.173 L 91.389 12.809 L 84.43 12.809 L 82.91 16.173 L 81.425 16.173 L 87.248 3.341 Z M 90.832 11.514 L 87.933 5.017 L 85.01 11.514 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path><path d=\"M 99.891 3.434 L 105.389 3.434 C 106.955 3.434 108.219 3.908 109.019 4.705 C 109.646 5.329 110.006 6.22 110.006 7.214 L 110.006 7.249 C 110.006 9.364 108.544 10.601 106.537 10.96 L 110.458 16.162 L 108.683 16.162 L 104.972 11.214 L 101.318 11.214 L 101.318 16.162 L 99.88 16.162 L 99.88 3.434 Z M 105.25 9.931 C 107.164 9.931 108.532 8.948 108.532 7.306 L 108.532 7.272 C 108.532 5.711 107.326 4.763 105.261 4.763 L 101.318 4.763 L 101.318 9.931 L 105.238 9.931 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path><path d=\"M 116.014 3.434 L 117.452 3.434 L 117.452 11.04 L 124.794 3.434 L 126.662 3.434 L 121.187 9.006 L 126.905 16.173 L 125.096 16.173 L 120.19 10 L 117.464 12.751 L 117.464 16.173 L 116.025 16.173 L 116.025 3.434 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path><path d=\"M 71.879 21.965 L 67.588 21.965 L 67.588 20.636 L 77.632 20.636 L 77.632 21.965 L 73.341 21.965 L 73.341 33.376 L 71.879 33.376 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path><path d=\"M 83.258 20.636 L 92.502 20.636 L 92.502 21.942 L 84.708 21.942 L 84.708 26.289 L 91.679 26.289 L 91.679 27.595 L 84.708 27.595 L 84.708 32.058 L 92.595 32.058 L 92.595 33.364 L 83.27 33.364 L 83.27 20.624 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path><path d=\"M 98.418 20.636 L 103.916 20.636 C 105.482 20.636 106.746 21.11 107.546 21.908 C 108.173 22.532 108.532 23.422 108.532 24.416 L 108.532 24.451 C 108.532 26.566 107.071 27.803 105.064 28.162 L 108.985 33.364 L 107.21 33.364 L 103.498 28.416 L 99.845 28.416 L 99.845 33.364 L 98.406 33.364 L 98.406 20.624 Z M 103.788 27.133 C 105.702 27.133 107.071 26.15 107.071 24.509 L 107.071 24.474 C 107.071 22.913 105.865 21.965 103.8 21.965 L 99.856 21.965 L 99.856 27.133 L 103.777 27.133 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path><path d=\"M 114.541 20.636 L 120.039 20.636 C 121.605 20.636 122.869 21.11 123.669 21.908 C 124.295 22.532 124.655 23.422 124.655 24.416 L 124.655 24.451 C 124.655 26.566 123.194 27.803 121.187 28.162 L 125.108 33.364 L 123.333 33.364 L 119.621 28.416 L 115.967 28.416 L 115.967 33.364 L 114.529 33.364 L 114.529 20.624 Z M 119.911 27.133 C 121.825 27.133 123.194 26.15 123.194 24.509 L 123.194 24.474 C 123.194 22.913 121.987 21.965 119.923 21.965 L 115.979 21.965 L 115.979 27.133 L 119.899 27.133 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path><path d=\"M 135.396 20.543 L 136.753 20.543 L 142.576 33.376 L 141.021 33.376 L 139.525 30.012 L 132.566 30.012 L 131.046 33.376 L 129.562 33.376 L 135.384 20.543 Z M 138.957 28.717 L 136.057 22.22 L 133.134 28.717 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path><path d=\"M 146.705 27.04 L 146.705 27.006 C 146.705 23.399 149.407 20.416 153.166 20.416 C 155.486 20.416 156.877 21.237 158.153 22.439 L 157.167 23.491 C 156.089 22.474 154.882 21.746 153.154 21.746 C 150.324 21.746 148.201 24.035 148.201 26.971 L 148.201 27.006 C 148.201 29.954 150.335 32.266 153.154 32.266 C 154.905 32.266 156.054 31.595 157.283 30.428 L 158.234 31.353 C 156.901 32.694 155.439 33.595 153.119 33.595 C 149.431 33.595 146.705 30.705 146.705 27.04 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path><path d=\"M 163.663 20.636 L 172.907 20.636 L 172.907 21.942 L 165.113 21.942 L 165.113 26.289 L 172.084 26.289 L 172.084 27.595 L 165.113 27.595 L 165.113 32.058 L 173 32.058 L 173 33.364 L 163.663 33.364 L 163.663 20.624 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path><path d=\"M 69.548 37.988 L 70.743 37.988 L 70.743 40.809 L 73.99 40.809 L 73.99 37.988 L 75.185 37.988 L 75.185 44.786 L 73.99 44.786 L 73.99 41.919 L 70.743 41.919 L 70.743 44.786 L 69.548 44.786 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path><path d=\"M 78.201 41.399 L 78.201 41.376 C 78.201 39.468 79.686 37.861 81.773 37.861 C 83.861 37.861 85.323 39.445 85.323 41.353 L 85.323 41.376 C 85.323 43.283 83.838 44.89 81.75 44.89 C 79.662 44.89 78.201 43.306 78.201 41.399 Z M 84.07 41.399 L 84.07 41.376 C 84.07 40.058 83.107 38.96 81.75 38.96 C 80.393 38.96 79.454 40.035 79.454 41.353 L 79.454 41.376 C 79.454 42.694 80.416 43.792 81.773 43.792 C 83.13 43.792 84.07 42.717 84.07 41.399 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path><path d=\"M 89.649 39.098 L 87.492 39.098 L 87.492 37.988 L 93.025 37.988 L 93.025 39.098 L 90.867 39.098 L 90.867 44.786 L 89.661 44.786 L 89.661 39.098 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path><path d=\"M 95.843 37.988 L 100.9 37.988 L 100.9 39.052 L 97.049 39.052 L 97.049 40.821 L 100.471 40.821 L 100.471 41.884 L 97.049 41.884 L 97.049 43.711 L 100.958 43.711 L 100.958 44.775 L 95.855 44.775 L 95.855 37.977 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path><path d=\"M 103.928 37.988 L 105.122 37.988 L 105.122 43.699 L 108.706 43.699 L 108.706 44.786 L 103.928 44.786 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path></g></svg>',svgContentId:10175760701,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:\"Case Study\"})}),className:\"framer-1w2sdd7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+528+100+7904.06+10+292),pixelHeight:683,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 20px, 1200px)`,src:\"https://framerusercontent.com/images/NwJIVdbcbp9adoxanTViPSJL0w.png\",srcSet:\"https://framerusercontent.com/images/NwJIVdbcbp9adoxanTViPSJL0w.png?scale-down-to=512 512w,https://framerusercontent.com/images/NwJIVdbcbp9adoxanTViPSJL0w.png 1024w\"}},TCuCXiLr1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+826+100+8478.06+20+292),pixelHeight:683,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/NwJIVdbcbp9adoxanTViPSJL0w.png\",srcSet:\"https://framerusercontent.com/images/NwJIVdbcbp9adoxanTViPSJL0w.png?scale-down-to=512 512w,https://framerusercontent.com/images/NwJIVdbcbp9adoxanTViPSJL0w.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+846+100+7820.06+100+292),pixelHeight:683,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:\"1200px\",src:\"https://framerusercontent.com/images/NwJIVdbcbp9adoxanTViPSJL0w.png\",srcSet:\"https://framerusercontent.com/images/NwJIVdbcbp9adoxanTViPSJL0w.png?scale-down-to=512 512w,https://framerusercontent.com/images/NwJIVdbcbp9adoxanTViPSJL0w.png 1024w\"},className:\"framer-3t1vc0\",\"data-framer-name\":\"Parallax image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15qs4ie\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-lgjgoa\",\"data-styles-preset\":\"DoitCSbJr\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Digital at Every Touchpoint: Park Terrace & Club Quarters Personalize the Guest Journey with Innspire\"}),\"\\xa0\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-lgjgoa\",\"data-styles-preset\":\"DoitCSbJr\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Digital at Every Touchpoint: Park Terrace & Club Quarters Personalize the Guest Journey with Innspire\"}),\"\\xa0\"]})}),className:\"framer-1nymmp2\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Club Quarters Hotels \u2014 including the standout \",/*#__PURE__*/_jsx(\"strong\",{children:\"Park Terrace Hotel\"}),\" overlooking Bryant Park in New York \u2014 have extended their partnership with Innspire to transform the guest experience across \",/*#__PURE__*/_jsx(\"strong\",{children:\"nearly 5,000 rooms\"}),\". Through this collaboration, the brand delivers a \",/*#__PURE__*/_jsx(\"strong\",{children:\"personalized, digital-first experience\"}),\" that spans casting, curated content, mobile service ordering, and access to local city events \u2014 all embedded into the \",/*#__PURE__*/_jsx(\"strong\",{children:\"Club Quarters App\"}),\". Whether using iOS or Android, guests enjoy seamless content casting, explore local fitness or yoga videos, and interact with their room \u2014 without ever needing to download another app.\\xa0\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[\"The system\u2019s features were carefully refined based on \",/*#__PURE__*/_jsx(\"strong\",{children:\"guest behavior analytics\"}),\", resulting in thoughtful design choices such as intuitive casting menus, smart remote control replacements, and dynamic local content feeds. As \",/*#__PURE__*/_jsx(\"strong\",{children:\"Martin Chevalley, CEO of Innspire\"}),\", explains: \u201CAt this scale, delivering a seamless and intuitive guest experience requires deep collaboration and smart, guest-first technology. We\u2019re proud to work with Club Quarters and Park Terrace to make digital hospitality feel effortless \u2014 and personal.\u201D\\xa0\"]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:[\"Club Quarters Hotels \u2014 including the standout \",/*#__PURE__*/_jsx(\"strong\",{children:\"Park Terrace Hotel\"}),\" overlooking Bryant Park in New York \u2014 have extended their partnership with Innspire to transform the guest experience across \",/*#__PURE__*/_jsx(\"strong\",{children:\"nearly 5,000 rooms\"}),\". Through this collaboration, the brand delivers a \",/*#__PURE__*/_jsx(\"strong\",{children:\"personalized, digital-first experience\"}),\" that spans casting, curated content, mobile service ordering, and access to local city events \u2014 all embedded into the \",/*#__PURE__*/_jsx(\"strong\",{children:\"Club Quarters App\"}),\". Whether using iOS or Android, guests enjoy seamless content casting, explore local fitness or yoga videos, and interact with their room \u2014 without ever needing to download another app.\\xa0\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:[\"The system\u2019s features were carefully refined based on \",/*#__PURE__*/_jsx(\"strong\",{children:\"guest behavior analytics\"}),\", resulting in thoughtful design choices such as intuitive casting menus, smart remote control replacements, and dynamic local content feeds. As \",/*#__PURE__*/_jsx(\"strong\",{children:\"Martin Chevalley, CEO of Innspire\"}),\", explains: \u201CAt this scale, delivering a seamless and intuitive guest experience requires deep collaboration and smart, guest-first technology. We\u2019re proud to work with Club Quarters and Park Terrace to make digital hospitality feel effortless \u2014 and personal.\u201D\\xa0\"]})]}),className:\"framer-n97apq\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dbr4xw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-p4o8dh\",\"data-styles-preset\":\"sWkIeX9Y3\",style:{\"--framer-text-alignment\":\"center\"},children:\"\u201CAt this scale, delivering a seamless and intuitive guest experience requires deep collaboration and smart, guest-first technology. We\u2019re proud to work with Club Quarters and Park Terrace to make digital hospitality feel effortless \u2014 and personal.\u201D\\xa0\"})}),className:\"framer-c10aeq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[\"\u2014 \",/*#__PURE__*/_jsx(\"strong\",{children:\"Martin Chevalley, CEO, InnSpire\"}),\"\\xa0\"]})}),className:\"framer-1slh5ts\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s56cdv\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+528+100+7904.06+10+1767.03+0+0),pixelHeight:1e3,pixelWidth:1500,sizes:`min(${componentViewport?.width||\"100vw\"} - 20px, 1200px)`,src:\"https://framerusercontent.com/images/JxFWdhNnAPVHUBUVjr56LbLssxU.png\",srcSet:\"https://framerusercontent.com/images/JxFWdhNnAPVHUBUVjr56LbLssxU.png?scale-down-to=512 512w,https://framerusercontent.com/images/JxFWdhNnAPVHUBUVjr56LbLssxU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JxFWdhNnAPVHUBUVjr56LbLssxU.png 1500w\"}},TCuCXiLr1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+826+100+8478.06+20+1767.03+0+0),pixelHeight:1e3,pixelWidth:1500,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/JxFWdhNnAPVHUBUVjr56LbLssxU.png\",srcSet:\"https://framerusercontent.com/images/JxFWdhNnAPVHUBUVjr56LbLssxU.png?scale-down-to=512 512w,https://framerusercontent.com/images/JxFWdhNnAPVHUBUVjr56LbLssxU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JxFWdhNnAPVHUBUVjr56LbLssxU.png 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+846+100+7820.06+100+1767.03+0),pixelHeight:1e3,pixelWidth:1500,sizes:\"569px\",src:\"https://framerusercontent.com/images/JxFWdhNnAPVHUBUVjr56LbLssxU.png\",srcSet:\"https://framerusercontent.com/images/JxFWdhNnAPVHUBUVjr56LbLssxU.png?scale-down-to=512 512w,https://framerusercontent.com/images/JxFWdhNnAPVHUBUVjr56LbLssxU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JxFWdhNnAPVHUBUVjr56LbLssxU.png 1500w\"},className:\"framer-156kamg\",\"data-framer-name\":\"Parallax image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-audb8z\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-19rwq8k\",\"data-framer-name\":\"Paragraph\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"~5,000 Rooms\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Club Quarters Properties Across U.S. & UK\\xa0\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Fully outfitted with Innspire\u2019s guest journey tech.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"strong\",{children:\"Cross-Platform\"}),\"\\xa0\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:\"Apple & Android Casting Built In\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:\"No downloads, just tap and play.\\xa0\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Fully Integrated\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Club Quarters App Experience\\xa0\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:\"Room controls, content, events, and services in one place.\\xa0\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Guest-Driven\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Yoga, Local Guides & Smart Remote Controls\\xa0\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:\"Features built on real-world guest data and behavior.\\xa0\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"~5,000 Rooms\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Club Quarters Properties Across U.S. & UK\\xa0\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:[\"Fully outfitted with Innspire\u2019s guest journey tech.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"strong\",{children:\"Cross-Platform\"}),\"\\xa0\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:\"Apple & Android Casting Built In\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:\"No downloads, just tap and play.\\xa0\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Fully Integrated\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Club Quarters App Experience\\xa0\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:\"Room controls, content, events, and services in one place.\\xa0\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Guest-Driven\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Yoga, Local Guides & Smart Remote Controls\\xa0\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:\"Features built on real-world guest data and behavior.\\xa0\"})]}),className:\"framer-14zmroq\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xkfo99\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nxp5q0\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x02np3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:148,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+528+100+11211.09+10+0+0+0),pixelHeight:582,pixelWidth:1181,sizes:\"153px\",src:\"https://framerusercontent.com/images/FiSctYBI3VUIskAXCub1qwJgYU.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/FiSctYBI3VUIskAXCub1qwJgYU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/FiSctYBI3VUIskAXCub1qwJgYU.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FiSctYBI3VUIskAXCub1qwJgYU.svg 1181w\"}},TCuCXiLr1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:148,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+826+100+12072.09+20+0+0+0),pixelHeight:582,pixelWidth:1181,sizes:\"153px\",src:\"https://framerusercontent.com/images/FiSctYBI3VUIskAXCub1qwJgYU.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/FiSctYBI3VUIskAXCub1qwJgYU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/FiSctYBI3VUIskAXCub1qwJgYU.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FiSctYBI3VUIskAXCub1qwJgYU.svg 1181w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:148,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+846+100+10403.09+100+0+0+0),pixelHeight:582,pixelWidth:1181,sizes:\"153px\",src:\"https://framerusercontent.com/images/FiSctYBI3VUIskAXCub1qwJgYU.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/FiSctYBI3VUIskAXCub1qwJgYU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/FiSctYBI3VUIskAXCub1qwJgYU.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FiSctYBI3VUIskAXCub1qwJgYU.svg 1181w\"},className:\"framer-w1w0yw\",\"data-framer-name\":\"Virgin\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:\"Case Study\"})}),className:\"framer-4q3go6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+528+100+11211.09+10+315),pixelHeight:1260,pixelWidth:2240,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 20px, 1200px)`,src:\"https://framerusercontent.com/images/eushblEinVGyOOFuAoDTVsZeGY.webp\",srcSet:\"https://framerusercontent.com/images/eushblEinVGyOOFuAoDTVsZeGY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/eushblEinVGyOOFuAoDTVsZeGY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/eushblEinVGyOOFuAoDTVsZeGY.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/eushblEinVGyOOFuAoDTVsZeGY.webp 2240w\"}},TCuCXiLr1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+826+100+12072.09+20+315),pixelHeight:1260,pixelWidth:2240,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/eushblEinVGyOOFuAoDTVsZeGY.webp\",srcSet:\"https://framerusercontent.com/images/eushblEinVGyOOFuAoDTVsZeGY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/eushblEinVGyOOFuAoDTVsZeGY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/eushblEinVGyOOFuAoDTVsZeGY.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/eushblEinVGyOOFuAoDTVsZeGY.webp 2240w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+846+100+10403.09+100+315),pixelHeight:1260,pixelWidth:2240,positionX:\"center\",positionY:\"center\",sizes:\"1200px\",src:\"https://framerusercontent.com/images/eushblEinVGyOOFuAoDTVsZeGY.webp\",srcSet:\"https://framerusercontent.com/images/eushblEinVGyOOFuAoDTVsZeGY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/eushblEinVGyOOFuAoDTVsZeGY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/eushblEinVGyOOFuAoDTVsZeGY.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/eushblEinVGyOOFuAoDTVsZeGY.webp 2240w\"},className:\"framer-jj1orq\",\"data-framer-name\":\"Parallax image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l5bhf4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-lgjgoa\",\"data-styles-preset\":\"DoitCSbJr\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"$45K+ Monthly In-Room Dining Revenue: Virgin Hotels\u2019 Seamless Digital Journey with Lucy and Innspire\"}),\"\\xa0\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-lgjgoa\",\"data-styles-preset\":\"DoitCSbJr\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"$45K+ Monthly In-Room Dining Revenue: Virgin Hotels\u2019 Seamless Digital Journey with Lucy and Innspire\"}),\"\\xa0\"]})}),className:\"framer-bhq5kh\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Virgin Hotels partnered with Innspire to power their mobile-first guest experience through full integration with the \",/*#__PURE__*/_jsx(\"strong\",{children:\"Lucy app\"}),\" \u2014 creating a seamless journey across mobile, TV, and in-room technology. Guests can check in, use a digital key, adjust lighting and climate, cast content, order room service, and message staff \u2014 all from the palm of their hand or in-room screen. This connected experience not only enhances convenience and guest satisfaction but also drives tangible business results, including \",/*#__PURE__*/_jsx(\"strong\",{children:\"$45,000 to $50,000 USD in monthly in-room dining revenue\"}),\" through the in-room TV ordering system.\\xa0\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:[\"Virgin Hotels partnered with Innspire to power their mobile-first guest experience through full integration with the \",/*#__PURE__*/_jsx(\"strong\",{children:\"Lucy app\"}),\" \u2014 creating a seamless journey across mobile, TV, and in-room technology. Guests can check in, use a digital key, adjust lighting and climate, cast content, order room service, and message staff \u2014 all from the palm of their hand or in-room screen. This connected experience not only enhances convenience and guest satisfaction but also drives tangible business results, including \",/*#__PURE__*/_jsx(\"strong\",{children:\"$45,000 to $50,000 USD in monthly in-room dining revenue\"}),\" through the in-room TV ordering system.\\xa0\"]})}),className:\"framer-6aqi30\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ssrcy4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-p4o8dh\",\"data-styles-preset\":\"sWkIeX9Y3\",style:{\"--framer-text-alignment\":\"center\"},children:\"\u201CInnspire has done an amazing job with us, constantly working together on the strategy of Virgin Hotels. The integration with our Lucy app and guest journey has been seamless \u2014 and the results speak for themselves.\u201D\\xa0\"})}),className:\"framer-oi9sr4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[\"\u2014 \",/*#__PURE__*/_jsx(\"strong\",{children:\"Jason Doebrich, VP of IT, Virgin Hotels\"})]})}),className:\"framer-1b5pyau\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4v4kh2\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bsnh18\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-8aj9wc\",\"data-framer-name\":\"Paragraph\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4q4pt1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wjvlps\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-93od9p-container\",isModuleExternal:true,nodeId:\"b7eu7GIdf\",scopeId:\"WWOhmVFYv\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"<iframe src='https://my.spline.design/virginhotels-n7wDINeXGQfLBaehEAPDfZXT/' frameborder='0' width='100%' height='100%'></iframe>\",id:\"b7eu7GIdf\",layoutId:\"b7eu7GIdf\",radius:\"0px\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\",zoom:1})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:\"The Virgin Guest App\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:\"The Virgin Guest App\"})}),className:\"framer-1ekc7hq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-196wsqd\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dr68op\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rd1krj\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 226.71 63.08\"><path d=\"M 74.838 0.034 C 76.143 0.239 77.335 0.542 78.459 1.082 C 83.218 3.369 85.211 7.667 83.878 12.764 C 83.283 15.035 82.378 17.151 80.931 19.025 C 80.391 19.725 79.873 20.441 79.354 21.154 C 78.658 22.139 77.933 23.103 77.18 24.044 C 73.188 28.933 68.267 32.736 62.875 35.945 C 61.164 36.967 59.299 37.609 57.237 37.239 C 56.776 37.156 56.527 37.337 56.393 37.785 C 56.065 38.858 55.724 39.928 55.372 40.994 C 54.436 43.864 53.499 46.735 53.026 49.737 C 52.904 50.516 52.529 51.137 51.745 51.383 C 50.992 51.622 50.513 51.154 50.024 50.675 L 49.992 50.646 C 48.888 49.567 48.644 48.268 48.977 46.831 C 51.319 36.718 53.98 26.698 57.878 17.05 C 59.035 14.188 60.413 11.418 61.83 8.672 C 61.929 8.481 62.022 8.288 62.122 8.077 L 62.276 7.757 C 61.915 7.629 61.655 7.779 61.42 7.915 C 61.397 7.931 61.373 7.944 61.347 7.956 C 56.862 10.486 52.758 13.51 49.286 17.34 C 48.739 17.921 48.316 18.608 48.044 19.359 C 47.648 20.514 48.007 21.093 49.196 21.241 C 49.657 21.3 50.103 21.373 50.034 22.006 C 49.968 22.639 49.507 22.755 49.008 22.7 C 48.035 22.592 47.108 22.302 46.314 21.699 C 45.235 20.882 44.839 19.562 45.348 18.126 C 46.108 15.99 47.396 14.154 48.922 12.502 C 52.257 8.889 56.342 6.269 60.614 3.927 C 63.197 2.517 65.811 1.175 68.711 0.493 C 70.706 0.026 72.722 -0.059 74.838 0.034 Z M 72.875 20.896 L 73.545 20.116 C 74.032 19.552 74.519 18.986 74.98 18.401 C 77.368 15.378 79.416 12.163 80.392 8.386 C 80.979 6.119 80.21 4.844 77.973 4.187 C 76.185 3.661 74.393 3.854 72.587 4.049 L 72.376 4.069 C 71.231 4.193 70.655 4.786 70.18 5.77 C 66.138 14.142 62.59 22.728 59.041 31.313 L 58.836 31.806 C 58.821 31.844 58.803 31.882 58.783 31.918 C 58.702 32.084 58.612 32.259 58.783 32.478 C 59.812 32.151 60.713 31.575 61.608 31.003 L 61.657 30.974 C 65.916 28.255 69.439 24.717 72.875 20.896 Z M 160.531 37.195 C 161.783 34.489 163.013 31.859 165.209 29.811 C 168.097 27.122 170.808 26.605 174.42 28.218 L 174.644 28.322 C 175.317 28.636 175.938 28.926 176.582 28.096 C 176.846 27.756 177.351 27.883 177.739 28.08 L 178.274 28.352 C 178.885 28.659 179.494 28.967 180.085 29.308 C 181.14 29.915 181.288 30.398 180.527 31.362 C 178.057 34.493 176.86 38.167 175.884 41.944 C 175.79 42.277 175.769 42.627 175.823 42.969 L 176.154 42.557 C 176.399 42.266 176.633 41.966 176.854 41.656 C 178.047 39.949 179.352 38.331 180.659 36.712 C 181.793 35.309 182.926 33.905 183.985 32.442 C 184.312 31.989 184.691 31.575 185.207 31.315 C 185.572 31.129 185.929 31.035 186.26 31.368 C 186.581 31.687 186.575 32.066 186.364 32.423 C 185.871 33.259 185.377 34.094 184.836 34.901 C 182.481 38.425 180.269 42.037 178.094 45.676 C 177.806 46.155 177.491 46.618 177.152 47.062 C 176.076 48.475 174.82 48.56 173.45 47.413 C 170.867 45.248 170.061 42.494 170.694 39.125 C 170.086 39.472 169.708 39.928 169.339 40.367 L 169.136 40.61 C 168.9 40.886 168.665 41.171 168.434 41.455 C 167.792 42.244 167.149 43.032 166.362 43.683 C 165.268 44.586 163.989 44.444 163.118 43.322 C 162.887 43.025 162.682 42.705 162.477 42.386 C 162.318 42.134 162.153 41.886 161.98 41.643 C 161.458 40.917 161.184 40.927 160.843 41.735 C 160.389 42.814 159.957 43.902 159.526 44.988 C 159.283 45.595 159.043 46.204 158.796 46.81 C 158.564 47.381 158.315 47.939 157.803 48.345 C 156.667 49.244 155.689 49.244 154.501 48.436 C 151.293 46.258 150.443 43.131 150.822 39.492 C 150.891 38.837 150.974 38.183 151.064 37.452 L 151.064 37.446 L 151.066 37.434 L 151.204 36.298 C 150.875 36.868 150.554 37.418 150.238 37.954 L 150.238 37.958 C 149.511 39.197 148.789 40.44 148.074 41.686 C 147.701 42.357 147.191 42.942 146.576 43.401 C 145.345 44.304 144.18 44.225 143.063 43.198 C 141.42 41.692 140.184 40.004 140.474 37.603 C 140.492 37.456 140.474 37.304 140.45 37.114 C 140.439 37.012 140.425 36.902 140.415 36.775 C 139.802 37.505 139.425 38.244 139.078 38.999 C 137.827 41.721 136.117 44.146 134.195 46.425 C 133.204 47.602 132.314 47.659 131.195 46.63 C 129.848 45.396 128.488 44.138 128.066 42.25 C 127.82 41.142 127.918 40.01 128.015 38.887 L 128.021 38.824 C 128.026 38.774 128.036 38.725 128.05 38.678 C 128.088 38.53 128.129 38.374 127.952 38.195 C 127.287 38.638 126.789 39.247 126.292 39.855 C 126.075 40.124 125.85 40.387 125.618 40.643 C 125.423 40.862 125.239 41.089 125.066 41.325 C 124.941 41.491 124.812 41.654 124.679 41.814 C 123.293 43.466 121.421 43.486 120.054 41.865 C 119.997 41.795 119.941 41.723 119.889 41.649 C 119.807 41.529 119.715 41.418 119.613 41.315 C 117.72 39.531 117.679 37.456 118.548 35.173 C 119.664 32.249 121.269 29.71 123.834 27.835 C 126.13 26.158 128.594 25.988 131.203 26.923 L 131.305 26.962 L 131.435 27.005 C 131.802 27.136 132.171 27.266 132.516 27.441 C 133.107 27.747 133.58 27.863 133.941 27.104 C 134.13 26.71 134.564 26.684 134.952 26.856 C 136.092 27.354 137.14 27.999 138.059 28.845 C 138.522 29.27 138.44 29.712 138.134 30.185 L 137.574 31.049 C 136.894 32.093 136.216 33.138 135.565 34.201 C 134.16 36.493 133.501 39.037 133.202 41.729 L 133.937 40.779 C 134.477 40.081 135.017 39.383 135.569 38.695 C 137.282 36.561 139.004 34.433 140.734 32.312 C 141 31.985 141.174 31.648 141.267 31.228 C 141.976 27.93 143.936 25.464 146.712 23.713 C 148.709 22.452 150.891 22.422 152.975 23.733 C 153.093 23.806 153.211 23.877 153.332 23.946 C 153.621 24.115 153.913 24.283 154.156 24.502 C 154.816 25.099 155.108 24.823 155.441 24.147 C 157.199 20.593 159.218 17.184 161.237 13.778 C 161.917 12.626 162.597 11.477 163.267 10.324 C 163.829 9.356 164.568 8.5 165.349 7.698 C 166.193 6.831 166.7 6.732 167.798 7.221 C 168.793 7.663 169.749 8.191 170.648 8.808 C 171.451 9.36 171.506 9.618 170.889 10.365 C 169.077 12.557 167.459 14.888 165.84 17.218 C 165.343 17.931 164.846 18.647 164.346 19.357 C 162.006 22.67 160.501 26.4 158.995 30.128 L 158.95 30.242 C 157.192 34.605 156.024 39.111 155.674 43.813 L 155.67 43.862 L 155.666 43.908 C 155.646 44.081 155.626 44.261 155.794 44.47 C 156.304 44.371 156.622 43.983 156.927 43.606 L 157.028 43.482 C 158.311 41.927 159.157 40.125 160.017 38.287 C 160.186 37.925 160.358 37.56 160.531 37.197 Z M 152.574 29.951 L 153.027 29.229 C 153.376 28.673 153.725 28.117 154.056 27.55 C 154.439 26.893 154.22 26.501 153.463 26.408 C 152.734 26.321 152.136 26.633 151.6 27.067 C 148.59 29.507 146.867 32.701 146.171 36.476 C 146.139 36.65 146.104 36.825 146.066 36.998 C 145.893 37.848 145.711 38.737 145.897 39.853 C 147.77 37.505 149.305 35.082 150.849 32.645 C 151.417 31.746 151.986 30.848 152.574 29.951 Z M 172.351 32.492 C 170.338 34.004 169.058 36.054 167.856 38.39 C 169.384 37.897 174.584 32.722 175.12 31.273 C 174.127 31.467 173.281 31.92 172.351 32.492 Z M 131.17 30.37 C 128.119 31.198 124.399 34.877 124.117 37.432 C 124.645 37.3 125.033 36.994 125.376 36.657 C 127.277 34.784 129.167 32.902 131.052 31.011 C 131.081 30.983 131.111 30.957 131.143 30.932 C 131.3 30.8 131.478 30.654 131.17 30.37 Z M 94.485 55.347 C 92.037 55.41 89.578 55.472 87.108 55.527 C 86.402 55.556 85.702 55.586 85.007 55.612 L 85.003 55.612 C 83.187 55.685 81.403 55.755 79.621 55.834 L 77.488 55.925 C 75.378 56.014 73.265 56.1 71.159 56.24 C 66.732 56.528 62.308 56.867 57.9 57.417 C 54.6 57.827 51.315 58.289 48.203 59.554 L 48.143 59.58 C 47.154 59.982 46.16 60.388 45.316 61.06 C 44.54 61.683 44.638 62.413 45.573 62.699 C 47.189 63.195 48.831 63.316 50.361 62.423 C 52.076 61.419 53.947 60.944 55.881 60.719 C 60.234 60.215 64.601 59.891 68.971 59.592 C 74.17 59.237 79.372 58.99 84.575 58.742 L 87.122 58.62 C 92.411 58.364 97.706 58.155 103 58.107 C 104.886 58.09 106.773 58.054 108.657 58.019 L 108.659 58.019 C 112.774 57.94 116.89 57.863 121.008 57.977 C 126.075 58.115 131.102 58.553 136.119 59.215 C 138.27 59.499 140.454 59.726 142.619 59.257 C 143.279 59.115 144.048 58.898 144.129 58.105 C 144.202 57.398 143.608 57.185 143.078 56.993 C 142.989 56.96 142.905 56.93 142.822 56.897 C 141.146 56.223 139.352 56.045 137.578 55.872 L 137.473 55.862 C 131.673 55.29 125.852 55.115 120.03 55.014 C 115.411 54.935 110.79 55.002 106.17 55.083 C 102.28 55.15 98.392 55.249 94.485 55.347 Z M 103.447 28.831 C 104.304 26.14 105.621 23.745 106.981 21.367 C 107.439 20.567 108.038 20.293 108.953 20.439 C 109.897 20.589 110.802 20.78 111.577 21.371 C 112.416 22.01 112.594 22.674 112.089 23.599 C 109.473 28.393 107.845 33.523 106.812 38.863 L 106.808 38.883 C 106.743 39.222 106.678 39.557 106.78 39.902 C 107.013 39.969 107.121 39.819 107.22 39.683 L 107.275 39.608 C 110.723 35.307 113.936 30.848 116.263 25.819 C 117.276 23.625 118.112 21.363 118.1 18.889 L 118.1 18.82 C 118.1 18.637 118.1 18.452 118.08 18.27 C 117.948 17.097 118.104 16.904 119.263 16.808 C 121.526 16.618 123.044 18.223 122.715 20.488 C 122.23 23.832 120.901 26.869 119.226 29.759 C 116.527 34.42 113.753 39.037 110.165 43.094 L 109.966 43.318 C 109.118 44.28 108.267 45.244 107.167 45.94 C 105.142 47.222 103.693 46.857 102.228 44.968 C 100.807 43.135 100.71 41.097 100.868 38.942 C 101.097 35.815 102.084 32.884 103.086 29.905 Z M 88.053 34.713 C 89.715 35.275 90.212 34.974 90.543 33.148 C 90.608 32.691 90.661 32.235 90.711 31.786 C 90.856 30.505 90.996 29.255 91.436 28.056 C 91.791 27.122 92.039 26.152 92.175 25.162 C 92.262 24.472 92.106 23.875 91.584 23.404 C 90.303 22.247 88.501 22.349 87.383 23.638 L 85.518 25.789 L 85.518 25.791 L 84.69 26.747 C 84.804 25.976 85.059 25.298 85.372 24.648 C 85.703 23.956 85.492 23.494 84.818 23.256 C 84.079 23.003 83.333 22.771 82.581 22.56 L 82.293 22.477 C 81.177 22.152 80.972 22.229 80.538 23.289 C 79.353 26.174 78.255 29.089 77.546 32.131 C 76.836 35.163 76.233 38.222 76.298 41.355 C 76.333 43.149 76.548 44.945 77.54 46.52 C 77.902 47.091 78.37 47.695 79.146 47.549 C 79.803 47.425 79.955 46.815 80.099 46.252 L 80.114 46.192 L 80.134 46.112 C 80.193 45.885 80.229 45.652 80.254 45.42 C 80.349 44.592 80.438 43.764 80.526 42.936 L 80.526 42.934 C 80.716 41.166 80.905 39.397 81.151 37.635 C 81.565 34.682 83.215 32.488 85.705 30.668 C 85.686 30.779 85.676 30.871 85.666 30.95 C 85.662 31.053 85.64 31.155 85.603 31.252 C 85.041 32.387 85.583 33.15 86.437 33.832 C 86.926 34.224 87.464 34.514 88.053 34.713 Z M 92.893 31.815 C 93.338 30.869 93.76 29.923 94.184 28.981 C 95.108 26.915 96.023 24.87 97.125 22.917 C 97.803 21.72 98.103 21.62 99.422 21.957 C 100.197 22.154 100.916 22.489 101.577 22.942 C 102.505 23.577 102.602 23.964 101.959 24.896 C 99.71 28.149 97.853 31.618 96.266 35.234 C 95.351 37.318 95.089 39.547 94.827 41.775 L 94.789 42.092 C 94.771 42.242 94.789 42.396 94.805 42.569 C 94.815 42.658 94.825 42.751 94.83 42.851 C 95.262 42.774 95.426 42.478 95.58 42.199 C 95.631 42.108 95.678 42.021 95.735 41.942 C 96.264 41.197 96.952 40.986 97.9 41.284 C 98.704 41.536 98.862 42.143 98.85 42.877 C 98.823 44.335 97.19 46.563 95.863 46.938 C 93.853 47.507 91.335 46.082 90.834 43.996 C 90.034 40.665 90.231 37.412 91.804 34.299 C 92.076 33.761 92.311 33.201 92.554 32.624 C 92.662 32.358 92.774 32.09 92.893 31.815 Z M 110.195 8.264 C 109.458 7.788 108.648 7.434 107.798 7.217 C 106.028 6.823 105.125 7.117 104.338 8.463 C 103.301 10.237 102.302 12.037 101.527 13.949 C 100.802 15.747 101.198 16.883 102.868 17.886 C 103.696 18.381 104.007 18.288 104.484 17.458 C 105.387 15.877 106.294 14.296 107.421 12.857 C 108.257 11.789 109.239 10.866 110.284 10.001 C 111.076 9.344 111.027 8.786 110.195 8.264 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 181.478 58.23 L 182.943 58.086 C 183.032 58.578 183.209 58.939 183.477 59.17 C 183.75 59.4 184.114 59.517 184.572 59.517 C 185.057 59.517 185.421 59.414 185.666 59.211 C 185.896 59.041 186.033 58.774 186.038 58.488 C 186.043 58.324 185.987 58.165 185.881 58.04 C 185.733 57.886 185.546 57.774 185.34 57.715 C 184.942 57.592 184.54 57.483 184.134 57.388 C 183.326 57.189 182.76 56.942 182.435 56.65 C 181.994 56.277 181.743 55.727 181.749 55.15 C 181.749 54.77 181.855 54.415 182.068 54.086 C 182.295 53.745 182.62 53.481 183 53.329 C 183.407 53.155 183.897 53.069 184.471 53.069 C 185.407 53.069 186.111 53.274 186.582 53.684 C 187.056 54.096 187.306 54.642 187.332 55.328 L 185.823 55.395 C 185.76 55.01 185.62 54.736 185.407 54.569 C 185.197 54.399 184.879 54.314 184.455 54.314 C 184.018 54.314 183.675 54.405 183.426 54.584 C 183.28 54.69 183.191 54.858 183.188 55.039 C 183.185 55.219 183.268 55.391 183.41 55.501 C 183.602 55.659 184.063 55.826 184.796 56 C 185.53 56.173 186.07 56.353 186.419 56.538 C 186.774 56.721 187.048 56.976 187.245 57.297 C 187.444 57.616 187.544 58.011 187.544 58.482 C 187.546 59.375 187.006 60.18 186.18 60.518 C 185.747 60.698 185.204 60.788 184.558 60.788 C 183.614 60.788 182.89 60.571 182.383 60.138 C 181.879 59.698 181.575 59.063 181.477 58.23 Z M 176.116 60.656 L 176.116 57.516 L 173.384 53.195 L 175.15 53.195 L 176.905 56.148 L 178.626 53.195 L 180.361 53.195 L 177.619 57.526 L 177.619 60.656 Z M 173.584 60.656 L 171.946 60.656 L 171.295 58.961 L 168.313 58.961 L 167.698 60.656 L 166.099 60.656 L 169.005 53.195 L 170.598 53.195 Z M 170.888 57.705 L 169.861 54.935 L 168.854 57.703 L 170.888 57.703 Z M 162.245 60.656 L 162.245 54.458 L 160.031 54.458 L 160.031 53.197 L 165.959 53.197 L 165.959 54.458 L 163.751 54.458 L 163.751 60.656 Z M 152.498 58.23 L 153.965 58.086 C 154.052 58.578 154.231 58.939 154.497 59.17 C 154.769 59.4 155.134 59.517 155.593 59.517 C 156.078 59.517 156.441 59.414 156.688 59.211 C 156.917 59.041 157.054 58.773 157.058 58.488 C 157.063 58.324 157.007 58.165 156.901 58.04 C 156.752 57.886 156.566 57.774 156.36 57.715 C 155.963 57.593 155.561 57.483 155.156 57.388 C 154.348 57.189 153.782 56.942 153.456 56.65 C 153.015 56.278 152.763 55.728 152.768 55.15 C 152.768 54.77 152.875 54.415 153.09 54.086 C 153.307 53.755 153.616 53.5 154.02 53.329 C 154.488 53.144 154.988 53.056 155.491 53.069 C 156.427 53.069 157.131 53.274 157.602 53.684 C 158.077 54.096 158.328 54.642 158.351 55.328 L 156.845 55.395 C 156.78 55.01 156.64 54.736 156.427 54.569 C 156.216 54.399 155.899 54.314 155.475 54.314 C 155.038 54.314 154.695 54.405 154.448 54.584 C 154.294 54.688 154.204 54.862 154.208 55.048 C 154.208 55.225 154.283 55.375 154.432 55.501 C 154.624 55.659 155.083 55.826 155.816 56 C 156.55 56.173 157.09 56.353 157.441 56.538 C 157.794 56.721 158.068 56.976 158.265 57.297 C 158.464 57.616 158.564 58.011 158.564 58.482 C 158.566 59.375 158.027 60.18 157.2 60.518 C 156.766 60.698 156.226 60.788 155.578 60.788 C 154.635 60.788 153.91 60.571 153.405 60.138 C 152.899 59.698 152.597 59.063 152.498 58.23 Z\" fill=\"rgb(85,85,85)\"></path></svg>',svgContentId:9236124966},TCuCXiLr1:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 226.71 63.08\"><path d=\"M 74.838 0.034 C 76.143 0.239 77.335 0.542 78.459 1.082 C 83.218 3.369 85.211 7.667 83.878 12.764 C 83.283 15.035 82.378 17.151 80.931 19.025 C 80.391 19.725 79.873 20.441 79.354 21.154 C 78.658 22.139 77.933 23.103 77.18 24.044 C 73.188 28.933 68.267 32.736 62.875 35.945 C 61.164 36.967 59.299 37.609 57.237 37.239 C 56.776 37.156 56.527 37.337 56.393 37.785 C 56.065 38.858 55.724 39.928 55.372 40.994 C 54.436 43.864 53.499 46.735 53.026 49.737 C 52.904 50.516 52.529 51.137 51.745 51.383 C 50.992 51.622 50.513 51.154 50.024 50.675 L 49.992 50.646 C 48.888 49.567 48.644 48.268 48.977 46.831 C 51.319 36.718 53.98 26.698 57.878 17.05 C 59.035 14.188 60.413 11.418 61.83 8.672 C 61.929 8.481 62.022 8.288 62.122 8.077 L 62.276 7.757 C 61.915 7.629 61.655 7.779 61.42 7.915 C 61.397 7.931 61.373 7.944 61.347 7.956 C 56.862 10.486 52.758 13.51 49.286 17.34 C 48.739 17.921 48.316 18.608 48.044 19.359 C 47.648 20.514 48.007 21.093 49.196 21.241 C 49.657 21.3 50.103 21.373 50.034 22.006 C 49.968 22.639 49.507 22.755 49.008 22.7 C 48.035 22.592 47.108 22.302 46.314 21.699 C 45.235 20.882 44.839 19.562 45.348 18.126 C 46.108 15.99 47.396 14.154 48.922 12.502 C 52.257 8.889 56.342 6.269 60.614 3.927 C 63.197 2.517 65.811 1.175 68.711 0.493 C 70.706 0.026 72.722 -0.059 74.838 0.034 Z M 72.875 20.896 L 73.545 20.116 C 74.032 19.552 74.519 18.986 74.98 18.401 C 77.368 15.378 79.416 12.163 80.392 8.386 C 80.979 6.119 80.21 4.844 77.973 4.187 C 76.185 3.661 74.393 3.854 72.587 4.049 L 72.376 4.069 C 71.231 4.193 70.655 4.786 70.18 5.77 C 66.138 14.142 62.59 22.728 59.041 31.313 L 58.836 31.806 C 58.821 31.844 58.803 31.882 58.783 31.918 C 58.702 32.084 58.612 32.259 58.783 32.478 C 59.812 32.151 60.713 31.575 61.608 31.003 L 61.657 30.974 C 65.916 28.255 69.439 24.717 72.875 20.896 Z M 160.531 37.195 C 161.783 34.489 163.013 31.859 165.209 29.811 C 168.097 27.122 170.808 26.605 174.42 28.218 L 174.644 28.322 C 175.317 28.636 175.938 28.926 176.582 28.096 C 176.846 27.756 177.351 27.883 177.739 28.08 L 178.274 28.352 C 178.885 28.659 179.494 28.967 180.085 29.308 C 181.14 29.915 181.288 30.398 180.527 31.362 C 178.057 34.493 176.86 38.167 175.884 41.944 C 175.79 42.277 175.769 42.627 175.823 42.969 L 176.154 42.557 C 176.399 42.266 176.633 41.966 176.854 41.656 C 178.047 39.949 179.352 38.331 180.659 36.712 C 181.793 35.309 182.926 33.905 183.985 32.442 C 184.312 31.989 184.691 31.575 185.207 31.315 C 185.572 31.129 185.929 31.035 186.26 31.368 C 186.581 31.687 186.575 32.066 186.364 32.423 C 185.871 33.259 185.377 34.094 184.836 34.901 C 182.481 38.425 180.269 42.037 178.094 45.676 C 177.806 46.155 177.491 46.618 177.152 47.062 C 176.076 48.475 174.82 48.56 173.45 47.413 C 170.867 45.248 170.061 42.494 170.694 39.125 C 170.086 39.472 169.708 39.928 169.339 40.367 L 169.136 40.61 C 168.9 40.886 168.665 41.171 168.434 41.455 C 167.792 42.244 167.149 43.032 166.362 43.683 C 165.268 44.586 163.989 44.444 163.118 43.322 C 162.887 43.025 162.682 42.705 162.477 42.386 C 162.318 42.134 162.153 41.886 161.98 41.643 C 161.458 40.917 161.184 40.927 160.843 41.735 C 160.389 42.814 159.957 43.902 159.526 44.988 C 159.283 45.595 159.043 46.204 158.796 46.81 C 158.564 47.381 158.315 47.939 157.803 48.345 C 156.667 49.244 155.689 49.244 154.501 48.436 C 151.293 46.258 150.443 43.131 150.822 39.492 C 150.891 38.837 150.974 38.183 151.064 37.452 L 151.064 37.446 L 151.066 37.434 L 151.204 36.298 C 150.875 36.868 150.554 37.418 150.238 37.954 L 150.238 37.958 C 149.511 39.197 148.789 40.44 148.074 41.686 C 147.701 42.357 147.191 42.942 146.576 43.401 C 145.345 44.304 144.18 44.225 143.063 43.198 C 141.42 41.692 140.184 40.004 140.474 37.603 C 140.492 37.456 140.474 37.304 140.45 37.114 C 140.439 37.012 140.425 36.902 140.415 36.775 C 139.802 37.505 139.425 38.244 139.078 38.999 C 137.827 41.721 136.117 44.146 134.195 46.425 C 133.204 47.602 132.314 47.659 131.195 46.63 C 129.848 45.396 128.488 44.138 128.066 42.25 C 127.82 41.142 127.918 40.01 128.015 38.887 L 128.021 38.824 C 128.026 38.774 128.036 38.725 128.05 38.678 C 128.088 38.53 128.129 38.374 127.952 38.195 C 127.287 38.638 126.789 39.247 126.292 39.855 C 126.075 40.124 125.85 40.387 125.618 40.643 C 125.423 40.862 125.239 41.089 125.066 41.325 C 124.941 41.491 124.812 41.654 124.679 41.814 C 123.293 43.466 121.421 43.486 120.054 41.865 C 119.997 41.795 119.941 41.723 119.889 41.649 C 119.807 41.529 119.715 41.418 119.613 41.315 C 117.72 39.531 117.679 37.456 118.548 35.173 C 119.664 32.249 121.269 29.71 123.834 27.835 C 126.13 26.158 128.594 25.988 131.203 26.923 L 131.305 26.962 L 131.435 27.005 C 131.802 27.136 132.171 27.266 132.516 27.441 C 133.107 27.747 133.58 27.863 133.941 27.104 C 134.13 26.71 134.564 26.684 134.952 26.856 C 136.092 27.354 137.14 27.999 138.059 28.845 C 138.522 29.27 138.44 29.712 138.134 30.185 L 137.574 31.049 C 136.894 32.093 136.216 33.138 135.565 34.201 C 134.16 36.493 133.501 39.037 133.202 41.729 L 133.937 40.779 C 134.477 40.081 135.017 39.383 135.569 38.695 C 137.282 36.561 139.004 34.433 140.734 32.312 C 141 31.985 141.174 31.648 141.267 31.228 C 141.976 27.93 143.936 25.464 146.712 23.713 C 148.709 22.452 150.891 22.422 152.975 23.733 C 153.093 23.806 153.211 23.877 153.332 23.946 C 153.621 24.115 153.913 24.283 154.156 24.502 C 154.816 25.099 155.108 24.823 155.441 24.147 C 157.199 20.593 159.218 17.184 161.237 13.778 C 161.917 12.626 162.597 11.477 163.267 10.324 C 163.829 9.356 164.568 8.5 165.349 7.698 C 166.193 6.831 166.7 6.732 167.798 7.221 C 168.793 7.663 169.749 8.191 170.648 8.808 C 171.451 9.36 171.506 9.618 170.889 10.365 C 169.077 12.557 167.459 14.888 165.84 17.218 C 165.343 17.931 164.846 18.647 164.346 19.357 C 162.006 22.67 160.501 26.4 158.995 30.128 L 158.95 30.242 C 157.192 34.605 156.024 39.111 155.674 43.813 L 155.67 43.862 L 155.666 43.908 C 155.646 44.081 155.626 44.261 155.794 44.47 C 156.304 44.371 156.622 43.983 156.927 43.606 L 157.028 43.482 C 158.311 41.927 159.157 40.125 160.017 38.287 C 160.186 37.925 160.358 37.56 160.531 37.197 Z M 152.574 29.951 L 153.027 29.229 C 153.376 28.673 153.725 28.117 154.056 27.55 C 154.439 26.893 154.22 26.501 153.463 26.408 C 152.734 26.321 152.136 26.633 151.6 27.067 C 148.59 29.507 146.867 32.701 146.171 36.476 C 146.139 36.65 146.104 36.825 146.066 36.998 C 145.893 37.848 145.711 38.737 145.897 39.853 C 147.77 37.505 149.305 35.082 150.849 32.645 C 151.417 31.746 151.986 30.848 152.574 29.951 Z M 172.351 32.492 C 170.338 34.004 169.058 36.054 167.856 38.39 C 169.384 37.897 174.584 32.722 175.12 31.273 C 174.127 31.467 173.281 31.92 172.351 32.492 Z M 131.17 30.37 C 128.119 31.198 124.399 34.877 124.117 37.432 C 124.645 37.3 125.033 36.994 125.376 36.657 C 127.277 34.784 129.167 32.902 131.052 31.011 C 131.081 30.983 131.111 30.957 131.143 30.932 C 131.3 30.8 131.478 30.654 131.17 30.37 Z M 94.485 55.347 C 92.037 55.41 89.578 55.472 87.108 55.527 C 86.402 55.556 85.702 55.586 85.007 55.612 L 85.003 55.612 C 83.187 55.685 81.403 55.755 79.621 55.834 L 77.488 55.925 C 75.378 56.014 73.265 56.1 71.159 56.24 C 66.732 56.528 62.308 56.867 57.9 57.417 C 54.6 57.827 51.315 58.289 48.203 59.554 L 48.143 59.58 C 47.154 59.982 46.16 60.388 45.316 61.06 C 44.54 61.683 44.638 62.413 45.573 62.699 C 47.189 63.195 48.831 63.316 50.361 62.423 C 52.076 61.419 53.947 60.944 55.881 60.719 C 60.234 60.215 64.601 59.891 68.971 59.592 C 74.17 59.237 79.372 58.99 84.575 58.742 L 87.122 58.62 C 92.411 58.364 97.706 58.155 103 58.107 C 104.886 58.09 106.773 58.054 108.657 58.019 L 108.659 58.019 C 112.774 57.94 116.89 57.863 121.008 57.977 C 126.075 58.115 131.102 58.553 136.119 59.215 C 138.27 59.499 140.454 59.726 142.619 59.257 C 143.279 59.115 144.048 58.898 144.129 58.105 C 144.202 57.398 143.608 57.185 143.078 56.993 C 142.989 56.96 142.905 56.93 142.822 56.897 C 141.146 56.223 139.352 56.045 137.578 55.872 L 137.473 55.862 C 131.673 55.29 125.852 55.115 120.03 55.014 C 115.411 54.935 110.79 55.002 106.17 55.083 C 102.28 55.15 98.392 55.249 94.485 55.347 Z M 103.447 28.831 C 104.304 26.14 105.621 23.745 106.981 21.367 C 107.439 20.567 108.038 20.293 108.953 20.439 C 109.897 20.589 110.802 20.78 111.577 21.371 C 112.416 22.01 112.594 22.674 112.089 23.599 C 109.473 28.393 107.845 33.523 106.812 38.863 L 106.808 38.883 C 106.743 39.222 106.678 39.557 106.78 39.902 C 107.013 39.969 107.121 39.819 107.22 39.683 L 107.275 39.608 C 110.723 35.307 113.936 30.848 116.263 25.819 C 117.276 23.625 118.112 21.363 118.1 18.889 L 118.1 18.82 C 118.1 18.637 118.1 18.452 118.08 18.27 C 117.948 17.097 118.104 16.904 119.263 16.808 C 121.526 16.618 123.044 18.223 122.715 20.488 C 122.23 23.832 120.901 26.869 119.226 29.759 C 116.527 34.42 113.753 39.037 110.165 43.094 L 109.966 43.318 C 109.118 44.28 108.267 45.244 107.167 45.94 C 105.142 47.222 103.693 46.857 102.228 44.968 C 100.807 43.135 100.71 41.097 100.868 38.942 C 101.097 35.815 102.084 32.884 103.086 29.905 Z M 88.053 34.713 C 89.715 35.275 90.212 34.974 90.543 33.148 C 90.608 32.691 90.661 32.235 90.711 31.786 C 90.856 30.505 90.996 29.255 91.436 28.056 C 91.791 27.122 92.039 26.152 92.175 25.162 C 92.262 24.472 92.106 23.875 91.584 23.404 C 90.303 22.247 88.501 22.349 87.383 23.638 L 85.518 25.789 L 85.518 25.791 L 84.69 26.747 C 84.804 25.976 85.059 25.298 85.372 24.648 C 85.703 23.956 85.492 23.494 84.818 23.256 C 84.079 23.003 83.333 22.771 82.581 22.56 L 82.293 22.477 C 81.177 22.152 80.972 22.229 80.538 23.289 C 79.353 26.174 78.255 29.089 77.546 32.131 C 76.836 35.163 76.233 38.222 76.298 41.355 C 76.333 43.149 76.548 44.945 77.54 46.52 C 77.902 47.091 78.37 47.695 79.146 47.549 C 79.803 47.425 79.955 46.815 80.099 46.252 L 80.114 46.192 L 80.134 46.112 C 80.193 45.885 80.229 45.652 80.254 45.42 C 80.349 44.592 80.438 43.764 80.526 42.936 L 80.526 42.934 C 80.716 41.166 80.905 39.397 81.151 37.635 C 81.565 34.682 83.215 32.488 85.705 30.668 C 85.686 30.779 85.676 30.871 85.666 30.95 C 85.662 31.053 85.64 31.155 85.603 31.252 C 85.041 32.387 85.583 33.15 86.437 33.832 C 86.926 34.224 87.464 34.514 88.053 34.713 Z M 92.893 31.815 C 93.338 30.869 93.76 29.923 94.184 28.981 C 95.108 26.915 96.023 24.87 97.125 22.917 C 97.803 21.72 98.103 21.62 99.422 21.957 C 100.197 22.154 100.916 22.489 101.577 22.942 C 102.505 23.577 102.602 23.964 101.959 24.896 C 99.71 28.149 97.853 31.618 96.266 35.234 C 95.351 37.318 95.089 39.547 94.827 41.775 L 94.789 42.092 C 94.771 42.242 94.789 42.396 94.805 42.569 C 94.815 42.658 94.825 42.751 94.83 42.851 C 95.262 42.774 95.426 42.478 95.58 42.199 C 95.631 42.108 95.678 42.021 95.735 41.942 C 96.264 41.197 96.952 40.986 97.9 41.284 C 98.704 41.536 98.862 42.143 98.85 42.877 C 98.823 44.335 97.19 46.563 95.863 46.938 C 93.853 47.507 91.335 46.082 90.834 43.996 C 90.034 40.665 90.231 37.412 91.804 34.299 C 92.076 33.761 92.311 33.201 92.554 32.624 C 92.662 32.358 92.774 32.09 92.893 31.815 Z M 110.195 8.264 C 109.458 7.788 108.648 7.434 107.798 7.217 C 106.028 6.823 105.125 7.117 104.338 8.463 C 103.301 10.237 102.302 12.037 101.527 13.949 C 100.802 15.747 101.198 16.883 102.868 17.886 C 103.696 18.381 104.007 18.288 104.484 17.458 C 105.387 15.877 106.294 14.296 107.421 12.857 C 108.257 11.789 109.239 10.866 110.284 10.001 C 111.076 9.344 111.027 8.786 110.195 8.264 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 181.478 58.23 L 182.943 58.086 C 183.032 58.578 183.209 58.939 183.477 59.17 C 183.75 59.4 184.114 59.517 184.572 59.517 C 185.057 59.517 185.421 59.414 185.666 59.211 C 185.896 59.041 186.033 58.774 186.038 58.488 C 186.043 58.324 185.987 58.165 185.881 58.04 C 185.733 57.886 185.546 57.774 185.34 57.715 C 184.942 57.592 184.54 57.483 184.134 57.388 C 183.326 57.189 182.76 56.942 182.435 56.65 C 181.994 56.277 181.743 55.727 181.749 55.15 C 181.749 54.77 181.855 54.415 182.068 54.086 C 182.295 53.745 182.62 53.481 183 53.329 C 183.407 53.155 183.897 53.069 184.471 53.069 C 185.407 53.069 186.111 53.274 186.582 53.684 C 187.056 54.096 187.306 54.642 187.332 55.328 L 185.823 55.395 C 185.76 55.01 185.62 54.736 185.407 54.569 C 185.197 54.399 184.879 54.314 184.455 54.314 C 184.018 54.314 183.675 54.405 183.426 54.584 C 183.28 54.69 183.191 54.858 183.188 55.039 C 183.185 55.219 183.268 55.391 183.41 55.501 C 183.602 55.659 184.063 55.826 184.796 56 C 185.53 56.173 186.07 56.353 186.419 56.538 C 186.774 56.721 187.048 56.976 187.245 57.297 C 187.444 57.616 187.544 58.011 187.544 58.482 C 187.546 59.375 187.006 60.18 186.18 60.518 C 185.747 60.698 185.204 60.788 184.558 60.788 C 183.614 60.788 182.89 60.571 182.383 60.138 C 181.879 59.698 181.575 59.063 181.477 58.23 Z M 176.116 60.656 L 176.116 57.516 L 173.384 53.195 L 175.15 53.195 L 176.905 56.148 L 178.626 53.195 L 180.361 53.195 L 177.619 57.526 L 177.619 60.656 Z M 173.584 60.656 L 171.946 60.656 L 171.295 58.961 L 168.313 58.961 L 167.698 60.656 L 166.099 60.656 L 169.005 53.195 L 170.598 53.195 Z M 170.888 57.705 L 169.861 54.935 L 168.854 57.703 L 170.888 57.703 Z M 162.245 60.656 L 162.245 54.458 L 160.031 54.458 L 160.031 53.197 L 165.959 53.197 L 165.959 54.458 L 163.751 54.458 L 163.751 60.656 Z M 152.498 58.23 L 153.965 58.086 C 154.052 58.578 154.231 58.939 154.497 59.17 C 154.769 59.4 155.134 59.517 155.593 59.517 C 156.078 59.517 156.441 59.414 156.688 59.211 C 156.917 59.041 157.054 58.773 157.058 58.488 C 157.063 58.324 157.007 58.165 156.901 58.04 C 156.752 57.886 156.566 57.774 156.36 57.715 C 155.963 57.593 155.561 57.483 155.156 57.388 C 154.348 57.189 153.782 56.942 153.456 56.65 C 153.015 56.278 152.763 55.728 152.768 55.15 C 152.768 54.77 152.875 54.415 153.09 54.086 C 153.307 53.755 153.616 53.5 154.02 53.329 C 154.488 53.144 154.988 53.056 155.491 53.069 C 156.427 53.069 157.131 53.274 157.602 53.684 C 158.077 54.096 158.328 54.642 158.351 55.328 L 156.845 55.395 C 156.78 55.01 156.64 54.736 156.427 54.569 C 156.216 54.399 155.899 54.314 155.475 54.314 C 155.038 54.314 154.695 54.405 154.448 54.584 C 154.294 54.688 154.204 54.862 154.208 55.048 C 154.208 55.225 154.283 55.375 154.432 55.501 C 154.624 55.659 155.083 55.826 155.816 56 C 156.55 56.173 157.09 56.353 157.441 56.538 C 157.794 56.721 158.068 56.976 158.265 57.297 C 158.464 57.616 158.564 58.011 158.564 58.482 C 158.566 59.375 158.027 60.18 157.2 60.518 C 156.766 60.698 156.226 60.788 155.578 60.788 C 154.635 60.788 153.91 60.571 153.405 60.138 C 152.899 59.698 152.597 59.063 152.498 58.23 Z\" fill=\"rgb(85,85,85)\"></path></svg>',svgContentId:9236124966}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-5ella6\",\"data-framer-name\":\"Privada\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 226.71 63.08\"><path d=\"M 73.563 0.034 C 74.868 0.239 76.06 0.542 77.184 1.082 C 81.943 3.369 83.936 7.667 82.603 12.764 C 82.008 15.035 81.103 17.151 79.656 19.025 C 79.116 19.725 78.598 20.441 78.079 21.154 C 77.383 22.139 76.658 23.103 75.905 24.044 C 71.913 28.933 66.992 32.736 61.6 35.945 C 59.889 36.967 58.024 37.609 55.962 37.239 C 55.501 37.156 55.252 37.337 55.118 37.785 C 54.79 38.858 54.449 39.928 54.097 40.994 C 53.161 43.864 52.224 46.735 51.751 49.737 C 51.629 50.516 51.254 51.137 50.47 51.383 C 49.717 51.622 49.238 51.154 48.749 50.675 L 48.717 50.646 C 47.613 49.567 47.369 48.268 47.702 46.831 C 50.044 36.718 52.705 26.698 56.603 17.05 C 57.76 14.188 59.138 11.418 60.555 8.672 C 60.654 8.481 60.747 8.288 60.847 8.077 L 61.001 7.757 C 60.64 7.629 60.38 7.779 60.145 7.915 C 60.122 7.931 60.098 7.944 60.072 7.956 C 55.587 10.486 51.483 13.51 48.011 17.34 C 47.464 17.921 47.041 18.608 46.769 19.359 C 46.373 20.514 46.732 21.093 47.921 21.241 C 48.382 21.3 48.828 21.373 48.759 22.006 C 48.693 22.639 48.232 22.755 47.733 22.7 C 46.76 22.592 45.833 22.302 45.039 21.699 C 43.96 20.882 43.564 19.562 44.073 18.126 C 44.833 15.99 46.121 14.154 47.647 12.502 C 50.982 8.889 55.067 6.269 59.339 3.927 C 61.922 2.517 64.536 1.175 67.436 0.493 C 69.431 0.026 71.447 -0.059 73.563 0.034 Z M 71.217 20.896 L 71.887 20.116 C 72.374 19.552 72.861 18.986 73.322 18.401 C 75.709 15.378 77.758 12.163 78.734 8.386 C 79.321 6.119 78.552 4.844 76.315 4.187 C 74.527 3.661 72.735 3.854 70.929 4.049 L 70.718 4.069 C 69.573 4.193 68.997 4.786 68.522 5.77 C 64.48 14.142 60.932 22.728 57.383 31.313 L 57.178 31.806 C 57.163 31.844 57.145 31.882 57.125 31.918 C 57.044 32.084 56.954 32.259 57.125 32.478 C 58.154 32.151 59.055 31.575 59.95 31.003 L 59.999 30.974 C 64.258 28.255 67.781 24.717 71.217 20.896 Z M 157.197 37.195 C 158.449 34.489 159.679 31.859 161.875 29.811 C 164.763 27.122 167.474 26.605 171.086 28.218 L 171.31 28.322 C 171.983 28.636 172.604 28.926 173.248 28.096 C 173.512 27.756 174.017 27.883 174.405 28.08 L 174.94 28.352 C 175.551 28.659 176.16 28.967 176.751 29.308 C 177.806 29.915 177.954 30.398 177.193 31.362 C 174.723 34.493 173.526 38.167 172.55 41.944 C 172.456 42.277 172.435 42.627 172.489 42.969 L 172.82 42.557 C 173.065 42.266 173.299 41.966 173.52 41.656 C 174.713 39.949 176.018 38.331 177.325 36.712 C 178.459 35.309 179.592 33.905 180.651 32.442 C 180.978 31.989 181.357 31.575 181.873 31.315 C 182.238 31.129 182.595 31.035 182.926 31.368 C 183.247 31.687 183.241 32.066 183.03 32.423 C 182.537 33.259 182.043 34.094 181.502 34.901 C 179.147 38.425 176.935 42.037 174.76 45.676 C 174.472 46.155 174.158 46.618 173.818 47.062 C 172.742 48.475 171.486 48.56 170.116 47.413 C 167.533 45.248 166.727 42.494 167.36 39.125 C 166.752 39.472 166.374 39.928 166.005 40.367 L 165.802 40.61 C 165.566 40.886 165.331 41.171 165.1 41.455 C 164.458 42.244 163.815 43.032 163.029 43.683 C 161.934 44.586 160.655 44.444 159.784 43.322 C 159.553 43.025 159.348 42.705 159.143 42.386 C 158.984 42.134 158.819 41.886 158.646 41.643 C 158.124 40.917 157.85 40.927 157.509 41.735 C 157.055 42.814 156.623 43.902 156.192 44.988 C 155.949 45.595 155.709 46.204 155.462 46.81 C 155.23 47.381 154.981 47.939 154.469 48.345 C 153.333 49.244 152.355 49.244 151.167 48.436 C 147.959 46.258 147.109 43.131 147.488 39.492 C 147.557 38.837 147.64 38.183 147.73 37.452 L 147.73 37.446 L 147.732 37.434 L 147.87 36.298 C 147.541 36.868 147.22 37.418 146.904 37.954 L 146.904 37.958 C 146.177 39.197 145.455 40.44 144.74 41.686 C 144.367 42.357 143.857 42.942 143.242 43.401 C 142.011 44.304 140.846 44.225 139.729 43.198 C 138.086 41.692 136.85 40.004 137.14 37.603 C 137.158 37.456 137.14 37.304 137.116 37.114 C 137.105 37.012 137.091 36.902 137.081 36.775 C 136.468 37.505 136.091 38.244 135.744 38.999 C 134.493 41.721 132.783 44.146 130.861 46.425 C 129.87 47.602 128.981 47.659 127.861 46.63 C 126.514 45.396 125.154 44.138 124.732 42.25 C 124.486 41.142 124.584 40.01 124.681 38.887 L 124.687 38.824 C 124.692 38.774 124.702 38.725 124.716 38.678 C 124.754 38.53 124.795 38.374 124.618 38.195 C 123.953 38.638 123.455 39.247 122.958 39.855 C 122.741 40.124 122.516 40.387 122.284 40.643 C 122.089 40.862 121.905 41.089 121.732 41.325 C 121.607 41.491 121.478 41.654 121.345 41.814 C 119.959 43.466 118.087 43.486 116.72 41.865 C 116.663 41.795 116.608 41.723 116.555 41.649 C 116.473 41.529 116.381 41.418 116.279 41.315 C 114.386 39.531 114.345 37.456 115.214 35.173 C 116.33 32.249 117.935 29.71 120.5 27.835 C 122.796 26.158 125.261 25.988 127.869 26.923 L 127.971 26.962 L 128.101 27.005 C 128.468 27.136 128.837 27.266 129.182 27.441 C 129.773 27.747 130.246 27.863 130.607 27.104 C 130.796 26.71 131.23 26.684 131.618 26.856 C 132.758 27.354 133.807 27.999 134.725 28.845 C 135.188 29.27 135.106 29.712 134.8 30.185 L 134.24 31.049 C 133.56 32.093 132.882 33.138 132.231 34.201 C 130.826 36.493 130.167 39.037 129.868 41.729 L 130.603 40.779 C 131.143 40.081 131.683 39.383 132.235 38.695 C 133.948 36.561 135.67 34.433 137.4 32.312 C 137.667 31.985 137.84 31.648 137.933 31.228 C 138.642 27.93 140.602 25.464 143.378 23.713 C 145.375 22.452 147.557 22.422 149.641 23.733 C 149.759 23.806 149.877 23.877 149.998 23.946 C 150.287 24.115 150.579 24.283 150.822 24.502 C 151.482 25.099 151.774 24.823 152.107 24.147 C 153.865 20.593 155.884 17.184 157.903 13.778 C 158.583 12.626 159.263 11.477 159.933 10.324 C 160.495 9.356 161.235 8.5 162.015 7.698 C 162.859 6.831 163.366 6.732 164.464 7.221 C 165.459 7.663 166.415 8.191 167.314 8.808 C 168.117 9.36 168.172 9.618 167.555 10.365 C 165.743 12.557 164.125 14.888 162.506 17.218 C 162.009 17.931 161.513 18.647 161.012 19.357 C 158.672 22.67 157.168 26.4 155.661 30.128 L 155.616 30.242 C 153.858 34.605 152.691 39.111 152.34 43.813 L 152.336 43.862 L 152.332 43.908 C 152.312 44.081 152.292 44.261 152.46 44.47 C 152.97 44.371 153.288 43.983 153.593 43.606 L 153.694 43.482 C 154.977 41.927 155.823 40.125 156.683 38.287 C 156.852 37.925 157.024 37.56 157.197 37.197 Z M 148.454 29.951 L 148.907 29.229 C 149.256 28.673 149.605 28.117 149.936 27.55 C 150.319 26.893 150.1 26.501 149.343 26.408 C 148.614 26.321 148.016 26.633 147.48 27.067 C 144.47 29.507 142.747 32.701 142.051 36.476 C 142.019 36.65 141.984 36.825 141.946 36.998 C 141.773 37.848 141.592 38.737 141.777 39.853 C 143.65 37.505 145.185 35.082 146.729 32.645 C 147.297 31.746 147.867 30.848 148.454 29.951 Z M 167.608 32.492 C 165.595 34.004 164.316 36.054 163.113 38.39 C 164.641 37.897 169.842 32.722 170.378 31.273 C 169.384 31.467 168.539 31.92 167.608 32.492 Z M 127.664 30.37 C 124.612 31.198 120.892 34.877 120.61 37.432 C 121.138 37.3 121.527 36.994 121.87 36.657 C 123.77 34.784 125.661 32.902 127.545 31.011 C 127.574 30.983 127.605 30.957 127.636 30.932 C 127.794 30.8 127.971 30.654 127.664 30.37 Z M 93.219 55.347 C 90.771 55.41 88.313 55.472 85.842 55.527 C 85.137 55.556 84.437 55.586 83.741 55.612 L 83.737 55.612 C 81.921 55.685 80.137 55.755 78.355 55.834 L 76.222 55.925 C 74.113 56.014 71.999 56.1 69.894 56.24 C 65.466 56.528 61.042 56.867 56.634 57.417 C 53.334 57.827 50.05 58.289 46.937 59.554 L 46.878 59.58 C 45.888 59.982 44.895 60.388 44.051 61.06 C 43.274 61.683 43.373 62.413 44.307 62.699 C 45.924 63.195 47.566 63.316 49.096 62.423 C 50.811 61.419 52.682 60.944 54.616 60.719 C 58.968 60.215 63.335 59.891 67.706 59.592 C 72.904 59.237 78.107 58.99 83.309 58.742 L 85.856 58.62 C 91.146 58.364 96.441 58.155 101.734 58.107 C 103.621 58.09 105.507 58.054 107.392 58.019 L 107.394 58.019 C 111.508 57.94 115.624 57.863 119.743 57.977 C 124.809 58.115 129.836 58.553 134.853 59.215 C 137.004 59.499 139.188 59.726 141.353 59.257 C 142.013 59.115 142.782 58.898 142.863 58.105 C 142.936 57.398 142.343 57.185 141.812 56.993 C 141.724 56.96 141.639 56.93 141.556 56.897 C 139.88 56.223 138.086 56.045 136.312 55.872 L 136.208 55.862 C 130.408 55.29 124.586 55.115 118.765 55.014 C 114.146 54.935 109.525 55.002 104.904 55.083 C 101.014 55.15 97.127 55.249 93.219 55.347 Z M 100.598 28.831 C 101.456 26.14 102.773 23.745 104.133 21.367 C 104.59 20.567 105.19 20.293 106.104 20.439 C 107.049 20.589 107.954 20.78 108.728 21.371 C 109.568 22.01 109.746 22.674 109.241 23.599 C 106.625 28.393 104.997 33.523 103.964 38.863 L 103.96 38.883 C 103.895 39.222 103.829 39.557 103.932 39.902 C 104.165 39.969 104.273 39.819 104.372 39.683 L 104.427 39.608 C 107.875 35.307 111.088 30.848 113.414 25.819 C 114.428 23.625 115.264 21.363 115.252 18.889 L 115.252 18.82 C 115.252 18.637 115.252 18.452 115.232 18.27 C 115.1 17.097 115.256 16.904 116.415 16.808 C 118.678 16.618 120.196 18.223 119.867 20.488 C 119.382 23.832 118.053 26.869 116.377 29.759 C 113.679 34.42 110.905 39.037 107.317 43.094 L 107.118 43.318 C 106.27 44.28 105.418 45.244 104.318 45.94 C 102.294 47.222 100.845 46.857 99.38 44.968 C 97.959 43.135 97.862 41.097 98.02 38.942 C 98.248 35.815 99.236 32.884 100.238 29.905 Z M 85.898 34.713 C 87.56 35.275 88.056 34.974 88.388 33.148 C 88.453 32.691 88.506 32.235 88.555 31.786 C 88.701 30.505 88.841 29.255 89.281 28.056 C 89.635 27.122 89.883 26.152 90.02 25.162 C 90.107 24.472 89.951 23.875 89.428 23.404 C 88.147 22.247 86.345 22.349 85.227 23.638 L 83.362 25.789 L 83.362 25.791 L 82.534 26.747 C 82.649 25.976 82.903 25.298 83.217 24.648 C 83.548 23.956 83.337 23.494 82.663 23.256 C 81.924 23.003 81.177 22.771 80.425 22.56 L 80.137 22.477 C 79.021 22.152 78.816 22.229 78.383 23.289 C 77.198 26.174 76.1 29.089 75.39 32.131 C 74.68 35.163 74.077 38.222 74.142 41.355 C 74.178 43.149 74.393 44.945 75.384 46.52 C 75.747 47.091 76.214 47.695 76.991 47.549 C 77.647 47.425 77.799 46.815 77.943 46.252 L 77.959 46.192 L 77.979 46.112 C 78.038 45.885 78.073 45.652 78.099 45.42 C 78.193 44.592 78.282 43.764 78.371 42.936 L 78.371 42.934 C 78.56 41.166 78.749 39.397 78.996 37.635 C 79.41 34.682 81.06 32.488 83.55 30.668 C 83.53 30.779 83.52 30.871 83.51 30.95 C 83.506 31.053 83.485 31.155 83.447 31.252 C 82.885 32.387 83.427 33.15 84.281 33.832 C 84.77 34.224 85.308 34.514 85.898 34.713 Z M 90.339 31.815 C 90.785 30.869 91.207 29.923 91.63 28.981 C 92.555 26.915 93.47 24.87 94.572 22.917 C 95.25 21.72 95.55 21.62 96.868 21.957 C 97.643 22.154 98.363 22.489 99.023 22.942 C 99.952 23.577 100.048 23.964 99.406 24.896 C 97.156 28.149 95.299 31.618 93.712 35.234 C 92.798 37.318 92.535 39.547 92.273 41.775 L 92.236 42.092 C 92.218 42.242 92.236 42.396 92.251 42.569 C 92.261 42.658 92.271 42.751 92.277 42.851 C 92.709 42.774 92.872 42.478 93.026 42.199 C 93.077 42.108 93.125 42.021 93.182 41.942 C 93.71 41.197 94.398 40.986 95.347 41.284 C 96.151 41.536 96.309 42.143 96.297 42.877 C 96.269 44.335 94.637 46.563 93.31 46.938 C 91.299 47.507 88.782 46.082 88.281 43.996 C 87.481 40.665 87.678 37.412 89.251 34.299 C 89.523 33.761 89.758 33.201 90 32.624 C 90.109 32.358 90.221 32.09 90.339 31.815 Z M 107.337 8.264 C 106.599 7.788 105.79 7.434 104.939 7.217 C 103.169 6.823 102.266 7.117 101.48 8.463 C 100.443 10.237 99.443 12.037 98.668 13.949 C 97.943 15.747 98.339 16.883 100.009 17.886 C 100.837 18.381 101.148 18.288 101.625 17.458 C 102.528 15.877 103.435 14.296 104.563 12.857 C 105.399 11.789 106.38 10.866 107.425 10.001 C 108.218 9.344 108.169 8.786 107.337 8.264 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 176.351 58.23 L 177.816 58.086 C 177.905 58.578 178.082 58.939 178.35 59.17 C 178.622 59.4 178.987 59.517 179.444 59.517 C 179.929 59.517 180.294 59.414 180.538 59.211 C 180.768 59.041 180.906 58.774 180.911 58.488 C 180.916 58.324 180.859 58.165 180.753 58.04 C 180.605 57.886 180.419 57.774 180.213 57.715 C 179.815 57.592 179.412 57.483 179.007 57.388 C 178.198 57.189 177.633 56.942 177.307 56.65 C 176.867 56.277 176.616 55.727 176.621 55.15 C 176.621 54.77 176.728 54.415 176.941 54.086 C 177.168 53.745 177.493 53.481 177.873 53.329 C 178.279 53.155 178.77 53.069 179.344 53.069 C 180.28 53.069 180.984 53.274 181.455 53.684 C 181.928 54.096 182.179 54.642 182.204 55.328 L 180.696 55.395 C 180.633 55.01 180.493 54.736 180.28 54.569 C 180.069 54.399 179.752 54.314 179.328 54.314 C 178.89 54.314 178.547 54.405 178.299 54.584 C 178.152 54.69 178.064 54.858 178.061 55.039 C 178.058 55.219 178.14 55.391 178.283 55.501 C 178.474 55.659 178.936 55.826 179.669 56 C 180.402 56.173 180.943 56.353 181.292 56.538 C 181.646 56.721 181.92 56.976 182.118 57.297 C 182.317 57.616 182.417 58.011 182.417 58.482 C 182.418 59.375 181.879 60.18 181.053 60.518 C 180.619 60.698 180.077 60.788 179.431 60.788 C 178.486 60.788 177.763 60.571 177.256 60.138 C 176.751 59.698 176.448 59.063 176.349 58.23 Z M 171.218 60.656 L 171.218 57.516 L 168.485 53.195 L 170.252 53.195 L 172.006 56.148 L 173.727 53.195 L 175.462 53.195 L 172.72 57.526 L 172.72 60.656 Z M 168.891 60.656 L 167.253 60.656 L 166.603 58.961 L 163.62 58.961 L 163.005 60.656 L 161.406 60.656 L 164.312 53.195 L 165.905 53.195 Z M 166.118 57.705 L 165.091 54.935 L 164.083 57.703 L 166.118 57.703 Z M 157.723 60.656 L 157.723 54.458 L 155.51 54.458 L 155.51 53.197 L 161.438 53.197 L 161.438 54.458 L 159.23 54.458 L 159.23 60.656 Z M 148.19 58.23 L 149.657 58.086 C 149.743 58.578 149.923 58.939 150.189 59.17 C 150.461 59.4 150.826 59.517 151.285 59.517 C 151.77 59.517 152.133 59.414 152.379 59.211 C 152.608 59.041 152.745 58.773 152.75 58.488 C 152.754 58.324 152.698 58.165 152.592 58.04 C 152.444 57.886 152.257 57.774 152.052 57.715 C 151.654 57.593 151.252 57.483 150.847 57.388 C 150.039 57.189 149.473 56.942 149.148 56.65 C 148.707 56.278 148.454 55.728 148.46 55.15 C 148.46 54.77 148.566 54.415 148.781 54.086 C 148.998 53.755 149.308 53.5 149.712 53.329 C 150.18 53.144 150.68 53.056 151.182 53.069 C 152.119 53.069 152.823 53.274 153.294 53.684 C 153.769 54.096 154.019 54.642 154.043 55.328 L 152.537 55.395 C 152.472 55.01 152.332 54.736 152.119 54.569 C 151.908 54.399 151.59 54.314 151.167 54.314 C 150.729 54.314 150.386 54.405 150.14 54.584 C 149.986 54.688 149.895 54.862 149.899 55.048 C 149.899 55.225 149.974 55.375 150.124 55.501 C 150.315 55.659 150.774 55.826 151.508 56 C 152.241 56.173 152.781 56.353 153.132 56.538 C 153.485 56.721 153.759 56.976 153.956 57.297 C 154.155 57.616 154.256 58.011 154.256 58.482 C 154.257 59.375 153.718 60.18 152.892 60.518 C 152.458 60.698 151.918 60.788 151.269 60.788 C 150.327 60.788 149.601 60.571 149.097 60.138 C 148.59 59.698 148.288 59.063 148.19 58.23 Z\" fill=\"rgb(85,85,85)\"></path></svg>',svgContentId:9340898479,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:\"Case Study\"})}),className:\"framer-110091o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k1dwm0\",\"data-framer-name\":\"Middle\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+528+100+13692.12+10+335.08),pixelHeight:1601,pixelWidth:2400,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 20px, 1200px)`,src:\"https://framerusercontent.com/images/tZbjYut2ugXNCqtD2i6ZzlVIhw.png\",srcSet:\"https://framerusercontent.com/images/tZbjYut2ugXNCqtD2i6ZzlVIhw.png?scale-down-to=512 512w,https://framerusercontent.com/images/tZbjYut2ugXNCqtD2i6ZzlVIhw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tZbjYut2ugXNCqtD2i6ZzlVIhw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tZbjYut2ugXNCqtD2i6ZzlVIhw.png 2400w\"}},TCuCXiLr1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+826+100+14598.12+20+335.08),pixelHeight:1601,pixelWidth:2400,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/tZbjYut2ugXNCqtD2i6ZzlVIhw.png\",srcSet:\"https://framerusercontent.com/images/tZbjYut2ugXNCqtD2i6ZzlVIhw.png?scale-down-to=512 512w,https://framerusercontent.com/images/tZbjYut2ugXNCqtD2i6ZzlVIhw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tZbjYut2ugXNCqtD2i6ZzlVIhw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tZbjYut2ugXNCqtD2i6ZzlVIhw.png 2400w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+846+100+12285.12+100+335.08),pixelHeight:1601,pixelWidth:2400,positionX:\"center\",positionY:\"center\",sizes:\"1200px\",src:\"https://framerusercontent.com/images/tZbjYut2ugXNCqtD2i6ZzlVIhw.png\",srcSet:\"https://framerusercontent.com/images/tZbjYut2ugXNCqtD2i6ZzlVIhw.png?scale-down-to=512 512w,https://framerusercontent.com/images/tZbjYut2ugXNCqtD2i6ZzlVIhw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tZbjYut2ugXNCqtD2i6ZzlVIhw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tZbjYut2ugXNCqtD2i6ZzlVIhw.png 2400w\"},className:\"framer-1b624pk\",\"data-framer-name\":\"Parallax image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17qn7fn\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-lgjgoa\",\"data-styles-preset\":\"DoitCSbJr\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" 97% Guest Engagement and 5X Upsell Conversion: Privada Stays Goes Fully Digital with Innspire\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-lgjgoa\",\"data-styles-preset\":\"DoitCSbJr\",children:/*#__PURE__*/_jsx(\"strong\",{children:\" 97% Guest Engagement and 5X Upsell Conversion: Privada Stays Goes Fully Digital with Innspire\"})})}),className:\"framer-ef244i\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Privada Stays partnered with Innspire to redefine the guest experience through a fully digital, contactless journey \u2014 from booking to check-out. Within weeks of go-live, the results were striking: \",/*#__PURE__*/_jsx(\"strong\",{children:\"91% guest engagement\"}),\", a \",/*#__PURE__*/_jsx(\"strong\",{children:\"5X increase in upsell conversion\"}),\", and a \",/*#__PURE__*/_jsx(\"strong\",{children:\"significant drop in front desk workload\"}),\". Guests seamlessly check in via mobile, use their phones as digital keys, control the room environment, and communicate directly with staff through the in-app chat. With Innspire\u2019s all-in-one platform, Privada Stays not only enhanced guest satisfaction but also improved operational efficiency and revenue per stay.\\xa0\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:[\"Privada Stays partnered with Innspire to redefine the guest experience through a fully digital, contactless journey \u2014 from booking to check-out. Within weeks of go-live, the results were striking: \",/*#__PURE__*/_jsx(\"strong\",{children:\"91% guest engagement\"}),\", a \",/*#__PURE__*/_jsx(\"strong\",{children:\"5X increase in upsell conversion\"}),\", and a \",/*#__PURE__*/_jsx(\"strong\",{children:\"significant drop in front desk workload\"}),\". Guests seamlessly check in via mobile, use their phones as digital keys, control the room environment, and communicate directly with staff through the in-app chat. With Innspire\u2019s all-in-one platform, Privada Stays not only enhanced guest satisfaction but also improved operational efficiency and revenue per stay.\\xa0\"]})}),className:\"framer-ld86k1\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t8v6w0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-p4o8dh\",\"data-styles-preset\":\"sWkIeX9Y3\",style:{\"--framer-text-alignment\":\"center\"},children:\"\u201CInnspire\u2019s platform didn\u2019t just meet expectations \u2014 it exceeded them. We\u2019ve seen remarkable adoption from guests and real results for our team and bottom line.\u201D\\xa0\"})}),className:\"framer-17d2cei\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[\"\u2014 \",/*#__PURE__*/_jsx(\"strong\",{children:\"Gillian Lejuez, COO of Privada Stays\"}),\"\\xa0\"]})}),className:\"framer-ugd7c1\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10o9gj3\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+528+100+13692.12+10+1686.11+0+0),pixelHeight:1125,pixelWidth:1500,sizes:`min(${componentViewport?.width||\"100vw\"} - 20px, 1200px)`,src:\"https://framerusercontent.com/images/8xNKFMpRWxMqFwg8v3K7hcyI2E.jpg\",srcSet:\"https://framerusercontent.com/images/8xNKFMpRWxMqFwg8v3K7hcyI2E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8xNKFMpRWxMqFwg8v3K7hcyI2E.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8xNKFMpRWxMqFwg8v3K7hcyI2E.jpg 1500w\"}},TCuCXiLr1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+826+100+14598.12+20+1686.11+0+0),pixelHeight:1125,pixelWidth:1500,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/8xNKFMpRWxMqFwg8v3K7hcyI2E.jpg\",srcSet:\"https://framerusercontent.com/images/8xNKFMpRWxMqFwg8v3K7hcyI2E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8xNKFMpRWxMqFwg8v3K7hcyI2E.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8xNKFMpRWxMqFwg8v3K7hcyI2E.jpg 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+846+100+12285.12+100+1686.11+0),pixelHeight:1125,pixelWidth:1500,sizes:\"569px\",src:\"https://framerusercontent.com/images/8xNKFMpRWxMqFwg8v3K7hcyI2E.jpg\",srcSet:\"https://framerusercontent.com/images/8xNKFMpRWxMqFwg8v3K7hcyI2E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8xNKFMpRWxMqFwg8v3K7hcyI2E.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8xNKFMpRWxMqFwg8v3K7hcyI2E.jpg 1500w\"},className:\"framer-74yqfb\",\"data-framer-name\":\"Parallax image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gw839o\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wx627w\",\"data-framer-name\":\"Paragraph\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"91%\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Guest Engagement Rate\",/*#__PURE__*/_jsx(\"br\",{}),\"Guests actively using the digital guest journey experience\\xa0\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"5X\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Increase in Upsell Conversion. Personalized offers delivered at the right moment\\xa0\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"<1 Min\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Average Mobile Check-in Time. Fast, frictionless, and contactless\\xa0\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Significant\"}),\"\\xa0reduction in Front Desk Load. Staff freed up to focus on hospitality\\xa0\"]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"91%\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Guest Engagement Rate\",/*#__PURE__*/_jsx(\"br\",{}),\"Guests actively using the digital guest journey experience\\xa0\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"5X\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Increase in Upsell Conversion. Personalized offers delivered at the right moment\\xa0\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"<1 Min\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Average Mobile Check-in Time. Fast, frictionless, and contactless\\xa0\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Significant\"}),\"\\xa0reduction in Front Desk Load. Staff freed up to focus on hospitality\\xa0\"]})]}),className:\"framer-1lbo36e\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ut3ysd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-p4o8dh\",\"data-styles-preset\":\"sWkIeX9Y3\",style:{\"--framer-text-alignment\":\"center\"},children:\"\u201CInnspire helped us elevate every touchpoint of the guest experience. The results speak for themselves \u2014 more engagement, happier guests, and smoother operations.\u201D\\xa0\"})}),className:\"framer-v70ln0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[\"\u2014 \",/*#__PURE__*/_jsx(\"strong\",{children:\"Gillian Lejuez, COO of Privada Stays\"}),\"\\xa0\"]})}),className:\"framer-1sk394q\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10d7ymd\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hnbh0g\",id:elementId7,ref:ref8,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p5ckl5\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1sfn5nw\",\"data-framer-name\":\"Mondrian\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 207 23\"><path d=\"M 183.109 22.193 L 186.714 22.193 L 186.714 10.192 C 186.714 8.942 187.494 8.39 188.598 9.175 L 207 22.339 L 207 1.009 L 203.395 1.009 L 203.395 13.01 C 203.395 14.261 202.615 14.812 201.511 14.028 L 183.109 0.863 L 183.109 22.195 L 183.109 22.192 Z M 170.463 16.119 L 161.209 16.119 C 160.187 16.119 159.865 15.189 160.456 14.347 L 164.707 8.242 C 165.487 7.138 166.186 7.138 166.966 8.242 L 171.216 14.347 C 171.808 15.189 171.486 16.119 170.463 16.119 Z M 155.021 22.194 L 156.179 20.567 C 156.691 19.841 157.309 19.433 158.089 19.433 L 173.588 19.433 C 174.368 19.433 174.986 19.84 175.498 20.567 L 176.656 22.193 L 180.96 22.193 L 165.838 0.864 L 150.717 22.195 L 155.021 22.195 L 155.021 22.193 Z M 144.958 22.194 L 148.563 22.194 L 148.563 1.009 L 144.958 1.009 L 144.958 22.195 L 144.958 22.193 Z M 131.803 12.282 L 122.414 12.282 C 121.336 12.282 120.799 11.701 120.799 10.539 L 120.799 6.034 C 120.799 4.871 121.336 4.291 122.414 4.291 L 131.803 4.291 C 134.708 4.291 136.511 5.6 136.511 8.273 C 136.511 10.947 134.708 12.284 131.803 12.284 M 131.076 16.382 L 137.049 22.195 L 141.866 22.195 L 135.867 16.382 C 135.275 15.802 135.356 14.93 136.217 14.494 C 138.262 13.447 140.279 11.558 140.279 8.275 C 140.279 3.655 137.426 1.011 131.91 1.011 L 117.194 1.011 L 117.194 22.197 L 120.799 22.197 L 120.799 17.285 C 120.799 16.122 121.337 15.542 122.414 15.542 L 128.548 15.542 C 129.84 15.542 130.485 15.804 131.076 16.384 M 93.948 4.498 L 101.534 4.498 C 106.996 4.498 109.903 7.521 109.903 11.59 C 109.903 15.66 106.996 18.712 101.534 18.712 L 93.948 18.712 C 92.872 18.712 92.335 18.131 92.335 16.968 L 92.335 6.24 C 92.335 5.077 92.872 4.496 93.948 4.496 M 101.588 1.01 L 88.729 1.01 L 88.729 22.196 L 101.669 22.196 C 108.476 22.196 113.668 18.04 113.668 11.589 C 113.668 5.138 108.477 1.01 101.591 1.01 M 60.212 22.195 L 63.817 22.195 L 63.817 10.194 C 63.817 8.944 64.597 8.393 65.701 9.177 L 84.103 22.342 L 84.103 1.009 L 80.498 1.009 L 80.498 13.01 C 80.498 14.261 79.718 14.812 78.615 14.028 L 60.212 0.863 L 60.212 22.195 Z M 43.693 19.115 C 38.177 19.115 34.357 15.888 34.357 11.588 C 34.357 7.288 38.177 4.091 43.693 4.091 C 49.21 4.091 52.977 7.316 52.977 11.587 C 52.977 15.861 49.182 19.115 43.693 19.115 Z M 43.693 22.601 C 51.225 22.601 56.742 17.922 56.742 11.588 C 56.742 5.254 51.198 0.601 43.691 0.601 C 36.184 0.601 30.589 5.28 30.589 11.586 C 30.589 17.891 36.132 22.599 43.691 22.599 M 0 22.192 L 3.605 22.192 L 3.605 12.836 C 3.605 11.818 4.52 11.528 5.219 12.372 L 13.56 22.339 L 21.902 12.372 C 22.601 11.53 23.516 11.818 23.516 12.836 L 23.516 22.194 L 27.121 22.194 L 27.121 0.863 L 14.556 15.917 C 13.938 16.672 13.185 16.672 12.564 15.917 L 0 0.863 L 0 22.195 Z\" fill=\"var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Dark-250&quot;} */\"></path></svg>',svgContentId:10618808134,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:\"Case Study\"})}),className:\"framer-1om4w3u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+528+100+16716.23+10+263),pixelHeight:1875,pixelWidth:2500,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 20px, 1200px)`,src:\"https://framerusercontent.com/images/U20ivUEp2GWlYBHnLxaieBzsHQ.jpg\",srcSet:\"https://framerusercontent.com/images/U20ivUEp2GWlYBHnLxaieBzsHQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/U20ivUEp2GWlYBHnLxaieBzsHQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/U20ivUEp2GWlYBHnLxaieBzsHQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/U20ivUEp2GWlYBHnLxaieBzsHQ.jpg 2500w\"}},TCuCXiLr1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+826+100+17909.23+20+263),pixelHeight:1875,pixelWidth:2500,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/U20ivUEp2GWlYBHnLxaieBzsHQ.jpg\",srcSet:\"https://framerusercontent.com/images/U20ivUEp2GWlYBHnLxaieBzsHQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/U20ivUEp2GWlYBHnLxaieBzsHQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/U20ivUEp2GWlYBHnLxaieBzsHQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/U20ivUEp2GWlYBHnLxaieBzsHQ.jpg 2500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+846+100+15081.23+100+263),pixelHeight:1875,pixelWidth:2500,positionX:\"center\",positionY:\"center\",sizes:\"1200px\",src:\"https://framerusercontent.com/images/U20ivUEp2GWlYBHnLxaieBzsHQ.jpg\",srcSet:\"https://framerusercontent.com/images/U20ivUEp2GWlYBHnLxaieBzsHQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/U20ivUEp2GWlYBHnLxaieBzsHQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/U20ivUEp2GWlYBHnLxaieBzsHQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/U20ivUEp2GWlYBHnLxaieBzsHQ.jpg 2500w\"},className:\"framer-1s71ak6\",\"data-framer-name\":\"Parallax image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zkwa8h\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-lgjgoa\",\"data-styles-preset\":\"DoitCSbJr\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Casting the Future: How Mondrian Cannes Delivered Seamless In-Room Entertainment with Innspire\"}),\"\\xa0\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-lgjgoa\",\"data-styles-preset\":\"DoitCSbJr\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Casting the Future: How Mondrian Cannes Delivered Seamless In-Room Entertainment with Innspire\"}),\"\\xa0\"]})}),className:\"framer-12goi4i\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[\"As part of its full-scale transformation, the newly opened \",/*#__PURE__*/_jsx(\"strong\",{children:\"Mondrian Cannes\"}),\" \u2014 the first Mondrian property in France \u2014 partnered with \",/*#__PURE__*/_jsx(\"strong\",{children:\"Innspire\"}),\" to elevate the in-room entertainment experience to meet modern guest expectations. The hotel implemented \",/*#__PURE__*/_jsx(\"strong\",{children:\"Innspire\u2019s IPTV, InnSmart, and Proxy Casting solutions\"}),\" across its 75 guestrooms and suites. Guests can now effortlessly cast content from both \",/*#__PURE__*/_jsx(\"strong\",{children:\"Apple and Android devices\"}),\", access a broad range of streaming services, and interact with a fully branded and intuitive TV interface. The system is flexible enough to support both \",/*#__PURE__*/_jsx(\"strong\",{children:\"Smart and non-Smart TVs\"}),\", making it ideal for evolving hardware needs.\\xa0\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:[\"As part of its full-scale transformation, the newly opened \",/*#__PURE__*/_jsx(\"strong\",{children:\"Mondrian Cannes\"}),\" \u2014 the first Mondrian property in France \u2014 partnered with \",/*#__PURE__*/_jsx(\"strong\",{children:\"Innspire\"}),\" to elevate the in-room entertainment experience to meet modern guest expectations. The hotel implemented \",/*#__PURE__*/_jsx(\"strong\",{children:\"Innspire\u2019s IPTV, InnSmart, and Proxy Casting solutions\"}),\" across its 75 guestrooms and suites. Guests can now effortlessly cast content from both \",/*#__PURE__*/_jsx(\"strong\",{children:\"Apple and Android devices\"}),\", access a broad range of streaming services, and interact with a fully branded and intuitive TV interface. The system is flexible enough to support both \",/*#__PURE__*/_jsx(\"strong\",{children:\"Smart and non-Smart TVs\"}),\", making it ideal for evolving hardware needs.\\xa0\"]})}),className:\"framer-c7lv9f\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h4r9oo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-p4o8dh\",\"data-styles-preset\":\"sWkIeX9Y3\",style:{\"--framer-text-alignment\":\"center\"},children:\"\u201CWe chose Innspire for its seamless connectivity, cross-platform casting capabilities, and adaptability. It was the best solution by far.\u201D\\xa0\"})}),className:\"framer-1bil3ky\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[\"- \",/*#__PURE__*/_jsx(\"strong\",{children:\"Victor Basquin, Deputy Manager, Mondrian Cannes\"}),\"\\xa0\"]})}),className:\"framer-s45ec4\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6bxbt8\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+528+100+16716.23+10+1614.03+0+0),pixelHeight:720,pixelWidth:1280,sizes:`min(${componentViewport?.width||\"100vw\"} - 20px, 1200px)`,src:\"https://framerusercontent.com/images/OKIPckWLKc6Cabz3CkxnhzvtY.png\",srcSet:\"https://framerusercontent.com/images/OKIPckWLKc6Cabz3CkxnhzvtY.png?scale-down-to=512 512w,https://framerusercontent.com/images/OKIPckWLKc6Cabz3CkxnhzvtY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OKIPckWLKc6Cabz3CkxnhzvtY.png 1280w\"}},TCuCXiLr1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+826+100+17909.23+20+1614.03+0+0),pixelHeight:720,pixelWidth:1280,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/OKIPckWLKc6Cabz3CkxnhzvtY.png\",srcSet:\"https://framerusercontent.com/images/OKIPckWLKc6Cabz3CkxnhzvtY.png?scale-down-to=512 512w,https://framerusercontent.com/images/OKIPckWLKc6Cabz3CkxnhzvtY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OKIPckWLKc6Cabz3CkxnhzvtY.png 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+846+100+15081.23+100+1614.03+0),pixelHeight:720,pixelWidth:1280,sizes:\"569px\",src:\"https://framerusercontent.com/images/OKIPckWLKc6Cabz3CkxnhzvtY.png\",srcSet:\"https://framerusercontent.com/images/OKIPckWLKc6Cabz3CkxnhzvtY.png?scale-down-to=512 512w,https://framerusercontent.com/images/OKIPckWLKc6Cabz3CkxnhzvtY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OKIPckWLKc6Cabz3CkxnhzvtY.png 1280w\"},className:\"framer-ofxemi\",\"data-framer-name\":\"Parallax image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rhag4d\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-9086xd\",\"data-framer-name\":\"Paragraph\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",style:{\"--framer-text-alignment\":\"center\"},children:[\"According to \",/*#__PURE__*/_jsx(\"strong\",{children:\"Victor Basquin, Deputy Manager of Mondrian Cannes\"}),\", the solution exceeded expectations and was installed quickly and professionally: \u201CWe chose Innspire for its seamless connectivity, cross-platform casting capabilities, and adaptability. It was the best solution by far.\u201D The hotel also benefits from a modular platform with capabilities for mobile check-in/out, room service ordering, guest requests, concierge services, promotions, and more \u2014 ensuring scalability for future guest journey enhancements.\\xa0\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qvbvl\",\"data-styles-preset\":\"SmHQu_Oum\",children:[\"According to \",/*#__PURE__*/_jsx(\"strong\",{children:\"Victor Basquin, Deputy Manager of Mondrian Cannes\"}),\", the solution exceeded expectations and was installed quickly and professionally: \u201CWe chose Innspire for its seamless connectivity, cross-platform casting capabilities, and adaptability. It was the best solution by far.\u201D The hotel also benefits from a modular platform with capabilities for mobile check-in/out, room service ordering, guest requests, concierge services, promotions, and more \u2014 ensuring scalability for future guest journey enhancements.\\xa0\"]})}),className:\"framer-198u3db\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13v6lbj\"})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+19720.26},TCuCXiLr1:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+80+21498.26}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:204,width:\"1400px\",y:(componentViewport?.y||0)+60+18547.26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r3loz2-container\",nodeId:\"Bcc8Pffdj\",scopeId:\"WWOhmVFYv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d1WHIRGil:{variant:\"on9Ch5PoD\"},TCuCXiLr1:{variant:\"bx5OdrLEl\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"Bcc8Pffdj\",layoutId:\"Bcc8Pffdj\",style:{width:\"100%\"},variant:\"nVeNRf7M_\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iZORC.framer-hjn1x5, .framer-iZORC .framer-hjn1x5 { display: block; }\",\".framer-iZORC.framer-1bn8atf { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 60px 0px 0px 0px; position: relative; width: 1400px; }\",\".framer-iZORC .framer-ltkpa-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-iZORC .framer-fx88l4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 846px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1400px; }\",\".framer-iZORC .framer-1sngz9j-container { flex: none; height: 786px; position: relative; width: auto; }\",\".framer-iZORC .framer-1hw2ifh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-iZORC .framer-1vsd5tv, .framer-iZORC .framer-dl1qy7, .framer-iZORC .framer-lluqwa, .framer-iZORC .framer-1nxp5q0, .framer-iZORC .framer-dr68op, .framer-iZORC .framer-hnbh0g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 104px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-iZORC .framer-1ugqcc7, .framer-iZORC .framer-1vz19k1, .framer-iZORC .framer-8ozarq, .framer-iZORC .framer-qlf4x5, .framer-iZORC .framer-x02np3, .framer-iZORC .framer-rd1krj, .framer-iZORC .framer-1p5ckl5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 840px; }\",\".framer-iZORC .framer-blenvl { flex: none; height: 34px; position: relative; width: 264px; }\",\".framer-iZORC .framer-1rkikmv, .framer-iZORC .framer-2x6uik, .framer-iZORC .framer-lal8oz, .framer-iZORC .framer-16sypoy, .framer-iZORC .framer-1qblemq, .framer-iZORC .framer-1ewqetq, .framer-iZORC .framer-17s4g4h, .framer-iZORC .framer-vln40h, .framer-iZORC .framer-eruha0, .framer-iZORC .framer-1jc6q7n, .framer-iZORC .framer-1w2sdd7, .framer-iZORC .framer-1slh5ts, .framer-iZORC .framer-14zmroq, .framer-iZORC .framer-4q3go6, .framer-iZORC .framer-1b5pyau, .framer-iZORC .framer-110091o, .framer-iZORC .framer-ugd7c1, .framer-iZORC .framer-1lbo36e, .framer-iZORC .framer-1sk394q, .framer-iZORC .framer-1om4w3u, .framer-iZORC .framer-s45ec4, .framer-iZORC .framer-198u3db { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 70%; word-break: break-word; word-wrap: break-word; }\",\".framer-iZORC .framer-d6qvy8, .framer-iZORC .framer-1eaqca4, .framer-iZORC .framer-3t1vc0, .framer-iZORC .framer-jj1orq, .framer-iZORC .framer-1b624pk, .framer-iZORC .framer-1s71ak6 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 689px; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iZORC .framer-16ose6w, .framer-iZORC .framer-16qlz7y, .framer-iZORC .framer-17abhax, .framer-iZORC .framer-15qs4ie, .framer-iZORC .framer-1l5bhf4, .framer-iZORC .framer-17qn7fn, .framer-iZORC .framer-zkwa8h { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 700px; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-iZORC .framer-17y2ucj, .framer-iZORC .framer-1of9t8y, .framer-iZORC .framer-vjdkmp, .framer-iZORC .framer-1xro19q, .framer-iZORC .framer-iawjpa, .framer-iZORC .framer-1vci3h4, .framer-iZORC .framer-1nymmp2, .framer-iZORC .framer-n97apq, .framer-iZORC .framer-bhq5kh, .framer-iZORC .framer-6aqi30, .framer-iZORC .framer-1ekc7hq, .framer-iZORC .framer-ef244i, .framer-iZORC .framer-ld86k1, .framer-iZORC .framer-12goi4i, .framer-iZORC .framer-c7lv9f { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iZORC .framer-14uh2li, .framer-iZORC .framer-6bx6su, .framer-iZORC .framer-wqlll, .framer-iZORC .framer-terpyp, .framer-iZORC .framer-1dbr4xw, .framer-iZORC .framer-1ssrcy4, .framer-iZORC .framer-t8v6w0, .framer-iZORC .framer-1ut3ysd, .framer-iZORC .framer-h4r9oo { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-iZORC .framer-qm8pfw, .framer-iZORC .framer-160huwq, .framer-iZORC .framer-cov2km, .framer-iZORC .framer-zq6ysg, .framer-iZORC .framer-c10aeq, .framer-iZORC .framer-oi9sr4, .framer-iZORC .framer-17d2cei, .framer-iZORC .framer-v70ln0, .framer-iZORC .framer-1bil3ky { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iZORC .framer-12kr738, .framer-iZORC .framer-1vkabke, .framer-iZORC .framer-dszxda, .framer-iZORC .framer-s56cdv, .framer-iZORC .framer-4v4kh2, .framer-iZORC .framer-10o9gj3, .framer-iZORC .framer-6bxbt8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-iZORC .framer-q9385k, .framer-iZORC .framer-13v4lif, .framer-iZORC .framer-1yngpb3, .framer-iZORC .framer-156kamg, .framer-iZORC .framer-74yqfb, .framer-iZORC .framer-ofxemi { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iZORC .framer-51q98k, .framer-iZORC .framer-x55pg1, .framer-iZORC .framer-1ew2d06, .framer-iZORC .framer-audb8z, .framer-iZORC .framer-1bsnh18, .framer-iZORC .framer-gw839o, .framer-iZORC .framer-1rhag4d { 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-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-iZORC .framer-ccy857, .framer-iZORC .framer-qhsky6, .framer-iZORC .framer-1r51stw, .framer-iZORC .framer-19rwq8k, .framer-iZORC .framer-8aj9wc, .framer-iZORC .framer-1wx627w, .framer-iZORC .framer-9086xd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-iZORC .framer-1654ac9, .framer-iZORC .framer-1ap1mzc, .framer-iZORC .framer-1guyzbk, .framer-iZORC .framer-1xkfo99, .framer-iZORC .framer-196wsqd, .framer-iZORC .framer-10d7ymd, .framer-iZORC .framer-13v6lbj { align-self: stretch; background-color: var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, #7a7a7a); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 2px; overflow: hidden; position: relative; width: auto; will-change: var(--framer-will-change-override, transform); }\",\".framer-iZORC .framer-1dmhs44 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 104px; height: 2934px; justify-content: center; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-iZORC .framer-c220zc { flex: none; height: 56px; position: relative; width: 187px; }\",\".framer-iZORC .framer-u0ygbo-container { align-self: stretch; flex: none; height: auto; position: relative; width: auto; }\",\".framer-iZORC .framer-1xeqblx { flex: none; height: 28px; position: relative; width: 182px; }\",\".framer-iZORC .framer-16pzrgc { flex: none; height: 52px; position: relative; width: 173px; }\",\".framer-iZORC .framer-w1w0yw { aspect-ratio: 2.027027027027027 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 75px); overflow: visible; position: relative; width: 153px; }\",\".framer-iZORC .framer-4q4pt1 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 637px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 840px; }\",\".framer-iZORC .framer-wjvlps { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 600px; overflow: hidden; position: relative; width: 570px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iZORC .framer-93od9p-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-iZORC .framer-5ella6 { flex: none; height: 63px; position: relative; width: 227px; }\",\".framer-iZORC .framer-1k1dwm0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; min-height: 32px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-iZORC .framer-1sfn5nw { flex: none; height: 23px; position: relative; width: 207px; }\",\".framer-iZORC .framer-1r3loz2-container { flex: none; height: auto; position: relative; width: 1400px; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,\"@media (min-width: 810px) and (max-width: 1399px) { .framer-iZORC.framer-1bn8atf { padding: 80px 0px 3269px 0px; width: 810px; } .framer-iZORC .framer-fx88l4 { flex-direction: column; height: 826px; justify-content: flex-start; padding: 20px; width: 100%; } .framer-iZORC .framer-1sngz9j-container { flex: 1 0 0px; height: 1px; width: 100%; } .framer-iZORC .framer-1vsd5tv, .framer-iZORC .framer-1dmhs44, .framer-iZORC .framer-dl1qy7, .framer-iZORC .framer-lluqwa, .framer-iZORC .framer-1nxp5q0, .framer-iZORC .framer-dr68op, .framer-iZORC .framer-hnbh0g { padding: 20px; width: 100%; } .framer-iZORC .framer-1rkikmv, .framer-iZORC .framer-1of9t8y, .framer-iZORC .framer-2x6uik, .framer-iZORC .framer-lal8oz, .framer-iZORC .framer-16sypoy, .framer-iZORC .framer-1xro19q, .framer-iZORC .framer-1qblemq, .framer-iZORC .framer-1ewqetq, .framer-iZORC .framer-17s4g4h, .framer-iZORC .framer-vln40h, .framer-iZORC .framer-1vci3h4, .framer-iZORC .framer-eruha0, .framer-iZORC .framer-1jc6q7n, .framer-iZORC .framer-1w2sdd7, .framer-iZORC .framer-n97apq, .framer-iZORC .framer-1slh5ts, .framer-iZORC .framer-14zmroq, .framer-iZORC .framer-4q3go6, .framer-iZORC .framer-6aqi30, .framer-iZORC .framer-1b5pyau, .framer-iZORC .framer-1ekc7hq, .framer-iZORC .framer-110091o, .framer-iZORC .framer-ld86k1, .framer-iZORC .framer-ugd7c1, .framer-iZORC .framer-1lbo36e, .framer-iZORC .framer-1sk394q, .framer-iZORC .framer-1om4w3u, .framer-iZORC .framer-c7lv9f, .framer-iZORC .framer-s45ec4, .framer-iZORC .framer-198u3db { width: 450px; } .framer-iZORC .framer-d6qvy8, .framer-iZORC .framer-1eaqca4, .framer-iZORC .framer-3t1vc0, .framer-iZORC .framer-jj1orq, .framer-iZORC .framer-1b624pk, .framer-iZORC .framer-1s71ak6, .framer-iZORC .framer-1r3loz2-container { width: 100%; } .framer-iZORC .framer-16ose6w, .framer-iZORC .framer-14uh2li, .framer-iZORC .framer-1654ac9, .framer-iZORC .framer-u0ygbo-container, .framer-iZORC .framer-16qlz7y, .framer-iZORC .framer-6bx6su, .framer-iZORC .framer-wqlll, .framer-iZORC .framer-1ap1mzc, .framer-iZORC .framer-17abhax, .framer-iZORC .framer-terpyp, .framer-iZORC .framer-1guyzbk, .framer-iZORC .framer-15qs4ie, .framer-iZORC .framer-1dbr4xw, .framer-iZORC .framer-1xkfo99, .framer-iZORC .framer-1l5bhf4, .framer-iZORC .framer-1ssrcy4, .framer-iZORC .framer-196wsqd, .framer-iZORC .framer-17qn7fn, .framer-iZORC .framer-t8v6w0, .framer-iZORC .framer-1ut3ysd, .framer-iZORC .framer-10d7ymd, .framer-iZORC .framer-zkwa8h, .framer-iZORC .framer-h4r9oo, .framer-iZORC .framer-13v6lbj { align-self: unset; width: 100%; } .framer-iZORC .framer-12kr738, .framer-iZORC .framer-1vkabke, .framer-iZORC .framer-dszxda, .framer-iZORC .framer-s56cdv, .framer-iZORC .framer-4v4kh2, .framer-iZORC .framer-10o9gj3, .framer-iZORC .framer-6bxbt8 { flex-direction: column; gap: 32px; padding: 0px 0px 67px 0px; width: 100%; } .framer-iZORC .framer-q9385k, .framer-iZORC .framer-13v4lif, .framer-iZORC .framer-1yngpb3, .framer-iZORC .framer-156kamg, .framer-iZORC .framer-74yqfb, .framer-iZORC .framer-ofxemi { flex: none; order: 0; width: 100%; } .framer-iZORC .framer-51q98k, .framer-iZORC .framer-x55pg1, .framer-iZORC .framer-1ew2d06, .framer-iZORC .framer-audb8z, .framer-iZORC .framer-gw839o, .framer-iZORC .framer-1rhag4d { align-self: unset; flex: none; gap: 24px; height: min-content; justify-content: flex-start; order: 1; width: 100%; } .framer-iZORC .framer-1bsnh18 { align-self: unset; flex: none; gap: 24px; height: min-content; justify-content: flex-start; order: 0; width: 100%; }}\",\"@media (max-width: 809px) { .framer-iZORC.framer-1bn8atf { justify-content: center; overflow: hidden; padding: 0px; width: 390px; } .framer-iZORC .framer-ltkpa-container { order: 1; } .framer-iZORC .framer-fx88l4 { flex-direction: column; height: 528px; order: 6; padding: 90px 20px 20px 20px; width: 390px; } .framer-iZORC .framer-1sngz9j-container { height: auto; width: 100%; } .framer-iZORC .framer-1hw2ifh { order: 7; } .framer-iZORC .framer-1vsd5tv, .framer-iZORC .framer-1dmhs44, .framer-iZORC .framer-dl1qy7, .framer-iZORC .framer-lluqwa, .framer-iZORC .framer-1nxp5q0, .framer-iZORC .framer-dr68op, .framer-iZORC .framer-hnbh0g { padding: 10px; width: 100%; } .framer-iZORC .framer-d6qvy8, .framer-iZORC .framer-1vz19k1, .framer-iZORC .framer-1eaqca4, .framer-iZORC .framer-3t1vc0, .framer-iZORC .framer-jj1orq, .framer-iZORC .framer-1b624pk, .framer-iZORC .framer-1s71ak6 { width: 100%; } .framer-iZORC .framer-16ose6w, .framer-iZORC .framer-14uh2li, .framer-iZORC .framer-1654ac9, .framer-iZORC .framer-u0ygbo-container, .framer-iZORC .framer-16qlz7y, .framer-iZORC .framer-6bx6su, .framer-iZORC .framer-wqlll, .framer-iZORC .framer-1ap1mzc, .framer-iZORC .framer-17abhax, .framer-iZORC .framer-terpyp, .framer-iZORC .framer-1guyzbk, .framer-iZORC .framer-15qs4ie, .framer-iZORC .framer-1dbr4xw, .framer-iZORC .framer-1xkfo99, .framer-iZORC .framer-1l5bhf4, .framer-iZORC .framer-1ssrcy4, .framer-iZORC .framer-196wsqd, .framer-iZORC .framer-17qn7fn, .framer-iZORC .framer-t8v6w0, .framer-iZORC .framer-1ut3ysd, .framer-iZORC .framer-10d7ymd, .framer-iZORC .framer-zkwa8h, .framer-iZORC .framer-h4r9oo, .framer-iZORC .framer-13v6lbj { align-self: unset; width: 100%; } .framer-iZORC .framer-12kr738, .framer-iZORC .framer-1vkabke, .framer-iZORC .framer-dszxda, .framer-iZORC .framer-s56cdv, .framer-iZORC .framer-4v4kh2, .framer-iZORC .framer-10o9gj3, .framer-iZORC .framer-6bxbt8 { flex-direction: column; gap: 70px; padding: 0px 0px 42px 0px; width: 100%; } .framer-iZORC .framer-q9385k, .framer-iZORC .framer-13v4lif, .framer-iZORC .framer-1yngpb3, .framer-iZORC .framer-156kamg, .framer-iZORC .framer-74yqfb, .framer-iZORC .framer-ofxemi { flex: none; height: 320px; order: 0; width: 100%; } .framer-iZORC .framer-51q98k, .framer-iZORC .framer-x55pg1, .framer-iZORC .framer-1ew2d06, .framer-iZORC .framer-audb8z, .framer-iZORC .framer-gw839o, .framer-iZORC .framer-1rhag4d { align-self: unset; flex: none; gap: 24px; height: min-content; justify-content: flex-start; order: 1; width: 100%; } .framer-iZORC .framer-ccy857, .framer-iZORC .framer-qhsky6, .framer-iZORC .framer-1r51stw, .framer-iZORC .framer-19rwq8k, .framer-iZORC .framer-8aj9wc, .framer-iZORC .framer-1wx627w, .framer-iZORC .framer-9086xd { align-content: center; align-items: center; } .framer-iZORC .framer-1bsnh18 { align-self: unset; flex: none; gap: 24px; height: min-content; justify-content: flex-start; order: 0; width: 100%; } .framer-iZORC .framer-1r3loz2-container { order: 8; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 19272\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TCuCXiLr1\":{\"layout\":[\"fixed\",\"auto\"]},\"d1WHIRGil\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"yUSQd4sqr\":{\"pattern\":\":yUSQd4sqr\",\"name\":\"\"},\"Zx80CrUew\":{\"pattern\":\":Zx80CrUew\",\"name\":\"parklane\"},\"dSOMkKOlt\":{\"pattern\":\":dSOMkKOlt\",\"name\":\"doncesar\"},\"D6BZLVheb\":{\"pattern\":\":D6BZLVheb\",\"name\":\"viceroy\"},\"kqTyuQdak\":{\"pattern\":\":kqTyuQdak\",\"name\":\"parkterrace\"},\"rRYedGOgw\":{\"pattern\":\":rRYedGOgw\",\"name\":\"virgin\"},\"Ec5Ine8zB\":{\"pattern\":\":Ec5Ine8zB\",\"name\":\"privada\"},\"I20YfdFW7\":{\"pattern\":\":I20YfdFW7\",\"name\":\"mondrian\"}}\n * @framerResponsiveScreen\n */const FramerWWOhmVFYv=withCSS(Component,css,\"framer-iZORC\");export default FramerWWOhmVFYv;FramerWWOhmVFYv.displayName=\"Home\";FramerWWOhmVFYv.defaultProps={height:19272,width:1400};addFonts(FramerWWOhmVFYv,[{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:\"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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]},...NavigationFonts,...HeaderCasesFonts,...VideoFonts,...EmbedFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWWOhmVFYv\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"19272\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TCuCXiLr1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"d1WHIRGil\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1400\",\"framerColorSyntax\":\"true\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"{\\\"yUSQd4sqr\\\":{\\\"pattern\\\":\\\":yUSQd4sqr\\\",\\\"name\\\":\\\"\\\"},\\\"Zx80CrUew\\\":{\\\"pattern\\\":\\\":Zx80CrUew\\\",\\\"name\\\":\\\"parklane\\\"},\\\"dSOMkKOlt\\\":{\\\"pattern\\\":\\\":dSOMkKOlt\\\",\\\"name\\\":\\\"doncesar\\\"},\\\"D6BZLVheb\\\":{\\\"pattern\\\":\\\":D6BZLVheb\\\",\\\"name\\\":\\\"viceroy\\\"},\\\"kqTyuQdak\\\":{\\\"pattern\\\":\\\":kqTyuQdak\\\",\\\"name\\\":\\\"parkterrace\\\"},\\\"rRYedGOgw\\\":{\\\"pattern\\\":\\\":rRYedGOgw\\\",\\\"name\\\":\\\"virgin\\\"},\\\"Ec5Ine8zB\\\":{\\\"pattern\\\":\\\":Ec5Ine8zB\\\",\\\"name\\\":\\\"privada\\\"},\\\"I20YfdFW7\\\":{\\\"pattern\\\":\\\":I20YfdFW7\\\",\\\"name\\\":\\\"mondrian\\\"}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "zoom", "radius", "border", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "VideoFonts", "getFonts", "Video", "ButtonFonts", "htHeLsUT5_default", "ImageWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "css", "FramerrnXKbBPi1", "withCSS", "rnXKbBPi1_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavigationFonts", "getFonts", "jATtDbBTl_default", "HeaderCasesFonts", "rnXKbBPi1_default", "VideoFonts", "Video", "EmbedFonts", "Embed", "FooterFonts", "CibtiOm6U_default", "breakpoints", "serializationHash", "variantClassNames", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "jATtDbBTl_default", "rnXKbBPi1_default", "SVG", "RichText", "x", "getLoadingLazyAtYPosition", "Image2", "Video", "Embed", "CibtiOm6U_default", "css", "FramerWWOhmVFYv", "withCSS", "WWOhmVFYv_default", "addFonts", "NavigationFonts", "HeaderCasesFonts", "VideoFonts", "EmbedFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
