{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framer.com/m/phosphor-icons/House.js@0.0.53", "ssg:https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js", "ssg:https://framerusercontent.com/modules/5q0l9zrWVyLt3pJ2F4SV/KHaM4N4u2ffQqMYhTqTE/AHTtJbr9D.js", "ssg:https://framerusercontent.com/modules/ytjdqdBLplFXis3W1vPB/8AT2SwpkEUuJhHpDB4AV/hNZu8RRFT.js", "ssg:https://framerusercontent.com/modules/4qea2tVJvbd5vjBaWlaq/QA82jVrK1RKNYow3sZv3/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}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={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// 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,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 renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",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(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\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??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??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??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//     !isStaticRenderer\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??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??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?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\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},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\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "let Component;\nvar House_default = (React) => {\n  if (!Component) {\n    const weights = /* @__PURE__ */ new Map([\n      [\n        \"bold\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M221.56,100.85,141.61,25.38l-.16-.15a19.93,19.93,0,0,0-26.91,0l-.17.15L34.44,100.85A20.07,20.07,0,0,0,28,115.55V208a20,20,0,0,0,20,20H96a20,20,0,0,0,20-20V164h24v44a20,20,0,0,0,20,20h48a20,20,0,0,0,20-20V115.55A20.07,20.07,0,0,0,221.56,100.85ZM204,204H164V160a20,20,0,0,0-20-20H112a20,20,0,0,0-20,20v44H52V117.28l76-71.75,76,71.75Z\" }))\n      ],\n      [\n        \"duotone\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\n          \"path\",\n          {\n            d: \"M216,115.54V208a8,8,0,0,1-8,8H160a8,8,0,0,1-8-8V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.54a8,8,0,0,1,2.62-5.92l80-75.54a8,8,0,0,1,10.77,0l80,75.54A8,8,0,0,1,216,115.54Z\",\n            opacity: \"0.2\"\n          }\n        ), /* @__PURE__ */ React.createElement(\"path\", { d: \"M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z\" }))\n      ],\n      [\n        \"fill\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M224,115.55V208a16,16,0,0,1-16,16H168a16,16,0,0,1-16-16V168a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v40a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V115.55a16,16,0,0,1,5.17-11.78l80-75.48.11-.11a16,16,0,0,1,21.53,0,1.14,1.14,0,0,0,.11.11l80,75.48A16,16,0,0,1,224,115.55Z\" }))\n      ],\n      [\n        \"light\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M217.47,105.24l-80-75.5-.09-.08a13.94,13.94,0,0,0-18.83,0l-.09.08-80,75.5A14,14,0,0,0,34,115.55V208a14,14,0,0,0,14,14H96a14,14,0,0,0,14-14V160a2,2,0,0,1,2-2h32a2,2,0,0,1,2,2v48a14,14,0,0,0,14,14h48a14,14,0,0,0,14-14V115.55A14,14,0,0,0,217.47,105.24ZM210,208a2,2,0,0,1-2,2H160a2,2,0,0,1-2-2V160a14,14,0,0,0-14-14H112a14,14,0,0,0-14,14v48a2,2,0,0,1-2,2H48a2,2,0,0,1-2-2V115.55a2,2,0,0,1,.65-1.48l.09-.08,79.94-75.48a2,2,0,0,1,2.63,0L209.26,114l.08.08a2,2,0,0,1,.66,1.48Z\" }))\n      ],\n      [\n        \"regular\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z\" }))\n      ],\n      [\n        \"thin\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M216.13,106.72,136.07,31.13a12,12,0,0,0-16.2.05L39.93,106.67A12,12,0,0,0,36,115.54V208a12,12,0,0,0,12,12H96a12,12,0,0,0,12-12V160a4,4,0,0,1,4-4h32a4,4,0,0,1,4,4v48a12,12,0,0,0,12,12h48a12,12,0,0,0,12-12V115.54A12,12,0,0,0,216.13,106.72ZM212,208a4,4,0,0,1-4,4H160a4,4,0,0,1-4-4V160a12,12,0,0,0-12-12H112a12,12,0,0,0-12,12v48a4,4,0,0,1-4,4H48a4,4,0,0,1-4-4V115.54a4.09,4.09,0,0,1,1.36-3L125.3,37.05a4,4,0,0,1,5.33,0l80.06,75.58a4,4,0,0,1,1.31,3Z\" }))\n      ]\n    ]);\n    const House = React.forwardRef((props, ref) => /* @__PURE__ */ React.createElement(\"g\", { ref, ...props }, weights.get(props.weight)));\n    House.displayName = \"House\";\n    Component = House;\n  }\n  return Component;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\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.53\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"AddressBook\",\"AirTrafficControl\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"AmazonLogo\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"AngularLogo\",\"Aperture\",\"AppStoreLogo\",\"AppWindow\",\"AppleLogo\",\"ApplePodcastsLogo\",\"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\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Baby\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barricade\",\"Baseball\",\"BaseballCap\",\"Basket\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryPlusVertical\",\"BatteryVerticalEmpty\",\"BatteryVerticalFull\",\"BatteryVerticalHigh\",\"BatteryVerticalLow\",\"BatteryWarning\",\"Bed\",\"BeerBottle\",\"BeerStein\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"BezierCurve\",\"Bicycle\",\"Binoculars\",\"Bird\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Bone\",\"Book\",\"BookBookmark\",\"BookOpen\",\"BookOpenText\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"Boot\",\"BoundingBox\",\"BowlFood\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Bridge\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Broom\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Buildings\",\"Bus\",\"Butterfly\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarPlus\",\"CalendarX\",\"CallBell\",\"Camera\",\"CameraPlus\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarProfile\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretCircleUpDown\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretRight\",\"CaretUp\",\"CaretUpDown\",\"Carrot\",\"CassetteTape\",\"CastleTurret\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"Certificate\",\"Chair\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"Champagne\",\"ChargingStation\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartDonut\",\"ChartLine\",\"ChartLineDown\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"ChartPolar\",\"ChartScatter\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleText\",\"ChatDots\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckFat\",\"CheckSquare\",\"CheckSquareOffset\",\"Checks\",\"Church\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Circuitry\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClockCounterClockwise\",\"ClockCountdown\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"CloudWarning\",\"CloudX\",\"Club\",\"CoatHanger\",\"CodaLogo\",\"Code\",\"CodeBlock\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"Command\",\"Compass\",\"CompassTool\",\"ComputerTower\",\"Confetti\",\"ContactlessPayment\",\"Control\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Couch\",\"Cpu\",\"CreditCard\",\"Crop\",\"Cross\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownSimple\",\"Cube\",\"CubeFocus\",\"CubeTransparent\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorClick\",\"CursorText\",\"Cylinder\",\"Database\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DevToLogo\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSpeaker\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Devices\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscordLogo\",\"Divide\",\"Dna\",\"Dog\",\"Door\",\"DoorOpen\",\"Dot\",\"DotOutline\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"Dress\",\"DribbbleLogo\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"DropboxLogo\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Elevator\",\"Engine\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"EscalatorDown\",\"EscalatorUp\",\"Exam\",\"Exclude\",\"ExcludeSquare\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"Fan\",\"FastForward\",\"FastForwardCircle\",\"Feather\",\"FigmaLogo\",\"File\",\"FileArchive\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileCloud\",\"FileCode\",\"FileCss\",\"FileCsv\",\"FileDashed\",\"FileDoc\",\"FileHtml\",\"FileImage\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMagnifyingGlass\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FileRs\",\"FileSql\",\"FileSvg\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmReel\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireExtinguisher\",\"FireSimple\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagCheckered\",\"FlagPennant\",\"Flame\",\"Flashlight\",\"Flask\",\"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\",\"Footprints\",\"ForkKnife\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"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\",\"GlobeStand\",\"Goggles\",\"GoodreadsLogo\",\"GoogleCardboardLogo\",\"GoogleChromeLogo\",\"GoogleDriveLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gradient\",\"GraduationCap\",\"Grains\",\"GrainsSlash\",\"Graph\",\"GridFour\",\"GridNine\",\"Guitar\",\"Hamburger\",\"Hammer\",\"Hand\",\"HandCoins\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandHeart\",\"HandPalm\",\"HandPointing\",\"HandSoap\",\"HandSwipeLeft\",\"HandSwipeRight\",\"HandTap\",\"HandWaving\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"HandsPraying\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"Hash\",\"HashStraight\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartHalf\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighHeel\",\"HighlighterCircle\",\"Hoodie\",\"Horse\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"IceCream\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageSquare\",\"Images\",\"ImagesSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"IntersectSquare\",\"IntersectThree\",\"Jeep\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"Laptop\",\"Layout\",\"Leaf\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lighthouse\",\"Lightning\",\"LightningA\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListMagnifyingGlass\",\"ListNumbers\",\"ListPlus\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"Lockers\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"MapPin\",\"MapPinLine\",\"MapTrifold\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MathOperations\",\"Medal\",\"MedalMilitary\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MessengerLogo\",\"MetaLogo\",\"Metronome\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"MicrosoftExcelLogo\",\"MicrosoftOutlookLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"MinusSquare\",\"Money\",\"Monitor\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Moped\",\"MopedFront\",\"Mosque\",\"Motorcycle\",\"Mountains\",\"Mouse\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Newspaper\",\"NewspaperClipping\",\"Notches\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NotionLogo\",\"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\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"OfficeChair\",\"Option\",\"OrangeSlice\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"Pants\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Paragraph\",\"Parallelogram\",\"Park\",\"Password\",\"Path\",\"PatreonLogo\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"PaypalLogo\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilSimple\",\"PencilSimpleLine\",\"PencilSimpleSlash\",\"PencilSlash\",\"Pentagram\",\"Pepper\",\"Percent\",\"Person\",\"PersonArmsSpread\",\"PersonSimple\",\"PersonSimpleBike\",\"PersonSimpleRun\",\"PersonSimpleThrow\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneOutgoing\",\"PhonePlus\",\"PhoneSlash\",\"PhoneX\",\"PhosphorLogo\",\"Pi\",\"PianoKeys\",\"PictureInPicture\",\"PiggyBank\",\"Pill\",\"PinterestLogo\",\"Pinwheel\",\"Pizza\",\"Placeholder\",\"Planet\",\"Plant\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Playlist\",\"Plug\",\"PlugCharging\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PlusSquare\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"PottedPlant\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"Pulse\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"Queue\",\"Quotes\",\"Radical\",\"Radio\",\"RadioButton\",\"Radioactive\",\"Rainbow\",\"RainbowCloud\",\"ReadCvLogo\",\"Receipt\",\"ReceiptX\",\"Record\",\"Rectangle\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"Rewind\",\"RewindCircle\",\"RoadHorizon\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Scales\",\"Scan\",\"Scissors\",\"Scooter\",\"Screencast\",\"ScribbleLoop\",\"Scroll\",\"Seal\",\"SealCheck\",\"SealQuestion\",\"SealWarning\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Shapes\",\"Share\",\"ShareFat\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShirtFolded\",\"ShootingStar\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shower\",\"Shrimp\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"Sigma\",\"SignIn\",\"SignOut\",\"Signature\",\"Signpost\",\"SimCard\",\"Siren\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Slideshow\",\"Smiley\",\"SmileyAngry\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Sneaker\",\"SneakerMove\",\"Snowflake\",\"SoccerBall\",\"SortAscending\",\"SortDescending\",\"SoundcloudLogo\",\"Spade\",\"Sparkle\",\"SpeakerHifi\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Spinner\",\"SpinnerGap\",\"Spiral\",\"SplitHorizontal\",\"SplitVertical\",\"SpotifyLogo\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquareSplitVertical\",\"SquaresFour\",\"Stack\",\"StackOverflowLogo\",\"StackSimple\",\"Stairs\",\"Stamp\",\"Star\",\"StarAndCrescent\",\"StarFour\",\"StarHalf\",\"StarOfDavid\",\"SteeringWheel\",\"Steps\",\"Stethoscope\",\"Sticker\",\"Stool\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"Subtitles\",\"Subtract\",\"SubtractSquare\",\"Suitcase\",\"SuitcaseRolling\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"Swap\",\"Swatches\",\"SwimmingPool\",\"Sword\",\"Synagogue\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"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\",\"TextT\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TidalLogo\",\"TiktokLogo\",\"Timer\",\"Tipi\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Toolbox\",\"Tooth\",\"Tote\",\"ToteSimple\",\"Trademark\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Tram\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"Tree\",\"TreeEvergreen\",\"TreePalm\",\"TreeStructure\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"Trophy\",\"Truck\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Unite\",\"UniteSquare\",\"Upload\",\"UploadSimple\",\"Usb\",\"User\",\"UserCircle\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Van\",\"Vault\",\"Vibrate\",\"Video\",\"VideoCamera\",\"VideoCameraSlash\",\"Vignette\",\"VinylRecord\",\"VirtualReality\",\"Virus\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warehouse\",\"Warning\",\"WarningCircle\",\"WarningDiamond\",\"WarningOctagon\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waveform\",\"Waves\",\"Webcam\",\"WebcamSlash\",\"WebhooksLogo\",\"WechatLogo\",\"WhatsappLogo\",\"Wheelchair\",\"WheelchairMotion\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XSquare\",\"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.53\";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\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={c6LqDTc27:{hover:true,pressed:true},kvr8VINZQ:{hover:true,pressed:true},YmyYbh_W1:{hover:true,pressed:true},yxJmnfVn2:{hover:true,pressed:true}};const cycleOrder=[\"YmyYbh_W1\",\"kvr8VINZQ\",\"c6LqDTc27\",\"yxJmnfVn2\"];const serializationHash=\"framer-Lsqay\";const variantClassNames={c6LqDTc27:\"framer-v-z5nrrt\",kvr8VINZQ:\"framer-v-1795le3\",YmyYbh_W1:\"framer-v-16wyi8p\",yxJmnfVn2:\"framer-v-1nu9to6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"L - Fill\":\"c6LqDTc27\",L:\"kvr8VINZQ\",M:\"YmyYbh_W1\",S:\"yxJmnfVn2\"};const getProps=({height,id,link,text,width,...props})=>{return{...props,owOcZuT5h:link??props.owOcZuT5h,SWTAQxjCj:text??props.SWTAQxjCj??\"Signup\",variant:humanReadableVariantMap[props.variant]??props.variant??\"YmyYbh_W1\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,SWTAQxjCj,owOcZuT5h,ihI6v86XYPSJh510mh,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YmyYbh_W1\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:owOcZuT5h,motionChild:true,nodeId:\"YmyYbh_W1\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-16wyi8p\",className,classNames)} framer-75oflg`,\"data-framer-name\":\"M\",layoutDependency:layoutDependency,layoutId:\"YmyYbh_W1\",ref:ref??ref1,style:{...style},...addPropertyOverrides({\"c6LqDTc27-hover\":{\"data-framer-name\":undefined},\"c6LqDTc27-pressed\":{\"data-framer-name\":undefined},\"kvr8VINZQ-hover\":{\"data-framer-name\":undefined},\"kvr8VINZQ-pressed\":{\"data-framer-name\":undefined},\"YmyYbh_W1-hover\":{\"data-framer-name\":undefined},\"YmyYbh_W1-pressed\":{\"data-framer-name\":undefined},\"yxJmnfVn2-hover\":{\"data-framer-name\":undefined},\"yxJmnfVn2-pressed\":{\"data-framer-name\":undefined},c6LqDTc27:{\"data-framer-name\":\"L - Fill\"},kvr8VINZQ:{\"data-framer-name\":\"L\"},yxJmnfVn2:{\"data-framer-name\":\"S\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1reooxr\",\"data-border\":true,\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"JIMoKTqyw\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-3f7399b3-425b-4607-9520-05ba1c73ae14, rgb(230, 230, 230))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-2546f2ec-502d-4b32-8634-ef8a4d8c3ed0, rgb(255, 255, 255))\",borderBottomLeftRadius:80,borderBottomRightRadius:80,borderTopLeftRadius:80,borderTopRightRadius:80},variants:{\"c6LqDTc27-hover\":{backgroundColor:\"var(--token-a21c5608-6f6d-44b8-a4dd-3ec4d069f1f6, rgb(238, 238, 238))\"},\"kvr8VINZQ-hover\":{backgroundColor:\"var(--token-a21c5608-6f6d-44b8-a4dd-3ec4d069f1f6, rgb(238, 238, 238))\"},\"YmyYbh_W1-hover\":{backgroundColor:\"var(--token-a21c5608-6f6d-44b8-a4dd-3ec4d069f1f6, rgb(238, 238, 238))\"},\"yxJmnfVn2-hover\":{backgroundColor:\"var(--token-a21c5608-6f6d-44b8-a4dd-3ec4d069f1f6, rgb(238, 238, 238))\"},yxJmnfVn2:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-ihI6v86XY-PSJh510mh))\"},children:\"Signup\"})}),className:\"framer-10kpud4\",\"data-framer-name\":\"text\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"oVtToSvYD\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-ihI6v86XY-PSJh510mh)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-ihI6v86XY-PSJh510mh\":ihI6v86XYPSJh510mh},text:SWTAQxjCj,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({c6LqDTc27:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-ihI6v86XY-PSJh510mh))\"},children:\"Signup\"})})},kvr8VINZQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-ihI6v86XY-PSJh510mh))\"},children:\"Signup\"})})},yxJmnfVn2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-ihI6v86XY-PSJh510mh))\"},children:\"Signup\"})})}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Lsqay.framer-75oflg, .framer-Lsqay .framer-75oflg { display: block; }\",\".framer-Lsqay.framer-16wyi8p { align-content: flex-end; align-items: flex-end; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Lsqay .framer-1reooxr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 12px 32px 12px 32px; position: relative; width: min-content; }\",\".framer-Lsqay .framer-10kpud4 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Lsqay.framer-16wyi8p, .framer-Lsqay .framer-1reooxr { gap: 0px; } .framer-Lsqay.framer-16wyi8p > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Lsqay.framer-16wyi8p > :first-child, .framer-Lsqay .framer-1reooxr > :first-child { margin-left: 0px; } .framer-Lsqay.framer-16wyi8p > :last-child, .framer-Lsqay .framer-1reooxr > :last-child { margin-right: 0px; } .framer-Lsqay .framer-1reooxr > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-Lsqay.framer-v-1795le3 .framer-1reooxr { padding: 18px 36px 18px 36px; }\",\".framer-Lsqay.framer-v-z5nrrt.framer-16wyi8p { width: 225px; }\",\".framer-Lsqay.framer-v-z5nrrt .framer-1reooxr { flex: 1 0 0px; padding: 18px 36px 18px 36px; width: 1px; }\",\".framer-Lsqay.framer-v-1nu9to6 .framer-1reooxr { padding: 8px 16px 8px 16px; }\",\".framer-Lsqay.framer-v-16wyi8p.hover.framer-16wyi8p, .framer-Lsqay.framer-v-1795le3.hover.framer-16wyi8p, .framer-Lsqay.framer-v-1nu9to6.hover.framer-16wyi8p { padding: 0px 0px 1px 0px; }\",\".framer-Lsqay.framer-v-16wyi8p.hover .framer-1reooxr, .framer-Lsqay.framer-v-16wyi8p.pressed .framer-1reooxr { padding: 12px 24px 12px 24px; }\",\".framer-Lsqay.framer-v-16wyi8p.pressed.framer-16wyi8p, .framer-Lsqay.framer-v-1795le3.pressed.framer-16wyi8p { align-content: flex-start; align-items: flex-start; padding: 1px 0px 0px 0px; }\",\".framer-Lsqay.framer-v-1nu9to6.pressed.framer-16wyi8p { padding: 1px 0px 0px 0px; }\",'.framer-Lsqay[data-border=\"true\"]::after, .framer-Lsqay [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 45\n * @framerIntrinsicWidth 113\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"kvr8VINZQ\":{\"layout\":[\"auto\",\"auto\"]},\"c6LqDTc27\":{\"layout\":[\"fixed\",\"auto\"]},\"yxJmnfVn2\":{\"layout\":[\"auto\",\"auto\"]},\"BJwQmAf6o\":{\"layout\":[\"auto\",\"auto\"]},\"aiEx6HoH1\":{\"layout\":[\"auto\",\"auto\"]},\"xRDsTN0g0\":{\"layout\":[\"auto\",\"auto\"]},\"fIxY_g8_I\":{\"layout\":[\"auto\",\"auto\"]},\"DvnMpSM4d\":{\"layout\":[\"auto\",\"auto\"]},\"qCq9froYz\":{\"layout\":[\"auto\",\"auto\"]},\"NnxMLM7zi\":{\"layout\":[\"fixed\",\"auto\"]},\"J_kPMIacS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"SWTAQxjCj\":\"text\",\"owOcZuT5h\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAHTtJbr9D=withCSS(Component,css,\"framer-Lsqay\");export default FramerAHTtJbr9D;FramerAHTtJbr9D.displayName=\"Buttons/Tertiary\";FramerAHTtJbr9D.defaultProps={height:45,width:113};addPropertyControls(FramerAHTtJbr9D,{variant:{options:[\"YmyYbh_W1\",\"kvr8VINZQ\",\"c6LqDTc27\",\"yxJmnfVn2\"],optionTitles:[\"M\",\"L\",\"L - Fill\",\"S\"],title:\"Variant\",type:ControlType.Enum},SWTAQxjCj:{defaultValue:\"Signup\",displayTextArea:false,title:\"Text\",type:ControlType.String},owOcZuT5h:{title:\"Link\",type:ControlType.Link}});addFonts(FramerAHTtJbr9D,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAHTtJbr9D\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kvr8VINZQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"c6LqDTc27\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yxJmnfVn2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"BJwQmAf6o\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"aiEx6HoH1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xRDsTN0g0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fIxY_g8_I\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"DvnMpSM4d\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qCq9froYz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NnxMLM7zi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"J_kPMIacS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"113\",\"framerIntrinsicHeight\":\"45\",\"framerVariables\":\"{\\\"SWTAQxjCj\\\":\\\"text\\\",\\\"owOcZuT5h\\\":\\\"link\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AHTtJbr9D.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/nA4PHkgcnDuLCzlUSYV0/l0fiLWtE1R9HAqqhV8Ro/gLWasEwdc.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/jQ0hF9o2OglsS5YquQxk/V8RoZFjcYo6HOBlTNHxV/GV3DrOTjX.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/3TPjacJ6AIQIfyZB3XC5/yNuJvyqyHbFo3nybR0kV/mwI_n_ua2.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/A5QIJZDJqFFZYbQT483Q/nNE2X6mGiEfcFrwHspaS/RvZ6bhG3C.js\";const enabledGestures={FW_RY5ZNz:{hover:true},zb95K8xbR:{hover:true}};const cycleOrder=[\"zb95K8xbR\",\"FW_RY5ZNz\"];const serializationHash=\"framer-Rj9ld\";const variantClassNames={FW_RY5ZNz:\"framer-v-h884jn\",zb95K8xbR:\"framer-v-tduo5m\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const negate=value=>{return!value;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"zb95K8xbR\",\"Variant 2\":\"FW_RY5ZNz\"};const getProps=({discount,discount1,discountedPrice,height,id,image,price,productName,tap,width,...props})=>{return{...props,aFd_tHBjt:discountedPrice??props.aFd_tHBjt??\"$199.99\",cFU8_JQc1:tap??props.cFU8_JQc1,CQYytQFJK:discount1??props.CQYytQFJK,F0kOvtSHL:discount??props.F0kOvtSHL,grb9Gw4o4:image??props.grb9Gw4o4??{src:\"https://framerusercontent.com/images/zk4JF4DXzk4Q1LGSifYFYDZhfM.png\"},l4kbsHlhr:price??props.l4kbsHlhr??\"$199.99\",oMppcHFOt:productName??props.oMppcHFOt??\"Femme Chronos Watch\",variant:humanReadableVariantMap[props.variant]??props.variant??\"zb95K8xbR\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,oMppcHFOt,grb9Gw4o4,l4kbsHlhr,F0kOvtSHL,aFd_tHBjt,cFU8_JQc1,CQYytQFJK,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zb95K8xbR\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap8e3k1j=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(cFU8_JQc1){const res=await cFU8_JQc1(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=negate(isSet(F0kOvtSHL));const visible1=isSet(F0kOvtSHL);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-tduo5m\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"zb95K8xbR\",onTap:onTap8e3k1j,ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-4af4edd0-b60e-4052-ab74-53f7674081c8, rgb(248, 248, 248))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,...style},variants:{\"FW_RY5ZNz-hover\":{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-a3cd8b7e-6372-4913-bc42-ec8d572f0939, rgb(250, 249, 247))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\"},\"zb95K8xbR-hover\":{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-a3cd8b7e-6372-4913-bc42-ec8d572f0939, rgb(250, 249, 247))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\"}},...addPropertyOverrides({\"FW_RY5ZNz-hover\":{\"data-border\":true,\"data-framer-name\":undefined},\"zb95K8xbR-hover\":{\"data-border\":true,\"data-framer-name\":undefined},FW_RY5ZNz:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:289,intrinsicWidth:187,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||600)-80-520)/2+0+0)),pixelHeight:289,pixelWidth:187,...toResponsiveImage(grb9Gw4o4),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-ydngyv\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"emCPOkmUR\",...addPropertyOverrides({FW_RY5ZNz:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:289,intrinsicWidth:187,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||600)-80-520)/2+0+0)),pixelHeight:289,pixelWidth:187,sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,...toResponsiveImage(grb9Gw4o4),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),CQYytQFJK&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mpsapg\",\"data-framer-name\":\"Discount\",layoutDependency:layoutDependency,layoutId:\"kDGFecXCA\",style:{backgroundColor:\"var(--token-0022d189-4aff-469e-9e46-3b85b5507340, rgb(181, 154, 108))\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1eh7urg\",\"data-styles-preset\":\"RvZ6bhG3C\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-a3cd8b7e-6372-4913-bc42-ec8d572f0939, rgb(250, 249, 247)))\"},children:\"%\"})}),className:\"framer-pgwjje\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S3LOGjIwd\",style:{\"--extracted-1w1cjl5\":\"var(--token-a3cd8b7e-6372-4913-bc42-ec8d572f0939, rgb(250, 249, 247))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:F0kOvtSHL,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1swycpi\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"ThnRSMsyO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-vpwjun\",\"data-styles-preset\":\"gLWasEwdc\",style:{\"--framer-text-alignment\":\"center\"},children:\"Femme Chronos Watch\"})}),className:\"framer-eu2gbe\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DNheIrahK\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:oMppcHFOt,verticalAlignment:\"top\",withExternalLayout:true}),visible&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qis6w3\",\"data-framer-name\":\"Price\",layoutDependency:layoutDependency,layoutId:\"RO8OL58eN\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9p54we\",\"data-styles-preset\":\"mwI_n_ua2\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(34, 34, 34, 0.5))\"},children:\"$199.99\"})}),className:\"framer-1cpl2bd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"r36hETBNq\",style:{\"--extracted-r6o4lv\":\"rgba(34, 34, 34, 0.5)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:l4kbsHlhr,verticalAlignment:\"top\",withExternalLayout:true})}),visible1&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p5mrx0\",\"data-framer-name\":\"Price\",layoutDependency:layoutDependency,layoutId:\"CHnzBbSSJ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9p54we\",\"data-styles-preset\":\"mwI_n_ua2\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(34, 34, 34, 0.5))\"},children:\"$199.99\"})}),className:\"framer-46yl21\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zJcqYUD37\",style:{\"--extracted-r6o4lv\":\"rgba(34, 34, 34, 0.5)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:aFd_tHBjt,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s5nxt2\",\"data-framer-name\":\"Old Price\",layoutDependency:layoutDependency,layoutId:\"dRNTIOtWQ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1bqkxod\",\"data-styles-preset\":\"GV3DrOTjX\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgba(34, 34, 34, 0.5))\"},children:\"text\"})}),className:\"framer-hdhpvb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PpmKOKLVF\",style:{\"--extracted-1w1cjl5\":\"rgba(34, 34, 34, 0.5)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:l4kbsHlhr,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Rj9ld.framer-1ibjj64, .framer-Rj9ld .framer-1ibjj64 { display: block; }\",\".framer-Rj9ld.framer-tduo5m { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Rj9ld .framer-ydngyv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: center; min-width: 355px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Rj9ld .framer-1mpsapg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 25px; overflow: hidden; padding: 12px 24px 12px 24px; position: absolute; top: 25px; width: min-content; z-index: 1; }\",\".framer-Rj9ld .framer-pgwjje, .framer-Rj9ld .framer-1cpl2bd, .framer-Rj9ld .framer-46yl21, .framer-Rj9ld .framer-hdhpvb { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Rj9ld .framer-1swycpi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 420px; }\",\".framer-Rj9ld .framer-eu2gbe { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Rj9ld .framer-1qis6w3, .framer-Rj9ld .framer-1p5mrx0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Rj9ld .framer-1s5nxt2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 2px 0px 0px 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Rj9ld.framer-tduo5m, .framer-Rj9ld .framer-ydngyv, .framer-Rj9ld .framer-1mpsapg, .framer-Rj9ld .framer-1swycpi, .framer-Rj9ld .framer-1qis6w3, .framer-Rj9ld .framer-1p5mrx0, .framer-Rj9ld .framer-1s5nxt2 { gap: 0px; } .framer-Rj9ld.framer-tduo5m > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-Rj9ld.framer-tduo5m > :first-child, .framer-Rj9ld .framer-ydngyv > :first-child, .framer-Rj9ld .framer-1swycpi > :first-child { margin-top: 0px; } .framer-Rj9ld.framer-tduo5m > :last-child, .framer-Rj9ld .framer-ydngyv > :last-child, .framer-Rj9ld .framer-1swycpi > :last-child { margin-bottom: 0px; } .framer-Rj9ld .framer-ydngyv > *, .framer-Rj9ld .framer-1swycpi > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Rj9ld .framer-1mpsapg > *, .framer-Rj9ld .framer-1s5nxt2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Rj9ld .framer-1mpsapg > :first-child, .framer-Rj9ld .framer-1qis6w3 > :first-child, .framer-Rj9ld .framer-1p5mrx0 > :first-child, .framer-Rj9ld .framer-1s5nxt2 > :first-child { margin-left: 0px; } .framer-Rj9ld .framer-1mpsapg > :last-child, .framer-Rj9ld .framer-1qis6w3 > :last-child, .framer-Rj9ld .framer-1p5mrx0 > :last-child, .framer-Rj9ld .framer-1s5nxt2 > :last-child { margin-right: 0px; } .framer-Rj9ld .framer-1qis6w3 > *, .framer-Rj9ld .framer-1p5mrx0 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-Rj9ld.framer-v-h884jn .framer-ydngyv { align-self: stretch; min-width: unset; width: auto; }\",\".framer-Rj9ld.framer-v-h884jn .framer-pgwjje, .framer-Rj9ld.framer-v-tduo5m.hover .framer-1mpsapg { order: 0; }\",\".framer-Rj9ld.framer-v-h884jn .framer-1swycpi { width: 260px; }\",\".framer-Rj9ld.framer-v-tduo5m.hover .framer-ydngyv { order: 1; }\",\".framer-Rj9ld.framer-v-tduo5m.hover .framer-1swycpi { order: 2; }\",\".framer-Rj9ld.framer-v-h884jn.hover .framer-ydngyv { min-width: unset; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-Rj9ld[data-border=\"true\"]::after, .framer-Rj9ld [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"FW_RY5ZNz\":{\"layout\":[\"auto\",\"auto\"]},\"Q3UAbvSDC\":{\"layout\":[\"auto\",\"auto\"]},\"nfr0Awjng\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"oMppcHFOt\":\"productName\",\"grb9Gw4o4\":\"image\",\"l4kbsHlhr\":\"price\",\"F0kOvtSHL\":\"discount\",\"aFd_tHBjt\":\"discountedPrice\",\"cFU8_JQc1\":\"tap\",\"CQYytQFJK\":\"discount1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerhNZu8RRFT=withCSS(Component,css,\"framer-Rj9ld\");export default FramerhNZu8RRFT;FramerhNZu8RRFT.displayName=\"Product Item v1\";FramerhNZu8RRFT.defaultProps={height:600,width:500};addPropertyControls(FramerhNZu8RRFT,{variant:{options:[\"zb95K8xbR\",\"FW_RY5ZNz\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},oMppcHFOt:{defaultValue:\"Femme Chronos Watch\",displayTextArea:false,title:\"Product Name\",type:ControlType.String},grb9Gw4o4:{__defaultAssetReference:\"data:framer/asset-reference,zk4JF4DXzk4Q1LGSifYFYDZhfM.png?originalFilename=Photo+%2810%29.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},l4kbsHlhr:{defaultValue:\"$199.99\",displayTextArea:false,title:\"Price\",type:ControlType.String},F0kOvtSHL:{defaultValue:\"\",displayTextArea:false,title:\"% Discount\",type:ControlType.String},aFd_tHBjt:{defaultValue:\"$199.99\",displayTextArea:false,title:\"Discounted Price\",type:ControlType.String},cFU8_JQc1:{title:\"Tap\",type:ControlType.EventHandler},CQYytQFJK:{defaultValue:false,title:\"Discount\",type:ControlType.Boolean}});addFonts(FramerhNZu8RRFT,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhNZu8RRFT\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FW_RY5ZNz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Q3UAbvSDC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"nfr0Awjng\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"oMppcHFOt\\\":\\\"productName\\\",\\\"grb9Gw4o4\\\":\\\"image\\\",\\\"l4kbsHlhr\\\":\\\"price\\\",\\\"F0kOvtSHL\\\":\\\"discount\\\",\\\"aFd_tHBjt\\\":\\\"discountedPrice\\\",\\\"cFU8_JQc1\\\":\\\"tap\\\",\\\"CQYytQFJK\\\":\\\"discount1\\\"}\",\"framerIntrinsicWidth\":\"500\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"600\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (dc5e905)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import ButtonsTertiary from\"#framer/local/canvasComponent/AHTtJbr9D/AHTtJbr9D.js\";import NavbarV1 from\"#framer/local/canvasComponent/C00GNlYpF/C00GNlYpF.js\";import ButtonV1 from\"#framer/local/canvasComponent/Fan6sEFDm/Fan6sEFDm.js\";import ProductItemV1 from\"#framer/local/canvasComponent/hNZu8RRFT/hNZu8RRFT.js\";import FooterV1 from\"#framer/local/canvasComponent/wVuTq1Uui/wVuTq1Uui.js\";import HighJewellery from\"#framer/local/collection/gzMNP6isO/gzMNP6isO.js\";import*as sharedStyle4 from\"#framer/local/css/lLeOS03Oq/lLeOS03Oq.js\";import*as sharedStyle3 from\"#framer/local/css/MmbenCHpK/MmbenCHpK.js\";import*as sharedStyle2 from\"#framer/local/css/mwI_n_ua2/mwI_n_ua2.js\";import*as sharedStyle from\"#framer/local/css/xgVv3r7Ti/xgVv3r7Ti.js\";import*as sharedStyle5 from\"#framer/local/css/yjlwvdGmO/yjlwvdGmO.js\";import*as sharedStyle1 from\"#framer/local/css/Zkv9EU188/Zkv9EU188.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarV1Fonts=getFonts(NavbarV1);const VideoFonts=getFonts(Video);const ButtonV1Fonts=getFonts(ButtonV1);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionDivWithFX=withFX(motion.div);const PhosphorFonts=getFonts(Phosphor);const ProductItemV1Fonts=getFonts(ProductItemV1);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const ButtonsTertiaryFonts=getFonts(ButtonsTertiary);const FooterV1Fonts=getFonts(FooterV1);const ContainerWithFX=withFX(Container);const breakpoints={eCuGh4QtI:\"(min-width: 810px) and (max-width: 1439px)\",ECxTPfc4s:\"(min-width: 1440px) and (max-width: 1919px)\",WQLkyLRf1:\"(min-width: 1920px)\",XqOpNTleN:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-3uzKd\";const variantClassNames={eCuGh4QtI:\"framer-v-eu8m58\",ECxTPfc4s:\"framer-v-xpsovv\",WQLkyLRf1:\"framer-v-72rtr7\",XqOpNTleN:\"framer-v-i4een9\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition1={bounce:0,delay:.05,duration:1,type:\"spring\"};const textEffect={effect:animation,tokenization:\"character\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition2={bounce:0,delay:.05,duration:.4,type:\"spring\"};const textEffect1={effect:animation,tokenization:\"character\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transition3={damping:60,delay:0,mass:1.2,stiffness:200,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition4={bounce:.2,delay:0,duration:1,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:150};const transition5={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition5};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition6={damping:60,delay:.1,mass:1.2,stiffness:200,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:20};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition7={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const animation9={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const animation10={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:20};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop Large\":\"WQLkyLRf1\",Desktop:\"ECxTPfc4s\",Phone:\"XqOpNTleN\",Tablet:\"eCuGh4QtI\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,rd8sfB8PZe0WeBGgyt,Oz67UHYyqcmDjqXlrX,y0kv1Yf42cmDjqXlrX,Lfn2AHJuncmDjqXlrX,UOHZf7605cmDjqXlrX,NAemA68CUcmDjqXlrX,fx7MoKHMscmDjqXlrX,idcmDjqXlrX,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"XqOpNTleN\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"XqOpNTleN\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"ECxTPfc4s\",\"eCuGh4QtI\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"ECxTPfc4s\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"eCuGh4QtI\")return true;return false;};const router=useRouter();const isDisplayed5=()=>{if(!isBrowser())return true;if([\"eCuGh4QtI\",\"XqOpNTleN\"].includes(baseVariant))return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19mjh0p\",\"data-framer-name\":\"Banner\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yng45y\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1auvpq8\",\"data-styles-preset\":\"xgVv3r7Ti\",style:{\"--framer-text-color\":\"var(--token-9114fa1c-d6f2-4f3c-ab02-d1eb5d730cf7, rgb(20, 37, 131))\"},children:\"Central City Shopping Centre\"})}),className:\"framer-1tcqvzb hidden-i4een9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1auvpq8\",\"data-styles-preset\":\"xgVv3r7Ti\",style:{\"--framer-text-color\":\"var(--token-9114fa1c-d6f2-4f3c-ab02-d1eb5d730cf7, rgb(20, 37, 131))\"},children:\"Visit us in-store to discover more\"})}),className:\"framer-d0gghx hidden-i4een9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XqOpNTleN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1auvpq8\",\"data-styles-preset\":\"xgVv3r7Ti\",style:{\"--framer-text-color\":\"var(--token-9114fa1c-d6f2-4f3c-ab02-d1eb5d730cf7, rgb(20, 37, 131))\"},children:\"Central City Shopping Centre\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1auvpq8\",\"data-styles-preset\":\"xgVv3r7Ti\",style:{\"--framer-text-color\":\"var(--token-9114fa1c-d6f2-4f3c-ab02-d1eb5d730cf7, rgb(20, 37, 131))\"},children:\"(604) 581-1132\"})}),className:\"framer-8x686g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1auvpq8\",\"data-styles-preset\":\"xgVv3r7Ti\",style:{\"--framer-text-color\":\"var(--token-9114fa1c-d6f2-4f3c-ab02-d1eb5d730cf7, rgb(20, 37, 131))\"},children:\"(604) 581-1132\"})}),className:\"framer-l6q550 hidden-72rtr7 hidden-xpsovv hidden-eu8m58\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v3ty9m\",\"data-framer-name\":\"Navigation\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{width:`min(${componentViewport?.width||\"100vw\"}, 1520px)`},ECxTPfc4s:{width:`min(${componentViewport?.width||\"100vw\"} - 100px, 1520px)`},XqOpNTleN:{width:`min(${componentViewport?.width||\"100vw\"}, 1520px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:`min(${componentViewport?.width||\"100vw\"} - 400px, 1520px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e3vrbx-container\",nodeId:\"XV51swaop\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{variant:\"LJpTKeQz2\"},XqOpNTleN:{variant:\"Sv3sAQ7Qv\"}},children:/*#__PURE__*/_jsx(NavbarV1,{height:\"100%\",id:\"XV51swaop\",layoutId:\"XV51swaop\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"iwfSfJD1S\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(rd8sfB8PZe0WeBGgyt)},className:\"framer-19oplmr\",\"data-framer-name\":\"Header Image\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k4a2m2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DCWm1oMqM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"var(--token-a3cd8b7e-6372-4913-bc42-ec8d572f0939, rgb(250, 249, 247))\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"DCWm1oMqM\",isMixedBorderRadius:false,layoutId:\"DCWm1oMqM\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/7LwBgio9tThHlla4HHt4U0wcvk.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%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XqOpNTleN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QWJ5c3NpbmljYSBTSUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Abyssinica SIL\", \"Abyssinica SIL Placeholder\", serif',\"--framer-font-size\":\"38px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d6c48582-5c95-49a9-9327-80b3d5478be3, rgb(255, 255, 255))\"},children:\"Live in Glamour\"})}),transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QWJ5c3NpbmljYSBTSUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Abyssinica SIL\", \"Abyssinica SIL Placeholder\", serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d6c48582-5c95-49a9-9327-80b3d5478be3, rgb(255, 255, 255))\"},children:\"Live in Glamour\"})}),className:\"framer-1bkitv8 hidden-xpsovv hidden-eu8m58\",effect:textEffect,fonts:[\"GF;Abyssinica SIL-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XqOpNTleN:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6)\"},children:\"Creating Custom Jewellery Since 1984\"})}),className:\"framer-1nv4rv1 hidden-xpsovv hidden-eu8m58\",effect:textEffect1,fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-funjxf\",\"data-framer-name\":\"Overlay\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QWJ5c3NpbmljYSBTSUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Abyssinica SIL\", \"Abyssinica SIL Placeholder\", serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d6c48582-5c95-49a9-9327-80b3d5478be3, rgb(255, 255, 255))\"},children:\"Live in Glamour\"})}),className:\"framer-zda5m4 hidden-72rtr7 hidden-eu8m58 hidden-i4een9\",effect:textEffect,fonts:[\"GF;Abyssinica SIL-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.4)\"},children:\"Creating Custom Jewellery Since 1984\"})}),className:\"framer-5fityh hidden-72rtr7 hidden-eu8m58 hidden-i4een9\",effect:textEffect1,fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QWJ5c3NpbmljYSBTSUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Abyssinica SIL\", \"Abyssinica SIL Placeholder\", serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d6c48582-5c95-49a9-9327-80b3d5478be3, rgb(255, 255, 255))\"},children:\"Live in Glamour\"})}),className:\"framer-1i05sjj hidden-72rtr7 hidden-xpsovv hidden-i4een9\",effect:textEffect,fonts:[\"GF;Abyssinica SIL-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.4)\"},children:\"Creating Custom Jewellery Since 1984\"})}),className:\"framer-6ytajw hidden-72rtr7 hidden-xpsovv hidden-i4een9\",effect:textEffect1,fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qUE6OWLzn\"},implicitPathVariables:undefined},{href:{webPageId:\"qUE6OWLzn\"},implicitPathVariables:undefined},{href:{webPageId:\"qUE6OWLzn\"},implicitPathVariables:undefined},{href:{webPageId:\"qUE6OWLzn\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ptxjfe-container\",nodeId:\"hUzQ5T4kE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{pCKioTrFI:resolvedLinks[2]},ECxTPfc4s:{pCKioTrFI:resolvedLinks[1]},XqOpNTleN:{pCKioTrFI:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(ButtonV1,{height:\"100%\",id:\"hUzQ5T4kE\",layoutId:\"hUzQ5T4kE\",pCKioTrFI:resolvedLinks[0],tIt8ouJc0:\"View all\",variant:\"lJUGGr0bH\",width:\"100%\"})})})})})]})]}),isDisplayed5()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ao0ocr hidden-eu8m58 hidden-i4een9\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-13jetya\",\"data-framer-appear-id\":\"13jetya\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-23xjs3\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1smcorw\",\"data-styles-preset\":\"Zkv9EU188\",style:{\"--framer-text-color\":\"var(--token-1ccb7fbe-c963-4485-ac07-36178ace9f3d, rgb(0, 85, 165))\"},children:\"Custom Made Jewellery\"})}),className:\"framer-1jkesij\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9p54we\",\"data-styles-preset\":\"mwI_n_ua2\",children:\"Create Your Dream Jewellery Our expert artisans craft one-of-a-kind rings, necklaces, bracelets, and more, turning your vision into exquisite, handcrafted pieces. Whether it's an engagement ring, heirloom, or custom redesign, we bring your ideas to life.\"})}),className:\"framer-15i3nn4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ey24pp\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VhJLUgIa8\"},implicitPathVariables:undefined},{href:{webPageId:\"VhJLUgIa8\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-v6m0xa-container\",nodeId:\"AY65Gt28N\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ECxTPfc4s:{pCKioTrFI:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonV1,{height:\"100%\",id:\"AY65Gt28N\",layoutId:\"AY65Gt28N\",pCKioTrFI:resolvedLinks1[0],tIt8ouJc0:\"CONTACT US\",variant:\"Vsg4EQhA0\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jsu8zc\",\"data-framer-name\":\"Images\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qivscb\",\"data-framer-name\":\"01\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:532,intrinsicWidth:365,pixelHeight:1600,pixelWidth:1600,sizes:\"365px\",src:\"https://framerusercontent.com/images/j77dmihVKzhIHBGdvK7k2KRup4.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/j77dmihVKzhIHBGdvK7k2KRup4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/j77dmihVKzhIHBGdvK7k2KRup4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/j77dmihVKzhIHBGdvK7k2KRup4.jpg 1600w\"},className:\"framer-bflb7z\",\"data-framer-name\":\"Placeholder\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pwfgxk\",\"data-framer-name\":\"02\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:604,intrinsicWidth:365,pixelHeight:1600,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"365px\",src:\"https://framerusercontent.com/images/95VaMFLF1wScvKTBo4Vu4tu14.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/95VaMFLF1wScvKTBo4Vu4tu14.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/95VaMFLF1wScvKTBo4Vu4tu14.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/95VaMFLF1wScvKTBo4Vu4tu14.jpg 1600w\"},className:\"framer-1idb1mv\",\"data-framer-name\":\"Placeholder\"}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"p8lbI27Kx\"},motionChild:true,nodeId:\"AUTKlZMM8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-at41y framer-lux5qc\",\"data-framer-name\":\"Button\"})})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-98f1fs\",\"data-framer-name\":\"Categories\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rfx6d9\",\"data-framer-name\":\"Content wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x7877o\",\"data-framer-name\":\"Text wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-9czjpw\",\"data-styles-preset\":\"MmbenCHpK\",style:{\"--framer-text-color\":\"var(--token-1ccb7fbe-c963-4485-ac07-36178ace9f3d, rgb(0, 85, 165))\"},children:\"Natural Diamond Jewellery\"})}),className:\"framer-7jex8c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9p54we\",\"data-styles-preset\":\"mwI_n_ua2\",children:\"Explore our curated collection of natural diamond Jewellery in a variety of stunning styles.\"})}),className:\"framer-616akv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6acp3d\",\"data-framer-name\":\"Bento wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tr9h2d\",\"data-framer-name\":\"Bento element\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d6evly\",\"data-framer-name\":\"Content wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ake9jc\",\"data-framer-name\":\"Text wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-hopdu4\",\"data-styles-preset\":\"lLeOS03Oq\",children:\"All Products\"})}),className:\"framer-1xrun2u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1we4edw\",\"data-styles-preset\":\"yjlwvdGmO\",children:\"Discover endless possibilities with our All Products category. Shop now for everything you need in one convenient place.\"})}),className:\"framer-1bhwn75\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qUE6OWLzn\"},implicitPathVariables:undefined},{href:{webPageId:\"qUE6OWLzn\"},implicitPathVariables:undefined},{href:{webPageId:\"qUE6OWLzn\"},implicitPathVariables:undefined},{href:{webPageId:\"qUE6OWLzn\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3zq11l-container\",nodeId:\"AqIbOuQLr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{pCKioTrFI:resolvedLinks2[2]},ECxTPfc4s:{pCKioTrFI:resolvedLinks2[1]},XqOpNTleN:{pCKioTrFI:resolvedLinks2[3]}},children:/*#__PURE__*/_jsx(ButtonV1,{height:\"100%\",id:\"AqIbOuQLr\",layoutId:\"AqIbOuQLr\",pCKioTrFI:resolvedLinks2[0],tIt8ouJc0:\"All Products\",variant:\"lJUGGr0bH\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:746,intrinsicWidth:1216,pixelHeight:1600,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"500px\",src:\"https://framerusercontent.com/images/ShpaqIf0DazELitO5rPBRjVnHio.jpg\",srcSet:\"https://framerusercontent.com/images/ShpaqIf0DazELitO5rPBRjVnHio.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ShpaqIf0DazELitO5rPBRjVnHio.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ShpaqIf0DazELitO5rPBRjVnHio.jpg 1600w\"}},XqOpNTleN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:746,intrinsicWidth:1216,pixelHeight:1600,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1248px)`,src:\"https://framerusercontent.com/images/ShpaqIf0DazELitO5rPBRjVnHio.jpg\",srcSet:\"https://framerusercontent.com/images/ShpaqIf0DazELitO5rPBRjVnHio.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ShpaqIf0DazELitO5rPBRjVnHio.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ShpaqIf0DazELitO5rPBRjVnHio.jpg 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:746,intrinsicWidth:1216,pixelHeight:1600,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1248px) - 24px) / 2, 1px)`,src:\"https://framerusercontent.com/images/ShpaqIf0DazELitO5rPBRjVnHio.jpg\",srcSet:\"https://framerusercontent.com/images/ShpaqIf0DazELitO5rPBRjVnHio.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ShpaqIf0DazELitO5rPBRjVnHio.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ShpaqIf0DazELitO5rPBRjVnHio.jpg 1600w\"},className:\"framer-1cj52xd\",\"data-framer-name\":\"Image\",whileHover:animation5})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gdlisv\",\"data-framer-name\":\"Right bento wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m260zw\",\"data-framer-name\":\"Bento element\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zzgqhq\",\"data-framer-name\":\"Content wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lk8tyb\",\"data-framer-name\":\"Text wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-hopdu4\",\"data-styles-preset\":\"lLeOS03Oq\",children:\"Engagement Rings\"})}),className:\"framer-1s9pfo8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1we4edw\",\"data-styles-preset\":\"yjlwvdGmO\",children:\"Engagement rings illustrate your one-of-a-kind love story in sparkle.\"})})},ECxTPfc4s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1we4edw\",\"data-styles-preset\":\"yjlwvdGmO\",children:\"Explore our top engagement rings set with handpicked diamonds.\"})})},XqOpNTleN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1we4edw\",\"data-styles-preset\":\"yjlwvdGmO\",children:\"Explore our top engagement rings set with handpicked diamonds.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1we4edw\",\"data-styles-preset\":\"yjlwvdGmO\",children:\"Experience crystal-clear clarity and vibrant visuals with our Displays.\"})}),className:\"framer-1u8g92j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"a73WASmjN\"},implicitPathVariables:undefined},{href:{webPageId:\"a73WASmjN\"},implicitPathVariables:undefined},{href:{webPageId:\"a73WASmjN\"},implicitPathVariables:undefined},{href:{webPageId:\"a73WASmjN\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1imwry2-container\",nodeId:\"vGj9GL5QY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{pCKioTrFI:resolvedLinks3[2]},ECxTPfc4s:{pCKioTrFI:resolvedLinks3[1]},XqOpNTleN:{pCKioTrFI:resolvedLinks3[3]}},children:/*#__PURE__*/_jsx(ButtonV1,{height:\"100%\",id:\"vGj9GL5QY\",layoutId:\"vGj9GL5QY\",pCKioTrFI:resolvedLinks3[0],tIt8ouJc0:\"Rings\",variant:\"lJUGGr0bH\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XqOpNTleN:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:600,intrinsicWidth:664,pixelHeight:1600,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1248px)`,src:\"https://framerusercontent.com/images/csf5jIz4avsB8fijqtHk6qPGEro.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/csf5jIz4avsB8fijqtHk6qPGEro.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/csf5jIz4avsB8fijqtHk6qPGEro.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/csf5jIz4avsB8fijqtHk6qPGEro.jpg 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:600,intrinsicWidth:664,pixelHeight:1600,pixelWidth:1600,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/csf5jIz4avsB8fijqtHk6qPGEro.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/csf5jIz4avsB8fijqtHk6qPGEro.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/csf5jIz4avsB8fijqtHk6qPGEro.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/csf5jIz4avsB8fijqtHk6qPGEro.jpg 1600w\"},className:\"framer-19034ww\",\"data-framer-name\":\"Image\",whileHover:animation5})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fa8d67\",\"data-framer-name\":\"R-B bento wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gkniqu\",\"data-framer-name\":\"Bento element\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:474,intrinsicWidth:584,pixelHeight:1600,pixelWidth:1600,sizes:\"500px\",src:\"https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg 1600w\"}},XqOpNTleN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:474,intrinsicWidth:584,pixelHeight:1600,pixelWidth:1600,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1248px)`,src:\"https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:474,intrinsicWidth:584,pixelHeight:1600,pixelWidth:1600,sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1248px) - 24px) / 2, 1px)`,src:\"https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg 1600w\"},className:\"framer-89mlp1\",\"data-framer-name\":\"Image\",whileHover:animation5})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"RaykLeoob\"},implicitPathVariables:undefined},{href:{webPageId:\"RaykLeoob\"},implicitPathVariables:undefined},{href:{webPageId:\"RaykLeoob\"},implicitPathVariables:undefined},{href:{webPageId:\"RaykLeoob\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s2gwpf-container\",nodeId:\"AACL6Xwt9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{pCKioTrFI:resolvedLinks4[2]},ECxTPfc4s:{pCKioTrFI:resolvedLinks4[1]},XqOpNTleN:{pCKioTrFI:resolvedLinks4[3]}},children:/*#__PURE__*/_jsx(ButtonV1,{height:\"100%\",id:\"AACL6Xwt9\",layoutId:\"AACL6Xwt9\",pCKioTrFI:resolvedLinks4[0],tIt8ouJc0:\"Bracelets\",variant:\"lJUGGr0bH\",width:\"100%\"})})})})})]})})]})]})]})}),isDisplayed5()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-mp6bx3 hidden-eu8m58 hidden-i4een9\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-53izun\",\"data-framer-appear-id\":\"53izun\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11f1prt\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1smcorw\",\"data-styles-preset\":\"Zkv9EU188\",style:{\"--framer-text-color\":\"var(--token-1ccb7fbe-c963-4485-ac07-36178ace9f3d, rgb(0, 85, 165))\"},children:\"Gemstone Jewellery\"})}),className:\"framer-1n0yjs9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9p54we\",\"data-styles-preset\":\"mwI_n_ua2\",children:\"Our collection features stunning natural gemstones in timeless designs. Vibrant red rubies capture passion and energy. Sapphires offer elegant blue depth and remarkable durability. Emeralds showcase rich green beauty that stands out in any setting. Each gemstone is handcrafted to highlight its unique character and natural brilliance.\"})}),className:\"framer-igpfcz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s2jayx\",\"data-framer-name\":\"Images\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13vw8k7\",\"data-framer-name\":\"01\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:532,intrinsicWidth:365,pixelHeight:1600,pixelWidth:1600,sizes:\"365px\",src:\"https://framerusercontent.com/images/domjsoyY2H7dhjphiWWCtn4s0.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/domjsoyY2H7dhjphiWWCtn4s0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/domjsoyY2H7dhjphiWWCtn4s0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/domjsoyY2H7dhjphiWWCtn4s0.jpg 1600w\"},className:\"framer-1m13wnb\",\"data-framer-name\":\"Placeholder\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lof4wf\",\"data-framer-name\":\"02\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:604,intrinsicWidth:365,pixelHeight:1600,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"365px\",src:\"https://framerusercontent.com/images/VakI0PYeLK7Gq5XqOy1IWWx9ec.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/VakI0PYeLK7Gq5XqOy1IWWx9ec.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VakI0PYeLK7Gq5XqOy1IWWx9ec.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VakI0PYeLK7Gq5XqOy1IWWx9ec.jpg 1600w\"},className:\"framer-181hmu1\",\"data-framer-name\":\"Placeholder\"}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"p8lbI27Kx\"},motionChild:true,nodeId:\"XZVjIWRTm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-megx7l framer-lux5qc\",\"data-framer-name\":\"Button\"})})]})]})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-3k4j6s hidden-i4een9\",\"data-framer-name\":\"Categories\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wmd92t\",\"data-framer-name\":\"Content wrapper\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19r3ls9\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"mJs52tIMV\",data:HighJewellery,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},orderBy:[{collection:\"mJs52tIMV\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[],where:{collection:\"mJs52tIMV\",name:\"qOisbhO0d\",type:\"Identifier\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{})})})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-13otspr\",\"data-framer-appear-id\":\"13otspr\",\"data-framer-name\":\"Content wrapper\",initial:animation9,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-39e5lb\",\"data-framer-name\":\"Text wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-9czjpw\",\"data-styles-preset\":\"MmbenCHpK\",style:{\"--framer-text-color\":\"var(--token-1ccb7fbe-c963-4485-ac07-36178ace9f3d, rgb(0, 85, 165))\"},children:\"Lab-Created Diamonds\"})}),className:\"framer-gy3rk4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ECxTPfc4s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9p54we\",\"data-styles-preset\":\"mwI_n_ua2\",children:\"Reach the perfect glamour style with our exclusive jewelry collections.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9p54we\",\"data-styles-preset\":\"mwI_n_ua2\",children:\"Explore our diverse range of categories tailored to meet your specific needs and interests.\"})}),className:\"framer-1wzxzr9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ev3xv3\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-1mlqum9\",\"data-framer-appear-id\":\"1mlqum9\",\"data-framer-name\":\"Bento wrapper\",initial:animation10,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xe8584\",\"data-framer-name\":\"Bento element\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-o04y9d\",\"data-framer-name\":\"Content wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ejz3tx\",\"data-framer-name\":\"Text wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-hopdu4\",\"data-styles-preset\":\"lLeOS03Oq\",children:\"Engagement Rings\"})}),className:\"framer-1tt1izu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1we4edw\",\"data-styles-preset\":\"yjlwvdGmO\",children:\"Engagement rings illustrate your one-of-a-kind love story in sparkle.\"})})},ECxTPfc4s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1we4edw\",\"data-styles-preset\":\"yjlwvdGmO\",children:\"Engagement rings illustrate your one-of-a-kind love story in sparkle.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1we4edw\",\"data-styles-preset\":\"yjlwvdGmO\",children:\"Discover endless possibilities with our All Products category. Shop now for everything you need in one convenient place.\"})}),className:\"framer-1skqaqw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:746,intrinsicWidth:1216,pixelHeight:1600,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"500px\",src:\"https://framerusercontent.com/images/COTMwEthwgdMrPxZzjiAHC8zf4.jpg\",srcSet:\"https://framerusercontent.com/images/COTMwEthwgdMrPxZzjiAHC8zf4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/COTMwEthwgdMrPxZzjiAHC8zf4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/COTMwEthwgdMrPxZzjiAHC8zf4.jpg 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:746,intrinsicWidth:1216,pixelHeight:1600,pixelWidth:1600,positionX:\"center\",positionY:\"bottom\",sizes:\"400px\",src:\"https://framerusercontent.com/images/COTMwEthwgdMrPxZzjiAHC8zf4.jpg\",srcSet:\"https://framerusercontent.com/images/COTMwEthwgdMrPxZzjiAHC8zf4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/COTMwEthwgdMrPxZzjiAHC8zf4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/COTMwEthwgdMrPxZzjiAHC8zf4.jpg 1600w\"},className:\"framer-j6llww\",\"data-framer-name\":\"Image\",whileHover:animation5})})]})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-13hgyrf\",\"data-framer-appear-id\":\"13hgyrf\",\"data-framer-name\":\"Bento wrapper\",initial:animation10,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bhmogb\",\"data-framer-name\":\"Bento element\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:746,intrinsicWidth:1216,pixelHeight:1600,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"500px\",src:\"https://framerusercontent.com/images/aLbU1mxZTrQVXtDdRWQf3zA8bY.jpg\",srcSet:\"https://framerusercontent.com/images/aLbU1mxZTrQVXtDdRWQf3zA8bY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aLbU1mxZTrQVXtDdRWQf3zA8bY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aLbU1mxZTrQVXtDdRWQf3zA8bY.jpg 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:746,intrinsicWidth:1216,pixelHeight:1600,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/aLbU1mxZTrQVXtDdRWQf3zA8bY.jpg\",srcSet:\"https://framerusercontent.com/images/aLbU1mxZTrQVXtDdRWQf3zA8bY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aLbU1mxZTrQVXtDdRWQf3zA8bY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aLbU1mxZTrQVXtDdRWQf3zA8bY.jpg 1600w\"},className:\"framer-1duu2rz\",\"data-framer-name\":\"Image\",whileHover:animation5})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16pdhq5\",\"data-framer-name\":\"Content wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cskxow\",\"data-framer-name\":\"Text wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-hopdu4\",\"data-styles-preset\":\"lLeOS03Oq\",children:\"Pav\\xe9 Rings\"})}),className:\"framer-1nwy4ym\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1we4edw\",\"data-styles-preset\":\"yjlwvdGmO\",children:'French for \"paved,\" pav\\xe9 engagement rings feature small diamonds secured by tiny metal beads. The close arrangement of the gems creates a shimmering, sparkling.'})}),className:\"framer-e9b4s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-ebqbba\",\"data-framer-appear-id\":\"ebqbba\",\"data-framer-name\":\"Bento wrapper\",initial:animation10,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pcu253\",\"data-framer-name\":\"Bento element\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iz8cck\",\"data-framer-name\":\"Content wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bivyoz\",\"data-framer-name\":\"Text wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-hopdu4\",\"data-styles-preset\":\"lLeOS03Oq\",children:\"Tennis Bracelets\"})}),className:\"framer-12ecbvw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1we4edw\",\"data-styles-preset\":\"yjlwvdGmO\",children:\"Tennis bracelets, a must-have piece in any jewelry wardrobe, feature a row of diamonds that wrap all around the wrist.\"})})},ECxTPfc4s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1we4edw\",\"data-styles-preset\":\"yjlwvdGmO\",children:\"Tennis bracelets, a must-have piece in any jewelry wardrobe, feature a row of diamonds that wrap all around the wrist.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1we4edw\",\"data-styles-preset\":\"yjlwvdGmO\",children:\"Discover endless possibilities with our All Products category. Shop now for everything you need in one convenient place.\"})}),className:\"framer-18pa4mb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:746,intrinsicWidth:1216,pixelHeight:1600,pixelWidth:1600,sizes:\"500px\",src:\"https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg\",srcSet:\"https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:746,intrinsicWidth:1216,pixelHeight:1600,pixelWidth:1600,sizes:\"400px\",src:\"https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg\",srcSet:\"https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg 1600w\"},className:\"framer-1na0952\",\"data-framer-name\":\"Image\",whileHover:animation5})})]})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"NntaAfzEj\"},implicitPathVariables:undefined},{href:{webPageId:\"NntaAfzEj\"},implicitPathVariables:undefined},{href:{webPageId:\"NntaAfzEj\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d6771c-container\",nodeId:\"KP0iJU7bs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{pCKioTrFI:resolvedLinks5[2],tIt8ouJc0:\"View Lab-Created\"},ECxTPfc4s:{pCKioTrFI:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(ButtonV1,{height:\"100%\",id:\"KP0iJU7bs\",layoutId:\"KP0iJU7bs\",pCKioTrFI:resolvedLinks5[0],tIt8ouJc0:\"View Lab-Created Jewellery\",variant:\"Vsg4EQhA0\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xys9hw\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"IUzj5d8jx\",data:HighJewellery,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},orderBy:[{collection:\"IUzj5d8jx\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[],where:{collection:\"IUzj5d8jx\",name:\"qOisbhO0d\",type:\"Identifier\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f2rqph\",\"data-framer-name\":\"Bar section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4ulo4a\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-9czjpw\",\"data-styles-preset\":\"MmbenCHpK\",style:{\"--framer-text-color\":\"var(--token-1ccb7fbe-c963-4485-ac07-36178ace9f3d, rgb(0, 85, 165))\"},children:\"Our Services\"})}),className:\"framer-npqyt3\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nyrkyh\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-7bhlwh\",\"data-framer-appear-id\":\"7bhlwh\",\"data-framer-name\":\"Box\",initial:animation10,optimized:true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12ri06v\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pzdxb7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"L_gPJi6Ij\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-1ccb7fbe-c963-4485-ac07-36178ace9f3d, rgb(0, 85, 165))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"HandPalm\",id:\"L_gPJi6Ij\",layoutId:\"L_gPJi6Ij\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ufb5g1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61e5ee56-3594-4358-94d0-c3752e3672e3, rgb(0, 0, 0))\"},children:\"In house jewellery repairs  & cleaning\"})})},XqOpNTleN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-61e5ee56-3594-4358-94d0-c3752e3672e3, rgb(0, 0, 0))\"},children:\"In house jewellery repairs  & cleaning\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-61e5ee56-3594-4358-94d0-c3752e3672e3, rgb(0, 0, 0))\"},children:\"In house jewellery repairs  & cleaning\"})}),className:\"framer-229hoc\",\"data-framer-name\":\"Title\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-1ldyka4\",\"data-framer-appear-id\":\"1ldyka4\",\"data-framer-name\":\"Box\",initial:animation10,optimized:true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bxljtw\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rl7z4m-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"btqLB5j2z\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-1ccb7fbe-c963-4485-ac07-36178ace9f3d, rgb(0, 85, 165))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Seal\",id:\"btqLB5j2z\",layoutId:\"btqLB5j2z\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sqfh38\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61e5ee56-3594-4358-94d0-c3752e3672e3, rgb(0, 0, 0))\"},children:\"Appraisal certificate completed by a GIA-certified gemologist\"})})},XqOpNTleN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-61e5ee56-3594-4358-94d0-c3752e3672e3, rgb(0, 0, 0))\"},children:\"Appraisal certificate completed by a GIA-certified gemologist\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-61e5ee56-3594-4358-94d0-c3752e3672e3, rgb(0, 0, 0))\"},children:\"Appraisal certificate completed by a GIA-certified gemologist\"})}),className:\"framer-jla3j7\",\"data-framer-name\":\"Title\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-1782dls\",\"data-framer-appear-id\":\"1782dls\",\"data-framer-name\":\"Box\",initial:animation10,optimized:true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19x1xjb\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-k2w7p0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fnBCX35Nm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-1ccb7fbe-c963-4485-ac07-36178ace9f3d, rgb(0, 85, 165))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Clock\",id:\"fnBCX35Nm\",layoutId:\"fnBCX35Nm\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11caiu0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61e5ee56-3594-4358-94d0-c3752e3672e3, rgb(0, 0, 0))\"},children:\"Watch Repair & Battery Replacement\"})})},XqOpNTleN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-61e5ee56-3594-4358-94d0-c3752e3672e3, rgb(0, 0, 0))\"},children:\"Watch Repair & Battery Replacement\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-61e5ee56-3594-4358-94d0-c3752e3672e3, rgb(0, 0, 0))\"},children:\"Watch Repair & Battery Replacement\"})}),className:\"framer-1eng640\",\"data-framer-name\":\"Title\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-1m3iuqx hidden-i4een9\",\"data-framer-name\":\"Categories\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b39hqf\",\"data-framer-name\":\"Content wrapper\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1x2rp00\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"QTjtm1SH4\",data:HighJewellery,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},orderBy:[{collection:\"QTjtm1SH4\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[],where:{collection:\"QTjtm1SH4\",name:\"qOisbhO0d\",type:\"Identifier\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3bpkma\",\"data-framer-name\":\"Content wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19we9j\",\"data-framer-name\":\"Text wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-9czjpw\",\"data-styles-preset\":\"MmbenCHpK\",style:{\"--framer-text-color\":\"var(--token-1ccb7fbe-c963-4485-ac07-36178ace9f3d, rgb(0, 85, 165))\"},children:\"Featured Collections\"})}),className:\"framer-mfpo6c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ECxTPfc4s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9p54we\",\"data-styles-preset\":\"mwI_n_ua2\",children:\"Reach the perfect glamour style with our exclusive jewelry collections.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9p54we\",\"data-styles-preset\":\"mwI_n_ua2\",children:\"Explore our diverse range of categories tailored to meet your specific needs and interests.\"})}),className:\"framer-b35har\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1eoatqf\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"cmDjqXlrX\",data:HighJewellery,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},orderBy:[{collection:\"cmDjqXlrX\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"cmDjqXlrX\",name:\"Oz67UHYyq\",type:\"Identifier\"},{collection:\"cmDjqXlrX\",name:\"y0kv1Yf42\",type:\"Identifier\"},{collection:\"cmDjqXlrX\",name:\"Lfn2AHJun\",type:\"Identifier\"},{collection:\"cmDjqXlrX\",name:\"UOHZf7605\",type:\"Identifier\"},{collection:\"cmDjqXlrX\",name:\"NAemA68CU\",type:\"Identifier\"},{collection:\"cmDjqXlrX\",name:\"fx7MoKHMs\",type:\"Identifier\"},{collection:\"cmDjqXlrX\",name:\"id\",type:\"Identifier\"}],where:{collection:\"cmDjqXlrX\",name:\"qOisbhO0d\",type:\"Identifier\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({fx7MoKHMs:fx7MoKHMscmDjqXlrX,id:idcmDjqXlrX,Lfn2AHJun:Lfn2AHJuncmDjqXlrX,NAemA68CU:NAemA68CUcmDjqXlrX,Oz67UHYyq:Oz67UHYyqcmDjqXlrX,UOHZf7605:UOHZf7605cmDjqXlrX,y0kv1Yf42:y0kv1Yf42cmDjqXlrX},index)=>{Oz67UHYyqcmDjqXlrX??=\"\";y0kv1Yf42cmDjqXlrX??=\"\";UOHZf7605cmDjqXlrX??=\"\";NAemA68CUcmDjqXlrX??=\"\";fx7MoKHMscmDjqXlrX??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`cmDjqXlrX-${idcmDjqXlrX}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Oz67UHYyq:Oz67UHYyqcmDjqXlrX},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Oz67UHYyq:Oz67UHYyqcmDjqXlrX},webPageId:\"d8xdvnFw6\"},motionChild:true,nodeId:\"DA8uoCPvE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-r3gtqq framer-lux5qc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:`max(max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1248px), 490px), 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zivlu5-container\",nodeId:\"rFds8Xa0E\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ProductItemV1,{aFd_tHBjt:fx7MoKHMscmDjqXlrX,CQYytQFJK:isSet(NAemA68CUcmDjqXlrX),F0kOvtSHL:NAemA68CUcmDjqXlrX,grb9Gw4o4:toResponsiveImage(Lfn2AHJuncmDjqXlrX),height:\"100%\",id:\"rFds8Xa0E\",l4kbsHlhr:UOHZf7605cmDjqXlrX,layoutId:\"rFds8Xa0E\",oMppcHFOt:y0kv1Yf42cmDjqXlrX,style:{height:\"100%\",width:\"100%\"},variant:\"zb95K8xbR\",width:\"100%\"})})})})})})},idcmDjqXlrX);})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lapq0o\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"EhEwyjOyz\",data:HighJewellery,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},orderBy:[{collection:\"EhEwyjOyz\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[],where:{collection:\"EhEwyjOyz\",name:\"qOisbhO0d\",type:\"Identifier\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pahnwt\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-9czjpw\",\"data-styles-preset\":\"MmbenCHpK\",style:{\"--framer-text-color\":\"var(--token-1ccb7fbe-c963-4485-ac07-36178ace9f3d, rgb(0, 85, 165))\"},children:\"Our watch brands\"})}),className:\"framer-d3g6ii\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1juyhce\",children:[/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation8,background:{alt:\"\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:39,pixelWidth:240,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/3zYwfAnHRdvXzNFC0CBTOh7M.svg\"},className:\"framer-1uj5n1\",\"data-framer-appear-id\":\"1uj5n1\",\"data-framer-name\":\"Logo\",initial:animation10,optimized:true}),/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation8,background:{alt:\"\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:349,pixelWidth:1215,positionX:\"center\",positionY:\"center\",sizes:\"136px\",src:\"https://framerusercontent.com/images/hjRH0xSSAdpvw0Xr7v8FwSjPYU0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/hjRH0xSSAdpvw0Xr7v8FwSjPYU0.png?scale-down-to=512 512w,https://framerusercontent.com/images/hjRH0xSSAdpvw0Xr7v8FwSjPYU0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hjRH0xSSAdpvw0Xr7v8FwSjPYU0.png 1215w\"},className:\"framer-13bqsht\",\"data-framer-appear-id\":\"13bqsht\",\"data-framer-name\":\"Logo\",initial:animation10,optimized:true}),/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation8,background:{alt:\"\",fit:\"fill\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:175,pixelWidth:350,src:\"https://framerusercontent.com/images/uoRHAx8bZX4HJ52zIRkh0ixeFxA.png\"},className:\"framer-1uccxv8\",\"data-framer-appear-id\":\"1uccxv8\",\"data-framer-name\":\"Logo\",initial:animation10,optimized:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-1so205g hidden-i4een9\",\"data-framer-name\":\"Categories\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z9ztkn\",\"data-framer-name\":\"Content wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1metrp2\",\"data-framer-name\":\"Text wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-9czjpw\",\"data-styles-preset\":\"MmbenCHpK\",style:{\"--framer-text-color\":\"var(--token-1ccb7fbe-c963-4485-ac07-36178ace9f3d, rgb(0, 85, 165))\"},children:\"Watch Collection\"})}),className:\"framer-1djyboh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9p54we\",\"data-styles-preset\":\"mwI_n_ua2\",children:\"Explore our wide range of Movado, Bulova and Caravelle Watches.\"})}),className:\"framer-1r9wesz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gtidwr\",\"data-framer-name\":\"Bento wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-iuriq4\",\"data-framer-name\":\"Right bento wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10v1o8l\",\"data-framer-name\":\"R-B bento wrapper\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-11tibop\",\"data-framer-appear-id\":\"11tibop\",\"data-framer-name\":\"Bento element\",initial:animation10,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:474,intrinsicWidth:584,pixelHeight:540,pixelWidth:430,positionX:\"center\",positionY:\"center\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1248px) - 48px) / 3, 1px)`,src:\"https://framerusercontent.com/images/2cB8VugKf8ARtyu7GWspfzoDiU.png\",srcSet:\"https://framerusercontent.com/images/2cB8VugKf8ARtyu7GWspfzoDiU.png 430w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:474,intrinsicWidth:584,pixelHeight:540,pixelWidth:430,positionX:\"center\",positionY:\"center\",sizes:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1248px), 1px) - 48px) / 3, 1px)`,src:\"https://framerusercontent.com/images/2cB8VugKf8ARtyu7GWspfzoDiU.png\",srcSet:\"https://framerusercontent.com/images/2cB8VugKf8ARtyu7GWspfzoDiU.png 430w\"},className:\"framer-h8e5kr\",\"data-framer-name\":\"Image\",whileHover:animation5})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pfR4P7HRi\"},implicitPathVariables:undefined},{href:{webPageId:\"pfR4P7HRi\"},implicitPathVariables:undefined},{href:{webPageId:\"pfR4P7HRi\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mq1uue-container\",nodeId:\"Xb6Ss6oC7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{owOcZuT5h:resolvedLinks6[2],variant:\"YmyYbh_W1\"},ECxTPfc4s:{owOcZuT5h:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(ButtonsTertiary,{height:\"100%\",id:\"Xb6Ss6oC7\",layoutId:\"Xb6Ss6oC7\",owOcZuT5h:resolvedLinks6[0],SWTAQxjCj:\"Movado\",variant:\"c6LqDTc27\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-evi79b\",\"data-framer-appear-id\":\"evi79b\",\"data-framer-name\":\"Bento element\",initial:animation10,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:474,intrinsicWidth:584,pixelHeight:1e3,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1248px) - 48px) / 3, 1px)`,src:\"https://framerusercontent.com/images/xgBAV1ajqQIkSMQORGIjZ0jLkfM.jpg\",srcSet:\"https://framerusercontent.com/images/xgBAV1ajqQIkSMQORGIjZ0jLkfM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xgBAV1ajqQIkSMQORGIjZ0jLkfM.jpg 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:474,intrinsicWidth:584,pixelHeight:1e3,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1248px), 1px) - 48px) / 3, 1px)`,src:\"https://framerusercontent.com/images/xgBAV1ajqQIkSMQORGIjZ0jLkfM.jpg\",srcSet:\"https://framerusercontent.com/images/xgBAV1ajqQIkSMQORGIjZ0jLkfM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xgBAV1ajqQIkSMQORGIjZ0jLkfM.jpg 1000w\"},className:\"framer-1yklpji\",\"data-framer-name\":\"Image\",whileHover:animation5})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pfR4P7HRi\"},implicitPathVariables:undefined},{href:{webPageId:\"pfR4P7HRi\"},implicitPathVariables:undefined},{href:{webPageId:\"pfR4P7HRi\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14tp9pd-container\",nodeId:\"iULE1LoEV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{owOcZuT5h:resolvedLinks7[2],variant:\"YmyYbh_W1\"},ECxTPfc4s:{owOcZuT5h:resolvedLinks7[1]}},children:/*#__PURE__*/_jsx(ButtonsTertiary,{height:\"100%\",id:\"iULE1LoEV\",layoutId:\"iULE1LoEV\",owOcZuT5h:resolvedLinks7[0],SWTAQxjCj:\"Bulova\",variant:\"c6LqDTc27\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-2guf98\",\"data-framer-appear-id\":\"2guf98\",\"data-framer-name\":\"Bento element\",initial:animation10,optimized:true,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:474,intrinsicWidth:584,pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mi7ElyLXMGjvcAvmmibtNhAKEKA.png\"},className:\"framer-18a8e8z\",\"data-framer-name\":\"Image\",whileHover:animation5}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pfR4P7HRi\"},implicitPathVariables:undefined},{href:{webPageId:\"pfR4P7HRi\"},implicitPathVariables:undefined},{href:{webPageId:\"pfR4P7HRi\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13j1051-container\",nodeId:\"obYzBFv0q\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{owOcZuT5h:resolvedLinks8[2],variant:\"YmyYbh_W1\"},ECxTPfc4s:{owOcZuT5h:resolvedLinks8[1]}},children:/*#__PURE__*/_jsx(ButtonsTertiary,{height:\"100%\",id:\"obYzBFv0q\",layoutId:\"obYzBFv0q\",owOcZuT5h:resolvedLinks8[0],SWTAQxjCj:\"Caravelle\",variant:\"c6LqDTc27\",width:\"100%\"})})})})})]})]})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hmlwb6\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"OTHNhKC86\",data:HighJewellery,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},orderBy:[{collection:\"OTHNhKC86\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[],where:{collection:\"OTHNhKC86\",name:\"qOisbhO0d\",type:\"Identifier\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:505,width:`min(${componentViewport?.width||\"100vw\"}, 1920px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-b4kl74-container\",nodeId:\"KwbKBb0tf\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{variant:\"PgJiXA_gK\"},ECxTPfc4s:{variant:\"AAo4FP9pU\"},XqOpNTleN:{variant:\"WxGukJIR2\"}},children:/*#__PURE__*/_jsx(FooterV1,{height:\"100%\",id:\"KwbKBb0tf\",layoutId:\"KwbKBb0tf\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"wlnl1ZspR\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-pit3rb hidden-72rtr7 hidden-xpsovv hidden-eu8m58\",\"data-framer-name\":\"Categories\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mn3gor\",\"data-framer-name\":\"Content wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a1kv9n\",\"data-framer-name\":\"Text wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-9czjpw\",\"data-styles-preset\":\"MmbenCHpK\",style:{\"--framer-text-color\":\"var(--token-1ccb7fbe-c963-4485-ac07-36178ace9f3d, rgb(0, 85, 165))\"},children:\"Lab-Created Diamonds\"})}),className:\"framer-uq489q\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-9p54we\",\"data-styles-preset\":\"mwI_n_ua2\",children:[\"Reach the perfect glamour style with our\",/*#__PURE__*/_jsx(\"br\",{}),\"exclusive jewelry collections.\"]})}),className:\"framer-wcxaxh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w5xfnn\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-ayvbv1\",\"data-framer-appear-id\":\"ayvbv1\",\"data-framer-name\":\"Bento wrapper\",initial:animation10,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b9ou50\",\"data-framer-name\":\"Bento element\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w7ukbv\",\"data-framer-name\":\"Content wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-181pbfy\",\"data-framer-name\":\"Text wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-hopdu4\",\"data-styles-preset\":\"lLeOS03Oq\",children:\"Engagement Ring\"})}),className:\"framer-y4jybw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-893787bc-35f9-4c9a-a6cb-5a48f3f3774f, rgb(0, 0, 0))\"},children:\"Engagement rings illustrate your one-of-a-kind love story in sparkle.\"})}),className:\"framer-ide9gw\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XqOpNTleN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:746,intrinsicWidth:1216,pixelHeight:1600,pixelWidth:1600,sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1248px), 1px)`,src:\"https://framerusercontent.com/images/COTMwEthwgdMrPxZzjiAHC8zf4.jpg\",srcSet:\"https://framerusercontent.com/images/COTMwEthwgdMrPxZzjiAHC8zf4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/COTMwEthwgdMrPxZzjiAHC8zf4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/COTMwEthwgdMrPxZzjiAHC8zf4.jpg 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:746,intrinsicWidth:1216,pixelHeight:1600,pixelWidth:1600,src:\"https://framerusercontent.com/images/COTMwEthwgdMrPxZzjiAHC8zf4.jpg\",srcSet:\"https://framerusercontent.com/images/COTMwEthwgdMrPxZzjiAHC8zf4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/COTMwEthwgdMrPxZzjiAHC8zf4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/COTMwEthwgdMrPxZzjiAHC8zf4.jpg 1600w\"},className:\"framer-9r01ic\",\"data-framer-name\":\"Image\",whileHover:animation5})})]})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-7panzk\",\"data-framer-appear-id\":\"7panzk\",\"data-framer-name\":\"Bento wrapper\",initial:animation10,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nohazz\",\"data-framer-name\":\"Bento element\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XqOpNTleN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:746,intrinsicWidth:1216,pixelHeight:1600,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1248px), 1px)`,src:\"https://framerusercontent.com/images/5nm70Y0qMVCDjYnNTkMt7tqDGsM.jpg\",srcSet:\"https://framerusercontent.com/images/5nm70Y0qMVCDjYnNTkMt7tqDGsM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5nm70Y0qMVCDjYnNTkMt7tqDGsM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5nm70Y0qMVCDjYnNTkMt7tqDGsM.jpg 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:746,intrinsicWidth:1216,pixelHeight:1600,pixelWidth:1600,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5nm70Y0qMVCDjYnNTkMt7tqDGsM.jpg\",srcSet:\"https://framerusercontent.com/images/5nm70Y0qMVCDjYnNTkMt7tqDGsM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5nm70Y0qMVCDjYnNTkMt7tqDGsM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5nm70Y0qMVCDjYnNTkMt7tqDGsM.jpg 1600w\"},className:\"framer-1bb209q\",\"data-framer-name\":\"Image\",whileHover:animation5})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v1ztks\",\"data-framer-name\":\"Content wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-prmjuz\",\"data-framer-name\":\"Text wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-hopdu4\",\"data-styles-preset\":\"lLeOS03Oq\",children:\"Pav\\xe9 Rings\"})}),className:\"framer-1jq0xge\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-893787bc-35f9-4c9a-a6cb-5a48f3f3774f, rgb(0, 0, 0))\"},children:'French for \"paved,\" pav\\xe9 engagement rings feature small diamonds secured by tiny metal beads. The close arrangement of the gems creates a shimmering, sparkling.'})}),className:\"framer-15m3irq\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-tmjj89\",\"data-framer-appear-id\":\"tmjj89\",\"data-framer-name\":\"Bento wrapper\",initial:animation10,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k92tqf\",\"data-framer-name\":\"Bento element\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kr30k0\",\"data-framer-name\":\"Content wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wzdxl7\",\"data-framer-name\":\"Text wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-hopdu4\",\"data-styles-preset\":\"lLeOS03Oq\",children:\"Tennis Bracelet\"})}),className:\"framer-1bdro59\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-893787bc-35f9-4c9a-a6cb-5a48f3f3774f, rgb(0, 0, 0))\"},children:\"Tennis bracelets, a must-have piece in any jewelry wardrobe, feature a row of diamonds that wrap all around the wrist.\"})}),className:\"framer-18urprp\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XqOpNTleN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:746,intrinsicWidth:1216,pixelHeight:1600,pixelWidth:1600,sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1248px), 1px)`,src:\"https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg\",srcSet:\"https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:746,intrinsicWidth:1216,pixelHeight:1600,pixelWidth:1600,src:\"https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg\",srcSet:\"https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ln9emv6kko6Ywyk7JqQ8GvAjs.jpg 1600w\"},className:\"framer-bkzgng\",\"data-framer-name\":\"Image\",whileHover:animation5})})]})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QlQRrmbeH\"},implicitPathVariables:undefined},{href:{webPageId:\"QlQRrmbeH\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sdn7dr-container\",nodeId:\"DqZICBgZx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XqOpNTleN:{pCKioTrFI:resolvedLinks9[1]}},children:/*#__PURE__*/_jsx(ButtonV1,{height:\"100%\",id:\"DqZICBgZx\",layoutId:\"DqZICBgZx\",pCKioTrFI:resolvedLinks9[0],tIt8ouJc0:\"View Lab-Created\",variant:\"Vsg4EQhA0\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1w7n44l\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"yO_5uWDO2\",data:HighJewellery,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},orderBy:[{collection:\"yO_5uWDO2\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[],where:{collection:\"yO_5uWDO2\",name:\"qOisbhO0d\",type:\"Identifier\"}},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{})})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-13m58bi hidden-72rtr7 hidden-xpsovv hidden-eu8m58\",\"data-framer-name\":\"Categories\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-106y5ne\",\"data-framer-name\":\"Content wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d2race\",\"data-framer-name\":\"Text wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-9czjpw\",\"data-styles-preset\":\"MmbenCHpK\",style:{\"--framer-text-color\":\"var(--token-1ccb7fbe-c963-4485-ac07-36178ace9f3d, rgb(0, 85, 165))\"},children:\"Watch Collection\"})}),className:\"framer-nfid4q\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9p54we\",\"data-styles-preset\":\"mwI_n_ua2\",children:\"Explore our wide range of Movado, Bulova and Caravelle Watches\"})}),className:\"framer-17il3qz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-z3xqjv\",\"data-framer-name\":\"Bento wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dhp2gb\",\"data-framer-name\":\"Right bento wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7x8j6x\",\"data-framer-name\":\"R-B bento wrapper\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-wnkm2v\",\"data-framer-appear-id\":\"wnkm2v\",\"data-framer-name\":\"Bento element\",initial:animation10,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XqOpNTleN:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:474,intrinsicWidth:584,pixelHeight:540,pixelWidth:430,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1248px)`,src:\"https://framerusercontent.com/images/2cB8VugKf8ARtyu7GWspfzoDiU.png\",srcSet:\"https://framerusercontent.com/images/2cB8VugKf8ARtyu7GWspfzoDiU.png 430w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:474,intrinsicWidth:584,pixelHeight:540,pixelWidth:430,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2cB8VugKf8ARtyu7GWspfzoDiU.png\",srcSet:\"https://framerusercontent.com/images/2cB8VugKf8ARtyu7GWspfzoDiU.png 430w\"},className:\"framer-13jzd35\",\"data-framer-name\":\"Image\",whileHover:animation5})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jw8Ovho27\"},implicitPathVariables:undefined},{href:{webPageId:\"jw8Ovho27\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12rysed-container\",nodeId:\"B892Y6SAw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XqOpNTleN:{owOcZuT5h:resolvedLinks10[1]}},children:/*#__PURE__*/_jsx(ButtonsTertiary,{height:\"100%\",id:\"B892Y6SAw\",layoutId:\"B892Y6SAw\",owOcZuT5h:resolvedLinks10[0],SWTAQxjCj:\"Movado\",variant:\"yxJmnfVn2\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-ojofvo\",\"data-framer-appear-id\":\"ojofvo\",\"data-framer-name\":\"Bento element\",initial:animation10,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XqOpNTleN:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:474,intrinsicWidth:584,pixelHeight:1e3,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1248px)`,src:\"https://framerusercontent.com/images/xgBAV1ajqQIkSMQORGIjZ0jLkfM.jpg\",srcSet:\"https://framerusercontent.com/images/xgBAV1ajqQIkSMQORGIjZ0jLkfM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xgBAV1ajqQIkSMQORGIjZ0jLkfM.jpg 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:474,intrinsicWidth:584,pixelHeight:1e3,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xgBAV1ajqQIkSMQORGIjZ0jLkfM.jpg\",srcSet:\"https://framerusercontent.com/images/xgBAV1ajqQIkSMQORGIjZ0jLkfM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xgBAV1ajqQIkSMQORGIjZ0jLkfM.jpg 1000w\"},className:\"framer-ecuo3k\",\"data-framer-name\":\"Image\",whileHover:animation5})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jw8Ovho27\"},implicitPathVariables:undefined},{href:{webPageId:\"jw8Ovho27\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bxy63n-container\",nodeId:\"uD5K9XxuX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XqOpNTleN:{owOcZuT5h:resolvedLinks11[1]}},children:/*#__PURE__*/_jsx(ButtonsTertiary,{height:\"100%\",id:\"uD5K9XxuX\",layoutId:\"uD5K9XxuX\",owOcZuT5h:resolvedLinks11[0],SWTAQxjCj:\"Bulova\",variant:\"yxJmnfVn2\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-16z3vn7\",\"data-framer-appear-id\":\"16z3vn7\",\"data-framer-name\":\"Bento element\",initial:animation10,optimized:true,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:474,intrinsicWidth:584,pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mi7ElyLXMGjvcAvmmibtNhAKEKA.png\"},className:\"framer-1e52mbx\",\"data-framer-name\":\"Image\",whileHover:animation5}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jw8Ovho27\"},implicitPathVariables:undefined},{href:{webPageId:\"jw8Ovho27\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6jxx1r-container\",nodeId:\"sEmSsiNKe\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XqOpNTleN:{owOcZuT5h:resolvedLinks12[1]}},children:/*#__PURE__*/_jsx(ButtonsTertiary,{height:\"100%\",id:\"sEmSsiNKe\",layoutId:\"sEmSsiNKe\",owOcZuT5h:resolvedLinks12[0],SWTAQxjCj:\"Caravelle\",variant:\"yxJmnfVn2\",width:\"100%\"})})})})})]})]})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ufe7az\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ULSq2vi2g\",data:HighJewellery,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},orderBy:[{collection:\"ULSq2vi2g\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[],where:{collection:\"ULSq2vi2g\",name:\"qOisbhO0d\",type:\"Identifier\"}},children:(collection7,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{})})})})]})}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-cpj84w hidden-72rtr7 hidden-xpsovv hidden-i4een9\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-10zzm9o\",\"data-framer-appear-id\":\"10zzm9o\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xwbqsa\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-9czjpw\",\"data-styles-preset\":\"MmbenCHpK\",style:{\"--framer-text-color\":\"var(--token-1ccb7fbe-c963-4485-ac07-36178ace9f3d, rgb(0, 85, 165))\"},children:\"Custom Made Jewellery\"})}),className:\"framer-i7uj76\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9p54we\",\"data-styles-preset\":\"mwI_n_ua2\",children:\"Create Your Dream Jewellery Our expert artisans craft one-of-a-kind rings, necklaces, bracelets, and more, turning your vision into exquisite, handcrafted pieces. Whether it's an engagement ring, heirloom, or custom redesign, we bring your ideas to life.\"})}),className:\"framer-1qrbsjz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m1yj6j\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VhJLUgIa8\"},implicitPathVariables:undefined},{href:{webPageId:\"VhJLUgIa8\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ksggo0-container\",nodeId:\"ZhBRE0Lgp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eCuGh4QtI:{pCKioTrFI:resolvedLinks13[1]}},children:/*#__PURE__*/_jsx(ButtonV1,{height:\"100%\",id:\"ZhBRE0Lgp\",layoutId:\"ZhBRE0Lgp\",pCKioTrFI:resolvedLinks13[0],tIt8ouJc0:\"CONTACT US\",variant:\"Vsg4EQhA0\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5xk35h\",\"data-framer-name\":\"Images\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bkmrc4\",\"data-framer-name\":\"01\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:532,intrinsicWidth:365,pixelHeight:1600,pixelWidth:1600,sizes:\"365px\",src:\"https://framerusercontent.com/images/j77dmihVKzhIHBGdvK7k2KRup4.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/j77dmihVKzhIHBGdvK7k2KRup4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/j77dmihVKzhIHBGdvK7k2KRup4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/j77dmihVKzhIHBGdvK7k2KRup4.jpg 1600w\"},className:\"framer-1xine7e\",\"data-framer-name\":\"Placeholder\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tawdiw\",\"data-framer-name\":\"02\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:604,intrinsicWidth:365,pixelHeight:1600,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"365px\",src:\"https://framerusercontent.com/images/95VaMFLF1wScvKTBo4Vu4tu14.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/95VaMFLF1wScvKTBo4Vu4tu14.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/95VaMFLF1wScvKTBo4Vu4tu14.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/95VaMFLF1wScvKTBo4Vu4tu14.jpg 1600w\"},className:\"framer-16yn5pu\",\"data-framer-name\":\"Placeholder\"}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"p8lbI27Kx\"},motionChild:true,nodeId:\"CHbQYg9FQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-18ut2if framer-lux5qc\",\"data-framer-name\":\"Button\"})})]})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i94hld hidden-72rtr7 hidden-xpsovv hidden-eu8m58\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-1tqw3up\",\"data-framer-appear-id\":\"1tqw3up\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jmydgt\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-9czjpw\",\"data-styles-preset\":\"MmbenCHpK\",style:{\"--framer-text-color\":\"var(--token-1ccb7fbe-c963-4485-ac07-36178ace9f3d, rgb(0, 85, 165))\"},children:\"Custom Made Jewellery\"})}),className:\"framer-tjj73k\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9p54we\",\"data-styles-preset\":\"mwI_n_ua2\",children:\"Create Your Dream Jewellery Our expert artisans craft one-of-a-kind rings, necklaces, bracelets, and more, turning your vision into exquisite, handcrafted pieces. Whether it's an engagement ring, heirloom, or custom redesign, we bring your ideas to life.\"})}),className:\"framer-cjoeya\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-brsb1m\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VhJLUgIa8\"},implicitPathVariables:undefined},{href:{webPageId:\"VhJLUgIa8\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-31n1c3-container\",nodeId:\"fW4mGPr5V\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XqOpNTleN:{pCKioTrFI:resolvedLinks14[1]}},children:/*#__PURE__*/_jsx(ButtonV1,{height:\"100%\",id:\"fW4mGPr5V\",layoutId:\"fW4mGPr5V\",pCKioTrFI:resolvedLinks14[0],tIt8ouJc0:\"CONTACT US\",variant:\"Vsg4EQhA0\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qd64yq\",\"data-framer-name\":\"Images\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n96sr\",\"data-framer-name\":\"01\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:532,intrinsicWidth:365,pixelHeight:1600,pixelWidth:1600,sizes:\"365px\",src:\"https://framerusercontent.com/images/j77dmihVKzhIHBGdvK7k2KRup4.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/j77dmihVKzhIHBGdvK7k2KRup4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/j77dmihVKzhIHBGdvK7k2KRup4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/j77dmihVKzhIHBGdvK7k2KRup4.jpg 1600w\"},className:\"framer-1bps4ce\",\"data-framer-name\":\"Placeholder\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wgj754\",\"data-framer-name\":\"02\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:604,intrinsicWidth:365,pixelHeight:1600,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"365px\",src:\"https://framerusercontent.com/images/95VaMFLF1wScvKTBo4Vu4tu14.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/95VaMFLF1wScvKTBo4Vu4tu14.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/95VaMFLF1wScvKTBo4Vu4tu14.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/95VaMFLF1wScvKTBo4Vu4tu14.jpg 1600w\"},className:\"framer-1y2fxi0\",\"data-framer-name\":\"Placeholder\"}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"p8lbI27Kx\"},motionChild:true,nodeId:\"wurxZsiqm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-xc5q2 framer-lux5qc\",\"data-framer-name\":\"Button\"})})]})]})]})}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rpkp2q hidden-72rtr7 hidden-xpsovv hidden-i4een9\",\"data-framer-name\":\"Banner\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1auvpq8\",\"data-styles-preset\":\"xgVv3r7Ti\",style:{\"--framer-text-color\":\"var(--token-9114fa1c-d6f2-4f3c-ab02-d1eb5d730cf7, rgb(20, 37, 131))\"},children:\"Central City Shopping Centre\"})}),className:\"framer-1upwcmb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1auvpq8\",\"data-styles-preset\":\"xgVv3r7Ti\",style:{\"--framer-text-color\":\"var(--token-9114fa1c-d6f2-4f3c-ab02-d1eb5d730cf7, rgb(20, 37, 131))\"},children:\"(604) 581-1132\"})}),className:\"framer-q818u3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3uzKd.framer-lux5qc, .framer-3uzKd .framer-lux5qc { display: block; }\",\".framer-3uzKd.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1920px; }\",\".framer-3uzKd .framer-19mjh0p { align-content: center; align-items: center; background-color: var(--token-a2d9e1d6-6fb4-4fcd-bc28-bf07a995c0f5, #fafafa); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 412px; height: 40px; justify-content: center; overflow: visible; padding: 0px 200px 0px 200px; position: relative; width: 100%; }\",\".framer-3uzKd .framer-1yng45y { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 416px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-3uzKd .framer-1tcqvzb, .framer-3uzKd .framer-d0gghx, .framer-3uzKd .framer-8x686g, .framer-3uzKd .framer-l6q550, .framer-3uzKd .framer-7jex8c, .framer-3uzKd .framer-1s9pfo8, .framer-3uzKd .framer-gy3rk4, .framer-3uzKd .framer-npqyt3, .framer-3uzKd .framer-mfpo6c, .framer-3uzKd .framer-d3g6ii, .framer-3uzKd .framer-1djyboh, .framer-3uzKd .framer-1upwcmb, .framer-3uzKd .framer-q818u3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-3uzKd .framer-1v3ty9m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 200px 0px 200px; position: relative; width: 100%; }\",\".framer-3uzKd .framer-1e3vrbx-container { flex: none; height: auto; max-width: 1520px; position: relative; width: 100%; }\",\".framer-3uzKd .framer-19oplmr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 700px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3uzKd .framer-1k4a2m2-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-3uzKd .framer-1bkitv8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; bottom: 221px; flex: none; height: auto; left: 111px; max-width: 100%; opacity: 0.8; position: absolute; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-3uzKd .framer-1nv4rv1 { --framer-paragraph-spacing: 0px; bottom: 189px; flex: none; height: auto; left: 111px; max-width: 100%; opacity: 0.6; overflow: visible; position: absolute; white-space: pre-wrap; width: 390px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-3uzKd .framer-funjxf { bottom: 0px; flex: none; gap: 10px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-3uzKd .framer-zda5m4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; bottom: 220px; flex: none; height: auto; left: 99px; max-width: 100%; opacity: 0.8; position: absolute; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-3uzKd .framer-5fityh { --framer-paragraph-spacing: 0px; bottom: 176px; flex: none; height: auto; left: 99px; max-width: 100%; opacity: 0.6; overflow: visible; position: absolute; white-space: pre-wrap; width: 390px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-3uzKd .framer-1i05sjj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; bottom: 192px; flex: none; height: auto; left: 70px; max-width: 100%; opacity: 0.8; position: absolute; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-3uzKd .framer-6ytajw { --framer-paragraph-spacing: 0px; bottom: 147px; flex: none; height: auto; left: 70px; max-width: 100%; opacity: 0.6; overflow: visible; position: absolute; white-space: pre-wrap; width: 390px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-3uzKd .framer-1ptxjfe-container { bottom: 109px; flex: none; height: auto; left: 111px; position: absolute; width: auto; }\",\".framer-3uzKd .framer-1ao0ocr, .framer-3uzKd .framer-mp6bx3, .framer-3uzKd .framer-cpj84w, .framer-3uzKd .framer-1i94hld { align-content: center; align-items: center; background-color: var(--token-4af4edd0-b60e-4052-ab74-53f7674081c8, #f8f8f8); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 200px 64px 200px; position: relative; width: 100%; }\",\".framer-3uzKd .framer-13jetya, .framer-3uzKd .framer-53izun { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1520px; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-3uzKd .framer-23xjs3, .framer-3uzKd .framer-11f1prt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-3uzKd .framer-1jkesij, .framer-3uzKd .framer-15i3nn4, .framer-3uzKd .framer-616akv, .framer-3uzKd .framer-1xrun2u, .framer-3uzKd .framer-1n0yjs9, .framer-3uzKd .framer-igpfcz, .framer-3uzKd .framer-1wzxzr9, .framer-3uzKd .framer-1tt1izu, .framer-3uzKd .framer-1skqaqw, .framer-3uzKd .framer-1nwy4ym, .framer-3uzKd .framer-e9b4s, .framer-3uzKd .framer-12ecbvw, .framer-3uzKd .framer-18pa4mb, .framer-3uzKd .framer-229hoc, .framer-3uzKd .framer-jla3j7, .framer-3uzKd .framer-1eng640, .framer-3uzKd .framer-b35har, .framer-3uzKd .framer-1r9wesz, .framer-3uzKd .framer-uq489q, .framer-3uzKd .framer-wcxaxh, .framer-3uzKd .framer-y4jybw, .framer-3uzKd .framer-ide9gw, .framer-3uzKd .framer-1jq0xge, .framer-3uzKd .framer-15m3irq, .framer-3uzKd .framer-1bdro59, .framer-3uzKd .framer-18urprp, .framer-3uzKd .framer-nfid4q, .framer-3uzKd .framer-17il3qz, .framer-3uzKd .framer-i7uj76, .framer-3uzKd .framer-1qrbsjz, .framer-3uzKd .framer-tjj73k, .framer-3uzKd .framer-cjoeya { --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-3uzKd .framer-ey24pp, .framer-3uzKd .framer-1qivscb, .framer-3uzKd .framer-13vw8k7, .framer-3uzKd .framer-m1yj6j, .framer-3uzKd .framer-1bkmrc4, .framer-3uzKd .framer-brsb1m, .framer-3uzKd .framer-1n96sr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-3uzKd .framer-v6m0xa-container, .framer-3uzKd .framer-3zq11l-container, .framer-3uzKd .framer-1imwry2-container, .framer-3uzKd .framer-1s2gwpf-container, .framer-3uzKd .framer-1d6771c-container, .framer-3uzKd .framer-1sdn7dr-container, .framer-3uzKd .framer-ksggo0-container, .framer-3uzKd .framer-31n1c3-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-3uzKd .framer-jsu8zc, .framer-3uzKd .framer-s2jayx { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-3uzKd .framer-bflb7z, .framer-3uzKd .framer-1m13wnb, .framer-3uzKd .framer-1xine7e, .framer-3uzKd .framer-1bps4ce { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 532px; overflow: hidden; position: relative; width: 365px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3uzKd .framer-1pwfgxk, .framer-3uzKd .framer-1lof4wf, .framer-3uzKd .framer-1tawdiw, .framer-3uzKd .framer-1wgj754 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-3uzKd .framer-1idb1mv, .framer-3uzKd .framer-181hmu1, .framer-3uzKd .framer-16yn5pu, .framer-3uzKd .framer-1y2fxi0 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 604px; overflow: hidden; position: relative; width: 365px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3uzKd .framer-at41y, .framer-3uzKd .framer-megx7l, .framer-3uzKd .framer-18ut2if, .framer-3uzKd .framer-xc5q2 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 24px; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: auto; }\",\".framer-3uzKd .framer-98f1fs, .framer-3uzKd .framer-3k4j6s, .framer-3uzKd .framer-1m3iuqx, .framer-3uzKd .framer-1so205g { align-content: flex-start; align-items: flex-start; background-color: var(--token-d6c48582-5c95-49a9-9327-80b3d5478be3, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-3uzKd .framer-1rfx6d9 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1248px; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 1px; }\",\".framer-3uzKd .framer-1x7877o, .framer-3uzKd .framer-1ake9jc, .framer-3uzKd .framer-39e5lb, .framer-3uzKd .framer-ejz3tx, .framer-3uzKd .framer-cskxow, .framer-3uzKd .framer-bivyoz, .framer-3uzKd .framer-19we9j, .framer-3uzKd .framer-1metrp2, .framer-3uzKd .framer-1a1kv9n, .framer-3uzKd .framer-181pbfy, .framer-3uzKd .framer-prmjuz, .framer-3uzKd .framer-wzdxl7, .framer-3uzKd .framer-d2race { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3uzKd .framer-6acp3d, .framer-3uzKd .framer-1ev3xv3, .framer-3uzKd .framer-1gtidwr { align-content: center; align-items: center; 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-3uzKd .framer-1tr9h2d { align-content: flex-start; align-items: flex-start; background-color: var(--token-a527ec62-013f-49cf-9602-71c6b8ec98f2, #f7f7f7); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 624px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3uzKd .framer-1d6evly, .framer-3uzKd .framer-o04y9d, .framer-3uzKd .framer-16pdhq5, .framer-3uzKd .framer-1iz8cck, .framer-3uzKd .framer-1w7ukbv, .framer-3uzKd .framer-v1ztks, .framer-3uzKd .framer-kr30k0 { 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: flex-start; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-3uzKd .framer-1bhwn75 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-3uzKd .framer-1cj52xd { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-3uzKd .framer-gdlisv, .framer-3uzKd .framer-iuriq4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 624px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-3uzKd .framer-m260zw { align-content: flex-start; align-items: flex-start; background-color: var(--token-a527ec62-013f-49cf-9602-71c6b8ec98f2, #f7f7f7); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-3uzKd .framer-zzgqhq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 40px 0px 40px 40px; position: relative; width: min-content; }\",\".framer-3uzKd .framer-lk8tyb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-3uzKd .framer-1u8g92j { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 251px; word-break: break-word; word-wrap: break-word; }\",\".framer-3uzKd .framer-19034ww { flex: 1 0 0px; height: 100%; mix-blend-mode: darken; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-3uzKd .framer-1fa8d67, .framer-3uzKd .framer-10v1o8l { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3uzKd .framer-gkniqu { align-content: center; align-items: center; background-color: var(--token-a527ec62-013f-49cf-9602-71c6b8ec98f2, #f7f7f7); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 0px 0px 32px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3uzKd .framer-89mlp1, .framer-3uzKd .framer-h8e5kr, .framer-3uzKd .framer-1yklpji, .framer-3uzKd .framer-18a8e8z, .framer-3uzKd .framer-13jzd35, .framer-3uzKd .framer-ecuo3k, .framer-3uzKd .framer-1e52mbx { flex: 1 0 0px; height: 1px; mix-blend-mode: darken; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-3uzKd .framer-wmd92t, .framer-3uzKd .framer-b39hqf, .framer-3uzKd .framer-z9ztkn, .framer-3uzKd .framer-106y5ne { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1248px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-3uzKd .framer-19r3ls9, .framer-3uzKd .framer-xys9hw, .framer-3uzKd .framer-1x2rp00, .framer-3uzKd .framer-1eoatqf, .framer-3uzKd .framer-lapq0o, .framer-3uzKd .framer-1hmlwb6, .framer-3uzKd .framer-1w7n44l, .framer-3uzKd .framer-ufe7az { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-3uzKd .framer-13otspr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1248px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-3uzKd .framer-1mlqum9, .framer-3uzKd .framer-13hgyrf, .framer-3uzKd .framer-ebqbba { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-3uzKd .framer-xe8584, .framer-3uzKd .framer-1bhmogb, .framer-3uzKd .framer-1pcu253 { align-content: flex-start; align-items: flex-start; background-color: var(--token-a527ec62-013f-49cf-9602-71c6b8ec98f2, #f7f7f7); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; 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: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3uzKd .framer-j6llww, .framer-3uzKd .framer-1duu2rz, .framer-3uzKd .framer-1na0952, .framer-3uzKd .framer-9r01ic, .framer-3uzKd .framer-1bb209q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 332px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-3uzKd .framer-1f2rqph { align-content: center; align-items: center; background-color: var(--token-4af4edd0-b60e-4052-ab74-53f7674081c8, #f8f8f8); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 40px 61px 40px; position: relative; width: 100%; }\",\".framer-3uzKd .framer-4ulo4a, .framer-3uzKd .framer-nyrkyh { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 140px; justify-content: center; max-width: 1248px; overflow: hidden; padding: 24px 80px 24px 80px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-3uzKd .framer-7bhlwh, .framer-3uzKd .framer-1ldyka4, .framer-3uzKd .framer-1782dls { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-3uzKd .framer-12ri06v, .framer-3uzKd .framer-1bxljtw, .framer-3uzKd .framer-19x1xjb { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 64px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3uzKd .framer-1pzdxb7-container, .framer-3uzKd .framer-rl7z4m-container, .framer-3uzKd .framer-k2w7p0-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-3uzKd .framer-ufb5g1, .framer-3uzKd .framer-sqfh38, .framer-3uzKd .framer-11caiu0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-3uzKd .framer-3bpkma { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1248px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3uzKd .framer-r3gtqq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: center; min-width: 490px; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-3uzKd .framer-zivlu5-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-3uzKd .framer-1pahnwt { align-content: center; align-items: center; background-color: var(--token-4af4edd0-b60e-4052-ab74-53f7674081c8, #f8f8f8); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-3uzKd .framer-1juyhce { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 60px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-3uzKd .framer-1uj5n1, .framer-3uzKd .framer-13bqsht, .framer-3uzKd .framer-1uccxv8 { aspect-ratio: 2.9565217391304346 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); overflow: hidden; position: relative; width: 136px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-3uzKd .framer-11tibop, .framer-3uzKd .framer-evi79b, .framer-3uzKd .framer-2guf98 { align-content: center; align-items: center; background-color: var(--token-a527ec62-013f-49cf-9602-71c6b8ec98f2, #f7f7f7); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 0px 0px 32px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-3uzKd .framer-mq1uue-container, .framer-3uzKd .framer-14tp9pd-container, .framer-3uzKd .framer-13j1051-container { bottom: 32px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); width: auto; z-index: 1; }\",\".framer-3uzKd .framer-b4kl74-container { flex: none; height: auto; max-width: 1920px; position: relative; width: 100%; }\",\".framer-3uzKd .framer-pit3rb, .framer-3uzKd .framer-13m58bi { align-content: flex-start; align-items: flex-start; background-color: var(--token-d6c48582-5c95-49a9-9327-80b3d5478be3, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 16px 40px 16px; position: relative; width: 100%; }\",\".framer-3uzKd .framer-1mn3gor { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1248px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-3uzKd .framer-1w5xfnn, .framer-3uzKd .framer-z3xqjv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3uzKd .framer-ayvbv1, .framer-3uzKd .framer-7panzk, .framer-3uzKd .framer-tmjj89 { align-content: center; align-items: center; 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%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-3uzKd .framer-1b9ou50, .framer-3uzKd .framer-1nohazz, .framer-3uzKd .framer-k92tqf { align-content: flex-start; align-items: flex-start; background-color: var(--token-a527ec62-013f-49cf-9602-71c6b8ec98f2, #f7f7f7); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; 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; will-change: var(--framer-will-change-override, transform); }\",\".framer-3uzKd .framer-bkzgng { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 220px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-3uzKd .framer-1dhp2gb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 624px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3uzKd .framer-7x8j6x { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3uzKd .framer-wnkm2v, .framer-3uzKd .framer-ojofvo, .framer-3uzKd .framer-16z3vn7 { align-content: center; align-items: center; background-color: var(--token-a527ec62-013f-49cf-9602-71c6b8ec98f2, #f7f7f7); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 32px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-3uzKd .framer-12rysed-container, .framer-3uzKd .framer-bxy63n-container, .framer-3uzKd .framer-6jxx1r-container { bottom: 12px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); width: auto; z-index: 1; }\",\".framer-3uzKd .framer-10zzm9o, .framer-3uzKd .framer-1tqw3up { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1520px; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-3uzKd .framer-xwbqsa { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-3uzKd .framer-5xk35h { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-3uzKd .framer-jmydgt { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: auto; }\",\".framer-3uzKd .framer-1qd64yq { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-3uzKd .framer-rpkp2q { align-content: center; align-items: center; background-color: var(--token-a3cd8b7e-6372-4913-bc42-ec8d572f0939, #faf9f7); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 428px; height: 32px; justify-content: center; overflow: visible; padding: 0px 100px 0px 100px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,\"@media (min-width: 1440px) and (max-width: 1919px) { .framer-3uzKd.framer-72rtr7 { width: 1440px; } .framer-3uzKd .framer-1yng45y { gap: 200px; } .framer-3uzKd .framer-1v3ty9m { background-color: var(--token-d6c48582-5c95-49a9-9327-80b3d5478be3, #ffffff); padding: 0px 50px 0px 50px; } .framer-3uzKd .framer-1ptxjfe-container { bottom: 80px; left: 99px; } .framer-3uzKd .framer-13jetya, .framer-3uzKd .framer-53izun { flex-direction: column; } .framer-3uzKd .framer-23xjs3, .framer-3uzKd .framer-11f1prt { flex: none; width: 100%; } .framer-3uzKd .framer-jsu8zc, .framer-3uzKd .framer-s2jayx { flex: none; width: min-content; } .framer-3uzKd .framer-bflb7z, .framer-3uzKd .framer-1idb1mv, .framer-3uzKd .framer-1m13wnb, .framer-3uzKd .framer-181hmu1 { height: 500px; } .framer-3uzKd .framer-1u8g92j { width: 299px; } .framer-3uzKd .framer-xe8584, .framer-3uzKd .framer-1pcu253 { height: 574px; }}\",\"@media (min-width: 810px) and (max-width: 1439px) { .framer-3uzKd.framer-72rtr7 { width: 810px; } .framer-3uzKd .framer-19mjh0p { order: 16; } .framer-3uzKd .framer-1v3ty9m { order: 1; padding: 0px; } .framer-3uzKd .framer-19oplmr { height: 600px; order: 2; } .framer-3uzKd .framer-1ptxjfe-container { bottom: 66px; left: 70px; } .framer-3uzKd .framer-98f1fs { order: 3; } .framer-3uzKd .framer-7jex8c { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-3uzKd .framer-6acp3d, .framer-3uzKd .framer-1ev3xv3, .framer-3uzKd .framer-1gtidwr { flex-direction: column; } .framer-3uzKd .framer-1tr9h2d, .framer-3uzKd .framer-gdlisv { flex: none; width: 500px; } .framer-3uzKd .framer-1u8g92j { width: 269px; } .framer-3uzKd .framer-3k4j6s { order: 5; } .framer-3uzKd .framer-1mlqum9, .framer-3uzKd .framer-13hgyrf, .framer-3uzKd .framer-ebqbba { flex: none; flex-direction: column; width: 100%; } .framer-3uzKd .framer-xe8584, .framer-3uzKd .framer-1bhmogb, .framer-3uzKd .framer-1pcu253 { width: 500px; } .framer-3uzKd .framer-1f2rqph { gap: 20px; order: 6; padding: 40px 24px 61px 24px; } .framer-3uzKd .framer-4ulo4a, .framer-3uzKd .framer-nyrkyh { height: min-content; padding: 0px; } .framer-3uzKd .framer-7bhlwh, .framer-3uzKd .framer-1ldyka4, .framer-3uzKd .framer-1782dls { flex-direction: column; height: min-content; } .framer-3uzKd .framer-ufb5g1, .framer-3uzKd .framer-sqfh38, .framer-3uzKd .framer-11caiu0 { align-content: center; align-items: center; flex: none; width: 100%; } .framer-3uzKd .framer-1m3iuqx { order: 7; } .framer-3uzKd .framer-1pahnwt { order: 8; } .framer-3uzKd .framer-1so205g { order: 9; } .framer-3uzKd .framer-iuriq4 { flex: none; height: min-content; width: 100%; } .framer-3uzKd .framer-10v1o8l { flex: none; height: min-content; } .framer-3uzKd .framer-11tibop, .framer-3uzKd .framer-evi79b, .framer-3uzKd .framer-2guf98 { height: min-content; } .framer-3uzKd .framer-h8e5kr, .framer-3uzKd .framer-1yklpji, .framer-3uzKd .framer-18a8e8z { flex: none; height: 370px; } .framer-3uzKd .framer-b4kl74-container { order: 10; } .framer-3uzKd .framer-cpj84w { order: 4; } .framer-3uzKd .framer-rpkp2q { order: 0; }}\",\"@media (max-width: 809px) { .framer-3uzKd.framer-72rtr7 { width: 390px; } .framer-3uzKd .framer-19mjh0p { flex-direction: column; gap: 0px; order: 0; padding: 0px; } .framer-3uzKd .framer-1yng45y { flex: none; gap: 40px; width: 100%; } .framer-3uzKd .framer-1v3ty9m { order: 1; padding: 0px; } .framer-3uzKd .framer-19oplmr { height: 600px; order: 2; } .framer-3uzKd .framer-1bkitv8 { bottom: unset; left: 50%; top: 179px; transform: translateX(-50%); } .framer-3uzKd .framer-1nv4rv1 { bottom: unset; left: 52%; top: 53%; transform: translate(-50%, -50%); width: 278px; } .framer-3uzKd .framer-98f1fs { order: 3; padding: 40px 16px 40px 16px; } .framer-3uzKd .framer-7jex8c { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-3uzKd .framer-6acp3d { flex-direction: column; } .framer-3uzKd .framer-1tr9h2d, .framer-3uzKd .framer-gdlisv { flex: none; height: min-content; width: 100%; } .framer-3uzKd .framer-1d6evly { padding: 24px; } .framer-3uzKd .framer-1ake9jc, .framer-3uzKd .framer-lk8tyb { gap: 12px; } .framer-3uzKd .framer-1bhwn75 { width: 100%; } .framer-3uzKd .framer-1cj52xd { flex: none; height: 310px; } .framer-3uzKd .framer-m260zw { flex: none; flex-direction: column; height: 480px; } .framer-3uzKd .framer-zzgqhq { gap: 24px; height: min-content; justify-content: flex-start; padding: 24px 24px 16px 24px; width: 100%; } .framer-3uzKd .framer-19034ww { height: 1px; width: 100%; } .framer-3uzKd .framer-1fa8d67 { flex: none; flex-direction: column; height: min-content; } .framer-3uzKd .framer-gkniqu { flex: none; height: 300px; width: 100%; } .framer-3uzKd .framer-1f2rqph { order: 8; padding: 24px 16px 24px 16px; } .framer-3uzKd .framer-4ulo4a, .framer-3uzKd .framer-nyrkyh { flex-direction: column; gap: 8px; height: min-content; padding: 0px; } .framer-3uzKd .framer-7bhlwh, .framer-3uzKd .framer-1ldyka4, .framer-3uzKd .framer-1782dls { flex: none; height: min-content; padding: 8px; width: 100%; } .framer-3uzKd .framer-1pahnwt { order: 10; } .framer-3uzKd .framer-b4kl74-container { order: 12; } .framer-3uzKd .framer-pit3rb { order: 9; } .framer-3uzKd .framer-1bb209q { order: 1; } .framer-3uzKd .framer-v1ztks { order: 0; } .framer-3uzKd .framer-13m58bi { order: 11; } .framer-3uzKd .framer-1i94hld { order: 6; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8560\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ECxTPfc4s\":{\"layout\":[\"fixed\",\"auto\"]},\"eCuGh4QtI\":{\"layout\":[\"fixed\",\"auto\"]},\"XqOpNTleN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-3uzKd\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8560,width:1920};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Abyssinica SIL\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/abyssinicasil/v8/oY1H8ezOqK7iI3rK_45WKoc8J6UcBFOVAXuI.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]},...NavbarV1Fonts,...VideoFonts,...ButtonV1Fonts,...PhosphorFonts,...ProductItemV1Fonts,...ButtonsTertiaryFonts,...FooterV1Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ECxTPfc4s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eCuGh4QtI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XqOpNTleN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1920\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"8560\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "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", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "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", "House_default", "React", "weights", "House", "props", "ref", "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", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "SWTAQxjCj", "owOcZuT5h", "ihI6v86XYPSJh510mh", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "RichText2", "css", "FramerAHTtJbr9D", "withCSS", "AHTtJbr9D_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "isSet", "negate", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "discount", "discount1", "discountedPrice", "height", "id", "image", "price", "productName", "tap", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "oMppcHFOt", "grb9Gw4o4", "l4kbsHlhr", "F0kOvtSHL", "aFd_tHBjt", "cFU8_JQc1", "CQYytQFJK", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap8e3k1j", "args", "scopingClassNames", "cx", "visible", "visible1", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerhNZu8RRFT", "withCSS", "hNZu8RRFT_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavbarV1Fonts", "getFonts", "C00GNlYpF_default", "VideoFonts", "Video", "ButtonV1Fonts", "Fan6sEFDm_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "MotionDivWithFX", "withFX", "PhosphorFonts", "Icon", "ProductItemV1Fonts", "hNZu8RRFT_default", "ImageWithOptimizedAppearEffect", "Image2", "ButtonsTertiaryFonts", "AHTtJbr9D_default", "FooterV1Fonts", "wVuTq1Uui_default", "ContainerWithFX", "Container", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "animation", "transition1", "textEffect", "transformTemplate1", "_", "t", "transition2", "textEffect1", "transformTemplate2", "transition3", "animation1", "animation2", "animation3", "transition4", "animation4", "transition5", "animation5", "animation6", "transition6", "animation7", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition7", "animation8", "animation9", "animation10", "isSet", "animation11", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "rd8sfB8PZe0WeBGgyt", "Oz67UHYyqcmDjqXlrX", "y0kv1Yf42cmDjqXlrX", "Lfn2AHJuncmDjqXlrX", "UOHZf7605cmDjqXlrX", "NAemA68CUcmDjqXlrX", "fx7MoKHMscmDjqXlrX", "idcmDjqXlrX", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "router", "useRouter", "isDisplayed5", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "RichText2", "x", "PropertyOverrides2", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "Link", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "ChildrenCanSuspend", "gzMNP6isO_default", "collection", "paginationInfo", "loadMore", "l", "resolvedLinks5", "collection1", "paginationInfo1", "loadMore1", "collection2", "paginationInfo2", "loadMore2", "collection3", "paginationInfo3", "loadMore3", "index", "PathVariablesContext", "collection4", "paginationInfo4", "loadMore4", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "collection5", "paginationInfo5", "loadMore5", "resolvedLinks9", "collection6", "paginationInfo6", "loadMore6", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "collection7", "paginationInfo7", "loadMore7", "resolvedLinks13", "resolvedLinks14", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
