{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/1CP8XbaPHiQ0hkYi8Psj/QqYja8l4E3neY2eBCKlh/hwdIQZFk0.js", "ssg:https://framerusercontent.com/modules/johHQlkT78f6v8tjG6Vx/UpUwOd5Kf1SsreOmPyHu/augiA20Il.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,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,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\";}}});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,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},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(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_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===null||iframeWindow===void 0?void 0:iframeWindow.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                min-height: 100vh;\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\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (9f55354)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/rEUpaFsIdmsx5K1yLvI7/ZnNW0vKVnnGhfVeD3Fz8/eIWt4xath.js\";const cycleOrder=[\"rL8pAqKgC\",\"JB0mcKZbA\"];const serializationHash=\"framer-lBej5\";const variantClassNames={JB0mcKZbA:\"framer-v-1xj7yav\",rL8pAqKgC:\"framer-v-1nkiyev\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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={\"Variant 1\":\"rL8pAqKgC\",\"Variant 2\":\"JB0mcKZbA\"};const getProps=({clicked,height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"rL8pAqKgC\",YpkDsVg5A:clicked??props.YpkDsVg5A};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,YpkDsVg5A,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rL8pAqKgC\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTaphg3flh=activeVariantCallback(async(...args)=>{if(YpkDsVg5A){const res=await YpkDsVg5A(...args);if(res===false)return false;}setVariant(\"JB0mcKZbA\");});const sharedStyleClassNames=[sharedStyle.className];const isDisplayed=()=>{if(baseVariant===\"JB0mcKZbA\")return false;return true;};const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1nkiyev\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"rL8pAqKgC\",ref:ref??ref1,style:{backgroundColor:\"rgb(210, 231, 225)\",...style},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1demia7\",\"data-framer-name\":\"mingcute:celebrate-fill\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"wR07fb6gV\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.07581 7.25993L8.17081 7.34293L16.6568 15.8279C16.768 15.939 16.8515 16.0748 16.9004 16.2242C16.9493 16.3736 16.9623 16.5325 16.9384 16.6878C16.9144 16.8432 16.8542 16.9907 16.7625 17.1185C16.6708 17.2462 16.5503 17.3505 16.4108 17.4229L16.2948 17.4729L5.90981 21.2999C3.95781 22.0199 2.05681 20.1849 2.64981 18.2359L2.69981 18.0899L6.52581 7.70493C6.57639 7.56737 6.6566 7.4426 6.76074 7.33947C6.86489 7.23634 6.99044 7.15736 7.12849 7.10813C7.26655 7.0589 7.41374 7.04062 7.55964 7.05458C7.70555 7.06855 7.8466 7.11441 7.97281 7.18893L8.07581 7.25993ZM17.1068 11.6039C18.0178 11.6519 19.2668 11.8439 20.3528 12.4959C20.573 12.6265 20.7347 12.8364 20.8047 13.0826C20.8747 13.3288 20.8477 13.5925 20.7291 13.8193C20.6106 14.0461 20.4096 14.2189 20.1675 14.302C19.9254 14.3851 19.6607 14.3722 19.4278 14.2659L19.3238 14.2109C18.6418 13.8009 17.7698 13.6409 17.0018 13.6009C16.6854 13.5826 16.3681 13.584 16.0518 13.6049L15.7358 13.6359C15.4749 13.6696 15.2113 13.5991 15.002 13.4398C14.7928 13.2805 14.6547 13.0451 14.6177 12.7847C14.5808 12.5243 14.6479 12.2598 14.8046 12.0485C14.9613 11.8372 15.1949 11.6962 15.4548 11.6559C16.0025 11.5852 16.5557 11.5674 17.1068 11.6029M19.1318 8.81693C19.3866 8.81747 19.6316 8.91524 19.8167 9.09029C20.0019 9.26534 20.1132 9.50446 20.128 9.75883C20.1428 10.0132 20.06 10.2636 19.8964 10.459C19.7328 10.6543 19.5008 10.7798 19.2478 10.8099L19.1318 10.8169H18.4238C18.169 10.8164 17.924 10.7186 17.7389 10.5436C17.5537 10.3685 17.4424 10.1294 17.4276 9.87504C17.4128 9.62068 17.4956 9.37025 17.6592 9.17491C17.8228 8.97956 18.0548 8.85402 18.3078 8.82393L18.4238 8.81693H19.1318ZM15.9498 8.04993C16.122 8.22213 16.2254 8.45123 16.2407 8.69425C16.256 8.93728 16.1821 9.17753 16.0328 9.36993L15.9498 9.46393L14.8888 10.5249C14.7089 10.7043 14.4674 10.8084 14.2134 10.8162C13.9595 10.8239 13.7121 10.7347 13.5215 10.5667C13.331 10.3987 13.2115 10.1644 13.1874 9.91146C13.1633 9.65854 13.2364 9.40593 13.3918 9.20493L13.4748 9.11093L14.5348 8.05093C14.6277 7.95796 14.738 7.8842 14.8594 7.83387C14.9808 7.78355 15.1109 7.75765 15.2423 7.75765C15.3737 7.75765 15.5039 7.78355 15.6253 7.83387C15.7466 7.8842 15.8569 7.95696 15.9498 8.04993ZM13.3628 2.78493C13.8108 4.13093 13.5708 5.60493 13.2908 6.63493C13.1225 7.27708 12.8914 7.90109 12.6008 8.49793C12.4824 8.7353 12.2745 8.91591 12.0229 9.00002C11.7714 9.08413 11.4967 9.06485 11.2593 8.94643C11.0219 8.82801 10.8413 8.62015 10.7572 8.36857C10.6731 8.11699 10.6924 7.8423 10.8108 7.60493C11.0427 7.12549 11.2269 6.62441 11.3608 6.10893C11.5878 5.27693 11.7018 4.37393 11.5268 3.63393L11.4658 3.41793C11.4222 3.29287 11.4039 3.1604 11.412 3.02821C11.42 2.89602 11.4542 2.76674 11.5126 2.64787C11.571 2.52901 11.6524 2.42293 11.7522 2.3358C11.8519 2.24866 11.968 2.1822 12.0936 2.14028C12.2192 2.09836 12.3519 2.08182 12.484 2.0916C12.6161 2.10138 12.7449 2.13731 12.863 2.19728C12.981 2.25725 13.086 2.34008 13.1718 2.44096C13.2576 2.54184 13.3226 2.65876 13.3628 2.78493ZM18.7778 5.22293C18.9653 5.41046 19.0706 5.66477 19.0706 5.92993C19.0706 6.1951 18.9653 6.44941 18.7778 6.63693L18.0708 7.34393C17.9786 7.43944 17.8682 7.51563 17.7462 7.56804C17.6242 7.62044 17.493 7.64803 17.3602 7.64918C17.2274 7.65034 17.0958 7.62504 16.9729 7.57476C16.85 7.52447 16.7383 7.45022 16.6444 7.35633C16.5505 7.26244 16.4763 7.15078 16.426 7.02789C16.3757 6.90499 16.3504 6.77331 16.3516 6.64053C16.3527 6.50775 16.3803 6.37653 16.4327 6.25453C16.4851 6.13253 16.5613 6.02218 16.6568 5.92993L17.3638 5.22293C17.5513 5.03546 17.8056 4.93015 18.0708 4.93015C18.336 4.93015 18.5903 5.03546 18.7778 5.22293Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d86dcff7-07a6-451a-9243-08748dd8b303, rgb(18, 41, 67)))\"},children:\"The hotel was awarded the 2024 TripAdvisor Travelers' Choice Award! \"})}),className:\"framer-1lsqwlw\",\"data-framer-name\":\"We are excited to announce that our hotel has been awarded the 2024 TripAdvisor Travelers' Choice Award!\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UlBj2cwAv\",style:{\"--extracted-r6o4lv\":\"var(--token-d86dcff7-07a6-451a-9243-08748dd8b303, rgb(18, 41, 67))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3f7iod\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"hwox4McBL\",onTap:onTaphg3flh,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gnylta\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,layoutDependency:layoutDependency,layoutId:\"BdleWM9w7\",svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14 1.41L12.59 0L7 5.59L1.41 0L0 1.41L5.59 7L0 12.59L1.41 14L7 8.41L12.59 14L14 12.59L8.41 7L14 1.41Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lBej5.framer-fiv414, .framer-lBej5 .framer-fiv414 { display: block; }\",\".framer-lBej5.framer-1nkiyev { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 1440px; }\",\".framer-lBej5 .framer-1demia7 { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-lBej5 .framer-1lsqwlw { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-lBej5 .framer-3f7iod { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-lBej5 .framer-1gnylta { flex: none; height: 14px; position: relative; width: 14px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lBej5.framer-1nkiyev, .framer-lBej5 .framer-3f7iod { gap: 0px; } .framer-lBej5.framer-1nkiyev > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-lBej5.framer-1nkiyev > :first-child, .framer-lBej5 .framer-3f7iod > :first-child { margin-left: 0px; } .framer-lBej5.framer-1nkiyev > :last-child, .framer-lBej5 .framer-3f7iod > :last-child { margin-right: 0px; } .framer-lBej5 .framer-3f7iod > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 68\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"JB0mcKZbA\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"YpkDsVg5A\":\"clicked\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerhwdIQZFk0=withCSS(Component,css,\"framer-lBej5\");export default FramerhwdIQZFk0;FramerhwdIQZFk0.displayName=\"Announcement\";FramerhwdIQZFk0.defaultProps={height:68,width:1440};addPropertyControls(FramerhwdIQZFk0,{variant:{options:[\"rL8pAqKgC\",\"JB0mcKZbA\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},YpkDsVg5A:{title:\"Clicked\",type:ControlType.EventHandler}});addFonts(FramerhwdIQZFk0,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhwdIQZFk0\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JB0mcKZbA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"YpkDsVg5A\\\":\\\"clicked\\\"}\",\"framerIntrinsicHeight\":\"68\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hwdIQZFk0.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/i9GayUyuKzq5AZLIseXV/SlideShow.js\";import CallForAction from\"#framer/local/canvasComponent/bGy22qcKO/bGy22qcKO.js\";import Announcement from\"#framer/local/canvasComponent/hwdIQZFk0/hwdIQZFk0.js\";import CTA from\"#framer/local/canvasComponent/kMT589Uko/kMT589Uko.js\";import Footer4Copy from\"#framer/local/canvasComponent/o2uk6IvIP/o2uk6IvIP.js\";import Navigation from\"#framer/local/canvasComponent/XBEVo4raN/XBEVo4raN.js\";import FAQ1 from\"#framer/local/canvasComponent/XNmlSASIV/XNmlSASIV.js\";import Tours from\"#framer/local/collection/aytQe6X6v/aytQe6X6v.js\";import Attractions from\"#framer/local/collection/dyVLv05pR/dyVLv05pR.js\";import*as sharedStyle4 from\"#framer/local/css/DYgsfd6Pa/DYgsfd6Pa.js\";import*as sharedStyle3 from\"#framer/local/css/eIWt4xath/eIWt4xath.js\";import*as sharedStyle2 from\"#framer/local/css/KUncnPiaU/KUncnPiaU.js\";import*as sharedStyle1 from\"#framer/local/css/o0OzPgrnc/o0OzPgrnc.js\";import*as sharedStyle6 from\"#framer/local/css/qqfSEeimW/qqfSEeimW.js\";import*as sharedStyle7 from\"#framer/local/css/uAbkGPPt5/uAbkGPPt5.js\";import*as sharedStyle from\"#framer/local/css/XuYEKhGZ3/XuYEKhGZ3.js\";import*as sharedStyle5 from\"#framer/local/css/zMpsiMOLk/zMpsiMOLk.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const AnnouncementFonts=getFonts(Announcement);const NavigationFonts=getFonts(Navigation);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const EmbedFonts=getFonts(Embed);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const CTAFonts=getFonts(CTA);const MotionDivWithFX=withFX(motion.div);const CarouselFonts=getFonts(Carousel);const ContainerWithFX=withFX(Container);const RichTextWithFX=withFX(RichText);const SlideshowFonts=getFonts(Slideshow);const CallForActionFonts=getFonts(CallForAction);const FAQ1Fonts=getFonts(FAQ1);const Footer4CopyFonts=getFonts(Footer4Copy);const breakpoints={g7xXBsXjr:\"(max-width: 767px)\",spfnoSSRf:\"(min-width: 768px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-3WX1r\";const variantClassNames={g7xXBsXjr:\"framer-v-14stk3t\",spfnoSSRf:\"framer-v-1uq7w2n\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:60,delay:.6,mass:1,stiffness:300,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:50};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition2={damping:60,delay:.8,mass:1,stiffness:300,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={damping:30,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-50,y:0};const transition4={damping:60,delay:.2,mass:1,stiffness:300,type:\"spring\"};const transition5={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:50,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition6={damping:30,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:100};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition7={damping:60,delay:.4,mass:1,stiffness:300,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"g7xXBsXjr\",Tablet:\"spfnoSSRf\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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,OX3oSjaFxdG3vn7_2S,TN8BN7AU3dG3vn7_2S,zDB3_u3wcdG3vn7_2S,asMKcyjfEdG3vn7_2S,iddG3vn7_2S,OX3oSjaFxUcSg4WmAt,TN8BN7AU3UcSg4WmAt,zDB3_u3wcUcSg4WmAt,asMKcyjfEUcSg4WmAt,idUcSg4WmAt,OX3oSjaFxv6XxeCa0s,TN8BN7AU3v6XxeCa0s,zDB3_u3wcv6XxeCa0s,asMKcyjfEv6XxeCa0s,idv6XxeCa0s,OX3oSjaFxGtK44fqPE,TN8BN7AU3GtK44fqPE,zDB3_u3wcGtK44fqPE,asMKcyjfEGtK44fqPE,idGtK44fqPE,TN8BN7AU3mC3vGJzUx,OX3oSjaFxmC3vGJzUx,zDB3_u3wcmC3vGJzUx,asMKcyjfEmC3vGJzUx,idmC3vGJzUx,TN8BN7AU3tL0P5udiD,OX3oSjaFxtL0P5udiD,zDB3_u3wctL0P5udiD,asMKcyjfEtL0P5udiD,idtL0P5udiD,TN8BN7AU3gQ40Lt39p,OX3oSjaFxgQ40Lt39p,zDB3_u3wcgQ40Lt39p,asMKcyjfEgQ40Lt39p,idgQ40Lt39p,TN8BN7AU3Q26LCxn1q,OX3oSjaFxQ26LCxn1q,zDB3_u3wcQ26LCxn1q,asMKcyjfEQ26LCxn1q,idQ26LCxn1q,evfwf55jxRemXNjaf8,xF5mnrAM5RemXNjaf8,tlT3y9xyYRemXNjaf8,idRemXNjaf8,evfwf55jxRaSHcrzHU,xF5mnrAM5RaSHcrzHU,tlT3y9xyYRaSHcrzHU,idRaSHcrzHU,evfwf55jxYBQ6Wgw3G,xF5mnrAM5YBQ6Wgw3G,tlT3y9xyYYBQ6Wgw3G,idYBQ6Wgw3G,evfwf55jxJhoIeIEw8,xF5mnrAM5JhoIeIEw8,tlT3y9xyYJhoIeIEw8,idJhoIeIEw8,evfwf55jxO_MVn9lWg,xF5mnrAM5O_MVn9lWg,tlT3y9xyYO_MVn9lWg,idO_MVn9lWg,evfwf55jxMfPMNmylO,xF5mnrAM5MfPMNmylO,tlT3y9xyYMfPMNmylO,idMfPMNmylO,evfwf55jxwOsV6Nenk,xF5mnrAM5wOsV6Nenk,tlT3y9xyYwOsV6Nenk,idwOsV6Nenk,evfwf55jxwyVJjAn8F,xF5mnrAM5wyVJjAn8F,tlT3y9xyYwyVJjAn8F,idwyVJjAn8F,xF5mnrAM5RNKtBH9gr,evfwf55jxRNKtBH9gr,tlT3y9xyYRNKtBH9gr,idRNKtBH9gr,xF5mnrAM5x3cxT4VUx,evfwf55jxx3cxT4VUx,tlT3y9xyYx3cxT4VUx,idx3cxT4VUx,xF5mnrAM5yXh3Qcue4,evfwf55jxyXh3Qcue4,tlT3y9xyYyXh3Qcue4,idyXh3Qcue4,xF5mnrAM5dPUocJgfv,evfwf55jxdPUocJgfv,tlT3y9xyYdPUocJgfv,iddPUocJgfv,xF5mnrAM5Jk31TqiSX,evfwf55jxJk31TqiSX,tlT3y9xyYJk31TqiSX,idJk31TqiSX,xF5mnrAM5DolDav_xB,evfwf55jxDolDav_xB,tlT3y9xyYDolDav_xB,idDolDav_xB,xF5mnrAM5LH7p2Ds_Y,evfwf55jxLH7p2Ds_Y,tlT3y9xyYLH7p2Ds_Y,idLH7p2Ds_Y,xF5mnrAM5oLGVdlLcb,evfwf55jxoLGVdlLcb,tlT3y9xyYoLGVdlLcb,idoLGVdlLcb,xF5mnrAM5JlHeiqIsH,evfwf55jxJlHeiqIsH,tlT3y9xyYJlHeiqIsH,idJlHeiqIsH,...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,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"yKFzzvoTd\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"g7xXBsXjr\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"g7xXBsXjr\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-d86dcff7-07a6-451a-9243-08748dd8b303, rgb(18, 41, 67)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yeeyra\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{y:(componentViewport?.y||0)+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vtum0x-container\",nodeId:\"dtWVMb4Ve\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Announcement,{height:\"100%\",id:\"dtWVMb4Ve\",layoutId:\"dtWVMb4Ve\",style:{width:\"100%\"},variant:\"rL8pAqKgC\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{y:(componentViewport?.y||0)+0+0+0+68}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b7wdeo-container\",nodeId:\"NmotqAOZz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{variant:\"UZM0zxA_Z\"},spfnoSSRf:{variant:\"UZM0zxA_Z\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"NmotqAOZz\",layoutId:\"NmotqAOZz\",style:{width:\"100%\"},variant:\"U5w6acaT7\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1oeuad\",\"data-framer-name\":\"Hero Section\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v0faob\",\"data-framer-name\":\"Texts & Logo\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.tripadvisor.com/Hotel_Review-g189970-d17563737-Reviews-Oddsson_Midtown_Hotel-Reykjavik_Capital_Region.html\",motionChild:true,nodeId:\"JuPrfdUBF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation,className:\"framer-hxtcc8 framer-lux5qc\",\"data-framer-appear-id\":\"hxtcc8\",\"data-framer-name\":\"Review\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-c62gx5\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:41,svg:'<svg width=\"41\" height=\"40\" viewBox=\"0 0 41 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.5 40C31.5457 40 40.5 31.0457 40.5 20C40.5 8.9543 31.5457 0 20.5 0C9.4543 0 0.5 8.9543 0.5 20C0.5 31.0457 9.4543 40 20.5 40Z\" fill=\"#34E0A1\"/>\\n<path d=\"M32.8534 16.0982L35.2668 13.4725H29.9148C27.2355 11.6423 23.9997 10.5764 20.5003 10.5764C17.0053 10.5764 13.7785 11.6446 11.1036 13.4725H5.73828L8.15169 16.0982C6.67239 17.4479 5.74501 19.3921 5.74501 21.5508C5.74501 25.6245 9.04784 28.9273 13.1216 28.9273C15.0568 28.9273 16.8199 28.1809 18.1361 26.9608L20.5004 29.5351L22.8646 26.9631C24.1808 28.1832 25.9417 28.9273 27.8769 28.9273C31.9506 28.9273 35.2579 25.6245 35.2579 21.5508C35.2601 19.3899 34.3327 17.4457 32.8534 16.0982ZM13.1238 26.5429C10.3662 26.5429 8.13162 24.3084 8.13162 21.5508C8.13162 18.7932 10.3663 16.5586 13.1238 16.5586C15.8813 16.5586 18.1159 18.7932 18.1159 21.5508C18.1159 24.3084 15.8813 26.5429 13.1238 26.5429ZM20.5025 21.4055C20.5025 18.1206 18.1137 15.3005 14.9606 14.096C16.6657 13.3831 18.5361 12.9876 20.5003 12.9876C22.4645 12.9876 24.3371 13.3831 26.0422 14.096C22.8914 15.3027 20.5025 18.1206 20.5025 21.4055ZM27.8791 26.5429C25.1215 26.5429 22.8869 24.3084 22.8869 21.5508C22.8869 18.7932 25.1215 16.5586 27.8791 16.5586C30.6367 16.5586 32.8713 18.7932 32.8713 21.5508C32.8713 24.3084 30.6366 26.5429 27.8791 26.5429ZM27.8791 18.9317C26.4333 18.9317 25.2623 20.1027 25.2623 21.5485C25.2623 22.9943 26.4333 24.1653 27.8791 24.1653C29.3249 24.1653 30.4959 22.9943 30.4959 21.5485C30.4958 20.1049 29.3249 18.9317 27.8791 18.9317ZM15.7405 21.5508C15.7405 22.9966 14.5696 24.1675 13.1238 24.1675C11.678 24.1675 10.507 22.9966 10.507 21.5508C10.507 20.1049 11.678 18.934 13.1238 18.934C14.5696 18.9317 15.7405 20.1049 15.7405 21.5508Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ljsx84\",\"data-framer-name\":\"Frame 2058360895\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-acbes0\",\"data-framer-name\":\"Stars\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:97,svg:'<svg width=\"97\" height=\"16\" viewBox=\"0 0 97 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_3563_1047)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.10489 1.05398C9.05153 0.938337 8.96617 0.840399 8.85889 0.771753C8.75161 0.703107 8.62692 0.666626 8.49956 0.666626C8.3722 0.666626 8.24751 0.703107 8.14023 0.771753C8.03295 0.840399 7.94759 0.938337 7.89423 1.05398L5.98089 5.20065L1.44689 5.73865C1.32039 5.75358 1.20082 5.80445 1.10233 5.88522C1.00383 5.96599 0.930538 6.07329 0.891121 6.19442C0.851704 6.31554 0.847813 6.44542 0.879909 6.56869C0.912004 6.69196 0.978743 6.80346 1.07223 6.88998L4.42556 9.98998L3.53556 14.47C3.51084 14.5949 3.52239 14.7242 3.56886 14.8427C3.61532 14.9613 3.69475 15.064 3.79775 15.1388C3.90075 15.2136 4.02302 15.2574 4.15011 15.2649C4.27719 15.2725 4.40378 15.2434 4.51489 15.1813L8.49956 12.9506L12.4842 15.1813C12.5954 15.2437 12.7222 15.2729 12.8494 15.2655C12.9767 15.258 13.0992 15.2142 13.2023 15.1393C13.3055 15.0643 13.385 14.9614 13.4314 14.8426C13.4778 14.7239 13.4892 14.5943 13.4642 14.4693L12.5742 9.99065L15.9269 6.88998C16.0204 6.80346 16.0871 6.69196 16.1192 6.56869C16.1513 6.44542 16.1474 6.31554 16.108 6.19442C16.0686 6.07329 15.9953 5.96599 15.8968 5.88522C15.7983 5.80445 15.6787 5.75358 15.5522 5.73865L11.0176 5.19998L9.10489 1.05398Z\" fill=\"#FBBC04\"/>\\n</g>\\n<g clip-path=\"url(#clip1_3563_1047)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.1049 1.05398C29.0515 0.938337 28.9662 0.840399 28.8589 0.771753C28.7516 0.703107 28.6269 0.666626 28.4996 0.666626C28.3722 0.666626 28.2475 0.703107 28.1402 0.771753C28.033 0.840399 27.9476 0.938337 27.8942 1.05398L25.9809 5.20065L21.4469 5.73865C21.3204 5.75358 21.2008 5.80445 21.1023 5.88522C21.0038 5.96599 20.9305 6.07329 20.8911 6.19442C20.8517 6.31554 20.8478 6.44542 20.8799 6.56869C20.912 6.69196 20.9787 6.80346 21.0722 6.88998L24.4256 9.98998L23.5356 14.47C23.5108 14.5949 23.5224 14.7242 23.5689 14.8427C23.6153 14.9613 23.6947 15.064 23.7978 15.1388C23.9008 15.2136 24.023 15.2574 24.1501 15.2649C24.2772 15.2725 24.4038 15.2434 24.5149 15.1813L28.4996 12.9506L32.4842 15.1813C32.5954 15.2437 32.7222 15.2729 32.8494 15.2655C32.9767 15.258 33.0992 15.2142 33.2023 15.1393C33.3055 15.0643 33.385 14.9614 33.4314 14.8426C33.4778 14.7239 33.4892 14.5943 33.4642 14.4693L32.5742 9.99065L35.9269 6.88998C36.0204 6.80346 36.0871 6.69196 36.1192 6.56869C36.1513 6.44542 36.1474 6.31554 36.108 6.19442C36.0686 6.07329 35.9953 5.96599 35.8968 5.88522C35.7983 5.80445 35.6787 5.75358 35.5522 5.73865L31.0176 5.19998L29.1049 1.05398Z\" fill=\"#FBBC04\"/>\\n</g>\\n<g clip-path=\"url(#clip2_3563_1047)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M49.1049 1.05398C49.0515 0.938337 48.9662 0.840399 48.8589 0.771753C48.7516 0.703107 48.6269 0.666626 48.4996 0.666626C48.3722 0.666626 48.2475 0.703107 48.1402 0.771753C48.033 0.840399 47.9476 0.938337 47.8942 1.05398L45.9809 5.20065L41.4469 5.73865C41.3204 5.75358 41.2008 5.80445 41.1023 5.88522C41.0038 5.96599 40.9305 6.07329 40.8911 6.19442C40.8517 6.31554 40.8478 6.44542 40.8799 6.56869C40.912 6.69196 40.9787 6.80346 41.0722 6.88998L44.4256 9.98998L43.5356 14.47C43.5108 14.5949 43.5224 14.7242 43.5689 14.8427C43.6153 14.9613 43.6947 15.064 43.7978 15.1388C43.9008 15.2136 44.023 15.2574 44.1501 15.2649C44.2772 15.2725 44.4038 15.2434 44.5149 15.1813L48.4996 12.9506L52.4842 15.1813C52.5954 15.2437 52.7222 15.2729 52.8494 15.2655C52.9767 15.258 53.0992 15.2142 53.2023 15.1393C53.3055 15.0643 53.385 14.9614 53.4314 14.8426C53.4778 14.7239 53.4892 14.5943 53.4642 14.4693L52.5742 9.99065L55.9269 6.88998C56.0204 6.80346 56.0871 6.69196 56.1192 6.56869C56.1513 6.44542 56.1474 6.31554 56.108 6.19442C56.0686 6.07329 55.9953 5.96599 55.8968 5.88522C55.7983 5.80445 55.6787 5.75358 55.5522 5.73865L51.0176 5.19998L49.1049 1.05398Z\" fill=\"#FBBC04\"/>\\n</g>\\n<g clip-path=\"url(#clip3_3563_1047)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M69.1049 1.05398C69.0515 0.938337 68.9662 0.840399 68.8589 0.771753C68.7516 0.703107 68.6269 0.666626 68.4996 0.666626C68.3722 0.666626 68.2475 0.703107 68.1402 0.771753C68.033 0.840399 67.9476 0.938337 67.8942 1.05398L65.9809 5.20065L61.4469 5.73865C61.3204 5.75358 61.2008 5.80445 61.1023 5.88522C61.0038 5.96599 60.9305 6.07329 60.8911 6.19442C60.8517 6.31554 60.8478 6.44543 60.8799 6.56869C60.912 6.69196 60.9787 6.80346 61.0722 6.88998L64.4256 9.98998L63.5356 14.47C63.5108 14.5949 63.5224 14.7242 63.5689 14.8427C63.6153 14.9613 63.6947 15.064 63.7978 15.1388C63.9008 15.2136 64.023 15.2574 64.1501 15.2649C64.2772 15.2725 64.4038 15.2434 64.5149 15.1813L68.4996 12.9506L72.4842 15.1813C72.5954 15.2437 72.7222 15.2729 72.8494 15.2655C72.9767 15.258 73.0992 15.2142 73.2023 15.1393C73.3055 15.0643 73.385 14.9614 73.4314 14.8426C73.4778 14.7239 73.4892 14.5943 73.4642 14.4693L72.5742 9.99065L75.9269 6.88998C76.0204 6.80346 76.0871 6.69196 76.1192 6.56869C76.1513 6.44543 76.1474 6.31554 76.108 6.19442C76.0686 6.07329 75.9953 5.96599 75.8968 5.88522C75.7983 5.80445 75.6787 5.75358 75.5522 5.73865L71.0176 5.19998L69.1049 1.05398Z\" fill=\"#FBBC04\"/>\\n</g>\\n<g clip-path=\"url(#clip4_3563_1047)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M89.0661 0.960175C88.988 0.820158 88.8761 0.703982 88.7417 0.623237C88.6072 0.542492 88.4548 0.5 88.2997 0.5C88.1446 0.5 87.9923 0.542492 87.8578 0.623237C87.7233 0.703982 87.6115 0.820158 87.5334 0.960175L85.5509 4.51695L81.6986 5.38965C81.5471 5.42405 81.4069 5.49935 81.2919 5.60803C81.1769 5.71672 81.0912 5.855 81.0434 6.00908C80.9955 6.16317 80.9871 6.32767 81.019 6.48621C81.0509 6.64474 81.1221 6.79176 81.2253 6.9126L83.8507 9.98298L83.4534 14.0795C83.4377 14.2409 83.4628 14.4036 83.5262 14.5516C83.5895 14.6996 83.6889 14.8277 83.8145 14.923C83.94 15.0183 84.0873 15.0775 84.2415 15.0948C84.3958 15.112 84.5517 15.0866 84.6937 15.0212L88.2997 13.3603L91.9058 15.0212C92.0477 15.0866 92.2036 15.112 92.3579 15.0948C92.5122 15.0775 92.6595 15.0183 92.785 14.923C92.9105 14.8277 93.0099 14.6996 93.0733 14.5516C93.1367 14.4036 93.1618 14.2409 93.1461 14.0795L92.7487 9.98298L95.3741 6.91335C95.4776 6.79251 95.5489 6.64543 95.5809 6.4868C95.6129 6.32817 95.6046 6.16353 95.5567 6.00933C95.5088 5.85512 95.423 5.71674 95.3079 5.60801C95.1928 5.49927 95.0525 5.42398 94.9009 5.38965L91.0493 4.51769L89.0661 0.960175ZM88.2997 11.8263C88.4218 11.8263 88.5438 11.8522 88.6574 11.9048L91.6418 13.2795L91.3133 9.88882C91.3009 9.76073 91.3142 9.63135 91.3523 9.50892C91.3904 9.3865 91.4525 9.27372 91.5347 9.17776L93.7074 6.63678L90.52 5.91534C90.3996 5.88819 90.2859 5.83514 90.1862 5.75957C90.0866 5.684 90.003 5.58756 89.941 5.4764L88.2997 2.53133V11.8263Z\" fill=\"#FBBC04\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_3563_1047\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(0.5)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_3563_1047\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(20.5)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_3563_1047\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(40.5)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_3563_1047\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(60.5)\"/>\\n</clipPath>\\n<clipPath id=\"clip4_3563_1047\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(80.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0xvdGEgR3JvdGVzcXVlIEFsdCAzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Lota Grotesque Alt 3 Regular\", \"Lota Grotesque Alt 3 Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(75, 75, 77)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(9, 11, 15)\"},children:\"4.5 \"}),\"(208 reviews)\"]})}),className:\"framer-y41koj\",\"data-framer-name\":\"Reviews\",fonts:[\"CUSTOM;Lota Grotesque Alt 3 Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n63u06\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1bny5vv\",\"data-styles-preset\":\"XuYEKhGZ3\",children:\"Relax, explore \"}),/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1bny5vv\",\"data-styles-preset\":\"XuYEKhGZ3\",children:\"& enjoy yourself\"})]}),className:\"framer-16qt63k\",\"data-framer-appear-id\":\"16qt63k\",\"data-framer-name\":\"Quality Stays, Friendly Rates\",fonts:[\"Inter\"],initial:animation3,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sw06yb\",\"data-styles-preset\":\"o0OzPgrnc\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(210, 231, 225)\"},children:\"Welcome to our modern self check-in hotel, where your comfort is our priority. \"})}),className:\"framer-ri3ybr\",\"data-framer-appear-id\":\"ri3ybr\",\"data-framer-name\":\"Discover modern comfort in our stylish rooms, catering to solo travelers and groups. Book with us for the lowest price possible.\",fonts:[\"Inter\"],initial:animation3,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1jxnjkt\",\"data-framer-appear-id\":\"1jxnjkt\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-elrwks\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ddldgn-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"L3neIv2ZS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{html:'<div class=\"be-panel\"></div>'}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div class=\"be-panel\"></div>\\n',id:\"L3neIv2ZS\",layoutId:\"L3neIv2ZS\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:676,intrinsicWidth:1728,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+156+60+520+200+0),pixelHeight:5114,pixelWidth:7667,positionX:\"left\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/nwh55czAVeZPgaelqeRyprU0.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/nwh55czAVeZPgaelqeRyprU0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nwh55czAVeZPgaelqeRyprU0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nwh55czAVeZPgaelqeRyprU0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/nwh55czAVeZPgaelqeRyprU0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/nwh55czAVeZPgaelqeRyprU0.jpg 7667w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:676,intrinsicWidth:1728,pixelHeight:5114,pixelWidth:7667,positionX:\"left\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/nwh55czAVeZPgaelqeRyprU0.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/nwh55czAVeZPgaelqeRyprU0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nwh55czAVeZPgaelqeRyprU0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nwh55czAVeZPgaelqeRyprU0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/nwh55czAVeZPgaelqeRyprU0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/nwh55czAVeZPgaelqeRyprU0.jpg 7667w\"},className:\"framer-ki262w\",\"data-framer-name\":\"ARI_3445c1\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7otupm\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eg7dis\",\"data-framer-name\":\"Features\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-125uutl\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ixcpzj\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17tf6e6\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18x83qd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-9w631r\",\"data-styles-preset\":\"KUncnPiaU\",style:{\"--framer-text-alignment\":\"left\"},children:\"Unwind and relax\"})}),className:\"framer-l47ly5\",\"data-framer-name\":\"Unwind and relax\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sw06yb\",\"data-styles-preset\":\"o0OzPgrnc\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Your comfort is our priority at ODDSSON Midtown, where our hospitality sets us apart.\"})}),className:\"framer-13umr6y\",\"data-framer-name\":\"Your comfort is our priority at Oddsson, where our hospitality sets us apart.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rl993t\",\"data-framer-name\":\"Frame 2058361198\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xflm9m\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-530q0r\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:22,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1494+0+0+60+0+0+0+0+0+238.8+24+0+79+0),pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ZOd0YstQiaPuZ12DCrqWxxaLZ8w.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:22,pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ZOd0YstQiaPuZ12DCrqWxxaLZ8w.png\"},className:\"framer-15lu7h3\",\"data-framer-name\":\"\\xf4_\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dCQ048uZ0\"},motionChild:true,nodeId:\"AXPZpW399\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1c908z5\",\"data-styles-preset\":\"DYgsfd6Pa\",children:\"Self check-in\"})})})}),className:\"framer-1emdg5q\",\"data-framer-name\":\"Self Check-In\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w5e94o\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-i8er01\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:22,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1494+0+0+60+0+0+0+0+0+238.8+24+188+79+0),pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ZOd0YstQiaPuZ12DCrqWxxaLZ8w.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:22,pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ZOd0YstQiaPuZ12DCrqWxxaLZ8w.png\"},className:\"framer-15nyc5y\",\"data-framer-name\":\"\\xf4_\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Complimentary breakfast served daily\"})}),className:\"framer-13fmkwv\",\"data-framer-name\":\"Wheelchair Accessible\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zkxapu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:22,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1494+0+0+60+0+0+0+0+0+238.8+24+376+7),pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ZOd0YstQiaPuZ12DCrqWxxaLZ8w.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:22,pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ZOd0YstQiaPuZ12DCrqWxxaLZ8w.png\"},className:\"framer-1ua0ehc\",\"data-framer-name\":\"\\xf4_\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Free Parking\"})}),className:\"framer-vfmu0y\",\"data-framer-name\":\"Free Parking\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xg6qjm\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:22,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1494+0+0+60+0+0+0+0+0+238.8+24+420+7),pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ZOd0YstQiaPuZ12DCrqWxxaLZ8w.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:22,pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ZOd0YstQiaPuZ12DCrqWxxaLZ8w.png\"},className:\"framer-j7ayl1\",\"data-framer-name\":\"\\xf4_\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:[\"Located in \",/*#__PURE__*/_jsx(Link,{href:\"https://maps.app.goo.gl/C43pCYe1mRcCoZ1cA\",motionChild:true,nodeId:\"bvIj0Zg3m\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-57rakp\",\"data-styles-preset\":\"zMpsiMOLk\",children:\"Midtown\"})}),\" Reykjavik\"]})}),className:\"framer-e26r7p\",\"data-framer-name\":\"Located in Midtown\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ClyO0T3kR\"},motionChild:true,nodeId:\"HN39ZtxnQ\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1jvvo7v framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{y:(componentViewport?.y||0)+0+1494+0+0+60+0+0+0+0+0+737.8+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dk52wh-container\",nodeId:\"Dv0MQdNCl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"Dv0MQdNCl\",layoutId:\"Dv0MQdNCl\",QLObYAzMj:\"rgb(210, 231, 225)\",rBpKIvlnR:\"rgb(0, 0, 0)\",tbWZRcYA7:\"Read more\",variant:\"wCdE55hSh\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1p5mqbk\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-12num2s\",\"data-framer-name\":\"Group 2058361201\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1494+0+0+60+0+0+0+811.8+0+0+0+0),pixelHeight:2160,pixelWidth:2160,positionX:\"left\",positionY:\"bottom\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1240px) - 40px)`,src:\"https://framerusercontent.com/images/q8PMbjW0hYpcsLrJsmC6YVg8.png\",srcSet:\"https://framerusercontent.com/images/q8PMbjW0hYpcsLrJsmC6YVg8.png?scale-down-to=512 512w,https://framerusercontent.com/images/q8PMbjW0hYpcsLrJsmC6YVg8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/q8PMbjW0hYpcsLrJsmC6YVg8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/q8PMbjW0hYpcsLrJsmC6YVg8.png 2160w\"}},spfnoSSRf:{background:{alt:\"\",fit:\"fill\",pixelHeight:2160,pixelWidth:2160,positionX:\"left\",positionY:\"bottom\",sizes:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1240px) - 100px, 1px)`,src:\"https://framerusercontent.com/images/q8PMbjW0hYpcsLrJsmC6YVg8.png\",srcSet:\"https://framerusercontent.com/images/q8PMbjW0hYpcsLrJsmC6YVg8.png?scale-down-to=512 512w,https://framerusercontent.com/images/q8PMbjW0hYpcsLrJsmC6YVg8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/q8PMbjW0hYpcsLrJsmC6YVg8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/q8PMbjW0hYpcsLrJsmC6YVg8.png 2160w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2160,pixelWidth:2160,positionX:\"left\",positionY:\"bottom\",sizes:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1240px) - 48px, 1px)`,src:\"https://framerusercontent.com/images/q8PMbjW0hYpcsLrJsmC6YVg8.png\",srcSet:\"https://framerusercontent.com/images/q8PMbjW0hYpcsLrJsmC6YVg8.png?scale-down-to=512 512w,https://framerusercontent.com/images/q8PMbjW0hYpcsLrJsmC6YVg8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/q8PMbjW0hYpcsLrJsmC6YVg8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/q8PMbjW0hYpcsLrJsmC6YVg8.png 2160w\"},className:\"framer-1gtn9c9\",\"data-framer-name\":\"0-2 1\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x7qzgy\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yr7cdb\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:760,intrinsicWidth:760,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1494+0+0+60+0+1631.8+0+532.8+0),pixelHeight:4585,pixelWidth:6874,positionX:\"center\",positionY:\"center\",sizes:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1240px) - 40px, 1px)`,src:\"https://framerusercontent.com/images/sjUeyHwnTBPH9jCtIMBtjZlV7I8.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sjUeyHwnTBPH9jCtIMBtjZlV7I8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sjUeyHwnTBPH9jCtIMBtjZlV7I8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sjUeyHwnTBPH9jCtIMBtjZlV7I8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sjUeyHwnTBPH9jCtIMBtjZlV7I8.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/sjUeyHwnTBPH9jCtIMBtjZlV7I8.jpg 6874w\"}},spfnoSSRf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:760,intrinsicWidth:760,pixelHeight:4585,pixelWidth:6874,positionX:\"center\",positionY:\"center\",sizes:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1240px) - 100px, 1px)`,src:\"https://framerusercontent.com/images/sjUeyHwnTBPH9jCtIMBtjZlV7I8.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sjUeyHwnTBPH9jCtIMBtjZlV7I8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sjUeyHwnTBPH9jCtIMBtjZlV7I8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sjUeyHwnTBPH9jCtIMBtjZlV7I8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sjUeyHwnTBPH9jCtIMBtjZlV7I8.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/sjUeyHwnTBPH9jCtIMBtjZlV7I8.jpg 6874w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:760,intrinsicWidth:760,pixelHeight:4585,pixelWidth:6874,positionX:\"center\",positionY:\"center\",sizes:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1240px) - 48px, 1px)`,src:\"https://framerusercontent.com/images/sjUeyHwnTBPH9jCtIMBtjZlV7I8.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sjUeyHwnTBPH9jCtIMBtjZlV7I8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sjUeyHwnTBPH9jCtIMBtjZlV7I8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sjUeyHwnTBPH9jCtIMBtjZlV7I8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sjUeyHwnTBPH9jCtIMBtjZlV7I8.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/sjUeyHwnTBPH9jCtIMBtjZlV7I8.jpg 6874w\"},className:\"framer-ofubm6\",\"data-framer-name\":\"Group_2058361202\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7scaa\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lz01nt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-9w631r\",\"data-styles-preset\":\"KUncnPiaU\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Seamless self \",/*#__PURE__*/_jsx(\"br\",{}),\"check-in\"]})}),className:\"framer-1qy5u1r\",\"data-framer-name\":\"Dine at our in- house Restaurant and bar\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a5t5gd\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xl2mjk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sw06yb\",\"data-styles-preset\":\"o0OzPgrnc\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"We will send your room number and key code 2 days prior to your arrival. You'll need this information to enter the hotel and access your room.\"})}),className:\"framer-a6v22v\",\"data-framer-name\":\"Satisfy diverse appetites with our vegan and omnivore-friendly menu.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sw06yb\",\"data-styles-preset\":\"o0OzPgrnc\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Check in\\xa0starts at 3 pm and check out is before 11 am.\"})}),className:\"framer-1683efs\",\"data-framer-name\":\"Check-in\\xa0is at 3pm and check-out is at 11am\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dCQ048uZ0\"},motionChild:true,nodeId:\"Ddte7I5Wb\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-k7nqqk framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{y:(componentViewport?.y||0)+0+1494+0+0+60+0+1631.8+0+0+0+0+0+94.8+0+356+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,children:/*#__PURE__*/_jsx(Container,{className:\"framer-sjbbk0-container\",nodeId:\"OeqiUrHkN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"OeqiUrHkN\",layoutId:\"OeqiUrHkN\",QLObYAzMj:\"rgb(210, 231, 225)\",rBpKIvlnR:\"rgb(0, 0, 0)\",tbWZRcYA7:\"How to check-in\",variant:\"wCdE55hSh\",width:\"100%\"})})})})})})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vxggbs\",\"data-framer-name\":\"Book Direct & Get the Best Experience\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1601k82\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dmhjal\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nopil9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{spfnoSSRf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-9w631r\",\"data-styles-preset\":\"KUncnPiaU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d86dcff7-07a6-451a-9243-08748dd8b303, rgb(18, 41, 67))\"},children:[\"Book direct & get the \",/*#__PURE__*/_jsx(\"br\",{}),\"best experience\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-9w631r\",\"data-styles-preset\":\"KUncnPiaU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d86dcff7-07a6-451a-9243-08748dd8b303, rgb(18, 41, 67))\"},children:\"Book direct & get the best experience\"})}),className:\"framer-1ii25lj\",\"data-framer-name\":\"Unwind and relax\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sw06yb\",\"data-styles-preset\":\"o0OzPgrnc\",style:{\"--framer-text-color\":\"var(--token-d86dcff7-07a6-451a-9243-08748dd8b303, rgb(18, 41, 67))\"},children:\"Enjoy exclusive perks when you book directly with us\u2014better rates, more flexibility, and added benefits you won\u2019t find anywhere else.\"})}),className:\"framer-52wyu3\",\"data-framer-name\":\"Your comfort is our priority at Oddsson, where our hospitality sets us apart.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rsjubk\",\"data-framer-name\":\"Frame 2058361198\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7wyauh\",\"data-framer-name\":\"Frame 2058361552\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-8llva\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.294 21.556a10.07 10.07 0 0 1-4.04-.82 10.708 10.708 0 0 1-3.332-2.267 10.708 10.708 0 0 1-2.266-3.332 10.069 10.069 0 0 1-.82-4.04c0-1.429.273-2.772.82-4.03a10.762 10.762 0 0 1 2.256-3.343 10.708 10.708 0 0 1 3.332-2.266 10.069 10.069 0 0 1 4.04-.82c1.429 0 2.776.273 4.04.82a10.674 10.674 0 0 1 3.343 2.266c.964.964 1.72 2.078 2.266 3.343a9.996 9.996 0 0 1 .82 4.03 10.07 10.07 0 0 1-.82 4.04 10.707 10.707 0 0 1-2.266 3.332 10.674 10.674 0 0 1-3.343 2.266 9.998 9.998 0 0 1-4.03.82ZM10.146 16.1a.953.953 0 0 0 .482-.123 1.15 1.15 0 0 0 .38-.37l4.819-7.598c.061-.102.12-.212.174-.328a.812.812 0 0 0 .082-.349.672.672 0 0 0-.267-.563.923.923 0 0 0-.594-.216c-.301 0-.547.157-.739.472l-4.378 7.034-2.082-2.687c-.13-.17-.256-.287-.379-.348a.842.842 0 0 0-.4-.092.762.762 0 0 0-.584.256.828.828 0 0 0-.236.595c0 .116.02.232.061.348.048.11.11.216.185.318l2.574 3.158c.136.178.277.305.42.38.144.075.304.113.482.113Z\" fill=\"#122943\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rx9ve5\",\"data-framer-name\":\"Frame 2058361556\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Best rates guaranteed\"})})}),className:\"framer-b7m2ly\",\"data-framer-name\":\"Best Rates Guaranteed\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",children:\"Get the lowest price available, only on our website\"})}),className:\"framer-1ey1bmx\",\"data-framer-name\":\"Get the lowest price available, only on our website\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1de3tue\",\"data-framer-name\":\"Frame 2058361554\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ilhpad\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.294 21.556a10.07 10.07 0 0 1-4.04-.82 10.708 10.708 0 0 1-3.332-2.267 10.708 10.708 0 0 1-2.266-3.332 10.069 10.069 0 0 1-.82-4.04c0-1.429.273-2.772.82-4.03a10.762 10.762 0 0 1 2.256-3.343 10.708 10.708 0 0 1 3.332-2.266 10.069 10.069 0 0 1 4.04-.82c1.429 0 2.776.273 4.04.82a10.674 10.674 0 0 1 3.343 2.266c.964.964 1.72 2.078 2.266 3.343a9.996 9.996 0 0 1 .82 4.03 10.07 10.07 0 0 1-.82 4.04 10.707 10.707 0 0 1-2.266 3.332 10.674 10.674 0 0 1-3.343 2.266 9.998 9.998 0 0 1-4.03.82ZM10.146 16.1a.953.953 0 0 0 .482-.123 1.15 1.15 0 0 0 .38-.37l4.819-7.598c.061-.102.12-.212.174-.328a.812.812 0 0 0 .082-.349.672.672 0 0 0-.267-.563.923.923 0 0 0-.594-.216c-.301 0-.547.157-.739.472l-4.378 7.034-2.082-2.687c-.13-.17-.256-.287-.379-.348a.842.842 0 0 0-.4-.092.762.762 0 0 0-.584.256.828.828 0 0 0-.236.595c0 .116.02.232.061.348.048.11.11.216.185.318l2.574 3.158c.136.178.277.305.42.38.144.075.304.113.482.113Z\" fill=\"#122943\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gkq8no\",\"data-framer-name\":\"Frame 2058361557\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q8686j\",\"data-framer-name\":\"Frame 2058361556\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Price match guarantee\"})})}),className:\"framer-1pl9h0z\",\"data-framer-name\":\"Price Match Guarantee\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",children:\"Found a lower price? We\u2019ll match it.\"})}),className:\"framer-8q8cfa\",\"data-framer-name\":\"Found a lower price? We\u2019ll match it.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y9w5is\",\"data-framer-name\":\"Frame 2058361555\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1653opz\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.294 21.556a10.07 10.07 0 0 1-4.04-.82 10.708 10.708 0 0 1-3.332-2.267 10.708 10.708 0 0 1-2.266-3.332 10.069 10.069 0 0 1-.82-4.04c0-1.429.273-2.772.82-4.03a10.762 10.762 0 0 1 2.256-3.343 10.708 10.708 0 0 1 3.332-2.266 10.069 10.069 0 0 1 4.04-.82c1.429 0 2.776.273 4.04.82a10.674 10.674 0 0 1 3.343 2.266c.964.964 1.72 2.078 2.266 3.343a9.996 9.996 0 0 1 .82 4.03 10.07 10.07 0 0 1-.82 4.04 10.707 10.707 0 0 1-2.266 3.332 10.674 10.674 0 0 1-3.343 2.266 9.998 9.998 0 0 1-4.03.82ZM10.146 16.1a.953.953 0 0 0 .482-.123 1.15 1.15 0 0 0 .38-.37l4.819-7.598c.061-.102.12-.212.174-.328a.812.812 0 0 0 .082-.349.672.672 0 0 0-.267-.563.923.923 0 0 0-.594-.216c-.301 0-.547.157-.739.472l-4.378 7.034-2.082-2.687c-.13-.17-.256-.287-.379-.348a.842.842 0 0 0-.4-.092.762.762 0 0 0-.584.256.828.828 0 0 0-.236.595c0 .116.02.232.061.348.048.11.11.216.185.318l2.574 3.158c.136.178.277.305.42.38.144.075.304.113.482.113Z\" fill=\"#122943\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gwzqr\",\"data-framer-name\":\"Frame 2058361558\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16po0a5\",\"data-framer-name\":\"Frame 2058361556\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"More flexibility\"})})}),className:\"framer-1ijvv70\",\"data-framer-name\":\"More Flexibility\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",children:\"Easier modifications and cancellations when booking direct\"})}),className:\"framer-s0l5xh\",\"data-framer-name\":\"Easier modifications and cancellations when booking direct\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5ebqxz\",\"data-framer-name\":\"Frame 2058361553\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-q0rdfg\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.294 21.556a10.07 10.07 0 0 1-4.04-.82 10.708 10.708 0 0 1-3.332-2.267 10.708 10.708 0 0 1-2.266-3.332 10.069 10.069 0 0 1-.82-4.04c0-1.429.273-2.772.82-4.03a10.762 10.762 0 0 1 2.256-3.343 10.708 10.708 0 0 1 3.332-2.266 10.069 10.069 0 0 1 4.04-.82c1.429 0 2.776.273 4.04.82a10.674 10.674 0 0 1 3.343 2.266c.964.964 1.72 2.078 2.266 3.343a9.996 9.996 0 0 1 .82 4.03 10.07 10.07 0 0 1-.82 4.04 10.707 10.707 0 0 1-2.266 3.332 10.674 10.674 0 0 1-3.343 2.266 9.998 9.998 0 0 1-4.03.82ZM10.146 16.1a.953.953 0 0 0 .482-.123 1.15 1.15 0 0 0 .38-.37l4.819-7.598c.061-.102.12-.212.174-.328a.812.812 0 0 0 .082-.349.672.672 0 0 0-.267-.563.923.923 0 0 0-.594-.216c-.301 0-.547.157-.739.472l-4.378 7.034-2.082-2.687c-.13-.17-.256-.287-.379-.348a.842.842 0 0 0-.4-.092.762.762 0 0 0-.584.256.828.828 0 0 0-.236.595c0 .116.02.232.061.348.048.11.11.216.185.318l2.574 3.158c.136.178.277.305.42.38.144.075.304.113.482.113Z\" fill=\"#122943\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ynnml7\",\"data-framer-name\":\"Frame 2058361559\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8cy0xb\",\"data-framer-name\":\"Frame 2058361556\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Complimentary Welcome drink\"})})}),className:\"framer-q0ncot\",\"data-framer-name\":\"Complimentary Welcome Drink\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",children:\"A little extra to start your stay right.\"})}),className:\"framer-16xnt63\",\"data-framer-name\":\"A little extra to start your stay right.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dsfHmrN0Y\"},motionChild:true,nodeId:\"BLMyd8ME4\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1hlsu2p framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{y:(componentViewport?.y||0)+0+1494+0+0+60+0+2984.6+120+0+0+0+0+1757.8+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vqumrm-container\",nodeId:\"ZIeAbVbzg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"ZIeAbVbzg\",layoutId:\"ZIeAbVbzg\",QLObYAzMj:\"rgb(210, 231, 225)\",rBpKIvlnR:\"rgb(0, 0, 0)\",tbWZRcYA7:\"How to check-in\",variant:\"wCdE55hSh\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8owkj0\",\"data-framer-name\":\"Container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ao13u0\",\"data-framer-name\":\"Group 2058361201\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1494+0+0+60+0+2984.6+120+0+0+1859.8+0+0+0+0),pixelHeight:2160,pixelWidth:1994,positionX:\"left\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px) - 40px, 1240px)`,src:\"https://framerusercontent.com/images/Z3OiuA9nTtNBVWJLZCFwR8lRE.png\",srcSet:\"https://framerusercontent.com/images/Z3OiuA9nTtNBVWJLZCFwR8lRE.png?scale-down-to=1024 945w,https://framerusercontent.com/images/Z3OiuA9nTtNBVWJLZCFwR8lRE.png?scale-down-to=2048 1890w,https://framerusercontent.com/images/Z3OiuA9nTtNBVWJLZCFwR8lRE.png 1994w\"}},spfnoSSRf:{background:{alt:\"\",fit:\"fill\",pixelHeight:2160,pixelWidth:1994,positionX:\"left\",positionY:\"center\",sizes:`calc(max(min(max(${componentViewport?.width||\"100vw\"}, 1px) - 100px, 1240px), 1px) / 2)`,src:\"https://framerusercontent.com/images/Z3OiuA9nTtNBVWJLZCFwR8lRE.png\",srcSet:\"https://framerusercontent.com/images/Z3OiuA9nTtNBVWJLZCFwR8lRE.png?scale-down-to=1024 945w,https://framerusercontent.com/images/Z3OiuA9nTtNBVWJLZCFwR8lRE.png?scale-down-to=2048 1890w,https://framerusercontent.com/images/Z3OiuA9nTtNBVWJLZCFwR8lRE.png 1994w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2160,pixelWidth:1994,positionX:\"left\",positionY:\"center\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px) - 48px, 1240px) - 60px) / 2, 1px)`,src:\"https://framerusercontent.com/images/Z3OiuA9nTtNBVWJLZCFwR8lRE.png\",srcSet:\"https://framerusercontent.com/images/Z3OiuA9nTtNBVWJLZCFwR8lRE.png?scale-down-to=1024 945w,https://framerusercontent.com/images/Z3OiuA9nTtNBVWJLZCFwR8lRE.png?scale-down-to=2048 1890w,https://framerusercontent.com/images/Z3OiuA9nTtNBVWJLZCFwR8lRE.png 1994w\"},className:\"framer-14y0z5n\",\"data-framer-name\":\"0-2 1\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bfl0gh\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14pgoyl\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:743,intrinsicWidth:760,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1494+0+0+60+0+5904.4+0+689.8+0),pixelHeight:743,pixelWidth:760,sizes:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1240px) - 40px, 1px)`,src:\"https://framerusercontent.com/images/o4N47jx5p7PQr7rwBk5QcHr7fMw.png\",srcSet:\"https://framerusercontent.com/images/o4N47jx5p7PQr7rwBk5QcHr7fMw.png?scale-down-to=512 512w,https://framerusercontent.com/images/o4N47jx5p7PQr7rwBk5QcHr7fMw.png 760w\"}},spfnoSSRf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:743,intrinsicWidth:760,pixelHeight:743,pixelWidth:760,sizes:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1240px) - 100px, 1px)`,src:\"https://framerusercontent.com/images/o4N47jx5p7PQr7rwBk5QcHr7fMw.png\",srcSet:\"https://framerusercontent.com/images/o4N47jx5p7PQr7rwBk5QcHr7fMw.png?scale-down-to=512 512w,https://framerusercontent.com/images/o4N47jx5p7PQr7rwBk5QcHr7fMw.png 760w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:743,intrinsicWidth:760,pixelHeight:743,pixelWidth:760,sizes:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1240px) - 48px, 1px)`,src:\"https://framerusercontent.com/images/o4N47jx5p7PQr7rwBk5QcHr7fMw.png\",srcSet:\"https://framerusercontent.com/images/o4N47jx5p7PQr7rwBk5QcHr7fMw.png?scale-down-to=512 512w,https://framerusercontent.com/images/o4N47jx5p7PQr7rwBk5QcHr7fMw.png 760w\"},className:\"framer-13fj7vv\",\"data-framer-name\":\"Group_2058361202\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bnwaih\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15k5dh1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{spfnoSSRf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-amf3qg\",\"data-styles-preset\":\"qqfSEeimW\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Complimentary \",/*#__PURE__*/_jsx(\"br\",{}),\"breakfast buffet \"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-9w631r\",\"data-styles-preset\":\"KUncnPiaU\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Complimentary \",/*#__PURE__*/_jsx(\"br\",{}),\"breakfast buffet \"]})}),className:\"framer-eldenp\",\"data-framer-name\":\"Dine at our in- house Restaurant and bar\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sw06yb\",\"data-styles-preset\":\"o0OzPgrnc\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Enjoy a complimentary breakfast buffet served daily from 7 am to 10 am on the ground floor.\"})}),className:\"framer-1nfrizl\",\"data-framer-name\":\"Satisfy diverse appetites with our vegan and omnivore-friendly menu.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y42ynp\",\"data-framer-name\":\"Frame 2058361198\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pqanzt\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:22,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1494+0+0+60+0+5904.4+0+0+0+0+0+238.8+24+0+79),pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ZOd0YstQiaPuZ12DCrqWxxaLZ8w.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:22,pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ZOd0YstQiaPuZ12DCrqWxxaLZ8w.png\"},className:\"framer-1o0albj\",\"data-framer-name\":\"\\xf4_\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Make your own waffle station\"})}),className:\"framer-khytwf\",\"data-framer-name\":\"Free breakfast every morning\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e6a4nx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:22,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1494+0+0+60+0+5904.4+0+0+0+0+0+238.8+24+188+79),pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ZOd0YstQiaPuZ12DCrqWxxaLZ8w.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:22,pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ZOd0YstQiaPuZ12DCrqWxxaLZ8w.png\"},className:\"framer-br5sp\",\"data-framer-name\":\"\\xf4_\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Spacious and comfortable seating\"})}),className:\"framer-he0952\",\"data-framer-name\":\"Lunch offers every day\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qgpzbt\",\"data-framer-name\":\"Tours\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10hby4m\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-tvthzy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-9w631r\",\"data-styles-preset\":\"KUncnPiaU\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Plan your adventure \",/*#__PURE__*/_jsx(\"br\",{}),\"in Iceland\"]})})},spfnoSSRf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-9w631r\",\"data-styles-preset\":\"KUncnPiaU\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Plan your adventure \",/*#__PURE__*/_jsx(\"br\",{}),\"in Iceland\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-9w631r\",\"data-styles-preset\":\"KUncnPiaU\",style:{\"--framer-text-alignment\":\"left\"},children:\"Plan your adventure in Iceland\"})}),className:\"framer-u10ls4\",\"data-framer-name\":\"Unwind and relax\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bvb91u\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mh8v23\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2dv5g8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h3wa78\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:22,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1494+0+7457.2+0+0+0+64.8+0+0+20+0+0+10),pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ZOd0YstQiaPuZ12DCrqWxxaLZ8w.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:22,pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ZOd0YstQiaPuZ12DCrqWxxaLZ8w.png\"},className:\"framer-iw0gft\",\"data-framer-name\":\"\\xf4_\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"We will connect you with our trusted tour operators\"})}),className:\"framer-19cj83n\",\"data-framer-name\":\"Self Check-In\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1164qju\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:22,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1494+0+7457.2+0+0+0+64.8+0+0+20+188+79),pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ZOd0YstQiaPuZ12DCrqWxxaLZ8w.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:22,pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ZOd0YstQiaPuZ12DCrqWxxaLZ8w.png\"},className:\"framer-1l08ix4\",\"data-framer-name\":\"\\xf4_\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Direct pickup from ODDSSON Midtown\"})}),className:\"framer-6wdqbo\",\"data-framer-name\":\"Wheelchair Accessible\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"crkPHcDno\"},motionChild:true,nodeId:\"Bxh11NAAi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1brsjcj framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{y:(componentViewport?.y||0)+0+1494+0+7457.2+0+0+0+64.8+0+626+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,children:/*#__PURE__*/_jsx(Container,{className:\"framer-z7719o-container\",nodeId:\"VekzJlM1H\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"VekzJlM1H\",layoutId:\"VekzJlM1H\",QLObYAzMj:\"rgb(210, 231, 225)\",rBpKIvlnR:\"rgb(0, 0, 0)\",tbWZRcYA7:\"View all tours\",variant:\"wCdE55hSh\",width:\"100%\"})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-15y7se4 hidden-72rtr7 hidden-1uq7w2n\",children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gupisw-container hidden-72rtr7\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"H9cnMk_NW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/zmZ01fJuu2ho3SU8aqt0yRZP7c.png\",rightArrow:\"https://framerusercontent.com/images/DYMDrxCfKsSNkGgyUnxxvi3dY4.png\",showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"H9cnMk_NW\",layoutId:\"H9cnMk_NW\",padding:0,paddingBottom:0,paddingLeft:10,paddingPerSide:true,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h22b2o\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"dG3vn7_2S\",data:Tours,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"dG3vn7_2S\",name:\"OX3oSjaFx\",type:\"Identifier\"},{collection:\"dG3vn7_2S\",name:\"TN8BN7AU3\",type:\"Identifier\"},{collection:\"dG3vn7_2S\",name:\"zDB3_u3wc\",type:\"Identifier\"},{collection:\"dG3vn7_2S\",name:\"asMKcyjfE\",type:\"Identifier\"},{collection:\"dG3vn7_2S\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({asMKcyjfE:asMKcyjfEdG3vn7_2S,id:iddG3vn7_2S,OX3oSjaFx:OX3oSjaFxdG3vn7_2S,TN8BN7AU3:TN8BN7AU3dG3vn7_2S,zDB3_u3wc:zDB3_u3wcdG3vn7_2S},index)=>{OX3oSjaFxdG3vn7_2S??=\"\";zDB3_u3wcdG3vn7_2S??=\"\";asMKcyjfEdG3vn7_2S??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`dG3vn7_2S-${iddG3vn7_2S}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{OX3oSjaFx:OX3oSjaFxdG3vn7_2S},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{OX3oSjaFx:OX3oSjaFxdG3vn7_2S},webPageId:\"EaDOOnlw8\"},motionChild:true,nodeId:\"xNgpXWrTV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-46ednx framer-lux5qc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"250px\",...toResponsiveImage(TN8BN7AU3dG3vn7_2S)},className:\"framer-a4e37r\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y4pr7o\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-1c45adw\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:zDB3_u3wcdG3vn7_2S,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aopgm4\",\"data-styles-preset\":\"uAbkGPPt5\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Duration\"})}),className:\"framer-1sgmerv\",\"data-framer-name\":\"Duration\",fonts:[\"Inter\"],text:asMKcyjfEdG3vn7_2S,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},iddG3vn7_2S);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w0ntn7\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"UcSg4WmAt\",data:Tours,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"UcSg4WmAt\",name:\"OX3oSjaFx\",type:\"Identifier\"},{collection:\"UcSg4WmAt\",name:\"TN8BN7AU3\",type:\"Identifier\"},{collection:\"UcSg4WmAt\",name:\"zDB3_u3wc\",type:\"Identifier\"},{collection:\"UcSg4WmAt\",name:\"asMKcyjfE\",type:\"Identifier\"},{collection:\"UcSg4WmAt\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({asMKcyjfE:asMKcyjfEUcSg4WmAt,id:idUcSg4WmAt,OX3oSjaFx:OX3oSjaFxUcSg4WmAt,TN8BN7AU3:TN8BN7AU3UcSg4WmAt,zDB3_u3wc:zDB3_u3wcUcSg4WmAt},index1)=>{OX3oSjaFxUcSg4WmAt??=\"\";zDB3_u3wcUcSg4WmAt??=\"\";asMKcyjfEUcSg4WmAt??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`UcSg4WmAt-${idUcSg4WmAt}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{OX3oSjaFx:OX3oSjaFxUcSg4WmAt},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{OX3oSjaFx:OX3oSjaFxUcSg4WmAt},webPageId:\"EaDOOnlw8\"},motionChild:true,nodeId:\"B9KzzfZNe\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-lv759b framer-lux5qc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"250px\",...toResponsiveImage(TN8BN7AU3UcSg4WmAt)},className:\"framer-dr0fs9\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c4hrw7\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-ylmrop\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:zDB3_u3wcUcSg4WmAt,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aopgm4\",\"data-styles-preset\":\"uAbkGPPt5\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Duration\"})}),className:\"framer-1rdoflh\",\"data-framer-name\":\"Duration\",fonts:[\"Inter\"],text:asMKcyjfEUcSg4WmAt,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idUcSg4WmAt);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1spe2te\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"v6XxeCa0s\",data:Tours,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"v6XxeCa0s\",name:\"OX3oSjaFx\",type:\"Identifier\"},{collection:\"v6XxeCa0s\",name:\"TN8BN7AU3\",type:\"Identifier\"},{collection:\"v6XxeCa0s\",name:\"zDB3_u3wc\",type:\"Identifier\"},{collection:\"v6XxeCa0s\",name:\"asMKcyjfE\",type:\"Identifier\"},{collection:\"v6XxeCa0s\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({asMKcyjfE:asMKcyjfEv6XxeCa0s,id:idv6XxeCa0s,OX3oSjaFx:OX3oSjaFxv6XxeCa0s,TN8BN7AU3:TN8BN7AU3v6XxeCa0s,zDB3_u3wc:zDB3_u3wcv6XxeCa0s},index2)=>{OX3oSjaFxv6XxeCa0s??=\"\";zDB3_u3wcv6XxeCa0s??=\"\";asMKcyjfEv6XxeCa0s??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`v6XxeCa0s-${idv6XxeCa0s}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{OX3oSjaFx:OX3oSjaFxv6XxeCa0s},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{OX3oSjaFx:OX3oSjaFxv6XxeCa0s},webPageId:\"EaDOOnlw8\"},motionChild:true,nodeId:\"M_JzodPD1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-10k93yt framer-lux5qc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"250px\",...toResponsiveImage(TN8BN7AU3v6XxeCa0s)},className:\"framer-1u17xxl\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xmdysd\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-1b1ygml\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:zDB3_u3wcv6XxeCa0s,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aopgm4\",\"data-styles-preset\":\"uAbkGPPt5\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Duration\"})}),className:\"framer-1xh5zj4\",\"data-framer-name\":\"Duration\",fonts:[\"Inter\"],text:asMKcyjfEv6XxeCa0s,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idv6XxeCa0s);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bxj2al\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"GtK44fqPE\",data:Tours,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"GtK44fqPE\",name:\"OX3oSjaFx\",type:\"Identifier\"},{collection:\"GtK44fqPE\",name:\"TN8BN7AU3\",type:\"Identifier\"},{collection:\"GtK44fqPE\",name:\"zDB3_u3wc\",type:\"Identifier\"},{collection:\"GtK44fqPE\",name:\"asMKcyjfE\",type:\"Identifier\"},{collection:\"GtK44fqPE\",name:\"id\",type:\"Identifier\"}]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({asMKcyjfE:asMKcyjfEGtK44fqPE,id:idGtK44fqPE,OX3oSjaFx:OX3oSjaFxGtK44fqPE,TN8BN7AU3:TN8BN7AU3GtK44fqPE,zDB3_u3wc:zDB3_u3wcGtK44fqPE},index3)=>{OX3oSjaFxGtK44fqPE??=\"\";zDB3_u3wcGtK44fqPE??=\"\";asMKcyjfEGtK44fqPE??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`GtK44fqPE-${idGtK44fqPE}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{OX3oSjaFx:OX3oSjaFxGtK44fqPE},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{OX3oSjaFx:OX3oSjaFxGtK44fqPE},webPageId:\"EaDOOnlw8\"},motionChild:true,nodeId:\"TYjDdVEWg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1l5iisl framer-lux5qc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"250px\",...toResponsiveImage(TN8BN7AU3GtK44fqPE)},className:\"framer-10jwtqx\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hdzt1q\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-11k61tb\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:zDB3_u3wcGtK44fqPE,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aopgm4\",\"data-styles-preset\":\"uAbkGPPt5\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Duration\"})}),className:\"framer-1fln1qi\",\"data-framer-name\":\"Duration\",fonts:[\"Inter\"],text:asMKcyjfEGtK44fqPE,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idGtK44fqPE);})})})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cp4efn-container hidden-14stk3t\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Rfog8oikM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/zmZ01fJuu2ho3SU8aqt0yRZP7c.png\",rightArrow:\"https://framerusercontent.com/images/q1khMwuwyZmbIK4xCoqrCHzY.png\",showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:32,height:\"100%\",id:\"Rfog8oikM\",layoutId:\"Rfog8oikM\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17kxtx\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"mC3vGJzUx\",data:Tours,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"mC3vGJzUx\",name:\"TN8BN7AU3\",type:\"Identifier\"},{collection:\"mC3vGJzUx\",name:\"OX3oSjaFx\",type:\"Identifier\"},{collection:\"mC3vGJzUx\",name:\"zDB3_u3wc\",type:\"Identifier\"},{collection:\"mC3vGJzUx\",name:\"asMKcyjfE\",type:\"Identifier\"},{collection:\"mC3vGJzUx\",name:\"id\",type:\"Identifier\"}]},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({asMKcyjfE:asMKcyjfEmC3vGJzUx,id:idmC3vGJzUx,OX3oSjaFx:OX3oSjaFxmC3vGJzUx,TN8BN7AU3:TN8BN7AU3mC3vGJzUx,zDB3_u3wc:zDB3_u3wcmC3vGJzUx},index4)=>{OX3oSjaFxmC3vGJzUx??=\"\";zDB3_u3wcmC3vGJzUx??=\"\";asMKcyjfEmC3vGJzUx??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`mC3vGJzUx-${idmC3vGJzUx}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{OX3oSjaFx:OX3oSjaFxmC3vGJzUx},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18lbm5w\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"430px\",...toResponsiveImage(TN8BN7AU3mC3vGJzUx)},className:\"framer-87amvk\"}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{OX3oSjaFx:OX3oSjaFxmC3vGJzUx},webPageId:\"EaDOOnlw8\"},motionChild:true,nodeId:\"PBVEnkugP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-avn3bd framer-lux5qc\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-ypxlbi\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:zDB3_u3wcmC3vGJzUx,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aopgm4\",\"data-styles-preset\":\"uAbkGPPt5\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"1 to 10 Hours \"})}),className:\"framer-1hppv7g\",\"data-framer-name\":\"Duration\",fonts:[\"Inter\"],text:asMKcyjfEmC3vGJzUx,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})},idmC3vGJzUx);})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yu5nef\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"tL0P5udiD\",data:Tours,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"tL0P5udiD\",name:\"TN8BN7AU3\",type:\"Identifier\"},{collection:\"tL0P5udiD\",name:\"OX3oSjaFx\",type:\"Identifier\"},{collection:\"tL0P5udiD\",name:\"zDB3_u3wc\",type:\"Identifier\"},{collection:\"tL0P5udiD\",name:\"asMKcyjfE\",type:\"Identifier\"},{collection:\"tL0P5udiD\",name:\"id\",type:\"Identifier\"}]},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({asMKcyjfE:asMKcyjfEtL0P5udiD,id:idtL0P5udiD,OX3oSjaFx:OX3oSjaFxtL0P5udiD,TN8BN7AU3:TN8BN7AU3tL0P5udiD,zDB3_u3wc:zDB3_u3wctL0P5udiD},index5)=>{OX3oSjaFxtL0P5udiD??=\"\";zDB3_u3wctL0P5udiD??=\"\";asMKcyjfEtL0P5udiD??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`tL0P5udiD-${idtL0P5udiD}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{OX3oSjaFx:OX3oSjaFxtL0P5udiD},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9m2fg7\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"430px\",...toResponsiveImage(TN8BN7AU3tL0P5udiD)},className:\"framer-u8u8bn\"}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{OX3oSjaFx:OX3oSjaFxtL0P5udiD},webPageId:\"EaDOOnlw8\"},motionChild:true,nodeId:\"JLPI2UdJT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-4m51v framer-lux5qc\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-l5i5fd\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:zDB3_u3wctL0P5udiD,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aopgm4\",\"data-styles-preset\":\"uAbkGPPt5\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"10 to 12 Hours \"})}),className:\"framer-12865rp\",\"data-framer-name\":\"Duration\",fonts:[\"Inter\"],text:asMKcyjfEtL0P5udiD,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})},idtL0P5udiD);})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1v4khq4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"gQ40Lt39p\",data:Tours,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"gQ40Lt39p\",name:\"TN8BN7AU3\",type:\"Identifier\"},{collection:\"gQ40Lt39p\",name:\"OX3oSjaFx\",type:\"Identifier\"},{collection:\"gQ40Lt39p\",name:\"zDB3_u3wc\",type:\"Identifier\"},{collection:\"gQ40Lt39p\",name:\"asMKcyjfE\",type:\"Identifier\"},{collection:\"gQ40Lt39p\",name:\"id\",type:\"Identifier\"}]},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6?.map(({asMKcyjfE:asMKcyjfEgQ40Lt39p,id:idgQ40Lt39p,OX3oSjaFx:OX3oSjaFxgQ40Lt39p,TN8BN7AU3:TN8BN7AU3gQ40Lt39p,zDB3_u3wc:zDB3_u3wcgQ40Lt39p},index6)=>{OX3oSjaFxgQ40Lt39p??=\"\";zDB3_u3wcgQ40Lt39p??=\"\";asMKcyjfEgQ40Lt39p??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`gQ40Lt39p-${idgQ40Lt39p}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{OX3oSjaFx:OX3oSjaFxgQ40Lt39p},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-115fd3h\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"430px\",...toResponsiveImage(TN8BN7AU3gQ40Lt39p)},className:\"framer-kal3om\"}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{OX3oSjaFx:OX3oSjaFxgQ40Lt39p},webPageId:\"EaDOOnlw8\"},motionChild:true,nodeId:\"z9_UvBeuo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-178y9eq framer-lux5qc\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-yn6uos\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:zDB3_u3wcgQ40Lt39p,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aopgm4\",\"data-styles-preset\":\"uAbkGPPt5\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"1 to 5 hours\"})}),className:\"framer-9aayhd\",\"data-framer-name\":\"Duration\",fonts:[\"Inter\"],text:asMKcyjfEgQ40Lt39p,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})},idgQ40Lt39p);})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8le5px\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Q26LCxn1q\",data:Tours,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"Q26LCxn1q\",name:\"TN8BN7AU3\",type:\"Identifier\"},{collection:\"Q26LCxn1q\",name:\"OX3oSjaFx\",type:\"Identifier\"},{collection:\"Q26LCxn1q\",name:\"zDB3_u3wc\",type:\"Identifier\"},{collection:\"Q26LCxn1q\",name:\"asMKcyjfE\",type:\"Identifier\"},{collection:\"Q26LCxn1q\",name:\"id\",type:\"Identifier\"}]},children:(collection7,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7?.map(({asMKcyjfE:asMKcyjfEQ26LCxn1q,id:idQ26LCxn1q,OX3oSjaFx:OX3oSjaFxQ26LCxn1q,TN8BN7AU3:TN8BN7AU3Q26LCxn1q,zDB3_u3wc:zDB3_u3wcQ26LCxn1q},index7)=>{OX3oSjaFxQ26LCxn1q??=\"\";zDB3_u3wcQ26LCxn1q??=\"\";asMKcyjfEQ26LCxn1q??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Q26LCxn1q-${idQ26LCxn1q}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{OX3oSjaFx:OX3oSjaFxQ26LCxn1q},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17ks2gx\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"430px\",...toResponsiveImage(TN8BN7AU3Q26LCxn1q)},className:\"framer-172xfdl\"}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{OX3oSjaFx:OX3oSjaFxQ26LCxn1q},webPageId:\"EaDOOnlw8\"},motionChild:true,nodeId:\"uxUBXtjRu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1flx31 framer-lux5qc\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-xgd1qi\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:zDB3_u3wcQ26LCxn1q,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aopgm4\",\"data-styles-preset\":\"uAbkGPPt5\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"7 to 11 hours\"})}),className:\"framer-64vw0x\",\"data-framer-name\":\"Duration\",fonts:[\"Inter\"],text:asMKcyjfEQ26LCxn1q,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})},idQ26LCxn1q);})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tnyby4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"RemXNjaf8\",data:Attractions,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"RemXNjaf8\",name:\"evfwf55jx\",type:\"Identifier\"},{collection:\"RemXNjaf8\",name:\"xF5mnrAM5\",type:\"Identifier\"},{collection:\"RemXNjaf8\",name:\"tlT3y9xyY\",type:\"Identifier\"},{collection:\"RemXNjaf8\",name:\"id\",type:\"Identifier\"}]},children:(collection8,paginationInfo8,loadMore8)=>/*#__PURE__*/_jsx(_Fragment,{children:collection8?.map(({evfwf55jx:evfwf55jxRemXNjaf8,id:idRemXNjaf8,tlT3y9xyY:tlT3y9xyYRemXNjaf8,xF5mnrAM5:xF5mnrAM5RemXNjaf8},index8)=>{xF5mnrAM5RemXNjaf8??=\"\";tlT3y9xyYRemXNjaf8??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`RemXNjaf8-${idRemXNjaf8}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xF5mnrAM5:xF5mnrAM5RemXNjaf8},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12z2ksm\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"430px\",...toResponsiveImage(evfwf55jxRemXNjaf8)},className:\"framer-1jtiyd4\"}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{xF5mnrAM5:xF5mnrAM5RemXNjaf8},webPageId:\"XogElZsfv\"},motionChild:true,nodeId:\"Khi82p9K7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-gxxm7s framer-lux5qc\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-1x3aewk\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:tlT3y9xyYRemXNjaf8,verticalAlignment:\"top\",withExternalLayout:true})})})]})})},idRemXNjaf8);})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cj9e3t\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"RaSHcrzHU\",data:Attractions,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:6},select:[{collection:\"RaSHcrzHU\",name:\"evfwf55jx\",type:\"Identifier\"},{collection:\"RaSHcrzHU\",name:\"xF5mnrAM5\",type:\"Identifier\"},{collection:\"RaSHcrzHU\",name:\"tlT3y9xyY\",type:\"Identifier\"},{collection:\"RaSHcrzHU\",name:\"id\",type:\"Identifier\"}]},children:(collection9,paginationInfo9,loadMore9)=>/*#__PURE__*/_jsx(_Fragment,{children:collection9?.map(({evfwf55jx:evfwf55jxRaSHcrzHU,id:idRaSHcrzHU,tlT3y9xyY:tlT3y9xyYRaSHcrzHU,xF5mnrAM5:xF5mnrAM5RaSHcrzHU},index9)=>{xF5mnrAM5RaSHcrzHU??=\"\";tlT3y9xyYRaSHcrzHU??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`RaSHcrzHU-${idRaSHcrzHU}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xF5mnrAM5:xF5mnrAM5RaSHcrzHU},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-eti07m\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"430px\",...toResponsiveImage(evfwf55jxRaSHcrzHU)},className:\"framer-bbvzl6\"}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{xF5mnrAM5:xF5mnrAM5RaSHcrzHU},webPageId:\"XogElZsfv\"},motionChild:true,nodeId:\"S82RWT1hj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1bvt9a5 framer-lux5qc\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-16vremt\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:tlT3y9xyYRaSHcrzHU,verticalAlignment:\"top\",withExternalLayout:true})})})]})})},idRaSHcrzHU);})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dhaw1q\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"YBQ6Wgw3G\",data:Attractions,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:7},select:[{collection:\"YBQ6Wgw3G\",name:\"evfwf55jx\",type:\"Identifier\"},{collection:\"YBQ6Wgw3G\",name:\"xF5mnrAM5\",type:\"Identifier\"},{collection:\"YBQ6Wgw3G\",name:\"tlT3y9xyY\",type:\"Identifier\"},{collection:\"YBQ6Wgw3G\",name:\"id\",type:\"Identifier\"}]},children:(collection10,paginationInfo10,loadMore10)=>/*#__PURE__*/_jsx(_Fragment,{children:collection10?.map(({evfwf55jx:evfwf55jxYBQ6Wgw3G,id:idYBQ6Wgw3G,tlT3y9xyY:tlT3y9xyYYBQ6Wgw3G,xF5mnrAM5:xF5mnrAM5YBQ6Wgw3G},index10)=>{xF5mnrAM5YBQ6Wgw3G??=\"\";tlT3y9xyYYBQ6Wgw3G??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`YBQ6Wgw3G-${idYBQ6Wgw3G}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xF5mnrAM5:xF5mnrAM5YBQ6Wgw3G},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9xjfiq\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"430px\",...toResponsiveImage(evfwf55jxYBQ6Wgw3G)},className:\"framer-1k9g4wv\"}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{xF5mnrAM5:xF5mnrAM5YBQ6Wgw3G},webPageId:\"XogElZsfv\"},motionChild:true,nodeId:\"ufPAMnPPG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-fl7rc8 framer-lux5qc\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-lq4p2n\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:tlT3y9xyYYBQ6Wgw3G,verticalAlignment:\"top\",withExternalLayout:true})})})]})})},idYBQ6Wgw3G);})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-oc5yv4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"JhoIeIEw8\",data:Attractions,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:8},select:[{collection:\"JhoIeIEw8\",name:\"evfwf55jx\",type:\"Identifier\"},{collection:\"JhoIeIEw8\",name:\"xF5mnrAM5\",type:\"Identifier\"},{collection:\"JhoIeIEw8\",name:\"tlT3y9xyY\",type:\"Identifier\"},{collection:\"JhoIeIEw8\",name:\"id\",type:\"Identifier\"}]},children:(collection11,paginationInfo12,loadMore12)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection11?.map(({evfwf55jx:evfwf55jxJhoIeIEw8,id:idJhoIeIEw8,tlT3y9xyY:tlT3y9xyYJhoIeIEw8,xF5mnrAM5:xF5mnrAM5JhoIeIEw8},index11)=>{xF5mnrAM5JhoIeIEw8??=\"\";tlT3y9xyYJhoIeIEw8??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`JhoIeIEw8-${idJhoIeIEw8}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xF5mnrAM5:xF5mnrAM5JhoIeIEw8},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e4hm2h\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"430px\",...toResponsiveImage(evfwf55jxJhoIeIEw8)},className:\"framer-18bcqsv\"}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{xF5mnrAM5:xF5mnrAM5JhoIeIEw8},webPageId:\"XogElZsfv\"},motionChild:true,nodeId:\"LGG49vWsG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ahho63 framer-lux5qc\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-136tnai\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:tlT3y9xyYJhoIeIEw8,verticalAlignment:\"top\",withExternalLayout:true})})})]})})},idJhoIeIEw8);}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ryu4iq\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"JJR06QBlu\",data:Attractions,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[]},children:(collection12,paginationInfo11,loadMore11)=>/*#__PURE__*/_jsx(_Fragment,{})})})})]})})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fpcdc4\",\"data-framer-name\":\"Attractions\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o1oxb5\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qg31b\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-9w631r\",\"data-styles-preset\":\"KUncnPiaU\",style:{\"--framer-text-alignment\":\"left\"},children:\"Explore Reykjavik\"})}),className:\"framer-1yu0200\",\"data-framer-name\":\"Unwind and relax\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1962j89\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dc9xc2\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wkp64z\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:22,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1494+0+8250+0+0+0+64.8+0+20+0+79),pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ZOd0YstQiaPuZ12DCrqWxxaLZ8w.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:22,pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ZOd0YstQiaPuZ12DCrqWxxaLZ8w.png\"},className:\"framer-1usqbj3\",\"data-framer-name\":\"\\xf4_\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"5 min bus ride to Hallgr\\xedmskirkja\"})}),className:\"framer-1hip2v4\",\"data-framer-name\":\"Self Check-In\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18k3xa8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:22,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1494+0+8250+0+0+0+64.8+0+20+188+79),pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ZOd0YstQiaPuZ12DCrqWxxaLZ8w.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:22,pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ZOd0YstQiaPuZ12DCrqWxxaLZ8w.png\"},className:\"framer-1kq0sbs\",\"data-framer-name\":\"\\xf4_\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"30 minute walk to the centre\"})}),className:\"framer-1qmivml\",\"data-framer-name\":\"Wheelchair Accessible\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ylo1K6_Bd\"},motionChild:true,nodeId:\"V536quDFS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-hovmak hidden-14stk3t framer-lux5qc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,children:/*#__PURE__*/_jsx(Container,{className:\"framer-feqn0z-container\",nodeId:\"JE9pPtFiS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"JE9pPtFiS\",layoutId:\"JE9pPtFiS\",QLObYAzMj:\"rgb(210, 231, 225)\",rBpKIvlnR:\"rgb(0, 0, 0)\",tbWZRcYA7:\"View all attractions\",variant:\"wCdE55hSh\",width:\"100%\"})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hnogpt-container hidden-14stk3t\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SUcB4o4Li\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/zmZ01fJuu2ho3SU8aqt0yRZP7c.png\",rightArrow:\"https://framerusercontent.com/images/q1khMwuwyZmbIK4xCoqrCHzY.png\",showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:32,height:\"100%\",id:\"SUcB4o4Li\",layoutId:\"SUcB4o4Li\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lsl2dc\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"O_MVn9lWg\",data:Attractions,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"O_MVn9lWg\",name:\"evfwf55jx\",type:\"Identifier\"},{collection:\"O_MVn9lWg\",name:\"xF5mnrAM5\",type:\"Identifier\"},{collection:\"O_MVn9lWg\",name:\"tlT3y9xyY\",type:\"Identifier\"},{collection:\"O_MVn9lWg\",name:\"id\",type:\"Identifier\"}]},children:(collection13,paginationInfo13,loadMore13)=>/*#__PURE__*/_jsx(_Fragment,{children:collection13?.map(({evfwf55jx:evfwf55jxO_MVn9lWg,id:idO_MVn9lWg,tlT3y9xyY:tlT3y9xyYO_MVn9lWg,xF5mnrAM5:xF5mnrAM5O_MVn9lWg},index12)=>{xF5mnrAM5O_MVn9lWg??=\"\";tlT3y9xyYO_MVn9lWg??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`O_MVn9lWg-${idO_MVn9lWg}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xF5mnrAM5:xF5mnrAM5O_MVn9lWg},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y5hw67\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"430px\",...toResponsiveImage(evfwf55jxO_MVn9lWg)},className:\"framer-13o9bz\"}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{xF5mnrAM5:xF5mnrAM5O_MVn9lWg},webPageId:\"XogElZsfv\"},motionChild:true,nodeId:\"VZgj1K7Fl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-sjwkbw framer-lux5qc\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-lgqa9s\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:tlT3y9xyYO_MVn9lWg,verticalAlignment:\"top\",withExternalLayout:true})})})]})})},idO_MVn9lWg);})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cy9pwx\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"MfPMNmylO\",data:Attractions,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"MfPMNmylO\",name:\"evfwf55jx\",type:\"Identifier\"},{collection:\"MfPMNmylO\",name:\"xF5mnrAM5\",type:\"Identifier\"},{collection:\"MfPMNmylO\",name:\"tlT3y9xyY\",type:\"Identifier\"},{collection:\"MfPMNmylO\",name:\"id\",type:\"Identifier\"}]},children:(collection14,paginationInfo14,loadMore14)=>/*#__PURE__*/_jsx(_Fragment,{children:collection14?.map(({evfwf55jx:evfwf55jxMfPMNmylO,id:idMfPMNmylO,tlT3y9xyY:tlT3y9xyYMfPMNmylO,xF5mnrAM5:xF5mnrAM5MfPMNmylO},index13)=>{xF5mnrAM5MfPMNmylO??=\"\";tlT3y9xyYMfPMNmylO??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`MfPMNmylO-${idMfPMNmylO}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xF5mnrAM5:xF5mnrAM5MfPMNmylO},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wzq6gv\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"430px\",...toResponsiveImage(evfwf55jxMfPMNmylO)},className:\"framer-1jekeb1\"}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{xF5mnrAM5:xF5mnrAM5MfPMNmylO},webPageId:\"XogElZsfv\"},motionChild:true,nodeId:\"iKdocP1QO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-17ajk47 framer-lux5qc\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-u41gs9\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:tlT3y9xyYMfPMNmylO,verticalAlignment:\"top\",withExternalLayout:true})})})]})})},idMfPMNmylO);})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ca1tpn\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"wOsV6Nenk\",data:Attractions,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"wOsV6Nenk\",name:\"evfwf55jx\",type:\"Identifier\"},{collection:\"wOsV6Nenk\",name:\"xF5mnrAM5\",type:\"Identifier\"},{collection:\"wOsV6Nenk\",name:\"tlT3y9xyY\",type:\"Identifier\"},{collection:\"wOsV6Nenk\",name:\"id\",type:\"Identifier\"}]},children:(collection15,paginationInfo15,loadMore15)=>/*#__PURE__*/_jsx(_Fragment,{children:collection15?.map(({evfwf55jx:evfwf55jxwOsV6Nenk,id:idwOsV6Nenk,tlT3y9xyY:tlT3y9xyYwOsV6Nenk,xF5mnrAM5:xF5mnrAM5wOsV6Nenk},index14)=>{xF5mnrAM5wOsV6Nenk??=\"\";tlT3y9xyYwOsV6Nenk??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`wOsV6Nenk-${idwOsV6Nenk}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xF5mnrAM5:xF5mnrAM5wOsV6Nenk},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p3fbuj\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"430px\",...toResponsiveImage(evfwf55jxwOsV6Nenk)},className:\"framer-1l5czlc\"}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{xF5mnrAM5:xF5mnrAM5wOsV6Nenk},webPageId:\"XogElZsfv\"},motionChild:true,nodeId:\"qXipC4Aqo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-z2u41v framer-lux5qc\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-9fidz\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:tlT3y9xyYwOsV6Nenk,verticalAlignment:\"top\",withExternalLayout:true})})})]})})},idwOsV6Nenk);})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-bkhvjv\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"wyVJjAn8F\",data:Attractions,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"wyVJjAn8F\",name:\"evfwf55jx\",type:\"Identifier\"},{collection:\"wyVJjAn8F\",name:\"xF5mnrAM5\",type:\"Identifier\"},{collection:\"wyVJjAn8F\",name:\"tlT3y9xyY\",type:\"Identifier\"},{collection:\"wyVJjAn8F\",name:\"id\",type:\"Identifier\"}]},children:(collection16,paginationInfo16,loadMore16)=>/*#__PURE__*/_jsx(_Fragment,{children:collection16?.map(({evfwf55jx:evfwf55jxwyVJjAn8F,id:idwyVJjAn8F,tlT3y9xyY:tlT3y9xyYwyVJjAn8F,xF5mnrAM5:xF5mnrAM5wyVJjAn8F},index15)=>{xF5mnrAM5wyVJjAn8F??=\"\";tlT3y9xyYwyVJjAn8F??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`wyVJjAn8F-${idwyVJjAn8F}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xF5mnrAM5:xF5mnrAM5wyVJjAn8F},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18jw1rh\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"430px\",...toResponsiveImage(evfwf55jxwyVJjAn8F)},className:\"framer-11eecf9\"}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{xF5mnrAM5:xF5mnrAM5wyVJjAn8F},webPageId:\"XogElZsfv\"},motionChild:true,nodeId:\"c1K7WNlzm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1wh083o framer-lux5qc\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-1yt72ig\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:tlT3y9xyYwyVJjAn8F,verticalAlignment:\"top\",withExternalLayout:true})})})]})})},idwyVJjAn8F);})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tnyby4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"RemXNjaf8\",data:Attractions,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"RemXNjaf8\",name:\"evfwf55jx\",type:\"Identifier\"},{collection:\"RemXNjaf8\",name:\"xF5mnrAM5\",type:\"Identifier\"},{collection:\"RemXNjaf8\",name:\"tlT3y9xyY\",type:\"Identifier\"},{collection:\"RemXNjaf8\",name:\"id\",type:\"Identifier\"}]},children:(collection8,paginationInfo8,loadMore8)=>/*#__PURE__*/_jsx(_Fragment,{children:collection8?.map(({evfwf55jx:evfwf55jxRemXNjaf8,id:idRemXNjaf8,tlT3y9xyY:tlT3y9xyYRemXNjaf8,xF5mnrAM5:xF5mnrAM5RemXNjaf8},index16)=>{xF5mnrAM5RemXNjaf8??=\"\";tlT3y9xyYRemXNjaf8??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`RemXNjaf8-${idRemXNjaf8}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xF5mnrAM5:xF5mnrAM5RemXNjaf8},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12z2ksm\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"430px\",...toResponsiveImage(evfwf55jxRemXNjaf8)},className:\"framer-1jtiyd4\"}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{xF5mnrAM5:xF5mnrAM5RemXNjaf8},webPageId:\"XogElZsfv\"},motionChild:true,nodeId:\"Khi82p9K7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-gxxm7s framer-lux5qc\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-1x3aewk\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:tlT3y9xyYRemXNjaf8,verticalAlignment:\"top\",withExternalLayout:true})})})]})})},idRemXNjaf8);})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-oc5yv4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"JhoIeIEw8\",data:Attractions,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:8},select:[{collection:\"JhoIeIEw8\",name:\"evfwf55jx\",type:\"Identifier\"},{collection:\"JhoIeIEw8\",name:\"xF5mnrAM5\",type:\"Identifier\"},{collection:\"JhoIeIEw8\",name:\"tlT3y9xyY\",type:\"Identifier\"},{collection:\"JhoIeIEw8\",name:\"id\",type:\"Identifier\"}]},children:(collection11,paginationInfo12,loadMore12)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection11?.map(({evfwf55jx:evfwf55jxJhoIeIEw8,id:idJhoIeIEw8,tlT3y9xyY:tlT3y9xyYJhoIeIEw8,xF5mnrAM5:xF5mnrAM5JhoIeIEw8},index17)=>{xF5mnrAM5JhoIeIEw8??=\"\";tlT3y9xyYJhoIeIEw8??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`JhoIeIEw8-${idJhoIeIEw8}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xF5mnrAM5:xF5mnrAM5JhoIeIEw8},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e4hm2h\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"430px\",...toResponsiveImage(evfwf55jxJhoIeIEw8)},className:\"framer-18bcqsv\"}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{xF5mnrAM5:xF5mnrAM5JhoIeIEw8},webPageId:\"XogElZsfv\"},motionChild:true,nodeId:\"LGG49vWsG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ahho63 framer-lux5qc\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-136tnai\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:tlT3y9xyYJhoIeIEw8,verticalAlignment:\"top\",withExternalLayout:true})})})]})})},idJhoIeIEw8);}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ryu4iq\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"JJR06QBlu\",data:Attractions,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[]},children:(collection12,paginationInfo11,loadMore11)=>/*#__PURE__*/_jsx(_Fragment,{})})})})]})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dhaw1q\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"YBQ6Wgw3G\",data:Attractions,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:7},select:[{collection:\"YBQ6Wgw3G\",name:\"evfwf55jx\",type:\"Identifier\"},{collection:\"YBQ6Wgw3G\",name:\"xF5mnrAM5\",type:\"Identifier\"},{collection:\"YBQ6Wgw3G\",name:\"tlT3y9xyY\",type:\"Identifier\"},{collection:\"YBQ6Wgw3G\",name:\"id\",type:\"Identifier\"}]},children:(collection10,paginationInfo10,loadMore10)=>/*#__PURE__*/_jsx(_Fragment,{children:collection10?.map(({evfwf55jx:evfwf55jxYBQ6Wgw3G,id:idYBQ6Wgw3G,tlT3y9xyY:tlT3y9xyYYBQ6Wgw3G,xF5mnrAM5:xF5mnrAM5YBQ6Wgw3G},index18)=>{xF5mnrAM5YBQ6Wgw3G??=\"\";tlT3y9xyYYBQ6Wgw3G??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`YBQ6Wgw3G-${idYBQ6Wgw3G}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xF5mnrAM5:xF5mnrAM5YBQ6Wgw3G},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9xjfiq\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"430px\",...toResponsiveImage(evfwf55jxYBQ6Wgw3G)},className:\"framer-1k9g4wv\"}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{xF5mnrAM5:xF5mnrAM5YBQ6Wgw3G},webPageId:\"XogElZsfv\"},motionChild:true,nodeId:\"ufPAMnPPG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-fl7rc8 framer-lux5qc\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-lq4p2n\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:tlT3y9xyYYBQ6Wgw3G,verticalAlignment:\"top\",withExternalLayout:true})})})]})})},idYBQ6Wgw3G);})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cj9e3t\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"RaSHcrzHU\",data:Attractions,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:6},select:[{collection:\"RaSHcrzHU\",name:\"evfwf55jx\",type:\"Identifier\"},{collection:\"RaSHcrzHU\",name:\"xF5mnrAM5\",type:\"Identifier\"},{collection:\"RaSHcrzHU\",name:\"tlT3y9xyY\",type:\"Identifier\"},{collection:\"RaSHcrzHU\",name:\"id\",type:\"Identifier\"}]},children:(collection9,paginationInfo9,loadMore9)=>/*#__PURE__*/_jsx(_Fragment,{children:collection9?.map(({evfwf55jx:evfwf55jxRaSHcrzHU,id:idRaSHcrzHU,tlT3y9xyY:tlT3y9xyYRaSHcrzHU,xF5mnrAM5:xF5mnrAM5RaSHcrzHU},index19)=>{xF5mnrAM5RaSHcrzHU??=\"\";tlT3y9xyYRaSHcrzHU??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`RaSHcrzHU-${idRaSHcrzHU}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xF5mnrAM5:xF5mnrAM5RaSHcrzHU},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-eti07m\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"430px\",...toResponsiveImage(evfwf55jxRaSHcrzHU)},className:\"framer-bbvzl6\"}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{xF5mnrAM5:xF5mnrAM5RaSHcrzHU},webPageId:\"XogElZsfv\"},motionChild:true,nodeId:\"S82RWT1hj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1bvt9a5 framer-lux5qc\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-16vremt\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:tlT3y9xyYRaSHcrzHU,verticalAlignment:\"top\",withExternalLayout:true})})})]})})},idRaSHcrzHU);})})})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8yabqu hidden-72rtr7 hidden-1uq7w2n\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ylo1K6_Bd\"},motionChild:true,nodeId:\"PBRYfZpF6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ayk2ul framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{y:(componentViewport?.y||0)+0+1494+0+8250+0+510.8+0+450+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13npky7-container\",nodeId:\"hVGWyFTvL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"hVGWyFTvL\",layoutId:\"hVGWyFTvL\",QLObYAzMj:\"rgb(210, 231, 225)\",rBpKIvlnR:\"rgb(0, 0, 0)\",tbWZRcYA7:\"View All Attractions\",variant:\"wCdE55hSh\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lou8w6\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-501isi-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"U4kajKdQU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/zmZ01fJuu2ho3SU8aqt0yRZP7c.png\",rightArrow:\"https://framerusercontent.com/images/DYMDrxCfKsSNkGgyUnxxvi3dY4.png\",showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"U4kajKdQU\",layoutId:\"U4kajKdQU\",padding:10,paddingBottom:0,paddingLeft:10,paddingPerSide:true,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-exf7n3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"RNKtBH9gr\",data:Attractions,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"RNKtBH9gr\",name:\"xF5mnrAM5\",type:\"Identifier\"},{collection:\"RNKtBH9gr\",name:\"evfwf55jx\",type:\"Identifier\"},{collection:\"RNKtBH9gr\",name:\"tlT3y9xyY\",type:\"Identifier\"},{collection:\"RNKtBH9gr\",name:\"id\",type:\"Identifier\"}]},children:(collection17,paginationInfo17,loadMore17)=>/*#__PURE__*/_jsx(_Fragment,{children:collection17?.map(({evfwf55jx:evfwf55jxRNKtBH9gr,id:idRNKtBH9gr,tlT3y9xyY:tlT3y9xyYRNKtBH9gr,xF5mnrAM5:xF5mnrAM5RNKtBH9gr},index20)=>{xF5mnrAM5RNKtBH9gr??=\"\";tlT3y9xyYRNKtBH9gr??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`RNKtBH9gr-${idRNKtBH9gr}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xF5mnrAM5:xF5mnrAM5RNKtBH9gr},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{xF5mnrAM5:xF5mnrAM5RNKtBH9gr},webPageId:\"XogElZsfv\"},motionChild:true,nodeId:\"c0dHXkA19\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1mp1qv2 framer-lux5qc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"250px\",...toResponsiveImage(evfwf55jxRNKtBH9gr)},className:\"framer-ytugx4\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d5goto\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-1mo38e6\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:tlT3y9xyYRNKtBH9gr,verticalAlignment:\"top\",withExternalLayout:true})})]})})})},idRNKtBH9gr);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gsdb3l\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"x3cxT4VUx\",data:Attractions,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"x3cxT4VUx\",name:\"xF5mnrAM5\",type:\"Identifier\"},{collection:\"x3cxT4VUx\",name:\"evfwf55jx\",type:\"Identifier\"},{collection:\"x3cxT4VUx\",name:\"tlT3y9xyY\",type:\"Identifier\"},{collection:\"x3cxT4VUx\",name:\"id\",type:\"Identifier\"}]},children:(collection18,paginationInfo18,loadMore18)=>/*#__PURE__*/_jsx(_Fragment,{children:collection18?.map(({evfwf55jx:evfwf55jxx3cxT4VUx,id:idx3cxT4VUx,tlT3y9xyY:tlT3y9xyYx3cxT4VUx,xF5mnrAM5:xF5mnrAM5x3cxT4VUx},index21)=>{xF5mnrAM5x3cxT4VUx??=\"\";tlT3y9xyYx3cxT4VUx??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`x3cxT4VUx-${idx3cxT4VUx}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xF5mnrAM5:xF5mnrAM5x3cxT4VUx},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{xF5mnrAM5:xF5mnrAM5x3cxT4VUx},webPageId:\"XogElZsfv\"},motionChild:true,nodeId:\"L0aROENc4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-yqxzos framer-lux5qc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"250px\",...toResponsiveImage(evfwf55jxx3cxT4VUx)},className:\"framer-5pec4v\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qholri\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-1ie5bct\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:tlT3y9xyYx3cxT4VUx,verticalAlignment:\"top\",withExternalLayout:true})})]})})})},idx3cxT4VUx);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11db8c\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"yXh3Qcue4\",data:Attractions,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"yXh3Qcue4\",name:\"xF5mnrAM5\",type:\"Identifier\"},{collection:\"yXh3Qcue4\",name:\"evfwf55jx\",type:\"Identifier\"},{collection:\"yXh3Qcue4\",name:\"tlT3y9xyY\",type:\"Identifier\"},{collection:\"yXh3Qcue4\",name:\"id\",type:\"Identifier\"}]},children:(collection19,paginationInfo19,loadMore19)=>/*#__PURE__*/_jsx(_Fragment,{children:collection19?.map(({evfwf55jx:evfwf55jxyXh3Qcue4,id:idyXh3Qcue4,tlT3y9xyY:tlT3y9xyYyXh3Qcue4,xF5mnrAM5:xF5mnrAM5yXh3Qcue4},index22)=>{xF5mnrAM5yXh3Qcue4??=\"\";tlT3y9xyYyXh3Qcue4??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`yXh3Qcue4-${idyXh3Qcue4}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xF5mnrAM5:xF5mnrAM5yXh3Qcue4},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{xF5mnrAM5:xF5mnrAM5yXh3Qcue4},webPageId:\"XogElZsfv\"},motionChild:true,nodeId:\"As8vdjbeo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1y8daew framer-lux5qc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"250px\",...toResponsiveImage(evfwf55jxyXh3Qcue4)},className:\"framer-8zz98s\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ire513\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-6w545t\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:tlT3y9xyYyXh3Qcue4,verticalAlignment:\"top\",withExternalLayout:true})})]})})})},idyXh3Qcue4);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-oux4ij\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"dPUocJgfv\",data:Attractions,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"dPUocJgfv\",name:\"xF5mnrAM5\",type:\"Identifier\"},{collection:\"dPUocJgfv\",name:\"evfwf55jx\",type:\"Identifier\"},{collection:\"dPUocJgfv\",name:\"tlT3y9xyY\",type:\"Identifier\"},{collection:\"dPUocJgfv\",name:\"id\",type:\"Identifier\"}]},children:(collection20,paginationInfo20,loadMore20)=>/*#__PURE__*/_jsx(_Fragment,{children:collection20?.map(({evfwf55jx:evfwf55jxdPUocJgfv,id:iddPUocJgfv,tlT3y9xyY:tlT3y9xyYdPUocJgfv,xF5mnrAM5:xF5mnrAM5dPUocJgfv},index23)=>{xF5mnrAM5dPUocJgfv??=\"\";tlT3y9xyYdPUocJgfv??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`dPUocJgfv-${iddPUocJgfv}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xF5mnrAM5:xF5mnrAM5dPUocJgfv},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{xF5mnrAM5:xF5mnrAM5dPUocJgfv},webPageId:\"XogElZsfv\"},motionChild:true,nodeId:\"kcbv0zAJm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-acnbd1 framer-lux5qc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"250px\",...toResponsiveImage(evfwf55jxdPUocJgfv)},className:\"framer-vfx9fc\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ld2nkb\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-1ny784q\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:tlT3y9xyYdPUocJgfv,verticalAlignment:\"top\",withExternalLayout:true})})]})})})},iddPUocJgfv);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-oux4ij\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"dPUocJgfv\",data:Attractions,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"dPUocJgfv\",name:\"xF5mnrAM5\",type:\"Identifier\"},{collection:\"dPUocJgfv\",name:\"evfwf55jx\",type:\"Identifier\"},{collection:\"dPUocJgfv\",name:\"tlT3y9xyY\",type:\"Identifier\"},{collection:\"dPUocJgfv\",name:\"id\",type:\"Identifier\"}]},children:(collection20,paginationInfo20,loadMore20)=>/*#__PURE__*/_jsx(_Fragment,{children:collection20?.map(({evfwf55jx:evfwf55jxdPUocJgfv,id:iddPUocJgfv,tlT3y9xyY:tlT3y9xyYdPUocJgfv,xF5mnrAM5:xF5mnrAM5dPUocJgfv},index24)=>{xF5mnrAM5dPUocJgfv??=\"\";tlT3y9xyYdPUocJgfv??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`dPUocJgfv-${iddPUocJgfv}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xF5mnrAM5:xF5mnrAM5dPUocJgfv},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{xF5mnrAM5:xF5mnrAM5dPUocJgfv},webPageId:\"XogElZsfv\"},motionChild:true,nodeId:\"kcbv0zAJm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-acnbd1 framer-lux5qc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"250px\",...toResponsiveImage(evfwf55jxdPUocJgfv)},className:\"framer-vfx9fc\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ld2nkb\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-1ny784q\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:tlT3y9xyYdPUocJgfv,verticalAlignment:\"top\",withExternalLayout:true})})]})})})},iddPUocJgfv);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xfxmt3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Jk31TqiSX\",data:Attractions,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"Jk31TqiSX\",name:\"xF5mnrAM5\",type:\"Identifier\"},{collection:\"Jk31TqiSX\",name:\"evfwf55jx\",type:\"Identifier\"},{collection:\"Jk31TqiSX\",name:\"tlT3y9xyY\",type:\"Identifier\"},{collection:\"Jk31TqiSX\",name:\"id\",type:\"Identifier\"}]},children:(collection21,paginationInfo21,loadMore21)=>/*#__PURE__*/_jsx(_Fragment,{children:collection21?.map(({evfwf55jx:evfwf55jxJk31TqiSX,id:idJk31TqiSX,tlT3y9xyY:tlT3y9xyYJk31TqiSX,xF5mnrAM5:xF5mnrAM5Jk31TqiSX},index25)=>{xF5mnrAM5Jk31TqiSX??=\"\";tlT3y9xyYJk31TqiSX??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Jk31TqiSX-${idJk31TqiSX}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xF5mnrAM5:xF5mnrAM5Jk31TqiSX},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{xF5mnrAM5:xF5mnrAM5Jk31TqiSX},webPageId:\"XogElZsfv\"},motionChild:true,nodeId:\"FmSqRPUru\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-e6c0f1 framer-lux5qc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"250px\",...toResponsiveImage(evfwf55jxJk31TqiSX)},className:\"framer-mt1ps7\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jtx8k4\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-b86moh\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:tlT3y9xyYJk31TqiSX,verticalAlignment:\"top\",withExternalLayout:true})})]})})})},idJk31TqiSX);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mqu0vt\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"DolDav_xB\",data:Attractions,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"DolDav_xB\",name:\"xF5mnrAM5\",type:\"Identifier\"},{collection:\"DolDav_xB\",name:\"evfwf55jx\",type:\"Identifier\"},{collection:\"DolDav_xB\",name:\"tlT3y9xyY\",type:\"Identifier\"},{collection:\"DolDav_xB\",name:\"id\",type:\"Identifier\"}]},children:(collection22,paginationInfo22,loadMore22)=>/*#__PURE__*/_jsx(_Fragment,{children:collection22?.map(({evfwf55jx:evfwf55jxDolDav_xB,id:idDolDav_xB,tlT3y9xyY:tlT3y9xyYDolDav_xB,xF5mnrAM5:xF5mnrAM5DolDav_xB},index26)=>{xF5mnrAM5DolDav_xB??=\"\";tlT3y9xyYDolDav_xB??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`DolDav_xB-${idDolDav_xB}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xF5mnrAM5:xF5mnrAM5DolDav_xB},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{xF5mnrAM5:xF5mnrAM5DolDav_xB},webPageId:\"XogElZsfv\"},motionChild:true,nodeId:\"pr0931ZnI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-qloriz framer-lux5qc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"250px\",...toResponsiveImage(evfwf55jxDolDav_xB)},className:\"framer-5c4v49\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fnxxtf\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-m9ytg4\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:tlT3y9xyYDolDav_xB,verticalAlignment:\"top\",withExternalLayout:true})})]})})})},idDolDav_xB);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-g0f4hc\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"LH7p2Ds_Y\",data:Attractions,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:6},select:[{collection:\"LH7p2Ds_Y\",name:\"xF5mnrAM5\",type:\"Identifier\"},{collection:\"LH7p2Ds_Y\",name:\"evfwf55jx\",type:\"Identifier\"},{collection:\"LH7p2Ds_Y\",name:\"tlT3y9xyY\",type:\"Identifier\"},{collection:\"LH7p2Ds_Y\",name:\"id\",type:\"Identifier\"}]},children:(collection23,paginationInfo23,loadMore23)=>/*#__PURE__*/_jsx(_Fragment,{children:collection23?.map(({evfwf55jx:evfwf55jxLH7p2Ds_Y,id:idLH7p2Ds_Y,tlT3y9xyY:tlT3y9xyYLH7p2Ds_Y,xF5mnrAM5:xF5mnrAM5LH7p2Ds_Y},index27)=>{xF5mnrAM5LH7p2Ds_Y??=\"\";tlT3y9xyYLH7p2Ds_Y??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`LH7p2Ds_Y-${idLH7p2Ds_Y}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xF5mnrAM5:xF5mnrAM5LH7p2Ds_Y},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{xF5mnrAM5:xF5mnrAM5LH7p2Ds_Y},webPageId:\"XogElZsfv\"},motionChild:true,nodeId:\"zmIHYfZFG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-3u6hhu framer-lux5qc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"250px\",...toResponsiveImage(evfwf55jxLH7p2Ds_Y)},className:\"framer-1nsomuw\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y6nxo3\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-1yrnc4s\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:tlT3y9xyYLH7p2Ds_Y,verticalAlignment:\"top\",withExternalLayout:true})})]})})})},idLH7p2Ds_Y);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-p53d1n\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"oLGVdlLcb\",data:Attractions,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:7},select:[{collection:\"oLGVdlLcb\",name:\"xF5mnrAM5\",type:\"Identifier\"},{collection:\"oLGVdlLcb\",name:\"evfwf55jx\",type:\"Identifier\"},{collection:\"oLGVdlLcb\",name:\"tlT3y9xyY\",type:\"Identifier\"},{collection:\"oLGVdlLcb\",name:\"id\",type:\"Identifier\"}]},children:(collection24,paginationInfo24,loadMore24)=>/*#__PURE__*/_jsx(_Fragment,{children:collection24?.map(({evfwf55jx:evfwf55jxoLGVdlLcb,id:idoLGVdlLcb,tlT3y9xyY:tlT3y9xyYoLGVdlLcb,xF5mnrAM5:xF5mnrAM5oLGVdlLcb},index28)=>{xF5mnrAM5oLGVdlLcb??=\"\";tlT3y9xyYoLGVdlLcb??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`oLGVdlLcb-${idoLGVdlLcb}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xF5mnrAM5:xF5mnrAM5oLGVdlLcb},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{xF5mnrAM5:xF5mnrAM5oLGVdlLcb},webPageId:\"XogElZsfv\"},motionChild:true,nodeId:\"kV0WbHdb3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1lzin84 framer-lux5qc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"250px\",...toResponsiveImage(evfwf55jxoLGVdlLcb)},className:\"framer-1od2qck\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pjso3w\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-1w9lenj\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:tlT3y9xyYoLGVdlLcb,verticalAlignment:\"top\",withExternalLayout:true})})]})})})},idoLGVdlLcb);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fyb15e\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"JlHeiqIsH\",data:Attractions,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:8},select:[{collection:\"JlHeiqIsH\",name:\"xF5mnrAM5\",type:\"Identifier\"},{collection:\"JlHeiqIsH\",name:\"evfwf55jx\",type:\"Identifier\"},{collection:\"JlHeiqIsH\",name:\"tlT3y9xyY\",type:\"Identifier\"},{collection:\"JlHeiqIsH\",name:\"id\",type:\"Identifier\"}]},children:(collection25,paginationInfo25,loadMore25)=>/*#__PURE__*/_jsx(_Fragment,{children:collection25?.map(({evfwf55jx:evfwf55jxJlHeiqIsH,id:idJlHeiqIsH,tlT3y9xyY:tlT3y9xyYJlHeiqIsH,xF5mnrAM5:xF5mnrAM5JlHeiqIsH},index29)=>{xF5mnrAM5JlHeiqIsH??=\"\";tlT3y9xyYJlHeiqIsH??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`JlHeiqIsH-${idJlHeiqIsH}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xF5mnrAM5:xF5mnrAM5JlHeiqIsH},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{xF5mnrAM5:xF5mnrAM5JlHeiqIsH},webPageId:\"XogElZsfv\"},motionChild:true,nodeId:\"NecBQGYkJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-tl0026 framer-lux5qc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"250px\",...toResponsiveImage(evfwf55jxJlHeiqIsH)},className:\"framer-cw2fy7\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nbwxhi\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Title\"})}),className:\"framer-13rb0p9\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:tlT3y9xyYJlHeiqIsH,verticalAlignment:\"top\",withExternalLayout:true})})]})})})},idJlHeiqIsH);})})})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rbdlju\",\"data-framer-name\":\"Testimonials\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ddknom\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mn6xcb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-9w631r\",\"data-styles-preset\":\"KUncnPiaU\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Don't just take\",/*#__PURE__*/_jsx(\"br\",{}),\"our word for it\"]})}),className:\"framer-a7o3gm\",\"data-framer-name\":\"Don't just take our word for it\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-ed7ffdbb-4ecb-47f9-a08e-47d50bdc4a8c, rgb(255, 255, 255))\"},children:\"Read what our visitors have to say\"})}),className:\"framer-p9vj0b\",\"data-framer-name\":\"Read what our visitors have to say\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vhd4i2-container hidden-72rtr7 hidden-1uq7w2n\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RDzJx6jl5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:20,arrowPaddingTop:-61,arrowPosition:\"top-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/cfV1I0aW7K2PfZs8xWzwBECl49g.png\",rightArrow:\"https://framerusercontent.com/images/jqProc5Eltrc7bKwmYywVTyFalY.png\",showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"RDzJx6jl5\",intervalControl:1.5,itemAmount:1,layoutId:\"RDzJx6jl5\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ernrn4\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sw06yb\",\"data-styles-preset\":\"o0OzPgrnc\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"\u201C Very comfortable room, with enough space for 3 of us. Clean and tidy. The food was great, excellent breakfast choices. A little bit out from city center but plenty of public bus stops. The virtual reception people were exceptionally helpful with all my queries! Would happily recommend \u201C\"})}),className:\"framer-fnfjtg\",\"data-framer-name\":\"\u201C Great hotel in a very good location. Rooms are a little compact, but fine for a few days. Very chic interior. Proper coffee machine. Reception staff are very helpful. Short walk to a lot of bars and restaurant but the hotel has Le Kock which was very good value. Bagels are excellent. \u201C\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s0ddgn\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14bissh\",\"data-framer-name\":\"Author\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Bhc3RpY2hlIEdyb3Rlc3F1ZSBUcmlhbCBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Pastiche Grotesque Trial SemiBold\", \"Pastiche Grotesque Trial SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(210, 231, 225)\"},children:\"Tripadvisor\"})}),className:\"framer-zl9uoe\",\"data-framer-name\":\"Suparmin Rodriguz\",fonts:[\"CUSTOM;Pastiche Grotesque Trial SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aopgm4\",\"data-styles-preset\":\"uAbkGPPt5\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"March 2024\"})}),className:\"framer-4njmrn\",\"data-framer-name\":\"14 February 2024\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ena6xl\",\"data-framer-name\":\"Frame 2058361376\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 152 24\"><path d=\"M 12 17.27 L 16.15 19.78 C 16.91 20.24 17.84 19.56 17.64 18.7 L 16.54 13.98 L 20.21 10.8 C 20.88 10.22 20.52 9.12 19.64 9.05 L 14.81 8.64 L 12.92 4.18 C 12.58 3.37 11.42 3.37 11.08 4.18 L 9.19 8.63 L 4.36 9.04 C 3.48 9.11 3.12 10.21 3.79 10.79 L 7.46 13.97 L 6.36 18.69 C 6.16 19.55 7.09 20.23 7.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 44 17.27 L 48.15 19.78 C 48.91 20.24 49.84 19.56 49.64 18.7 L 48.54 13.98 L 52.21 10.8 C 52.88 10.22 52.52 9.12 51.64 9.05 L 46.81 8.64 L 44.92 4.18 C 44.58 3.37 43.42 3.37 43.08 4.18 L 41.19 8.63 L 36.36 9.04 C 35.48 9.11 35.12 10.21 35.79 10.79 L 39.46 13.97 L 38.36 18.69 C 38.16 19.55 39.09 20.23 39.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 76 17.27 L 80.15 19.78 C 80.91 20.24 81.84 19.56 81.64 18.7 L 80.54 13.98 L 84.21 10.8 C 84.88 10.22 84.52 9.12 83.64 9.05 L 78.81 8.64 L 76.92 4.18 C 76.58 3.37 75.42 3.37 75.08 4.18 L 73.19 8.63 L 68.36 9.04 C 67.48 9.11 67.12 10.21 67.79 10.79 L 71.46 13.97 L 70.36 18.69 C 70.16 19.55 71.09 20.23 71.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 108 17.27 L 112.15 19.78 C 112.91 20.24 113.84 19.56 113.64 18.7 L 112.54 13.98 L 116.21 10.8 C 116.88 10.22 116.52 9.12 115.64 9.05 L 110.81 8.64 L 108.92 4.18 C 108.58 3.37 107.42 3.37 107.08 4.18 L 105.19 8.63 L 100.36 9.04 C 99.48 9.11 99.12 10.21 99.79 10.79 L 103.46 13.97 L 102.36 18.69 C 102.16 19.55 103.09 20.23 103.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 140 17.27 L 144.15 19.78 C 144.91 20.24 145.84 19.56 145.64 18.7 L 144.54 13.98 L 148.21 10.8 C 148.88 10.22 148.52 9.12 147.64 9.05 L 142.81 8.64 L 140.92 4.18 C 140.58 3.37 139.42 3.37 139.08 4.18 L 137.19 8.63 L 132.36 9.04 C 131.48 9.11 131.12 10.21 131.79 10.79 L 135.46 13.97 L 134.36 18.69 C 134.16 19.55 135.09 20.23 135.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path></svg>',svgContentId:9951967654,withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cz31n2\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sw06yb\",\"data-styles-preset\":\"o0OzPgrnc\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"\u201C First time in Iceland but won't be our last We used this hotel for a five night stay, lovely clean uncluttered room . Beds were very comfortable and room not stuffy or overheated, staff were great .Breakfast was everything you could ask for. Small covered parking area is quite tight if using a larger car . Would definitely stay again.\u201C\"})}),className:\"framer-1mzzc6y\",\"data-framer-name\":\"\u201C Great hotel in a very good location. Rooms are a little compact, but fine for a few days. Very chic interior. Proper coffee machine. Reception staff are very helpful. Short walk to a lot of bars and restaurant but the hotel has Le Kock which was very good value. Bagels are excellent. \u201C\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ad2xuo\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e3geg4\",\"data-framer-name\":\"Author\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Bhc3RpY2hlIEdyb3Rlc3F1ZSBUcmlhbCBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Pastiche Grotesque Trial SemiBold\", \"Pastiche Grotesque Trial SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(210, 231, 225)\"},children:\"Tripadvisor\"})}),className:\"framer-65470k\",\"data-framer-name\":\"Suparmin Rodriguz\",fonts:[\"CUSTOM;Pastiche Grotesque Trial SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aopgm4\",\"data-styles-preset\":\"uAbkGPPt5\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"November 2023\"})}),className:\"framer-1qzomb5\",\"data-framer-name\":\"14 February 2024\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19gfn3n\",\"data-framer-name\":\"Frame 2058361376\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 152 24\"><path d=\"M 12 17.27 L 16.15 19.78 C 16.91 20.24 17.84 19.56 17.64 18.7 L 16.54 13.98 L 20.21 10.8 C 20.88 10.22 20.52 9.12 19.64 9.05 L 14.81 8.64 L 12.92 4.18 C 12.58 3.37 11.42 3.37 11.08 4.18 L 9.19 8.63 L 4.36 9.04 C 3.48 9.11 3.12 10.21 3.79 10.79 L 7.46 13.97 L 6.36 18.69 C 6.16 19.55 7.09 20.23 7.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 44 17.27 L 48.15 19.78 C 48.91 20.24 49.84 19.56 49.64 18.7 L 48.54 13.98 L 52.21 10.8 C 52.88 10.22 52.52 9.12 51.64 9.05 L 46.81 8.64 L 44.92 4.18 C 44.58 3.37 43.42 3.37 43.08 4.18 L 41.19 8.63 L 36.36 9.04 C 35.48 9.11 35.12 10.21 35.79 10.79 L 39.46 13.97 L 38.36 18.69 C 38.16 19.55 39.09 20.23 39.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 76 17.27 L 80.15 19.78 C 80.91 20.24 81.84 19.56 81.64 18.7 L 80.54 13.98 L 84.21 10.8 C 84.88 10.22 84.52 9.12 83.64 9.05 L 78.81 8.64 L 76.92 4.18 C 76.58 3.37 75.42 3.37 75.08 4.18 L 73.19 8.63 L 68.36 9.04 C 67.48 9.11 67.12 10.21 67.79 10.79 L 71.46 13.97 L 70.36 18.69 C 70.16 19.55 71.09 20.23 71.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 108 17.27 L 112.15 19.78 C 112.91 20.24 113.84 19.56 113.64 18.7 L 112.54 13.98 L 116.21 10.8 C 116.88 10.22 116.52 9.12 115.64 9.05 L 110.81 8.64 L 108.92 4.18 C 108.58 3.37 107.42 3.37 107.08 4.18 L 105.19 8.63 L 100.36 9.04 C 99.48 9.11 99.12 10.21 99.79 10.79 L 103.46 13.97 L 102.36 18.69 C 102.16 19.55 103.09 20.23 103.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 140 17.27 L 144.15 19.78 C 144.91 20.24 145.84 19.56 145.64 18.7 L 144.54 13.98 L 148.21 10.8 C 148.88 10.22 148.52 9.12 147.64 9.05 L 142.81 8.64 L 140.92 4.18 C 140.58 3.37 139.42 3.37 139.08 4.18 L 137.19 8.63 L 132.36 9.04 C 131.48 9.11 131.12 10.21 131.79 10.79 L 135.46 13.97 L 134.36 18.69 C 134.16 19.55 135.09 20.23 135.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path></svg>',svgContentId:9951967654,withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-70tkde\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sw06yb\",\"data-styles-preset\":\"o0OzPgrnc\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"\u201CGood hotel. Great place for a short stay. Simple, but clean and comfortable place. Good breakfast and even British Television :) There is parking available in the basement or even outside and many shops in the neighborhood. \u201C\"})}),className:\"framer-1hbdfim\",\"data-framer-name\":\"\u201C Great hotel in a very good location. Rooms are a little compact, but fine for a few days. Very chic interior. Proper coffee machine. Reception staff are very helpful. Short walk to a lot of bars and restaurant but the hotel has Le Kock which was very good value. Bagels are excellent. \u201C\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x28ry0\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1voqngg\",\"data-framer-name\":\"Author\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Bhc3RpY2hlIEdyb3Rlc3F1ZSBUcmlhbCBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Pastiche Grotesque Trial SemiBold\", \"Pastiche Grotesque Trial SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(210, 231, 225)\"},children:\"Tripadvisor\"})}),className:\"framer-ktdv9x\",\"data-framer-name\":\"Suparmin Rodriguz\",fonts:[\"CUSTOM;Pastiche Grotesque Trial SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aopgm4\",\"data-styles-preset\":\"uAbkGPPt5\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"March 2023\"})}),className:\"framer-tbdrgm\",\"data-framer-name\":\"14 February 2024\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17xxrvz\",\"data-framer-name\":\"Frame 2058361376\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 152 24\"><path d=\"M 12 17.27 L 16.15 19.78 C 16.91 20.24 17.84 19.56 17.64 18.7 L 16.54 13.98 L 20.21 10.8 C 20.88 10.22 20.52 9.12 19.64 9.05 L 14.81 8.64 L 12.92 4.18 C 12.58 3.37 11.42 3.37 11.08 4.18 L 9.19 8.63 L 4.36 9.04 C 3.48 9.11 3.12 10.21 3.79 10.79 L 7.46 13.97 L 6.36 18.69 C 6.16 19.55 7.09 20.23 7.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 44 17.27 L 48.15 19.78 C 48.91 20.24 49.84 19.56 49.64 18.7 L 48.54 13.98 L 52.21 10.8 C 52.88 10.22 52.52 9.12 51.64 9.05 L 46.81 8.64 L 44.92 4.18 C 44.58 3.37 43.42 3.37 43.08 4.18 L 41.19 8.63 L 36.36 9.04 C 35.48 9.11 35.12 10.21 35.79 10.79 L 39.46 13.97 L 38.36 18.69 C 38.16 19.55 39.09 20.23 39.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 76 17.27 L 80.15 19.78 C 80.91 20.24 81.84 19.56 81.64 18.7 L 80.54 13.98 L 84.21 10.8 C 84.88 10.22 84.52 9.12 83.64 9.05 L 78.81 8.64 L 76.92 4.18 C 76.58 3.37 75.42 3.37 75.08 4.18 L 73.19 8.63 L 68.36 9.04 C 67.48 9.11 67.12 10.21 67.79 10.79 L 71.46 13.97 L 70.36 18.69 C 70.16 19.55 71.09 20.23 71.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 108 17.27 L 112.15 19.78 C 112.91 20.24 113.84 19.56 113.64 18.7 L 112.54 13.98 L 116.21 10.8 C 116.88 10.22 116.52 9.12 115.64 9.05 L 110.81 8.64 L 108.92 4.18 C 108.58 3.37 107.42 3.37 107.08 4.18 L 105.19 8.63 L 100.36 9.04 C 99.48 9.11 99.12 10.21 99.79 10.79 L 103.46 13.97 L 102.36 18.69 C 102.16 19.55 103.09 20.23 103.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 140 17.27 L 144.15 19.78 C 144.91 20.24 145.84 19.56 145.64 18.7 L 144.54 13.98 L 148.21 10.8 C 148.88 10.22 148.52 9.12 147.64 9.05 L 142.81 8.64 L 140.92 4.18 C 140.58 3.37 139.42 3.37 139.08 4.18 L 137.19 8.63 L 132.36 9.04 C 131.48 9.11 131.12 10.21 131.79 10.79 L 135.46 13.97 L 134.36 18.69 C 134.16 19.55 135.09 20.23 135.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path></svg>',svgContentId:9951967654,withExternalLayout:true})]})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ipprry-container hidden-14stk3t\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"TzhDneZ6X\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{spfnoSSRf:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:50,arrowPaddingTop:-84,arrowPosition:\"top-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/2ZHkbekkdjeXx3osu5wfzfu2FGA.png\",rightArrow:\"https://framerusercontent.com/images/jqProc5Eltrc7bKwmYywVTyFalY.png\",showMouseControls:true},itemAmount:2}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:88,arrowPaddingTop:-84,arrowPosition:\"top-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/2ZHkbekkdjeXx3osu5wfzfu2FGA.png\",rightArrow:\"https://framerusercontent.com/images/jqProc5Eltrc7bKwmYywVTyFalY.png\",showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1238,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",id:\"TzhDneZ6X\",intervalControl:7,itemAmount:3,layoutId:\"TzhDneZ6X\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-83vshs\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sw06yb\",\"data-styles-preset\":\"o0OzPgrnc\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"\u201C Very comfortable room, with enough space for 3 of us. Clean and tidy. The food was great, excellent breakfast choices. A little bit out from city center but plenty of public bus stops. The virtual reception people were exceptionally helpful with all my queries! Would happily recommend.\u201C\"})}),className:\"framer-1im7tr7\",\"data-framer-name\":\"\u201C Great hotel in a very good location. Rooms are a little compact, but fine for a few days. Very chic interior. Proper coffee machine. Reception staff are very helpful. Short walk to a lot of bars and restaurant but the hotel has Le Kock which was very good value. Bagels are excellent. \u201C\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lkif52\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rg8i8z\",\"data-framer-name\":\"Author\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Tripadvisor\"})}),className:\"framer-282sfn\",\"data-framer-name\":\"Suparmin Rodriguz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aopgm4\",\"data-styles-preset\":\"uAbkGPPt5\",style:{\"--framer-text-color\":\"rgb(210, 231, 225)\"},children:\"March 2024\"})}),className:\"framer-o34vdf\",\"data-framer-name\":\"14 February 2024\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-eu63xi\",\"data-framer-name\":\"Frame 2058361376\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 152 24\"><path d=\"M 12 17.27 L 16.15 19.78 C 16.91 20.24 17.84 19.56 17.64 18.7 L 16.54 13.98 L 20.21 10.8 C 20.88 10.22 20.52 9.12 19.64 9.05 L 14.81 8.64 L 12.92 4.18 C 12.58 3.37 11.42 3.37 11.08 4.18 L 9.19 8.63 L 4.36 9.04 C 3.48 9.11 3.12 10.21 3.79 10.79 L 7.46 13.97 L 6.36 18.69 C 6.16 19.55 7.09 20.23 7.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 44 17.27 L 48.15 19.78 C 48.91 20.24 49.84 19.56 49.64 18.7 L 48.54 13.98 L 52.21 10.8 C 52.88 10.22 52.52 9.12 51.64 9.05 L 46.81 8.64 L 44.92 4.18 C 44.58 3.37 43.42 3.37 43.08 4.18 L 41.19 8.63 L 36.36 9.04 C 35.48 9.11 35.12 10.21 35.79 10.79 L 39.46 13.97 L 38.36 18.69 C 38.16 19.55 39.09 20.23 39.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 76 17.27 L 80.15 19.78 C 80.91 20.24 81.84 19.56 81.64 18.7 L 80.54 13.98 L 84.21 10.8 C 84.88 10.22 84.52 9.12 83.64 9.05 L 78.81 8.64 L 76.92 4.18 C 76.58 3.37 75.42 3.37 75.08 4.18 L 73.19 8.63 L 68.36 9.04 C 67.48 9.11 67.12 10.21 67.79 10.79 L 71.46 13.97 L 70.36 18.69 C 70.16 19.55 71.09 20.23 71.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 108 17.27 L 112.15 19.78 C 112.91 20.24 113.84 19.56 113.64 18.7 L 112.54 13.98 L 116.21 10.8 C 116.88 10.22 116.52 9.12 115.64 9.05 L 110.81 8.64 L 108.92 4.18 C 108.58 3.37 107.42 3.37 107.08 4.18 L 105.19 8.63 L 100.36 9.04 C 99.48 9.11 99.12 10.21 99.79 10.79 L 103.46 13.97 L 102.36 18.69 C 102.16 19.55 103.09 20.23 103.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 140 17.27 L 144.15 19.78 C 144.91 20.24 145.84 19.56 145.64 18.7 L 144.54 13.98 L 148.21 10.8 C 148.88 10.22 148.52 9.12 147.64 9.05 L 142.81 8.64 L 140.92 4.18 C 140.58 3.37 139.42 3.37 139.08 4.18 L 137.19 8.63 L 132.36 9.04 C 131.48 9.11 131.12 10.21 131.79 10.79 L 135.46 13.97 L 134.36 18.69 C 134.16 19.55 135.09 20.23 135.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path></svg>',svgContentId:9951967654,withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jli6xt\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sw06yb\",\"data-styles-preset\":\"o0OzPgrnc\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"\u201C We had a fantastic stay at the ODDSSON. Very comfy beds, excellent water pressure in the shower, a bathroom with heated flooring, delicious breakfast and only a 20 min bus ride from the city centre. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sw06yb\",\"data-styles-preset\":\"o0OzPgrnc\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Food and drinks: The FREE breakfast was incredible. So much choice and so delicious.\u201C\"})]}),className:\"framer-g12ejl\",\"data-framer-name\":\"\u201C Great hotel in a very good location. Rooms are a little compact, but fine for a few days. Very chic interior. Proper coffee machine. Reception staff are very helpful. Short walk to a lot of bars and restaurant but the hotel has Le Kock which was very good value. Bagels are excellent. \u201C\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1usg1i6\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vhnqt3\",\"data-framer-name\":\"Author\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Google\"})}),className:\"framer-1wgcdo9\",\"data-framer-name\":\"Suparmin Rodriguz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aopgm4\",\"data-styles-preset\":\"uAbkGPPt5\",style:{\"--framer-text-color\":\"rgb(210, 231, 225)\"},children:\"December 2024\"})}),className:\"framer-17b5cx\",\"data-framer-name\":\"14 February 2024\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-y84ub0\",\"data-framer-name\":\"Frame 2058361376\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 152 24\"><path d=\"M 12 17.27 L 16.15 19.78 C 16.91 20.24 17.84 19.56 17.64 18.7 L 16.54 13.98 L 20.21 10.8 C 20.88 10.22 20.52 9.12 19.64 9.05 L 14.81 8.64 L 12.92 4.18 C 12.58 3.37 11.42 3.37 11.08 4.18 L 9.19 8.63 L 4.36 9.04 C 3.48 9.11 3.12 10.21 3.79 10.79 L 7.46 13.97 L 6.36 18.69 C 6.16 19.55 7.09 20.23 7.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 44 17.27 L 48.15 19.78 C 48.91 20.24 49.84 19.56 49.64 18.7 L 48.54 13.98 L 52.21 10.8 C 52.88 10.22 52.52 9.12 51.64 9.05 L 46.81 8.64 L 44.92 4.18 C 44.58 3.37 43.42 3.37 43.08 4.18 L 41.19 8.63 L 36.36 9.04 C 35.48 9.11 35.12 10.21 35.79 10.79 L 39.46 13.97 L 38.36 18.69 C 38.16 19.55 39.09 20.23 39.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 76 17.27 L 80.15 19.78 C 80.91 20.24 81.84 19.56 81.64 18.7 L 80.54 13.98 L 84.21 10.8 C 84.88 10.22 84.52 9.12 83.64 9.05 L 78.81 8.64 L 76.92 4.18 C 76.58 3.37 75.42 3.37 75.08 4.18 L 73.19 8.63 L 68.36 9.04 C 67.48 9.11 67.12 10.21 67.79 10.79 L 71.46 13.97 L 70.36 18.69 C 70.16 19.55 71.09 20.23 71.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 108 17.27 L 112.15 19.78 C 112.91 20.24 113.84 19.56 113.64 18.7 L 112.54 13.98 L 116.21 10.8 C 116.88 10.22 116.52 9.12 115.64 9.05 L 110.81 8.64 L 108.92 4.18 C 108.58 3.37 107.42 3.37 107.08 4.18 L 105.19 8.63 L 100.36 9.04 C 99.48 9.11 99.12 10.21 99.79 10.79 L 103.46 13.97 L 102.36 18.69 C 102.16 19.55 103.09 20.23 103.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 140 17.27 L 144.15 19.78 C 144.91 20.24 145.84 19.56 145.64 18.7 L 144.54 13.98 L 148.21 10.8 C 148.88 10.22 148.52 9.12 147.64 9.05 L 142.81 8.64 L 140.92 4.18 C 140.58 3.37 139.42 3.37 139.08 4.18 L 137.19 8.63 L 132.36 9.04 C 131.48 9.11 131.12 10.21 131.79 10.79 L 135.46 13.97 L 134.36 18.69 C 134.16 19.55 135.09 20.23 135.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path></svg>',svgContentId:9951967654,withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12ijyk\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sw06yb\",\"data-styles-preset\":\"o0OzPgrnc\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"\u201CVery clean and nice rooms. The drinks and dining area are relaxing. Hassle free access and great parking facility. The breakfasts were healthy and delicious. All round very happy. There are also a number of nice restaurants and convenience stores around.\u201C\"})}),className:\"framer-5q2in9\",\"data-framer-name\":\"\u201C Great hotel in a very good location. Rooms are a little compact, but fine for a few days. Very chic interior. Proper coffee machine. Reception staff are very helpful. Short walk to a lot of bars and restaurant but the hotel has Le Kock which was very good value. Bagels are excellent. \u201C\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y1tsv8\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mhatit\",\"data-framer-name\":\"Author\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Tripadvisor\"})}),className:\"framer-r2n1in\",\"data-framer-name\":\"Suparmin Rodriguz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aopgm4\",\"data-styles-preset\":\"uAbkGPPt5\",style:{\"--framer-text-color\":\"rgb(210, 231, 225)\"},children:\"January 2025\"})}),className:\"framer-120w34h\",\"data-framer-name\":\"14 February 2024\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-142brs6\",\"data-framer-name\":\"Frame 2058361376\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 152 20\"><path d=\"M 12 17.27 L 16.15 19.78 C 16.91 20.24 17.84 19.56 17.64 18.7 L 16.54 13.98 L 20.21 10.8 C 20.88 10.22 20.52 9.12 19.64 9.05 L 14.81 8.64 L 12.92 4.18 C 12.58 3.37 11.42 3.37 11.08 4.18 L 9.19 8.63 L 4.36 9.04 C 3.48 9.11 3.12 10.21 3.79 10.79 L 7.46 13.97 L 6.36 18.69 C 6.16 19.55 7.09 20.23 7.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 44 17.27 L 48.15 19.78 C 48.91 20.24 49.84 19.56 49.64 18.7 L 48.54 13.98 L 52.21 10.8 C 52.88 10.22 52.52 9.12 51.64 9.05 L 46.81 8.64 L 44.92 4.18 C 44.58 3.37 43.42 3.37 43.08 4.18 L 41.19 8.63 L 36.36 9.04 C 35.48 9.11 35.12 10.21 35.79 10.79 L 39.46 13.97 L 38.36 18.69 C 38.16 19.55 39.09 20.23 39.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 76 17.27 L 80.15 19.78 C 80.91 20.24 81.84 19.56 81.64 18.7 L 80.54 13.98 L 84.21 10.8 C 84.88 10.22 84.52 9.12 83.64 9.05 L 78.81 8.64 L 76.92 4.18 C 76.58 3.37 75.42 3.37 75.08 4.18 L 73.19 8.63 L 68.36 9.04 C 67.48 9.11 67.12 10.21 67.79 10.79 L 71.46 13.97 L 70.36 18.69 C 70.16 19.55 71.09 20.23 71.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 108 17.27 L 112.15 19.78 C 112.91 20.24 113.84 19.56 113.64 18.7 L 112.54 13.98 L 116.21 10.8 C 116.88 10.22 116.52 9.12 115.64 9.05 L 110.81 8.64 L 108.92 4.18 C 108.58 3.37 107.42 3.37 107.08 4.18 L 105.19 8.63 L 100.36 9.04 C 99.48 9.11 99.12 10.21 99.79 10.79 L 103.46 13.97 L 102.36 18.69 C 102.16 19.55 103.09 20.23 103.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 140 17.27 L 144.15 19.78 C 144.91 20.24 145.84 19.56 145.64 18.7 L 144.54 13.98 L 148.21 10.8 C 148.88 10.22 148.52 9.12 147.64 9.05 L 142.81 8.64 L 140.92 4.18 C 140.58 3.37 139.42 3.37 139.08 4.18 L 137.19 8.63 L 132.36 9.04 C 131.48 9.11 131.12 10.21 131.79 10.79 L 135.46 13.97 L 134.36 18.69 C 134.16 19.55 135.09 20.23 135.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path></svg>',svgContentId:11482001621,withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xlyotq\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sw06yb\",\"data-styles-preset\":\"o0OzPgrnc\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"\u201CI had a delightful stay at this centrally located hotel. The convenience of being in the heart of the city made exploring a breeze. The breakfast offered a satisfying start to the day, and the rooms, though not overly spacious, were comfortably sized. Overall, my experience was quite positive, making it a worthwhile choice for anyone seeking a well-located, pleasant stay.\u201C\"})}),className:\"framer-bdbxdq\",\"data-framer-name\":\"\u201C Great hotel in a very good location. Rooms are a little compact, but fine for a few days. Very chic interior. Proper coffee machine. Reception staff are very helpful. Short walk to a lot of bars and restaurant but the hotel has Le Kock which was very good value. Bagels are excellent. \u201C\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uavz3z\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-suzmgq\",\"data-framer-name\":\"Author\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Google\"})}),className:\"framer-15gv1vr\",\"data-framer-name\":\"Suparmin Rodriguz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aopgm4\",\"data-styles-preset\":\"uAbkGPPt5\",style:{\"--framer-text-color\":\"rgb(210, 231, 225)\"},children:\"Desember 2023\"})}),className:\"framer-1c225hr\",\"data-framer-name\":\"14 February 2024\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1g0oagg\",\"data-framer-name\":\"Frame 2058361376\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 152 20\"><path d=\"M 44 17.27 L 48.15 19.78 C 48.91 20.24 49.84 19.56 49.64 18.7 L 48.54 13.98 L 52.21 10.8 C 52.88 10.22 52.52 9.12 51.64 9.05 L 46.81 8.64 L 44.92 4.18 C 44.58 3.37 43.42 3.37 43.08 4.18 L 41.19 8.63 L 36.36 9.04 C 35.48 9.11 35.12 10.21 35.79 10.79 L 39.46 13.97 L 38.36 18.69 C 38.16 19.55 39.09 20.23 39.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 76 17.27 L 80.15 19.78 C 80.91 20.24 81.84 19.56 81.64 18.7 L 80.54 13.98 L 84.21 10.8 C 84.88 10.22 84.52 9.12 83.64 9.05 L 78.81 8.64 L 76.92 4.18 C 76.58 3.37 75.42 3.37 75.08 4.18 L 73.19 8.63 L 68.36 9.04 C 67.48 9.11 67.12 10.21 67.79 10.79 L 71.46 13.97 L 70.36 18.69 C 70.16 19.55 71.09 20.23 71.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 108 17.27 L 112.15 19.78 C 112.91 20.24 113.84 19.56 113.64 18.7 L 112.54 13.98 L 116.21 10.8 C 116.88 10.22 116.52 9.12 115.64 9.05 L 110.81 8.64 L 108.92 4.18 C 108.58 3.37 107.42 3.37 107.08 4.18 L 105.19 8.63 L 100.36 9.04 C 99.48 9.11 99.12 10.21 99.79 10.79 L 103.46 13.97 L 102.36 18.69 C 102.16 19.55 103.09 20.23 103.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 140 17.27 L 144.15 19.78 C 144.91 20.24 145.84 19.56 145.64 18.7 L 144.54 13.98 L 148.21 10.8 C 148.88 10.22 148.52 9.12 147.64 9.05 L 142.81 8.64 L 140.92 4.18 C 140.58 3.37 139.42 3.37 139.08 4.18 L 137.19 8.63 L 132.36 9.04 C 131.48 9.11 131.12 10.21 131.79 10.79 L 135.46 13.97 L 134.36 18.69 C 134.16 19.55 135.09 20.23 135.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path></svg>',svgContentId:10341740171,withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rfl2jw\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sw06yb\",\"data-styles-preset\":\"o0OzPgrnc\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"\u201CLoved the hotel. Breakfast great, rooms comfortable and decent size. All the staff lovely and welcoming. Location wise is great, a little further away from the city but this had a positive impact when we had gone on excursions as the coach dropped us off outside the hotel on route to the coach depot. Local buses are great and stops right outside of the hotel. All in all I highly recommend this hotel \u201C\"})}),className:\"framer-bcjj2q\",\"data-framer-name\":\"\u201C Great hotel in a very good location. Rooms are a little compact, but fine for a few days. Very chic interior. Proper coffee machine. Reception staff are very helpful. Short walk to a lot of bars and restaurant but the hotel has Le Kock which was very good value. Bagels are excellent. \u201C\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-eialo0\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rkclqu\",\"data-framer-name\":\"Author\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19egeq3\",\"data-styles-preset\":\"eIWt4xath\",style:{\"--framer-text-color\":\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225))\"},children:\"Google\"})}),className:\"framer-aglkdt\",\"data-framer-name\":\"Suparmin Rodriguz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aopgm4\",\"data-styles-preset\":\"uAbkGPPt5\",style:{\"--framer-text-color\":\"rgb(210, 231, 225)\"},children:\"March 2023\"})}),className:\"framer-kts2g5\",\"data-framer-name\":\"14 February 2024\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1t8seg3\",\"data-framer-name\":\"Frame 2058361376\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 152 20\"><path d=\"M 12 17.27 L 16.15 19.78 C 16.91 20.24 17.84 19.56 17.64 18.7 L 16.54 13.98 L 20.21 10.8 C 20.88 10.22 20.52 9.12 19.64 9.05 L 14.81 8.64 L 12.92 4.18 C 12.58 3.37 11.42 3.37 11.08 4.18 L 9.19 8.63 L 4.36 9.04 C 3.48 9.11 3.12 10.21 3.79 10.79 L 7.46 13.97 L 6.36 18.69 C 6.16 19.55 7.09 20.23 7.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 44 17.27 L 48.15 19.78 C 48.91 20.24 49.84 19.56 49.64 18.7 L 48.54 13.98 L 52.21 10.8 C 52.88 10.22 52.52 9.12 51.64 9.05 L 46.81 8.64 L 44.92 4.18 C 44.58 3.37 43.42 3.37 43.08 4.18 L 41.19 8.63 L 36.36 9.04 C 35.48 9.11 35.12 10.21 35.79 10.79 L 39.46 13.97 L 38.36 18.69 C 38.16 19.55 39.09 20.23 39.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 76 17.27 L 80.15 19.78 C 80.91 20.24 81.84 19.56 81.64 18.7 L 80.54 13.98 L 84.21 10.8 C 84.88 10.22 84.52 9.12 83.64 9.05 L 78.81 8.64 L 76.92 4.18 C 76.58 3.37 75.42 3.37 75.08 4.18 L 73.19 8.63 L 68.36 9.04 C 67.48 9.11 67.12 10.21 67.79 10.79 L 71.46 13.97 L 70.36 18.69 C 70.16 19.55 71.09 20.23 71.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 108 17.27 L 112.15 19.78 C 112.91 20.24 113.84 19.56 113.64 18.7 L 112.54 13.98 L 116.21 10.8 C 116.88 10.22 116.52 9.12 115.64 9.05 L 110.81 8.64 L 108.92 4.18 C 108.58 3.37 107.42 3.37 107.08 4.18 L 105.19 8.63 L 100.36 9.04 C 99.48 9.11 99.12 10.21 99.79 10.79 L 103.46 13.97 L 102.36 18.69 C 102.16 19.55 103.09 20.23 103.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path><path d=\"M 140 17.27 L 144.15 19.78 C 144.91 20.24 145.84 19.56 145.64 18.7 L 144.54 13.98 L 148.21 10.8 C 148.88 10.22 148.52 9.12 147.64 9.05 L 142.81 8.64 L 140.92 4.18 C 140.58 3.37 139.42 3.37 139.08 4.18 L 137.19 8.63 L 132.36 9.04 C 131.48 9.11 131.12 10.21 131.79 10.79 L 135.46 13.97 L 134.36 18.69 C 134.16 19.55 135.09 20.23 135.85 19.77 Z\" fill=\"var(--token-707ac4da-558a-4b35-924d-91ffeee79770, rgb(210, 231, 225)) /* {&quot;name&quot;:&quot;Lavander White&quot;} */\"></path></svg>',svgContentId:11482001621,withExternalLayout:true})]})]})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{y:(componentViewport?.y||0)+0+1494+0+10102.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:808,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ibnsfr-container\",nodeId:\"IAn8j1QCU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{variant:\"KDvdorct9\"},spfnoSSRf:{variant:\"mXV7PvmNs\"}},children:/*#__PURE__*/_jsx(CallForAction,{height:\"100%\",IavGTomFJ:\"Book direct and get the best price and a welcome drink\",id:\"IAn8j1QCU\",layoutId:\"IAn8j1QCU\",style:{width:\"100%\"},uuilUuuUM:\"Book now\",variant:\"jCQUfPbLZ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{y:(componentViewport?.y||0)+0+1494+0+10910.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:952,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2tdyzc-container\",nodeId:\"fn2Kh1Gp0\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{variant:\"s916jkrrP\"},spfnoSSRf:{variant:\"NiTitGfPE\"}},children:/*#__PURE__*/_jsx(FAQ1,{height:\"100%\",id:\"fn2Kh1Gp0\",layoutId:\"fn2Kh1Gp0\",style:{width:\"100%\"},variant:\"rAuQTm6o8\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{y:(componentViewport?.y||0)+0+13356.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:996,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rdtda4-container\",nodeId:\"u6TF8aR5_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7xXBsXjr:{variant:\"cYbpwloLc\"},spfnoSSRf:{variant:\"xAXdIFe2w\"}},children:/*#__PURE__*/_jsx(Footer4Copy,{height:\"100%\",id:\"u6TF8aR5_\",layoutId:\"u6TF8aR5_\",style:{width:\"100%\"},variant:\"RVpUYpiVo\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3WX1r.framer-lux5qc, .framer-3WX1r .framer-lux5qc { display: block; }\",\".framer-3WX1r.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-d86dcff7-07a6-451a-9243-08748dd8b303, #122943); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-3WX1r .framer-1yeeyra { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 5; }\",\".framer-3WX1r .framer-1vtum0x-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-3WX1r .framer-1b7wdeo-container { flex: none; height: auto; position: relative; width: 100%; z-index: 5; }\",\".framer-3WX1r .framer-1oeuad, .framer-3WX1r .framer-7otupm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-1v0faob { 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: 80px 0px 88px 0px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-hxtcc8 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 76px; border-bottom-right-radius: 76px; border-top-left-radius: 76px; border-top-right-radius: 76px; box-shadow: 0px 15px 70px 0px rgba(10, 11, 16, 0.1); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px 24px 12px 12px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-3WX1r .framer-c62gx5 { flex: none; height: 40px; position: relative; width: 41px; }\",\".framer-3WX1r .framer-1ljsx84 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-3WX1r .framer-acbes0 { flex: none; height: 16px; position: relative; width: 97px; }\",\".framer-3WX1r .framer-y41koj { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 96px; word-break: break-word; word-wrap: break-word; }\",\".framer-3WX1r .framer-1n63u06 { 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: 100%; }\",\".framer-3WX1r .framer-16qt63k { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-3WX1r .framer-ri3ybr { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 452px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-3WX1r .framer-1jxnjkt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 70px 0px 0px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-3WX1r .framer-elrwks { align-content: center; align-items: center; background-color: var(--token-ed7ffdbb-4ecb-47f9-a08e-47d50bdc4a8c, #ffffff); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 1px 100px 0px rgba(0, 0, 0, 0.07); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px 48px 0px 48px; position: absolute; top: 0px; transform: translateX(-50%); width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-3WX1r .framer-ddldgn-container { flex: none; height: 100px; position: relative; width: 880px; z-index: 1; }\",\".framer-3WX1r .framer-ki262w { aspect-ratio: 2.5562130177514795 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 470px); overflow: visible; position: relative; width: 100%; }\",\".framer-3WX1r .framer-1eg7dis { align-content: center; align-items: center; background-color: var(--token-d86dcff7-07a6-451a-9243-08748dd8b303, #122943); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-125uutl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-3WX1r .framer-1ixcpzj, .framer-3WX1r .framer-bfl0gh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 60px; height: min-content; justify-content: center; max-width: 1240px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-17tf6e6, .framer-3WX1r .framer-dmhjal { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-3WX1r .framer-18x83qd, .framer-3WX1r .framer-1nopil9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-l47ly5, .framer-3WX1r .framer-1qy5u1r, .framer-3WX1r .framer-a6v22v, .framer-3WX1r .framer-1683efs, .framer-3WX1r .framer-1ii25lj, .framer-3WX1r .framer-52wyu3, .framer-3WX1r .framer-b7m2ly, .framer-3WX1r .framer-1ey1bmx, .framer-3WX1r .framer-1pl9h0z, .framer-3WX1r .framer-8q8cfa, .framer-3WX1r .framer-1ijvv70, .framer-3WX1r .framer-s0l5xh, .framer-3WX1r .framer-q0ncot, .framer-3WX1r .framer-16xnt63, .framer-3WX1r .framer-eldenp, .framer-3WX1r .framer-u10ls4, .framer-3WX1r .framer-1yu0200, .framer-3WX1r .framer-a7o3gm, .framer-3WX1r .framer-p9vj0b, .framer-3WX1r .framer-fnfjtg, .framer-3WX1r .framer-1mzzc6y, .framer-3WX1r .framer-1hbdfim, .framer-3WX1r .framer-1im7tr7, .framer-3WX1r .framer-g12ejl, .framer-3WX1r .framer-5q2in9, .framer-3WX1r .framer-bdbxdq, .framer-3WX1r .framer-bcjj2q { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3WX1r .framer-13umr6y { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 70%; word-break: break-word; word-wrap: break-word; }\",\".framer-3WX1r .framer-1rl993t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px 0px 48px 0px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-xflm9m, .framer-3WX1r .framer-w5e94o, .framer-3WX1r .framer-zkxapu, .framer-3WX1r .framer-xg6qjm, .framer-3WX1r .framer-1wkp64z, .framer-3WX1r .framer-18k3xa8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-530q0r, .framer-3WX1r .framer-i8er01, .framer-3WX1r .framer-1h3wa78 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-3WX1r .framer-15lu7h3, .framer-3WX1r .framer-15nyc5y, .framer-3WX1r .framer-1ua0ehc, .framer-3WX1r .framer-j7ayl1, .framer-3WX1r .framer-1o0albj, .framer-3WX1r .framer-br5sp, .framer-3WX1r .framer-iw0gft, .framer-3WX1r .framer-1l08ix4, .framer-3WX1r .framer-1usqbj3, .framer-3WX1r .framer-1kq0sbs { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); overflow: visible; position: relative; width: 22px; }\",\".framer-3WX1r .framer-1emdg5q, .framer-3WX1r .framer-13fmkwv, .framer-3WX1r .framer-1hip2v4, .framer-3WX1r .framer-1qmivml { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-3WX1r .framer-vfmu0y, .framer-3WX1r .framer-e26r7p, .framer-3WX1r .framer-khytwf, .framer-3WX1r .framer-he0952, .framer-3WX1r .framer-19cj83n, .framer-3WX1r .framer-6wdqbo, .framer-3WX1r .framer-zl9uoe, .framer-3WX1r .framer-65470k, .framer-3WX1r .framer-ktdv9x, .framer-3WX1r .framer-282sfn, .framer-3WX1r .framer-1wgcdo9, .framer-3WX1r .framer-r2n1in, .framer-3WX1r .framer-15gv1vr, .framer-3WX1r .framer-aglkdt { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-3WX1r .framer-1jvvo7v, .framer-3WX1r .framer-k7nqqk, .framer-3WX1r .framer-1hlsu2p, .framer-3WX1r .framer-1brsjcj, .framer-3WX1r .framer-hovmak { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-3WX1r .framer-dk52wh-container, .framer-3WX1r .framer-sjbbk0-container, .framer-3WX1r .framer-vqumrm-container, .framer-3WX1r .framer-z7719o-container, .framer-3WX1r .framer-feqn0z-container, .framer-3WX1r .framer-13npky7-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-3WX1r .framer-1p5mqbk, .framer-3WX1r .framer-8owkj0 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-3WX1r .framer-12num2s, .framer-3WX1r .framer-ao13u0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-3WX1r .framer-1gtn9c9, .framer-3WX1r .framer-14y0z5n { aspect-ratio: 1 / 1; border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; flex: none; height: var(--framer-aspect-ratio-supported, 546px); position: relative; width: 100%; }\",\".framer-3WX1r .framer-1x7qzgy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1240px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-yr7cdb, .framer-3WX1r .framer-14pgoyl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-3WX1r .framer-ofubm6 { aspect-ratio: 1 / 1; border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 546px); overflow: visible; position: relative; width: 1px; }\",\".framer-3WX1r .framer-7scaa { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-3WX1r .framer-1lz01nt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-1a5t5gd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-xl2mjk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-1vxggbs { align-content: center; align-items: center; background-color: var(--token-ed7ffdbb-4ecb-47f9-a08e-47d50bdc4a8c, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 120px 24px 120px 24px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-1601k82 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1240px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-3WX1r .framer-1rsjubk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px 0px 48px 0px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-7wyauh, .framer-3WX1r .framer-1de3tue, .framer-3WX1r .framer-1y9w5is, .framer-3WX1r .framer-5ebqxz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-8llva, .framer-3WX1r .framer-ilhpad, .framer-3WX1r .framer-1653opz, .framer-3WX1r .framer-q0rdfg { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 22px; }\",\".framer-3WX1r .framer-rx9ve5, .framer-3WX1r .framer-q8686j, .framer-3WX1r .framer-16po0a5, .framer-3WX1r .framer-8cy0xb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-3WX1r .framer-gkq8no, .framer-3WX1r .framer-gwzqr, .framer-3WX1r .framer-ynnml7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-3WX1r .framer-13fj7vv { aspect-ratio: 1.0228802153432033 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 534px); overflow: visible; position: relative; width: 1px; }\",\".framer-3WX1r .framer-1bnwaih { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-3WX1r .framer-15k5dh1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-1nfrizl { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 389px; word-break: break-word; word-wrap: break-word; }\",\".framer-3WX1r .framer-1y42ynp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px 0px 68px 0px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-1pqanzt, .framer-3WX1r .framer-1e6a4nx, .framer-3WX1r .framer-2dv5g8, .framer-3WX1r .framer-1164qju { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: 32px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-qgpzbt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px 0px 0px 24px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-10hby4m, .framer-3WX1r .framer-1o1oxb5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1260px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-tvthzy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 45%; }\",\".framer-3WX1r .framer-1bvb91u, .framer-3WX1r .framer-1962j89 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 88px 60px 0px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-1mh8v23, .framer-3WX1r .framer-dc9xc2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-3WX1r .framer-15y7se4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 362px; overflow: hidden; padding: 0px; position: relative; width: 32%; }\",\".framer-3WX1r .framer-gupisw-container, .framer-3WX1r .framer-cp4efn-container, .framer-3WX1r .framer-hnogpt-container, .framer-3WX1r .framer-1ibnsfr-container, .framer-3WX1r .framer-2tdyzc-container, .framer-3WX1r .framer-rdtda4-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-3WX1r .framer-1h22b2o, .framer-3WX1r .framer-1w0ntn7, .framer-3WX1r .framer-1spe2te, .framer-3WX1r .framer-1bxj2al { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 362px; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-3WX1r .framer-46ednx, .framer-3WX1r .framer-lv759b, .framer-3WX1r .framer-10k93yt, .framer-3WX1r .framer-1l5iisl, .framer-3WX1r .framer-1mp1qv2, .framer-3WX1r .framer-yqxzos, .framer-3WX1r .framer-1y8daew, .framer-3WX1r .framer-acnbd1, .framer-3WX1r .framer-e6c0f1, .framer-3WX1r .framer-qloriz, .framer-3WX1r .framer-3u6hhu, .framer-3WX1r .framer-1lzin84, .framer-3WX1r .framer-tl0026 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 17px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 250px; }\",\".framer-3WX1r .framer-a4e37r, .framer-3WX1r .framer-dr0fs9, .framer-3WX1r .framer-1u17xxl, .framer-3WX1r .framer-10jwtqx, .framer-3WX1r .framer-ytugx4, .framer-3WX1r .framer-5pec4v, .framer-3WX1r .framer-8zz98s, .framer-3WX1r .framer-vfx9fc, .framer-3WX1r .framer-mt1ps7, .framer-3WX1r .framer-5c4v49, .framer-3WX1r .framer-1nsomuw, .framer-3WX1r .framer-1od2qck, .framer-3WX1r .framer-cw2fy7 { aspect-ratio: 0.9768518518518519 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 205px); position: relative; width: 100%; }\",\".framer-3WX1r .framer-1y4pr7o, .framer-3WX1r .framer-c4hrw7, .framer-3WX1r .framer-xmdysd, .framer-3WX1r .framer-hdzt1q, .framer-3WX1r .framer-d5goto, .framer-3WX1r .framer-qholri, .framer-3WX1r .framer-ire513, .framer-3WX1r .framer-1ld2nkb, .framer-3WX1r .framer-1jtx8k4, .framer-3WX1r .framer-fnxxtf, .framer-3WX1r .framer-y6nxo3, .framer-3WX1r .framer-1pjso3w, .framer-3WX1r .framer-nbwxhi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-width: 100%; padding: 0px; position: relative; width: 250px; }\",\".framer-3WX1r .framer-1c45adw, .framer-3WX1r .framer-1sgmerv, .framer-3WX1r .framer-ylmrop, .framer-3WX1r .framer-1rdoflh, .framer-3WX1r .framer-1b1ygml, .framer-3WX1r .framer-1xh5zj4, .framer-3WX1r .framer-11k61tb, .framer-3WX1r .framer-1fln1qi, .framer-3WX1r .framer-ypxlbi, .framer-3WX1r .framer-1hppv7g, .framer-3WX1r .framer-l5i5fd, .framer-3WX1r .framer-12865rp, .framer-3WX1r .framer-yn6uos, .framer-3WX1r .framer-9aayhd, .framer-3WX1r .framer-xgd1qi, .framer-3WX1r .framer-64vw0x, .framer-3WX1r .framer-1x3aewk, .framer-3WX1r .framer-16vremt, .framer-3WX1r .framer-lq4p2n, .framer-3WX1r .framer-136tnai, .framer-3WX1r .framer-lgqa9s, .framer-3WX1r .framer-u41gs9, .framer-3WX1r .framer-9fidz, .framer-3WX1r .framer-1yt72ig { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3WX1r .framer-17kxtx, .framer-3WX1r .framer-yu5nef, .framer-3WX1r .framer-1v4khq4, .framer-3WX1r .framer-8le5px { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-3WX1r .framer-18lbm5w, .framer-3WX1r .framer-9m2fg7, .framer-3WX1r .framer-115fd3h, .framer-3WX1r .framer-17ks2gx, .framer-3WX1r .framer-12z2ksm, .framer-3WX1r .framer-eti07m, .framer-3WX1r .framer-9xjfiq, .framer-3WX1r .framer-e4hm2h, .framer-3WX1r .framer-y5hw67, .framer-3WX1r .framer-wzq6gv, .framer-3WX1r .framer-p3fbuj, .framer-3WX1r .framer-18jw1rh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 21px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-3WX1r .framer-87amvk, .framer-3WX1r .framer-u8u8bn { aspect-ratio: 0.9750566893424036 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 441px); position: relative; width: 430px; }\",\".framer-3WX1r .framer-avn3bd, .framer-3WX1r .framer-4m51v, .framer-3WX1r .framer-178y9eq, .framer-3WX1r .framer-1flx31, .framer-3WX1r .framer-gxxm7s, .framer-3WX1r .framer-1bvt9a5, .framer-3WX1r .framer-fl7rc8, .framer-3WX1r .framer-1ahho63, .framer-3WX1r .framer-sjwkbw, .framer-3WX1r .framer-17ajk47, .framer-3WX1r .framer-z2u41v, .framer-3WX1r .framer-1wh083o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-width: 100%; padding: 0px; position: relative; text-decoration: none; width: 250px; }\",\".framer-3WX1r .framer-kal3om, .framer-3WX1r .framer-172xfdl, .framer-3WX1r .framer-1jtiyd4, .framer-3WX1r .framer-bbvzl6, .framer-3WX1r .framer-1k9g4wv, .framer-3WX1r .framer-18bcqsv, .framer-3WX1r .framer-13o9bz, .framer-3WX1r .framer-1jekeb1, .framer-3WX1r .framer-1l5czlc, .framer-3WX1r .framer-11eecf9 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 441px; position: relative; width: 430px; }\",\".framer-3WX1r .framer-1tnyby4, .framer-3WX1r .framer-cj9e3t, .framer-3WX1r .framer-1dhaw1q, .framer-3WX1r .framer-oc5yv4, .framer-3WX1r .framer-1lsl2dc, .framer-3WX1r .framer-cy9pwx, .framer-3WX1r .framer-ca1tpn, .framer-3WX1r .framer-bkhvjv { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 525px; justify-content: flex-start; padding: 0px; position: relative; width: 430px; }\",\".framer-3WX1r .framer-ryu4iq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 525px; justify-content: flex-start; padding: 0px; position: relative; width: 430px; }\",\".framer-3WX1r .framer-fpcdc4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 88px 0px 0px 24px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-qg31b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 38%; }\",\".framer-3WX1r .framer-8yabqu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 68px 0px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-ayk2ul { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-3WX1r .framer-lou8w6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-501isi-container { flex: none; height: 450px; position: relative; width: 390px; }\",\".framer-3WX1r .framer-exf7n3, .framer-3WX1r .framer-11db8c { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 350px; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-3WX1r .framer-1mo38e6 { flex: none; height: 72px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3WX1r .framer-1gsdb3l, .framer-3WX1r .framer-oux4ij, .framer-3WX1r .framer-xfxmt3, .framer-3WX1r .framer-1mqu0vt, .framer-3WX1r .framer-g0f4hc, .framer-3WX1r .framer-p53d1n, .framer-3WX1r .framer-1fyb15e { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 350px; justify-content: flex-start; padding: 0px; position: relative; width: 250px; }\",\".framer-3WX1r .framer-1ie5bct, .framer-3WX1r .framer-6w545t, .framer-3WX1r .framer-1ny784q, .framer-3WX1r .framer-b86moh, .framer-3WX1r .framer-m9ytg4, .framer-3WX1r .framer-1yrnc4s, .framer-3WX1r .framer-1w9lenj, .framer-3WX1r .framer-13rb0p9 { flex: none; height: 108px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3WX1r .framer-rbdlju { align-content: center; align-items: center; background-color: var(--token-d86dcff7-07a6-451a-9243-08748dd8b303, #122943); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-1ddknom { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-mn6xcb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 158px; justify-content: center; max-width: 1240px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-3WX1r .framer-vhd4i2-container { flex: none; height: 380px; position: relative; width: 380px; }\",\".framer-3WX1r .framer-ernrn4, .framer-3WX1r .framer-1cz31n2, .framer-3WX1r .framer-70tkde { align-content: center; align-items: center; background-color: #173658; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; height: 530px; justify-content: space-between; padding: 30px; position: relative; width: 390px; }\",\".framer-3WX1r .framer-s0ddgn, .framer-3WX1r .framer-1x28ry0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-14bissh, .framer-3WX1r .framer-1e3geg4, .framer-3WX1r .framer-1voqngg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-4njmrn, .framer-3WX1r .framer-1qzomb5, .framer-3WX1r .framer-tbdrgm, .framer-3WX1r .framer-o34vdf, .framer-3WX1r .framer-17b5cx, .framer-3WX1r .framer-120w34h, .framer-3WX1r .framer-1c225hr, .framer-3WX1r .framer-kts2g5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.6; position: relative; white-space: pre; width: auto; }\",\".framer-3WX1r .framer-ena6xl, .framer-3WX1r .framer-19gfn3n, .framer-3WX1r .framer-17xxrvz, .framer-3WX1r .framer-eu63xi, .framer-3WX1r .framer-y84ub0 { flex: none; height: 24px; position: relative; width: 152px; }\",\".framer-3WX1r .framer-ad2xuo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-1ipprry-container { flex: none; height: 500px; max-width: 1240px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-83vshs, .framer-3WX1r .framer-1jli6xt, .framer-3WX1r .framer-12ijyk, .framer-3WX1r .framer-xlyotq { align-content: center; align-items: center; background-color: #173658; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; height: 420px; justify-content: space-between; padding: 30px; position: relative; width: 520px; }\",\".framer-3WX1r .framer-lkif52, .framer-3WX1r .framer-1usg1i6, .framer-3WX1r .framer-1y1tsv8, .framer-3WX1r .framer-1uavz3z, .framer-3WX1r .framer-eialo0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3WX1r .framer-rg8i8z, .framer-3WX1r .framer-vhnqt3, .framer-3WX1r .framer-1mhatit, .framer-3WX1r .framer-suzmgq, .framer-3WX1r .framer-rkclqu { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-3WX1r .framer-142brs6, .framer-3WX1r .framer-1g0oagg, .framer-3WX1r .framer-1t8seg3 { flex: none; height: 20px; position: relative; width: 152px; }\",\".framer-3WX1r .framer-rfl2jw { align-content: center; align-items: center; background-color: #173658; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; height: 430px; justify-content: space-between; padding: 30px; position: relative; width: 520px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3WX1r.framer-72rtr7, .framer-3WX1r .framer-1yeeyra, .framer-3WX1r .framer-1oeuad, .framer-3WX1r .framer-1v0faob, .framer-3WX1r .framer-hxtcc8, .framer-3WX1r .framer-1ljsx84, .framer-3WX1r .framer-1n63u06, .framer-3WX1r .framer-1jxnjkt, .framer-3WX1r .framer-elrwks, .framer-3WX1r .framer-7otupm, .framer-3WX1r .framer-1eg7dis, .framer-3WX1r .framer-125uutl, .framer-3WX1r .framer-1ixcpzj, .framer-3WX1r .framer-17tf6e6, .framer-3WX1r .framer-18x83qd, .framer-3WX1r .framer-1rl993t, .framer-3WX1r .framer-xflm9m, .framer-3WX1r .framer-530q0r, .framer-3WX1r .framer-w5e94o, .framer-3WX1r .framer-i8er01, .framer-3WX1r .framer-zkxapu, .framer-3WX1r .framer-xg6qjm, .framer-3WX1r .framer-1jvvo7v, .framer-3WX1r .framer-1p5mqbk, .framer-3WX1r .framer-12num2s, .framer-3WX1r .framer-1x7qzgy, .framer-3WX1r .framer-yr7cdb, .framer-3WX1r .framer-7scaa, .framer-3WX1r .framer-1lz01nt, .framer-3WX1r .framer-1a5t5gd, .framer-3WX1r .framer-xl2mjk, .framer-3WX1r .framer-k7nqqk, .framer-3WX1r .framer-1vxggbs, .framer-3WX1r .framer-1601k82, .framer-3WX1r .framer-dmhjal, .framer-3WX1r .framer-1nopil9, .framer-3WX1r .framer-1rsjubk, .framer-3WX1r .framer-7wyauh, .framer-3WX1r .framer-rx9ve5, .framer-3WX1r .framer-1de3tue, .framer-3WX1r .framer-gkq8no, .framer-3WX1r .framer-q8686j, .framer-3WX1r .framer-1y9w5is, .framer-3WX1r .framer-gwzqr, .framer-3WX1r .framer-16po0a5, .framer-3WX1r .framer-5ebqxz, .framer-3WX1r .framer-ynnml7, .framer-3WX1r .framer-8cy0xb, .framer-3WX1r .framer-1hlsu2p, .framer-3WX1r .framer-8owkj0, .framer-3WX1r .framer-ao13u0, .framer-3WX1r .framer-bfl0gh, .framer-3WX1r .framer-14pgoyl, .framer-3WX1r .framer-1bnwaih, .framer-3WX1r .framer-15k5dh1, .framer-3WX1r .framer-1y42ynp, .framer-3WX1r .framer-1pqanzt, .framer-3WX1r .framer-1e6a4nx, .framer-3WX1r .framer-qgpzbt, .framer-3WX1r .framer-10hby4m, .framer-3WX1r .framer-tvthzy, .framer-3WX1r .framer-1bvb91u, .framer-3WX1r .framer-1mh8v23, .framer-3WX1r .framer-2dv5g8, .framer-3WX1r .framer-1h3wa78, .framer-3WX1r .framer-1164qju, .framer-3WX1r .framer-1brsjcj, .framer-3WX1r .framer-15y7se4, .framer-3WX1r .framer-1h22b2o, .framer-3WX1r .framer-46ednx, .framer-3WX1r .framer-1y4pr7o, .framer-3WX1r .framer-1w0ntn7, .framer-3WX1r .framer-lv759b, .framer-3WX1r .framer-c4hrw7, .framer-3WX1r .framer-1spe2te, .framer-3WX1r .framer-10k93yt, .framer-3WX1r .framer-xmdysd, .framer-3WX1r .framer-1bxj2al, .framer-3WX1r .framer-1l5iisl, .framer-3WX1r .framer-hdzt1q, .framer-3WX1r .framer-17kxtx, .framer-3WX1r .framer-18lbm5w, .framer-3WX1r .framer-avn3bd, .framer-3WX1r .framer-yu5nef, .framer-3WX1r .framer-9m2fg7, .framer-3WX1r .framer-4m51v, .framer-3WX1r .framer-1v4khq4, .framer-3WX1r .framer-115fd3h, .framer-3WX1r .framer-178y9eq, .framer-3WX1r .framer-8le5px, .framer-3WX1r .framer-17ks2gx, .framer-3WX1r .framer-1flx31, .framer-3WX1r .framer-1tnyby4, .framer-3WX1r .framer-12z2ksm, .framer-3WX1r .framer-gxxm7s, .framer-3WX1r .framer-cj9e3t, .framer-3WX1r .framer-eti07m, .framer-3WX1r .framer-1bvt9a5, .framer-3WX1r .framer-1dhaw1q, .framer-3WX1r .framer-9xjfiq, .framer-3WX1r .framer-fl7rc8, .framer-3WX1r .framer-oc5yv4, .framer-3WX1r .framer-e4hm2h, .framer-3WX1r .framer-1ahho63, .framer-3WX1r .framer-ryu4iq, .framer-3WX1r .framer-fpcdc4, .framer-3WX1r .framer-1o1oxb5, .framer-3WX1r .framer-qg31b, .framer-3WX1r .framer-1962j89, .framer-3WX1r .framer-dc9xc2, .framer-3WX1r .framer-1wkp64z, .framer-3WX1r .framer-18k3xa8, .framer-3WX1r .framer-hovmak, .framer-3WX1r .framer-1lsl2dc, .framer-3WX1r .framer-y5hw67, .framer-3WX1r .framer-sjwkbw, .framer-3WX1r .framer-cy9pwx, .framer-3WX1r .framer-wzq6gv, .framer-3WX1r .framer-17ajk47, .framer-3WX1r .framer-ca1tpn, .framer-3WX1r .framer-p3fbuj, .framer-3WX1r .framer-z2u41v, .framer-3WX1r .framer-bkhvjv, .framer-3WX1r .framer-18jw1rh, .framer-3WX1r .framer-1wh083o, .framer-3WX1r .framer-8yabqu, .framer-3WX1r .framer-ayk2ul, .framer-3WX1r .framer-lou8w6, .framer-3WX1r .framer-exf7n3, .framer-3WX1r .framer-1mp1qv2, .framer-3WX1r .framer-d5goto, .framer-3WX1r .framer-1gsdb3l, .framer-3WX1r .framer-yqxzos, .framer-3WX1r .framer-qholri, .framer-3WX1r .framer-11db8c, .framer-3WX1r .framer-1y8daew, .framer-3WX1r .framer-ire513, .framer-3WX1r .framer-oux4ij, .framer-3WX1r .framer-acnbd1, .framer-3WX1r .framer-1ld2nkb, .framer-3WX1r .framer-xfxmt3, .framer-3WX1r .framer-e6c0f1, .framer-3WX1r .framer-1jtx8k4, .framer-3WX1r .framer-1mqu0vt, .framer-3WX1r .framer-qloriz, .framer-3WX1r .framer-fnxxtf, .framer-3WX1r .framer-g0f4hc, .framer-3WX1r .framer-3u6hhu, .framer-3WX1r .framer-y6nxo3, .framer-3WX1r .framer-p53d1n, .framer-3WX1r .framer-1lzin84, .framer-3WX1r .framer-1pjso3w, .framer-3WX1r .framer-1fyb15e, .framer-3WX1r .framer-tl0026, .framer-3WX1r .framer-nbwxhi, .framer-3WX1r .framer-rbdlju, .framer-3WX1r .framer-1ddknom, .framer-3WX1r .framer-mn6xcb, .framer-3WX1r .framer-s0ddgn, .framer-3WX1r .framer-14bissh, .framer-3WX1r .framer-ad2xuo, .framer-3WX1r .framer-1e3geg4, .framer-3WX1r .framer-1x28ry0, .framer-3WX1r .framer-1voqngg, .framer-3WX1r .framer-lkif52, .framer-3WX1r .framer-rg8i8z, .framer-3WX1r .framer-1usg1i6, .framer-3WX1r .framer-vhnqt3, .framer-3WX1r .framer-1y1tsv8, .framer-3WX1r .framer-1mhatit, .framer-3WX1r .framer-1uavz3z, .framer-3WX1r .framer-suzmgq, .framer-3WX1r .framer-eialo0, .framer-3WX1r .framer-rkclqu { gap: 0px; } .framer-3WX1r.framer-72rtr7 > *, .framer-3WX1r .framer-1yeeyra > *, .framer-3WX1r .framer-1oeuad > *, .framer-3WX1r .framer-1jxnjkt > *, .framer-3WX1r .framer-7otupm > *, .framer-3WX1r .framer-17tf6e6 > *, .framer-3WX1r .framer-dmhjal > *, .framer-3WX1r .framer-rx9ve5 > *, .framer-3WX1r .framer-q8686j > *, .framer-3WX1r .framer-16po0a5 > *, .framer-3WX1r .framer-8cy0xb > *, .framer-3WX1r .framer-10hby4m > *, .framer-3WX1r .framer-1h22b2o > *, .framer-3WX1r .framer-1y4pr7o > *, .framer-3WX1r .framer-1w0ntn7 > *, .framer-3WX1r .framer-c4hrw7 > *, .framer-3WX1r .framer-1spe2te > *, .framer-3WX1r .framer-xmdysd > *, .framer-3WX1r .framer-1bxj2al > *, .framer-3WX1r .framer-hdzt1q > *, .framer-3WX1r .framer-avn3bd > *, .framer-3WX1r .framer-4m51v > *, .framer-3WX1r .framer-178y9eq > *, .framer-3WX1r .framer-1flx31 > *, .framer-3WX1r .framer-gxxm7s > *, .framer-3WX1r .framer-1bvt9a5 > *, .framer-3WX1r .framer-fl7rc8 > *, .framer-3WX1r .framer-1ahho63 > *, .framer-3WX1r .framer-1o1oxb5 > *, .framer-3WX1r .framer-sjwkbw > *, .framer-3WX1r .framer-17ajk47 > *, .framer-3WX1r .framer-z2u41v > *, .framer-3WX1r .framer-1wh083o > *, .framer-3WX1r .framer-8yabqu > *, .framer-3WX1r .framer-exf7n3 > *, .framer-3WX1r .framer-d5goto > *, .framer-3WX1r .framer-1gsdb3l > *, .framer-3WX1r .framer-qholri > *, .framer-3WX1r .framer-11db8c > *, .framer-3WX1r .framer-ire513 > *, .framer-3WX1r .framer-oux4ij > *, .framer-3WX1r .framer-1ld2nkb > *, .framer-3WX1r .framer-xfxmt3 > *, .framer-3WX1r .framer-1jtx8k4 > *, .framer-3WX1r .framer-1mqu0vt > *, .framer-3WX1r .framer-fnxxtf > *, .framer-3WX1r .framer-g0f4hc > *, .framer-3WX1r .framer-y6nxo3 > *, .framer-3WX1r .framer-p53d1n > *, .framer-3WX1r .framer-1pjso3w > *, .framer-3WX1r .framer-1fyb15e > *, .framer-3WX1r .framer-nbwxhi > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-3WX1r.framer-72rtr7 > :first-child, .framer-3WX1r .framer-1yeeyra > :first-child, .framer-3WX1r .framer-1oeuad > :first-child, .framer-3WX1r .framer-1v0faob > :first-child, .framer-3WX1r .framer-1ljsx84 > :first-child, .framer-3WX1r .framer-1n63u06 > :first-child, .framer-3WX1r .framer-1jxnjkt > :first-child, .framer-3WX1r .framer-7otupm > :first-child, .framer-3WX1r .framer-125uutl > :first-child, .framer-3WX1r .framer-17tf6e6 > :first-child, .framer-3WX1r .framer-18x83qd > :first-child, .framer-3WX1r .framer-1rl993t > :first-child, .framer-3WX1r .framer-12num2s > :first-child, .framer-3WX1r .framer-7scaa > :first-child, .framer-3WX1r .framer-1lz01nt > :first-child, .framer-3WX1r .framer-1a5t5gd > :first-child, .framer-3WX1r .framer-xl2mjk > :first-child, .framer-3WX1r .framer-dmhjal > :first-child, .framer-3WX1r .framer-1nopil9 > :first-child, .framer-3WX1r .framer-1rsjubk > :first-child, .framer-3WX1r .framer-rx9ve5 > :first-child, .framer-3WX1r .framer-q8686j > :first-child, .framer-3WX1r .framer-16po0a5 > :first-child, .framer-3WX1r .framer-8cy0xb > :first-child, .framer-3WX1r .framer-ao13u0 > :first-child, .framer-3WX1r .framer-1bnwaih > :first-child, .framer-3WX1r .framer-15k5dh1 > :first-child, .framer-3WX1r .framer-1y42ynp > :first-child, .framer-3WX1r .framer-qgpzbt > :first-child, .framer-3WX1r .framer-10hby4m > :first-child, .framer-3WX1r .framer-1mh8v23 > :first-child, .framer-3WX1r .framer-1h22b2o > :first-child, .framer-3WX1r .framer-46ednx > :first-child, .framer-3WX1r .framer-1y4pr7o > :first-child, .framer-3WX1r .framer-1w0ntn7 > :first-child, .framer-3WX1r .framer-lv759b > :first-child, .framer-3WX1r .framer-c4hrw7 > :first-child, .framer-3WX1r .framer-1spe2te > :first-child, .framer-3WX1r .framer-10k93yt > :first-child, .framer-3WX1r .framer-xmdysd > :first-child, .framer-3WX1r .framer-1bxj2al > :first-child, .framer-3WX1r .framer-1l5iisl > :first-child, .framer-3WX1r .framer-hdzt1q > :first-child, .framer-3WX1r .framer-17kxtx > :first-child, .framer-3WX1r .framer-18lbm5w > :first-child, .framer-3WX1r .framer-avn3bd > :first-child, .framer-3WX1r .framer-yu5nef > :first-child, .framer-3WX1r .framer-9m2fg7 > :first-child, .framer-3WX1r .framer-4m51v > :first-child, .framer-3WX1r .framer-1v4khq4 > :first-child, .framer-3WX1r .framer-115fd3h > :first-child, .framer-3WX1r .framer-178y9eq > :first-child, .framer-3WX1r .framer-8le5px > :first-child, .framer-3WX1r .framer-17ks2gx > :first-child, .framer-3WX1r .framer-1flx31 > :first-child, .framer-3WX1r .framer-1tnyby4 > :first-child, .framer-3WX1r .framer-12z2ksm > :first-child, .framer-3WX1r .framer-gxxm7s > :first-child, .framer-3WX1r .framer-cj9e3t > :first-child, .framer-3WX1r .framer-eti07m > :first-child, .framer-3WX1r .framer-1bvt9a5 > :first-child, .framer-3WX1r .framer-1dhaw1q > :first-child, .framer-3WX1r .framer-9xjfiq > :first-child, .framer-3WX1r .framer-fl7rc8 > :first-child, .framer-3WX1r .framer-oc5yv4 > :first-child, .framer-3WX1r .framer-e4hm2h > :first-child, .framer-3WX1r .framer-1ahho63 > :first-child, .framer-3WX1r .framer-ryu4iq > :first-child, .framer-3WX1r .framer-fpcdc4 > :first-child, .framer-3WX1r .framer-1o1oxb5 > :first-child, .framer-3WX1r .framer-dc9xc2 > :first-child, .framer-3WX1r .framer-1lsl2dc > :first-child, .framer-3WX1r .framer-y5hw67 > :first-child, .framer-3WX1r .framer-sjwkbw > :first-child, .framer-3WX1r .framer-cy9pwx > :first-child, .framer-3WX1r .framer-wzq6gv > :first-child, .framer-3WX1r .framer-17ajk47 > :first-child, .framer-3WX1r .framer-ca1tpn > :first-child, .framer-3WX1r .framer-p3fbuj > :first-child, .framer-3WX1r .framer-z2u41v > :first-child, .framer-3WX1r .framer-bkhvjv > :first-child, .framer-3WX1r .framer-18jw1rh > :first-child, .framer-3WX1r .framer-1wh083o > :first-child, .framer-3WX1r .framer-8yabqu > :first-child, .framer-3WX1r .framer-exf7n3 > :first-child, .framer-3WX1r .framer-1mp1qv2 > :first-child, .framer-3WX1r .framer-d5goto > :first-child, .framer-3WX1r .framer-1gsdb3l > :first-child, .framer-3WX1r .framer-yqxzos > :first-child, .framer-3WX1r .framer-qholri > :first-child, .framer-3WX1r .framer-11db8c > :first-child, .framer-3WX1r .framer-1y8daew > :first-child, .framer-3WX1r .framer-ire513 > :first-child, .framer-3WX1r .framer-oux4ij > :first-child, .framer-3WX1r .framer-acnbd1 > :first-child, .framer-3WX1r .framer-1ld2nkb > :first-child, .framer-3WX1r .framer-xfxmt3 > :first-child, .framer-3WX1r .framer-e6c0f1 > :first-child, .framer-3WX1r .framer-1jtx8k4 > :first-child, .framer-3WX1r .framer-1mqu0vt > :first-child, .framer-3WX1r .framer-qloriz > :first-child, .framer-3WX1r .framer-fnxxtf > :first-child, .framer-3WX1r .framer-g0f4hc > :first-child, .framer-3WX1r .framer-3u6hhu > :first-child, .framer-3WX1r .framer-y6nxo3 > :first-child, .framer-3WX1r .framer-p53d1n > :first-child, .framer-3WX1r .framer-1lzin84 > :first-child, .framer-3WX1r .framer-1pjso3w > :first-child, .framer-3WX1r .framer-1fyb15e > :first-child, .framer-3WX1r .framer-tl0026 > :first-child, .framer-3WX1r .framer-nbwxhi > :first-child, .framer-3WX1r .framer-rbdlju > :first-child, .framer-3WX1r .framer-mn6xcb > :first-child, .framer-3WX1r .framer-s0ddgn > :first-child, .framer-3WX1r .framer-14bissh > :first-child, .framer-3WX1r .framer-ad2xuo > :first-child, .framer-3WX1r .framer-1e3geg4 > :first-child, .framer-3WX1r .framer-1x28ry0 > :first-child, .framer-3WX1r .framer-1voqngg > :first-child, .framer-3WX1r .framer-rg8i8z > :first-child, .framer-3WX1r .framer-vhnqt3 > :first-child, .framer-3WX1r .framer-1mhatit > :first-child, .framer-3WX1r .framer-suzmgq > :first-child, .framer-3WX1r .framer-rkclqu > :first-child { margin-top: 0px; } .framer-3WX1r.framer-72rtr7 > :last-child, .framer-3WX1r .framer-1yeeyra > :last-child, .framer-3WX1r .framer-1oeuad > :last-child, .framer-3WX1r .framer-1v0faob > :last-child, .framer-3WX1r .framer-1ljsx84 > :last-child, .framer-3WX1r .framer-1n63u06 > :last-child, .framer-3WX1r .framer-1jxnjkt > :last-child, .framer-3WX1r .framer-7otupm > :last-child, .framer-3WX1r .framer-125uutl > :last-child, .framer-3WX1r .framer-17tf6e6 > :last-child, .framer-3WX1r .framer-18x83qd > :last-child, .framer-3WX1r .framer-1rl993t > :last-child, .framer-3WX1r .framer-12num2s > :last-child, .framer-3WX1r .framer-7scaa > :last-child, .framer-3WX1r .framer-1lz01nt > :last-child, .framer-3WX1r .framer-1a5t5gd > :last-child, .framer-3WX1r .framer-xl2mjk > :last-child, .framer-3WX1r .framer-dmhjal > :last-child, .framer-3WX1r .framer-1nopil9 > :last-child, .framer-3WX1r .framer-1rsjubk > :last-child, .framer-3WX1r .framer-rx9ve5 > :last-child, .framer-3WX1r .framer-q8686j > :last-child, .framer-3WX1r .framer-16po0a5 > :last-child, .framer-3WX1r .framer-8cy0xb > :last-child, .framer-3WX1r .framer-ao13u0 > :last-child, .framer-3WX1r .framer-1bnwaih > :last-child, .framer-3WX1r .framer-15k5dh1 > :last-child, .framer-3WX1r .framer-1y42ynp > :last-child, .framer-3WX1r .framer-qgpzbt > :last-child, .framer-3WX1r .framer-10hby4m > :last-child, .framer-3WX1r .framer-1mh8v23 > :last-child, .framer-3WX1r .framer-1h22b2o > :last-child, .framer-3WX1r .framer-46ednx > :last-child, .framer-3WX1r .framer-1y4pr7o > :last-child, .framer-3WX1r .framer-1w0ntn7 > :last-child, .framer-3WX1r .framer-lv759b > :last-child, .framer-3WX1r .framer-c4hrw7 > :last-child, .framer-3WX1r .framer-1spe2te > :last-child, .framer-3WX1r .framer-10k93yt > :last-child, .framer-3WX1r .framer-xmdysd > :last-child, .framer-3WX1r .framer-1bxj2al > :last-child, .framer-3WX1r .framer-1l5iisl > :last-child, .framer-3WX1r .framer-hdzt1q > :last-child, .framer-3WX1r .framer-17kxtx > :last-child, .framer-3WX1r .framer-18lbm5w > :last-child, .framer-3WX1r .framer-avn3bd > :last-child, .framer-3WX1r .framer-yu5nef > :last-child, .framer-3WX1r .framer-9m2fg7 > :last-child, .framer-3WX1r .framer-4m51v > :last-child, .framer-3WX1r .framer-1v4khq4 > :last-child, .framer-3WX1r .framer-115fd3h > :last-child, .framer-3WX1r .framer-178y9eq > :last-child, .framer-3WX1r .framer-8le5px > :last-child, .framer-3WX1r .framer-17ks2gx > :last-child, .framer-3WX1r .framer-1flx31 > :last-child, .framer-3WX1r .framer-1tnyby4 > :last-child, .framer-3WX1r .framer-12z2ksm > :last-child, .framer-3WX1r .framer-gxxm7s > :last-child, .framer-3WX1r .framer-cj9e3t > :last-child, .framer-3WX1r .framer-eti07m > :last-child, .framer-3WX1r .framer-1bvt9a5 > :last-child, .framer-3WX1r .framer-1dhaw1q > :last-child, .framer-3WX1r .framer-9xjfiq > :last-child, .framer-3WX1r .framer-fl7rc8 > :last-child, .framer-3WX1r .framer-oc5yv4 > :last-child, .framer-3WX1r .framer-e4hm2h > :last-child, .framer-3WX1r .framer-1ahho63 > :last-child, .framer-3WX1r .framer-ryu4iq > :last-child, .framer-3WX1r .framer-fpcdc4 > :last-child, .framer-3WX1r .framer-1o1oxb5 > :last-child, .framer-3WX1r .framer-dc9xc2 > :last-child, .framer-3WX1r .framer-1lsl2dc > :last-child, .framer-3WX1r .framer-y5hw67 > :last-child, .framer-3WX1r .framer-sjwkbw > :last-child, .framer-3WX1r .framer-cy9pwx > :last-child, .framer-3WX1r .framer-wzq6gv > :last-child, .framer-3WX1r .framer-17ajk47 > :last-child, .framer-3WX1r .framer-ca1tpn > :last-child, .framer-3WX1r .framer-p3fbuj > :last-child, .framer-3WX1r .framer-z2u41v > :last-child, .framer-3WX1r .framer-bkhvjv > :last-child, .framer-3WX1r .framer-18jw1rh > :last-child, .framer-3WX1r .framer-1wh083o > :last-child, .framer-3WX1r .framer-8yabqu > :last-child, .framer-3WX1r .framer-exf7n3 > :last-child, .framer-3WX1r .framer-1mp1qv2 > :last-child, .framer-3WX1r .framer-d5goto > :last-child, .framer-3WX1r .framer-1gsdb3l > :last-child, .framer-3WX1r .framer-yqxzos > :last-child, .framer-3WX1r .framer-qholri > :last-child, .framer-3WX1r .framer-11db8c > :last-child, .framer-3WX1r .framer-1y8daew > :last-child, .framer-3WX1r .framer-ire513 > :last-child, .framer-3WX1r .framer-oux4ij > :last-child, .framer-3WX1r .framer-acnbd1 > :last-child, .framer-3WX1r .framer-1ld2nkb > :last-child, .framer-3WX1r .framer-xfxmt3 > :last-child, .framer-3WX1r .framer-e6c0f1 > :last-child, .framer-3WX1r .framer-1jtx8k4 > :last-child, .framer-3WX1r .framer-1mqu0vt > :last-child, .framer-3WX1r .framer-qloriz > :last-child, .framer-3WX1r .framer-fnxxtf > :last-child, .framer-3WX1r .framer-g0f4hc > :last-child, .framer-3WX1r .framer-3u6hhu > :last-child, .framer-3WX1r .framer-y6nxo3 > :last-child, .framer-3WX1r .framer-p53d1n > :last-child, .framer-3WX1r .framer-1lzin84 > :last-child, .framer-3WX1r .framer-1pjso3w > :last-child, .framer-3WX1r .framer-1fyb15e > :last-child, .framer-3WX1r .framer-tl0026 > :last-child, .framer-3WX1r .framer-nbwxhi > :last-child, .framer-3WX1r .framer-rbdlju > :last-child, .framer-3WX1r .framer-mn6xcb > :last-child, .framer-3WX1r .framer-s0ddgn > :last-child, .framer-3WX1r .framer-14bissh > :last-child, .framer-3WX1r .framer-ad2xuo > :last-child, .framer-3WX1r .framer-1e3geg4 > :last-child, .framer-3WX1r .framer-1x28ry0 > :last-child, .framer-3WX1r .framer-1voqngg > :last-child, .framer-3WX1r .framer-rg8i8z > :last-child, .framer-3WX1r .framer-vhnqt3 > :last-child, .framer-3WX1r .framer-1mhatit > :last-child, .framer-3WX1r .framer-suzmgq > :last-child, .framer-3WX1r .framer-rkclqu > :last-child { margin-bottom: 0px; } .framer-3WX1r .framer-1v0faob > *, .framer-3WX1r .framer-1n63u06 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-3WX1r .framer-hxtcc8 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-3WX1r .framer-hxtcc8 > :first-child, .framer-3WX1r .framer-elrwks > :first-child, .framer-3WX1r .framer-1eg7dis > :first-child, .framer-3WX1r .framer-1ixcpzj > :first-child, .framer-3WX1r .framer-xflm9m > :first-child, .framer-3WX1r .framer-530q0r > :first-child, .framer-3WX1r .framer-w5e94o > :first-child, .framer-3WX1r .framer-i8er01 > :first-child, .framer-3WX1r .framer-zkxapu > :first-child, .framer-3WX1r .framer-xg6qjm > :first-child, .framer-3WX1r .framer-1jvvo7v > :first-child, .framer-3WX1r .framer-1p5mqbk > :first-child, .framer-3WX1r .framer-1x7qzgy > :first-child, .framer-3WX1r .framer-yr7cdb > :first-child, .framer-3WX1r .framer-k7nqqk > :first-child, .framer-3WX1r .framer-1vxggbs > :first-child, .framer-3WX1r .framer-1601k82 > :first-child, .framer-3WX1r .framer-7wyauh > :first-child, .framer-3WX1r .framer-1de3tue > :first-child, .framer-3WX1r .framer-gkq8no > :first-child, .framer-3WX1r .framer-1y9w5is > :first-child, .framer-3WX1r .framer-gwzqr > :first-child, .framer-3WX1r .framer-5ebqxz > :first-child, .framer-3WX1r .framer-ynnml7 > :first-child, .framer-3WX1r .framer-1hlsu2p > :first-child, .framer-3WX1r .framer-8owkj0 > :first-child, .framer-3WX1r .framer-bfl0gh > :first-child, .framer-3WX1r .framer-14pgoyl > :first-child, .framer-3WX1r .framer-1pqanzt > :first-child, .framer-3WX1r .framer-1e6a4nx > :first-child, .framer-3WX1r .framer-tvthzy > :first-child, .framer-3WX1r .framer-1bvb91u > :first-child, .framer-3WX1r .framer-2dv5g8 > :first-child, .framer-3WX1r .framer-1h3wa78 > :first-child, .framer-3WX1r .framer-1164qju > :first-child, .framer-3WX1r .framer-1brsjcj > :first-child, .framer-3WX1r .framer-15y7se4 > :first-child, .framer-3WX1r .framer-qg31b > :first-child, .framer-3WX1r .framer-1962j89 > :first-child, .framer-3WX1r .framer-1wkp64z > :first-child, .framer-3WX1r .framer-18k3xa8 > :first-child, .framer-3WX1r .framer-hovmak > :first-child, .framer-3WX1r .framer-ayk2ul > :first-child, .framer-3WX1r .framer-lou8w6 > :first-child, .framer-3WX1r .framer-1ddknom > :first-child, .framer-3WX1r .framer-lkif52 > :first-child, .framer-3WX1r .framer-1usg1i6 > :first-child, .framer-3WX1r .framer-1y1tsv8 > :first-child, .framer-3WX1r .framer-1uavz3z > :first-child, .framer-3WX1r .framer-eialo0 > :first-child { margin-left: 0px; } .framer-3WX1r .framer-hxtcc8 > :last-child, .framer-3WX1r .framer-elrwks > :last-child, .framer-3WX1r .framer-1eg7dis > :last-child, .framer-3WX1r .framer-1ixcpzj > :last-child, .framer-3WX1r .framer-xflm9m > :last-child, .framer-3WX1r .framer-530q0r > :last-child, .framer-3WX1r .framer-w5e94o > :last-child, .framer-3WX1r .framer-i8er01 > :last-child, .framer-3WX1r .framer-zkxapu > :last-child, .framer-3WX1r .framer-xg6qjm > :last-child, .framer-3WX1r .framer-1jvvo7v > :last-child, .framer-3WX1r .framer-1p5mqbk > :last-child, .framer-3WX1r .framer-1x7qzgy > :last-child, .framer-3WX1r .framer-yr7cdb > :last-child, .framer-3WX1r .framer-k7nqqk > :last-child, .framer-3WX1r .framer-1vxggbs > :last-child, .framer-3WX1r .framer-1601k82 > :last-child, .framer-3WX1r .framer-7wyauh > :last-child, .framer-3WX1r .framer-1de3tue > :last-child, .framer-3WX1r .framer-gkq8no > :last-child, .framer-3WX1r .framer-1y9w5is > :last-child, .framer-3WX1r .framer-gwzqr > :last-child, .framer-3WX1r .framer-5ebqxz > :last-child, .framer-3WX1r .framer-ynnml7 > :last-child, .framer-3WX1r .framer-1hlsu2p > :last-child, .framer-3WX1r .framer-8owkj0 > :last-child, .framer-3WX1r .framer-bfl0gh > :last-child, .framer-3WX1r .framer-14pgoyl > :last-child, .framer-3WX1r .framer-1pqanzt > :last-child, .framer-3WX1r .framer-1e6a4nx > :last-child, .framer-3WX1r .framer-tvthzy > :last-child, .framer-3WX1r .framer-1bvb91u > :last-child, .framer-3WX1r .framer-2dv5g8 > :last-child, .framer-3WX1r .framer-1h3wa78 > :last-child, .framer-3WX1r .framer-1164qju > :last-child, .framer-3WX1r .framer-1brsjcj > :last-child, .framer-3WX1r .framer-15y7se4 > :last-child, .framer-3WX1r .framer-qg31b > :last-child, .framer-3WX1r .framer-1962j89 > :last-child, .framer-3WX1r .framer-1wkp64z > :last-child, .framer-3WX1r .framer-18k3xa8 > :last-child, .framer-3WX1r .framer-hovmak > :last-child, .framer-3WX1r .framer-ayk2ul > :last-child, .framer-3WX1r .framer-lou8w6 > :last-child, .framer-3WX1r .framer-1ddknom > :last-child, .framer-3WX1r .framer-lkif52 > :last-child, .framer-3WX1r .framer-1usg1i6 > :last-child, .framer-3WX1r .framer-1y1tsv8 > :last-child, .framer-3WX1r .framer-1uavz3z > :last-child, .framer-3WX1r .framer-eialo0 > :last-child { margin-right: 0px; } .framer-3WX1r .framer-1ljsx84 > *, .framer-3WX1r .framer-1rl993t > *, .framer-3WX1r .framer-1y42ynp > *, .framer-3WX1r .framer-1mh8v23 > *, .framer-3WX1r .framer-dc9xc2 > *, .framer-3WX1r .framer-ad2xuo > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-3WX1r .framer-elrwks > *, .framer-3WX1r .framer-1eg7dis > *, .framer-3WX1r .framer-530q0r > *, .framer-3WX1r .framer-i8er01 > *, .framer-3WX1r .framer-1jvvo7v > *, .framer-3WX1r .framer-1p5mqbk > *, .framer-3WX1r .framer-k7nqqk > *, .framer-3WX1r .framer-gkq8no > *, .framer-3WX1r .framer-gwzqr > *, .framer-3WX1r .framer-ynnml7 > *, .framer-3WX1r .framer-1hlsu2p > *, .framer-3WX1r .framer-8owkj0 > *, .framer-3WX1r .framer-tvthzy > *, .framer-3WX1r .framer-1bvb91u > *, .framer-3WX1r .framer-1h3wa78 > *, .framer-3WX1r .framer-1brsjcj > *, .framer-3WX1r .framer-15y7se4 > *, .framer-3WX1r .framer-qg31b > *, .framer-3WX1r .framer-1962j89 > *, .framer-3WX1r .framer-hovmak > *, .framer-3WX1r .framer-ayk2ul > *, .framer-3WX1r .framer-lou8w6 > *, .framer-3WX1r .framer-1ddknom > *, .framer-3WX1r .framer-lkif52 > *, .framer-3WX1r .framer-1usg1i6 > *, .framer-3WX1r .framer-1y1tsv8 > *, .framer-3WX1r .framer-1uavz3z > *, .framer-3WX1r .framer-eialo0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-3WX1r .framer-125uutl > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-3WX1r .framer-1ixcpzj > *, .framer-3WX1r .framer-1x7qzgy > *, .framer-3WX1r .framer-1vxggbs > *, .framer-3WX1r .framer-1601k82 > *, .framer-3WX1r .framer-bfl0gh > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-3WX1r .framer-18x83qd > *, .framer-3WX1r .framer-7scaa > *, .framer-3WX1r .framer-1nopil9 > *, .framer-3WX1r .framer-1bnwaih > *, .framer-3WX1r .framer-qgpzbt > *, .framer-3WX1r .framer-fpcdc4 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-3WX1r .framer-xflm9m > *, .framer-3WX1r .framer-w5e94o > *, .framer-3WX1r .framer-zkxapu > *, .framer-3WX1r .framer-xg6qjm > *, .framer-3WX1r .framer-1pqanzt > *, .framer-3WX1r .framer-1e6a4nx > *, .framer-3WX1r .framer-2dv5g8 > *, .framer-3WX1r .framer-1164qju > *, .framer-3WX1r .framer-1wkp64z > *, .framer-3WX1r .framer-18k3xa8 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-3WX1r .framer-12num2s > *, .framer-3WX1r .framer-ao13u0 > *, .framer-3WX1r .framer-15k5dh1 > *, .framer-3WX1r .framer-mn6xcb > *, .framer-3WX1r .framer-s0ddgn > *, .framer-3WX1r .framer-1x28ry0 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-3WX1r .framer-yr7cdb > *, .framer-3WX1r .framer-14pgoyl > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-3WX1r .framer-1lz01nt > *, .framer-3WX1r .framer-rbdlju > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-3WX1r .framer-1a5t5gd > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-3WX1r .framer-xl2mjk > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-3WX1r .framer-1rsjubk > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-3WX1r .framer-7wyauh > *, .framer-3WX1r .framer-1de3tue > *, .framer-3WX1r .framer-1y9w5is > *, .framer-3WX1r .framer-5ebqxz > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-3WX1r .framer-46ednx > *, .framer-3WX1r .framer-lv759b > *, .framer-3WX1r .framer-10k93yt > *, .framer-3WX1r .framer-1l5iisl > *, .framer-3WX1r .framer-1mp1qv2 > *, .framer-3WX1r .framer-yqxzos > *, .framer-3WX1r .framer-1y8daew > *, .framer-3WX1r .framer-acnbd1 > *, .framer-3WX1r .framer-e6c0f1 > *, .framer-3WX1r .framer-qloriz > *, .framer-3WX1r .framer-3u6hhu > *, .framer-3WX1r .framer-1lzin84 > *, .framer-3WX1r .framer-tl0026 > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-3WX1r .framer-17kxtx > *, .framer-3WX1r .framer-yu5nef > *, .framer-3WX1r .framer-1v4khq4 > *, .framer-3WX1r .framer-8le5px > *, .framer-3WX1r .framer-1tnyby4 > *, .framer-3WX1r .framer-cj9e3t > *, .framer-3WX1r .framer-1dhaw1q > *, .framer-3WX1r .framer-oc5yv4 > *, .framer-3WX1r .framer-ryu4iq > *, .framer-3WX1r .framer-1lsl2dc > *, .framer-3WX1r .framer-cy9pwx > *, .framer-3WX1r .framer-ca1tpn > *, .framer-3WX1r .framer-bkhvjv > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-3WX1r .framer-18lbm5w > *, .framer-3WX1r .framer-9m2fg7 > *, .framer-3WX1r .framer-115fd3h > *, .framer-3WX1r .framer-17ks2gx > *, .framer-3WX1r .framer-12z2ksm > *, .framer-3WX1r .framer-eti07m > *, .framer-3WX1r .framer-9xjfiq > *, .framer-3WX1r .framer-e4hm2h > *, .framer-3WX1r .framer-y5hw67 > *, .framer-3WX1r .framer-wzq6gv > *, .framer-3WX1r .framer-p3fbuj > *, .framer-3WX1r .framer-18jw1rh > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-3WX1r .framer-14bissh > *, .framer-3WX1r .framer-1e3geg4 > *, .framer-3WX1r .framer-1voqngg > *, .framer-3WX1r .framer-rg8i8z > *, .framer-3WX1r .framer-vhnqt3 > *, .framer-3WX1r .framer-1mhatit > *, .framer-3WX1r .framer-suzmgq > *, .framer-3WX1r .framer-rkclqu > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,\"@media (min-width: 768px) and (max-width: 1199px) { .framer-3WX1r.framer-72rtr7 { width: 768px; } .framer-3WX1r .framer-1oeuad { justify-content: flex-start; } .framer-3WX1r .framer-elrwks { justify-content: flex-end; width: 720px; } .framer-3WX1r .framer-ddldgn-container { flex: 1 0 0px; height: 200px; width: 1px; } .framer-3WX1r .framer-ki262w { height: var(--framer-aspect-ratio-supported, 301px); } .framer-3WX1r .framer-1eg7dis { padding: 60px 0px 60px 0px; } .framer-3WX1r .framer-1ixcpzj, .framer-3WX1r .framer-1x7qzgy, .framer-3WX1r .framer-bfl0gh { gap: 32px; padding: 0px 50px 0px 50px; } .framer-3WX1r .framer-13umr6y, .framer-3WX1r .framer-1nfrizl { width: 100%; } .framer-3WX1r .framer-530q0r { align-self: stretch; height: auto; } .framer-3WX1r .framer-w5e94o, .framer-3WX1r .framer-ao13u0 { align-content: flex-start; align-items: flex-start; } .framer-3WX1r .framer-i8er01 { align-content: flex-start; align-items: flex-start; padding: 8px 0px 0px 0px; } .framer-3WX1r .framer-1gtn9c9, .framer-3WX1r .framer-ofubm6 { height: var(--framer-aspect-ratio-supported, 318px); } .framer-3WX1r .framer-1lz01nt { gap: 30px; } .framer-3WX1r .framer-1vxggbs { flex-direction: column; gap: 48px; padding: 120px 50px 120px 50px; } .framer-3WX1r .framer-1601k82 { flex: none; flex-direction: column; order: 0; width: 100%; } .framer-3WX1r .framer-dmhjal { flex: none; width: 100%; } .framer-3WX1r .framer-8owkj0 { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-3WX1r .framer-14y0z5n { height: var(--framer-aspect-ratio-supported, 334px); width: 50%; } .framer-3WX1r .framer-13fj7vv { height: var(--framer-aspect-ratio-supported, 311px); } .framer-3WX1r .framer-1pqanzt, .framer-3WX1r .framer-1e6a4nx, .framer-3WX1r .framer-mn6xcb { height: min-content; } .framer-3WX1r .framer-khytwf, .framer-3WX1r .framer-he0952 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-3WX1r .framer-qgpzbt { padding: 0px 0px 0px 50px; } .framer-3WX1r .framer-10hby4m { gap: 32px; } .framer-3WX1r .framer-tvthzy { width: 60%; } .framer-3WX1r .framer-fpcdc4 { padding: 88px 0px 0px 50px; } .framer-3WX1r .framer-1962j89 { padding: 0px 88px 32px 0px; } .framer-3WX1r .framer-rbdlju { padding: 80px 0px 80px 0px; } .framer-3WX1r .framer-1ddknom { padding: 0px 50px 0px 50px; } .framer-3WX1r .framer-1ipprry-container { height: 470px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3WX1r .framer-1ixcpzj, .framer-3WX1r .framer-1x7qzgy, .framer-3WX1r .framer-1lz01nt, .framer-3WX1r .framer-1vxggbs, .framer-3WX1r .framer-1601k82, .framer-3WX1r .framer-bfl0gh, .framer-3WX1r .framer-10hby4m { gap: 0px; } .framer-3WX1r .framer-1ixcpzj > *, .framer-3WX1r .framer-1x7qzgy > *, .framer-3WX1r .framer-bfl0gh > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-3WX1r .framer-1ixcpzj > :first-child, .framer-3WX1r .framer-1x7qzgy > :first-child, .framer-3WX1r .framer-bfl0gh > :first-child { margin-left: 0px; } .framer-3WX1r .framer-1ixcpzj > :last-child, .framer-3WX1r .framer-1x7qzgy > :last-child, .framer-3WX1r .framer-bfl0gh > :last-child { margin-right: 0px; } .framer-3WX1r .framer-1lz01nt > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-3WX1r .framer-1lz01nt > :first-child, .framer-3WX1r .framer-1vxggbs > :first-child, .framer-3WX1r .framer-1601k82 > :first-child, .framer-3WX1r .framer-10hby4m > :first-child { margin-top: 0px; } .framer-3WX1r .framer-1lz01nt > :last-child, .framer-3WX1r .framer-1vxggbs > :last-child, .framer-3WX1r .framer-1601k82 > :last-child, .framer-3WX1r .framer-10hby4m > :last-child { margin-bottom: 0px; } .framer-3WX1r .framer-1vxggbs > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-3WX1r .framer-1601k82 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-3WX1r .framer-10hby4m > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\",\"@media (max-width: 767px) { .framer-3WX1r.framer-72rtr7 { width: 390px; } .framer-3WX1r .framer-1oeuad { padding: 60px 0px 0px 0px; } .framer-3WX1r .framer-1v0faob { padding: 0px; } .framer-3WX1r .framer-1n63u06 { padding: 0px 0px 48px 0px; } .framer-3WX1r .framer-ri3ybr { width: 70%; } .framer-3WX1r .framer-1jxnjkt { padding: 200px 0px 51px 0px; } .framer-3WX1r .framer-elrwks { left: 20px; padding: 0px 24px 0px 24px; right: 20px; transform: unset; width: unset; } .framer-3WX1r .framer-ddldgn-container { flex: 1 0 0px; height: 320px; width: 1px; } .framer-3WX1r .framer-ki262w { aspect-ratio: 0.7692307692307693 / 1; height: var(--framer-aspect-ratio-supported, 507px); } .framer-3WX1r .framer-1eg7dis { gap: 20px; order: 0; padding: 60px 0px 60px 0px; } .framer-3WX1r .framer-125uutl { gap: 60px; } .framer-3WX1r .framer-1ixcpzj { flex-direction: column; gap: 32px; padding: 0px 20px 0px 20px; } .framer-3WX1r .framer-17tf6e6, .framer-3WX1r .framer-7scaa, .framer-3WX1r .framer-1bnwaih { flex: none; order: 0; width: 100%; } .framer-3WX1r .framer-13umr6y, .framer-3WX1r .framer-1nfrizl { width: 100%; } .framer-3WX1r .framer-1rl993t, .framer-3WX1r .framer-1rsjubk, .framer-3WX1r .framer-1y42ynp { padding: 24px 0px 19px 0px; } .framer-3WX1r .framer-1p5mqbk { align-self: unset; flex: none; flex-direction: column; height: min-content; order: 1; width: 100%; } .framer-3WX1r .framer-12num2s, .framer-3WX1r .framer-dmhjal, .framer-3WX1r .framer-ao13u0 { flex: none; width: 100%; } .framer-3WX1r .framer-1gtn9c9, .framer-3WX1r .framer-ofubm6, .framer-3WX1r .framer-14y0z5n { height: var(--framer-aspect-ratio-supported, 350px); } .framer-3WX1r .framer-1x7qzgy, .framer-3WX1r .framer-bfl0gh { flex-direction: column; gap: 40px; padding: 0px 20px 0px 20px; } .framer-3WX1r .framer-yr7cdb, .framer-3WX1r .framer-14pgoyl { flex: none; order: 1; width: 100%; } .framer-3WX1r .framer-1lz01nt { gap: 30px; } .framer-3WX1r .framer-1a5t5gd { gap: 24px; } .framer-3WX1r .framer-1vxggbs { flex-direction: column; gap: 40px; padding: 120px 20px 120px 20px; } .framer-3WX1r .framer-1601k82 { flex: none; flex-direction: column; order: 0; width: 100%; } .framer-3WX1r .framer-8owkj0 { align-self: unset; flex: none; flex-direction: column; height: min-content; width: 100%; } .framer-3WX1r .framer-13fj7vv { height: var(--framer-aspect-ratio-supported, 342px); } .framer-3WX1r .framer-1pqanzt, .framer-3WX1r .framer-1e6a4nx, .framer-3WX1r .framer-2dv5g8, .framer-3WX1r .framer-1164qju { height: min-content; } .framer-3WX1r .framer-khytwf, .framer-3WX1r .framer-he0952, .framer-3WX1r .framer-19cj83n, .framer-3WX1r .framer-6wdqbo { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-3WX1r .framer-qgpzbt { align-content: flex-start; align-items: flex-start; order: 1; padding: 0px; } .framer-3WX1r .framer-tvthzy, .framer-3WX1r .framer-qg31b { padding: 0px 0px 0px 20px; width: 100%; } .framer-3WX1r .framer-1bvb91u { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; padding: 0px 0px 60px 0px; } .framer-3WX1r .framer-1mh8v23 { flex: none; order: 0; padding: 20px 0px 38px 20px; width: 100%; } .framer-3WX1r .framer-1h3wa78 { align-content: flex-start; align-items: flex-start; align-self: stretch; height: auto; padding: 10px 0px 0px 0px; } .framer-3WX1r .framer-1brsjcj { order: 2; padding: 0px 0px 0px 20px; } .framer-3WX1r .framer-15y7se4 { min-height: unset; order: 1; width: 100%; } .framer-3WX1r .framer-fpcdc4 { order: 2; padding: 0px; } .framer-3WX1r .framer-1yu0200 { flex: 1 0 0px; width: 1px; } .framer-3WX1r .framer-1962j89 { padding: 0px 88px 38px 20px; } .framer-3WX1r .framer-ayk2ul { order: 1; } .framer-3WX1r .framer-lou8w6 { order: 0; } .framer-3WX1r .framer-rbdlju { gap: 79px; order: 3; padding: 0px 20px 68px 20px; } .framer-3WX1r .framer-1ddknom { flex-direction: column; padding: 0px; } .framer-3WX1r .framer-mn6xcb { flex: none; height: min-content; width: 100%; } .framer-3WX1r .framer-1ibnsfr-container { order: 4; } .framer-3WX1r .framer-2tdyzc-container { order: 5; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3WX1r .framer-1eg7dis, .framer-3WX1r .framer-125uutl, .framer-3WX1r .framer-1ixcpzj, .framer-3WX1r .framer-1p5mqbk, .framer-3WX1r .framer-1x7qzgy, .framer-3WX1r .framer-1lz01nt, .framer-3WX1r .framer-1a5t5gd, .framer-3WX1r .framer-1vxggbs, .framer-3WX1r .framer-1601k82, .framer-3WX1r .framer-8owkj0, .framer-3WX1r .framer-bfl0gh, .framer-3WX1r .framer-1bvb91u, .framer-3WX1r .framer-rbdlju, .framer-3WX1r .framer-1ddknom { gap: 0px; } .framer-3WX1r .framer-1eg7dis > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-3WX1r .framer-1eg7dis > :first-child { margin-left: 0px; } .framer-3WX1r .framer-1eg7dis > :last-child { margin-right: 0px; } .framer-3WX1r .framer-125uutl > *, .framer-3WX1r .framer-1601k82 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-3WX1r .framer-125uutl > :first-child, .framer-3WX1r .framer-1ixcpzj > :first-child, .framer-3WX1r .framer-1p5mqbk > :first-child, .framer-3WX1r .framer-1x7qzgy > :first-child, .framer-3WX1r .framer-1lz01nt > :first-child, .framer-3WX1r .framer-1a5t5gd > :first-child, .framer-3WX1r .framer-1vxggbs > :first-child, .framer-3WX1r .framer-1601k82 > :first-child, .framer-3WX1r .framer-8owkj0 > :first-child, .framer-3WX1r .framer-bfl0gh > :first-child, .framer-3WX1r .framer-1bvb91u > :first-child, .framer-3WX1r .framer-rbdlju > :first-child, .framer-3WX1r .framer-1ddknom > :first-child { margin-top: 0px; } .framer-3WX1r .framer-125uutl > :last-child, .framer-3WX1r .framer-1ixcpzj > :last-child, .framer-3WX1r .framer-1p5mqbk > :last-child, .framer-3WX1r .framer-1x7qzgy > :last-child, .framer-3WX1r .framer-1lz01nt > :last-child, .framer-3WX1r .framer-1a5t5gd > :last-child, .framer-3WX1r .framer-1vxggbs > :last-child, .framer-3WX1r .framer-1601k82 > :last-child, .framer-3WX1r .framer-8owkj0 > :last-child, .framer-3WX1r .framer-bfl0gh > :last-child, .framer-3WX1r .framer-1bvb91u > :last-child, .framer-3WX1r .framer-rbdlju > :last-child, .framer-3WX1r .framer-1ddknom > :last-child { margin-bottom: 0px; } .framer-3WX1r .framer-1ixcpzj > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-3WX1r .framer-1p5mqbk > *, .framer-3WX1r .framer-8owkj0 > *, .framer-3WX1r .framer-1ddknom > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-3WX1r .framer-1x7qzgy > *, .framer-3WX1r .framer-1vxggbs > *, .framer-3WX1r .framer-bfl0gh > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-3WX1r .framer-1lz01nt > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-3WX1r .framer-1a5t5gd > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-3WX1r .framer-1bvb91u > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-3WX1r .framer-rbdlju > * { margin: 0px; margin-bottom: calc(79px / 2); margin-top: calc(79px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9462.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"spfnoSSRf\":{\"layout\":[\"fixed\",\"auto\"]},\"g7xXBsXjr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"yKFzzvoTd\":{\"pattern\":\":yKFzzvoTd\",\"name\":\"hero\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-3WX1r\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:9462.5,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Lota Grotesque Alt 3 Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/chcHKzEPrP1m1DdoklqhnZxqgk.woff2\"},{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\"}]},...AnnouncementFonts,...NavigationFonts,...EmbedFonts,...CTAFonts,...CarouselFonts,...SlideshowFonts,...CallForActionFonts,...FAQ1Fonts,...Footer4CopyFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"spfnoSSRf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"g7xXBsXjr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"9462.5\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"yKFzzvoTd\\\":{\\\"pattern\\\":\\\":yKFzzvoTd\\\",\\\"name\\\":\\\"hero\\\"}}\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "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", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "clicked", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "YpkDsVg5A", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTaphg3flh", "args", "sharedStyleClassNames", "isDisplayed", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "SVG", "RichText2", "css", "FramerhwdIQZFk0", "withCSS", "hwdIQZFk0_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "AnnouncementFonts", "getFonts", "hwdIQZFk0_default", "NavigationFonts", "XBEVo4raN_default", "MotionAWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText2", "EmbedFonts", "Embed", "MotionDivWithOptimizedAppearEffect", "CTAFonts", "kMT589Uko_default", "MotionDivWithFX", "withFX", "CarouselFonts", "Carousel", "ContainerWithFX", "Container", "RichTextWithFX", "SlideshowFonts", "Slideshow", "CallForActionFonts", "bGy22qcKO_default", "FAQ1Fonts", "XNmlSASIV_default", "Footer4CopyFonts", "o2uk6IvIP_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "animation3", "transition2", "animation4", "transition3", "animation5", "animation6", "animation7", "transition4", "transition5", "animation8", "animation9", "animation10", "transition6", "animation11", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation12", "transition7", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "OX3oSjaFxdG3vn7_2S", "TN8BN7AU3dG3vn7_2S", "zDB3_u3wcdG3vn7_2S", "asMKcyjfEdG3vn7_2S", "iddG3vn7_2S", "OX3oSjaFxUcSg4WmAt", "TN8BN7AU3UcSg4WmAt", "zDB3_u3wcUcSg4WmAt", "asMKcyjfEUcSg4WmAt", "idUcSg4WmAt", "OX3oSjaFxv6XxeCa0s", "TN8BN7AU3v6XxeCa0s", "zDB3_u3wcv6XxeCa0s", "asMKcyjfEv6XxeCa0s", "idv6XxeCa0s", "OX3oSjaFxGtK44fqPE", "TN8BN7AU3GtK44fqPE", "zDB3_u3wcGtK44fqPE", "asMKcyjfEGtK44fqPE", "idGtK44fqPE", "TN8BN7AU3mC3vGJzUx", "OX3oSjaFxmC3vGJzUx", "zDB3_u3wcmC3vGJzUx", "asMKcyjfEmC3vGJzUx", "idmC3vGJzUx", "TN8BN7AU3tL0P5udiD", "OX3oSjaFxtL0P5udiD", "zDB3_u3wctL0P5udiD", "asMKcyjfEtL0P5udiD", "idtL0P5udiD", "TN8BN7AU3gQ40Lt39p", "OX3oSjaFxgQ40Lt39p", "zDB3_u3wcgQ40Lt39p", "asMKcyjfEgQ40Lt39p", "idgQ40Lt39p", "TN8BN7AU3Q26LCxn1q", "OX3oSjaFxQ26LCxn1q", "zDB3_u3wcQ26LCxn1q", "asMKcyjfEQ26LCxn1q", "idQ26LCxn1q", "evfwf55jxRemXNjaf8", "xF5mnrAM5RemXNjaf8", "tlT3y9xyYRemXNjaf8", "idRemXNjaf8", "evfwf55jxRaSHcrzHU", "xF5mnrAM5RaSHcrzHU", "tlT3y9xyYRaSHcrzHU", "idRaSHcrzHU", "evfwf55jxYBQ6Wgw3G", "xF5mnrAM5YBQ6Wgw3G", "tlT3y9xyYYBQ6Wgw3G", "idYBQ6Wgw3G", "evfwf55jxJhoIeIEw8", "xF5mnrAM5JhoIeIEw8", "tlT3y9xyYJhoIeIEw8", "idJhoIeIEw8", "evfwf55jxO_MVn9lWg", "xF5mnrAM5O_MVn9lWg", "tlT3y9xyYO_MVn9lWg", "idO_MVn9lWg", "evfwf55jxMfPMNmylO", "xF5mnrAM5MfPMNmylO", "tlT3y9xyYMfPMNmylO", "idMfPMNmylO", "evfwf55jxwOsV6Nenk", "xF5mnrAM5wOsV6Nenk", "tlT3y9xyYwOsV6Nenk", "idwOsV6Nenk", "evfwf55jxwyVJjAn8F", "xF5mnrAM5wyVJjAn8F", "tlT3y9xyYwyVJjAn8F", "idwyVJjAn8F", "xF5mnrAM5RNKtBH9gr", "evfwf55jxRNKtBH9gr", "tlT3y9xyYRNKtBH9gr", "idRNKtBH9gr", "xF5mnrAM5x3cxT4VUx", "evfwf55jxx3cxT4VUx", "tlT3y9xyYx3cxT4VUx", "idx3cxT4VUx", "xF5mnrAM5yXh3Qcue4", "evfwf55jxyXh3Qcue4", "tlT3y9xyYyXh3Qcue4", "idyXh3Qcue4", "xF5mnrAM5dPUocJgfv", "evfwf55jxdPUocJgfv", "tlT3y9xyYdPUocJgfv", "iddPUocJgfv", "xF5mnrAM5Jk31TqiSX", "evfwf55jxJk31TqiSX", "tlT3y9xyYJk31TqiSX", "idJk31TqiSX", "xF5mnrAM5DolDav_xB", "evfwf55jxDolDav_xB", "tlT3y9xyYDolDav_xB", "idDolDav_xB", "xF5mnrAM5LH7p2Ds_Y", "evfwf55jxLH7p2Ds_Y", "tlT3y9xyYLH7p2Ds_Y", "idLH7p2Ds_Y", "xF5mnrAM5oLGVdlLcb", "evfwf55jxoLGVdlLcb", "tlT3y9xyYoLGVdlLcb", "idoLGVdlLcb", "xF5mnrAM5JlHeiqIsH", "evfwf55jxJlHeiqIsH", "tlT3y9xyYJlHeiqIsH", "idJlHeiqIsH", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Link", "SVG", "x", "getLoadingLazyAtYPosition", "Image2", "ChildrenCanSuspend", "aytQe6X6v_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "collection3", "paginationInfo3", "loadMore3", "index3", "collection4", "paginationInfo4", "loadMore4", "index4", "collection5", "paginationInfo5", "loadMore5", "index5", "collection6", "paginationInfo6", "loadMore6", "index6", "collection7", "paginationInfo7", "loadMore7", "index7", "dyVLv05pR_default", "collection8", "paginationInfo8", "loadMore8", "index8", "collection9", "paginationInfo9", "loadMore9", "index9", "collection10", "paginationInfo10", "loadMore10", "index10", "collection11", "paginationInfo12", "loadMore12", "index11", "collection12", "paginationInfo11", "loadMore11", "collection13", "paginationInfo13", "loadMore13", "index12", "collection14", "paginationInfo14", "loadMore14", "index13", "collection15", "paginationInfo15", "loadMore15", "index14", "collection16", "paginationInfo16", "loadMore16", "index15", "index16", "index17", "index18", "index19", "collection17", "paginationInfo17", "loadMore17", "index20", "collection18", "paginationInfo18", "loadMore18", "index21", "collection19", "paginationInfo19", "loadMore19", "index22", "collection20", "paginationInfo20", "loadMore20", "index23", "index24", "collection21", "paginationInfo21", "loadMore21", "index25", "collection22", "paginationInfo22", "loadMore22", "index26", "collection23", "paginationInfo23", "loadMore23", "index27", "collection24", "paginationInfo24", "loadMore24", "index28", "collection25", "paginationInfo25", "loadMore25", "index29", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
