{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js", "ssg:https://framerusercontent.com/modules/Is9cPr3ykY0rQ8PpdCYg/qxkaa62DEpm53agyPjXF/itdwL0LOn.js", "ssg:https://framerusercontent.com/modules/Hqlphx8Pa8Jii7Qq50fq/T7KuPhdbmgsdPbfCod4d/T8DMD05yi.js", "ssg:https://framerusercontent.com/modules/RFCU2UwakZNMQpQ4ytir/Pj6aIV5oeFwrbe3ODuvB/MgyeQSFiQ.js", "ssg:https://framerusercontent.com/modules/MnVFDnO1ZZcRj7tX9Kp2/7S88pygRCOvOUMRAvE6G/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 (7858796)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={A3JzKY5EL:new LazyValue(()=>import(\"./MgyeQSFiQ-1.js\")),akArdTttc:new LazyValue(()=>import(\"./MgyeQSFiQ-23.js\")),aTA948Yse:new LazyValue(()=>import(\"./MgyeQSFiQ-19.js\")),ccVXV1ohj:new LazyValue(()=>import(\"./MgyeQSFiQ-7.js\")),cJAUJ3JX2:new LazyValue(()=>import(\"./MgyeQSFiQ-14.js\")),FSuYlk5YB:new LazyValue(()=>import(\"./MgyeQSFiQ-8.js\")),fyJqBc4Fk:new LazyValue(()=>import(\"./MgyeQSFiQ-21.js\")),HNCO6aAwX:new LazyValue(()=>import(\"./MgyeQSFiQ-28.js\")),IJpETImhi:new LazyValue(()=>import(\"./MgyeQSFiQ-27.js\")),ITd1NAXRL:new LazyValue(()=>import(\"./MgyeQSFiQ-4.js\")),iuE6C1wkD:new LazyValue(()=>import(\"./MgyeQSFiQ-16.js\")),JtmzxPM1z:new LazyValue(()=>import(\"./MgyeQSFiQ-22.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\")),RpkmGXwui:new LazyValue(()=>import(\"./MgyeQSFiQ-20.js\")),Rqi_ElZKR:new LazyValue(()=>import(\"./MgyeQSFiQ-29.js\")),Rse4N6riq:new LazyValue(()=>import(\"./MgyeQSFiQ-26.js\")),swj6SD7BF:new LazyValue(()=>import(\"./MgyeQSFiQ-18.js\")),tRkiTKqFN:new LazyValue(()=>import(\"./MgyeQSFiQ-24.js\")),Vr80f4Kv8:new LazyValue(()=>import(\"./MgyeQSFiQ-25.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 (7858796)\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/s801VqobGI0Gkh3K9b41/Embed.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/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-GhoSG\";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:\"rgb(34, 34, 34)\",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\",radius:\"0px\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:qMrJpOnTN,width:\"100%\",zoom:1})})}),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\",radius:\"0px\",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%\",zoom:1})})}),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\",isAuthoredByUser:true,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(ComponentViewportProvider,{height:448,y:(componentViewport?.y||0)+0+1002.4+0+0+32+-884.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,{AALLDOWvW:\"rgb(255, 255, 255)\",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(ComponentViewportProvider,{height:448,y:(componentViewport?.y||0)+0+1002.4+0+0+32+-404.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,{AALLDOWvW:\"rgb(255, 255, 255)\",CFUguLG0a:toString(BPRWMNxhGR7UWfmV9Y),height:\"100%\",hkY5BxLge:gEoSCzjWNR7UWfmV9Y,id:\"kZyGOYCwb\",jzC4jFoQ2:Yu4iYsj0RR7UWfmV9Y,KKTMyjuPd:resolvedLinks1[0],layoutId:\"kZyGOYCwb\",LKLAFkHtJ:\"\\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:448,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,{AALLDOWvW:\"rgb(255, 255, 255)\",CFUguLG0a:toString(LwqbD_p4YEbxXlsKyB),height:\"100%\",hkY5BxLge:HrNkUuC2aEbxXlsKyB,id:\"jcwSpQwjo\",jzC4jFoQ2:eStUn7XbfEbxXlsKyB,KKTMyjuPd:resolvedLinks2[0],layoutId:\"jcwSpQwjo\",LKLAFkHtJ:\"$\",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(ComponentViewportProvider,{height:448,y:(componentViewport?.y||0)+0+1002.4+0+0+32+555.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,{AALLDOWvW:\"rgb(255, 255, 255)\",CFUguLG0a:toString(fZeee6K43jZiTvXlrk),height:\"100%\",hkY5BxLge:a8aWgsXfLjZiTvXlrk,id:\"oC6v_UVdR\",jzC4jFoQ2:ssDUhQLMsjZiTvXlrk,KKTMyjuPd:resolvedLinks3[0],layoutId:\"oC6v_UVdR\",LKLAFkHtJ:\"$\",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(\"v4\",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-GhoSG.framer-1gzm0wz, .framer-GhoSG .framer-1gzm0wz { display: block; }\",\".framer-GhoSG.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-GhoSG .framer-1fpaejm-container, .framer-GhoSG .framer-1gkty21-container, .framer-GhoSG .framer-d439ra-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-GhoSG .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-GhoSG .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-GhoSG .framer-1im7kbi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-GhoSG .framer-8rjora { --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 800px; position: relative; width: 100%; }\",\".framer-GhoSG .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-GhoSG .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-GhoSG .framer-16d19wo, .framer-GhoSG .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-GhoSG .framer-18faqgv-container { flex: none; height: 400px; position: relative; width: 100%; }\",\".framer-GhoSG .framer-1obd6y8-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); position: relative; width: 80%; }\",\".framer-GhoSG .framer-pigr8z-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 100%; }\",\".framer-GhoSG .framer-1fxz9ri, .framer-GhoSG .framer-1cskysn, .framer-GhoSG .framer-jwxgii, .framer-GhoSG .framer-15yz3k2, .framer-GhoSG .framer-1x0zzin, .framer-GhoSG .framer-2hihle { height: 270px; overflow: hidden; position: relative; width: 480px; }\",\".framer-GhoSG .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-GhoSG .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-GhoSG .framer-157n3kh-container, .framer-GhoSG .framer-n2xlo8-container, .framer-GhoSG .framer-lle0zq-container, .framer-GhoSG .framer-1pzahqd-container, .framer-GhoSG .framer-2klf3m-container, .framer-GhoSG .framer-1cy0y2e-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 270px); position: relative; width: 480px; }\",'.framer-GhoSG.framer-1ynw9es, .framer-GhoSG.framer-12haqr5, .framer-GhoSG.framer-o7pn07, .framer-GhoSG.framer-r9or0s, .framer-GhoSG.framer-18pkq1w, .framer-GhoSG.framer-azx6c { background-color: var(--token-e68b3ae8-14d6-45f5-949a-d34c1d8ecbeb, #121212) /* {\"name\":\"Background / 100\"} */; inset: 0px; position: fixed; user-select: none; }',\".framer-GhoSG.framer-1b6xuks, .framer-GhoSG.framer-fydajv, .framer-GhoSG.framer-vlcklz, .framer-GhoSG.framer-1riq9m, .framer-GhoSG.framer-1owjw8w, .framer-GhoSG.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-GhoSG.framer-jgo3cp-container, .framer-GhoSG.framer-1t5y6j7-container, .framer-GhoSG.framer-1vs7ihw-container, .framer-GhoSG.framer-ep4wfb-container, .framer-GhoSG.framer-sblnnq-container, .framer-GhoSG.framer-12rt7jp-container { cursor: pointer; flex: none; height: 40px; position: fixed; right: 16px; top: 16px; width: 40px; }\",\".framer-GhoSG .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-GhoSG .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-GhoSG .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-GhoSG .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-GhoSG .framer-1b4uc69, .framer-GhoSG .framer-fq4q5w, .framer-GhoSG .framer-1oo09lo, .framer-GhoSG .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-GhoSG .framer-masji1-container, .framer-GhoSG .framer-ayu6gs-container, .framer-GhoSG .framer-1pu3lof-container, .framer-GhoSG .framer-13xrmxa-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-GhoSG .framer-969rk8, .framer-GhoSG .framer-1ldt9yj, .framer-GhoSG .framer-71s69l, .framer-GhoSG .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-GhoSG .framer-181tne2, .framer-GhoSG .framer-1yvryvm, .framer-GhoSG .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-GhoSG .framer-1j8n5tu-container { bottom: 0px; flex: none; height: auto; left: 0px; position: fixed; width: 100%; z-index: 10; }\",...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-GhoSG[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-GhoSG [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-GhoSG[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-GhoSG [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-GhoSG[data-hide-scrollbars=\"true\"], .framer-GhoSG [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-GhoSG.framer-ibynp8 { width: 810px; } .framer-GhoSG .framer-1b4uc69, .framer-GhoSG .framer-fq4q5w, .framer-GhoSG .framer-1oo09lo, .framer-GhoSG .framer-jo7d6p { justify-content: flex-start; }}\",\"@media (max-width: 809px) { .framer-GhoSG.framer-ibynp8 { width: 390px; } .framer-GhoSG .framer-v9ep2r { padding: 64px 16px 64px 16px; } .framer-GhoSG .framer-1obd6y8-container { width: 100%; } .framer-GhoSG .framer-157n3kh-container, .framer-GhoSG .framer-n2xlo8-container, .framer-GhoSG .framer-lle0zq-container, .framer-GhoSG .framer-1pzahqd-container, .framer-GhoSG .framer-2klf3m-container, .framer-GhoSG .framer-1cy0y2e-container { height: var(--framer-aspect-ratio-supported, 160px); width: 284px; } .framer-GhoSG .framer-1b4uc69, .framer-GhoSG .framer-fq4q5w, .framer-GhoSG .framer-1oo09lo, .framer-GhoSG .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-GhoSG\");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\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hWktDHtgc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hqFyCH6ng\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"7261\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "_isBot", "isBot", "navigator", "emptySubscribe", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "iframeIsDefaultVisible", "de", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "NavigationTopMenuFonts", "getFonts", "rAbbIwQEp_default", "EmbedFonts", "Embed", "YouTubeFonts", "Youtube", "CarouselFonts", "Carousel", "BuildingBlocksExpandableImageFonts", "y7eZRnu0S_default", "HeroFonts", "Icon", "BuildingBlocksProductCardFonts", "adZRMS6DK_default", "NavigationFooterFonts", "O8lrCvaKT_default", "NavigationMobileMenuBarFonts", "O93zFFAlm_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "convertFromEnum", "value", "activeLocale", "toDateString", "options", "date", "display", "dateOptions", "fallbackLocale", "locale", "toResponsiveImage", "isSet", "equals", "a", "b", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "convertFromEnum1", "toBoolean", "toString", "QueryData", "query", "pageSize", "data", "useQueryData", "convertFromEnum2", "convertFromEnum3", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "liQDLa3ot_default", "veZkPWom_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "IdrKkYWvg_oNL2AUzg7", "QCtYQmbkh", "euJPJ7vJy", "ygJ_egWTA", "qmw8O6zZl", "qMrJpOnTN", "Tw5JHxS7D", "C0LZNXmLG", "uHdWu65u_", "qw2qlwNb1", "H80PdLyLY", "nXyfsosLn", "HV0FTjWRR", "b6CSql3rn", "WhMmfmfxM", "kQW8SgryJ", "IdrKkYWvg", "yonk01rm0", "MoDmF9cbYII3B3Z2zI", "ZQbrLoh0NII3B3Z2zI", "TdpQgN7eDII3B3Z2zI", "swUNIayuZII3B3Z2zI", "yaO06luzVII3B3Z2zI", "YXDCyjmkBII3B3Z2zI", "OrNULhyStII3B3Z2zI", "idII3B3Z2zI", "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", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "NxKZpTWpZ3bnx0g", "overlay", "loadMore", "args", "onClick1wnntms", "scopingClassNames", "cx", "activeLocaleCode", "useLocaleCode", "textContent", "usePreloadLocalizedValues", "visible1", "visible2", "visible3", "visible4", "visible5", "visible6", "visible7", "visible8", "visible9", "visible10", "visible11", "visible12", "visible13", "router", "useRouter", "isDisplayed", "visible14", "visible15", "visible16", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "RichText2", "x", "getLoadingLazyAtYPosition", "Image2", "ComponentPresetsProvider", "getLocalizedValue", "l", "AnimatePresence", "Ga", "overlay1", "overlay2", "overlay3", "overlay4", "overlay5", "ChildrenCanSuspend", "QEqzWm0Df_default", "collection", "paginationInfo", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "fChICSW33_default", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks1", "QNW4iTDWP_default", "collection2", "paginationInfo2", "loadMore2", "index2", "resolvedLinks2", "LVj7_ZEcP_default", "collection3", "paginationInfo3", "loadMore3", "index3", "resolvedLinks3", "css", "FramerMgyeQSFiQ", "withCSS", "MgyeQSFiQ_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
