{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framer.com/m/phosphor-icons/House.js@0.0.57", "ssg:https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js", "ssg:https://framerusercontent.com/modules/iGiavZDI3e3NAhpASUrR/EZQZvewQPs247wX5lBBG/Oy5ZDWQil.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "let Component;\nlet IconInner;\nvar Icon = (React) => {\n  if (!Component) {\n    Component = /* @__PURE__ */ new Map([\n      [\n        \"bold\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M222.14,105.85l-80-80a20,20,0,0,0-28.28,0l-80,80A19.86,19.86,0,0,0,28,120v96a12,12,0,0,0,12,12h64a12,12,0,0,0,12-12V164h24v52a12,12,0,0,0,12,12h64a12,12,0,0,0,12-12V120A19.86,19.86,0,0,0,222.14,105.85ZM204,204H164V152a12,12,0,0,0-12-12H104a12,12,0,0,0-12,12v52H52V121.65l76-76,76,76Z\" }))\n      ],\n      [\n        \"duotone\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\n          \"path\",\n          {\n            d: \"M216,120v96H152V152H104v64H40V120a8,8,0,0,1,2.34-5.66l80-80a8,8,0,0,1,11.32,0l80,80A8,8,0,0,1,216,120Z\",\n            opacity: \"0.2\"\n          }\n        ), /* @__PURE__ */ React.createElement(\"path\", { d: \"M219.31,108.68l-80-80a16,16,0,0,0-22.62,0l-80,80A15.87,15.87,0,0,0,32,120v96a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V160h32v56a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V120A15.87,15.87,0,0,0,219.31,108.68ZM208,208H160V152a8,8,0,0,0-8-8H104a8,8,0,0,0-8,8v56H48V120l80-80,80,80Z\" }))\n      ],\n      [\n        \"fill\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M224,120v96a8,8,0,0,1-8,8H160a8,8,0,0,1-8-8V164a4,4,0,0,0-4-4H108a4,4,0,0,0-4,4v52a8,8,0,0,1-8,8H40a8,8,0,0,1-8-8V120a16,16,0,0,1,4.69-11.31l80-80a16,16,0,0,1,22.62,0l80,80A16,16,0,0,1,224,120Z\" }))\n      ],\n      [\n        \"light\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M217.9,110.1l-80-80a14,14,0,0,0-19.8,0l-80,80A13.92,13.92,0,0,0,34,120v96a6,6,0,0,0,6,6h64a6,6,0,0,0,6-6V158h36v58a6,6,0,0,0,6,6h64a6,6,0,0,0,6-6V120A13.92,13.92,0,0,0,217.9,110.1ZM210,210H158V152a6,6,0,0,0-6-6H104a6,6,0,0,0-6,6v58H46V120a2,2,0,0,1,.58-1.42l80-80a2,2,0,0,1,2.84,0l80,80A2,2,0,0,1,210,120Z\" }))\n      ],\n      [\n        \"regular\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M219.31,108.68l-80-80a16,16,0,0,0-22.62,0l-80,80A15.87,15.87,0,0,0,32,120v96a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V160h32v56a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V120A15.87,15.87,0,0,0,219.31,108.68ZM208,208H160V152a8,8,0,0,0-8-8H104a8,8,0,0,0-8,8v56H48V120l80-80,80,80Z\" }))\n      ],\n      [\n        \"thin\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M216.49,111.51l-80-80a12,12,0,0,0-17,0l-80,80A12,12,0,0,0,36,120v96a4,4,0,0,0,4,4h64a4,4,0,0,0,4-4V156h40v60a4,4,0,0,0,4,4h64a4,4,0,0,0,4-4V120A12,12,0,0,0,216.49,111.51ZM212,212H156V152a4,4,0,0,0-4-4H104a4,4,0,0,0-4,4v60H44V120a4,4,0,0,1,1.17-2.83l80-80a4,4,0,0,1,5.66,0l80,80A4,4,0,0,1,212,120Z\" }))\n      ]\n    ]);\n    IconInner = React.forwardRef((props, ref) => /* @__PURE__ */ React.createElement(\"g\", { ref, ...props }, Component.get(props.weight)));\n  }\n  return IconInner;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nvar House_default = Icon;\nexport {\n  __FramerMetadata__,\n  House_default as default\n};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HouseFactory from\"https://framer.com/m/phosphor-icons/House.js@0.0.57\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"Acorn\",\"AddressBook\",\"AddressBookTabs\",\"AirTrafficControl\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTaxiing\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"AmazonLogo\",\"Ambulance\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"Angle\",\"AngularLogo\",\"Aperture\",\"AppStoreLogo\",\"AppWindow\",\"AppleLogo\",\"ApplePodcastsLogo\",\"ApproximateEquals\",\"Archive\",\"ArchiveBox\",\"ArchiveTray\",\"Armchair\",\"ArrowArcLeft\",\"ArrowArcRight\",\"ArrowBendDownLeft\",\"ArrowBendDownRight\",\"ArrowBendLeftDown\",\"ArrowBendLeftUp\",\"ArrowBendRightDown\",\"ArrowBendRightUp\",\"ArrowBendUpLeft\",\"ArrowBendUpRight\",\"ArrowCircleDown\",\"ArrowCircleDownLeft\",\"ArrowCircleDownRight\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpLeft\",\"ArrowCircleUpRight\",\"ArrowClockwise\",\"ArrowDown\",\"ArrowDownLeft\",\"ArrowDownRight\",\"ArrowElbowDownLeft\",\"ArrowElbowDownRight\",\"ArrowElbowLeft\",\"ArrowElbowLeftDown\",\"ArrowElbowLeftUp\",\"ArrowElbowRight\",\"ArrowElbowRightDown\",\"ArrowElbowRightUp\",\"ArrowElbowUpLeft\",\"ArrowElbowUpRight\",\"ArrowFatDown\",\"ArrowFatLeft\",\"ArrowFatLineDown\",\"ArrowFatLineLeft\",\"ArrowFatLineRight\",\"ArrowFatLineUp\",\"ArrowFatLinesDown\",\"ArrowFatLinesLeft\",\"ArrowFatLinesRight\",\"ArrowFatLinesUp\",\"ArrowFatRight\",\"ArrowFatUp\",\"ArrowLeft\",\"ArrowLineDown\",\"ArrowLineDownLeft\",\"ArrowLineDownRight\",\"ArrowLineLeft\",\"ArrowLineRight\",\"ArrowLineUp\",\"ArrowLineUpLeft\",\"ArrowLineUpRight\",\"ArrowRight\",\"ArrowSquareDown\",\"ArrowSquareDownLeft\",\"ArrowSquareDownRight\",\"ArrowSquareIn\",\"ArrowSquareLeft\",\"ArrowSquareOut\",\"ArrowSquareRight\",\"ArrowSquareUp\",\"ArrowSquareUpLeft\",\"ArrowSquareUpRight\",\"ArrowUDownLeft\",\"ArrowUDownRight\",\"ArrowULeftDown\",\"ArrowULeftUp\",\"ArrowURightDown\",\"ArrowURightUp\",\"ArrowUUpLeft\",\"ArrowUUpRight\",\"ArrowUp\",\"ArrowUpLeft\",\"ArrowUpRight\",\"ArrowsClockwise\",\"ArrowsDownUp\",\"ArrowsHorizontal\",\"ArrowsIn\",\"ArrowsInCardinal\",\"ArrowsInLineVertical\",\"ArrowsInSimple\",\"ArrowsLeftRight\",\"ArrowsMerge\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"ArrowsSplit\",\"ArrowsVertical\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asclepius\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Avocado\",\"Axe\",\"Baby\",\"BabyCarriage\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barn\",\"Barricade\",\"Baseball\",\"BaseballCap\",\"BaseballHelmet\",\"Basket\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryPlusVertical\",\"BatteryVerticalEmpty\",\"BatteryVerticalFull\",\"BatteryVerticalHigh\",\"BatteryVerticalLow\",\"BatteryWarning\",\"BeachBall\",\"Beanie\",\"Bed\",\"BeerBottle\",\"BeerStein\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"Belt\",\"BezierCurve\",\"Bicycle\",\"Binary\",\"Binoculars\",\"Biohazard\",\"Bird\",\"Blueprint\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Bomb\",\"Bone\",\"Book\",\"BookBookmark\",\"BookOpen\",\"BookOpenText\",\"BookOpenUser\",\"BookUser\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"Boot\",\"Boules\",\"BoundingBox\",\"BowlFood\",\"BowlSteam\",\"BowlingBall\",\"BoxArrowDown\",\"BoxArrowUp\",\"BoxingGlove\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Bread\",\"Bridge\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Broom\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Building\",\"BuildingApartment\",\"BuildingOffice\",\"Buildings\",\"Bulldozer\",\"Bus\",\"Butterfly\",\"CableCar\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarDot\",\"CalendarDots\",\"CalendarHeart\",\"CalendarMinus\",\"CalendarPlus\",\"CalendarSlash\",\"CalendarStar\",\"CalendarX\",\"CallBell\",\"Camera\",\"CameraPlus\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarBattery\",\"CarProfile\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CardsThree\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretCircleUpDown\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretLineDown\",\"CaretLineLeft\",\"CaretLineRight\",\"CaretLineUp\",\"CaretRight\",\"CaretUp\",\"CaretUpDown\",\"Carrot\",\"CashRegister\",\"CassetteTape\",\"CastleTurret\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"CellTower\",\"Certificate\",\"Chair\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"Champagne\",\"ChargingStation\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartDonut\",\"ChartLine\",\"ChartLineDown\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"ChartPolar\",\"ChartScatter\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredSlash\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleSlash\",\"ChatCircleText\",\"ChatDots\",\"ChatSlash\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropSlash\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckFat\",\"CheckSquare\",\"CheckSquareOffset\",\"Checkerboard\",\"Checks\",\"Cheers\",\"Cheese\",\"ChefHat\",\"Cherries\",\"Church\",\"Cigarette\",\"CigaretteSlash\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Circuitry\",\"City\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClockCountdown\",\"ClockUser\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"CloudWarning\",\"CloudX\",\"Clover\",\"Club\",\"CoatHanger\",\"CodaLogo\",\"Code\",\"CodeBlock\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"CoffeeBean\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"ColumnsPlusLeft\",\"ColumnsPlusRight\",\"Command\",\"Compass\",\"CompassRose\",\"CompassTool\",\"ComputerTower\",\"Confetti\",\"ContactlessPayment\",\"Control\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Couch\",\"CourtBasketball\",\"Cow\",\"CowboyHat\",\"Cpu\",\"Crane\",\"CraneTower\",\"CreditCard\",\"Cricket\",\"Crop\",\"Cross\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownCross\",\"CrownSimple\",\"Cube\",\"CubeFocus\",\"CubeTransparent\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorClick\",\"CursorText\",\"Cylinder\",\"Database\",\"Desk\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DevToLogo\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSlash\",\"DeviceMobileSpeaker\",\"DeviceRotate\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Devices\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscoBall\",\"DiscordLogo\",\"Divide\",\"Dna\",\"Dog\",\"Door\",\"DoorOpen\",\"Dot\",\"DotOutline\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"Dress\",\"Dresser\",\"DribbbleLogo\",\"Drone\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"DropSimple\",\"DropSlash\",\"DropboxLogo\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Elevator\",\"Empty\",\"Engine\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"EscalatorDown\",\"EscalatorUp\",\"Exam\",\"ExclamationMark\",\"Exclude\",\"ExcludeSquare\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"Eyes\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"FalloutShelter\",\"Fan\",\"Farm\",\"FastForward\",\"FastForwardCircle\",\"Feather\",\"FediverseLogo\",\"FigmaLogo\",\"File\",\"FileArchive\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileC\",\"FileCloud\",\"FileCode\",\"FileCpp\",\"FileCss\",\"FileCsv\",\"FileDashed\",\"FileDoc\",\"FileHtml\",\"FileImage\",\"FileIni\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMagnifyingGlass\",\"FileMd\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FilePy\",\"FileRs\",\"FileSql\",\"FileSvg\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileTxt\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmReel\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireExtinguisher\",\"FireSimple\",\"FireTruck\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagBannerFold\",\"FlagCheckered\",\"FlagPennant\",\"Flame\",\"Flashlight\",\"Flask\",\"FlipHorizontal\",\"FlipVertical\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"FlowerTulip\",\"FlyingSaucer\",\"Folder\",\"FolderDashed\",\"FolderLock\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleDashed\",\"FolderSimpleLock\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"FolderSimpleStar\",\"FolderSimpleUser\",\"FolderStar\",\"FolderUser\",\"Folders\",\"Football\",\"FootballHelmet\",\"Footprints\",\"ForkKnife\",\"FourK\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"FunnelSimpleX\",\"FunnelX\",\"GameController\",\"Garage\",\"GasCan\",\"GasPump\",\"Gauge\",\"Gavel\",\"Gear\",\"GearFine\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeSimpleX\",\"GlobeStand\",\"GlobeX\",\"Goggles\",\"Golf\",\"GoodreadsLogo\",\"GoogleCardboardLogo\",\"GoogleChromeLogo\",\"GoogleDriveLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gps\",\"GpsFix\",\"GpsSlash\",\"Gradient\",\"GraduationCap\",\"Grains\",\"GrainsSlash\",\"Graph\",\"GraphicsCard\",\"GreaterThan\",\"GreaterThanOrEqual\",\"GridFour\",\"GridNine\",\"Guitar\",\"HairDryer\",\"Hamburger\",\"Hammer\",\"Hand\",\"HandArrowDown\",\"HandArrowUp\",\"HandCoins\",\"HandDeposit\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandHeart\",\"HandPalm\",\"HandPeace\",\"HandPointing\",\"HandSoap\",\"HandSwipeLeft\",\"HandSwipeRight\",\"HandTap\",\"HandWaving\",\"HandWithdraw\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"HandsPraying\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"HardHat\",\"Hash\",\"HashStraight\",\"HeadCircuit\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartHalf\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighDefinition\",\"HighHeel\",\"Highlighter\",\"HighlighterCircle\",\"Hockey\",\"Hoodie\",\"Horse\",\"Hospital\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"Hurricane\",\"IceCream\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageBroken\",\"ImageSquare\",\"Images\",\"ImagesSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"IntersectSquare\",\"IntersectThree\",\"Intersection\",\"Invoice\",\"Island\",\"Jar\",\"JarLabel\",\"Jeep\",\"Joystick\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"LampPendant\",\"Laptop\",\"Lasso\",\"LastfmLogo\",\"Layout\",\"Leaf\",\"Lectern\",\"Lego\",\"LegoSmiley\",\"LessThan\",\"LessThanOrEqual\",\"LetterCircleH\",\"LetterCircleP\",\"LetterCircleV\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lighthouse\",\"Lightning\",\"LightningA\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"LineVertical\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinktreeLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListHeart\",\"ListMagnifyingGlass\",\"ListNumbers\",\"ListPlus\",\"ListStar\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"Lockers\",\"Log\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"Mailbox\",\"MapPin\",\"MapPinArea\",\"MapPinLine\",\"MapPinPlus\",\"MapPinSimple\",\"MapPinSimpleArea\",\"MapPinSimpleLine\",\"MapTrifold\",\"MarkdownLogo\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MastodonLogo\",\"MathOperations\",\"MatrixLogo\",\"Medal\",\"MedalMilitary\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MemberOf\",\"Memory\",\"MessengerLogo\",\"MetaLogo\",\"Meteor\",\"Metronome\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"Microscope\",\"MicrosoftExcelLogo\",\"MicrosoftOutlookLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"MinusSquare\",\"Money\",\"MoneyWavy\",\"Monitor\",\"MonitorArrowUp\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Moped\",\"MopedFront\",\"Mosque\",\"Motorcycle\",\"Mountains\",\"Mouse\",\"MouseLeftClick\",\"MouseMiddleClick\",\"MouseRightClick\",\"MouseScroll\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesMinus\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Network\",\"NetworkSlash\",\"NetworkX\",\"Newspaper\",\"NewspaperClipping\",\"NotEquals\",\"NotMemberOf\",\"NotSubsetOf\",\"NotSupersetOf\",\"Notches\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NotionLogo\",\"NuclearPlant\",\"NumberCircleEight\",\"NumberCircleFive\",\"NumberCircleFour\",\"NumberCircleNine\",\"NumberCircleOne\",\"NumberCircleSeven\",\"NumberCircleSix\",\"NumberCircleThree\",\"NumberCircleTwo\",\"NumberCircleZero\",\"NumberEight\",\"NumberFive\",\"NumberFour\",\"NumberNine\",\"NumberOne\",\"NumberSeven\",\"NumberSix\",\"NumberSquareEight\",\"NumberSquareFive\",\"NumberSquareFour\",\"NumberSquareNine\",\"NumberSquareOne\",\"NumberSquareSeven\",\"NumberSquareSix\",\"NumberSquareThree\",\"NumberSquareTwo\",\"NumberSquareZero\",\"NumberThree\",\"NumberTwo\",\"NumberZero\",\"Numpad\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"OfficeChair\",\"Onigiri\",\"OpenAiLogo\",\"Option\",\"Orange\",\"OrangeSlice\",\"Oven\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"Panorama\",\"Pants\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Paragraph\",\"Parallelogram\",\"Park\",\"Password\",\"Path\",\"PatreonLogo\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"PaypalLogo\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilRuler\",\"PencilSimple\",\"PencilSimpleLine\",\"PencilSimpleSlash\",\"PencilSlash\",\"Pentagon\",\"Pentagram\",\"Pepper\",\"Percent\",\"Person\",\"PersonArmsSpread\",\"PersonSimple\",\"PersonSimpleBike\",\"PersonSimpleCircle\",\"PersonSimpleHike\",\"PersonSimpleRun\",\"PersonSimpleSki\",\"PersonSimpleSwim\",\"PersonSimpleTaiChi\",\"PersonSimpleThrow\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneList\",\"PhoneOutgoing\",\"PhonePause\",\"PhonePlus\",\"PhoneSlash\",\"PhoneTransfer\",\"PhoneX\",\"PhosphorLogo\",\"Pi\",\"PianoKeys\",\"PicnicTable\",\"PictureInPicture\",\"PiggyBank\",\"Pill\",\"PingPong\",\"PintGlass\",\"PinterestLogo\",\"Pinwheel\",\"Pipe\",\"PipeWrench\",\"PixLogo\",\"Pizza\",\"Placeholder\",\"Planet\",\"Plant\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Playlist\",\"Plug\",\"PlugCharging\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PlusSquare\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"Popsicle\",\"PottedPlant\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"Pulse\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"QuestionMark\",\"Queue\",\"Quotes\",\"Rabbit\",\"Racquet\",\"Radical\",\"Radio\",\"RadioButton\",\"Radioactive\",\"Rainbow\",\"RainbowCloud\",\"Ranking\",\"ReadCvLogo\",\"Receipt\",\"ReceiptX\",\"Record\",\"Rectangle\",\"RectangleDashed\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"ReplitLogo\",\"Resize\",\"Rewind\",\"RewindCircle\",\"RoadHorizon\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"RowsPlusBottom\",\"RowsPlusTop\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Sailboat\",\"Scales\",\"Scan\",\"ScanSmiley\",\"Scissors\",\"Scooter\",\"Screencast\",\"Screwdriver\",\"Scribble\",\"ScribbleLoop\",\"Scroll\",\"Seal\",\"SealCheck\",\"SealPercent\",\"SealQuestion\",\"SealWarning\",\"Seat\",\"Seatbelt\",\"SecurityCamera\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Shapes\",\"Share\",\"ShareFat\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShippingContainer\",\"ShirtFolded\",\"ShootingStar\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shovel\",\"Shower\",\"Shrimp\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"Sigma\",\"SignIn\",\"SignOut\",\"Signature\",\"Signpost\",\"SimCard\",\"Siren\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SkypeLogo\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Slideshow\",\"Smiley\",\"SmileyAngry\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyMelting\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Sneaker\",\"SneakerMove\",\"Snowflake\",\"SoccerBall\",\"Sock\",\"SolarPanel\",\"SolarRoof\",\"SortAscending\",\"SortDescending\",\"SoundcloudLogo\",\"Spade\",\"Sparkle\",\"SpeakerHifi\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Speedometer\",\"Sphere\",\"Spinner\",\"SpinnerBall\",\"SpinnerGap\",\"Spiral\",\"SplitHorizontal\",\"SplitVertical\",\"SpotifyLogo\",\"SprayBottle\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquareSplitVertical\",\"SquaresFour\",\"Stack\",\"StackMinus\",\"StackOverflowLogo\",\"StackPlus\",\"StackSimple\",\"Stairs\",\"Stamp\",\"StandardDefinition\",\"Star\",\"StarAndCrescent\",\"StarFour\",\"StarHalf\",\"StarOfDavid\",\"SteamLogo\",\"SteeringWheel\",\"Steps\",\"Stethoscope\",\"Sticker\",\"Stool\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"SubsetOf\",\"SubsetProperOf\",\"Subtitles\",\"SubtitlesSlash\",\"Subtract\",\"SubtractSquare\",\"Subway\",\"Suitcase\",\"SuitcaseRolling\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"SupersetOf\",\"SupersetProperOf\",\"Swap\",\"Swatches\",\"SwimmingPool\",\"Sword\",\"Synagogue\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"TeaBag\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Tent\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAUnderline\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextB\",\"TextColumns\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextIndent\",\"TextItalic\",\"TextOutdent\",\"TextStrikethrough\",\"TextSubscript\",\"TextSuperscript\",\"TextT\",\"TextTSlash\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThreadsLogo\",\"ThreeD\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TidalLogo\",\"TiktokLogo\",\"Tilde\",\"Timer\",\"TipJar\",\"Tipi\",\"Tire\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Toolbox\",\"Tooth\",\"Tornado\",\"Tote\",\"ToteSimple\",\"Towel\",\"Tractor\",\"Trademark\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Tram\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"TrayArrowDown\",\"TrayArrowUp\",\"TreasureChest\",\"Tree\",\"TreeEvergreen\",\"TreePalm\",\"TreeStructure\",\"TreeView\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"TriangleDashed\",\"Trolley\",\"TrolleySuitcase\",\"Trophy\",\"Truck\",\"TruckTrailer\",\"TumblrLogo\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Union\",\"Unite\",\"UniteSquare\",\"Upload\",\"UploadSimple\",\"Usb\",\"User\",\"UserCheck\",\"UserCircle\",\"UserCircleCheck\",\"UserCircleDashed\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSound\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Van\",\"Vault\",\"VectorThree\",\"VectorTwo\",\"Vibrate\",\"Video\",\"VideoCamera\",\"VideoCameraSlash\",\"VideoConference\",\"Vignette\",\"VinylRecord\",\"VirtualReality\",\"Virus\",\"Visor\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warehouse\",\"Warning\",\"WarningCircle\",\"WarningDiamond\",\"WarningOctagon\",\"WashingMachine\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waveform\",\"WaveformSlash\",\"Waves\",\"Webcam\",\"WebcamSlash\",\"WebhooksLogo\",\"WechatLogo\",\"WhatsappLogo\",\"Wheelchair\",\"WheelchairMotion\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"Windmill\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XLogo\",\"XSquare\",\"Yarn\",\"YinYang\",\"YoutubeLogo\"];const moduleBaseUrl=\"https://framer.com/m/phosphor-icons/\";const weightOptions=[\"thin\",\"light\",\"regular\",\"bold\",\"fill\",\"duotone\"];const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * PHOSPHOR\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n */export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,weight,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HouseFactory(React):null);async function importModule(){// Get the selected module\ntry{const version=\"0.0.57\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@${version}`;const module=await import(/* webpackIgnore: true */iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch(err){if(isMounted.current)setSelectedIcon(null);}}useEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/_jsx(NullState,{}):null;return /*#__PURE__*/_jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined},focusable:\"false\",color:color,children:/*#__PURE__*/_jsx(SelectedIcon,{color:color,weight:weight})}):emptyState});}Icon.displayName=\"Phosphor\";Icon.defaultProps={width:24,height:24,iconSelection:\"House\",iconSearch:\"House\",color:\"#66F\",selectByList:true,weight:\"regular\",mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Phosphor site](https://phosphoricons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},weight:{type:ControlType.Enum,title:\"Weight\",optionTitles:weightOptions.map(piece=>piece.charAt(0).toUpperCase()+piece.slice(1)),options:weightOptions,defaultValue:Icon.defaultProps.weight},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map", "// Generated by Framer (fd8545d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import{Icon as Phosphor1}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import metadataProvider from\"#framer/local/webPageMetadata/Oy5ZDWQil/Oy5ZDWQil.js\";const VideoFonts=getFonts(Video);const PhosphorFonts=getFonts(Phosphor);const Phosphor1Fonts=getFonts(Phosphor1);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const breakpoints={oHzwRxhdE:\"(max-width: 1099px)\",TWP_MJhBP:\"(min-width: 1100px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-UTSU4\";const variantClassNames={oHzwRxhdE:\"framer-v-zll6ot\",TWP_MJhBP:\"framer-v-3m73vs\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={delay:5,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value}});};const humanReadableVariantMap={Desktop:\"TWP_MJhBP\",Mobile:\"oHzwRxhdE\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"TWP_MJhBP\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"oHzwRxhdE\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"oHzwRxhdE\")return true;return false;};const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"TWP_MJhBP\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-3m73vs\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l1ao4j\",\"data-framer-name\":\"Content Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x2dajw\",\"data-framer-name\":\"Section - Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2d3y8x\",\"data-framer-name\":\"Nav Bar\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:\"https://www.hodinkee.com\",nodeId:\"SPA9CcoYl\",openInNewTab:false,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-1r7827v hidden-zll6ot framer-cmm9p7\",\"data-framer-name\":\"LINK_Hodinkee\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:24,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+32+10.5),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/ELqVJVhZsyG661NVUiixbhS7I.png\"},className:\"framer-1mssnmw\",\"data-framer-name\":\"ArrowUpRight\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBNZWRpdW0=\",\"--framer-font-family\":'\"Hodinkee Social Medium\", \"Hodinkee Social Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Hodinkee.com\"})}),className:\"framer-54bjff\",fonts:[\"CUSTOM;Hodinkee Social Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:69.5,intrinsicWidth:450,pixelHeight:139,pixelWidth:900,sizes:\"196px\",src:\"https://framerusercontent.com/images/dnpjNbfzszc3IqtLvLK2hfXhMpg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dnpjNbfzszc3IqtLvLK2hfXhMpg.png?scale-down-to=512 512w,https://framerusercontent.com/images/dnpjNbfzszc3IqtLvLK2hfXhMpg.png 900w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:69.5,intrinsicWidth:450,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+32),pixelHeight:139,pixelWidth:900,sizes:\"300px\",src:\"https://framerusercontent.com/images/dnpjNbfzszc3IqtLvLK2hfXhMpg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dnpjNbfzszc3IqtLvLK2hfXhMpg.png?scale-down-to=512 512w,https://framerusercontent.com/images/dnpjNbfzszc3IqtLvLK2hfXhMpg.png 900w\"},className:\"framer-zh1n5r\",\"data-framer-name\":\"Brandwich-Chopard-Horizontal\",transformTemplate:transformTemplate1})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:\"https://www.watchesofswitzerland.com/p/17970916\",nodeId:\"dc1QDx0E7\",openInNewTab:false,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-1hi2ox5 hidden-zll6ot framer-cmm9p7\",\"data-framer-name\":\"LINK_Shop\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBNZWRpdW0=\",\"--framer-font-family\":'\"Hodinkee Social Medium\", \"Hodinkee Social Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Watches of Switzerland\"})}),className:\"framer-1uh32l4\",fonts:[\"CUSTOM;Hodinkee Social Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:24,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+32+10.5),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/ELqVJVhZsyG661NVUiixbhS7I.png\"},className:\"framer-7xw987\",\"data-framer-name\":\"ArrowUpRight\",style:{rotate:180}})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qm84yf\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dmu2fc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvRm8gQ2luZW1hMTkwOSBSZWd1bGFy\",\"--framer-font-family\":'\"CoFo Cinema1909 Regular\", \"CoFo Cinema1909 Regular Placeholder\", sans-serif',\"--framer-font-size\":\"41px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:\"pioneer of excellence in modern watchmaking\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvRm8gQ2luZW1hMTkwOSBSZWd1bGFy\",\"--framer-font-family\":'\"CoFo Cinema1909 Regular\", \"CoFo Cinema1909 Regular Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:\"pioneer of excellence in modern watchmaking\"})}),className:\"framer-1qws2vj\",fonts:[\"CUSTOM;CoFo Cinema1909 Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vly0xv\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:745,intrinsicWidth:630,pixelHeight:1490,pixelWidth:1260,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1600px) - 32px)`,src:\"https://framerusercontent.com/images/FCxYi1Quh9Oh6VhxPu6XhSFztMo.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/FCxYi1Quh9Oh6VhxPu6XhSFztMo.jpg?scale-down-to=1024 865w,https://framerusercontent.com/images/FCxYi1Quh9Oh6VhxPu6XhSFztMo.jpg 1260w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:745,intrinsicWidth:630,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+549+80),pixelHeight:1490,pixelWidth:1260,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 180px) / 2, 1px)`,src:\"https://framerusercontent.com/images/FCxYi1Quh9Oh6VhxPu6XhSFztMo.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/FCxYi1Quh9Oh6VhxPu6XhSFztMo.jpg?scale-down-to=1024 865w,https://framerusercontent.com/images/FCxYi1Quh9Oh6VhxPu6XhSFztMo.jpg 1260w\"},className:\"framer-9opt1q\",\"data-framer-name\":\"Hero-left\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:745,intrinsicWidth:630,pixelHeight:1490,pixelWidth:1260,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1600px) - 32px)`,src:\"https://framerusercontent.com/images/ZyGqm0mzbWZZOrxEGsb4smKp6DI.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ZyGqm0mzbWZZOrxEGsb4smKp6DI.jpg?scale-down-to=1024 865w,https://framerusercontent.com/images/ZyGqm0mzbWZZOrxEGsb4smKp6DI.jpg 1260w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:745,intrinsicWidth:630,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+549+80),pixelHeight:1490,pixelWidth:1260,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 180px) / 2, 1px)`,src:\"https://framerusercontent.com/images/ZyGqm0mzbWZZOrxEGsb4smKp6DI.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ZyGqm0mzbWZZOrxEGsb4smKp6DI.jpg?scale-down-to=1024 865w,https://framerusercontent.com/images/ZyGqm0mzbWZZOrxEGsb4smKp6DI.jpg 1260w\"},className:\"framer-a3czjr\",\"data-framer-name\":\"Hero-right\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ud5eg1\",\"data-framer-name\":\"Section - Intro\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBCb29r\",\"--framer-font-family\":'\"Hodinkee Social Book\", \"Hodinkee Social Book Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.3em\"},children:\"The Chopard L.U.C XPS 1860 Officer Limited Edition For Hodinkee reflects everything Chopard does best. A true pioneer of excellence in modern watchmaking, Chopard meticulously fuses history and innovation into all they do, and the L.U.C collection is the brand\u2019s flagship offering. This collection is where Chopard brings its heritage styles and refined mechanical prowess into some of the most elegant and understated timepieces.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBCb29r\",\"--framer-font-family\":'\"Hodinkee Social Book\", \"Hodinkee Social Book Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.3em\"},children:\"The Chopard L.U.C XPS 1860 Officer Limited Edition For Hodinkee reflects everything Chopard does best. A true pioneer of excellence in modern watchmaking, Chopard meticulously fuses history and innovation into all they do, and the L.U.C collection is the brand\u2019s flagship offering. This collection is where Chopard brings its heritage styles and refined mechanical prowess into some of the most elegant and understated timepieces.\"})}),className:\"framer-1aperi9\",fonts:[\"CUSTOM;Hodinkee Social Book\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qxmy3h\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11womac\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jgrvuj-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"AoeKyYLZN\",isMixedBorderRadius:false,layoutId:\"AoeKyYLZN\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/sIzucbDROuL1csp4WjtEwIj5bM.jpg\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/VXswJStOQAWStx7cJEudGEsHhuw.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBSZWd1bGFy\",\"--framer-font-family\":'\"Hodinkee Social Regular\", \"Hodinkee Social Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\"},children:\"A total of 25 pieces of the Chopard L.U.C XPS 1860 Officer Limited Edition For Hodinkee have been produced. The watch is available for purchase in the United States via our retail partner, Watches of Switzerland.\"})}),className:\"framer-15za8e2\",fonts:[\"CUSTOM;Hodinkee Social Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19e319f\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-192aw1k\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1di6htf\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6d20fy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvRm8gQ2luZW1hMTkwOSBSZWd1bGFy\",\"--framer-font-family\":'\"CoFo Cinema1909 Regular\", \"CoFo Cinema1909 Regular Placeholder\", sans-serif',\"--framer-font-size\":\"41px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(138, 159, 148)\"},children:\"The History\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvRm8gQ2luZW1hMTkwOSBSZWd1bGFy\",\"--framer-font-family\":'\"CoFo Cinema1909 Regular\", \"CoFo Cinema1909 Regular Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(138, 159, 148)\"},children:\"The History\"})}),className:\"framer-xiyq3j\",fonts:[\"CUSTOM;CoFo Cinema1909 Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Hodinkee Social Mono Regular\", \"Hodinkee Social Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.9em\",\"--framer-text-color\":\"rgb(138, 159, 148)\"},children:\"1860 \u2013 Present\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Hodinkee Social Mono Regular\", \"Hodinkee Social Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"2.4em\",\"--framer-text-color\":\"rgb(138, 159, 148)\"},children:\"1860 \u2013 Present\"})}),className:\"framer-1wl59au\",fonts:[\"CUSTOM;Hodinkee Social Mono Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1064004\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0l2YXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Ivar Text Regular\", \"Ivar Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"rgb(207, 204, 203)\"},children:\"In 1860, Louis-Ulysse Chopard opened his namesake watch company in the idyllic Swiss Jura mountain region. Immediately, Chopard was recognized for its high-quality watchmaking and refined style.\\xa0 In 1937, Chopard moved its production to Geneva. Then, in 1963, the Scheufeles, a German family of talented goldsmiths and watchmakers, acquired Chopard and developed it into one of the most respected heritage Swiss watch brands. Today, Chopard is one of the few manufacturers in Switzerland that has remained family-owned since its founding.\"})}),className:\"framer-1wkvkkz\",fonts:[\"CUSTOM;Ivar Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0l2YXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Ivar Text Regular\", \"Ivar Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"rgb(207, 204, 203)\"},children:\"In the 1980s, Chopard first began thinking about a project to become a proper movement manufacturer, shortly after Karl-Freidrich Scheufele joined his father at the company. During a time when even the most prominent brands were relying on third-party movements, Chopard got to work building its movement from the ground up. The first Chopard L.U.C was a considerable undertaking, and no expense was spared. The development of the 1.96 caliber took three years, from 1993 to 1996, and involved familiar names such as Michel Parmigiani and Jean-Frederic Dufour. On a mission to establish the brand as a true manufacturer, Chopard launched its first automatic movement in 1996, the Calibre 1.96. Now referred to as the 96.01-L, that movement formally introduced the L.U.C collection, which is named for Chopard's founder, Louis-Ulysse Chopard.\"})}),className:\"framer-1cqiwed\",fonts:[\"CUSTOM;Ivar Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0l2YXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Ivar Text Regular\", \"Ivar Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"rgb(207, 204, 203)\"},children:\"With the Calibre 1.96 built, Chopard began work on the L.U.C 1860, the first watch that would feature its new in-house caliber. While the Chopard name is instantly recognizable in watchmaking and jewelry circles, its L.U.C collection is like an independent watchmaker hidden inside a global luxury house. Assembled and finished to the highest degree by Chopard\u2019s Fluerier manufacturer, this is the platform we chose to design our first limited edition with the brand.\"})}),className:\"framer-1ebzn88\",fonts:[\"CUSTOM;Ivar Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rlqbsy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:228,intrinsicWidth:305,pixelHeight:456,pixelWidth:610,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1600px) - 32px) / 2)`,src:\"https://framerusercontent.com/images/lRDz1wicTv9yUbWsRW5GR5tAPsY.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/lRDz1wicTv9yUbWsRW5GR5tAPsY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/lRDz1wicTv9yUbWsRW5GR5tAPsY.jpg 610w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:228,intrinsicWidth:305,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1898+120+353+0),pixelHeight:456,pixelWidth:610,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 180px) / 4, 1px)`,src:\"https://framerusercontent.com/images/lRDz1wicTv9yUbWsRW5GR5tAPsY.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/lRDz1wicTv9yUbWsRW5GR5tAPsY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/lRDz1wicTv9yUbWsRW5GR5tAPsY.jpg 610w\"},className:\"framer-161uz2t\",\"data-framer-name\":\"History-town\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bblce6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:665,intrinsicWidth:955,pixelHeight:1330,pixelWidth:1910,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1600px) - 32px)`,src:\"https://framerusercontent.com/images/Q8YBXxmASQ0kURayt3L9XrHmI.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Q8YBXxmASQ0kURayt3L9XrHmI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Q8YBXxmASQ0kURayt3L9XrHmI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q8YBXxmASQ0kURayt3L9XrHmI.jpg 1910w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:665,intrinsicWidth:955,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1898+120+353+0+0+0),pixelHeight:1330,pixelWidth:1910,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 180px) * 0.75, 1px)`,src:\"https://framerusercontent.com/images/Q8YBXxmASQ0kURayt3L9XrHmI.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Q8YBXxmASQ0kURayt3L9XrHmI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Q8YBXxmASQ0kURayt3L9XrHmI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q8YBXxmASQ0kURayt3L9XrHmI.jpg 1910w\"},className:\"framer-hyw7ap\",\"data-framer-name\":\"History-country\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBSZWd1bGFy\",\"--framer-font-family\":'\"Hodinkee Social Regular\", \"Hodinkee Social Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(206, 204, 203)\"},children:\"Aerial view above Sonvilier, Switzerland. (1950)\"})}),className:\"framer-40492x\",fonts:[\"CUSTOM;Hodinkee Social Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oiab34\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cp6hfh\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qw3brt\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvRm8gQ2luZW1hMTkwOSBSZWd1bGFy\",\"--framer-font-family\":'\"CoFo Cinema1909 Regular\", \"CoFo Cinema1909 Regular Placeholder\", sans-serif',\"--framer-font-size\":\"41px\",\"--framer-line-height\":\"1em\"},children:\"The Chopard L.U.C XPS 1860 Officer Limited Edition For Hodinkee\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvRm8gQ2luZW1hMTkwOSBSZWd1bGFy\",\"--framer-font-family\":'\"CoFo Cinema1909 Regular\", \"CoFo Cinema1909 Regular Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"1em\"},children:\"The Chopard L.U.C XPS 1860 Officer Limited Edition For Hodinkee\"})}),className:\"framer-zs8jb3\",fonts:[\"CUSTOM;CoFo Cinema1909 Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a33n63\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0l2YXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Ivar Text Regular\", \"Ivar Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"justify\"},children:\"The stunning 40mm case is constructed from Chopard\u2019s signature Ethical 18k white gold. The bezel and caseback of the three-part case are entirely polished, while the midcase features a subtle brushing, lending to a classical feeling. However, the minimalist design, upon closer inspection, is anything but. The case houses a silvery hunter-green dial that vacillates between a cool sage and rich emerald and features a custom guilloche dial. The dial is engraved by hand using traditional rose engines by the renowned dial maker Metalem. Metalem is the same manufacturer that produced the original dials for the L.U.C 1860 in 1997 and dozens of other iconic dials, perhaps most notably the Philippe Dufour Simplicity.\"})}),className:\"framer-1lydti\",fonts:[\"CUSTOM;Ivar Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jhnifg\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{background:{alt:\"\",fit:\"fill\",pixelHeight:603,pixelWidth:588,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1600px) - 32px) / 2)`,src:\"https://framerusercontent.com/images/PGn60R7iINBDssmwQwuTOJK0l4E.jpg\",srcSet:\"https://framerusercontent.com/images/PGn60R7iINBDssmwQwuTOJK0l4E.jpg 588w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3186+120+345+64),pixelHeight:603,pixelWidth:588,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 220px) / 6, 1px)`,src:\"https://framerusercontent.com/images/PGn60R7iINBDssmwQwuTOJK0l4E.jpg\",srcSet:\"https://framerusercontent.com/images/PGn60R7iINBDssmwQwuTOJK0l4E.jpg 588w\"},className:\"framer-hxurub\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{background:{alt:\"\",fit:\"fill\",pixelHeight:1068,pixelWidth:1042,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1600px) - 32px)`,src:\"https://framerusercontent.com/images/ZkpfX1ntNEb8PniBjLr9CfprCYM.jpg\",srcSet:\"https://framerusercontent.com/images/ZkpfX1ntNEb8PniBjLr9CfprCYM.jpg?scale-down-to=1024 999w,https://framerusercontent.com/images/ZkpfX1ntNEb8PniBjLr9CfprCYM.jpg 1042w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3186+120+345+64),pixelHeight:1068,pixelWidth:1042,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 220px) / 2.4, 1px)`,src:\"https://framerusercontent.com/images/ZkpfX1ntNEb8PniBjLr9CfprCYM.jpg\",srcSet:\"https://framerusercontent.com/images/ZkpfX1ntNEb8PniBjLr9CfprCYM.jpg?scale-down-to=1024 999w,https://framerusercontent.com/images/ZkpfX1ntNEb8PniBjLr9CfprCYM.jpg 1042w\"},className:\"framer-3rcjrc\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16wjdil\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-emr1vz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Hodinkee Social Mono Regular\", \"Hodinkee Social Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.5em\"},children:\"Every Chopard L.U.C dial is engraved by hand using traditional rose engines by the renowned dial maker Metalem.\"})}),className:\"framer-197ougb\",fonts:[\"CUSTOM;Hodinkee Social Mono Regular\"],verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:828,intrinsicWidth:619.5,pixelHeight:1656,pixelWidth:1239,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1600px) - 32px)`,src:\"https://framerusercontent.com/images/rMYnEd4oP5TXMUDcUMIYvfLzE.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/rMYnEd4oP5TXMUDcUMIYvfLzE.jpg?scale-down-to=1024 766w,https://framerusercontent.com/images/rMYnEd4oP5TXMUDcUMIYvfLzE.jpg 1239w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:828,intrinsicWidth:619.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3186+120+649+0+0+92),pixelHeight:1656,pixelWidth:1239,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 200px) / 3, 1px)`,src:\"https://framerusercontent.com/images/rMYnEd4oP5TXMUDcUMIYvfLzE.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/rMYnEd4oP5TXMUDcUMIYvfLzE.jpg?scale-down-to=1024 766w,https://framerusercontent.com/images/rMYnEd4oP5TXMUDcUMIYvfLzE.jpg 1239w\"},className:\"framer-79ocd8\",\"data-framer-name\":\"Frame 5061\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2jrr4q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Hodinkee Social Mono Regular\", \"Hodinkee Social Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.5em\"},children:\"The guilloch\\xe9 on the exterior of the officer caseback of the Chopprd L.U.C XPS 1860 perfectly mirrors the pattern on the dial.\"})}),className:\"framer-1qw0896\",fonts:[\"CUSTOM;Hodinkee Social Mono Regular\"],verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:955.5,intrinsicWidth:619.5,pixelHeight:1911,pixelWidth:1239,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1600px) - 32px)`,src:\"https://framerusercontent.com/images/sQ2QtPuapOvxnEqbT75ZbcGY1cU.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sQ2QtPuapOvxnEqbT75ZbcGY1cU.jpg?scale-down-to=1024 663w,https://framerusercontent.com/images/sQ2QtPuapOvxnEqbT75ZbcGY1cU.jpg 1239w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:955.5,intrinsicWidth:619.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3186+120+649+0+0+92),pixelHeight:1911,pixelWidth:1239,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 200px) / 3, 1px)`,src:\"https://framerusercontent.com/images/sQ2QtPuapOvxnEqbT75ZbcGY1cU.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sQ2QtPuapOvxnEqbT75ZbcGY1cU.jpg?scale-down-to=1024 663w,https://framerusercontent.com/images/sQ2QtPuapOvxnEqbT75ZbcGY1cU.jpg 1239w\"},className:\"framer-15ksd46\",\"data-framer-name\":\"Frame 5063\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oddjkd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Hodinkee Social Mono Regular\", \"Hodinkee Social Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.5em\"},children:\"Upon completion, dials are inspected by hand for imperfections.\"})}),className:\"framer-1gs6lbm\",fonts:[\"CUSTOM;Hodinkee Social Mono Regular\"],verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:687,intrinsicWidth:619.5,pixelHeight:1374,pixelWidth:1239,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1600px) - 32px)`,src:\"https://framerusercontent.com/images/l0yGsIUaeHec3H4dcI9kiGY178.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/l0yGsIUaeHec3H4dcI9kiGY178.jpg?scale-down-to=1024 923w,https://framerusercontent.com/images/l0yGsIUaeHec3H4dcI9kiGY178.jpg 1239w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:687,intrinsicWidth:619.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3186+120+649+0+0+92),pixelHeight:1374,pixelWidth:1239,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 200px) / 3, 1px)`,src:\"https://framerusercontent.com/images/l0yGsIUaeHec3H4dcI9kiGY178.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/l0yGsIUaeHec3H4dcI9kiGY178.jpg?scale-down-to=1024 923w,https://framerusercontent.com/images/l0yGsIUaeHec3H4dcI9kiGY178.jpg 1239w\"},className:\"framer-3pclx4\",\"data-framer-name\":\"Frame 5062\"})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13zbloo\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3txr8z\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-upq27e\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Hodinkee Social Mono Regular\", \"Hodinkee Social Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"1.7em\"},children:\"Case Material\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Hodinkee Social Mono Regular\", \"Hodinkee Social Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"2.4em\"},children:\"Case Material\"})}),className:\"framer-1bng7jr\",fonts:[\"CUSTOM;Hodinkee Social Mono Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvRm8gQ2luZW1hMTkwOSBSZWd1bGFy\",\"--framer-font-family\":'\"CoFo Cinema1909 Regular\", \"CoFo Cinema1909 Regular Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1em\"},children:\"18k Ethical White Gold\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvRm8gQ2luZW1hMTkwOSBSZWd1bGFy\",\"--framer-font-family\":'\"CoFo Cinema1909 Regular\", \"CoFo Cinema1909 Regular Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"1em\"},children:\"18k Ethical White Gold\"})}),className:\"framer-13maz7z\",fonts:[\"CUSTOM;CoFo Cinema1909 Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-da0qlz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cd60jc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Hodinkee Social Mono Regular\", \"Hodinkee Social Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"1.7em\"},children:\"Dial\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Hodinkee Social Mono Regular\", \"Hodinkee Social Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"2.4em\"},children:\"Dial\"})}),className:\"framer-1qfhqos\",fonts:[\"CUSTOM;Hodinkee Social Mono Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvRm8gQ2luZW1hMTkwOSBSZWd1bGFy\",\"--framer-font-family\":'\"CoFo Cinema1909 Regular\", \"CoFo Cinema1909 Regular Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1em\"},children:\"Dark Green Guilloch\\xe9\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvRm8gQ2luZW1hMTkwOSBSZWd1bGFy\",\"--framer-font-family\":'\"CoFo Cinema1909 Regular\", \"CoFo Cinema1909 Regular Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"1em\"},children:\"Dark Green Guilloch\\xe9\"})}),className:\"framer-1hd3piq\",fonts:[\"CUSTOM;CoFo Cinema1909 Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ity3g0 hidden-zll6ot\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Hodinkee Social Mono Regular\", \"Hodinkee Social Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"2.4em\"},children:\"Case Size\"})}),className:\"framer-1wcqgwg\",fonts:[\"CUSTOM;Hodinkee Social Mono Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvRm8gQ2luZW1hMTkwOSBSZWd1bGFy\",\"--framer-font-family\":'\"CoFo Cinema1909 Regular\", \"CoFo Cinema1909 Regular Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"1em\"},children:\"40mm\"})}),className:\"framer-1e7ob6k\",fonts:[\"CUSTOM;CoFo Cinema1909 Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hx6mdo hidden-zll6ot\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Hodinkee Social Mono Regular\", \"Hodinkee Social Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"2.4em\"},children:\"Thickness\"})}),className:\"framer-qasumv\",fonts:[\"CUSTOM;Hodinkee Social Mono Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvRm8gQ2luZW1hMTkwOSBSZWd1bGFy\",\"--framer-font-family\":'\"CoFo Cinema1909 Regular\", \"CoFo Cinema1909 Regular Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"1em\"},children:\"7.7mm\"})}),className:\"framer-17ytw27\",fonts:[\"CUSTOM;CoFo Cinema1909 Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f7mi0e hidden-3m73vs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y0v8x7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Hodinkee Social Mono Regular\", \"Hodinkee Social Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"1.7em\"},children:\"Case Size\"})}),className:\"framer-122p31t\",fonts:[\"CUSTOM;Hodinkee Social Mono Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvRm8gQ2luZW1hMTkwOSBSZWd1bGFy\",\"--framer-font-family\":'\"CoFo Cinema1909 Regular\", \"CoFo Cinema1909 Regular Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1em\"},children:\"40mm\"})}),className:\"framer-h7uvsb\",fonts:[\"CUSTOM;CoFo Cinema1909 Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gedyrh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Hodinkee Social Mono Regular\", \"Hodinkee Social Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"1.7em\"},children:\"Thickness\"})}),className:\"framer-1y6nhxj\",fonts:[\"CUSTOM;Hodinkee Social Mono Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvRm8gQ2luZW1hMTkwOSBSZWd1bGFy\",\"--framer-font-family\":'\"CoFo Cinema1909 Regular\", \"CoFo Cinema1909 Regular Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1em\"},children:\"7.7mm\"})}),className:\"framer-1om3hxt\",fonts:[\"CUSTOM;CoFo Cinema1909 Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ok721e\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16q3ot8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Hodinkee Social Mono Regular\", \"Hodinkee Social Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"1.7em\"},children:\"Calibre\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Hodinkee Social Mono Regular\", \"Hodinkee Social Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"2.4em\"},children:\"Calibre\"})}),className:\"framer-agka8q\",fonts:[\"CUSTOM;Hodinkee Social Mono Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvRm8gQ2luZW1hMTkwOSBSZWd1bGFy\",\"--framer-font-family\":'\"CoFo Cinema1909 Regular\", \"CoFo Cinema1909 Regular Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1em\"},children:\"l.u.c. 96.01-l\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvRm8gQ2luZW1hMTkwOSBSZWd1bGFy\",\"--framer-font-family\":'\"CoFo Cinema1909 Regular\", \"CoFo Cinema1909 Regular Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"1em\"},children:\"l.u.c. 96.01-l\"})}),className:\"framer-1bsygi1\",fonts:[\"CUSTOM;CoFo Cinema1909 Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7d9xzd hidden-zll6ot\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Hodinkee Social Mono Regular\", \"Hodinkee Social Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"2.4em\"},children:\"Power Reserve\"})}),className:\"framer-e61olg\",fonts:[\"CUSTOM;Hodinkee Social Mono Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvRm8gQ2luZW1hMTkwOSBSZWd1bGFy\",\"--framer-font-family\":'\"CoFo Cinema1909 Regular\", \"CoFo Cinema1909 Regular Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"1em\"},children:\"65 Hours\"})}),className:\"framer-fddkrj\",fonts:[\"CUSTOM;CoFo Cinema1909 Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ljuu8d\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w1f064\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0l2YXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Ivar Text Regular\", \"Ivar Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"justify\"},children:\"Looking at the dial, wedged, white gold indices are applied to give an overall sharp appearance, pushed further by the substitution of a double index at \u201C12\u201D instead of the customary numeral. A color-matched date window at six o\u2019clock completes the cohesive design and serves as an homage to the original 1860.\\xa0 The handset consists of Chopard's unique dauphine-style shape, with strong bevels to reflect the light and sparkle elegantly. The seconds sub-dial is minimally marked, which is also a nod to 1930s designs, but is also slightly recessed, lending the dial depth and interest. With a lug width of 21mm, each watch will ship on a Chopard strap in grey with a matching white gold buckle and a classic Hodinkee leather strap in textured Honey Brown leather.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0l2YXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Ivar Text Regular\", \"Ivar Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"justify\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0l2YXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Ivar Text Regular\", \"Ivar Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"justify\"},children:\"While impressively thin at only 7.7mm, this limited edition also features a guilloch\\xe9d hunter caseback that perfectly mirrors the dial. To us, the hinged caseback allows the remarkable movement to be something intended for the owner, a little horological secret, if you will \u2013 but also an opportunity to show off the marvel housed within the watch. When the original L.U.C 1860 collection was introduced, Chopard is said to have set out to produce only a few hundred watches with hinged casebacks \u2013 100 in each metal. However, it is believed that substantially fewer watches were produced, leading to an air of exclusivity around the original 1860 collection.\"})]}),className:\"framer-1vsa6gw\",fonts:[\"CUSTOM;Ivar Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16je1w\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:457,intrinsicWidth:413,pixelHeight:914,pixelWidth:826,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1600px) - 32px)`,src:\"https://framerusercontent.com/images/mpRSoHUEBguN9MxhB7jtNaMDg8.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/mpRSoHUEBguN9MxhB7jtNaMDg8.jpg 826w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:457,intrinsicWidth:413,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5316+120+0+0),pixelHeight:914,pixelWidth:826,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 200px) / 3, 1px)`,src:\"https://framerusercontent.com/images/mpRSoHUEBguN9MxhB7jtNaMDg8.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/mpRSoHUEBguN9MxhB7jtNaMDg8.jpg 826w\"},className:\"framer-1od79mv\",\"data-framer-name\":\"Caseback\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-orlxht\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:306,intrinsicWidth:295.5,pixelHeight:612,pixelWidth:591,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 48px) / 2, 1px)`,src:\"https://framerusercontent.com/images/BMw0SRK3wNPfcHokQ8WSdbhRCs.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/BMw0SRK3wNPfcHokQ8WSdbhRCs.jpg 591w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:306,intrinsicWidth:295.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5316+120+0+473+0),pixelHeight:612,pixelWidth:591,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 200px) / 3, 1px) - 16px) / 2, 1px)`,src:\"https://framerusercontent.com/images/BMw0SRK3wNPfcHokQ8WSdbhRCs.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/BMw0SRK3wNPfcHokQ8WSdbhRCs.jpg 591w\"},className:\"framer-ey4qn7\",\"data-framer-name\":\"CHO-Q8F-TUN-HALLMARK-DETAIL\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:306,intrinsicWidth:295.5,pixelHeight:612,pixelWidth:591,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 48px) / 2, 1px)`,src:\"https://framerusercontent.com/images/tum0xVUVz5o5bMAp5W7hl4cQpbY.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/tum0xVUVz5o5bMAp5W7hl4cQpbY.jpg 591w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:306,intrinsicWidth:295.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5316+120+0+473+0),pixelHeight:612,pixelWidth:591,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 200px) / 3, 1px) - 16px) / 2, 1px)`,src:\"https://framerusercontent.com/images/tum0xVUVz5o5bMAp5W7hl4cQpbY.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/tum0xVUVz5o5bMAp5W7hl4cQpbY.jpg 591w\"},className:\"framer-1vq8h4n\",\"data-framer-name\":\"Frame 5058\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:457,intrinsicWidth:413,pixelHeight:914,pixelWidth:826,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1600px) - 32px)`,src:\"https://framerusercontent.com/images/Q2N6xDRIF2xMlRUI6o4ioMxSpw.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Q2N6xDRIF2xMlRUI6o4ioMxSpw.jpg 826w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:457,intrinsicWidth:413,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5316+120+0+796),pixelHeight:914,pixelWidth:826,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 200px) / 3, 1px)`,src:\"https://framerusercontent.com/images/Q2N6xDRIF2xMlRUI6o4ioMxSpw.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Q2N6xDRIF2xMlRUI6o4ioMxSpw.jpg 826w\"},className:\"framer-f4t77h\",\"data-framer-name\":\"Wrist\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16dt984\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0l2YXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Ivar Text Regular\", \"Ivar Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"justify\"},children:\"When you turn over the Chopard L.U.C 1860 XPS Officer Limited Edition for Hodinkee and press the button set into the crown, you will find that for the very first time, Chopard has removed all engravings from the hunter caseback \u2013 hallmarks included \u2013 and relocated them to the inside of the case to make way for the guilloch\\xe9 pattern. Each watch is individually numbered XX/25 on the inside of the officer caseback.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0l2YXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Ivar Text Regular\", \"Ivar Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"justify\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0l2YXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Ivar Text Regular\", \"Ivar Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"justify\"},children:\"Once open, the sapphire caseback reveals the expertly finished Calibre 96.01-L Geneva Seal movement. Both technically and aesthetically, the Calibre 96.01 movement is one of Chopard\u2019s signatures and is a direct descendent of the first L.U.C caliber. The Calibre 96.01 measures just 3.33 millimeters thick, powered by a guilloch\\xe9d gold micro-rotor.\\xa0 The movement is COSC-certified by the Official Swiss Chronometer Testing Institute and carries the Geneva Seal, a testament to its quality, craftsmanship, and accuracy. The micro-rotor winds twin barrels that operate in series, meant to improve the accuracy over the Calibre 1.96's 65-hour power reserve. The caliber also features a Breguet overcoil hairspring and swan neck regulator, both old-school romantic touches that add to the watch\u2019s charm.\"})]}),className:\"framer-165zc2k\",fonts:[\"CUSTOM;Ivar Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ua30eh\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-13fqlew\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8ofdnz\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18v5lx7\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gqnj6e\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sql83y\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvRm8gQ2luZW1hMTkwOSBSZWd1bGFy\",\"--framer-font-family\":'\"CoFo Cinema1909 Regular\", \"CoFo Cinema1909 Regular Placeholder\", sans-serif',\"--framer-font-size\":\"41px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(138, 159, 148)\"},children:\"Just 25 Individually-Numbered Pieces have been produced\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvRm8gQ2luZW1hMTkwOSBSZWd1bGFy\",\"--framer-font-family\":'\"CoFo Cinema1909 Regular\", \"CoFo Cinema1909 Regular Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(138, 159, 148)\"},children:\"Just 25 Individually-Numbered Pieces have been produced\"})}),className:\"framer-bbsi7w\",fonts:[\"CUSTOM;CoFo Cinema1909 Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mozqgu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0l2YXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Ivar Text Regular\", \"Ivar Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(207, 204, 203)\"},children:\"A total of 25 pieces of the Chopard L.U.C XPS 1860 Officer Limited Edition For Hodinkee have been produced. The watch is available for purchase in the United States via our retail partner, Watches of Switzerland.\"})}),className:\"framer-1t3iaun\",fonts:[\"CUSTOM;Ivar Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://www.watchesofswitzerland.com/p/17970916\",nodeId:\"ljGrMqEFo\",openInNewTab:false,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-1u6fa06 framer-cmm9p7\",\"data-framer-name\":\"LINK_Shop\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBNZWRpdW0=\",\"--framer-font-family\":'\"Hodinkee Social Medium\", \"Hodinkee Social Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Buy Via Watches of Switzerland\"})}),className:\"framer-1692ab2\",fonts:[\"CUSTOM;Hodinkee Social Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-103c91o-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"DJrFDayO_\",layoutId:\"DJrFDayO_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kdompn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0l2YXIgVGV4dCBJdGFsaWM=\",\"--framer-font-family\":'\"Ivar Text Italic\", \"Ivar Text Italic Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(207, 204, 203)\"},children:\"For international purchases, please contact our client services at ecommerce@watchesofswitzerland.com\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0l2YXIgVGV4dCBJdGFsaWM=\",\"--framer-font-family\":'\"Ivar Text Italic\", \"Ivar Text Italic Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(207, 204, 203)\"},children:\"For international purchases, please contact our client services at ecommerce@watchesofswitzerland.com\"})}),className:\"framer-bz6we6\",fonts:[\"CUSTOM;Ivar Text Italic\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(Link,{href:\"https://www.watchesofswitzerland.com/p/17970916\",nodeId:\"F0yRvTDo5\",openInNewTab:false,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oHzwRxhdE:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation,className:\"framer-har3uc framer-cmm9p7\",\"data-framer-appear-id\":\"har3uc\",\"data-framer-name\":\"Product Card \u2013\\xa0Collection\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8arl7h hidden-zll6ot\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition(797.2),pixelHeight:304,pixelWidth:304,src:\"https://framerusercontent.com/images/sIzucbDROuL1csp4WjtEwIj5bM.jpg\"},className:\"framer-1ophqm4\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6rce85\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBNZWRpdW0=\",\"--framer-font-family\":'\"Hodinkee Social Medium\", \"Hodinkee Social Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(12, 12, 12)\"},children:\"Chopard\"})}),className:\"framer-1s78zy3\",\"data-framer-name\":\"Autodromo\",fonts:[\"CUSTOM;Hodinkee Social Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBSZWd1bGFy\",\"--framer-font-family\":'\"Hodinkee Social Regular\", \"Hodinkee Social Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\"},children:\"L.U.C XPS 1860 Officer Limited Edition for Hodinkee\"})}),className:\"framer-1hxtr8n\",\"data-framer-name\":\"Group B Rallysport Chronograph \\u2028Limited Edition For HODINKEE\",fonts:[\"CUSTOM;Hodinkee Social Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10wtv81\",\"data-framer-name\":\"Price\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBSZWd1bGFy\",\"--framer-font-family\":'\"Hodinkee Social Regular\", \"Hodinkee Social Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(12, 12, 12)\",\"--framer-text-transform\":\"uppercase\"},children:\"$\"})}),className:\"framer-1q7zuae\",\"data-framer-name\":\"$\",fonts:[\"CUSTOM;Hodinkee Social Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBSZWd1bGFy\",\"--framer-font-family\":'\"Hodinkee Social Regular\", \"Hodinkee Social Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(12, 12, 12)\",\"--framer-text-transform\":\"uppercase\"},children:\"36,700\"})}),className:\"framer-1h8g0np\",\"data-framer-name\":\"Price\",fonts:[\"CUSTOM;Hodinkee Social Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1icgieo\",\"data-framer-name\":\"Button\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hvZGlua2VlIFNvY2lhbCBNZWRpdW0=\",\"--framer-font-family\":'\"Hodinkee Social Medium\", \"Hodinkee Social Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"inherit\"},children:\"Buy Via Watches of Switzerland\"})}),className:\"framer-o2gkm7\",fonts:[\"CUSTOM;Hodinkee Social Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-v7xp8e-container\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowRight\",id:\"X6O1YyRWc\",layoutId:\"X6O1YyRWc\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})]})})})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UTSU4.framer-cmm9p7, .framer-UTSU4 .framer-cmm9p7 { display: block; }\",\".framer-UTSU4.framer-3m73vs { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1100px; }\",\".framer-UTSU4 .framer-l1ao4j, .framer-UTSU4 .framer-x2dajw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-2d3y8x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1600px; overflow: hidden; padding: 32px; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-1r7827v, .framer-UTSU4 .framer-1hi2ox5, .framer-UTSU4 .framer-1u6fa06 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 8px 0px 8px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-UTSU4 .framer-1mssnmw, .framer-UTSU4 .framer-7xw987 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); overflow: visible; position: relative; width: 16px; }\",\".framer-UTSU4 .framer-54bjff, .framer-UTSU4 .framer-1uh32l4, .framer-UTSU4 .framer-xiyq3j, .framer-UTSU4 .framer-1wl59au, .framer-UTSU4 .framer-40492x, .framer-UTSU4 .framer-1bng7jr, .framer-UTSU4 .framer-13maz7z, .framer-UTSU4 .framer-1qfhqos, .framer-UTSU4 .framer-1hd3piq, .framer-UTSU4 .framer-1wcqgwg, .framer-UTSU4 .framer-1e7ob6k, .framer-UTSU4 .framer-qasumv, .framer-UTSU4 .framer-17ytw27, .framer-UTSU4 .framer-122p31t, .framer-UTSU4 .framer-h7uvsb, .framer-UTSU4 .framer-1y6nhxj, .framer-UTSU4 .framer-1om3hxt, .framer-UTSU4 .framer-agka8q, .framer-UTSU4 .framer-1bsygi1, .framer-UTSU4 .framer-e61olg, .framer-UTSU4 .framer-fddkrj, .framer-UTSU4 .framer-1692ab2, .framer-UTSU4 .framer-o2gkm7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-UTSU4 .framer-zh1n5r { aspect-ratio: 6.474820143884892 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 47px); left: 51%; overflow: visible; position: absolute; top: 32px; transform: translateX(-50%); width: 300px; z-index: 1; }\",\".framer-UTSU4 .framer-qm84yf { background-color: #ffffff; flex: none; height: 96px; overflow: hidden; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-dmu2fc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-1qws2vj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 70%; word-break: break-word; word-wrap: break-word; }\",\".framer-UTSU4 .framer-1vly0xv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: hidden; padding: 80px 80px 40px 80px; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-9opt1q, .framer-UTSU4 .framer-a3czjr { aspect-ratio: 0.8456375838926175 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 237px); overflow: visible; position: relative; width: 1px; }\",\".framer-UTSU4 .framer-1ud5eg1 { 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; max-width: 1600px; overflow: hidden; padding: 0px 80px 120px 80px; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-1aperi9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 3 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-UTSU4 .framer-qxmy3h { flex: 1 0 0px; height: 123px; overflow: hidden; position: relative; width: 1px; }\",\".framer-UTSU4 .framer-11womac { align-content: flex-start; align-items: flex-start; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-UTSU4 .framer-1jgrvuj-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); position: relative; width: 100%; }\",\".framer-UTSU4 .framer-15za8e2 { --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-UTSU4 .framer-19e319f { align-content: center; align-items: center; background-color: #2b4036; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: hidden; padding: 120px 80px 120px 80px; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-192aw1k, .framer-UTSU4 .framer-cp6hfh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-1di6htf { background-color: #8a9f94; flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-6d20fy { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-1064004 { 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: 64px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-1wkvkkz, .framer-UTSU4 .framer-1cqiwed, .framer-UTSU4 .framer-1ebzn88 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-UTSU4 .framer-rlqbsy, .framer-UTSU4 .framer-16wjdil { 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-UTSU4 .framer-161uz2t { aspect-ratio: 1.337719298245614 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 150px); overflow: visible; position: relative; width: 1px; }\",\".framer-UTSU4 .framer-bblce6, .framer-UTSU4 .framer-emr1vz, .framer-UTSU4 .framer-2jrr4q, .framer-UTSU4 .framer-oddjkd { align-content: flex-start; align-items: flex-start; display: flex; flex: 3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-UTSU4 .framer-hyw7ap { aspect-ratio: 1.4360902255639099 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 139px); overflow: visible; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-1oiab34 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: hidden; padding: 120px 80px 120px 80px; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-1qw3brt { background-color: #000000; flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-zs8jb3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 772px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-UTSU4 .framer-a33n63 { 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: 64px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-1lydti { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 4 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-UTSU4 .framer-1jhnifg { flex: 1 0 0px; height: 66px; overflow: hidden; position: relative; width: 1px; }\",\".framer-UTSU4 .framer-hxurub { aspect-ratio: 1 / 1; flex: 2 0 0px; height: var(--framer-aspect-ratio-supported, 200px); overflow: hidden; position: relative; width: 1px; }\",\".framer-UTSU4 .framer-3rcjrc { aspect-ratio: 1 / 1; flex: 5 0 0px; height: var(--framer-aspect-ratio-supported, 200px); overflow: hidden; position: relative; width: 1px; }\",\".framer-UTSU4 .framer-197ougb, .framer-UTSU4 .framer-1qw0896, .framer-UTSU4 .framer-1gs6lbm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 80px; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-UTSU4 .framer-79ocd8 { aspect-ratio: 0.7481884057971014 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 267px); overflow: visible; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-15ksd46 { aspect-ratio: 0.6483516483516484 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 308px); overflow: visible; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-3pclx4 { aspect-ratio: 0.9017467248908297 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 222px); overflow: visible; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-13zbloo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-3txr8z, .framer-UTSU4 .framer-da0qlz, .framer-UTSU4 .framer-f7mi0e, .framer-UTSU4 .framer-ok721e { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-upq27e, .framer-UTSU4 .framer-1cd60jc, .framer-UTSU4 .framer-1ity3g0, .framer-UTSU4 .framer-hx6mdo, .framer-UTSU4 .framer-16q3ot8, .framer-UTSU4 .framer-7d9xzd { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-UTSU4 .framer-1y0v8x7, .framer-UTSU4 .framer-gedyrh { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-UTSU4 .framer-1ljuu8d { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: hidden; padding: 120px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-1w1f064 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-UTSU4 .framer-1vsa6gw, .framer-UTSU4 .framer-165zc2k { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-UTSU4 .framer-16je1w { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-UTSU4 .framer-1od79mv, .framer-UTSU4 .framer-f4t77h { aspect-ratio: 0.9037199124726477 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 221px); overflow: visible; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-orlxht { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-ey4qn7, .framer-UTSU4 .framer-1vq8h4n { aspect-ratio: 0.9656862745098039 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 207px); overflow: visible; position: relative; width: 1px; }\",\".framer-UTSU4 .framer-16dt984 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-UTSU4 .framer-1ua30eh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-13fqlew, .framer-UTSU4 .framer-1gqnj6e { background-color: #8a9f94; flex: none; height: 80px; overflow: hidden; position: relative; width: 1px; }\",\".framer-UTSU4 .framer-8ofdnz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-18v5lx7 { align-content: center; align-items: center; background-color: #2b4036; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-sql83y { align-content: center; align-items: center; background-color: #2b4036; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 80px 40px 80px; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-bbsi7w { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-UTSU4 .framer-1mozqgu { align-content: center; align-items: center; background-color: #2b4036; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 80px 120px 80px; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-1t3iaun { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 360px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-UTSU4 .framer-103c91o-container, .framer-UTSU4 .framer-v7xp8e-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-UTSU4 .framer-kdompn { align-content: flex-end; align-items: flex-end; background-color: #2b4036; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 80px 24px 80px; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-bz6we6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; max-width: 384px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-UTSU4 .framer-har3uc { align-content: center; align-items: center; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; bottom: 24px; box-shadow: 0px 0.3613123810646357px 0.5058373334904899px 0px rgba(0, 0, 0, 0.02), 0px 1.3731199819460742px 1.9223679747245037px 0px rgba(0, 0, 0, 0.05721), 0px 6px 8.399999999999999px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: fixed; right: 24px; text-decoration: none; width: 343px; will-change: var(--framer-will-change-override, transform); z-index: 10; }\",\".framer-UTSU4 .framer-8arl7h { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-1ophqm4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 104px); overflow: hidden; position: relative; width: 104px; }\",\".framer-UTSU4 .framer-6rce85 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 1px; }\",\".framer-UTSU4 .framer-1s78zy3 { flex: none; height: 16px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-UTSU4 .framer-1hxtr8n { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-UTSU4 .framer-10wtv81 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 18px; justify-content: center; overflow: visible; padding: 8px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-UTSU4 .framer-1q7zuae { flex: none; height: 18px; position: relative; white-space: pre; width: auto; }\",\".framer-UTSU4 .framer-1h8g0np { flex: 1 0 0px; height: 18px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-UTSU4 .framer-1icgieo { align-content: center; align-items: center; background-color: #222222; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; padding: 16px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-UTSU4.framer-3m73vs, .framer-UTSU4 .framer-l1ao4j, .framer-UTSU4 .framer-x2dajw, .framer-UTSU4 .framer-1r7827v, .framer-UTSU4 .framer-1hi2ox5, .framer-UTSU4 .framer-dmu2fc, .framer-UTSU4 .framer-1vly0xv, .framer-UTSU4 .framer-1ud5eg1, .framer-UTSU4 .framer-11womac, .framer-UTSU4 .framer-19e319f, .framer-UTSU4 .framer-192aw1k, .framer-UTSU4 .framer-6d20fy, .framer-UTSU4 .framer-1064004, .framer-UTSU4 .framer-rlqbsy, .framer-UTSU4 .framer-bblce6, .framer-UTSU4 .framer-1oiab34, .framer-UTSU4 .framer-cp6hfh, .framer-UTSU4 .framer-a33n63, .framer-UTSU4 .framer-16wjdil, .framer-UTSU4 .framer-emr1vz, .framer-UTSU4 .framer-2jrr4q, .framer-UTSU4 .framer-oddjkd, .framer-UTSU4 .framer-13zbloo, .framer-UTSU4 .framer-3txr8z, .framer-UTSU4 .framer-upq27e, .framer-UTSU4 .framer-da0qlz, .framer-UTSU4 .framer-1cd60jc, .framer-UTSU4 .framer-1ity3g0, .framer-UTSU4 .framer-hx6mdo, .framer-UTSU4 .framer-f7mi0e, .framer-UTSU4 .framer-1y0v8x7, .framer-UTSU4 .framer-gedyrh, .framer-UTSU4 .framer-ok721e, .framer-UTSU4 .framer-16q3ot8, .framer-UTSU4 .framer-7d9xzd, .framer-UTSU4 .framer-1ljuu8d, .framer-UTSU4 .framer-1w1f064, .framer-UTSU4 .framer-16je1w, .framer-UTSU4 .framer-orlxht, .framer-UTSU4 .framer-16dt984, .framer-UTSU4 .framer-1ua30eh, .framer-UTSU4 .framer-8ofdnz, .framer-UTSU4 .framer-18v5lx7, .framer-UTSU4 .framer-sql83y, .framer-UTSU4 .framer-1mozqgu, .framer-UTSU4 .framer-1u6fa06, .framer-UTSU4 .framer-kdompn, .framer-UTSU4 .framer-har3uc, .framer-UTSU4 .framer-8arl7h, .framer-UTSU4 .framer-6rce85, .framer-UTSU4 .framer-10wtv81 { gap: 0px; } .framer-UTSU4.framer-3m73vs > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-UTSU4.framer-3m73vs > :first-child, .framer-UTSU4 .framer-l1ao4j > :first-child, .framer-UTSU4 .framer-x2dajw > :first-child, .framer-UTSU4 .framer-11womac > :first-child, .framer-UTSU4 .framer-19e319f > :first-child, .framer-UTSU4 .framer-192aw1k > :first-child, .framer-UTSU4 .framer-bblce6 > :first-child, .framer-UTSU4 .framer-1oiab34 > :first-child, .framer-UTSU4 .framer-cp6hfh > :first-child, .framer-UTSU4 .framer-emr1vz > :first-child, .framer-UTSU4 .framer-2jrr4q > :first-child, .framer-UTSU4 .framer-oddjkd > :first-child, .framer-UTSU4 .framer-13zbloo > :first-child, .framer-UTSU4 .framer-1w1f064 > :first-child, .framer-UTSU4 .framer-16je1w > :first-child, .framer-UTSU4 .framer-8ofdnz > :first-child, .framer-UTSU4 .framer-1mozqgu > :first-child, .framer-UTSU4 .framer-har3uc > :first-child, .framer-UTSU4 .framer-6rce85 > :first-child { margin-top: 0px; } .framer-UTSU4.framer-3m73vs > :last-child, .framer-UTSU4 .framer-l1ao4j > :last-child, .framer-UTSU4 .framer-x2dajw > :last-child, .framer-UTSU4 .framer-11womac > :last-child, .framer-UTSU4 .framer-19e319f > :last-child, .framer-UTSU4 .framer-192aw1k > :last-child, .framer-UTSU4 .framer-bblce6 > :last-child, .framer-UTSU4 .framer-1oiab34 > :last-child, .framer-UTSU4 .framer-cp6hfh > :last-child, .framer-UTSU4 .framer-emr1vz > :last-child, .framer-UTSU4 .framer-2jrr4q > :last-child, .framer-UTSU4 .framer-oddjkd > :last-child, .framer-UTSU4 .framer-13zbloo > :last-child, .framer-UTSU4 .framer-1w1f064 > :last-child, .framer-UTSU4 .framer-16je1w > :last-child, .framer-UTSU4 .framer-8ofdnz > :last-child, .framer-UTSU4 .framer-1mozqgu > :last-child, .framer-UTSU4 .framer-har3uc > :last-child, .framer-UTSU4 .framer-6rce85 > :last-child { margin-bottom: 0px; } .framer-UTSU4 .framer-l1ao4j > *, .framer-UTSU4 .framer-x2dajw > *, .framer-UTSU4 .framer-19e319f > *, .framer-UTSU4 .framer-1oiab34 > *, .framer-UTSU4 .framer-13zbloo > *, .framer-UTSU4 .framer-1w1f064 > *, .framer-UTSU4 .framer-8ofdnz > *, .framer-UTSU4 .framer-har3uc > *, .framer-UTSU4 .framer-6rce85 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-UTSU4 .framer-1r7827v > *, .framer-UTSU4 .framer-1hi2ox5 > *, .framer-UTSU4 .framer-1u6fa06 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-UTSU4 .framer-1r7827v > :first-child, .framer-UTSU4 .framer-1hi2ox5 > :first-child, .framer-UTSU4 .framer-dmu2fc > :first-child, .framer-UTSU4 .framer-1vly0xv > :first-child, .framer-UTSU4 .framer-1ud5eg1 > :first-child, .framer-UTSU4 .framer-6d20fy > :first-child, .framer-UTSU4 .framer-1064004 > :first-child, .framer-UTSU4 .framer-rlqbsy > :first-child, .framer-UTSU4 .framer-a33n63 > :first-child, .framer-UTSU4 .framer-16wjdil > :first-child, .framer-UTSU4 .framer-3txr8z > :first-child, .framer-UTSU4 .framer-upq27e > :first-child, .framer-UTSU4 .framer-da0qlz > :first-child, .framer-UTSU4 .framer-1cd60jc > :first-child, .framer-UTSU4 .framer-1ity3g0 > :first-child, .framer-UTSU4 .framer-hx6mdo > :first-child, .framer-UTSU4 .framer-f7mi0e > :first-child, .framer-UTSU4 .framer-1y0v8x7 > :first-child, .framer-UTSU4 .framer-gedyrh > :first-child, .framer-UTSU4 .framer-ok721e > :first-child, .framer-UTSU4 .framer-16q3ot8 > :first-child, .framer-UTSU4 .framer-7d9xzd > :first-child, .framer-UTSU4 .framer-1ljuu8d > :first-child, .framer-UTSU4 .framer-orlxht > :first-child, .framer-UTSU4 .framer-16dt984 > :first-child, .framer-UTSU4 .framer-1ua30eh > :first-child, .framer-UTSU4 .framer-18v5lx7 > :first-child, .framer-UTSU4 .framer-sql83y > :first-child, .framer-UTSU4 .framer-1u6fa06 > :first-child, .framer-UTSU4 .framer-kdompn > :first-child, .framer-UTSU4 .framer-8arl7h > :first-child, .framer-UTSU4 .framer-10wtv81 > :first-child { margin-left: 0px; } .framer-UTSU4 .framer-1r7827v > :last-child, .framer-UTSU4 .framer-1hi2ox5 > :last-child, .framer-UTSU4 .framer-dmu2fc > :last-child, .framer-UTSU4 .framer-1vly0xv > :last-child, .framer-UTSU4 .framer-1ud5eg1 > :last-child, .framer-UTSU4 .framer-6d20fy > :last-child, .framer-UTSU4 .framer-1064004 > :last-child, .framer-UTSU4 .framer-rlqbsy > :last-child, .framer-UTSU4 .framer-a33n63 > :last-child, .framer-UTSU4 .framer-16wjdil > :last-child, .framer-UTSU4 .framer-3txr8z > :last-child, .framer-UTSU4 .framer-upq27e > :last-child, .framer-UTSU4 .framer-da0qlz > :last-child, .framer-UTSU4 .framer-1cd60jc > :last-child, .framer-UTSU4 .framer-1ity3g0 > :last-child, .framer-UTSU4 .framer-hx6mdo > :last-child, .framer-UTSU4 .framer-f7mi0e > :last-child, .framer-UTSU4 .framer-1y0v8x7 > :last-child, .framer-UTSU4 .framer-gedyrh > :last-child, .framer-UTSU4 .framer-ok721e > :last-child, .framer-UTSU4 .framer-16q3ot8 > :last-child, .framer-UTSU4 .framer-7d9xzd > :last-child, .framer-UTSU4 .framer-1ljuu8d > :last-child, .framer-UTSU4 .framer-orlxht > :last-child, .framer-UTSU4 .framer-16dt984 > :last-child, .framer-UTSU4 .framer-1ua30eh > :last-child, .framer-UTSU4 .framer-18v5lx7 > :last-child, .framer-UTSU4 .framer-sql83y > :last-child, .framer-UTSU4 .framer-1u6fa06 > :last-child, .framer-UTSU4 .framer-kdompn > :last-child, .framer-UTSU4 .framer-8arl7h > :last-child, .framer-UTSU4 .framer-10wtv81 > :last-child { margin-right: 0px; } .framer-UTSU4 .framer-dmu2fc > *, .framer-UTSU4 .framer-16dt984 > *, .framer-UTSU4 .framer-sql83y > *, .framer-UTSU4 .framer-kdompn > *, .framer-UTSU4 .framer-8arl7h > *, .framer-UTSU4 .framer-10wtv81 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-UTSU4 .framer-1vly0xv > *, .framer-UTSU4 .framer-1ud5eg1 > *, .framer-UTSU4 .framer-1064004 > *, .framer-UTSU4 .framer-rlqbsy > *, .framer-UTSU4 .framer-a33n63 > *, .framer-UTSU4 .framer-16wjdil > *, .framer-UTSU4 .framer-1ljuu8d > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-UTSU4 .framer-11womac > *, .framer-UTSU4 .framer-16je1w > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-UTSU4 .framer-192aw1k > *, .framer-UTSU4 .framer-cp6hfh > *, .framer-UTSU4 .framer-1mozqgu > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-UTSU4 .framer-6d20fy > *, .framer-UTSU4 .framer-upq27e > *, .framer-UTSU4 .framer-1cd60jc > *, .framer-UTSU4 .framer-1ity3g0 > *, .framer-UTSU4 .framer-hx6mdo > *, .framer-UTSU4 .framer-16q3ot8 > *, .framer-UTSU4 .framer-7d9xzd > *, .framer-UTSU4 .framer-orlxht > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-UTSU4 .framer-bblce6 > *, .framer-UTSU4 .framer-emr1vz > *, .framer-UTSU4 .framer-2jrr4q > *, .framer-UTSU4 .framer-oddjkd > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-UTSU4 .framer-3txr8z > *, .framer-UTSU4 .framer-da0qlz > *, .framer-UTSU4 .framer-f7mi0e > *, .framer-UTSU4 .framer-ok721e > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-UTSU4 .framer-1y0v8x7 > *, .framer-UTSU4 .framer-gedyrh > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-UTSU4 .framer-1ua30eh > *, .framer-UTSU4 .framer-18v5lx7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\"@media (max-width: 1099px) { .framer-UTSU4.framer-3m73vs { width: 390px; } .framer-UTSU4 .framer-2d3y8x { gap: 10px; justify-content: center; padding: 16px; } .framer-UTSU4 .framer-zh1n5r { height: var(--framer-aspect-ratio-supported, 30px); left: unset; position: relative; top: unset; transform: unset; width: 196px; } .framer-UTSU4 .framer-dmu2fc { padding: 0px 16px 0px 16px; } .framer-UTSU4 .framer-1qws2vj, .framer-UTSU4 .framer-165zc2k { flex: 1 0 0px; width: 1px; } .framer-UTSU4 .framer-1vly0xv { flex-direction: column; gap: 16px; padding: 16px; } .framer-UTSU4 .framer-9opt1q, .framer-UTSU4 .framer-a3czjr, .framer-UTSU4 .framer-1aperi9, .framer-UTSU4 .framer-11womac, .framer-UTSU4 .framer-1wkvkkz, .framer-UTSU4 .framer-1cqiwed, .framer-UTSU4 .framer-1ebzn88, .framer-UTSU4 .framer-bblce6, .framer-UTSU4 .framer-1lydti, .framer-UTSU4 .framer-1jhnifg, .framer-UTSU4 .framer-3rcjrc, .framer-UTSU4 .framer-emr1vz, .framer-UTSU4 .framer-2jrr4q, .framer-UTSU4 .framer-oddjkd, .framer-UTSU4 .framer-1w1f064, .framer-UTSU4 .framer-16je1w, .framer-UTSU4 .framer-16dt984 { flex: none; width: 100%; } .framer-UTSU4 .framer-1ud5eg1 { flex-direction: column; padding: 16px 16px 80px 16px; } .framer-UTSU4 .framer-qxmy3h { flex: none; height: 80px; width: 100%; } .framer-UTSU4 .framer-19e319f, .framer-UTSU4 .framer-1oiab34 { padding: 80px 16px 80px 16px; } .framer-UTSU4 .framer-192aw1k, .framer-UTSU4 .framer-cp6hfh { gap: 16px; } .framer-UTSU4 .framer-6d20fy, .framer-UTSU4 .framer-13zbloo, .framer-UTSU4 .framer-upq27e, .framer-UTSU4 .framer-1cd60jc, .framer-UTSU4 .framer-16q3ot8 { gap: 8px; } .framer-UTSU4 .framer-1064004 { align-content: center; align-items: center; flex-direction: column; } .framer-UTSU4 .framer-rlqbsy { flex-wrap: wrap; } .framer-UTSU4 .framer-161uz2t, .framer-UTSU4 .framer-hxurub { flex: none; width: 50%; } .framer-UTSU4 .framer-a33n63 { flex-direction: column; } .framer-UTSU4 .framer-16wjdil { flex-direction: column; gap: 32px; } .framer-UTSU4 .framer-197ougb { height: auto; width: 100%; } .framer-UTSU4 .framer-1qw0896, .framer-UTSU4 .framer-1gs6lbm { height: auto; } .framer-UTSU4 .framer-3txr8z { order: 2; } .framer-UTSU4 .framer-da0qlz { order: 1; } .framer-UTSU4 .framer-f7mi0e { order: 0; } .framer-UTSU4 .framer-ok721e { flex-direction: column; gap: 0px; order: 3; } .framer-UTSU4 .framer-1ljuu8d { align-content: center; align-items: center; flex-direction: column; gap: 56px; padding: 80px 16px 80px 16px; } .framer-UTSU4 .framer-1vsa6gw { width: 100%; } .framer-UTSU4 .framer-1ua30eh { padding: 0px; } .framer-UTSU4 .framer-sql83y { padding: 40px 16px 40px 16px; } .framer-UTSU4 .framer-1mozqgu { gap: 16px; padding: 0px 16px 120px 16px; } .framer-UTSU4 .framer-kdompn { padding: 0px 16px 24px 16px; } .framer-UTSU4 .framer-har3uc { bottom: 16px; left: 50%; right: unset; transform: translateX(-50%); width: 88%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-UTSU4 .framer-2d3y8x, .framer-UTSU4 .framer-1vly0xv, .framer-UTSU4 .framer-1ud5eg1, .framer-UTSU4 .framer-192aw1k, .framer-UTSU4 .framer-6d20fy, .framer-UTSU4 .framer-1064004, .framer-UTSU4 .framer-cp6hfh, .framer-UTSU4 .framer-a33n63, .framer-UTSU4 .framer-16wjdil, .framer-UTSU4 .framer-13zbloo, .framer-UTSU4 .framer-upq27e, .framer-UTSU4 .framer-1cd60jc, .framer-UTSU4 .framer-ok721e, .framer-UTSU4 .framer-16q3ot8, .framer-UTSU4 .framer-1ljuu8d, .framer-UTSU4 .framer-1mozqgu { gap: 0px; } .framer-UTSU4 .framer-2d3y8x > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-UTSU4 .framer-2d3y8x > :first-child, .framer-UTSU4 .framer-6d20fy > :first-child, .framer-UTSU4 .framer-upq27e > :first-child, .framer-UTSU4 .framer-1cd60jc > :first-child, .framer-UTSU4 .framer-16q3ot8 > :first-child { margin-left: 0px; } .framer-UTSU4 .framer-2d3y8x > :last-child, .framer-UTSU4 .framer-6d20fy > :last-child, .framer-UTSU4 .framer-upq27e > :last-child, .framer-UTSU4 .framer-1cd60jc > :last-child, .framer-UTSU4 .framer-16q3ot8 > :last-child { margin-right: 0px; } .framer-UTSU4 .framer-1vly0xv > *, .framer-UTSU4 .framer-192aw1k > *, .framer-UTSU4 .framer-cp6hfh > *, .framer-UTSU4 .framer-1mozqgu > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-UTSU4 .framer-1vly0xv > :first-child, .framer-UTSU4 .framer-1ud5eg1 > :first-child, .framer-UTSU4 .framer-192aw1k > :first-child, .framer-UTSU4 .framer-1064004 > :first-child, .framer-UTSU4 .framer-cp6hfh > :first-child, .framer-UTSU4 .framer-a33n63 > :first-child, .framer-UTSU4 .framer-16wjdil > :first-child, .framer-UTSU4 .framer-13zbloo > :first-child, .framer-UTSU4 .framer-ok721e > :first-child, .framer-UTSU4 .framer-1ljuu8d > :first-child, .framer-UTSU4 .framer-1mozqgu > :first-child { margin-top: 0px; } .framer-UTSU4 .framer-1vly0xv > :last-child, .framer-UTSU4 .framer-1ud5eg1 > :last-child, .framer-UTSU4 .framer-192aw1k > :last-child, .framer-UTSU4 .framer-1064004 > :last-child, .framer-UTSU4 .framer-cp6hfh > :last-child, .framer-UTSU4 .framer-a33n63 > :last-child, .framer-UTSU4 .framer-16wjdil > :last-child, .framer-UTSU4 .framer-13zbloo > :last-child, .framer-UTSU4 .framer-ok721e > :last-child, .framer-UTSU4 .framer-1ljuu8d > :last-child, .framer-UTSU4 .framer-1mozqgu > :last-child { margin-bottom: 0px; } .framer-UTSU4 .framer-1ud5eg1 > *, .framer-UTSU4 .framer-1064004 > *, .framer-UTSU4 .framer-a33n63 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-UTSU4 .framer-6d20fy > *, .framer-UTSU4 .framer-upq27e > *, .framer-UTSU4 .framer-1cd60jc > *, .framer-UTSU4 .framer-16q3ot8 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-UTSU4 .framer-16wjdil > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-UTSU4 .framer-13zbloo > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-UTSU4 .framer-ok721e > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-UTSU4 .framer-1ljuu8d > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7022\n * @framerIntrinsicWidth 1100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"oHzwRxhdE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerLayoutTemplateCompatible true\n * @framerResponsiveScreen\n */const FramerOy5ZDWQil=withCSS(Component,css,\"framer-UTSU4\");export default FramerOy5ZDWQil;FramerOy5ZDWQil.displayName=\"Page\";FramerOy5ZDWQil.defaultProps={height:7022,width:1100};addFonts(FramerOy5ZDWQil,[{explicitInter:true,fonts:[{family:\"Hodinkee Social Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/JZQQALdHNEK0RsLSEwx5t5sYxI.otf\"},{family:\"CoFo Cinema1909 Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/Ec6bGu6hFTwMopp1V4g1COljrQ.woff\"},{family:\"Hodinkee Social Book\",source:\"custom\",url:\"https://framerusercontent.com/assets/k76siKblbYk5v3Svy1nt6B79ps.otf\"},{family:\"Hodinkee Social Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/sIvTGZ2LB21pNF5AFjOrRurpC6U.otf\"},{family:\"Hodinkee Social Mono Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/a3t6ImKYAMmf8W26JixeA7I6fWo.otf\"},{family:\"Ivar Text Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/aPJXuDfAsk7hbEF4hl43WDc7PJU.otf\"},{family:\"Ivar Text Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/ZC2pMAc6EHpFbcLWVq7f2LNyi4.otf\"}]},...VideoFonts,...PhosphorFonts,...Phosphor1Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOy5ZDWQil\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"7022\",\"framerResponsiveScreen\":\"\",\"framerLayoutTemplateCompatible\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oHzwRxhdE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1100\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "Component", "IconInner", "Icon", "React", "props", "ref", "House_default", "Icon", "iconKeys", "moduleBaseUrl", "weightOptions", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "weight", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "House_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "piece", "defaultEvents", "VideoFonts", "getFonts", "Video", "PhosphorFonts", "Icon", "Phosphor1Fonts", "MotionAWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "Link", "Image2", "getLoadingLazyAtYPosition", "RichText2", "x", "PropertyOverrides2", "ComponentViewportProvider", "Container", "css", "FramerOy5ZDWQil", "withCSS", "Oy5ZDWQil_default", "addFonts", "__FramerMetadata__"]
}
