{"version":3,"file":"xNaM2MF0oz4GVKmLS-Crin0GoSfSl2oAn4H400Jln3Y.BsdODaGp.mjs","names":["props","PlayOptions","ThumbnailOptions","ThumbnailFormat","fonts","css","className","fonts","css","className","NavigationTopMenu","YouTube","BuildingBlocksExpandableImage","Hero","BuildingBlocksProductCard","NavigationFooter","NavigationMobileMenuBar","props","News","Cities","metadata","className","PropertyOverrides","RichText","Image","_Fragment","DubaiShows","idII3B3Z2zI","MoDmF9cbYII3B3Z2zI","OrNULhyStII3B3Z2zI","swUNIayuZII3B3Z2zI","TdpQgN7eDII3B3Z2zI","yaO06luzVII3B3Z2zI","YXDCyjmkBII3B3Z2zI","ZQbrLoh0NII3B3Z2zI","LondonProducts","BPRWMNxhGR7UWfmV9Y","eThamMJq8R7UWfmV9Y","gEoSCzjWNR7UWfmV9Y","idR7UWfmV9Y","O879VyWp_R7UWfmV9Y","WveU0o_lGR7UWfmV9Y","Yu4iYsj0RR7UWfmV9Y","ZwfLmd_ThR7UWfmV9Y","LasVegasProducts","dZsx9UUQIEbxXlsKyB","eStUn7XbfEbxXlsKyB","HrNkUuC2aEbxXlsKyB","idEbxXlsKyB","imljFZewDEbxXlsKyB","LwqbD_p4YEbxXlsKyB","PjPRfzwLQEbxXlsKyB","wHUBhP9kLEbxXlsKyB","NewYorkProducts","a8aWgsXfLjZiTvXlrk","cuSx9IJgZjZiTvXlrk","fZeee6K43jZiTvXlrk","G7wVtiW7ejZiTvXlrk","idjZiTvXlrk","Jr_22jQYEjZiTvXlrk","O7zAFC28rjZiTvXlrk","ssDUhQLMsjZiTvXlrk","css"],"sources":["https:/framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js","https:/framerusercontent.com/modules/Is9cPr3ykY0rQ8PpdCYg/qxkaa62DEpm53agyPjXF/itdwL0LOn.js","https:/framerusercontent.com/modules/Hqlphx8Pa8Jii7Qq50fq/T7KuPhdbmgsdPbfCod4d/T8DMD05yi.js","https:/framerusercontent.com/modules/RFCU2UwakZNMQpQ4ytir/6LvuaeIf18uR8BEwX4mc/MgyeQSFiQ.js","https:/framerusercontent.com/modules/MnVFDnO1ZZcRj7tX9Kp2/JelpI6XhTabcHzujB63N/MgyeQSFiQ.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState,useSyncExternalStore}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));let _isBot=null;function isBot(){if(_isBot===null)_isBot=/bot|-Google|Google-|yandex|ia_archiver/iu.test(navigator.userAgent);return _isBot;}const emptySubscribe=()=>()=>{};/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);// https://tkdodo.eu/blog/avoiding-hydration-mismatches-with-use-sync-external-store#usesyncexternalstore\nconst iframeIsDefaultVisible=useSyncExternalStore(emptySubscribe,// bots should not have display:none on the iframe\n()=>isBot(),()=>false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\");// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(// bots shouldn't autoplay the video but see the iframe in the DOM\n!iframeIsDefaultVisible&&(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo)){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{title:title||\"Youtube Video\",style:{...videoStyle,display:showVideo||iframeIsDefaultVisible?undefined:\"none\"},src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp,loading:\"lazy\"}):null,showVideo||iframeIsDefaultVisible?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicWidth\":\"560\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map","// Generated by Framer (1651613)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Figtree-regular\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v6/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5bwkEU4HTy.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-VZ0BB .framer-styles-preset-1omny3a:not(.rich-text-wrapper), .framer-VZ0BB .framer-styles-preset-1omny3a.rich-text-wrapper p { --framer-font-family: \"Figtree\", \"Figtree Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-7b0f038e-0bd7-4f1e-b181-c723290257f7, #bdc3cb); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-VZ0BB\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (1651613)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Figtree-600\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v6/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15bwkEU4HTy.woff2\",weight:\"600\"},{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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-4eBeJ .framer-styles-preset-1azuf0f:not(.rich-text-wrapper), .framer-4eBeJ .framer-styles-preset-1azuf0f.rich-text-wrapper h1 { --framer-font-family: \"Figtree\", \"Figtree Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-4eBeJ\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (76a81a8)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={A3JzKY5EL:new LazyValue(()=>import(\"./MgyeQSFiQ-1.js\")),ccVXV1ohj:new LazyValue(()=>import(\"./MgyeQSFiQ-7.js\")),cJAUJ3JX2:new LazyValue(()=>import(\"./MgyeQSFiQ-14.js\")),FSuYlk5YB:new LazyValue(()=>import(\"./MgyeQSFiQ-8.js\")),ITd1NAXRL:new LazyValue(()=>import(\"./MgyeQSFiQ-4.js\")),iuE6C1wkD:new LazyValue(()=>import(\"./MgyeQSFiQ-16.js\")),Lnlzf9h1j:new LazyValue(()=>import(\"./MgyeQSFiQ-0.js\")),LXNvQJ2LX:new LazyValue(()=>import(\"./MgyeQSFiQ-10.js\")),n5Cy1DXYI:new LazyValue(()=>import(\"./MgyeQSFiQ-15.js\")),NDFBKs4Cn:new LazyValue(()=>import(\"./MgyeQSFiQ-17.js\")),nncOSpZbY:new LazyValue(()=>import(\"./MgyeQSFiQ-12.js\")),pBmv40uQF:new LazyValue(()=>import(\"./MgyeQSFiQ-5.js\")),PD_Pe88ob:new LazyValue(()=>import(\"./MgyeQSFiQ-13.js\")),PTY52OJNB:new LazyValue(()=>import(\"./MgyeQSFiQ-9.js\")),Q4fA3EtKt:new LazyValue(()=>import(\"./MgyeQSFiQ-2.js\")),R_Unxefrm:new LazyValue(()=>import(\"./MgyeQSFiQ-3.js\")),Rqi_ElZKR:new LazyValue(()=>import(\"./MgyeQSFiQ-19.js\")),swj6SD7BF:new LazyValue(()=>import(\"./MgyeQSFiQ-18.js\")),vWrIKWwdj:new LazyValue(()=>import(\"./MgyeQSFiQ-6.js\")),XMxOI4ebM:new LazyValue(()=>import(\"./MgyeQSFiQ-11.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (76a81a8)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCSS}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js\";import BuildingBlocksProductCard from\"#framer/local/canvasComponent/adZRMS6DK/adZRMS6DK.js\";import NavigationFooter from\"#framer/local/canvasComponent/O8lrCvaKT/O8lrCvaKT.js\";import NavigationMobileMenuBar from\"#framer/local/canvasComponent/O93zFFAlm/O93zFFAlm.js\";import NavigationTopMenu from\"#framer/local/canvasComponent/rAbbIwQEp/rAbbIwQEp.js\";import BuildingBlocksExpandableImage from\"#framer/local/canvasComponent/y7eZRnu0S/y7eZRnu0S.js\";import LondonProducts from\"#framer/local/collection/fChICSW33/fChICSW33.js\";import News from\"#framer/local/collection/liQDLa3ot/liQDLa3ot.js\";import NewYorkProducts from\"#framer/local/collection/LVj7_ZEcP/LVj7_ZEcP.js\";import DubaiShows from\"#framer/local/collection/QEqzWm0Df/QEqzWm0Df.js\";import LasVegasProducts from\"#framer/local/collection/QNW4iTDWP/QNW4iTDWP.js\";import Cities from\"#framer/local/collection/veZkPWom_/veZkPWom_.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle6 from\"#framer/local/css/ALYv1Q3tX/ALYv1Q3tX.js\";import*as sharedStyle15 from\"#framer/local/css/DlKMeZySt/DlKMeZySt.js\";import*as sharedStyle9 from\"#framer/local/css/fkls9bIXw/fkls9bIXw.js\";import*as sharedStyle16 from\"#framer/local/css/g67LyNPHa/g67LyNPHa.js\";import*as sharedStyle8 from\"#framer/local/css/itdwL0LOn/itdwL0LOn.js\";import*as sharedStyle11 from\"#framer/local/css/j73yxsmVH/j73yxsmVH.js\";import*as sharedStyle4 from\"#framer/local/css/JadSvLRG4/JadSvLRG4.js\";import*as sharedStyle14 from\"#framer/local/css/jQqVbpx4j/jQqVbpx4j.js\";import*as sharedStyle7 from\"#framer/local/css/KpAL8c5q6/KpAL8c5q6.js\";import*as sharedStyle5 from\"#framer/local/css/nXOZn_TJi/nXOZn_TJi.js\";import*as sharedStyle1 from\"#framer/local/css/pgbUI1Yd9/pgbUI1Yd9.js\";import*as sharedStyle10 from\"#framer/local/css/qRHq3Osk3/qRHq3Osk3.js\";import*as sharedStyle13 from\"#framer/local/css/RPkrM6obl/RPkrM6obl.js\";import*as sharedStyle2 from\"#framer/local/css/T8DMD05yi/T8DMD05yi.js\";import*as sharedStyle3 from\"#framer/local/css/ThHMBICoU/ThHMBICoU.js\";import*as sharedStyle12 from\"#framer/local/css/VdMsaoReR/VdMsaoReR.js\";import*as sharedStyle from\"#framer/local/css/YA7CrddnI/YA7CrddnI.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/MgyeQSFiQ/MgyeQSFiQ.js\";import metadataProvider from\"#framer/local/webPageMetadata/MgyeQSFiQ/MgyeQSFiQ.js\";const NavigationTopMenuFonts=getFonts(NavigationTopMenu);const EmbedFonts=getFonts(Embed);const YouTubeFonts=getFonts(YouTube);const CarouselFonts=getFonts(Carousel);const BuildingBlocksExpandableImageFonts=getFonts(BuildingBlocksExpandableImage);const HeroFonts=getFonts(Hero);const BuildingBlocksProductCardFonts=getFonts(BuildingBlocksProductCard);const NavigationFooterFonts=getFonts(NavigationFooter);const NavigationMobileMenuBarFonts=getFonts(NavigationMobileMenuBar);const breakpoints={hqFyCH6ng:\"(max-width: 809px)\",hWktDHtgc:\"(min-width: 810px) and (max-width: 1199px)\",RCJ620GpH:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-SlDUU\";const variantClassNames={hqFyCH6ng:\"framer-v-lwi7ek\",hWktDHtgc:\"framer-v-awann\",RCJ620GpH:\"framer-v-ibynp8\"};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"rR2sgjmTR\":return\"EK2CrbaiW\";case\"mNOHz53fn\":return\"jLNH_IV3b\";case\"OPpfGRRTQ\":return\"lWR_oCQh3\";case\"WhShTQilR\":return\"rUPJG431K\";case\"FRnhWcRyL\":return\"xL30xlt6W\";default:return\"xL30xlt6W\";}};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const convertFromEnum1=(value,activeLocale)=>{switch(value){case\"AjQYsbunH\":return true;default:return false;}};const toBoolean=value=>{return Boolean(value);};const toString=value=>{return typeof value===\"string\"?value:String(value);};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const convertFromEnum2=(value,activeLocale)=>{switch(value){default:return false;}};const convertFromEnum3=(value,activeLocale)=>{switch(value){case\"rR2sgjmTR\":return\"YCQyv_uPi\";case\"mNOHz53fn\":return\"iqttRkQXL\";case\"OPpfGRRTQ\":return\"B9y1nXs3b\";case\"WhShTQilR\":return\"abKK605yO\";case\"FRnhWcRyL\":return\"abKK605yO\";default:return\"abKK605yO\";}};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"RCJ620GpH\",Phone:\"hqFyCH6ng\",Tablet:\"hWktDHtgc\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"RCJ620GpH\"};};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{constraint:{left:{collection:\"MgyeQSFiQ\",name:\"IdrKkYWvg\",type:\"Identifier\"},operator:\"==\",right:{collection:\"IdrKkYWvg\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"MgyeQSFiQ\",data:News,type:\"Collection\"},right:{alias:\"IdrKkYWvg\",data:Cities,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"MgyeQSFiQ\",name:\"euJPJ7vJy\",type:\"Identifier\"},{collection:\"MgyeQSFiQ\",name:\"ygJ_egWTA\",type:\"Identifier\"},{collection:\"MgyeQSFiQ\",name:\"QCtYQmbkh\",type:\"Identifier\"},{alias:\"IdrKkYWvg.oNL2AUzg7\",collection:\"IdrKkYWvg\",name:\"oNL2AUzg7\",type:\"Identifier\"},{alias:\"IdrKkYWvg\",collection:\"IdrKkYWvg\",name:\"id\",type:\"Identifier\"},{collection:\"MgyeQSFiQ\",name:\"yonk01rm0\",type:\"Identifier\"},{collection:\"MgyeQSFiQ\",name:\"koOPUUafB\",type:\"Identifier\"},{collection:\"MgyeQSFiQ\",name:\"qmw8O6zZl\",type:\"Identifier\"},{collection:\"MgyeQSFiQ\",name:\"qMrJpOnTN\",type:\"Identifier\"},{collection:\"MgyeQSFiQ\",name:\"Tw5JHxS7D\",type:\"Identifier\"},{collection:\"MgyeQSFiQ\",name:\"C0LZNXmLG\",type:\"Identifier\"},{collection:\"MgyeQSFiQ\",name:\"kQW8SgryJ\",type:\"Identifier\"},{collection:\"MgyeQSFiQ\",name:\"uHdWu65u_\",type:\"Identifier\"},{collection:\"MgyeQSFiQ\",name:\"qw2qlwNb1\",type:\"Identifier\"},{collection:\"MgyeQSFiQ\",name:\"H80PdLyLY\",type:\"Identifier\"},{collection:\"MgyeQSFiQ\",name:\"nXyfsosLn\",type:\"Identifier\"},{collection:\"MgyeQSFiQ\",name:\"HV0FTjWRR\",type:\"Identifier\"},{collection:\"MgyeQSFiQ\",name:\"b6CSql3rn\",type:\"Identifier\"},{collection:\"MgyeQSFiQ\",name:\"WhMmfmfxM\",type:\"Identifier\"},{collection:\"MgyeQSFiQ\",name:\"WWXpU1jto\",type:\"Identifier\"},{collection:\"MgyeQSFiQ\",name:\"nAWZwtJuK\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"MgyeQSFiQ\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,IdrKkYWvg_oNL2AUzg7=getFromCurrentRouteData(\"IdrKkYWvg.oNL2AUzg7\"),QCtYQmbkh=getFromCurrentRouteData(\"QCtYQmbkh\"),euJPJ7vJy=getFromCurrentRouteData(\"euJPJ7vJy\")??\"\",ygJ_egWTA=getFromCurrentRouteData(\"ygJ_egWTA\"),qmw8O6zZl=getFromCurrentRouteData(\"qmw8O6zZl\")??\"\",qMrJpOnTN=getFromCurrentRouteData(\"qMrJpOnTN\")??\"\",Tw5JHxS7D=getFromCurrentRouteData(\"Tw5JHxS7D\")??\"\",C0LZNXmLG=getFromCurrentRouteData(\"C0LZNXmLG\")??\"\",uHdWu65u_=getFromCurrentRouteData(\"uHdWu65u_\"),qw2qlwNb1=getFromCurrentRouteData(\"qw2qlwNb1\"),H80PdLyLY=getFromCurrentRouteData(\"H80PdLyLY\"),nXyfsosLn=getFromCurrentRouteData(\"nXyfsosLn\"),HV0FTjWRR=getFromCurrentRouteData(\"HV0FTjWRR\"),b6CSql3rn=getFromCurrentRouteData(\"b6CSql3rn\"),WhMmfmfxM=getFromCurrentRouteData(\"WhMmfmfxM\"),kQW8SgryJ=getFromCurrentRouteData(\"kQW8SgryJ\")??\"\",IdrKkYWvg=getFromCurrentRouteData(\"IdrKkYWvg\"),yonk01rm0=getFromCurrentRouteData(\"yonk01rm0\")??true,MoDmF9cbYII3B3Z2zI,ZQbrLoh0NII3B3Z2zI,TdpQgN7eDII3B3Z2zI,swUNIayuZII3B3Z2zI,yaO06luzVII3B3Z2zI,YXDCyjmkBII3B3Z2zI,OrNULhyStII3B3Z2zI,idII3B3Z2zI,koOPUUafB=getFromCurrentRouteData(\"koOPUUafB\")??\"\",O879VyWp_R7UWfmV9Y,Yu4iYsj0RR7UWfmV9Y,gEoSCzjWNR7UWfmV9Y,ZwfLmd_ThR7UWfmV9Y,WveU0o_lGR7UWfmV9Y,eThamMJq8R7UWfmV9Y,BPRWMNxhGR7UWfmV9Y,idR7UWfmV9Y,dZsx9UUQIEbxXlsKyB,eStUn7XbfEbxXlsKyB,HrNkUuC2aEbxXlsKyB,imljFZewDEbxXlsKyB,PjPRfzwLQEbxXlsKyB,wHUBhP9kLEbxXlsKyB,LwqbD_p4YEbxXlsKyB,idEbxXlsKyB,O7zAFC28rjZiTvXlrk,ssDUhQLMsjZiTvXlrk,a8aWgsXfLjZiTvXlrk,cuSx9IJgZjZiTvXlrk,G7wVtiW7ejZiTvXlrk,Jr_22jQYEjZiTvXlrk,fZeee6K43jZiTvXlrk,idjZiTvXlrk,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,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);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const NxKZpTWpZ3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onClick1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className,sharedStyle15.className,sharedStyle16.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const activeLocaleCode=useLocaleCode();const textContent=toDateString(QCtYQmbkh,{dateStyle:\"long\",locale:\"\"},activeLocaleCode);const visible=isSet(qMrJpOnTN);usePreloadLocalizedValues(activeLocale);const visible1=isSet(Tw5JHxS7D);const visible2=isSet(C0LZNXmLG);const visible3=equals(uHdWu65u_,\"EjRSjegQO\");const visible4=isSet(qw2qlwNb1);const visible5=isSet(H80PdLyLY);const visible6=isSet(nXyfsosLn);const visible7=isSet(HV0FTjWRR);const visible8=isSet(b6CSql3rn);const visible9=isSet(WhMmfmfxM);const visible10=isSet(kQW8SgryJ);const visible11=equals(uHdWu65u_,\"wtVpztAPg\");const visible12=isSet(IdrKkYWvg);const visible13=equals(IdrKkYWvg,\"J3nJgXb2v\");const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if([\"hWktDHtgc\",\"hqFyCH6ng\"].includes(baseVariant))return true;return false;};const visible14=equals(IdrKkYWvg,\"ObPTsGolN\");const visible15=equals(IdrKkYWvg,\"GbBWhn3cg\");const visible16=equals(IdrKkYWvg,\"P5jXg5fNs\");const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"hqFyCH6ng\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"RCJ620GpH\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-b76058d9-4119-4402-ab0c-ea96c1c9e17d, rgb(18, 18, 18)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-ibynp8\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fpaejm-container\",nodeId:\"qbIooH7A2\",scopeId:\"MgyeQSFiQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hqFyCH6ng:{variant:\"faERmvNNv\"},hWktDHtgc:{variant:\"uoZyTyR_o\"}},children:/*#__PURE__*/_jsx(NavigationTopMenu,{CLKTHQ503:convertFromEnum(IdrKkYWvg_oNL2AUzg7,activeLocale),EZ258D0lj:false,height:\"100%\",id:\"qbIooH7A2\",IOH_FZY41:{borderBottomWidth:1,borderColor:\"#222\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},layoutId:\"qbIooH7A2\",NAhmNh4bo:1,sOmciTPWw:\"rgba(10, 10, 10, 0)\",style:{width:\"100%\"},variant:\"bGaokdIQ3\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v9ep2r\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g9k4yo\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1oiu9nx\",\"data-styles-preset\":\"YA7CrddnI\",style:{\"--framer-text-color\":\"var(--token-7b0f038e-0bd7-4f1e-b181-c723290257f7, rgb(189, 195, 203))\"},children:\"Content\"})}),className:\"framer-1im7kbi\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-167wcr5\",\"data-styles-preset\":\"pgbUI1Yd9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"What to Do in NYC When It Rains: 10 Indoor Adventures Worth Booking\"})}),className:\"framer-8rjora\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:euJPJ7vJy,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hqFyCH6ng:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+64+-3.6),sizes:`min(${componentViewport?.width||\"100vw\"} - 32px, 1200px)`,...toResponsiveImage(ygJ_egWTA)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+64+-3.6),sizes:`min(${componentViewport?.width||\"100vw\"} - 64px, 1200px)`,...toResponsiveImage(ygJ_egWTA)},className:\"framer-fnnv1f\",\"data-framer-name\":\"Banner\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dsbq9e\",\"data-framer-name\":\"Post 1\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"tlRw14O7f\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"e8mTTEjEi\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"mgnxc9XlP\"]},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hqFyCH6ng:{stylesPresetsClassNames:{a:\"framer-styles-preset-1d3avwb\",blockquote:\"framer-styles-preset-1vjweuh\",code:\"framer-styles-preset-i55jy3\",h1:\"framer-styles-preset-1ygrrxq\",h2:\"framer-styles-preset-12oxkix\",h3:\"framer-styles-preset-m8g412\",h4:\"framer-styles-preset-1fk7hw3\",h5:\"framer-styles-preset-19yjoh9\",h6:\"framer-styles-preset-11x2ay9\",img:\"framer-styles-preset-24i2vd\",p:\"framer-styles-preset-1omny3a\",table:\"framer-styles-preset-p83npv\"}},hWktDHtgc:{stylesPresetsClassNames:{a:\"framer-styles-preset-1d3avwb\",blockquote:\"framer-styles-preset-1vjweuh\",code:\"framer-styles-preset-i55jy3\",h1:\"framer-styles-preset-1ygrrxq\",h2:\"framer-styles-preset-12oxkix\",h3:\"framer-styles-preset-m8g412\",h4:\"framer-styles-preset-1fk7hw3\",h5:\"framer-styles-preset-19yjoh9\",h6:\"framer-styles-preset-11x2ay9\",img:\"framer-styles-preset-24i2vd\",p:\"framer-styles-preset-1omny3a\",table:\"framer-styles-preset-p83npv\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:qmw8O6zZl,className:\"framer-16d19wo\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1d3avwb\",blockquote:\"framer-styles-preset-1vjweuh\",code:\"framer-styles-preset-i55jy3\",h1:\"framer-styles-preset-1azuf0f\",h2:\"framer-styles-preset-12oxkix\",h3:\"framer-styles-preset-m8g412\",h4:\"framer-styles-preset-1fk7hw3\",h5:\"framer-styles-preset-19yjoh9\",h6:\"framer-styles-preset-11x2ay9\",img:\"framer-styles-preset-24i2vd\",p:\"framer-styles-preset-1omny3a\",table:\"framer-styles-preset-p83npv\"},verticalAlignment:\"top\",withExternalLayout:true})})}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18faqgv-container\",\"data-framer-name\":\"URL Embed\",isAuthoredByUser:true,isModuleExternal:true,name:\"URL Embed\",nodeId:\"cFEuEaBwS\",scopeId:\"MgyeQSFiQ\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:getLocalizedValue(\"v0\",activeLocale)??\"https://www.google.com/maps/d/u/0/embed?mid=1H2AudR8dIIXAi7OchpPvxqBaz5pcEOU&ehbc=2E312F&noprof=1\",id:\"cFEuEaBwS\",layoutId:\"cFEuEaBwS\",name:\"URL Embed\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:qMrJpOnTN,width:\"100%\"})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gkty21-container\",\"data-framer-name\":\"Code Embed\",isAuthoredByUser:true,isModuleExternal:true,name:\"Code Embed\",nodeId:\"CR3b7u5RP\",scopeId:\"MgyeQSFiQ\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:Tw5JHxS7D,id:\"CR3b7u5RP\",layoutId:\"CR3b7u5RP\",name:\"Code Embed\",style:{width:\"100%\"},type:\"html\",url:getLocalizedValue(\"v0\",activeLocale)??\"https://www.google.com/maps/d/u/0/embed?mid=1H2AudR8dIIXAi7OchpPvxqBaz5pcEOU&ehbc=2E312F&noprof=1\",width:\"100%\"})})}),visible2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1obd6y8-container\",isModuleExternal:true,nodeId:\"eK4Cr9P8A\",scopeId:\"MgyeQSFiQ\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,height:\"100%\",id:\"eK4Cr9P8A\",isMixedBorderRadius:false,isRed:true,layoutId:\"eK4Cr9P8A\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:16,topRightRadius:16,url:C0LZNXmLG,width:\"100%\"})})})]}),visible3&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pigr8z-container\",\"data-framer-name\":\"Midgallery\",isModuleExternal:true,name:\"Midgallery\",nodeId:\"Q9aHJgh3R\",scopeId:\"MgyeQSFiQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hqFyCH6ng:{sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-2e5f846b-8dd1-4aca-b95f-f82f745b6209, rgb(17, 23, 30))\",arrowPadding:20,arrowRadius:40,arrowSize:40,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:16,height:\"100%\",id:\"Q9aHJgh3R\",layoutId:\"Q9aHJgh3R\",name:\"Midgallery\",padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,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:3,widthInset:0,widthType:\"columns\"},slots:[visible4&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"480px\",...toResponsiveImage(qw2qlwNb1),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1fxz9ri\",\"data-framer-name\":\"Image 1\"}),visible5&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"480px\",...toResponsiveImage(H80PdLyLY),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1cskysn\",\"data-framer-name\":\"Image 2\"}),visible6&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"480px\",...toResponsiveImage(nXyfsosLn),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-jwxgii\",\"data-framer-name\":\"Image 3\"}),visible7&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"480px\",...toResponsiveImage(HV0FTjWRR),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-15yz3k2\",\"data-framer-name\":\"Image 4\"}),visible8&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"480px\",...toResponsiveImage(b6CSql3rn),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1x0zzin\",\"data-framer-name\":\"Image 5\"}),visible9&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"480px\",...toResponsiveImage(WhMmfmfxM),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-2hihle\",\"data-framer-name\":\"Image 6\"})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})}),visible10&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-rae99x\",\"data-framer-name\":\"Post 2\",children:visible10&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"tlRw14O7f\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"e8mTTEjEi\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"mgnxc9XlP\"]},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hqFyCH6ng:{stylesPresetsClassNames:{a:\"framer-styles-preset-1d3avwb\",blockquote:\"framer-styles-preset-1vjweuh\",code:\"framer-styles-preset-i55jy3\",h1:\"framer-styles-preset-1ygrrxq\",h2:\"framer-styles-preset-12oxkix\",h3:\"framer-styles-preset-m8g412\",h4:\"framer-styles-preset-1fk7hw3\",h5:\"framer-styles-preset-19yjoh9\",h6:\"framer-styles-preset-11x2ay9\",img:\"framer-styles-preset-24i2vd\",p:\"framer-styles-preset-wpw0wy\",table:\"framer-styles-preset-p83npv\"}},hWktDHtgc:{stylesPresetsClassNames:{a:\"framer-styles-preset-1d3avwb\",blockquote:\"framer-styles-preset-1vjweuh\",code:\"framer-styles-preset-i55jy3\",h1:\"framer-styles-preset-1ygrrxq\",h2:\"framer-styles-preset-12oxkix\",h3:\"framer-styles-preset-m8g412\",h4:\"framer-styles-preset-1fk7hw3\",h5:\"framer-styles-preset-19yjoh9\",h6:\"framer-styles-preset-11x2ay9\",img:\"framer-styles-preset-24i2vd\",p:\"framer-styles-preset-wpw0wy\",table:\"framer-styles-preset-p83npv\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:kQW8SgryJ,className:\"framer-16bflc\",\"data-framer-name\":\"Content 2\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1d3avwb\",blockquote:\"framer-styles-preset-1vjweuh\",code:\"framer-styles-preset-i55jy3\",h1:\"framer-styles-preset-1azuf0f\",h2:\"framer-styles-preset-12oxkix\",h3:\"framer-styles-preset-m8g412\",h4:\"framer-styles-preset-1fk7hw3\",h5:\"framer-styles-preset-19yjoh9\",h6:\"framer-styles-preset-11x2ay9\",img:\"framer-styles-preset-24i2vd\",p:\"framer-styles-preset-wpw0wy\",table:\"framer-styles-preset-p83npv\"},verticalAlignment:\"top\",withExternalLayout:true})})})})]}),visible11&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e3157t\",\"data-framer-name\":\"Bottom Gallery\",\"data-hide-scrollbars\":true,style:{rotateY:-10},children:[visible4&&/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hqFyCH6ng:{height:160,width:\"284.4444px\",y:(componentViewport?.y||0)+0+914.4+-16}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:270,width:\"480px\",y:(componentViewport?.y||0)+0+914.4+-71,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-157n3kh-container\",\"data-framer-name\":\"Exp 1\",id:\"157n3kh\",name:\"Exp 1\",nodeId:\"voxqxgLWM\",scopeId:\"MgyeQSFiQ\",children:[/*#__PURE__*/_jsx(BuildingBlocksExpandableImage,{height:\"100%\",id:\"voxqxgLWM\",layoutId:\"voxqxgLWM\",name:\"Exp 1\",NxKZpTWpZ:NxKZpTWpZ3bnx0g({overlay}),style:{height:\"100%\",width:\"100%\"},width:\"100%\",YU24bFn4d:toResponsiveImage(qw2qlwNb1)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1ynw9es\"),\"data-framer-portal-id\":\"157n3kh\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"HUIE3fyYt\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"90vw\",...toResponsiveImage(qw2qlwNb1)},className:cx(scopingClassNames,\"framer-1b6xuks\"),\"data-framer-portal-id\":\"157n3kh\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-jgo3cp-container\"),\"data-framer-portal-id\":\"157n3kh\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VTLRMO2Vo\",rendersWithMotion:true,scopeId:\"MgyeQSFiQ\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgba(255, 255, 255, 0.75)\",height:\"100%\",iconSearch:getLocalizedValue(\"v1\",activeLocale)??\"Home\",iconSelection:\"XMark\",id:\"VTLRMO2Vo\",layoutId:\"VTLRMO2Vo\",mirrored:false,onClick:onClick1wnntms({overlay}),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})})})}),visible5&&/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hqFyCH6ng:{height:160,width:\"284.4444px\",y:(componentViewport?.y||0)+0+914.4+-16}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:270,width:\"480px\",y:(componentViewport?.y||0)+0+914.4+-71,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-n2xlo8-container\",\"data-framer-name\":\"Exp 2\",id:\"n2xlo8\",name:\"Exp 2\",nodeId:\"mv2Yiht_j\",scopeId:\"MgyeQSFiQ\",children:[/*#__PURE__*/_jsx(BuildingBlocksExpandableImage,{height:\"100%\",id:\"mv2Yiht_j\",layoutId:\"mv2Yiht_j\",name:\"Exp 2\",NxKZpTWpZ:NxKZpTWpZ3bnx0g({overlay:overlay1}),style:{height:\"100%\",width:\"100%\"},width:\"100%\",YU24bFn4d:toResponsiveImage(H80PdLyLY)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-12haqr5\"),\"data-framer-portal-id\":\"n2xlo8\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"zu787VPYm\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"90vw\",...toResponsiveImage(H80PdLyLY),...{positionX:\"center\",positionY:\"center\"}},className:cx(scopingClassNames,\"framer-fydajv\"),\"data-framer-portal-id\":\"n2xlo8\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1t5y6j7-container\"),\"data-framer-portal-id\":\"n2xlo8\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RyVeK3a1D\",rendersWithMotion:true,scopeId:\"MgyeQSFiQ\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgba(255, 255, 255, 0.75)\",height:\"100%\",iconSearch:getLocalizedValue(\"v1\",activeLocale)??\"Home\",iconSelection:\"XMark\",id:\"RyVeK3a1D\",layoutId:\"RyVeK3a1D\",mirrored:false,onClick:onClick1wnntms({overlay:overlay1}),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})})})}),visible6&&/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hqFyCH6ng:{height:160,width:\"284.4444px\",y:(componentViewport?.y||0)+0+914.4+-16}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:270,width:\"480px\",y:(componentViewport?.y||0)+0+914.4+-71,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-lle0zq-container\",\"data-framer-name\":\"Exp 3\",id:\"lle0zq\",name:\"Exp 3\",nodeId:\"Y61e8EHjJ\",scopeId:\"MgyeQSFiQ\",children:[/*#__PURE__*/_jsx(BuildingBlocksExpandableImage,{height:\"100%\",id:\"Y61e8EHjJ\",layoutId:\"Y61e8EHjJ\",name:\"Exp 3\",NxKZpTWpZ:NxKZpTWpZ3bnx0g({overlay:overlay2}),style:{height:\"100%\",width:\"100%\"},width:\"100%\",YU24bFn4d:toResponsiveImage(nXyfsosLn)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-o7pn07\"),\"data-framer-portal-id\":\"lle0zq\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"jH5ZU5ycr\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"90vw\",...toResponsiveImage(nXyfsosLn),...{positionX:\"center\",positionY:\"center\"}},className:cx(scopingClassNames,\"framer-vlcklz\"),\"data-framer-portal-id\":\"lle0zq\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1vs7ihw-container\"),\"data-framer-portal-id\":\"lle0zq\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Ng69jtduT\",rendersWithMotion:true,scopeId:\"MgyeQSFiQ\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgba(255, 255, 255, 0.75)\",height:\"100%\",iconSearch:getLocalizedValue(\"v1\",activeLocale)??\"Home\",iconSelection:\"XMark\",id:\"Ng69jtduT\",layoutId:\"Ng69jtduT\",mirrored:false,onClick:onClick1wnntms({overlay:overlay2}),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})})})}),visible7&&/*#__PURE__*/_jsx(Overlay,{children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hqFyCH6ng:{height:160,width:\"284.4444px\",y:(componentViewport?.y||0)+0+914.4+-16}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:270,width:\"480px\",y:(componentViewport?.y||0)+0+914.4+-71,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1pzahqd-container\",\"data-framer-name\":\"Exp 4\",id:\"1pzahqd\",name:\"Exp 4\",nodeId:\"eFl80Aley\",scopeId:\"MgyeQSFiQ\",children:[/*#__PURE__*/_jsx(BuildingBlocksExpandableImage,{height:\"100%\",id:\"eFl80Aley\",layoutId:\"eFl80Aley\",name:\"Exp 4\",NxKZpTWpZ:NxKZpTWpZ3bnx0g({overlay:overlay3}),style:{height:\"100%\",width:\"100%\"},width:\"100%\",YU24bFn4d:toResponsiveImage(HV0FTjWRR)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-r9or0s\"),\"data-framer-portal-id\":\"1pzahqd\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay3.hide()},\"BuA1Brz_T\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"90vw\",...toResponsiveImage(HV0FTjWRR),...{positionX:\"center\",positionY:\"center\"}},className:cx(scopingClassNames,\"framer-1riq9m\"),\"data-framer-portal-id\":\"1pzahqd\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-ep4wfb-container\"),\"data-framer-portal-id\":\"1pzahqd\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"A97AW7keU\",rendersWithMotion:true,scopeId:\"MgyeQSFiQ\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgba(255, 255, 255, 0.75)\",height:\"100%\",iconSearch:getLocalizedValue(\"v1\",activeLocale)??\"Home\",iconSelection:\"XMark\",id:\"A97AW7keU\",layoutId:\"A97AW7keU\",mirrored:false,onClick:onClick1wnntms({overlay:overlay3}),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})})})}),visible8&&/*#__PURE__*/_jsx(Overlay,{children:overlay4=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hqFyCH6ng:{height:160,width:\"284.4444px\",y:(componentViewport?.y||0)+0+914.4+-16}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:270,width:\"480px\",y:(componentViewport?.y||0)+0+914.4+-71,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-2klf3m-container\",\"data-framer-name\":\"Exp 5\",id:\"2klf3m\",name:\"Exp 5\",nodeId:\"jFG0KjTH6\",scopeId:\"MgyeQSFiQ\",children:[/*#__PURE__*/_jsx(BuildingBlocksExpandableImage,{height:\"100%\",id:\"jFG0KjTH6\",layoutId:\"jFG0KjTH6\",name:\"Exp 5\",NxKZpTWpZ:NxKZpTWpZ3bnx0g({overlay:overlay4}),style:{height:\"100%\",width:\"100%\"},width:\"100%\",YU24bFn4d:toResponsiveImage(b6CSql3rn)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay4.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-18pkq1w\"),\"data-framer-portal-id\":\"2klf3m\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay4.hide()},\"YZ8pLG7Wr\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"90vw\",...toResponsiveImage(b6CSql3rn),...{positionX:\"center\",positionY:\"center\"}},className:cx(scopingClassNames,\"framer-1owjw8w\"),\"data-framer-portal-id\":\"2klf3m\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-sblnnq-container\"),\"data-framer-portal-id\":\"2klf3m\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"sGE81iXax\",rendersWithMotion:true,scopeId:\"MgyeQSFiQ\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgba(255, 255, 255, 0.75)\",height:\"100%\",iconSearch:getLocalizedValue(\"v1\",activeLocale)??\"Home\",iconSelection:\"XMark\",id:\"sGE81iXax\",layoutId:\"sGE81iXax\",mirrored:false,onClick:onClick1wnntms({overlay:overlay4}),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})})})}),visible9&&/*#__PURE__*/_jsx(Overlay,{children:overlay5=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hqFyCH6ng:{height:160,width:\"284.4444px\",y:(componentViewport?.y||0)+0+914.4+-16}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:270,width:\"480px\",y:(componentViewport?.y||0)+0+914.4+-71,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1cy0y2e-container\",\"data-framer-name\":\"Exp 6\",id:\"1cy0y2e\",name:\"Exp 6\",nodeId:\"OIZKrp6A2\",scopeId:\"MgyeQSFiQ\",children:[/*#__PURE__*/_jsx(BuildingBlocksExpandableImage,{height:\"100%\",id:\"OIZKrp6A2\",layoutId:\"OIZKrp6A2\",name:\"Exp 6\",NxKZpTWpZ:NxKZpTWpZ3bnx0g({overlay:overlay5}),style:{height:\"100%\",width:\"100%\"},width:\"100%\",YU24bFn4d:toResponsiveImage(WhMmfmfxM)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay5.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-azx6c\"),\"data-framer-portal-id\":\"1cy0y2e\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay5.hide()},\"LYU5Fl5uF\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"90vw\",...toResponsiveImage(WhMmfmfxM),...{positionX:\"center\",positionY:\"center\"}},className:cx(scopingClassNames,\"framer-11j32h4\"),\"data-framer-portal-id\":\"1cy0y2e\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-12rt7jp-container\"),\"data-framer-portal-id\":\"1cy0y2e\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RemeYmVUc\",rendersWithMotion:true,scopeId:\"MgyeQSFiQ\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgba(255, 255, 255, 0.75)\",height:\"100%\",iconSearch:getLocalizedValue(\"v1\",activeLocale)??\"Home\",iconSelection:\"XMark\",id:\"RemeYmVUc\",layoutId:\"RemeYmVUc\",mirrored:false,onClick:onClick1wnntms({overlay:overlay5}),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})})})})]}),visible12&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kwvpak\",\"data-framer-name\":\"City recomendations\",children:yonk01rm0&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ovseix\",\"data-framer-name\":\"City recomendation \",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-dc1b9b\",\"data-styles-preset\":\"g67LyNPHa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e67efeeb-e984-4344-b253-2d3d53909999, rgb(255, 255, 255))\"},children:\"Check out some of our products\"})}),className:\"framer-1eg57p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sxs7fx\",\"data-framer-name\":\"Overlay\"}),visible13&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b4uc69\",\"data-hide-scrollbars\":true,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"II3B3Z2zI\",data:DubaiShows,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"II3B3Z2zI\",name:\"MoDmF9cbY\",type:\"Identifier\"},{collection:\"II3B3Z2zI\",name:\"ZQbrLoh0N\",type:\"Identifier\"},{collection:\"II3B3Z2zI\",name:\"TdpQgN7eD\",type:\"Identifier\"},{collection:\"II3B3Z2zI\",name:\"swUNIayuZ\",type:\"Identifier\"},{collection:\"II3B3Z2zI\",name:\"yaO06luzV\",type:\"Identifier\"},{collection:\"II3B3Z2zI\",name:\"YXDCyjmkB\",type:\"Identifier\"},{collection:\"II3B3Z2zI\",name:\"OrNULhySt\",type:\"Identifier\"},{collection:\"II3B3Z2zI\",name:\"id\",type:\"Identifier\"}],where:{left:{arguments:[{collection:\"II3B3Z2zI\",name:\"OFi56Y69t\",type:\"Identifier\"},{type:\"LiteralValue\",value:koOPUUafB}],functionName:\"CONTAINS\",type:\"FunctionCall\"},operator:\"and\",right:{collection:\"II3B3Z2zI\",name:\"E7VlFwEnt\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection?.map(({id:idII3B3Z2zI,MoDmF9cbY:MoDmF9cbYII3B3Z2zI,OrNULhySt:OrNULhyStII3B3Z2zI,swUNIayuZ:swUNIayuZII3B3Z2zI,TdpQgN7eD:TdpQgN7eDII3B3Z2zI,yaO06luzV:yaO06luzVII3B3Z2zI,YXDCyjmkB:YXDCyjmkBII3B3Z2zI,ZQbrLoh0N:ZQbrLoh0NII3B3Z2zI},index)=>{ZQbrLoh0NII3B3Z2zI??=\"\";TdpQgN7eDII3B3Z2zI??=0;swUNIayuZII3B3Z2zI??=\"\";YXDCyjmkBII3B3Z2zI??=\"\";OrNULhyStII3B3Z2zI??=0;return /*#__PURE__*/_jsx(LayoutGroup,{id:`II3B3Z2zI-${idII3B3Z2zI}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{swUNIayuZ:swUNIayuZII3B3Z2zI},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{swUNIayuZ:swUNIayuZII3B3Z2zI},webPageId:\"T9Z4txO4b\"},implicitPathVariables:undefined},{href:{pathVariables:{swUNIayuZ:swUNIayuZII3B3Z2zI},webPageId:\"T9Z4txO4b\"},implicitPathVariables:undefined},{href:{pathVariables:{swUNIayuZ:swUNIayuZII3B3Z2zI},webPageId:\"T9Z4txO4b\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hqFyCH6ng:{y:(componentViewport?.y||0)+0+1002.4+0+0+32+-868.8+0},hWktDHtgc:{y:(componentViewport?.y||0)+0+1002.4+0+0+32+-868.8+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:438,y:(componentViewport?.y||0)+0+1002.4+0+0+32+-864.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-masji1-container\",nodeId:\"P98zK6cDE\",scopeId:\"MgyeQSFiQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hqFyCH6ng:{KKTMyjuPd:resolvedLinks[2]},hWktDHtgc:{KKTMyjuPd:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(BuildingBlocksProductCard,{CFUguLG0a:toString(OrNULhyStII3B3Z2zI),height:\"100%\",hkY5BxLge:TdpQgN7eDII3B3Z2zI,id:\"P98zK6cDE\",jzC4jFoQ2:ZQbrLoh0NII3B3Z2zI,KKTMyjuPd:resolvedLinks[0],layoutId:\"P98zK6cDE\",LKLAFkHtJ:getLocalizedValue(\"v3\",activeLocale)??\"AED\",mArHAIUV0:YXDCyjmkBII3B3Z2zI,RytHRBSXH:toBoolean(convertFromEnum1(yaO06luzVII3B3Z2zI,activeLocale)),TSigpONki:toResponsiveImage(MoDmF9cbYII3B3Z2zI),variant:\"gszeDCt5e\",width:\"100%\"})})})})})})})},idII3B3Z2zI);}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-969rk8 hidden-ibynp8\",\"data-framer-name\":\"spacer\"})]})})})}),visible14&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-fq4q5w\",\"data-hide-scrollbars\":true,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"R7UWfmV9Y\",data:LondonProducts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"R7UWfmV9Y\",name:\"O879VyWp_\",type:\"Identifier\"},{collection:\"R7UWfmV9Y\",name:\"Yu4iYsj0R\",type:\"Identifier\"},{collection:\"R7UWfmV9Y\",name:\"gEoSCzjWN\",type:\"Identifier\"},{collection:\"R7UWfmV9Y\",name:\"ZwfLmd_Th\",type:\"Identifier\"},{collection:\"R7UWfmV9Y\",name:\"WveU0o_lG\",type:\"Identifier\"},{collection:\"R7UWfmV9Y\",name:\"eThamMJq8\",type:\"Identifier\"},{collection:\"R7UWfmV9Y\",name:\"BPRWMNxhG\",type:\"Identifier\"},{collection:\"R7UWfmV9Y\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"R7UWfmV9Y\",name:\"nzeXOJGHp\",type:\"Identifier\"},operator:\"and\",right:{arguments:[{collection:\"R7UWfmV9Y\",name:\"K1Afp7TJ3\",type:\"Identifier\"},{type:\"LiteralValue\",value:koOPUUafB}],functionName:\"CONTAINS\",type:\"FunctionCall\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection1?.map(({BPRWMNxhG:BPRWMNxhGR7UWfmV9Y,eThamMJq8:eThamMJq8R7UWfmV9Y,gEoSCzjWN:gEoSCzjWNR7UWfmV9Y,id:idR7UWfmV9Y,O879VyWp_:O879VyWp_R7UWfmV9Y,WveU0o_lG:WveU0o_lGR7UWfmV9Y,Yu4iYsj0R:Yu4iYsj0RR7UWfmV9Y,ZwfLmd_Th:ZwfLmd_ThR7UWfmV9Y},index1)=>{Yu4iYsj0RR7UWfmV9Y??=\"\";gEoSCzjWNR7UWfmV9Y??=0;ZwfLmd_ThR7UWfmV9Y??=\"\";eThamMJq8R7UWfmV9Y??=\"\";BPRWMNxhGR7UWfmV9Y??=0;return /*#__PURE__*/_jsx(LayoutGroup,{id:`R7UWfmV9Y-${idR7UWfmV9Y}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ZwfLmd_Th:ZwfLmd_ThR7UWfmV9Y},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ZwfLmd_Th:ZwfLmd_ThR7UWfmV9Y},webPageId:\"nG59yCZwV\"},implicitPathVariables:undefined},{href:{pathVariables:{ZwfLmd_Th:ZwfLmd_ThR7UWfmV9Y},webPageId:\"nG59yCZwV\"},implicitPathVariables:undefined},{href:{pathVariables:{ZwfLmd_Th:ZwfLmd_ThR7UWfmV9Y},webPageId:\"nG59yCZwV\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hqFyCH6ng:{y:(componentViewport?.y||0)+0+1002.4+0+0+32+-396.8+0},hWktDHtgc:{y:(componentViewport?.y||0)+0+1002.4+0+0+32+-396.8+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:438,y:(componentViewport?.y||0)+0+1002.4+0+0+32+-394.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ayu6gs-container\",nodeId:\"kZyGOYCwb\",scopeId:\"MgyeQSFiQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hqFyCH6ng:{KKTMyjuPd:resolvedLinks1[2]},hWktDHtgc:{KKTMyjuPd:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(BuildingBlocksProductCard,{CFUguLG0a:toString(BPRWMNxhGR7UWfmV9Y),height:\"100%\",hkY5BxLge:gEoSCzjWNR7UWfmV9Y,id:\"kZyGOYCwb\",jzC4jFoQ2:Yu4iYsj0RR7UWfmV9Y,KKTMyjuPd:resolvedLinks1[0],layoutId:\"kZyGOYCwb\",LKLAFkHtJ:getLocalizedValue(\"v4\",activeLocale)??\"\\xa3\",mArHAIUV0:eThamMJq8R7UWfmV9Y,RytHRBSXH:toBoolean(convertFromEnum2(WveU0o_lGR7UWfmV9Y,activeLocale)),TSigpONki:toResponsiveImage(O879VyWp_R7UWfmV9Y),variant:\"gszeDCt5e\",width:\"100%\"})})})})})})})},idR7UWfmV9Y);}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ldt9yj hidden-ibynp8\",\"data-framer-name\":\"spacer\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-181tne2\",\"data-framer-name\":\"Overlay\"})]})})})}),visible15&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oo09lo\",\"data-hide-scrollbars\":true,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"EbxXlsKyB\",data:LasVegasProducts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"EbxXlsKyB\",name:\"dZsx9UUQI\",type:\"Identifier\"},{collection:\"EbxXlsKyB\",name:\"eStUn7Xbf\",type:\"Identifier\"},{collection:\"EbxXlsKyB\",name:\"HrNkUuC2a\",type:\"Identifier\"},{collection:\"EbxXlsKyB\",name:\"imljFZewD\",type:\"Identifier\"},{collection:\"EbxXlsKyB\",name:\"PjPRfzwLQ\",type:\"Identifier\"},{collection:\"EbxXlsKyB\",name:\"wHUBhP9kL\",type:\"Identifier\"},{collection:\"EbxXlsKyB\",name:\"LwqbD_p4Y\",type:\"Identifier\"},{collection:\"EbxXlsKyB\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"EbxXlsKyB\",name:\"uLqXHKKPT\",type:\"Identifier\"},operator:\"and\",right:{arguments:[{collection:\"EbxXlsKyB\",name:\"dCqeRqXz8\",type:\"Identifier\"},{type:\"LiteralValue\",value:koOPUUafB}],functionName:\"CONTAINS\",type:\"FunctionCall\"},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection2?.map(({dZsx9UUQI:dZsx9UUQIEbxXlsKyB,eStUn7Xbf:eStUn7XbfEbxXlsKyB,HrNkUuC2a:HrNkUuC2aEbxXlsKyB,id:idEbxXlsKyB,imljFZewD:imljFZewDEbxXlsKyB,LwqbD_p4Y:LwqbD_p4YEbxXlsKyB,PjPRfzwLQ:PjPRfzwLQEbxXlsKyB,wHUBhP9kL:wHUBhP9kLEbxXlsKyB},index2)=>{eStUn7XbfEbxXlsKyB??=\"\";HrNkUuC2aEbxXlsKyB??=0;imljFZewDEbxXlsKyB??=\"\";wHUBhP9kLEbxXlsKyB??=\"\";LwqbD_p4YEbxXlsKyB??=0;return /*#__PURE__*/_jsx(LayoutGroup,{id:`EbxXlsKyB-${idEbxXlsKyB}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{imljFZewD:imljFZewDEbxXlsKyB},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{imljFZewD:imljFZewDEbxXlsKyB},webPageId:\"urR4Yijbz\"},implicitPathVariables:undefined},{href:{pathVariables:{imljFZewD:imljFZewDEbxXlsKyB},webPageId:\"urR4Yijbz\"},implicitPathVariables:undefined},{href:{pathVariables:{imljFZewD:imljFZewDEbxXlsKyB},webPageId:\"urR4Yijbz\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:438,y:(componentViewport?.y||0)+0+1002.4+0+0+32+75.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pu3lof-container\",nodeId:\"jcwSpQwjo\",scopeId:\"MgyeQSFiQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hqFyCH6ng:{KKTMyjuPd:resolvedLinks2[2]},hWktDHtgc:{KKTMyjuPd:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(BuildingBlocksProductCard,{CFUguLG0a:toString(LwqbD_p4YEbxXlsKyB),height:\"100%\",hkY5BxLge:HrNkUuC2aEbxXlsKyB,id:\"jcwSpQwjo\",jzC4jFoQ2:eStUn7XbfEbxXlsKyB,KKTMyjuPd:resolvedLinks2[0],layoutId:\"jcwSpQwjo\",LKLAFkHtJ:getLocalizedValue(\"v5\",activeLocale)??\"$\",mArHAIUV0:wHUBhP9kLEbxXlsKyB,RytHRBSXH:toBoolean(convertFromEnum1(PjPRfzwLQEbxXlsKyB,activeLocale)),TSigpONki:toResponsiveImage(dZsx9UUQIEbxXlsKyB),variant:\"gszeDCt5e\",width:\"100%\"})})})})})})},idEbxXlsKyB);}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-71s69l hidden-ibynp8\",\"data-framer-name\":\"spacer\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yvryvm\",\"data-framer-name\":\"Overlay\"})]})})})}),visible16&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-jo7d6p\",\"data-hide-scrollbars\":true,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"jZiTvXlrk\",data:NewYorkProducts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"jZiTvXlrk\",name:\"O7zAFC28r\",type:\"Identifier\"},{collection:\"jZiTvXlrk\",name:\"ssDUhQLMs\",type:\"Identifier\"},{collection:\"jZiTvXlrk\",name:\"a8aWgsXfL\",type:\"Identifier\"},{collection:\"jZiTvXlrk\",name:\"cuSx9IJgZ\",type:\"Identifier\"},{collection:\"jZiTvXlrk\",name:\"G7wVtiW7e\",type:\"Identifier\"},{collection:\"jZiTvXlrk\",name:\"Jr_22jQYE\",type:\"Identifier\"},{collection:\"jZiTvXlrk\",name:\"fZeee6K43\",type:\"Identifier\"},{collection:\"jZiTvXlrk\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"jZiTvXlrk\",name:\"iXXwpofWh\",type:\"Identifier\"},operator:\"and\",right:{arguments:[{collection:\"jZiTvXlrk\",name:\"DMnhqZ88s\",type:\"Identifier\"},{type:\"LiteralValue\",value:koOPUUafB}],functionName:\"CONTAINS\",type:\"FunctionCall\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"jZiTvXlrk\",name:\"SmskT8OHL\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"RNazxwHXi\"},type:\"BinaryOperation\"}},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection3?.map(({a8aWgsXfL:a8aWgsXfLjZiTvXlrk,cuSx9IJgZ:cuSx9IJgZjZiTvXlrk,fZeee6K43:fZeee6K43jZiTvXlrk,G7wVtiW7e:G7wVtiW7ejZiTvXlrk,id:idjZiTvXlrk,Jr_22jQYE:Jr_22jQYEjZiTvXlrk,O7zAFC28r:O7zAFC28rjZiTvXlrk,ssDUhQLMs:ssDUhQLMsjZiTvXlrk},index3)=>{ssDUhQLMsjZiTvXlrk??=\"\";a8aWgsXfLjZiTvXlrk??=0;cuSx9IJgZjZiTvXlrk??=\"\";Jr_22jQYEjZiTvXlrk??=\"\";fZeee6K43jZiTvXlrk??=0;return /*#__PURE__*/_jsx(LayoutGroup,{id:`jZiTvXlrk-${idjZiTvXlrk}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cuSx9IJgZ:cuSx9IJgZjZiTvXlrk},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cuSx9IJgZ:cuSx9IJgZjZiTvXlrk},webPageId:\"MEwh0w5hw\"},implicitPathVariables:undefined},{href:{pathVariables:{cuSx9IJgZ:cuSx9IJgZjZiTvXlrk},webPageId:\"MEwh0w5hw\"},implicitPathVariables:undefined},{href:{pathVariables:{cuSx9IJgZ:cuSx9IJgZjZiTvXlrk},webPageId:\"MEwh0w5hw\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hqFyCH6ng:{y:(componentViewport?.y||0)+0+1002.4+0+0+32+547.2+0},hWktDHtgc:{y:(componentViewport?.y||0)+0+1002.4+0+0+32+547.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:438,y:(componentViewport?.y||0)+0+1002.4+0+0+32+545.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13xrmxa-container\",nodeId:\"oC6v_UVdR\",scopeId:\"MgyeQSFiQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hqFyCH6ng:{KKTMyjuPd:resolvedLinks3[2]},hWktDHtgc:{KKTMyjuPd:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(BuildingBlocksProductCard,{CFUguLG0a:toString(fZeee6K43jZiTvXlrk),height:\"100%\",hkY5BxLge:a8aWgsXfLjZiTvXlrk,id:\"oC6v_UVdR\",jzC4jFoQ2:ssDUhQLMsjZiTvXlrk,KKTMyjuPd:resolvedLinks3[0],layoutId:\"oC6v_UVdR\",LKLAFkHtJ:getLocalizedValue(\"v5\",activeLocale)??\"$\",mArHAIUV0:Jr_22jQYEjZiTvXlrk,RytHRBSXH:toBoolean(convertFromEnum2(G7wVtiW7ejZiTvXlrk,activeLocale)),TSigpONki:toResponsiveImage(O7zAFC28rjZiTvXlrk),variant:\"gszeDCt5e\",width:\"100%\"})})})})})})})},idjZiTvXlrk);}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-wofiy7 hidden-ibynp8\",\"data-framer-name\":\"spacer\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dwemt0\",\"data-framer-name\":\"Overlay\"})]})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:443,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1109.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-d439ra-container\",nodeId:\"cjvJurv28\",scopeId:\"MgyeQSFiQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hqFyCH6ng:{variant:\"qwd6DuTd8\"},hWktDHtgc:{variant:\"FFZJMN8uG\"}},children:/*#__PURE__*/_jsx(NavigationFooter,{f2P2dsjLE:convertFromEnum3(IdrKkYWvg_oNL2AUzg7,activeLocale),height:\"100%\",id:\"cjvJurv28\",kaEKEpsSB:\"rgb(13, 13, 18)\",layoutId:\"cjvJurv28\",style:{width:\"100%\"},variant:\"BcVQw76XR\",vZpl3UVVB:getLocalizedValue(\"v6\",activeLocale)??\"Your trusted source for official tickets. Discover tickadoo, discover entertainment.\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hqFyCH6ng:{height:68,width:\"100vw\",y:932}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j8n5tu-container hidden-ibynp8 hidden-awann\",layoutScroll:true,nodeId:\"bnRGnkuQW\",scopeId:\"MgyeQSFiQ\",children:/*#__PURE__*/_jsx(NavigationMobileMenuBar,{HbYZHfoB_:\"djK4A5yVU\",height:\"100%\",id:\"bnRGnkuQW\",layoutId:\"bnRGnkuQW\",style:{width:\"100%\"},variant:\"DfSX5ZJNG\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SlDUU.framer-1gzm0wz, .framer-SlDUU .framer-1gzm0wz { display: block; }\",\".framer-SlDUU.framer-ibynp8 { align-content: center; align-items: center; background-color: var(--token-b76058d9-4119-4402-ab0c-ea96c1c9e17d, #121212); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-SlDUU .framer-1fpaejm-container, .framer-SlDUU .framer-1gkty21-container, .framer-SlDUU .framer-d439ra-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-SlDUU .framer-v9ep2r { 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: 64px 32px 64px 32px; position: relative; width: 100%; }\",\".framer-SlDUU .framer-g9k4yo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SlDUU .framer-1im7kbi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SlDUU .framer-8rjora { --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 800px; position: relative; width: 100%; }\",\".framer-SlDUU .framer-fnnv1f { aspect-ratio: 1.7777777777777777 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 113px); max-width: 1200px; position: relative; width: 100%; }\",\".framer-SlDUU .framer-dsbq9e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 800px; padding: 0px; position: relative; width: 100%; }\",\".framer-SlDUU .framer-16d19wo, .framer-SlDUU .framer-16bflc { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SlDUU .framer-18faqgv-container { flex: none; height: 400px; position: relative; width: 100%; }\",\".framer-SlDUU .framer-1obd6y8-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); position: relative; width: 80%; }\",\".framer-SlDUU .framer-pigr8z-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 100%; }\",\".framer-SlDUU .framer-1fxz9ri, .framer-SlDUU .framer-1cskysn, .framer-SlDUU .framer-jwxgii, .framer-SlDUU .framer-15yz3k2, .framer-SlDUU .framer-1x0zzin, .framer-SlDUU .framer-2hihle { height: 270px; overflow: hidden; position: relative; width: 480px; }\",\".framer-SlDUU .framer-rae99x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 800px; min-height: 302px; padding: 0px; position: relative; width: 100%; }\",\".framer-SlDUU .framer-1e3157t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; min-height: 200px; overflow: auto; overscroll-behavior: contain; padding: 64px 24px 24px 24px; position: relative; width: 100%; }\",\".framer-SlDUU .framer-157n3kh-container, .framer-SlDUU .framer-n2xlo8-container, .framer-SlDUU .framer-lle0zq-container, .framer-SlDUU .framer-1pzahqd-container, .framer-SlDUU .framer-2klf3m-container, .framer-SlDUU .framer-1cy0y2e-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 270px); position: relative; width: 480px; }\",'.framer-SlDUU.framer-1ynw9es, .framer-SlDUU.framer-12haqr5, .framer-SlDUU.framer-o7pn07, .framer-SlDUU.framer-r9or0s, .framer-SlDUU.framer-18pkq1w, .framer-SlDUU.framer-azx6c { background-color: var(--token-e68b3ae8-14d6-45f5-949a-d34c1d8ecbeb, #121212) /* {\"name\":\"Background / 100\"} */; inset: 0px; position: fixed; user-select: none; }',\".framer-SlDUU.framer-1b6xuks, .framer-SlDUU.framer-fydajv, .framer-SlDUU.framer-vlcklz, .framer-SlDUU.framer-1riq9m, .framer-SlDUU.framer-1owjw8w, .framer-SlDUU.framer-11j32h4 { flex: none; height: 80%; left: calc(50.00000000000002% - 90% / 2); overflow: hidden; position: fixed; top: calc(49.87500000000003% - 80% / 2); width: 90%; }\",\".framer-SlDUU.framer-jgo3cp-container, .framer-SlDUU.framer-1t5y6j7-container, .framer-SlDUU.framer-1vs7ihw-container, .framer-SlDUU.framer-ep4wfb-container, .framer-SlDUU.framer-sblnnq-container, .framer-SlDUU.framer-12rt7jp-container { cursor: pointer; flex: none; height: 40px; position: fixed; right: 16px; top: 16px; width: 40px; }\",\".framer-SlDUU .framer-1kwvpak { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SlDUU .framer-1ovseix { align-content: center; align-items: center; background-color: var(--token-2e5f846b-8dd1-4aca-b95f-f82f745b6209, #11171e); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 100%; }\",\".framer-SlDUU .framer-1eg57p { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SlDUU .framer-sxs7fx { background: linear-gradient(270deg, var(--token-2e5f846b-8dd1-4aca-b95f-f82f745b6209, #11171e) 0%, rgba(35, 35, 35, 0) 100%); bottom: 30px; flex: none; height: 450px; opacity: 0; overflow: hidden; position: absolute; right: 0px; width: 74px; z-index: 1; }\",\".framer-SlDUU .framer-1b4uc69, .framer-SlDUU .framer-fq4q5w, .framer-SlDUU .framer-1oo09lo, .framer-SlDUU .framer-jo7d6p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: auto; padding: 0px; position: relative; width: 100%; }\",\".framer-SlDUU .framer-masji1-container, .framer-SlDUU .framer-ayu6gs-container, .framer-SlDUU .framer-1pu3lof-container, .framer-SlDUU .framer-13xrmxa-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-SlDUU .framer-969rk8, .framer-SlDUU .framer-1ldt9yj, .framer-SlDUU .framer-71s69l, .framer-SlDUU .framer-wofiy7 { background: linear-gradient(270deg, var(--token-2e5f846b-8dd1-4aca-b95f-f82f745b6209, #11171e) 0%, rgba(35, 35, 35, 0) 100%); flex: none; height: 440px; overflow: hidden; position: relative; width: 74px; z-index: 1; }\",\".framer-SlDUU .framer-181tne2, .framer-SlDUU .framer-1yvryvm, .framer-SlDUU .framer-dwemt0 { background: linear-gradient(270deg, var(--token-2e5f846b-8dd1-4aca-b95f-f82f745b6209, #11171e) 0%, rgba(35, 35, 35, 0) 100%); flex: none; height: 100%; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 74px; z-index: 1; }\",\".framer-SlDUU .framer-1j8n5tu-container { bottom: 0px; flex: none; height: auto; left: 0px; position: fixed; width: 100%; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-SlDUU.framer-ibynp8, .framer-SlDUU .framer-v9ep2r, .framer-SlDUU .framer-g9k4yo, .framer-SlDUU .framer-dsbq9e, .framer-SlDUU .framer-rae99x, .framer-SlDUU .framer-1e3157t, .framer-SlDUU .framer-1kwvpak, .framer-SlDUU .framer-1ovseix, .framer-SlDUU .framer-1b4uc69, .framer-SlDUU .framer-fq4q5w, .framer-SlDUU .framer-1oo09lo, .framer-SlDUU .framer-jo7d6p { gap: 0px; } .framer-SlDUU.framer-ibynp8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-SlDUU.framer-ibynp8 > :first-child, .framer-SlDUU .framer-v9ep2r > :first-child, .framer-SlDUU .framer-g9k4yo > :first-child, .framer-SlDUU .framer-dsbq9e > :first-child, .framer-SlDUU .framer-rae99x > :first-child, .framer-SlDUU .framer-1kwvpak > :first-child, .framer-SlDUU .framer-1ovseix > :first-child { margin-top: 0px; } .framer-SlDUU.framer-ibynp8 > :last-child, .framer-SlDUU .framer-v9ep2r > :last-child, .framer-SlDUU .framer-g9k4yo > :last-child, .framer-SlDUU .framer-dsbq9e > :last-child, .framer-SlDUU .framer-rae99x > :last-child, .framer-SlDUU .framer-1kwvpak > :last-child, .framer-SlDUU .framer-1ovseix > :last-child { margin-bottom: 0px; } .framer-SlDUU .framer-v9ep2r > *, .framer-SlDUU .framer-1ovseix > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-SlDUU .framer-g9k4yo > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-SlDUU .framer-dsbq9e > *, .framer-SlDUU .framer-rae99x > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-SlDUU .framer-1e3157t > *, .framer-SlDUU .framer-1b4uc69 > *, .framer-SlDUU .framer-fq4q5w > *, .framer-SlDUU .framer-1oo09lo > *, .framer-SlDUU .framer-jo7d6p > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-SlDUU .framer-1e3157t > :first-child, .framer-SlDUU .framer-1b4uc69 > :first-child, .framer-SlDUU .framer-fq4q5w > :first-child, .framer-SlDUU .framer-1oo09lo > :first-child, .framer-SlDUU .framer-jo7d6p > :first-child { margin-left: 0px; } .framer-SlDUU .framer-1e3157t > :last-child, .framer-SlDUU .framer-1b4uc69 > :last-child, .framer-SlDUU .framer-fq4q5w > :last-child, .framer-SlDUU .framer-1oo09lo > :last-child, .framer-SlDUU .framer-jo7d6p > :last-child { margin-right: 0px; } .framer-SlDUU .framer-1kwvpak > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,...sharedStyle15.css,...sharedStyle16.css,'.framer-SlDUU[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-SlDUU [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-SlDUU[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-SlDUU [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-SlDUU[data-hide-scrollbars=\"true\"], .framer-SlDUU [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-SlDUU.framer-ibynp8 { width: 810px; } .framer-SlDUU .framer-1b4uc69, .framer-SlDUU .framer-fq4q5w, .framer-SlDUU .framer-1oo09lo, .framer-SlDUU .framer-jo7d6p { justify-content: flex-start; }}\",\"@media (max-width: 809px) { .framer-SlDUU.framer-ibynp8 { width: 390px; } .framer-SlDUU .framer-v9ep2r { padding: 64px 16px 64px 16px; } .framer-SlDUU .framer-1obd6y8-container { width: 100%; } .framer-SlDUU .framer-157n3kh-container, .framer-SlDUU .framer-n2xlo8-container, .framer-SlDUU .framer-lle0zq-container, .framer-SlDUU .framer-1pzahqd-container, .framer-SlDUU .framer-2klf3m-container, .framer-SlDUU .framer-1cy0y2e-container { height: var(--framer-aspect-ratio-supported, 160px); width: 284px; } .framer-SlDUU .framer-1b4uc69, .framer-SlDUU .framer-fq4q5w, .framer-SlDUU .framer-1oo09lo, .framer-SlDUU .framer-jo7d6p { justify-content: flex-start; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7261\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hWktDHtgc\":{\"layout\":[\"fixed\",\"auto\"]},\"hqFyCH6ng\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerMgyeQSFiQ=withCSS(Component,css,\"framer-SlDUU\");export default FramerMgyeQSFiQ;FramerMgyeQSFiQ.displayName=\"Page\";FramerMgyeQSFiQ.defaultProps={height:7261,width:1200};addFonts(FramerMgyeQSFiQ,[{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\"}]},...NavigationTopMenuFonts,...EmbedFonts,...YouTubeFonts,...CarouselFonts,...BuildingBlocksExpandableImageFonts,...HeroFonts,...BuildingBlocksProductCardFonts,...NavigationFooterFonts,...NavigationMobileMenuBarFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...getFontsFromSharedStyle(sharedStyle15.fonts),...getFontsFromSharedStyle(sharedStyle16.fonts),...componentPresets.fonts?.[\"mgnxc9XlP\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"mgnxc9XlP\"]):[],...componentPresets.fonts?.[\"e8mTTEjEi\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"e8mTTEjEi\"]):[],...componentPresets.fonts?.[\"tlRw14O7f\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"tlRw14O7f\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMgyeQSFiQ\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hWktDHtgc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hqFyCH6ng\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"7261\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}