{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/9m3KGDEkSPMUamtcF5A6/7WJlxkPpO5vCBpE8PSaD/Pdfviewer.js", "ssg:https://framerusercontent.com/modules/FfaRO5b74SRYD93xxeXN/heRF78ACMlQCVNHQbnkH/XJHRLYlyn.js"],
  "sourcesContent": ["// Welcome to Code in Framer\n// Get Started: https://www.framer.com/developers/\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{motion,AnimatePresence}from\"framer-motion\";import{useEffect,useRef,useState}from\"react\";import{getDocument,GlobalWorkerOptions,getPdfFilenameFromUrl}from\"https://cdn.jsdelivr.net/npm/pdfjs-dist@4.5.136/legacy/build/pdf.min.mjs\";import{addPropertyControls,ControlType}from\"framer\";/**\n * These annotations control how your component sizes\n * Learn more: https://www.framer.com/developers/#code-components-auto-sizing\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */GlobalWorkerOptions.workerSrc=\"https://cdn.jsdelivr.net/npm/pdfjs-dist@4.5.136/legacy/build/pdf.worker.mjs\"||\"\";export default function Pdfviewer(props){var _buttonStyles_border,_buttonStyles_border1,_buttonStyles_border2,_buttonStyles_border3,_buttonStyles_border4,_buttonStyles_border5,_buttonStyles_pdfIcon,_buttonStyles_pdfIcon1,_buttonStyles_pdfIcon2;const{fileChoose,file,fileURL,pageNumber,scale,buttonText,buttonStyles,modalStyles,customFileName}=props;const[modalOpen,setModalOpen]=useState(false);const canvasRef=useRef(null);const[loadingScreen,setLoadingScreen]=useState(false);const[totalPages,setTotalPages]=useState(null);const[pageRendering,setPageRendering]=useState(false);const[pageNumPending,setpageNumPending]=useState(null);const[pageNum,setpageNum]=useState(pageNumber);const[pageScale,setPageScale]=useState(scale);const[downloadURL,setdownloadURL]=useState(null);const selectedFile=fileChoose===\"Upload\"?file:fileURL;const renderPage=pdf=>{const canvas=canvasRef.current;if(canvas){const context=canvas.getContext(\"2d\");if(pageRendering){// Check if other page is rendering\nsetpageNumPending(pageNum)// Cache waited page number until previous page rendering completed\n;}else{setPageRendering(true);// Using promise to fetch the page\npdf===null||pdf===void 0?void 0:pdf.getPage(pageNum).then(page=>{let viewport=page.getViewport({scale:pageScale});canvas.width=viewport.width;canvas.height=viewport.height;// Render PDF page into canvas context\nlet renderContext={canvasContext:context,viewport:viewport};// Wait for rendering to finish\npage.render(renderContext).promise.then(()=>{setPageRendering(false);if(pageNumPending!==null){// New page rendering is pending\nrenderPage(pdf);setpageNumPending(null);}});});}}};const downloadData=async pdf=>{var _window,_pdf__transport__networkStream_source,_pdf__transport__networkStream,_pdf__transport;const data=await (pdf===null||pdf===void 0?void 0:pdf.getData());const blobUrl=(_window=window)===null||_window===void 0?void 0:_window.URL.createObjectURL(new Blob([data],{type:\"application/pdf\"}));const fileURL=await (pdf===null||pdf===void 0?void 0:(_pdf__transport=pdf._transport)===null||_pdf__transport===void 0?void 0:(_pdf__transport__networkStream=_pdf__transport._networkStream)===null||_pdf__transport__networkStream===void 0?void 0:(_pdf__transport__networkStream_source=_pdf__transport__networkStream.source)===null||_pdf__transport__networkStream_source===void 0?void 0:_pdf__transport__networkStream_source.url);const pdfFileName=getPdfFilenameFromUrl(fileURL);setdownloadURL({blob:blobUrl,fileName:pdfFileName});};const download=(e,url)=>{e.stopPropagation();const a=document.createElement(\"a\");if(!a.click){throw new Error('DownloadManager: \"a.click()\" is not supported.');}a.href=url.blob+\"#pdfjs.action=download\";a.target=\"_parent\";// Use a.download if available. This increases the likelihood that\n// the file is downloaded instead of opened by another PDF plugin.\nif(\"download\"in a){a.download=customFileName||url.fileName;}(document.body||document.documentElement).append(a);a.click();a.remove();};/**\n     * If another page rendering in progress, waits until the rendering is\n     * finised. Otherwise, executes rendering immediately.\n     *//**\n     * Displays previous page.\n     */const onPrevPage=e=>{e.stopPropagation();if(pageNum<=1){setpageNum(totalPages);return;}if(!pageRendering){setpageNum(pageNum-1);}};/**\n     * Displays next page.\n     */const onNextPage=e=>{e.stopPropagation();if(pageNum>=totalPages){setpageNum(1);return;}if(!pageRendering){setpageNum(pageNum+1);}};const pdfZoomIn=e=>{e.stopPropagation();if(pageScale>3){return;}if(!pageRendering){setPageScale(pageScale+.1);}};const pdfZoomOut=e=>{e.stopPropagation();if(pageScale<=scale){return;}if(!pageRendering){setPageScale(pageScale-.1);}};useEffect(()=>{const body=document.getElementsByTagName(\"body\")[0];if(selectedFile!==undefined&&modalOpen){//hide body scrollbar\nbody.style.overflow=\"hidden\";body.style.height=\"100%\";const loadingTask=getDocument({url:selectedFile});setLoadingScreen(true);loadingTask===null||loadingTask===void 0?void 0:loadingTask.promise.then(pdf=>{// you can now use *pdf* here\nrenderPage(pdf);setTotalPages(pdf.numPages);pdf.currentScaleValue=pageScale//zoom in/out\n;downloadData(pdf)// load blob data\n;},error=>{console.error(error);});//get progress data\nloadingTask.onProgress=data=>{if(data.loaded){setLoadingScreen(false);}else{setLoadingScreen(true);}};}else{if(pageScale>scale){setPageScale(scale);}body.style.overflow=\"auto\";body.style.height=\"auto\";}},[fileChoose,file,fileURL,selectedFile,pageNum,modalOpen,pageScale,setLoadingScreen]);const close=()=>setModalOpen(false);const open=()=>setModalOpen(true);return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.div,{whileTap:{scale:.9},onClick:()=>modalOpen?close():open(),style:{cursor:\"pointer\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",backgroundColor:\"transparent\",padding:buttonStyles.padding,borderRadius:buttonStyles.borderRadius,borderStyle:(_buttonStyles_border=buttonStyles.border)===null||_buttonStyles_border===void 0?void 0:_buttonStyles_border.borderStyle,borderColor:(_buttonStyles_border1=buttonStyles.border)===null||_buttonStyles_border1===void 0?void 0:_buttonStyles_border1.borderColor,borderTopWidth:(_buttonStyles_border2=buttonStyles.border)===null||_buttonStyles_border2===void 0?void 0:_buttonStyles_border2.borderTopWidth,borderLeftWidth:(_buttonStyles_border3=buttonStyles.border)===null||_buttonStyles_border3===void 0?void 0:_buttonStyles_border3.borderLeftWidth,borderBottomWidth:(_buttonStyles_border4=buttonStyles.border)===null||_buttonStyles_border4===void 0?void 0:_buttonStyles_border4.borderBottomWidth,borderRightWidth:(_buttonStyles_border5=buttonStyles.border)===null||_buttonStyles_border5===void 0?void 0:_buttonStyles_border5.borderRightWidth,boxShadow:buttonStyles.shadow,overflow:\"hidden\"},\"aria-label\":\"Open PDF Viewer\",children:[buttonStyles.buttonIcon&&/*#__PURE__*/_jsx(\"div\",{style:{width:((_buttonStyles_pdfIcon=buttonStyles.pdfIcon)===null||_buttonStyles_pdfIcon===void 0?void 0:_buttonStyles_pdfIcon.size)+\"px\",height:((_buttonStyles_pdfIcon1=buttonStyles.pdfIcon)===null||_buttonStyles_pdfIcon1===void 0?void 0:_buttonStyles_pdfIcon1.size)+\"px\",color:(_buttonStyles_pdfIcon2=buttonStyles.pdfIcon)===null||_buttonStyles_pdfIcon2===void 0?void 0:_buttonStyles_pdfIcon2.color,display:\"flex\",overflow:\"hidden\"}},\"button-icon\"// Added unique key for this dynamic element\n),/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",fill:\"none\",viewBox:\"0 0 24 24\",strokeWidth:\"1.5\",stroke:\"currentColor\",style:{width:\"24px\",height:\"24px\"},children:/*#__PURE__*/_jsx(\"path\",{strokeLinecap:\"round\",strokeLinejoin:\"round\",d:\"M3.75 3.75v4.5m0-4.5h4.5m-4.5 0L9 9M3.75 20.25v-4.5m0 4.5h4.5m-4.5 0L9 15M20.25 3.75h-4.5m4.5 0v4.5m0-4.5L15 9m5.25 11.25h-4.5m4.5 0v-4.5m0 4.5L15 15\"})})]}),/*#__PURE__*/_jsx(AnimatePresence,{// Disable any initial animations on children that\n// are present when the component is first rendered\ninitial:false,// Only render one component at a time.\n// The exiting component will finish its exit\n// animation before entering component is rendered\nmode:\"wait\",// Fires when all exiting nodes have completed animating out\nonExitComplete:()=>null,children:modalOpen&&selectedFile!==undefined&&/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",position:\"fixed\",inset:0,zIndex:11},children:/*#__PURE__*/_jsxs(motion.div,{onClick:close,initial:{opacity:0},animate:{opacity:1},exit:{opacity:0},style:{position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\",backgroundColor:modalStyles.backgroundColor,display:\"flex\",alignItems:\"center\",justifyContent:\"center\"},children:[/*#__PURE__*/_jsx(motion.div,{onClick:e=>e.stopPropagation(),initial:{opacity:0},animate:{opacity:1,transition:{duration:1,type:\"spring\",damping:25,stiffness:500}},exit:{opacity:0},style:{width:\"auto\",height:\"88vh\",margin:\"auto\",display:\"flex\",flexDirection:\"column\",alignItems:\"start\",overflow:\"overlay\",zIndex:1},children:/*#__PURE__*/_jsx(\"canvas\",{ref:canvasRef})}),loadingScreen&&/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",left:0,right:0,top:0,bottom:0,height:\"100%\",width:\"100%\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\"},children:[/*#__PURE__*/_jsx(\"style\",{children:`\n                                            .lds-dual-ring,\n                                            .lds-dual-ring:after {\n                                                box-sizing: border-box;\n                                            }\n                                            .lds-dual-ring {\n                                                display: inline-block;\n                                                width: 30px;\n                                                height: 30px;\n                                                color:#fff;\n                                            }\n                                            .lds-dual-ring:after {\n                                                content: \" \";\n                                                display: block;\n                                                width: 30px;\n                                                height: 30px;\n                                                margin: 8px;\n                                                border-radius: 50%;\n                                                border: 3px solid currentColor;\n                                                border-color: currentColor transparent currentColor transparent;\n                                                animation: lds-dual-ring 1.2s linear infinite;\n                                            }\n                                            @keyframes lds-dual-ring {\n                                                0% {\n                                                    transform: rotate(0deg);\n                                                }\n                                                100% {\n                                                    transform: rotate(360deg);\n                                                }\n                                            }\n                                            `}),/*#__PURE__*/_jsx(motion.div,{className:\"lds-dual-ring\"})]}),/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",top:\"10px\",left:\"10px\",right:\"10px\",display:\"flex\",justifyContent:\"space-between\",alignItems:\"start\"},children:[/*#__PURE__*/_jsxs(\"div\",{style:{...modalStyles.pageCounter.fontStyle,padding:modalStyles.pageCounter.padding,backgroundColor:modalStyles.pageCounter.backgroundColor,borderRadius:modalStyles.pageCounter.borderRadius,color:modalStyles.pageCounter.color,zIndex:2},children:[pageNum,\"/\",totalPages]}),/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:\"10px\",zIndex:2},children:[/*#__PURE__*/_jsx(\"div\",{onClick:close,children:/*#__PURE__*/_jsx(\"div\",{role:\"button\",\"aria-label\":\"Close Button\",style:{padding:modalStyles.closebtn.padding,backgroundColor:modalStyles.closebtn.backgroundColor,borderRadius:modalStyles.closebtn.borderRadius,width:modalStyles.closebtn.size+\"px\",height:modalStyles.closebtn.size+\"px\",display:\"flex\",color:modalStyles.closebtn.color,cursor:\"pointer\"},dangerouslySetInnerHTML:{__html:modalStyles.closebtn.closeIcon}})}),/*#__PURE__*/_jsx(\"div\",{onClick:pdfZoomOut,children:/*#__PURE__*/_jsx(\"div\",{role:\"button\",\"aria-label\":\"Zoom-out Button\",style:{padding:modalStyles.zoomControls.padding,backgroundColor:modalStyles.zoomControls.backgroundColor,borderRadius:modalStyles.zoomControls.borderRadius,width:modalStyles.zoomControls.size+\"px\",height:modalStyles.zoomControls.size+\"px\",color:modalStyles.zoomControls.color,cursor:\"pointer\",display:\"flex\"},dangerouslySetInnerHTML:{__html:modalStyles.zoomControls.zoomOutIcon}})}),/*#__PURE__*/_jsx(\"div\",{onClick:pdfZoomIn,children:/*#__PURE__*/_jsx(\"div\",{role:\"button\",\"aria-label\":\"Zoom-in Button\",style:{padding:modalStyles.zoomControls.padding,backgroundColor:modalStyles.zoomControls.backgroundColor,borderRadius:modalStyles.zoomControls.borderRadius,width:modalStyles.zoomControls.size+\"px\",height:modalStyles.zoomControls.size+\"px\",color:modalStyles.zoomControls.color,cursor:\"pointer\",display:\"flex\"},dangerouslySetInnerHTML:{__html:modalStyles.zoomControls.zoomInIcon}})}),/*#__PURE__*/_jsx(\"div\",{onClick:e=>download(e,downloadURL),children:/*#__PURE__*/_jsx(\"div\",{role:\"button\",\"aria-label\":\"Download Button\",style:{padding:modalStyles.downloadbtn.padding,backgroundColor:modalStyles.downloadbtn.backgroundColor,borderRadius:modalStyles.downloadbtn.borderRadius,width:modalStyles.downloadbtn.size+\"px\",height:modalStyles.downloadbtn.size+\"px\",color:modalStyles.downloadbtn.color,cursor:\"pointer\",display:\"flex\"},dangerouslySetInnerHTML:{__html:modalStyles.downloadbtn.downloadIcon}})})]})]}),totalPages>1&&/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",inset:\"10px\",display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\"},children:[/*#__PURE__*/_jsx(\"div\",{role:\"button\",\"aria-label\":\"Previous Button\",onClick:onPrevPage,style:{width:modalStyles.arrows.size+\"px\",height:modalStyles.arrows.size+\"px\",display:\"flex\",color:modalStyles.arrows.color,cursor:\"pointer\",padding:modalStyles.arrows.padding,backgroundColor:modalStyles.arrows.backgroundColor,borderRadius:modalStyles.arrows.borderRadius,zIndex:2},dangerouslySetInnerHTML:{__html:modalStyles.arrows.leftIcon}}),/*#__PURE__*/_jsx(\"div\",{role:\"button\",\"aria-label\":\"Next Button\",onClick:onNextPage,style:{width:modalStyles.arrows.size+\"px\",height:modalStyles.arrows.size+\"px\",display:\"flex\",color:modalStyles.arrows.color,cursor:\"pointer\",padding:modalStyles.arrows.padding,backgroundColor:modalStyles.arrows.backgroundColor,borderRadius:modalStyles.arrows.borderRadius,zIndex:2},dangerouslySetInnerHTML:{__html:modalStyles.arrows.rightIcon}})]})]})})})]});}Pdfviewer.displayName=\"PDF Viewer\";addPropertyControls(Pdfviewer,{fileChoose:{type:ControlType.Enum,title:\"Choose\",options:[\"Upload\",\"URL\"],defaultValue:\"Upload\",displaySegmentedControl:true},file:{title:\"File\",type:ControlType.File,allowedFileTypes:[\"pdf\"],hidden:props=>props.fileChoose!==\"Upload\"},fileURL:{type:ControlType.String,title:\"URL\",defaultValue:\"\",hidden:props=>props.fileChoose!==\"URL\"},pageNumber:{title:\"Inital Page\",type:ControlType.Number,displayStepper:true,min:1,defaultValue:1},scale:{type:ControlType.Number,title:\"Scale\",max:3,min:.8,step:.1,displayStepper:true,defaultValue:1.2},buttonText:{title:\"Button Text\",type:ControlType.String,defaultValue:\"View PDF\"},modalStyles:{type:ControlType.Object,title:\"Viewer Styles\",controls:{zIndex:{type:ControlType.Number,title:\"zIndex\",defaultValue:11,min:0,max:100}}},buttonStyles:{type:ControlType.Object,title:\"Button Styles\",controls:{color:{type:ControlType.Color,title:\"Text Color\",defaultValue:\"#000000\"},background:{type:ControlType.Color,title:\"Button color\",defaultValue:\"#ffffff\"},fontStyle:{title:\"Font Style\",type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\"},border:{type:ControlType.Border,title:\"Border\",defaultValue:{borderBottomWidth:0,borderColor:\"black\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0}},borderRadius:{type:ControlType.BorderRadius,title:\"Border Radius\",defaultValue:\"25px\"},padding:{type:ControlType.Padding,title:\"Padding\",defaultValue:\"10px 20px 10px 20px\"},shadow:{type:ControlType.BoxShadow,title:\"Shadow\",defaultValue:\"0px 0px 0px 0px rgba(0, 0, 0, 0)\"},textDecoration:{type:ControlType.Enum,title:\"Text Decoration\",options:[\"none\",\"underline\",\"overline\",\"line-through\"],optionTitles:[\"None\",\"Underline\",\"Overline\",\"Line Through\"],defaultValue:\"none\"},buttonIcon:{type:ControlType.Boolean,title:\"Button Icon\",defaultValue:true,enabledTitle:\"Yes\",disabledTitle:\"No\"},pdfIcon:{type:ControlType.Object,title:\"Icon Styles\",controls:{icon:{type:ControlType.String,title:\"Icon\",defaultValue:`<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\"><rect width=\"256\" height=\"256\" fill=\"none\"/><polyline points=\"216 152 184 152 184 208\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><line x1=\"208\" y1=\"184\" x2=\"184\" y2=\"184\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><path d=\"M48,192H64a20,20,0,0,0,0-40H48v56\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><path d=\"M112,152v56h16a28,28,0,0,0,0-56Z\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><path d=\"M48,112V40a8,8,0,0,1,8-8h96l56,56v24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><polyline points=\"152 32 152 88 208 88\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/></svg>`},size:{type:ControlType.Number,title:\"Size\",defaultValue:24},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"red\",description:\"Note: \\n if you want to replace default svg icon, please change 'fill/stroke' property to 'currentColor', then only icon color property will be overide\"}},hidden(props){return props.buttonIcon===false;}}}},modalStyles:{type:ControlType.Object,title:\"Viewer Styles\",controls:{pageCounter:{type:ControlType.Object,title:\"Counter Styles\",controls:{fontStyle:{title:\"Font Style\",type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\"},padding:{type:ControlType.Padding,title:\"Padding\",defaultValue:\"5px 10px 5px 10px\"},borderRadius:{type:ControlType.BorderRadius,title:\"Border Radius\",defaultValue:\"5px\"},backgroundColor:{type:ControlType.Color,title:\"Background Color\",defaultValue:\"rgba(0,0,0,0.3)\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"}}},arrows:{type:ControlType.Object,title:\"Nav Styles\",controls:{leftIcon:{type:ControlType.String,title:\"Left Icon\",defaultValue:`<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M165.66,202.34a8,8,0,0,1-11.32,11.32l-80-80a8,8,0,0,1,0-11.32l80-80a8,8,0,0,1,11.32,11.32L91.31,128Z\"></path></svg>`},rightIcon:{type:ControlType.String,title:\"Right Icon\",defaultValue:`<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M181.66,133.66l-80,80a8,8,0,0,1-11.32-11.32L164.69,128,90.34,53.66a8,8,0,0,1,11.32-11.32l80,80A8,8,0,0,1,181.66,133.66Z\"></path></svg>`},size:{type:ControlType.Number,title:\"Icon Size\",defaultValue:40},padding:{type:ControlType.Padding,title:\"Padding\",defaultValue:\"5px 10px 5px 10px\"},borderRadius:{type:ControlType.BorderRadius,title:\"Border Radius\",defaultValue:\"5px\"},backgroundColor:{type:ControlType.Color,title:\"Background Color\",defaultValue:\"rgba(0,0,0,0.3)\"},color:{type:ControlType.Color,title:\"Icon Color\",defaultValue:\"#ffffff\",description:\"Note: \\n if you want to replace default svg icon, please change 'fill/stroke' property to 'currentColor', then only icon color property will be overide\"}}},zoomControls:{type:ControlType.Object,title:\"Zoom Styles\",controls:{zoomOutIcon:{type:ControlType.String,title:\"Zoom-Out Icon\",defaultValue:`<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M152,112a8,8,0,0,1-8,8H80a8,8,0,0,1,0-16h64A8,8,0,0,1,152,112Zm77.66,117.66a8,8,0,0,1-11.32,0l-50.06-50.07a88.11,88.11,0,1,1,11.31-11.31l50.07,50.06A8,8,0,0,1,229.66,229.66ZM112,184a72,72,0,1,0-72-72A72.08,72.08,0,0,0,112,184Z\"></path></svg>`},zoomInIcon:{type:ControlType.String,title:\"Zoom-In Icon\",defaultValue:`<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M152,112a8,8,0,0,1-8,8H120v24a8,8,0,0,1-16,0V120H80a8,8,0,0,1,0-16h24V80a8,8,0,0,1,16,0v24h24A8,8,0,0,1,152,112Zm77.66,117.66a8,8,0,0,1-11.32,0l-50.06-50.07a88.11,88.11,0,1,1,11.31-11.31l50.07,50.06A8,8,0,0,1,229.66,229.66ZM112,184a72,72,0,1,0-72-72A72.08,72.08,0,0,0,112,184Z\"></path></svg>`},size:{type:ControlType.Number,title:\"Icon Size\",defaultValue:40},padding:{type:ControlType.Padding,title:\"Padding\",defaultValue:\"5px 10px 5px 10px\"},borderRadius:{type:ControlType.BorderRadius,title:\"Border Radius\",defaultValue:\"5px\"},backgroundColor:{type:ControlType.Color,title:\"Background Color\",defaultValue:\"rgba(0,0,0,0.3)\"},color:{type:ControlType.Color,title:\"Icon Color\",defaultValue:\"#ffffff\",description:\"Note: \\n if you want to replace default svg icon, please change 'fill/stroke' property to 'currentColor', then only icon color property will be overide\"}}},closebtn:{type:ControlType.Object,title:\"Close Styles\",controls:{closeIcon:{type:ControlType.String,title:\"Close Icon\",defaultValue:`<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M205.66,194.34a8,8,0,0,1-11.32,11.32L128,139.31,61.66,205.66a8,8,0,0,1-11.32-11.32L116.69,128,50.34,61.66A8,8,0,0,1,61.66,50.34L128,116.69l66.34-66.35a8,8,0,0,1,11.32,11.32L139.31,128Z\"></path></svg>`},size:{type:ControlType.Number,title:\"Icon Size\",defaultValue:40},padding:{type:ControlType.Padding,title:\"Padding\",defaultValue:\"5px 10px 5px 10px\"},borderRadius:{type:ControlType.BorderRadius,title:\"Border Radius\",defaultValue:\"5px\"},backgroundColor:{type:ControlType.Color,title:\"Background Color\",defaultValue:\"rgba(0,0,0,0.3)\"},color:{type:ControlType.Color,title:\"Icon Color\",defaultValue:\"#ffffff\",description:\"Note: \\n if you want to replace default svg icon, please change 'fill/stroke' property to 'currentColor', then only icon color property will be overide\"}}},downloadbtn:{type:ControlType.Object,title:\"Download Styles\",controls:{downloadIcon:{type:ControlType.String,title:\"Download Icon\",defaultValue:`<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M224,152v56a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V152a8,8,0,0,1,16,0v56H208V152a8,8,0,0,1,16,0Zm-101.66,5.66a8,8,0,0,0,11.32,0l40-40a8,8,0,0,0-11.32-11.32L136,132.69V40a8,8,0,0,0-16,0v92.69L93.66,106.34a8,8,0,0,0-11.32,11.32Z\"></path></svg>`},size:{type:ControlType.Number,title:\"Icon Size\",defaultValue:40},padding:{type:ControlType.Padding,title:\"Padding\",defaultValue:\"5px 10px 5px 10px\"},borderRadius:{type:ControlType.BorderRadius,title:\"Border Radius\",defaultValue:\"5px\"},backgroundColor:{type:ControlType.Color,title:\"Background Color\",defaultValue:\"rgba(0,0,0,0.3)\"},color:{type:ControlType.Color,title:\"Icon Color\",defaultValue:\"#ffffff\",description:\"Note: \\n if you want to replace default svg icon, please change 'fill/stroke' property to 'currentColor', then only icon color property will be overide\"}}},backgroundColor:{type:ControlType.Color,title:\"Background Color\",defaultValue:\"rgba(0,0,0,0.7)\"}}},customFileName:{title:\"Download Name\",type:ControlType.String,defaultValue:\"Download\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Pdfviewer\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Pdfviewer.map", "// Generated by Framer (b0cf16c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}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 PDFViewer from\"https://framerusercontent.com/modules/9m3KGDEkSPMUamtcF5A6/7WJlxkPpO5vCBpE8PSaD/Pdfviewer.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import InfoTile from\"#framer/local/canvasComponent/hG21QGAgi/hG21QGAgi.js\";import Footer from\"#framer/local/canvasComponent/i0f9bZau6/i0f9bZau6.js\";import Menu from\"#framer/local/canvasComponent/rzCKlDgXL/rzCKlDgXL.js\";import Navigation from\"#framer/local/canvasComponent/zJ3F2MORX/zJ3F2MORX.js\";import*as sharedStyle2 from\"#framer/local/css/AUYiiwKH2/AUYiiwKH2.js\";import*as sharedStyle1 from\"#framer/local/css/GnZgLY0uG/GnZgLY0uG.js\";import*as sharedStyle3 from\"#framer/local/css/iio1zfXoy/iio1zfXoy.js\";import*as sharedStyle4 from\"#framer/local/css/yuke8JtHx/yuke8JtHx.js\";import*as sharedStyle from\"#framer/local/css/zbtMxV_40/zbtMxV_40.js\";import metadataProvider from\"#framer/local/webPageMetadata/XJHRLYlyn/XJHRLYlyn.js\";const NavigationFonts=getFonts(Navigation);const NavigationWithVariantAppearEffect=withVariantAppearEffect(Navigation);const MenuFonts=getFonts(Menu);const ContainerWithFX=withFX(Container);const EmbedFonts=getFonts(Embed);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ImageWithFX=withFX(Image);const PDFViewerFonts=getFonts(PDFViewer);const InfoTileFonts=getFonts(InfoTile);const MotionDivWithFX=withFX(motion.div);const FooterFonts=getFonts(Footer);const breakpoints={Fs0saneKW:\"(min-width: 810px) and (max-width: 1559px)\",LoUwvyEk6:\"(min-width: 1560px)\",nkeM6Xk5d:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-N9Rvs\";const variantClassNames={Fs0saneKW:\"framer-v-y7x9uf\",LoUwvyEk6:\"framer-v-npz2ul\",nkeM6Xk5d:\"framer-v-129cooj\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-50};const transition1={damping:50,delay:0,mass:1,stiffness:100,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:-50};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 transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:-150,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:150,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:150};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"LoUwvyEk6\",Phone:\"nkeM6Xk5d\",Tablet:\"Fs0saneKW\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"LoUwvyEk6\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const uG59W276F3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const OxwZZe58i1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Fs0saneKW\")return false;return true;};const elementId=useRouteElementId(\"z0J33lWgn\");const elementId1=useRouteElementId(\"Gcfi9aP7Y\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"ueTZm7IAn\");const ref3=React.useRef(null);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"LoUwvyEk6\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-3399e391-f9d3-4781-bcc9-e38e7cf0c7f5, rgb(249, 253, 254)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-npz2ul\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsxs(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vqzbvd-container\",id:\"vqzbvd\",layoutScroll:true,nodeId:\"IFkJ0ifDK\",rendersWithMotion:true,scopeId:\"XJHRLYlyn\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fs0saneKW:{__framer__targets:[{ref:ref1,target:\"nD1Lh23pZ\"}],variant:\"xZpLJR5qx\"},nkeM6Xk5d:{__framer__targets:[{ref:ref1,target:\"fhXd1KKin\"}],variant:\"z79LlmFXR\"}},children:/*#__PURE__*/_jsx(NavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"kK9x77UVT\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"IFkJ0ifDK\",layoutId:\"IFkJ0ifDK\",style:{width:\"100%\"},uG59W276F:uG59W276F3bnx0g({overlay}),variant:\"fBOCYqu7H\",width:\"100%\"})}),/*#__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-25jotp\"),\"data-framer-portal-id\":\"vqzbvd\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"pUzA6SETV\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"70vw\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-ogj9hx-container\"),\"data-framer-portal-id\":\"vqzbvd\",inComponentSlot:true,nodeId:\"lUs5JBy7U\",rendersWithMotion:true,scopeId:\"XJHRLYlyn\",children:/*#__PURE__*/_jsx(Menu,{height:\"100%\",id:\"lUs5JBy7U\",layoutId:\"lUs5JBy7U\",OxwZZe58i:OxwZZe58i1wnntms({overlay}),style:{height:\"100%\",width:\"100%\"},variant:\"CKyRtOCnN\",width:\"100%\"})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dxof59\",\"data-framer-name\":\"Page Head\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fs0saneKW:{background:{alt:\"Our Hotel\",fit:\"fill\",intrinsicHeight:921,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),pixelHeight:797,pixelWidth:1200,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/uYIe4e6A4KasoDI9NwULV6uQ6k4.jpg?lossless=1\",srcSet:\"https://framerusercontent.com/images/uYIe4e6A4KasoDI9NwULV6uQ6k4.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/uYIe4e6A4KasoDI9NwULV6uQ6k4.jpg?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/uYIe4e6A4KasoDI9NwULV6uQ6k4.jpg?lossless=1 1200w\"}},nkeM6Xk5d:{background:{alt:\"Our Hotel\",fit:\"fill\",intrinsicHeight:921,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),pixelHeight:1360,pixelWidth:2048,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/KgO2ydgTkFXVLIT406fa5T8k.jpg?lossless=1\",srcSet:\"https://framerusercontent.com/images/KgO2ydgTkFXVLIT406fa5T8k.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/KgO2ydgTkFXVLIT406fa5T8k.jpg?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/KgO2ydgTkFXVLIT406fa5T8k.jpg?lossless=1 2048w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"Our Hotel\",fit:\"fill\",intrinsicHeight:921,intrinsicWidth:1920,pixelHeight:797,pixelWidth:1200,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/uYIe4e6A4KasoDI9NwULV6uQ6k4.jpg?lossless=1\",srcSet:\"https://framerusercontent.com/images/uYIe4e6A4KasoDI9NwULV6uQ6k4.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/uYIe4e6A4KasoDI9NwULV6uQ6k4.jpg?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/uYIe4e6A4KasoDI9NwULV6uQ6k4.jpg?lossless=1 1200w\"},className:\"framer-j6n843\",\"data-framer-name\":\"BG Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13ezall\",\"data-framer-name\":\"Gradient\"}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nkeM6Xk5d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ygn2zy\",\"data-styles-preset\":\"GnZgLY0uG\",style:{\"--framer-text-color\":\"var(--token-0ef5f4c9-6e40-403c-b675-fde7ce75eb76, rgb(255, 255, 255))\"},children:\"The Ultimate Guide to Saint Martin de Belleville\"})}),transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-c92pgt\",\"data-styles-preset\":\"zbtMxV_40\",style:{\"--framer-text-color\":\"var(--token-0ef5f4c9-6e40-403c-b675-fde7ce75eb76, rgb(255, 255, 255))\"},children:\"The Ultimate Guide to Saint Martin de Belleville\"})}),className:\"framer-mzcovt hidden-y7x9uf\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t0nshb\",\"data-framer-name\":\"Body\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3bqgfm\",\"data-framer-name\":\"Video Section\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1nngwte\",\"data-styles-preset\":\"AUYiiwKH2\",children:\"Your Gateway to Luxury Ski Holidays in the Three Valleys\"})}),className:\"framer-1grftn5\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-18x3304\",\"data-framer-appear-id\":\"18x3304\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nm0v7v-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ETt2_2SQm\",scopeId:\"XJHRLYlyn\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div style=\"position:relative;padding-top:56.25%;\">\\n  <iframe \\n    src=\"https://iframe.mediadelivery.net/embed/327125/ad13249c-b90d-41f3-a649-f38bd61580ef?autoplay=true&loop=true&muted=true&preload=true&responsive=true\" \\n    loading=\"lazy\" \\n    style=\"border:0;position:absolute;top:0;left:0;width:100%;height:100%;\" \\n    allow=\"accelerometer; gyroscope; autoplay; encrypted-media; picture-in-picture\" \\n    allowfullscreen>\\n  </iframe>\\n</div>\\n',id:\"ETt2_2SQm\",layoutId:\"ETt2_2SQm\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://iframe.mediadelivery.net/embed/327125/ad13249c-b90d-41f3-a649-f38bd61580ef?autoplay=true&loop=true&muted=true&preload=true&responsive=true.\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1kzhdyk\",\"data-framer-name\":\"Copy section\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c849hq\",\"data-framer-name\":\"the Village\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-equoqo\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1nngwte\",\"data-styles-preset\":\"AUYiiwKH2\",style:{\"--framer-text-color\":\"var(--token-ca661396-7f12-42f6-89f5-5d3ca541a7b7, rgb(196, 182, 175))\"},children:\"Discover Saint Martin de Belleville\"})}),className:\"framer-n3kgqb\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1tpsnz8\",\"data-styles-preset\":\"iio1zfXoy\",children:[\"Nestled in the heart of the French Alps, \",/*#__PURE__*/_jsx(\"strong\",{children:\"Saint Martin de Belleville\"}),\" is a picturesque alpine village that perfectly combines traditional charm with world-class skiing. As part of the renowned Three Valleys ski area, this stunning destination offers a unique experience for both seasoned skiers and families seeking a winter escape. White Mountain Chalets are proud to be your trusted hosts, offering exclusive luxury accommodation tailored to all guests, from experienced ski groups to young families.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tpsnz8\",\"data-styles-preset\":\"iio1zfXoy\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1tpsnz8\",\"data-styles-preset\":\"iio1zfXoy\",children:\"Saint Martin de Belleville is a quintessential alpine village where old-world Savoyard charm meets modern luxury. Located at an altitude of 1,450 metres, the village features cobblestone streets, a historic baroque church, and beautifully preserved chalets. Saint Martin offers a tranquil atmosphere, making it ideal for those who prefer a more authentic alpine experience.\"})]}),className:\"framer-exddpa\",\"data-framer-name\":\"Desc\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b045qm\",\"data-framer-name\":\"Left images\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fs0saneKW:{background:{alt:\"Hotel\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+400+0+716+96+0+0+630+0+0),pixelHeight:2e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 100px, 700px)`,src:\"https://framerusercontent.com/images/RYSZfxlWhcztFFFTgefQngib4yw.jpg\",srcSet:\"https://framerusercontent.com/images/RYSZfxlWhcztFFFTgefQngib4yw.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/RYSZfxlWhcztFFFTgefQngib4yw.jpg 1600w\"}},nkeM6Xk5d:{background:{alt:\"Hotel\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+500+0+512+96+0+0+630+0+0),pixelHeight:2e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 700px)`,src:\"https://framerusercontent.com/images/RYSZfxlWhcztFFFTgefQngib4yw.jpg\",srcSet:\"https://framerusercontent.com/images/RYSZfxlWhcztFFFTgefQngib4yw.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/RYSZfxlWhcztFFFTgefQngib4yw.jpg 1600w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Hotel\",fit:\"fill\",pixelHeight:2e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 128px, 700px)`,src:\"https://framerusercontent.com/images/RYSZfxlWhcztFFFTgefQngib4yw.jpg\",srcSet:\"https://framerusercontent.com/images/RYSZfxlWhcztFFFTgefQngib4yw.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/RYSZfxlWhcztFFFTgefQngib4yw.jpg 1600w\"},className:\"framer-1ollu5o\",\"data-framer-name\":\"Image\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-138sf0z\",\"data-framer-name\":\"Celebrate\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-513wak\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fs0saneKW:{background:{alt:\"Hotel Beach\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+400+0+716+96+1294+0+1340+0+0),pixelHeight:1245,pixelWidth:2048,sizes:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,src:\"https://framerusercontent.com/images/nI7nYT3QSSshjCl4NMFHGEGEYZA.jpg\",srcSet:\"https://framerusercontent.com/images/nI7nYT3QSSshjCl4NMFHGEGEYZA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nI7nYT3QSSshjCl4NMFHGEGEYZA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nI7nYT3QSSshjCl4NMFHGEGEYZA.jpg 2048w\"}},nkeM6Xk5d:{background:{alt:\"Hotel Beach\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+500+0+512+96+1094+0+1340+0+0),pixelHeight:1245,pixelWidth:2048,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/nI7nYT3QSSshjCl4NMFHGEGEYZA.jpg\",srcSet:\"https://framerusercontent.com/images/nI7nYT3QSSshjCl4NMFHGEGEYZA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nI7nYT3QSSshjCl4NMFHGEGEYZA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nI7nYT3QSSshjCl4NMFHGEGEYZA.jpg 2048w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Hotel Beach\",fit:\"fill\",pixelHeight:1245,pixelWidth:2048,sizes:`calc(${componentViewport?.width||\"100vw\"} - 128px)`,src:\"https://framerusercontent.com/images/nI7nYT3QSSshjCl4NMFHGEGEYZA.jpg\",srcSet:\"https://framerusercontent.com/images/nI7nYT3QSSshjCl4NMFHGEGEYZA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nI7nYT3QSSshjCl4NMFHGEGEYZA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nI7nYT3QSSshjCl4NMFHGEGEYZA.jpg 2048w\"},className:\"framer-rxesnp\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fs0saneKW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+400+0+716+96+1294+0+1340+0+424),pixelHeight:1367,pixelWidth:2048,sizes:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,src:\"https://framerusercontent.com/images/3YM3y72bSLfD4wzrM6yFmc6ojE.jpg\",srcSet:\"https://framerusercontent.com/images/3YM3y72bSLfD4wzrM6yFmc6ojE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3YM3y72bSLfD4wzrM6yFmc6ojE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3YM3y72bSLfD4wzrM6yFmc6ojE.jpg 2048w\"}},nkeM6Xk5d:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+500+0+512+96+1094+0+1340+0+304),pixelHeight:1367,pixelWidth:2048,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/3YM3y72bSLfD4wzrM6yFmc6ojE.jpg\",srcSet:\"https://framerusercontent.com/images/3YM3y72bSLfD4wzrM6yFmc6ojE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3YM3y72bSLfD4wzrM6yFmc6ojE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3YM3y72bSLfD4wzrM6yFmc6ojE.jpg 2048w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:1367,pixelWidth:2048,sizes:`calc(${componentViewport?.width||\"100vw\"} - 128px)`,src:\"https://framerusercontent.com/images/3YM3y72bSLfD4wzrM6yFmc6ojE.jpg\",srcSet:\"https://framerusercontent.com/images/3YM3y72bSLfD4wzrM6yFmc6ojE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3YM3y72bSLfD4wzrM6yFmc6ojE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3YM3y72bSLfD4wzrM6yFmc6ojE.jpg 2048w\"},className:\"framer-ryyqg9\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zog1hg\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1nngwte\",\"data-styles-preset\":\"AUYiiwKH2\",style:{\"--framer-text-color\":\"var(--token-ca661396-7f12-42f6-89f5-5d3ca541a7b7, rgb(196, 182, 175))\"},children:\"Highlights of the Three Valleys\"})}),className:\"framer-1csv2o9\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"30px\"},children:\"Saint Martin de Belleville serves as a gateway to the broader Three Valleys region, offering seamless access to iconic resorts like Courchevel, M\\xe9ribel, and Val Thorens. Some highlights include:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"30px\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"30px\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Les Menuires\"}),\": Known for its family-friendly atmosphere and varied slopes.\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"30px\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Val Thorens\"}),\": Europe\u2019s highest ski resort, offering snow-sure conditions and vibrant nightlife.\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"30px\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Courchevel\"}),\": Renowned for its luxury boutiques, Michelin-starred restaurants, and glamorous vibe.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"30px\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"30px\"},children:\"Whether you\u2019re chasing adrenaline or scenic beauty, the Three Valleys delivers an unforgettable alpine adventure.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"30px\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-olw2jb\",\"data-framer-name\":\"Desc\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pv1dxu\",\"data-framer-name\":\"Ski guide\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pu5d6a\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pn1pqj\",\"data-framer-name\":\"Intro\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1nngwte\",\"data-styles-preset\":\"AUYiiwKH2\",style:{\"--framer-text-color\":\"var(--token-fa13b2c8-a58f-413a-8b92-4cf300d9d4f5, rgb(20, 20, 20))\"},children:\"Skiing in Saint Martin de Belleville\"})}),className:\"framer-14d2h0c\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1tpsnz8\",\"data-styles-preset\":\"iio1zfXoy\",children:[\"As part of the \",/*#__PURE__*/_jsx(\"strong\",{children:\"Three Valleys\"}),\", the largest interconnected ski area in the world, Saint Martin de Belleville offers unparalleled skiing opportunities. With direct access to over \",/*#__PURE__*/_jsx(\"strong\",{children:\"600km of pistes\"}),\", it caters to all skill levels:\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1tpsnz8\",\"data-styles-preset\":\"iio1zfXoy\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Beginners\"}),\": Family friendly and beginner skiers will love the gentler slopes of Les Menuires and Saint Martin. Gentle nursery slopes and expert tuition ensure a smooth introduction to skiing.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1tpsnz8\",\"data-styles-preset\":\"iio1zfXoy\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Intermediate\"}),\": Mont Vallon and Le Masse offer more challenging descents for freestyle and off-piste skiing. Wide blue and red runs are perfect for skiers looking to refine their skills.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1tpsnz8\",\"data-styles-preset\":\"iio1zfXoy\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Advanced\"}),\": Courchevel's Grand Couloir offers a true challenge. This infamous unpisted black run should be on every serious skier's bucket list.. Thrilling black runs, off-piste terrain, and challenging mogul fields await expert skiers.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tpsnz8\",\"data-styles-preset\":\"iio1zfXoy\",children:\"The reliable snow conditions, bolstered by high-altitude pistes and extensive snowmaking, ensure a consistent skiing experience throughout the season.\"})]}),className:\"framer-1yoywia\",\"data-framer-name\":\"Copy\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fs0saneKW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+400+0+4366+96+0+0+930),pixelHeight:3280,pixelWidth:4928,sizes:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,src:\"https://framerusercontent.com/images/ubsoHFNS4hxg6NTptq92xoYQc0.jpg\",srcSet:\"https://framerusercontent.com/images/ubsoHFNS4hxg6NTptq92xoYQc0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ubsoHFNS4hxg6NTptq92xoYQc0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ubsoHFNS4hxg6NTptq92xoYQc0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ubsoHFNS4hxg6NTptq92xoYQc0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/ubsoHFNS4hxg6NTptq92xoYQc0.jpg 4928w\"}},nkeM6Xk5d:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+500+0+3722+96+0+0+986),pixelHeight:3280,pixelWidth:4928,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/ubsoHFNS4hxg6NTptq92xoYQc0.jpg\",srcSet:\"https://framerusercontent.com/images/ubsoHFNS4hxg6NTptq92xoYQc0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ubsoHFNS4hxg6NTptq92xoYQc0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ubsoHFNS4hxg6NTptq92xoYQc0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ubsoHFNS4hxg6NTptq92xoYQc0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/ubsoHFNS4hxg6NTptq92xoYQc0.jpg 4928w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:3280,pixelWidth:4928,sizes:`max((${componentViewport?.width||\"100vw\"} - 148px) / 2, 1px)`,src:\"https://framerusercontent.com/images/ubsoHFNS4hxg6NTptq92xoYQc0.jpg\",srcSet:\"https://framerusercontent.com/images/ubsoHFNS4hxg6NTptq92xoYQc0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ubsoHFNS4hxg6NTptq92xoYQc0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ubsoHFNS4hxg6NTptq92xoYQc0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ubsoHFNS4hxg6NTptq92xoYQc0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/ubsoHFNS4hxg6NTptq92xoYQc0.jpg 4928w\"},className:\"framer-tjpetd\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-170mpyk\",\"data-framer-name\":\"Piste Maps\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lcqns6\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1nngwte\",\"data-styles-preset\":\"AUYiiwKH2\",style:{\"--framer-text-color\":\"var(--token-fa13b2c8-a58f-413a-8b92-4cf300d9d4f5, rgb(20, 20, 20))\"},children:\"Piste Maps\"})}),className:\"framer-eiqal7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bd2nik\",\"data-framer-name\":\"Maps\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-crcryo\",\"data-framer-name\":\"Saint Martin\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fs0saneKW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+400+0+4366+96+1486+0+80+0+0+0),pixelHeight:753,pixelWidth:978,sizes:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 1px)`,src:\"https://framerusercontent.com/images/8KDNaGZPybq3NBgZmRngNEK14Q.png\",srcSet:\"https://framerusercontent.com/images/8KDNaGZPybq3NBgZmRngNEK14Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/8KDNaGZPybq3NBgZmRngNEK14Q.png 978w\"}},nkeM6Xk5d:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+500+0+3722+96+1566+0+124+0+0+0+0),pixelHeight:753,pixelWidth:978,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/8KDNaGZPybq3NBgZmRngNEK14Q.png\",srcSet:\"https://framerusercontent.com/images/8KDNaGZPybq3NBgZmRngNEK14Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/8KDNaGZPybq3NBgZmRngNEK14Q.png 978w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:753,pixelWidth:978,sizes:`max((${componentViewport?.width||\"100vw\"} - 148px) / 2, 1px)`,src:\"https://framerusercontent.com/images/8KDNaGZPybq3NBgZmRngNEK14Q.png\",srcSet:\"https://framerusercontent.com/images/8KDNaGZPybq3NBgZmRngNEK14Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/8KDNaGZPybq3NBgZmRngNEK14Q.png 978w\"},className:\"framer-nbvzom\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tt9f0e\",\"data-framer-name\":\"title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Saint Martin ski area\"})}),className:\"framer-7anlih\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-i3kd46-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dPmqmCJuG\",scopeId:\"XJHRLYlyn\",children:/*#__PURE__*/_jsx(PDFViewer,{buttonStyles:{background:\"rgb(255, 255, 255)\",border:{borderBottomWidth:0,borderColor:\"black\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},borderRadius:\"25px\",buttonIcon:true,color:\"rgb(0, 0, 0)\",fontStyle:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},padding:\"10px 20px 10px 20px\",pdfIcon:{color:\"rgb(250, 0, 0)\",icon:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\"><rect width=\"256\" height=\"256\" fill=\"none\"/><polyline points=\"216 152 184 152 184 208\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><line x1=\"208\" y1=\"184\" x2=\"184\" y2=\"184\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><path d=\"M48,192H64a20,20,0,0,0,0-40H48v56\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><path d=\"M112,152v56h16a28,28,0,0,0,0-56Z\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><path d=\"M48,112V40a8,8,0,0,1,8-8h96l56,56v24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><polyline points=\"152 32 152 88 208 88\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/></svg>',size:24},shadow:\"\",textDecoration:\"none\"},buttonText:\"View PDF\",customFileName:\"Download\",file:\"https://framerusercontent.com/assets/odtCu1SNUa9gzOCXxHHJNOOrGGk.pdf\",fileChoose:\"Upload\",fileURL:\"https://raw.githubusercontent.com/mozilla/pdf.js/ba2edeae/web/compressed.tracemonkey-pldi-09.pdf\",height:\"100%\",id:\"dPmqmCJuG\",layoutId:\"dPmqmCJuG\",modalStyles:{arrows:{backgroundColor:\"rgba(0, 0, 0, 0.3)\",borderRadius:\"5px\",color:\"rgb(255, 255, 255)\",leftIcon:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M165.66,202.34a8,8,0,0,1-11.32,11.32l-80-80a8,8,0,0,1,0-11.32l80-80a8,8,0,0,1,11.32,11.32L91.31,128Z\"></path></svg>',padding:\"5px 10px 5px 10px\",rightIcon:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M181.66,133.66l-80,80a8,8,0,0,1-11.32-11.32L164.69,128,90.34,53.66a8,8,0,0,1,11.32-11.32l80,80A8,8,0,0,1,181.66,133.66Z\"></path></svg>',size:40},backgroundColor:\"rgb(0, 0, 0)\",closebtn:{backgroundColor:\"rgba(0, 0, 0, 0.3)\",borderRadius:\"5px\",closeIcon:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M205.66,194.34a8,8,0,0,1-11.32,11.32L128,139.31,61.66,205.66a8,8,0,0,1-11.32-11.32L116.69,128,50.34,61.66A8,8,0,0,1,61.66,50.34L128,116.69l66.34-66.35a8,8,0,0,1,11.32,11.32L139.31,128Z\"></path></svg>',color:\"rgb(255, 255, 255)\",padding:\"5px 10px 5px 10px\",size:40},downloadbtn:{backgroundColor:\"rgba(0, 0, 0, 0.3)\",borderRadius:\"5px\",color:\"rgb(255, 255, 255)\",downloadIcon:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M224,152v56a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V152a8,8,0,0,1,16,0v56H208V152a8,8,0,0,1,16,0Zm-101.66,5.66a8,8,0,0,0,11.32,0l40-40a8,8,0,0,0-11.32-11.32L136,132.69V40a8,8,0,0,0-16,0v92.69L93.66,106.34a8,8,0,0,0-11.32,11.32Z\"></path></svg>',padding:\"5px 10px 5px 10px\",size:40},pageCounter:{backgroundColor:\"rgba(0, 0, 0, 0.3)\",borderRadius:\"5px\",color:\"rgb(255, 255, 255)\",fontStyle:{fontFamily:'\"Inter\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},padding:\"5px 10px 5px 10px\"},zoomControls:{backgroundColor:\"rgba(0, 0, 0, 0.3)\",borderRadius:\"5px\",color:\"rgb(255, 255, 255)\",padding:\"5px 10px 5px 10px\",size:40,zoomInIcon:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M152,112a8,8,0,0,1-8,8H120v24a8,8,0,0,1-16,0V120H80a8,8,0,0,1,0-16h24V80a8,8,0,0,1,16,0v24h24A8,8,0,0,1,152,112Zm77.66,117.66a8,8,0,0,1-11.32,0l-50.06-50.07a88.11,88.11,0,1,1,11.31-11.31l50.07,50.06A8,8,0,0,1,229.66,229.66ZM112,184a72,72,0,1,0-72-72A72.08,72.08,0,0,0,112,184Z\"></path></svg>',zoomOutIcon:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M152,112a8,8,0,0,1-8,8H80a8,8,0,0,1,0-16h64A8,8,0,0,1,152,112Zm77.66,117.66a8,8,0,0,1-11.32,0l-50.06-50.07a88.11,88.11,0,1,1,11.31-11.31l50.07,50.06A8,8,0,0,1,229.66,229.66ZM112,184a72,72,0,1,0-72-72A72.08,72.08,0,0,0,112,184Z\"></path></svg>'}},pageNumber:1,scale:1.2,width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6t0nxg\",\"data-framer-name\":\"Three Valleys\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fs0saneKW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+400+0+4366+96+1486+0+80+0+0+0),pixelHeight:908,pixelWidth:1748,sizes:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 1px)`,src:\"https://framerusercontent.com/images/wIH2Df2yRuNUUIj7Ly2PxTtB9Qs.png\",srcSet:\"https://framerusercontent.com/images/wIH2Df2yRuNUUIj7Ly2PxTtB9Qs.png?scale-down-to=512 512w,https://framerusercontent.com/images/wIH2Df2yRuNUUIj7Ly2PxTtB9Qs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wIH2Df2yRuNUUIj7Ly2PxTtB9Qs.png 1748w\"}},nkeM6Xk5d:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+500+0+3722+96+1566+0+124+0+642+0+0),pixelHeight:908,pixelWidth:1748,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/wIH2Df2yRuNUUIj7Ly2PxTtB9Qs.png\",srcSet:\"https://framerusercontent.com/images/wIH2Df2yRuNUUIj7Ly2PxTtB9Qs.png?scale-down-to=512 512w,https://framerusercontent.com/images/wIH2Df2yRuNUUIj7Ly2PxTtB9Qs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wIH2Df2yRuNUUIj7Ly2PxTtB9Qs.png 1748w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:908,pixelWidth:1748,sizes:`max((${componentViewport?.width||\"100vw\"} - 148px) / 2, 1px)`,src:\"https://framerusercontent.com/images/wIH2Df2yRuNUUIj7Ly2PxTtB9Qs.png\",srcSet:\"https://framerusercontent.com/images/wIH2Df2yRuNUUIj7Ly2PxTtB9Qs.png?scale-down-to=512 512w,https://framerusercontent.com/images/wIH2Df2yRuNUUIj7Ly2PxTtB9Qs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wIH2Df2yRuNUUIj7Ly2PxTtB9Qs.png 1748w\"},className:\"framer-6hc96q\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tk4wqg\",\"data-framer-name\":\"title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Three Valleys ski area\"})}),className:\"framer-1xvgrbe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1044nto-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"h2UXBMH_E\",scopeId:\"XJHRLYlyn\",children:/*#__PURE__*/_jsx(PDFViewer,{buttonStyles:{background:\"rgb(255, 255, 255)\",border:{borderBottomWidth:0,borderColor:\"black\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},borderRadius:\"25px\",buttonIcon:true,color:\"rgb(0, 0, 0)\",fontStyle:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},padding:\"10px 20px 10px 20px\",pdfIcon:{color:\"rgb(250, 0, 0)\",icon:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\"><rect width=\"256\" height=\"256\" fill=\"none\"/><polyline points=\"216 152 184 152 184 208\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><line x1=\"208\" y1=\"184\" x2=\"184\" y2=\"184\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><path d=\"M48,192H64a20,20,0,0,0,0-40H48v56\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><path d=\"M112,152v56h16a28,28,0,0,0,0-56Z\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><path d=\"M48,112V40a8,8,0,0,1,8-8h96l56,56v24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><polyline points=\"152 32 152 88 208 88\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/></svg>',size:24},shadow:\"\",textDecoration:\"none\"},buttonText:\"View PDF\",customFileName:\"Download\",file:\"https://framerusercontent.com/assets/CofpNnNFk1BPouOJz2qoCTIng.pdf\",fileChoose:\"Upload\",fileURL:\"https://raw.githubusercontent.com/mozilla/pdf.js/ba2edeae/web/compressed.tracemonkey-pldi-09.pdf\",height:\"100%\",id:\"h2UXBMH_E\",layoutId:\"h2UXBMH_E\",modalStyles:{arrows:{backgroundColor:\"rgba(0, 0, 0, 0.3)\",borderRadius:\"5px\",color:\"rgb(255, 255, 255)\",leftIcon:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M165.66,202.34a8,8,0,0,1-11.32,11.32l-80-80a8,8,0,0,1,0-11.32l80-80a8,8,0,0,1,11.32,11.32L91.31,128Z\"></path></svg>',padding:\"5px 10px 5px 10px\",rightIcon:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M181.66,133.66l-80,80a8,8,0,0,1-11.32-11.32L164.69,128,90.34,53.66a8,8,0,0,1,11.32-11.32l80,80A8,8,0,0,1,181.66,133.66Z\"></path></svg>',size:40},backgroundColor:\"rgb(0, 0, 0)\",closebtn:{backgroundColor:\"rgba(0, 0, 0, 0.3)\",borderRadius:\"5px\",closeIcon:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M205.66,194.34a8,8,0,0,1-11.32,11.32L128,139.31,61.66,205.66a8,8,0,0,1-11.32-11.32L116.69,128,50.34,61.66A8,8,0,0,1,61.66,50.34L128,116.69l66.34-66.35a8,8,0,0,1,11.32,11.32L139.31,128Z\"></path></svg>',color:\"rgb(255, 255, 255)\",padding:\"5px 10px 5px 10px\",size:40},downloadbtn:{backgroundColor:\"rgba(0, 0, 0, 0.3)\",borderRadius:\"5px\",color:\"rgb(255, 255, 255)\",downloadIcon:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M224,152v56a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V152a8,8,0,0,1,16,0v56H208V152a8,8,0,0,1,16,0Zm-101.66,5.66a8,8,0,0,0,11.32,0l40-40a8,8,0,0,0-11.32-11.32L136,132.69V40a8,8,0,0,0-16,0v92.69L93.66,106.34a8,8,0,0,0-11.32,11.32Z\"></path></svg>',padding:\"5px 10px 5px 10px\",size:40},pageCounter:{backgroundColor:\"rgba(0, 0, 0, 0.3)\",borderRadius:\"5px\",color:\"rgb(255, 255, 255)\",fontStyle:{fontFamily:'\"Inter\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},padding:\"5px 10px 5px 10px\"},zoomControls:{backgroundColor:\"rgba(0, 0, 0, 0.3)\",borderRadius:\"5px\",color:\"rgb(255, 255, 255)\",padding:\"5px 10px 5px 10px\",size:40,zoomInIcon:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M152,112a8,8,0,0,1-8,8H120v24a8,8,0,0,1-16,0V120H80a8,8,0,0,1,0-16h24V80a8,8,0,0,1,16,0v24h24A8,8,0,0,1,152,112Zm77.66,117.66a8,8,0,0,1-11.32,0l-50.06-50.07a88.11,88.11,0,1,1,11.31-11.31l50.07,50.06A8,8,0,0,1,229.66,229.66ZM112,184a72,72,0,1,0-72-72A72.08,72.08,0,0,0,112,184Z\"></path></svg>',zoomOutIcon:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M152,112a8,8,0,0,1-8,8H80a8,8,0,0,1,0-16h64A8,8,0,0,1,152,112Zm77.66,117.66a8,8,0,0,1-11.32,0l-50.06-50.07a88.11,88.11,0,1,1,11.31-11.31l50.07,50.06A8,8,0,0,1,229.66,229.66ZM112,184a72,72,0,1,0-72-72A72.08,72.08,0,0,0,112,184Z\"></path></svg>'}},pageNumber:1,scale:1.2,width:\"100%\"})})})]})]})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1iiikkp\",\"data-framer-name\":\"Activities & Cuisine\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19xfhqj\",\"data-framer-name\":\"activities\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g5tj93\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1nngwte\",\"data-styles-preset\":\"AUYiiwKH2\",style:{\"--framer-text-color\":\"var(--token-ca661396-7f12-42f6-89f5-5d3ca541a7b7, rgb(196, 182, 175))\"},children:\"Activities Beyond the Slopes\"})}),className:\"framer-86l6b5\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tpsnz8\",\"data-styles-preset\":\"iio1zfXoy\",children:\"While skiing is the star attraction, Saint Martin de Belleville boasts a variety of off-piste activities:\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1tpsnz8\",\"data-styles-preset\":\"iio1zfXoy\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Snowshoeing\"}),\": Explore serene trails through pristine alpine forests.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1tpsnz8\",\"data-styles-preset\":\"iio1zfXoy\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Dog sledding\"}),\": Embark on a magical ride through snowy landscapes.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1tpsnz8\",\"data-styles-preset\":\"iio1zfXoy\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Cultural tours\"}),\": Visit the village\u2019s baroque church or explore the Museum of Saint Martin to learn about the region\u2019s history.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1tpsnz8\",\"data-styles-preset\":\"iio1zfXoy\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Spa days\"}),\": Indulge in relaxation at luxury spas in the area.\"]})]}),className:\"framer-k3q612\",\"data-framer-name\":\"Desc\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14s46fv\",\"data-framer-name\":\"Left images\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fs0saneKW:{background:{alt:\"Hotel\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+400+0+6684+96+0+0+970+0+0),pixelHeight:2e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 100px, 700px)`,src:\"https://framerusercontent.com/images/RYSZfxlWhcztFFFTgefQngib4yw.jpg\",srcSet:\"https://framerusercontent.com/images/RYSZfxlWhcztFFFTgefQngib4yw.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/RYSZfxlWhcztFFFTgefQngib4yw.jpg 1600w\"}},nkeM6Xk5d:{background:{alt:\"Hotel\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+500+0+6856+96+0+0+970+0+0),pixelHeight:2e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 700px)`,src:\"https://framerusercontent.com/images/RYSZfxlWhcztFFFTgefQngib4yw.jpg\",srcSet:\"https://framerusercontent.com/images/RYSZfxlWhcztFFFTgefQngib4yw.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/RYSZfxlWhcztFFFTgefQngib4yw.jpg 1600w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Hotel\",fit:\"fill\",pixelHeight:2e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`min(max((${componentViewport?.width||\"100vw\"} - 160px) / 2, 1px), 700px)`,src:\"https://framerusercontent.com/images/RYSZfxlWhcztFFFTgefQngib4yw.jpg\",srcSet:\"https://framerusercontent.com/images/RYSZfxlWhcztFFFTgefQngib4yw.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/RYSZfxlWhcztFFFTgefQngib4yw.jpg 1600w\"},className:\"framer-21hezq\",\"data-framer-name\":\"Image\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-twn4e1\",\"data-framer-name\":\"Cuisine\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y6ifum\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fs0saneKW:{background:{alt:\"Hotel Beach\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+400+0+6684+96+1634+0+1460+0+0),pixelHeight:1245,pixelWidth:2048,sizes:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,src:\"https://framerusercontent.com/images/nI7nYT3QSSshjCl4NMFHGEGEYZA.jpg\",srcSet:\"https://framerusercontent.com/images/nI7nYT3QSSshjCl4NMFHGEGEYZA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nI7nYT3QSSshjCl4NMFHGEGEYZA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nI7nYT3QSSshjCl4NMFHGEGEYZA.jpg 2048w\"}},nkeM6Xk5d:{background:{alt:\"Hotel Beach\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+500+0+6856+96+1434+0+1460+0+0),pixelHeight:1245,pixelWidth:2048,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/nI7nYT3QSSshjCl4NMFHGEGEYZA.jpg\",srcSet:\"https://framerusercontent.com/images/nI7nYT3QSSshjCl4NMFHGEGEYZA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nI7nYT3QSSshjCl4NMFHGEGEYZA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nI7nYT3QSSshjCl4NMFHGEGEYZA.jpg 2048w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Hotel Beach\",fit:\"fill\",pixelHeight:1245,pixelWidth:2048,sizes:`max((${componentViewport?.width||\"100vw\"} - 160px) / 2, 1px)`,src:\"https://framerusercontent.com/images/nI7nYT3QSSshjCl4NMFHGEGEYZA.jpg\",srcSet:\"https://framerusercontent.com/images/nI7nYT3QSSshjCl4NMFHGEGEYZA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nI7nYT3QSSshjCl4NMFHGEGEYZA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nI7nYT3QSSshjCl4NMFHGEGEYZA.jpg 2048w\"},className:\"framer-1dzwrrp\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fs0saneKW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+400+0+6684+96+1634+0+1460+0+424),pixelHeight:1367,pixelWidth:2048,sizes:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,src:\"https://framerusercontent.com/images/3YM3y72bSLfD4wzrM6yFmc6ojE.jpg\",srcSet:\"https://framerusercontent.com/images/3YM3y72bSLfD4wzrM6yFmc6ojE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3YM3y72bSLfD4wzrM6yFmc6ojE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3YM3y72bSLfD4wzrM6yFmc6ojE.jpg 2048w\"}},nkeM6Xk5d:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+500+0+6856+96+1434+0+1460+0+304),pixelHeight:1367,pixelWidth:2048,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/3YM3y72bSLfD4wzrM6yFmc6ojE.jpg\",srcSet:\"https://framerusercontent.com/images/3YM3y72bSLfD4wzrM6yFmc6ojE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3YM3y72bSLfD4wzrM6yFmc6ojE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3YM3y72bSLfD4wzrM6yFmc6ojE.jpg 2048w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:1367,pixelWidth:2048,sizes:`max((${componentViewport?.width||\"100vw\"} - 160px) / 2, 1px)`,src:\"https://framerusercontent.com/images/3YM3y72bSLfD4wzrM6yFmc6ojE.jpg\",srcSet:\"https://framerusercontent.com/images/3YM3y72bSLfD4wzrM6yFmc6ojE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3YM3y72bSLfD4wzrM6yFmc6ojE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3YM3y72bSLfD4wzrM6yFmc6ojE.jpg 2048w\"},className:\"framer-142j08v\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qspi9s\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1nngwte\",\"data-styles-preset\":\"AUYiiwKH2\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Savour the Cuisine\"})})}),className:\"framer-glqydj\",\"data-framer-name\":\"Title\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zrhtxb\",\"data-styles-preset\":\"yuke8JtHx\",style:{\"--framer-text-color\":\"var(--token-fa13b2c8-a58f-413a-8b92-4cf300d9d4f5, rgb(20, 20, 20))\"},children:\"Saint Martin de Belleville is a culinary gem, blending traditional Savoyard flavours with contemporary gastronomy. Highlights include:\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-zrhtxb\",\"data-styles-preset\":\"yuke8JtHx\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Simple & Meilleur\"}),\": A two-Michelin-starred restaurant offering exquisite Alpine-inspired dishes.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-zrhtxb\",\"data-styles-preset\":\"yuke8JtHx\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Le Montagnard\"}),\": Boasting breathtaking views, a relaxed ambiance, and expertly crafted dishes made from fresh, local ingredients.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-zrhtxb\",\"data-styles-preset\":\"yuke8JtHx\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Local specialities\"}),\": Enjoy classics like raclette, tartiflette, and fondue.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-zrhtxb\",\"data-styles-preset\":\"yuke8JtHx\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Cosy bars\"}),\": Relax with a vin chaud or an aperitif at one of the village\u2019s charming venues.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zrhtxb\",\"data-styles-preset\":\"yuke8JtHx\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"White Mountain Chalets also provide gourmet in-house dining, with professional chefs preparing tailored menus for an exclusive culinary experience.\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-zrhtxb\",\"data-styles-preset\":\"yuke8JtHx\",children:[/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"30px\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-sysi6q\",\"data-framer-name\":\"Desc\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-sj4qcj\",\"data-framer-name\":\"Find out more\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gm8fnl\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1otlsd4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fs0saneKW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0VsZWN0cm9sdXggU2FucyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Electrolux Sans SemiBold\", \"Electrolux Sans SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"1.6px\",\"--framer-line-height\":\"54px\",\"--framer-text-color\":\"rgb(20, 20, 20)\"},children:\"Find out more\"})})},nkeM6Xk5d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0VsZWN0cm9sdXggU2FucyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Electrolux Sans SemiBold\", \"Electrolux Sans SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"1.6px\",\"--framer-line-height\":\"42px\",\"--framer-text-color\":\"rgb(20, 20, 20)\"},children:\"Find out more\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0VsZWN0cm9sdXggU2FucyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Electrolux Sans SemiBold\", \"Electrolux Sans SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"1.6px\",\"--framer-line-height\":\"60px\",\"--framer-text-color\":\"rgb(20, 20, 20)\"},children:\"Find out more\"})}),className:\"framer-1n8zlpc\",\"data-framer-name\":\"Heading\",fonts:[\"CUSTOM;Electrolux Sans SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1inivcz\",\"data-framer-name\":\"Tiles\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"KBJ4lMlIu\"},implicitPathVariables:undefined},{href:{webPageId:\"KBJ4lMlIu\"},implicitPathVariables:undefined},{href:{webPageId:\"KBJ4lMlIu\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fs0saneKW:{width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1640px), 1px) - 128px) / 5, 1px)`,y:(componentViewport?.y||0)+0+400+0+10794+108+0+0+134+0},nkeM6Xk5d:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1640px), 1px)`,y:(componentViewport?.y||0)+0+500+0+10526+96+0+0+106+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:496,width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 128px, 1px), 1640px), 1px) - 128px) / 5, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-aatixl-container\",nodeId:\"asAD3d78o\",scopeId:\"XJHRLYlyn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fs0saneKW:{pcRMA90KH:resolvedLinks[1]},nkeM6Xk5d:{pcRMA90KH:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(InfoTile,{bHy3YUi1m:\"Discover our collection of luxury chalets\",EJQgQJfle:addImageAlt({pixelHeight:1024,pixelWidth:2048,src:\"https://framerusercontent.com/images/sBAp56ZgopCt0XYXCD9F6NGeEis.jpg\",srcSet:\"https://framerusercontent.com/images/sBAp56ZgopCt0XYXCD9F6NGeEis.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sBAp56ZgopCt0XYXCD9F6NGeEis.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sBAp56ZgopCt0XYXCD9F6NGeEis.jpg 2048w\"},\"\"),height:\"100%\",id:\"asAD3d78o\",IovL7w4QY:addImageAlt({pixelHeight:800,pixelWidth:1200,src:\"https://framerusercontent.com/images/AsPP3jtYsZLK0N4n0Oz8Wl2z10.jpg\",srcSet:\"https://framerusercontent.com/images/AsPP3jtYsZLK0N4n0Oz8Wl2z10.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AsPP3jtYsZLK0N4n0Oz8Wl2z10.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AsPP3jtYsZLK0N4n0Oz8Wl2z10.jpg 1200w\"},\"\"),layoutId:\"asAD3d78o\",pcRMA90KH:resolvedLinks[0],style:{width:\"100%\"},VuXkLuleL:\"Chalets\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"r8h94Kh4Q\"},implicitPathVariables:undefined},{href:{webPageId:\"r8h94Kh4Q\"},implicitPathVariables:undefined},{href:{webPageId:\"r8h94Kh4Q\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fs0saneKW:{width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1640px), 1px) - 128px) / 5, 1px)`,y:(componentViewport?.y||0)+0+400+0+10794+108+0+0+134+0},nkeM6Xk5d:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1640px), 1px)`,y:(componentViewport?.y||0)+0+500+0+10526+96+0+0+106+0+544}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:496,width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 128px, 1px), 1640px), 1px) - 128px) / 5, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hdbl8s-container\",nodeId:\"dCtayq5M0\",scopeId:\"XJHRLYlyn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fs0saneKW:{pcRMA90KH:resolvedLinks1[1]},nkeM6Xk5d:{pcRMA90KH:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(InfoTile,{bHy3YUi1m:\"Beautiful breakfasts, high teas, gourmet five course dinners and fine wines..\",EJQgQJfle:addImageAlt({pixelHeight:1024,pixelWidth:2048,src:\"https://framerusercontent.com/images/7wGGcN9MULxJCzAyYLZqjfKwRww.jpg\",srcSet:\"https://framerusercontent.com/images/7wGGcN9MULxJCzAyYLZqjfKwRww.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7wGGcN9MULxJCzAyYLZqjfKwRww.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7wGGcN9MULxJCzAyYLZqjfKwRww.jpg 2048w\"},\"\"),height:\"100%\",id:\"dCtayq5M0\",IovL7w4QY:addImageAlt({pixelHeight:1365,pixelWidth:2048,src:\"https://framerusercontent.com/images/RKMw7xOBSptWw3QvJovRBApYUw.jpg\",srcSet:\"https://framerusercontent.com/images/RKMw7xOBSptWw3QvJovRBApYUw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RKMw7xOBSptWw3QvJovRBApYUw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RKMw7xOBSptWw3QvJovRBApYUw.jpg 2048w\"},\"\"),layoutId:\"dCtayq5M0\",pcRMA90KH:resolvedLinks1[0],style:{width:\"100%\"},VuXkLuleL:\"Food\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tnSzm6ttO\"},implicitPathVariables:undefined},{href:{webPageId:\"tnSzm6ttO\"},implicitPathVariables:undefined},{href:{webPageId:\"tnSzm6ttO\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fs0saneKW:{width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1640px), 1px) - 128px) / 5, 1px)`,y:(componentViewport?.y||0)+0+400+0+10794+108+0+0+134+0},nkeM6Xk5d:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1640px), 1px)`,y:(componentViewport?.y||0)+0+500+0+10526+96+0+0+106+0+1088}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:496,width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 128px, 1px), 1640px), 1px) - 128px) / 5, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e9b65-container\",nodeId:\"G0trMOEB0\",scopeId:\"XJHRLYlyn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fs0saneKW:{pcRMA90KH:resolvedLinks2[1]},nkeM6Xk5d:{pcRMA90KH:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(InfoTile,{bHy3YUi1m:\"Everything taken care of for the perfect family holiday\",EJQgQJfle:addImageAlt({pixelHeight:1600,pixelWidth:1200,src:\"https://framerusercontent.com/images/Af9mbP6oG6jSDO3erFkHkLYss.jpeg\",srcSet:\"https://framerusercontent.com/images/Af9mbP6oG6jSDO3erFkHkLYss.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/Af9mbP6oG6jSDO3erFkHkLYss.jpeg 1200w\"},\"\"),height:\"100%\",id:\"G0trMOEB0\",IovL7w4QY:addImageAlt({pixelHeight:1504,pixelWidth:1128,src:\"https://framerusercontent.com/images/8j65Me17xCJd9YQNqyQmpoNW6QY.jpeg\",srcSet:\"https://framerusercontent.com/images/8j65Me17xCJd9YQNqyQmpoNW6QY.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/8j65Me17xCJd9YQNqyQmpoNW6QY.jpeg 1128w\"},\"\"),layoutId:\"G0trMOEB0\",pcRMA90KH:resolvedLinks2[0],style:{width:\"100%\"},VuXkLuleL:\"Family\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"HFLNiS6xn\"},implicitPathVariables:undefined},{href:{webPageId:\"HFLNiS6xn\"},implicitPathVariables:undefined},{href:{webPageId:\"HFLNiS6xn\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fs0saneKW:{width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1640px), 1px) - 128px) / 5, 1px)`,y:(componentViewport?.y||0)+0+400+0+10794+108+0+0+134+0},nkeM6Xk5d:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1640px), 1px)`,y:(componentViewport?.y||0)+0+500+0+10526+96+0+0+106+0+1632}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:496,width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 128px, 1px), 1640px), 1px) - 128px) / 5, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2e30ec-container\",nodeId:\"hLT9PBfj3\",scopeId:\"XJHRLYlyn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fs0saneKW:{pcRMA90KH:resolvedLinks3[1]},nkeM6Xk5d:{pcRMA90KH:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(InfoTile,{bHy3YUi1m:\"Where to eat in the village and on the mountain\",EJQgQJfle:addImageAlt({pixelHeight:1600,pixelWidth:1066,src:\"https://framerusercontent.com/images/H61MPP6ouOilV4cKNY2Tr6pq3jk.jpeg\",srcSet:\"https://framerusercontent.com/images/H61MPP6ouOilV4cKNY2Tr6pq3jk.jpeg?scale-down-to=1024 682w,https://framerusercontent.com/images/H61MPP6ouOilV4cKNY2Tr6pq3jk.jpeg 1066w\"},\"\"),height:\"100%\",id:\"hLT9PBfj3\",IovL7w4QY:addImageAlt({pixelHeight:1500,pixelWidth:1e3,src:\"https://framerusercontent.com/images/2nAvHlJ8IJ7jyPRRyqG1ECwrdss.jpeg\",srcSet:\"https://framerusercontent.com/images/2nAvHlJ8IJ7jyPRRyqG1ECwrdss.jpeg?scale-down-to=1024 682w,https://framerusercontent.com/images/2nAvHlJ8IJ7jyPRRyqG1ECwrdss.jpeg 1000w\"},\"\"),layoutId:\"hLT9PBfj3\",pcRMA90KH:resolvedLinks3[0],style:{width:\"100%\"},VuXkLuleL:\"Resturant Guide\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"syLqRlkzB\"},implicitPathVariables:undefined},{href:{webPageId:\"syLqRlkzB\"},implicitPathVariables:undefined},{href:{webPageId:\"syLqRlkzB\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fs0saneKW:{width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1640px), 1px) - 128px) / 5, 1px)`,y:(componentViewport?.y||0)+0+400+0+10794+108+0+0+134+0},nkeM6Xk5d:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1640px), 1px)`,y:(componentViewport?.y||0)+0+500+0+10526+96+0+0+106+0+2176}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:496,width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 128px, 1px), 1640px), 1px) - 128px) / 5, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9jkvmd-container\",nodeId:\"qBMC_DF_W\",scopeId:\"XJHRLYlyn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fs0saneKW:{pcRMA90KH:resolvedLinks4[1]},nkeM6Xk5d:{pcRMA90KH:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(InfoTile,{bHy3YUi1m:\"Incredible mountain refuges that offer a completely different side of alpine life\",EJQgQJfle:addImageAlt({pixelHeight:600,pixelWidth:600,src:\"https://framerusercontent.com/images/H6p5UpZv9rzgkPwEqehYXiCA.jpeg\",srcSet:\"https://framerusercontent.com/images/H6p5UpZv9rzgkPwEqehYXiCA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/H6p5UpZv9rzgkPwEqehYXiCA.jpeg 600w\"},\"\"),height:\"100%\",id:\"qBMC_DF_W\",IovL7w4QY:addImageAlt({pixelHeight:2447,pixelWidth:2559,src:\"https://framerusercontent.com/images/baUDNz7GqtXxStLWaMOaRw1JGo.jpg\",srcSet:\"https://framerusercontent.com/images/baUDNz7GqtXxStLWaMOaRw1JGo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/baUDNz7GqtXxStLWaMOaRw1JGo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/baUDNz7GqtXxStLWaMOaRw1JGo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/baUDNz7GqtXxStLWaMOaRw1JGo.jpg 2559w\"},\"\"),layoutId:\"qBMC_DF_W\",pcRMA90KH:resolvedLinks4[0],style:{width:\"100%\"},VuXkLuleL:\"Mountain Refuges\",width:\"100%\"})})})})})})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fs0saneKW:{y:(componentViewport?.y||0)+0+400+0+11640},nkeM6Xk5d:{y:(componentViewport?.y||0)+0+500+0+13496}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:429,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-29ux44-container\",nodeId:\"MVKE_vEnB\",scopeId:\"XJHRLYlyn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fs0saneKW:{variant:\"zfueE83LY\"},nkeM6Xk5d:{variant:\"JKVy9K2KU\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"MVKE_vEnB\",layoutId:\"MVKE_vEnB\",style:{width:\"100%\"},variant:\"EpCoSdzlP\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-N9Rvs.framer-rfb455, .framer-N9Rvs .framer-rfb455 { display: block; }\",\".framer-N9Rvs.framer-npz2ul { align-content: center; align-items: center; background-color: var(--token-3399e391-f9d3-4781-bcc9-e38e7cf0c7f5, #f9fdfe); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1560px; }\",\".framer-N9Rvs .framer-vqzbvd-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 1; }\",\".framer-N9Rvs.framer-25jotp { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 9; }\",\".framer-N9Rvs.framer-ogj9hx-container { flex: none; height: 100vh; position: fixed; right: 0px; top: 0px; width: 70%; z-index: 9; }\",\".framer-N9Rvs .framer-1dxof59 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 80vh; justify-content: flex-end; overflow: hidden; padding: 64px; position: sticky; top: 0px; width: 100%; }\",\".framer-N9Rvs .framer-j6n843 { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-N9Rvs .framer-13ezall { background-color: var(--token-fa13b2c8-a58f-413a-8b92-4cf300d9d4f5, #141414); bottom: 0px; flex: none; left: 0px; opacity: 0.17; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-N9Rvs .framer-mzcovt { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 82px; position: absolute; top: 49%; transform: translateY(-50%); white-space: pre-wrap; width: 1164px; word-break: break-word; word-wrap: break-word; }\",\".framer-N9Rvs .framer-t0nshb { align-content: center; align-items: center; background-color: var(--token-2fa9522a-55e3-4190-83f9-a75668e8e966, #faf2e6); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-N9Rvs .framer-3bqgfm { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 87px 64px 87px 64px; position: relative; width: 100%; }\",\".framer-N9Rvs .framer-1grftn5 { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-N9Rvs .framer-18x3304 { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-N9Rvs .framer-nm0v7v-container { flex: none; height: 713px; position: relative; width: 100%; }\",\".framer-N9Rvs .framer-1kzhdyk { align-content: flex-start; align-items: flex-start; background-color: var(--token-0ef5f4c9-6e40-403c-b675-fde7ce75eb76, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 160px 64px 160px 64px; position: relative; width: 100%; }\",\".framer-N9Rvs .framer-1c849hq, .framer-N9Rvs .framer-19xfhqj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-N9Rvs .framer-equoqo, .framer-N9Rvs .framer-1g5tj93 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-N9Rvs .framer-n3kgqb { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 627px; word-break: break-word; word-wrap: break-word; }\",\".framer-N9Rvs .framer-exddpa, .framer-N9Rvs .framer-1csv2o9, .framer-N9Rvs .framer-olw2jb, .framer-N9Rvs .framer-86l6b5, .framer-N9Rvs .framer-k3q612, .framer-N9Rvs .framer-glqydj, .framer-N9Rvs .framer-sysi6q { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-N9Rvs .framer-b045qm, .framer-N9Rvs .framer-14s46fv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 950px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-N9Rvs .framer-1ollu5o, .framer-N9Rvs .framer-21hezq { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: 1 0 0px; height: 1px; max-width: 700px; position: relative; width: 100%; }\",\".framer-N9Rvs .framer-138sf0z { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 1704px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-N9Rvs .framer-513wak, .framer-N9Rvs .framer-1y6ifum { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-N9Rvs .framer-rxesnp, .framer-N9Rvs .framer-1dzwrrp { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-N9Rvs .framer-ryyqg9, .framer-N9Rvs .framer-142j08v { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-N9Rvs .framer-zog1hg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: center; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-N9Rvs .framer-pv1dxu { align-content: flex-start; align-items: flex-start; background-color: var(--token-85adf929-4766-4c94-af6a-6d62272d06bf, rgba(153, 145, 141, 0.71)); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 160px 64px 160px 64px; position: relative; width: 100%; }\",\".framer-N9Rvs .framer-1pu5d6a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-N9Rvs .framer-pn1pqj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 2018px; padding: 0px; position: relative; width: 1px; }\",\".framer-N9Rvs .framer-14d2h0c { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 700px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-N9Rvs .framer-1yoywia { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 600px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-N9Rvs .framer-tjpetd { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: 1 0 0px; height: 500px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-N9Rvs .framer-170mpyk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-N9Rvs .framer-lcqns6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 351px; }\",\".framer-N9Rvs .framer-eiqal7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-N9Rvs .framer-bd2nik { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-N9Rvs .framer-crcryo, .framer-N9Rvs .framer-6t0nxg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-N9Rvs .framer-nbvzom, .framer-N9Rvs .framer-6hc96q { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 500px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-N9Rvs .framer-1tt9f0e, .framer-N9Rvs .framer-1tk4wqg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-N9Rvs .framer-7anlih, .framer-N9Rvs .framer-1xvgrbe { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-N9Rvs .framer-i3kd46-container, .framer-N9Rvs .framer-1044nto-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-N9Rvs .framer-1iiikkp { align-content: flex-start; align-items: flex-start; background-color: var(--token-0ef5f4c9-6e40-403c-b675-fde7ce75eb76, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 140px 64px 140px 64px; position: relative; width: 100%; }\",\".framer-N9Rvs .framer-twn4e1 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-N9Rvs .framer-qspi9s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-N9Rvs .framer-sj4qcj { align-content: flex-start; align-items: flex-start; background-color: var(--token-3399e391-f9d3-4781-bcc9-e38e7cf0c7f5, #f9fdfe); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 108px 64px 108px 64px; position: relative; width: 100%; }\",\".framer-N9Rvs .framer-1gm8fnl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1640px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-N9Rvs .framer-1otlsd4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-N9Rvs .framer-1n8zlpc { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-N9Rvs .framer-1inivcz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-N9Rvs .framer-aatixl-container, .framer-N9Rvs .framer-1hdbl8s-container, .framer-N9Rvs .framer-1e9b65-container, .framer-N9Rvs .framer-2e30ec-container, .framer-N9Rvs .framer-9jkvmd-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-N9Rvs .framer-29ux44-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-N9Rvs.framer-npz2ul, .framer-N9Rvs .framer-1dxof59, .framer-N9Rvs .framer-t0nshb, .framer-N9Rvs .framer-3bqgfm, .framer-N9Rvs .framer-18x3304, .framer-N9Rvs .framer-1kzhdyk, .framer-N9Rvs .framer-1c849hq, .framer-N9Rvs .framer-equoqo, .framer-N9Rvs .framer-b045qm, .framer-N9Rvs .framer-138sf0z, .framer-N9Rvs .framer-513wak, .framer-N9Rvs .framer-zog1hg, .framer-N9Rvs .framer-pv1dxu, .framer-N9Rvs .framer-1pu5d6a, .framer-N9Rvs .framer-pn1pqj, .framer-N9Rvs .framer-170mpyk, .framer-N9Rvs .framer-lcqns6, .framer-N9Rvs .framer-bd2nik, .framer-N9Rvs .framer-crcryo, .framer-N9Rvs .framer-6t0nxg, .framer-N9Rvs .framer-1iiikkp, .framer-N9Rvs .framer-19xfhqj, .framer-N9Rvs .framer-1g5tj93, .framer-N9Rvs .framer-14s46fv, .framer-N9Rvs .framer-twn4e1, .framer-N9Rvs .framer-1y6ifum, .framer-N9Rvs .framer-qspi9s, .framer-N9Rvs .framer-sj4qcj, .framer-N9Rvs .framer-1gm8fnl, .framer-N9Rvs .framer-1otlsd4, .framer-N9Rvs .framer-1inivcz { gap: 0px; } .framer-N9Rvs.framer-npz2ul > *, .framer-N9Rvs .framer-t0nshb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-N9Rvs.framer-npz2ul > :first-child, .framer-N9Rvs .framer-1dxof59 > :first-child, .framer-N9Rvs .framer-t0nshb > :first-child, .framer-N9Rvs .framer-3bqgfm > :first-child, .framer-N9Rvs .framer-1c849hq > :first-child, .framer-N9Rvs .framer-equoqo > :first-child, .framer-N9Rvs .framer-b045qm > :first-child, .framer-N9Rvs .framer-138sf0z > :first-child, .framer-N9Rvs .framer-513wak > :first-child, .framer-N9Rvs .framer-zog1hg > :first-child, .framer-N9Rvs .framer-pv1dxu > :first-child, .framer-N9Rvs .framer-pn1pqj > :first-child, .framer-N9Rvs .framer-170mpyk > :first-child, .framer-N9Rvs .framer-lcqns6 > :first-child, .framer-N9Rvs .framer-crcryo > :first-child, .framer-N9Rvs .framer-6t0nxg > :first-child, .framer-N9Rvs .framer-19xfhqj > :first-child, .framer-N9Rvs .framer-1g5tj93 > :first-child, .framer-N9Rvs .framer-14s46fv > :first-child, .framer-N9Rvs .framer-twn4e1 > :first-child, .framer-N9Rvs .framer-1y6ifum > :first-child, .framer-N9Rvs .framer-qspi9s > :first-child, .framer-N9Rvs .framer-1otlsd4 > :first-child { margin-top: 0px; } .framer-N9Rvs.framer-npz2ul > :last-child, .framer-N9Rvs .framer-1dxof59 > :last-child, .framer-N9Rvs .framer-t0nshb > :last-child, .framer-N9Rvs .framer-3bqgfm > :last-child, .framer-N9Rvs .framer-1c849hq > :last-child, .framer-N9Rvs .framer-equoqo > :last-child, .framer-N9Rvs .framer-b045qm > :last-child, .framer-N9Rvs .framer-138sf0z > :last-child, .framer-N9Rvs .framer-513wak > :last-child, .framer-N9Rvs .framer-zog1hg > :last-child, .framer-N9Rvs .framer-pv1dxu > :last-child, .framer-N9Rvs .framer-pn1pqj > :last-child, .framer-N9Rvs .framer-170mpyk > :last-child, .framer-N9Rvs .framer-lcqns6 > :last-child, .framer-N9Rvs .framer-crcryo > :last-child, .framer-N9Rvs .framer-6t0nxg > :last-child, .framer-N9Rvs .framer-19xfhqj > :last-child, .framer-N9Rvs .framer-1g5tj93 > :last-child, .framer-N9Rvs .framer-14s46fv > :last-child, .framer-N9Rvs .framer-twn4e1 > :last-child, .framer-N9Rvs .framer-1y6ifum > :last-child, .framer-N9Rvs .framer-qspi9s > :last-child, .framer-N9Rvs .framer-1otlsd4 > :last-child { margin-bottom: 0px; } .framer-N9Rvs .framer-1dxof59 > *, .framer-N9Rvs .framer-b045qm > *, .framer-N9Rvs .framer-lcqns6 > *, .framer-N9Rvs .framer-crcryo > *, .framer-N9Rvs .framer-6t0nxg > *, .framer-N9Rvs .framer-14s46fv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-N9Rvs .framer-3bqgfm > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-N9Rvs .framer-18x3304 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-N9Rvs .framer-18x3304 > :first-child, .framer-N9Rvs .framer-1kzhdyk > :first-child, .framer-N9Rvs .framer-1pu5d6a > :first-child, .framer-N9Rvs .framer-bd2nik > :first-child, .framer-N9Rvs .framer-1iiikkp > :first-child, .framer-N9Rvs .framer-sj4qcj > :first-child, .framer-N9Rvs .framer-1gm8fnl > :first-child, .framer-N9Rvs .framer-1inivcz > :first-child { margin-left: 0px; } .framer-N9Rvs .framer-18x3304 > :last-child, .framer-N9Rvs .framer-1kzhdyk > :last-child, .framer-N9Rvs .framer-1pu5d6a > :last-child, .framer-N9Rvs .framer-bd2nik > :last-child, .framer-N9Rvs .framer-1iiikkp > :last-child, .framer-N9Rvs .framer-sj4qcj > :last-child, .framer-N9Rvs .framer-1gm8fnl > :last-child, .framer-N9Rvs .framer-1inivcz > :last-child { margin-right: 0px; } .framer-N9Rvs .framer-1kzhdyk > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-N9Rvs .framer-1c849hq > *, .framer-N9Rvs .framer-138sf0z > *, .framer-N9Rvs .framer-19xfhqj > *, .framer-N9Rvs .framer-twn4e1 > *, .framer-N9Rvs .framer-1otlsd4 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-N9Rvs .framer-equoqo > *, .framer-N9Rvs .framer-pv1dxu > *, .framer-N9Rvs .framer-170mpyk > *, .framer-N9Rvs .framer-1g5tj93 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-N9Rvs .framer-513wak > *, .framer-N9Rvs .framer-1y6ifum > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-N9Rvs .framer-zog1hg > *, .framer-N9Rvs .framer-qspi9s > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-N9Rvs .framer-1pu5d6a > *, .framer-N9Rvs .framer-bd2nik > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-N9Rvs .framer-pn1pqj > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-N9Rvs .framer-1iiikkp > *, .framer-N9Rvs .framer-sj4qcj > *, .framer-N9Rvs .framer-1gm8fnl > *, .framer-N9Rvs .framer-1inivcz > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 810px) and (max-width: 1559px) { .framer-N9Rvs.framer-npz2ul { width: 810px; } .framer-N9Rvs .framer-1dxof59 { height: 40vh; padding: 50px; } .framer-N9Rvs .framer-3bqgfm { gap: 64px; padding: 96px 50px 96px 50px; } .framer-N9Rvs .framer-nm0v7v-container { height: 400px; } .framer-N9Rvs .framer-1kzhdyk, .framer-N9Rvs .framer-1iiikkp { flex-direction: column; gap: 64px; padding: 96px 50px 96px 50px; } .framer-N9Rvs .framer-1c849hq, .framer-N9Rvs .framer-19xfhqj { flex: none; gap: 40px; width: 100%; } .framer-N9Rvs .framer-b045qm, .framer-N9Rvs .framer-14s46fv { height: min-content; } .framer-N9Rvs .framer-1ollu5o, .framer-N9Rvs .framer-21hezq { flex: none; height: 600px; } .framer-N9Rvs .framer-138sf0z { flex: none; gap: 40px; height: min-content; width: 100%; } .framer-N9Rvs .framer-513wak, .framer-N9Rvs .framer-1y6ifum { flex: none; height: min-content; order: 1; } .framer-N9Rvs .framer-rxesnp, .framer-N9Rvs .framer-ryyqg9, .framer-N9Rvs .framer-1dzwrrp, .framer-N9Rvs .framer-142j08v { flex: none; height: 400px; max-height: 400px; } .framer-N9Rvs .framer-zog1hg, .framer-N9Rvs .framer-qspi9s { gap: 40px; order: 0; } .framer-N9Rvs .framer-pv1dxu { gap: 56px; padding: 96px 50px 96px 50px; } .framer-N9Rvs .framer-1pu5d6a { flex-direction: column; } .framer-N9Rvs .framer-pn1pqj, .framer-N9Rvs .framer-tjpetd { flex: none; width: 100%; } .framer-N9Rvs .framer-170mpyk { gap: 20px; } .framer-N9Rvs .framer-nbvzom, .framer-N9Rvs .framer-6hc96q { height: 350px; } .framer-N9Rvs .framer-twn4e1 { align-self: unset; flex: none; gap: 40px; height: min-content; width: 100%; } .framer-N9Rvs .framer-sj4qcj { padding: 108px 50px 108px 50px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-N9Rvs .framer-3bqgfm, .framer-N9Rvs .framer-1kzhdyk, .framer-N9Rvs .framer-1c849hq, .framer-N9Rvs .framer-138sf0z, .framer-N9Rvs .framer-zog1hg, .framer-N9Rvs .framer-pv1dxu, .framer-N9Rvs .framer-1pu5d6a, .framer-N9Rvs .framer-170mpyk, .framer-N9Rvs .framer-1iiikkp, .framer-N9Rvs .framer-19xfhqj, .framer-N9Rvs .framer-twn4e1, .framer-N9Rvs .framer-qspi9s { gap: 0px; } .framer-N9Rvs .framer-3bqgfm > *, .framer-N9Rvs .framer-1kzhdyk > *, .framer-N9Rvs .framer-1iiikkp > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-N9Rvs .framer-3bqgfm > :first-child, .framer-N9Rvs .framer-1kzhdyk > :first-child, .framer-N9Rvs .framer-1c849hq > :first-child, .framer-N9Rvs .framer-138sf0z > :first-child, .framer-N9Rvs .framer-zog1hg > :first-child, .framer-N9Rvs .framer-pv1dxu > :first-child, .framer-N9Rvs .framer-1pu5d6a > :first-child, .framer-N9Rvs .framer-170mpyk > :first-child, .framer-N9Rvs .framer-1iiikkp > :first-child, .framer-N9Rvs .framer-19xfhqj > :first-child, .framer-N9Rvs .framer-twn4e1 > :first-child, .framer-N9Rvs .framer-qspi9s > :first-child { margin-top: 0px; } .framer-N9Rvs .framer-3bqgfm > :last-child, .framer-N9Rvs .framer-1kzhdyk > :last-child, .framer-N9Rvs .framer-1c849hq > :last-child, .framer-N9Rvs .framer-138sf0z > :last-child, .framer-N9Rvs .framer-zog1hg > :last-child, .framer-N9Rvs .framer-pv1dxu > :last-child, .framer-N9Rvs .framer-1pu5d6a > :last-child, .framer-N9Rvs .framer-170mpyk > :last-child, .framer-N9Rvs .framer-1iiikkp > :last-child, .framer-N9Rvs .framer-19xfhqj > :last-child, .framer-N9Rvs .framer-twn4e1 > :last-child, .framer-N9Rvs .framer-qspi9s > :last-child { margin-bottom: 0px; } .framer-N9Rvs .framer-1c849hq > *, .framer-N9Rvs .framer-138sf0z > *, .framer-N9Rvs .framer-zog1hg > *, .framer-N9Rvs .framer-19xfhqj > *, .framer-N9Rvs .framer-twn4e1 > *, .framer-N9Rvs .framer-qspi9s > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-N9Rvs .framer-pv1dxu > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-N9Rvs .framer-1pu5d6a > *, .framer-N9Rvs .framer-170mpyk > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}\",\"@media (max-width: 809px) { .framer-N9Rvs.framer-npz2ul { width: 390px; } .framer-N9Rvs .framer-1dxof59 { height: 50vh; padding: 24px 20px 40px 20px; } .framer-N9Rvs .framer-mzcovt { left: 48%; top: 50%; transform: translate(-50%, -50%); width: 67%; } .framer-N9Rvs .framer-3bqgfm { gap: 60px; padding: 96px 20px 96px 20px; } .framer-N9Rvs .framer-18x3304 { height: 200px; } .framer-N9Rvs .framer-nm0v7v-container { height: 100%; } .framer-N9Rvs .framer-1kzhdyk, .framer-N9Rvs .framer-1iiikkp { flex-direction: column; gap: 64px; padding: 96px 20px 96px 20px; } .framer-N9Rvs .framer-1c849hq, .framer-N9Rvs .framer-19xfhqj { flex: none; gap: 40px; width: 100%; } .framer-N9Rvs .framer-b045qm, .framer-N9Rvs .framer-14s46fv { height: min-content; } .framer-N9Rvs .framer-1ollu5o, .framer-N9Rvs .framer-21hezq { flex: none; height: 400px; } .framer-N9Rvs .framer-138sf0z { flex: none; gap: 40px; height: min-content; width: 100%; } .framer-N9Rvs .framer-513wak, .framer-N9Rvs .framer-1y6ifum { flex: none; height: min-content; order: 1; } .framer-N9Rvs .framer-rxesnp, .framer-N9Rvs .framer-ryyqg9, .framer-N9Rvs .framer-1dzwrrp, .framer-N9Rvs .framer-142j08v { flex: none; height: 280px; } .framer-N9Rvs .framer-zog1hg, .framer-N9Rvs .framer-qspi9s { gap: 40px; order: 0; } .framer-N9Rvs .framer-pv1dxu { gap: 80px; padding: 96px 20px 96px 20px; } .framer-N9Rvs .framer-1pu5d6a { flex-direction: column; gap: 32px; justify-content: center; order: 0; } .framer-N9Rvs .framer-pn1pqj { flex: none; gap: 64px; order: 0; width: 100%; } .framer-N9Rvs .framer-14d2h0c { order: 0; } .framer-N9Rvs .framer-1yoywia { order: 1; } .framer-N9Rvs .framer-tjpetd { flex: none; order: 1; width: 100%; } .framer-N9Rvs .framer-170mpyk { gap: 64px; order: 1; } .framer-N9Rvs .framer-bd2nik { flex-direction: column; gap: 32px; } .framer-N9Rvs .framer-crcryo, .framer-N9Rvs .framer-6t0nxg, .framer-N9Rvs .framer-aatixl-container, .framer-N9Rvs .framer-1hdbl8s-container, .framer-N9Rvs .framer-1e9b65-container, .framer-N9Rvs .framer-2e30ec-container, .framer-N9Rvs .framer-9jkvmd-container { flex: none; width: 100%; } .framer-N9Rvs .framer-nbvzom, .framer-N9Rvs .framer-6hc96q { height: 400px; } .framer-N9Rvs .framer-twn4e1 { align-self: unset; flex: none; gap: 40px; height: min-content; width: 100%; } .framer-N9Rvs .framer-sj4qcj { padding: 96px 20px 96px 20px; } .framer-N9Rvs .framer-1otlsd4 { gap: 64px; } .framer-N9Rvs .framer-1inivcz { flex-direction: column; gap: 48px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-N9Rvs .framer-3bqgfm, .framer-N9Rvs .framer-1kzhdyk, .framer-N9Rvs .framer-1c849hq, .framer-N9Rvs .framer-138sf0z, .framer-N9Rvs .framer-zog1hg, .framer-N9Rvs .framer-pv1dxu, .framer-N9Rvs .framer-1pu5d6a, .framer-N9Rvs .framer-pn1pqj, .framer-N9Rvs .framer-170mpyk, .framer-N9Rvs .framer-bd2nik, .framer-N9Rvs .framer-1iiikkp, .framer-N9Rvs .framer-19xfhqj, .framer-N9Rvs .framer-twn4e1, .framer-N9Rvs .framer-qspi9s, .framer-N9Rvs .framer-1otlsd4, .framer-N9Rvs .framer-1inivcz { gap: 0px; } .framer-N9Rvs .framer-3bqgfm > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-N9Rvs .framer-3bqgfm > :first-child, .framer-N9Rvs .framer-1kzhdyk > :first-child, .framer-N9Rvs .framer-1c849hq > :first-child, .framer-N9Rvs .framer-138sf0z > :first-child, .framer-N9Rvs .framer-zog1hg > :first-child, .framer-N9Rvs .framer-pv1dxu > :first-child, .framer-N9Rvs .framer-1pu5d6a > :first-child, .framer-N9Rvs .framer-pn1pqj > :first-child, .framer-N9Rvs .framer-170mpyk > :first-child, .framer-N9Rvs .framer-bd2nik > :first-child, .framer-N9Rvs .framer-1iiikkp > :first-child, .framer-N9Rvs .framer-19xfhqj > :first-child, .framer-N9Rvs .framer-twn4e1 > :first-child, .framer-N9Rvs .framer-qspi9s > :first-child, .framer-N9Rvs .framer-1otlsd4 > :first-child, .framer-N9Rvs .framer-1inivcz > :first-child { margin-top: 0px; } .framer-N9Rvs .framer-3bqgfm > :last-child, .framer-N9Rvs .framer-1kzhdyk > :last-child, .framer-N9Rvs .framer-1c849hq > :last-child, .framer-N9Rvs .framer-138sf0z > :last-child, .framer-N9Rvs .framer-zog1hg > :last-child, .framer-N9Rvs .framer-pv1dxu > :last-child, .framer-N9Rvs .framer-1pu5d6a > :last-child, .framer-N9Rvs .framer-pn1pqj > :last-child, .framer-N9Rvs .framer-170mpyk > :last-child, .framer-N9Rvs .framer-bd2nik > :last-child, .framer-N9Rvs .framer-1iiikkp > :last-child, .framer-N9Rvs .framer-19xfhqj > :last-child, .framer-N9Rvs .framer-twn4e1 > :last-child, .framer-N9Rvs .framer-qspi9s > :last-child, .framer-N9Rvs .framer-1otlsd4 > :last-child, .framer-N9Rvs .framer-1inivcz > :last-child { margin-bottom: 0px; } .framer-N9Rvs .framer-1kzhdyk > *, .framer-N9Rvs .framer-pn1pqj > *, .framer-N9Rvs .framer-170mpyk > *, .framer-N9Rvs .framer-1iiikkp > *, .framer-N9Rvs .framer-1otlsd4 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-N9Rvs .framer-1c849hq > *, .framer-N9Rvs .framer-138sf0z > *, .framer-N9Rvs .framer-zog1hg > *, .framer-N9Rvs .framer-19xfhqj > *, .framer-N9Rvs .framer-twn4e1 > *, .framer-N9Rvs .framer-qspi9s > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-N9Rvs .framer-pv1dxu > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-N9Rvs .framer-1pu5d6a > *, .framer-N9Rvs .framer-bd2nik > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-N9Rvs .framer-1inivcz > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8414\n * @framerIntrinsicWidth 1560\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Fs0saneKW\":{\"layout\":[\"fixed\",\"auto\"]},\"nkeM6Xk5d\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"z0J33lWgn\":{\"pattern\":\":z0J33lWgn\",\"name\":\"body\"},\"Gcfi9aP7Y\":{\"pattern\":\":Gcfi9aP7Y\",\"name\":\"main-content\"},\"ueTZm7IAn\":{\"pattern\":\":ueTZm7IAn\",\"name\":\"main-content\"}}\n * @framerResponsiveScreen\n */const FramerXJHRLYlyn=withCSS(Component,css,\"framer-N9Rvs\");export default FramerXJHRLYlyn;FramerXJHRLYlyn.displayName=\"Page\";FramerXJHRLYlyn.defaultProps={height:8414,width:1560};addFonts(FramerXJHRLYlyn,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Glacial Indifference Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/60Aw8wjQGpXV3Hqwiwt6wLaQQU.woff2\"},{family:\"Electrolux Sans SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/T7eeErNsk6xHpjQLpm2lxMngXkg.woff2\"}]},...NavigationFonts,...MenuFonts,...EmbedFonts,...PDFViewerFonts,...InfoTileFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXJHRLYlyn\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Fs0saneKW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nkeM6Xk5d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"z0J33lWgn\\\":{\\\"pattern\\\":\\\":z0J33lWgn\\\",\\\"name\\\":\\\"body\\\"},\\\"Gcfi9aP7Y\\\":{\\\"pattern\\\":\\\":Gcfi9aP7Y\\\",\\\"name\\\":\\\"main-content\\\"},\\\"ueTZm7IAn\\\":{\\\"pattern\\\":\\\":ueTZm7IAn\\\",\\\"name\\\":\\\"main-content\\\"}}\",\"framerIntrinsicHeight\":\"8414\",\"framerIntrinsicWidth\":\"1560\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["fe", "Pdfviewer", "props", "_buttonStyles_border", "_buttonStyles_border1", "_buttonStyles_border2", "_buttonStyles_border3", "_buttonStyles_border4", "_buttonStyles_border5", "_buttonStyles_pdfIcon", "_buttonStyles_pdfIcon1", "_buttonStyles_pdfIcon2", "fileChoose", "file", "fileURL", "pageNumber", "scale", "buttonText", "buttonStyles", "modalStyles", "customFileName", "modalOpen", "setModalOpen", "ye", "canvasRef", "pe", "loadingScreen", "setLoadingScreen", "totalPages", "setTotalPages", "pageRendering", "setPageRendering", "pageNumPending", "setpageNumPending", "pageNum", "setpageNum", "pageScale", "setPageScale", "downloadURL", "setdownloadURL", "selectedFile", "renderPage", "pdf", "canvas", "context", "page", "viewport", "renderContext", "downloadData", "_window", "_pdf__transport__networkStream_source", "_pdf__transport__networkStream", "_pdf__transport", "data", "blobUrl", "window", "pdfFileName", "Ne", "download", "e", "url", "a", "onPrevPage", "onNextPage", "pdfZoomIn", "pdfZoomOut", "ue", "body", "loadingTask", "Le", "error", "close", "open", "u", "l", "motion", "p", "AnimatePresence", "addPropertyControls", "ControlType", "NavigationFonts", "getFonts", "zJ3F2MORX_default", "NavigationWithVariantAppearEffect", "withVariantAppearEffect", "MenuFonts", "rzCKlDgXL_default", "ContainerWithFX", "withFX", "Container", "EmbedFonts", "Embed", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "ImageWithFX", "Image2", "PDFViewerFonts", "Pdfviewer", "InfoTileFonts", "hG21QGAgi_default", "MotionDivWithFX", "FooterFonts", "i0f9bZau6_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transformTemplate1", "_", "t", "transformTemplate2", "transition2", "animation2", "animation3", "animation4", "animation5", "animation6", "animation7", "animation8", "animation9", "addImageAlt", "image", "alt", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "uG59W276F3bnx0g", "overlay", "loadMore", "args", "OxwZZe58i1wnntms", "scopingClassNames", "cx", "ref1", "isDisplayed", "elementId", "useRouteElementId", "elementId1", "ref2", "elementId2", "ref3", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "l", "ComponentViewportProvider", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "getLoadingLazyAtYPosition", "RichText2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "css", "FramerXJHRLYlyn", "withCSS", "XJHRLYlyn_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
