{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js", "ssg:https://framerusercontent.com/modules/2T87ZHXYh5pXmJp6oOn2/E9zJrIjQhWik7EktoyVb/Zc4rlgUye.js", "ssg:https://framerusercontent.com/modules/OFLvr3IWlfA5vu11hpCS/UsimxLXbJlTg4f76HBbU/Zc4rlgUye.js", "ssg:https://framerusercontent.com/modules/g6xk8Nal1pE04bsQejNG/ojq49OVdSV1KL4yfaa15/dVTZgYLeH.js", "ssg:https://framerusercontent.com/modules/guxSAkFT1MDMl2tC7ufU/plWME8IVSZXyoJc3qW9r/nmRGYRHrw.js", "ssg:https://framerusercontent.com/modules/bSlSEEIl7wZdiKCPJNDx/xO3ZE956xYupL06BBUlU/WFrvHDnzd.js", "ssg:https://framerusercontent.com/modules/dZAW0AwhLUrWPtCoryKk/CyHuU7r5jYYIEB3WORHg/jRXzTKEh2.js", "ssg:https://framerusercontent.com/modules/9dBiW5NKVRSkhKdutRp9/mUwXtjeQGojxtDzAc5Es/u0l0koE88.js", "ssg:https://framerusercontent.com/modules/SddNlXBLlzCj1PbV8v5w/COC4blt1WMoBMesDfv2b/Zw8Tz_jYx.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const 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 isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.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();},[]);return{play,pause,setProgress};}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;}/**\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 */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled?\"metadata\":\"auto\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",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:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];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\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (0b8b5e5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Azeret Mono-regular\",\"GF;Azeret Mono-regular\",\"GF;Azeret Mono-700italic\",\"GF;Azeret Mono-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Azeret Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVh17aa-5s3AA.woff2\",weight:\"400\"},{family:\"Azeret Mono\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZulryb2Z4nAN7J.woff2\",weight:\"700\"},{family:\"Azeret Mono\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkbyb2Z4nAN7J.woff2\",weight:\"400\"}]}];export const css=['.framer-wvHUk .framer-styles-preset-1uc0dg7:not(.rich-text-wrapper), .framer-wvHUk .framer-styles-preset-1uc0dg7.rich-text-wrapper p { --framer-font-family: \"Azeret Mono\", monospace; --framer-font-family-bold: \"Azeret Mono\", monospace; --framer-font-family-bold-italic: \"Azeret Mono\", monospace; --framer-font-family-italic: \"Azeret Mono\", monospace; --framer-font-open-type-features: normal; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, #010103); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }'];export const className=\"framer-wvHUk\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Azeret Mono-regular\",\"GF;Azeret Mono-700\",\"GF;Azeret Mono-700italic\",\"GF;Azeret Mono-italic\"]);export const fonts=[{family:\"Azeret Mono\",style:\"normal\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVh17aa-5s3AA.woff2\",weight:\"400\"},{family:\"Azeret Mono\",style:\"normal\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfe_Jh17aa-5s3AA.woff2\",weight:\"700\"},{family:\"Azeret Mono\",style:\"italic\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZulryb2Z4nAN7J.woff2\",weight:\"700\"},{family:\"Azeret Mono\",style:\"italic\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkbyb2Z4nAN7J.woff2\",weight:\"400\"}];export const css=['.framer-GhHQq .framer-styles-preset-1uc0dg7:not(.rich-text-wrapper), .framer-GhHQq .framer-styles-preset-1uc0dg7.rich-text-wrapper p { --framer-font-family: \"Azeret Mono\", monospace; --framer-font-family-bold: \"Azeret Mono\", monospace; --framer-font-family-bold-italic: \"Azeret Mono\", monospace; --framer-font-family-italic: \"Azeret Mono\", monospace; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 100%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, #010103); --framer-text-decoration: none; --framer-text-transform: uppercase; }'];export const className=\"framer-GhHQq\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (91d32d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/OFLvr3IWlfA5vu11hpCS/UsimxLXbJlTg4f76HBbU/Zc4rlgUye.js\";const cycleOrder=[\"eyytyxpGy\",\"gDw4mfhIy\"];const serializationHash=\"framer-9O7hS\";const variantClassNames={eyytyxpGy:\"framer-v-cpv035\",gDw4mfhIy:\"framer-v-kdf0z3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{duration:0,type:\"tween\"},gDw4mfhIy:{delay:0,duration:1,ease:[.16,1,.3,1],type:\"tween\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Text Link - Hover\":\"gDw4mfhIy\",\"Text Link\":\"eyytyxpGy\"};const getProps=({color,height,id,link,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,bwVWMSt6G:link!==null&&link!==void 0?link:props.bwVWMSt6G,Kpveh2Q8O:(_ref=title!==null&&title!==void 0?title:props.Kpveh2Q8O)!==null&&_ref!==void 0?_ref:\"View all\",MOYsDPIsL:(_ref1=color!==null&&color!==void 0?color:props.MOYsDPIsL)!==null&&_ref1!==void 0?_ref1:'var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(1, 1, 3)) /* {\"name\":\"JT Black\"} */',variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"eyytyxpGy\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Kpveh2Q8O,MOYsDPIsL,bwVWMSt6G,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"eyytyxpGy\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterxs3d6e=activeVariantCallback(async(...args)=>{setVariant(\"gDw4mfhIy\");});const onMouseLeave1fppydt=activeVariantCallback(async(...args)=>{setVariant(\"eyytyxpGy\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-cpv035\",className,classNames),\"data-framer-name\":\"Text Link\",\"data-highlight\":true,initial:variant,layoutDependency:layoutDependency,layoutId:\"eyytyxpGy\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onMouseEnter:onMouseEnterxs3d6e,onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({gDw4mfhIy:{\"data-framer-name\":\"Text Link - Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeave1fppydt}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:bwVWMSt6G,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-5ifad7 framer-1be4gvd\",layoutDependency:layoutDependency,layoutId:\"fKuOqu6WY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1uc0dg7\",\"data-styles-preset\":\"Zc4rlgUye\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-MOYsDPIsL-dVTZgYLeH))\"},children:\"View project\"})}),className:\"framer-1nvzjr6\",\"data-framer-name\":\"View project\",layoutDependency:layoutDependency,layoutId:\"mM_eFo8QJ\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-MOYsDPIsL-dVTZgYLeH)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-MOYsDPIsL-dVTZgYLeH\":MOYsDPIsL},text:Kpveh2Q8O,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1uc0dg7\",\"data-styles-preset\":\"Zc4rlgUye\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-MOYsDPIsL-dVTZgYLeH))\"},children:\"View project\"})}),className:\"framer-1phqj0i\",\"data-framer-name\":\"View project\",layoutDependency:layoutDependency,layoutId:\"RfxUJwLIS\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-MOYsDPIsL-dVTZgYLeH)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-MOYsDPIsL-dVTZgYLeH\":MOYsDPIsL},text:Kpveh2Q8O,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=['.framer-9O7hS[data-border=\"true\"]::after, .framer-9O7hS [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9O7hS.framer-1be4gvd, .framer-9O7hS .framer-1be4gvd { display: block; }\",\".framer-9O7hS.framer-cpv035 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-9O7hS .framer-5ifad7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 13px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-9O7hS .framer-1nvzjr6, .framer-9O7hS .framer-1phqj0i { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9O7hS.framer-cpv035, .framer-9O7hS .framer-5ifad7 { gap: 0px; } .framer-9O7hS.framer-cpv035 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9O7hS.framer-cpv035 > :first-child { margin-left: 0px; } .framer-9O7hS.framer-cpv035 > :last-child { margin-right: 0px; } .framer-9O7hS .framer-5ifad7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9O7hS .framer-5ifad7 > :first-child { margin-top: 0px; } .framer-9O7hS .framer-5ifad7 > :last-child { margin-bottom: 0px; } }\",\".framer-9O7hS.framer-v-kdf0z3 .framer-5ifad7 { justify-content: flex-end; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 13\n * @framerIntrinsicWidth 67\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"gDw4mfhIy\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"Kpveh2Q8O\":\"title\",\"MOYsDPIsL\":\"color\",\"bwVWMSt6G\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerdVTZgYLeH=withCSS(Component,css,\"framer-9O7hS\");export default FramerdVTZgYLeH;FramerdVTZgYLeH.displayName=\"Text Link\";FramerdVTZgYLeH.defaultProps={height:13,width:67};addPropertyControls(FramerdVTZgYLeH,{variant:{options:[\"eyytyxpGy\",\"gDw4mfhIy\"],optionTitles:[\"Text Link\",\"Text Link - Hover\"],title:\"Variant\",type:ControlType.Enum},Kpveh2Q8O:{defaultValue:\"View all\",displayTextArea:false,title:\"Title\",type:ControlType.String},MOYsDPIsL:{defaultValue:'var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(1, 1, 3)) /* {\"name\":\"JT Black\"} */',title:\"Color\",type:ControlType.Color},bwVWMSt6G:{title:\"Link\",type:ControlType.Link}});addFonts(FramerdVTZgYLeH,[...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdVTZgYLeH\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"Kpveh2Q8O\\\":\\\"title\\\",\\\"MOYsDPIsL\\\":\\\"color\\\",\\\"bwVWMSt6G\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gDw4mfhIy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"13\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"67\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dVTZgYLeH.map", "// Generated by Framer (12ecc5e)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"u7ZOKBz_k\",\"oLI49MpOz\"];const serializationHash=\"framer-eFAb2\";const variantClassNames={oLI49MpOz:\"framer-v-u3rpuh\",u7ZOKBz_k:\"framer-v-90vvdw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0: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!==null&&value!==void 0?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={Black:\"oLI49MpOz\",White:\"u7ZOKBz_k\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"u7ZOKBz_k\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"u7ZOKBz_k\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"R6_F7xjGZ\"},children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-90vvdw\",className,classNames)} framer-14aqwz3`,\"data-framer-name\":\"White\",layoutDependency:layoutDependency,layoutId:\"u7ZOKBz_k\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({oLI49MpOz:{\"data-framer-name\":\"Black\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-yu9dtx\",\"data-framer-name\":\"Word\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:229,layoutDependency:layoutDependency,layoutId:\"KJRHLcMAR\",style:{filter:\"none\",WebkitFilter:\"none\"},svg:'<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 228.6 39.8\" style=\"enable-background:new 0 0 228.6 39.8\" xml:space=\"preserve\"><style>.st0{fill:#fff}</style><g id=\"Layer_2_00000101103413405853604400000010361568996415140536_\"><g id=\"ART\"><path class=\"st0\" d=\"M37.8 17.1c0-2.6.1-5 1.2-6.2-3.5.7-5.8 3.1-5.8 6.3 0 5.5 5.7 6.1 6.1 6.1-1.3-1.2-1.5-3.7-1.5-6.2zM11 12.5C6.3 10.6 3.6 8.7 3.6 5c-.1-1.7.5-3.3 1.8-4.4C2 2.1-.2 5.5 0 9.2c0 5 3.4 6.8 7.8 8.7 4.1 1.7 7.7 3.6 7.7 8.3 0 1.8-.7 3.6-2 4.9 3.6-1.7 5.2-5.5 5.2-9.4.1-5.4-3.3-7.3-7.7-9.2zm17.4-2-5.9.2c.5.8.8 1.7.7 2.7v16c0 .6-.1 1.1-.5 1.6h6c-.3-.5-.5-1-.4-1.6V10.5zm31.4.1-5.8.2c.5.6.8 1.4.7 2.3v16.3c.1.6-.1 1.1-.4 1.6h6c-.3-.5-.5-1-.4-1.6l-.1-18.8zM81 25.3c0-2.2.6-3.7 2-4.6-1.8.1-3.6.7-5.2 1.5-1.4.9-2.2 2.4-2.2 4.1-.2 2.6 1.8 4.9 4.5 5h.6c1.5 0 2.9-.5 4-1.6-.2 0-.4.1-.6.1-.7 0-3.1-.3-3.1-4.5zM103.4 0l-5.8.2c.5.6.7 1.4.7 2.2v26.9c.1.6-.1 1.1-.4 1.6h6c-.3-.5-.5-1-.4-1.6L103.4 0zm45.8 16c0-3.5-1.4-5.2-4.3-5.2-1.6 0-3.2.7-4.3 1.8.2 0 .4-.1.6-.1.9 0 2.9.4 2.9 3.6v13.3c0 .6-.1 1.1-.4 1.6h6c-.3-.5-.5-1-.4-1.6l-.1-13.4zM137.4 0l-5.8.2c.5.6.8 1.4.7 2.2v26.9c0 .6-.1 1.1-.4 1.6h6c-.3-.5-.5-1-.4-1.6L137.4 0zm25.7 10.8.1.1c1.7 1.8 1.5 6.4 1.3 9v.1h5.1c.1-2.6-.7-5.2-2.4-7.2-1-1-2.5-1.8-4.1-2zM177.9 21c0-5.3.3-8.7 1.8-10.1-4.4.9-7.2 4.7-7.2 10.1 0 5.6 2.8 9.4 7.4 10.1-1.6-1.4-2-4.9-2-10.1zm5.4-10.2c1.6 1.4 2 5 2 10.2s-.3 8.7-1.8 10.2c4.5-.9 7.2-4.7 7.2-10.2s-2.7-9.4-7.4-10.2zm16.5-.2-5.8.2c.5.6.8 1.4.7 2.2v16.4c.1.6-.1 1.1-.4 1.6h6.1c-.4-.5-.6-1.1-.6-1.7V10.6zm17.2.5c0-.1.1-.2.2-.2h-7.1c.8.8 1.3 1.7 1.6 2.8l7.7 19 2.4-6.5-4.7-12.6c-.4-.8-.4-1.7-.1-2.5z\"/><circle class=\"st0\" cx=\"48.8\" cy=\"8.1\" r=\"2.7\"/><path class=\"st0\" d=\"m222.7 10.9 2.6 8 3.3-8z\"/><circle class=\"st0\" cx=\"25.7\" cy=\"3.3\" r=\"2.7\"/><circle class=\"st0\" cx=\"204.8\" cy=\"13.7\" r=\"2.7\"/><circle class=\"st0\" cx=\"214.1\" cy=\"37.1\" r=\"2.7\"/><path class=\"st0\" d=\"M124.8.6h-5.7v28.7c0 .6-.1 1.2-.5 1.7h6.6c-.3-.5-.5-1.1-.5-1.7V.6zM44.2 17.1c0 2.6-.1 5-1.2 6.2 3.5-.7 5.8-3.1 5.8-6.3 0-5.5-5.7-6.1-6.1-6.1 1.3 1.2 1.5 3.7 1.5 6.2zm-.8 9.8h-4.2c-5.2 0-3.8-3.1-3.8-3.1-1.4.6-2.4 1.9-2.4 3.5 0 3.5 3.5 3.6 4.1 3.6h5.2c1.2 0 5 0 5 3.5 0 1-.3 2-.9 2.8 2-1 3.3-3.1 3.4-5.3 0-3.4-2.1-5-6.4-5z\"/><circle class=\"st0\" cx=\"79.6\" cy=\"14\" r=\"2.7\"/><path class=\"st0\" d=\"M93.1 30.1c-.7-.7-1-1.7-.9-2.6V17.3c0-4.4-1.9-6.3-6.7-6.5 1.1.7 1.7 2.2 1.7 4.4v12.4c0 2.2 1.5 3.6 4 3.6 0 0 2 0 2.7-.7-.3-.1-.6-.2-.8-.4zM158 21s0-8.2 1.9-10.1c-4.4.9-7.2 4.9-7.2 10.4 0 11.7 10.7 10.4 12.4 9.4-.2 0-7.1 1.2-7.1-9.7zm-86.3-5c0-4.7-2.4-5.2-4.3-5.2-1.6 0-3.2.7-4.3 1.8.2-.1 3.5-.8 3.5 3.5v13.3c0 .6-.1 1.1-.4 1.6h6c-.3-.5-.5-1-.4-1.6L71.7 16zM10.6.6h6.5v6.5zm105.8 0h-6.5V7zM8.1 31H.4v-7.7zm30.3 6.1h-5.2v-5.2z\"/></g></g></svg>',variants:{oLI49MpOz:{filter:\"invert(1)\",WebkitFilter:\"invert(1)\"}},withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eFAb2.framer-14aqwz3, .framer-eFAb2 .framer-14aqwz3 { display: block; }\",\".framer-eFAb2.framer-90vvdw { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 275px; }\",\".framer-eFAb2 .framer-yu9dtx { aspect-ratio: 5.725 / 1; flex: none; height: 26px; position: relative; width: var(--framer-aspect-ratio-supported, 149px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eFAb2.framer-90vvdw { gap: 0px; } .framer-eFAb2.framer-90vvdw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-eFAb2.framer-90vvdw > :first-child { margin-left: 0px; } .framer-eFAb2.framer-90vvdw > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26\n * @framerIntrinsicWidth 275\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"oLI49MpOz\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernmRGYRHrw=withCSS(Component,css,\"framer-eFAb2\");export default FramernmRGYRHrw;FramernmRGYRHrw.displayName=\"Logo Link Copy\";FramernmRGYRHrw.defaultProps={height:26,width:275};addPropertyControls(FramernmRGYRHrw,{variant:{options:[\"u7ZOKBz_k\",\"oLI49MpOz\"],optionTitles:[\"White\",\"Black\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramernmRGYRHrw,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernmRGYRHrw\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"275\",\"framerIntrinsicHeight\":\"26\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oLI49MpOz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nmRGYRHrw.map", "// Generated by Framer (f5febb9)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import TextLink from\"https://framerusercontent.com/modules/g6xk8Nal1pE04bsQejNG/ojq49OVdSV1KL4yfaa15/dVTZgYLeH.js\";import LogoLinkCopy from\"https://framerusercontent.com/modules/guxSAkFT1MDMl2tC7ufU/plWME8IVSZXyoJc3qW9r/nmRGYRHrw.js\";const LogoLinkCopyFonts=getFonts(LogoLinkCopy);const TextLinkFonts=getFonts(TextLink);const cycleOrder=[\"B5Y5iKVjr\",\"M4jM47rLU\",\"v5fltjiRS\",\"aMXBB6rcl\",\"uSGfp6YFg\",\"QSBZS8ayT\"];const serializationHash=\"framer-0J0Os\";const variantClassNames={aMXBB6rcl:\"framer-v-1ldb7ji\",B5Y5iKVjr:\"framer-v-10xghyr\",M4jM47rLU:\"framer-v-1ylscxd\",QSBZS8ayT:\"framer-v-1scj5ad\",uSGfp6YFg:\"framer-v-nlc4de\",v5fltjiRS:\"framer-v-12w0cag\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Navigation Black Mobile\":\"aMXBB6rcl\",\"Navigation Black\":\"B5Y5iKVjr\",\"Navigation Clear Mobile\":\"QSBZS8ayT\",\"Navigation Clear\":\"v5fltjiRS\",\"Navigation White Mobile\":\"uSGfp6YFg\",\"Navigation White\":\"M4jM47rLU\"};const getProps=({height,id,menuCursor,tap,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,A3Ai0xrjJ:menuCursor!==null&&menuCursor!==void 0?menuCursor:props.A3Ai0xrjJ,EHMhKGDpT:tap!==null&&tap!==void 0?tap:props.EHMhKGDpT,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"B5Y5iKVjr\"};};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,EHMhKGDpT,A3Ai0xrjJ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"B5Y5iKVjr\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap12t3iox=activeVariantCallback(async(...args)=>{if(EHMhKGDpT){const res=await EHMhKGDpT(...args);if(res===false)return false;}});const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if([\"aMXBB6rcl\",\"uSGfp6YFg\",\"QSBZS8ayT\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-10xghyr\",className,classNames),\"data-framer-name\":\"Navigation Black\",layoutDependency:layoutDependency,layoutId:\"B5Y5iKVjr\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-c3e1dad2-6307-4604-ac9c-cd1636d01c3e, rgb(250, 247, 240))\",...style},variants:{M4jM47rLU:{backgroundColor:\"var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(1, 1, 3))\"},QSBZS8ayT:{backgroundColor:\"rgba(0, 0, 0, 0)\"},uSGfp6YFg:{backgroundColor:\"var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(1, 1, 3))\"},v5fltjiRS:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({aMXBB6rcl:{\"data-framer-name\":\"Navigation Black Mobile\"},M4jM47rLU:{\"data-framer-name\":\"Navigation White\"},QSBZS8ayT:{\"data-framer-name\":\"Navigation Clear Mobile\"},uSGfp6YFg:{\"data-framer-name\":\"Navigation White Mobile\"},v5fltjiRS:{\"data-framer-name\":\"Navigation Clear\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18bsc3b\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"pzAS0eBSs\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-22kwqk\",\"data-framer-name\":\"Nav Row\",layoutDependency:layoutDependency,layoutId:\"jMztSsdAQ\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"R6_F7xjGZ\"},implicitPathVariables:undefined},{href:{webPageId:\"R6_F7xjGZ\"},implicitPathVariables:undefined},{href:{webPageId:\"R6_F7xjGZ\"},implicitPathVariables:undefined},{href:{webPageId:\"R6_F7xjGZ\"},implicitPathVariables:undefined},{href:{webPageId:\"R6_F7xjGZ\"},implicitPathVariables:undefined},{href:{webPageId:\"R6_F7xjGZ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px) - 30px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(20+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-40-26)/2)+0+0,...addPropertyOverrides({aMXBB6rcl:{width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 30px, 1px) - 10px) * 0.75, 1px)`},QSBZS8ayT:{width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 30px, 1px) - 10px) * 0.75, 1px)`},uSGfp6YFg:{width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 30px, 1px) - 10px) * 0.75, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mw4frt-container\",\"data-framer-cursor\":A3Ai0xrjJ,layoutDependency:layoutDependency,layoutId:\"NdfvrfgyD-container\",children:/*#__PURE__*/_jsx(LogoLinkCopy,{height:\"100%\",id:\"NdfvrfgyD\",layoutId:\"NdfvrfgyD\",pStQrnGpz:resolvedLinks[0],style:{width:\"100%\"},variant:\"oLI49MpOz\",width:\"100%\",...addPropertyOverrides({aMXBB6rcl:{pStQrnGpz:resolvedLinks[3]},M4jM47rLU:{pStQrnGpz:resolvedLinks[1],variant:\"u7ZOKBz_k\"},QSBZS8ayT:{pStQrnGpz:resolvedLinks[5],variant:\"u7ZOKBz_k\"},uSGfp6YFg:{pStQrnGpz:resolvedLinks[4],variant:\"u7ZOKBz_k\"},v5fltjiRS:{pStQrnGpz:resolvedLinks[2],variant:\"u7ZOKBz_k\"}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jmfxw3\",layoutDependency:layoutDependency,layoutId:\"Siuyq1j4J\"}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-3a7a3r\",layoutDependency:layoutDependency,layoutId:\"ddJf5mMIm\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mmjcr\",\"data-framer-name\":\"Menu Button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"HnJVkwJRs\",onTap:onTap12t3iox,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ms5cut-container\",layoutDependency:layoutDependency,layoutId:\"DRB0Qna6h-container\",children:/*#__PURE__*/_jsx(TextLink,{height:\"100%\",id:\"DRB0Qna6h\",Kpveh2Q8O:\"menu\",layoutId:\"DRB0Qna6h\",MOYsDPIsL:\"var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(1, 1, 3))\",variant:\"eyytyxpGy\",width:\"100%\",...addPropertyOverrides({M4jM47rLU:{MOYsDPIsL:\"rgb(255, 255, 255)\"},QSBZS8ayT:{MOYsDPIsL:\"var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255))\"},uSGfp6YFg:{MOYsDPIsL:\"rgb(255, 255, 255)\"},v5fltjiRS:{MOYsDPIsL:\"var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255))\"}},baseVariant,gestureVariant)})})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0J0Os.framer-bfcbne, .framer-0J0Os .framer-bfcbne { display: block; }\",\".framer-0J0Os.framer-10xghyr { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 1200px; }\",\".framer-0J0Os .framer-18bsc3b { 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; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0J0Os .framer-22kwqk { 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; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-0J0Os .framer-1mw4frt-container { flex: 3 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-0J0Os .framer-1jmfxw3 { align-content: center; align-items: center; display: flex; flex: 4 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 13px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0J0Os .framer-3a7a3r { align-content: center; align-items: center; display: flex; flex: 4 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; min-height: 13px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0J0Os .framer-1mmjcr { align-content: center; align-items: center; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0J0Os .framer-1ms5cut-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0J0Os.framer-10xghyr, .framer-0J0Os .framer-18bsc3b, .framer-0J0Os .framer-22kwqk, .framer-0J0Os .framer-1jmfxw3, .framer-0J0Os .framer-3a7a3r, .framer-0J0Os .framer-1mmjcr { gap: 0px; } .framer-0J0Os.framer-10xghyr > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-0J0Os.framer-10xghyr > :first-child, .framer-0J0Os .framer-18bsc3b > :first-child, .framer-0J0Os .framer-22kwqk > :first-child, .framer-0J0Os .framer-1jmfxw3 > :first-child, .framer-0J0Os .framer-3a7a3r > :first-child, .framer-0J0Os .framer-1mmjcr > :first-child { margin-left: 0px; } .framer-0J0Os.framer-10xghyr > :last-child, .framer-0J0Os .framer-18bsc3b > :last-child, .framer-0J0Os .framer-22kwqk > :last-child, .framer-0J0Os .framer-1jmfxw3 > :last-child, .framer-0J0Os .framer-3a7a3r > :last-child, .framer-0J0Os .framer-1mmjcr > :last-child { margin-right: 0px; } .framer-0J0Os .framer-18bsc3b > *, .framer-0J0Os .framer-22kwqk > *, .framer-0J0Os .framer-1jmfxw3 > *, .framer-0J0Os .framer-1mmjcr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-0J0Os .framer-3a7a3r > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-0J0Os.framer-v-1ldb7ji.framer-10xghyr, .framer-0J0Os.framer-v-nlc4de.framer-10xghyr, .framer-0J0Os.framer-v-1scj5ad.framer-10xghyr { padding: 20px 15px 20px 15px; width: 390px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 66\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"M4jM47rLU\":{\"layout\":[\"fixed\",\"auto\"]},\"v5fltjiRS\":{\"layout\":[\"fixed\",\"auto\"]},\"aMXBB6rcl\":{\"layout\":[\"fixed\",\"auto\"]},\"uSGfp6YFg\":{\"layout\":[\"fixed\",\"auto\"]},\"QSBZS8ayT\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"EHMhKGDpT\":\"tap\",\"A3Ai0xrjJ\":\"menuCursor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWFrvHDnzd=withCSS(Component,css,\"framer-0J0Os\");export default FramerWFrvHDnzd;FramerWFrvHDnzd.displayName=\"Navigation\";FramerWFrvHDnzd.defaultProps={height:66,width:1200};addPropertyControls(FramerWFrvHDnzd,{variant:{options:[\"B5Y5iKVjr\",\"M4jM47rLU\",\"v5fltjiRS\",\"aMXBB6rcl\",\"uSGfp6YFg\",\"QSBZS8ayT\"],optionTitles:[\"Navigation Black\",\"Navigation White\",\"Navigation Clear\",\"Navigation Black Mobile\",\"Navigation White Mobile\",\"Navigation Clear Mobile\"],title:\"Variant\",type:ControlType.Enum},EHMhKGDpT:{title:\"Tap\",type:ControlType.EventHandler},A3Ai0xrjJ:{title:\"Menu Cursor\",type:ControlType.CustomCursor}});addFonts(FramerWFrvHDnzd,[{explicitInter:true,fonts:[]},...LogoLinkCopyFonts,...TextLinkFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWFrvHDnzd\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"66\",\"framerVariables\":\"{\\\"EHMhKGDpT\\\":\\\"tap\\\",\\\"A3Ai0xrjJ\\\":\\\"menuCursor\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"M4jM47rLU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"v5fltjiRS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aMXBB6rcl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uSGfp6YFg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QSBZS8ayT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8857874)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"JCEI5hzRV\",\"Z4V6ICLXS\"];const serializationHash=\"framer-H3ZUy\";const variantClassNames={JCEI5hzRV:\"framer-v-d7p8lh\",Z4V6ICLXS:\"framer-v-16mxeps\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0: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!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Black:\"Z4V6ICLXS\",White:\"JCEI5hzRV\"};const getProps=({height,id,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,pStQrnGpz:link!==null&&link!==void 0?link:props.pStQrnGpz,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"JCEI5hzRV\"};};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,pStQrnGpz,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"JCEI5hzRV\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:pStQrnGpz,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-d7p8lh\",className,classNames)} framer-16ajx7x`,\"data-framer-name\":\"White\",layoutDependency:layoutDependency,layoutId:\"JCEI5hzRV\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({Z4V6ICLXS:{\"data-framer-name\":\"Black\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-j6p24j\",\"data-framer-name\":\"Word\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:229,layoutDependency:layoutDependency,layoutId:\"wV5oHHf1L\",style:{filter:\"none\",WebkitFilter:\"none\"},svg:'<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 228.6 39.8\" style=\"enable-background:new 0 0 228.6 39.8\" xml:space=\"preserve\"><style>.st0{fill:#fff}</style><g id=\"Layer_2_00000101103413405853604400000010361568996415140536_\"><g id=\"ART\"><path class=\"st0\" d=\"M37.8 17.1c0-2.6.1-5 1.2-6.2-3.5.7-5.8 3.1-5.8 6.3 0 5.5 5.7 6.1 6.1 6.1-1.3-1.2-1.5-3.7-1.5-6.2zM11 12.5C6.3 10.6 3.6 8.7 3.6 5c-.1-1.7.5-3.3 1.8-4.4C2 2.1-.2 5.5 0 9.2c0 5 3.4 6.8 7.8 8.7 4.1 1.7 7.7 3.6 7.7 8.3 0 1.8-.7 3.6-2 4.9 3.6-1.7 5.2-5.5 5.2-9.4.1-5.4-3.3-7.3-7.7-9.2zm17.4-2-5.9.2c.5.8.8 1.7.7 2.7v16c0 .6-.1 1.1-.5 1.6h6c-.3-.5-.5-1-.4-1.6V10.5zm31.4.1-5.8.2c.5.6.8 1.4.7 2.3v16.3c.1.6-.1 1.1-.4 1.6h6c-.3-.5-.5-1-.4-1.6l-.1-18.8zM81 25.3c0-2.2.6-3.7 2-4.6-1.8.1-3.6.7-5.2 1.5-1.4.9-2.2 2.4-2.2 4.1-.2 2.6 1.8 4.9 4.5 5h.6c1.5 0 2.9-.5 4-1.6-.2 0-.4.1-.6.1-.7 0-3.1-.3-3.1-4.5zM103.4 0l-5.8.2c.5.6.7 1.4.7 2.2v26.9c.1.6-.1 1.1-.4 1.6h6c-.3-.5-.5-1-.4-1.6L103.4 0zm45.8 16c0-3.5-1.4-5.2-4.3-5.2-1.6 0-3.2.7-4.3 1.8.2 0 .4-.1.6-.1.9 0 2.9.4 2.9 3.6v13.3c0 .6-.1 1.1-.4 1.6h6c-.3-.5-.5-1-.4-1.6l-.1-13.4zM137.4 0l-5.8.2c.5.6.8 1.4.7 2.2v26.9c0 .6-.1 1.1-.4 1.6h6c-.3-.5-.5-1-.4-1.6L137.4 0zm25.7 10.8.1.1c1.7 1.8 1.5 6.4 1.3 9v.1h5.1c.1-2.6-.7-5.2-2.4-7.2-1-1-2.5-1.8-4.1-2zM177.9 21c0-5.3.3-8.7 1.8-10.1-4.4.9-7.2 4.7-7.2 10.1 0 5.6 2.8 9.4 7.4 10.1-1.6-1.4-2-4.9-2-10.1zm5.4-10.2c1.6 1.4 2 5 2 10.2s-.3 8.7-1.8 10.2c4.5-.9 7.2-4.7 7.2-10.2s-2.7-9.4-7.4-10.2zm16.5-.2-5.8.2c.5.6.8 1.4.7 2.2v16.4c.1.6-.1 1.1-.4 1.6h6.1c-.4-.5-.6-1.1-.6-1.7V10.6zm17.2.5c0-.1.1-.2.2-.2h-7.1c.8.8 1.3 1.7 1.6 2.8l7.7 19 2.4-6.5-4.7-12.6c-.4-.8-.4-1.7-.1-2.5z\"/><circle class=\"st0\" cx=\"48.8\" cy=\"8.1\" r=\"2.7\"/><path class=\"st0\" d=\"m222.7 10.9 2.6 8 3.3-8z\"/><circle class=\"st0\" cx=\"25.7\" cy=\"3.3\" r=\"2.7\"/><circle class=\"st0\" cx=\"204.8\" cy=\"13.7\" r=\"2.7\"/><circle class=\"st0\" cx=\"214.1\" cy=\"37.1\" r=\"2.7\"/><path class=\"st0\" d=\"M124.8.6h-5.7v28.7c0 .6-.1 1.2-.5 1.7h6.6c-.3-.5-.5-1.1-.5-1.7V.6zM44.2 17.1c0 2.6-.1 5-1.2 6.2 3.5-.7 5.8-3.1 5.8-6.3 0-5.5-5.7-6.1-6.1-6.1 1.3 1.2 1.5 3.7 1.5 6.2zm-.8 9.8h-4.2c-5.2 0-3.8-3.1-3.8-3.1-1.4.6-2.4 1.9-2.4 3.5 0 3.5 3.5 3.6 4.1 3.6h5.2c1.2 0 5 0 5 3.5 0 1-.3 2-.9 2.8 2-1 3.3-3.1 3.4-5.3 0-3.4-2.1-5-6.4-5z\"/><circle class=\"st0\" cx=\"79.6\" cy=\"14\" r=\"2.7\"/><path class=\"st0\" d=\"M93.1 30.1c-.7-.7-1-1.7-.9-2.6V17.3c0-4.4-1.9-6.3-6.7-6.5 1.1.7 1.7 2.2 1.7 4.4v12.4c0 2.2 1.5 3.6 4 3.6 0 0 2 0 2.7-.7-.3-.1-.6-.2-.8-.4zM158 21s0-8.2 1.9-10.1c-4.4.9-7.2 4.9-7.2 10.4 0 11.7 10.7 10.4 12.4 9.4-.2 0-7.1 1.2-7.1-9.7zm-86.3-5c0-4.7-2.4-5.2-4.3-5.2-1.6 0-3.2.7-4.3 1.8.2-.1 3.5-.8 3.5 3.5v13.3c0 .6-.1 1.1-.4 1.6h6c-.3-.5-.5-1-.4-1.6L71.7 16zM10.6.6h6.5v6.5zm105.8 0h-6.5V7zM8.1 31H.4v-7.7zm30.3 6.1h-5.2v-5.2z\"/></g></g></svg>',variants:{Z4V6ICLXS:{filter:\"invert(1)\",WebkitFilter:\"invert(1)\"}},withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-H3ZUy.framer-16ajx7x, .framer-H3ZUy .framer-16ajx7x { display: block; }\",\".framer-H3ZUy.framer-d7p8lh { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 275px; }\",\".framer-H3ZUy .framer-j6p24j { aspect-ratio: 5.725 / 1; flex: none; height: 26px; position: relative; width: var(--framer-aspect-ratio-supported, 149px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-H3ZUy.framer-d7p8lh { gap: 0px; } .framer-H3ZUy.framer-d7p8lh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-H3ZUy.framer-d7p8lh > :first-child { margin-left: 0px; } .framer-H3ZUy.framer-d7p8lh > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26\n * @framerIntrinsicWidth 275\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Z4V6ICLXS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"pStQrnGpz\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjRXzTKEh2=withCSS(Component,css,\"framer-H3ZUy\");export default FramerjRXzTKEh2;FramerjRXzTKEh2.displayName=\"Logo Link\";FramerjRXzTKEh2.defaultProps={height:26,width:275};addPropertyControls(FramerjRXzTKEh2,{variant:{options:[\"JCEI5hzRV\",\"Z4V6ICLXS\"],optionTitles:[\"White\",\"Black\"],title:\"Variant\",type:ControlType.Enum},pStQrnGpz:{title:\"Link\",type:ControlType.Link}});addFonts(FramerjRXzTKEh2,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjRXzTKEh2\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Z4V6ICLXS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"pStQrnGpz\\\":\\\"link\\\"}\",\"framerIntrinsicHeight\":\"26\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"275\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jRXzTKEh2.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"ME6X9n3RI\",\"NLdz4yxAe\",\"FJUsFwJoC\"];const serializationHash=\"framer-dJZsD\";const variantClassNames={FJUsFwJoC:\"framer-v-11go5yc\",ME6X9n3RI:\"framer-v-oxtog\",NLdz4yxAe:\"framer-v-1a4kbw2\"};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:177,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={\"Link Active\":\"NLdz4yxAe\",\"Link Mobile\":\"FJUsFwJoC\",Link:\"ME6X9n3RI\"};const getProps=({height,id,link,tap,title,width,...props})=>{return{...props,aAL3Kk_ub:tap??props.aAL3Kk_ub,fHKDDMhyL:link??props.fHKDDMhyL,pmLxJr3U4:title??props.pmLxJr3U4??\"Profile\",variant:humanReadableVariantMap[props.variant]??props.variant??\"ME6X9n3RI\"};};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,pmLxJr3U4,fHKDDMhyL,aAL3Kk_ub,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ME6X9n3RI\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapahgluq=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(aAL3Kk_ub){const res=await aAL3Kk_ub(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);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:fHKDDMhyL,motionChild:true,nodeId:\"ME6X9n3RI\",scopeId:\"u0l0koE88\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-oxtog\",className,classNames)} framer-yoisgk`,\"data-framer-name\":\"Link\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ME6X9n3RI\",onTap:onTapahgluq,ref:refBinding,style:{...style},...addPropertyOverrides({FJUsFwJoC:{\"data-framer-name\":\"Link Mobile\",\"data-highlight\":undefined,onTap:undefined},NLdz4yxAe:{\"data-framer-name\":\"Link Active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Nocm9uaWNsZSBEaXNwIENvbmQgTGlnaHQ=\",\"--framer-font-family\":'\"Chronicle Disp Cond Light\", \"Chronicle Disp Cond Light Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c3e1dad2-6307-4604-ac9c-cd1636d01c3e, rgb(250, 247, 240)))\",\"--framer-text-transform\":\"capitalize\"},children:\"Profile\"})}),className:\"framer-1j9t55k\",\"data-framer-name\":\"PROFILE\",fonts:[\"CUSTOM;Chronicle Disp Cond Light\"],layoutDependency:layoutDependency,layoutId:\"VW9xFD35z\",style:{\"--extracted-r6o4lv\":\"var(--token-c3e1dad2-6307-4604-ac9c-cd1636d01c3e, rgb(250, 247, 240))\",\"--framer-paragraph-spacing\":\"0px\",opacity:1},text:pmLxJr3U4,variants:{FJUsFwJoC:{opacity:1},NLdz4yxAe:{opacity:.4}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FJUsFwJoC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Nocm9uaWNsZSBEaXNwIENvbmQgTGlnaHQ=\",\"--framer-font-family\":'\"Chronicle Disp Cond Light\", \"Chronicle Disp Cond Light Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c3e1dad2-6307-4604-ac9c-cd1636d01c3e, rgb(250, 247, 240)))\",\"--framer-text-transform\":\"capitalize\"},children:\"Profile\"})})},NLdz4yxAe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Nocm9uaWNsZSBEaXNwIENvbmQgTGlnaHQgSXRhbGlj\",\"--framer-font-family\":'\"Chronicle Disp Cond Light Italic\", \"Chronicle Disp Cond Light Italic Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c3e1dad2-6307-4604-ac9c-cd1636d01c3e, rgb(250, 247, 240)))\",\"--framer-text-transform\":\"capitalize\"},children:\"Profile\"})}),fonts:[\"CUSTOM;Chronicle Disp Cond Light Italic\"]}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dJZsD.framer-yoisgk, .framer-dJZsD .framer-yoisgk { display: block; }\",\".framer-dJZsD.framer-oxtog { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-dJZsD .framer-1j9t55k { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dJZsD.framer-oxtog { gap: 0px; } .framer-dJZsD.framer-oxtog > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-dJZsD.framer-oxtog > :first-child { margin-left: 0px; } .framer-dJZsD.framer-oxtog > :last-child { margin-right: 0px; } }\",\".framer-dJZsD.framer-v-11go5yc.framer-oxtog { cursor: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 191.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"NLdz4yxAe\":{\"layout\":[\"auto\",\"auto\"]},\"FJUsFwJoC\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"pmLxJr3U4\":\"title\",\"fHKDDMhyL\":\"link\",\"aAL3Kk_ub\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameru0l0koE88=withCSS(Component,css,\"framer-dJZsD\");export default Frameru0l0koE88;Frameru0l0koE88.displayName=\"Open Navigation Link\";Frameru0l0koE88.defaultProps={height:80,width:191.5};addPropertyControls(Frameru0l0koE88,{variant:{options:[\"ME6X9n3RI\",\"NLdz4yxAe\",\"FJUsFwJoC\"],optionTitles:[\"Link\",\"Link Active\",\"Link Mobile\"],title:\"Variant\",type:ControlType.Enum},pmLxJr3U4:{defaultValue:\"Profile\",displayTextArea:false,title:\"Title\",type:ControlType.String},fHKDDMhyL:{title:\"Link\",type:ControlType.Link},aAL3Kk_ub:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(Frameru0l0koE88,[{explicitInter:true,fonts:[{family:\"Chronicle Disp Cond Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/ljv5nNZuVeikc9y6mCI2plxR47c.woff2\"},{family:\"Chronicle Disp Cond Light Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/DYgxrRRXIm2f9YDptgtuAiyt2fk.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameru0l0koE88\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"191.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NLdz4yxAe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FJUsFwJoC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"80\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"pmLxJr3U4\\\":\\\"title\\\",\\\"fHKDDMhyL\\\":\\\"link\\\",\\\"aAL3Kk_ub\\\":\\\"tap\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./u0l0koE88.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import LogoLink from\"https://framerusercontent.com/modules/dZAW0AwhLUrWPtCoryKk/CyHuU7r5jYYIEB3WORHg/jRXzTKEh2.js\";import TextLink from\"https://framerusercontent.com/modules/g6xk8Nal1pE04bsQejNG/ojq49OVdSV1KL4yfaa15/dVTZgYLeH.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import OpenNavigationLink from\"https://framerusercontent.com/modules/9dBiW5NKVRSkhKdutRp9/mUwXtjeQGojxtDzAc5Es/u0l0koE88.js\";const LogoLinkFonts=getFonts(LogoLink);const TextLinkFonts=getFonts(TextLink);const OpenNavigationLinkFonts=getFonts(OpenNavigationLink);const SmartComponentScopedContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(SmartComponentScopedContainer));const VideoFonts=getFonts(Video);const cycleOrder=[\"H7agQX21k\",\"JxkDr03AZ\",\"pjKbobwzi\",\"BJHZK6D4I\",\"xhRLEFVqE\",\"gJmGq9sCK\",\"mzXRBr08Q\"];const serializationHash=\"framer-UGaSC\";const variantClassNames={BJHZK6D4I:\"framer-v-zl25o8\",gJmGq9sCK:\"framer-v-cfpwj2\",H7agQX21k:\"framer-v-zy1pwx\",JxkDr03AZ:\"framer-v-1ftz1ay\",mzXRBr08Q:\"framer-v-1f95odl\",pjKbobwzi:\"framer-v-1tu2c22\",xhRLEFVqE:\"framer-v-aduugp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:1.5,ease:[0,.42,.67,.99],type:\"tween\"};const transition2={delay:.2,duration:1.5,ease:[.16,1,.3,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition3={delay:.1,duration:1.5,ease:[.16,1,.3,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={delay:.4,duration:1.5,ease:[.16,1,.3,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={delay:.5,duration:1.5,ease:[.16,1,.3,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const transition6={delay:.3,duration:1.5,ease:[.16,1,.3,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const transition7={delay:.1,duration:.6,ease:[0,0,1,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition8={delay:.5,duration:.6,ease:[0,0,1,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};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={\"Case Studies\":\"pjKbobwzi\",\"Mobile Full Navigation \":\"mzXRBr08Q\",Contact:\"BJHZK6D4I\",Index:\"xhRLEFVqE\",Journal:\"gJmGq9sCK\",Profile:\"JxkDr03AZ\",Unhovered:\"H7agQX21k\"};const getProps=({height,id,tap,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"H7agQX21k\",ZnO4gEEiP:tap??props.ZnO4gEEiP};};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,ZnO4gEEiP,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"H7agQX21k\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapsgutib=activeVariantCallback(async(...args)=>{if(ZnO4gEEiP){const res=await ZnO4gEEiP(...args);if(res===false)return false;}});const onMouseEnter486qth=activeVariantCallback(async(...args)=>{setVariant(\"pjKbobwzi\");});const onMouseLeave1pfktmc=activeVariantCallback(async(...args)=>{setVariant(\"H7agQX21k\");});const onMouseEnterfqimh5=activeVariantCallback(async(...args)=>{setVariant(\"JxkDr03AZ\");});const onMouseEnteruo6ajh=activeVariantCallback(async(...args)=>{setVariant(\"gJmGq9sCK\");});const onMouseEnter143vf3t=activeVariantCallback(async(...args)=>{setVariant(\"xhRLEFVqE\");});const onMouseLeaveuo6ajh=activeVariantCallback(async(...args)=>{setVariant(\"gJmGq9sCK\");});const onMouseEnterp0nsz7=activeVariantCallback(async(...args)=>{setVariant(\"BJHZK6D4I\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(baseVariant===\"mzXRBr08Q\")return false;return true;};const isDisplayed1=()=>{if([\"JxkDr03AZ\",\"pjKbobwzi\",\"BJHZK6D4I\",\"xhRLEFVqE\",\"gJmGq9sCK\",\"mzXRBr08Q\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"JxkDr03AZ\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"pjKbobwzi\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"BJHZK6D4I\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"gJmGq9sCK\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"xhRLEFVqE\")return true;return false;};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-zy1pwx\",className,classNames),\"data-framer-name\":\"Unhovered\",layoutDependency:layoutDependency,layoutId:\"H7agQX21k\",ref:refBinding,style:{backgroundColor:\"var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(1, 1, 3))\",...style},...addPropertyOverrides({BJHZK6D4I:{\"data-framer-name\":\"Contact\"},gJmGq9sCK:{\"data-framer-name\":\"Journal\"},JxkDr03AZ:{\"data-framer-name\":\"Profile\"},mzXRBr08Q:{\"data-framer-name\":\"Mobile Full Navigation \"},pjKbobwzi:{\"data-framer-name\":\"Case Studies\"},xhRLEFVqE:{\"data-framer-name\":\"Index\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-61h9yq\",\"data-framer-name\":\"Nav Row\",layoutDependency:layoutDependency,layoutId:\"v5cJLaMBI\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"R6_F7xjGZ\"},implicitPathVariables:undefined},{href:{webPageId:\"R6_F7xjGZ\"},implicitPathVariables:undefined},{href:{webPageId:\"R6_F7xjGZ\"},implicitPathVariables:undefined},{href:{webPageId:\"R6_F7xjGZ\"},implicitPathVariables:undefined},{href:{webPageId:\"R6_F7xjGZ\"},implicitPathVariables:undefined},{href:{webPageId:\"R6_F7xjGZ\"},implicitPathVariables:undefined},{href:{webPageId:\"R6_F7xjGZ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,width:`max((${componentViewport?.width||\"100vw\"} - 60px) * 0.375, 1px)`,y:(componentViewport?.y||0)+0+20,...addPropertyOverrides({mzXRBr08Q:{width:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sktx6a-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"NaxmcDpFJ-container\",nodeId:\"NaxmcDpFJ\",rendersWithMotion:true,scopeId:\"Zw8Tz_jYx\",children:/*#__PURE__*/_jsx(LogoLink,{height:\"100%\",id:\"NaxmcDpFJ\",layoutId:\"NaxmcDpFJ\",pStQrnGpz:resolvedLinks[0],style:{width:\"100%\"},variant:\"JCEI5hzRV\",width:\"100%\",...addPropertyOverrides({BJHZK6D4I:{pStQrnGpz:resolvedLinks[3]},gJmGq9sCK:{pStQrnGpz:resolvedLinks[5]},JxkDr03AZ:{pStQrnGpz:resolvedLinks[1]},mzXRBr08Q:{pStQrnGpz:resolvedLinks[6]},pjKbobwzi:{pStQrnGpz:resolvedLinks[2]},xhRLEFVqE:{pStQrnGpz:resolvedLinks[4]}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-14zf0j2\",layoutDependency:layoutDependency,layoutId:\"qI4X_ue_W\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ooiedo\",\"data-framer-name\":\"Menu Button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"QuOS4q3i3\",onTap:onTapsgutib,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rjl1ya-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"SidBNvUOW-container\",nodeId:\"SidBNvUOW\",rendersWithMotion:true,scopeId:\"Zw8Tz_jYx\",children:/*#__PURE__*/_jsx(TextLink,{height:\"100%\",id:\"SidBNvUOW\",Kpveh2Q8O:\"close\",layoutId:\"SidBNvUOW\",MOYsDPIsL:\"var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255))\",variant:\"eyytyxpGy\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-swnnx\",\"data-framer-name\":\"Menu Content\",layoutDependency:layoutDependency,layoutId:\"CEjii3JwI\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n62tvr\",\"data-framer-name\":\"Link Wrapper\",layoutDependency:layoutDependency,layoutId:\"aYWrZHWZw\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-b128f0\",\"data-framer-name\":\"Individual Link Wrapper\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"pJEh7Z9Fr\",onMouseEnter:onMouseEnter486qth,...addPropertyOverrides({mzXRBr08Q:{\"data-highlight\":undefined,onMouseEnter:undefined},pjKbobwzi:{onMouseLeave:onMouseLeave1pfktmc}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UbvNQ8Hsc\"},implicitPathVariables:undefined},{href:{webPageId:\"UbvNQ8Hsc\"},implicitPathVariables:undefined},{href:{webPageId:\"UbvNQ8Hsc\"},implicitPathVariables:undefined},{href:{webPageId:\"UbvNQ8Hsc\"},implicitPathVariables:undefined},{href:{webPageId:\"UbvNQ8Hsc\"},implicitPathVariables:undefined},{href:{webPageId:\"UbvNQ8Hsc\"},implicitPathVariables:undefined},{href:{webPageId:\"UbvNQ8Hsc\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||800)-0-Math.max(0,((componentViewport?.height||800)-0-0)/1)*1)/1*0)+(0+(Math.max(0,((componentViewport?.height||800)-0-0)/1)*1-0-(Math.max(0,((componentViewport?.height||800)-0-0)/1)*1-0)*1)/2)+0+(((Math.max(0,((componentViewport?.height||800)-0-0)/1)*1-0)*1-0-420)/2+0+0)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-925wja-container\",\"data-framer-appear-id\":\"925wja\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"ELHO77Zdw-container\",nodeId:\"ELHO77Zdw\",optimized:true,rendersWithMotion:true,scopeId:\"Zw8Tz_jYx\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(OpenNavigationLink,{fHKDDMhyL:resolvedLinks1[0],height:\"100%\",id:\"ELHO77Zdw\",layoutId:\"ELHO77Zdw\",pmLxJr3U4:\"work\",variant:\"ME6X9n3RI\",width:\"100%\",...addPropertyOverrides({BJHZK6D4I:{fHKDDMhyL:resolvedLinks1[3]},gJmGq9sCK:{fHKDDMhyL:resolvedLinks1[5]},JxkDr03AZ:{fHKDDMhyL:resolvedLinks1[1]},mzXRBr08Q:{fHKDDMhyL:resolvedLinks1[6],pmLxJr3U4:\"Work\",variant:\"FJUsFwJoC\"},pjKbobwzi:{fHKDDMhyL:resolvedLinks1[2],variant:\"NLdz4yxAe\"},xhRLEFVqE:{fHKDDMhyL:resolvedLinks1[4]}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gkqap3\",\"data-framer-name\":\"Individual Link Wrapper\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"CmMulAXsh\",onMouseEnter:onMouseEnterfqimh5,...addPropertyOverrides({JxkDr03AZ:{onMouseLeave:onMouseLeave1pfktmc},mzXRBr08Q:{\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fxz_zRIyp\"},implicitPathVariables:undefined},{href:{webPageId:\"fxz_zRIyp\"},implicitPathVariables:undefined},{href:{webPageId:\"fxz_zRIyp\"},implicitPathVariables:undefined},{href:{webPageId:\"fxz_zRIyp\"},implicitPathVariables:undefined},{href:{webPageId:\"fxz_zRIyp\"},implicitPathVariables:undefined},{href:{webPageId:\"fxz_zRIyp\"},implicitPathVariables:undefined},{href:{webPageId:\"fxz_zRIyp\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||800)-0-Math.max(0,((componentViewport?.height||800)-0-0)/1)*1)/1*0)+(0+(Math.max(0,((componentViewport?.height||800)-0-0)/1)*1-0-(Math.max(0,((componentViewport?.height||800)-0-0)/1)*1-0)*1)/2)+0+(((Math.max(0,((componentViewport?.height||800)-0-0)/1)*1-0)*1-0-420)/2+80+5)+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-jnrz6-container\",\"data-framer-appear-id\":\"jnrz6\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"Es_ebL0mz-container\",nodeId:\"Es_ebL0mz\",optimized:true,rendersWithMotion:true,scopeId:\"Zw8Tz_jYx\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(OpenNavigationLink,{fHKDDMhyL:resolvedLinks2[0],height:\"100%\",id:\"Es_ebL0mz\",layoutId:\"Es_ebL0mz\",pmLxJr3U4:\"about\",variant:\"ME6X9n3RI\",width:\"100%\",...addPropertyOverrides({BJHZK6D4I:{fHKDDMhyL:resolvedLinks2[3]},gJmGq9sCK:{aAL3Kk_ub:undefined,fHKDDMhyL:resolvedLinks2[5]},JxkDr03AZ:{fHKDDMhyL:resolvedLinks2[1],variant:\"NLdz4yxAe\"},mzXRBr08Q:{fHKDDMhyL:resolvedLinks2[6],variant:\"FJUsFwJoC\"},pjKbobwzi:{fHKDDMhyL:resolvedLinks2[2]},xhRLEFVqE:{aAL3Kk_ub:undefined,fHKDDMhyL:resolvedLinks2[4]}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ejb2n5\",\"data-framer-name\":\"Individual Link Wrapper\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"a_zLulazN\",onMouseEnter:onMouseEnteruo6ajh,...addPropertyOverrides({gJmGq9sCK:{onMouseLeave:onMouseLeave1pfktmc},mzXRBr08Q:{\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vUko_ced0\"},implicitPathVariables:undefined},{href:{webPageId:\"vUko_ced0\"},implicitPathVariables:undefined},{href:{webPageId:\"vUko_ced0\"},implicitPathVariables:undefined},{href:{webPageId:\"vUko_ced0\"},implicitPathVariables:undefined},{href:{webPageId:\"vUko_ced0\"},implicitPathVariables:undefined},{href:{webPageId:\"vUko_ced0\"},implicitPathVariables:undefined},{href:{webPageId:\"vUko_ced0\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||800)-0-Math.max(0,((componentViewport?.height||800)-0-0)/1)*1)/1*0)+(0+(Math.max(0,((componentViewport?.height||800)-0-0)/1)*1-0-(Math.max(0,((componentViewport?.height||800)-0-0)/1)*1-0)*1)/2)+0+(((Math.max(0,((componentViewport?.height||800)-0-0)/1)*1-0)*1-0-420)/2+160+10)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-dho7yj-container\",\"data-framer-appear-id\":\"dho7yj\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"CPmOQDJ4D-container\",nodeId:\"CPmOQDJ4D\",optimized:true,rendersWithMotion:true,scopeId:\"Zw8Tz_jYx\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(OpenNavigationLink,{fHKDDMhyL:resolvedLinks3[0],height:\"100%\",id:\"CPmOQDJ4D\",layoutId:\"CPmOQDJ4D\",pmLxJr3U4:\"news\",variant:\"ME6X9n3RI\",width:\"100%\",...addPropertyOverrides({BJHZK6D4I:{fHKDDMhyL:resolvedLinks3[3]},gJmGq9sCK:{fHKDDMhyL:resolvedLinks3[5],variant:\"NLdz4yxAe\"},JxkDr03AZ:{fHKDDMhyL:resolvedLinks3[1]},mzXRBr08Q:{fHKDDMhyL:resolvedLinks3[6],variant:\"FJUsFwJoC\"},pjKbobwzi:{fHKDDMhyL:resolvedLinks3[2]},xhRLEFVqE:{fHKDDMhyL:resolvedLinks3[4]}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1amf3gw\",\"data-framer-name\":\"Individual Link Wrapper\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"WAGz4xvTQ\",onMouseEnter:onMouseEnter143vf3t,...addPropertyOverrides({gJmGq9sCK:{onMouseLeave:onMouseLeaveuo6ajh},mzXRBr08Q:{\"data-highlight\":undefined,onMouseEnter:undefined},xhRLEFVqE:{onMouseLeave:onMouseLeave1pfktmc}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"M4PZacFWG\"},implicitPathVariables:undefined},{href:{webPageId:\"M4PZacFWG\"},implicitPathVariables:undefined},{href:{webPageId:\"M4PZacFWG\"},implicitPathVariables:undefined},{href:{webPageId:\"M4PZacFWG\"},implicitPathVariables:undefined},{href:{webPageId:\"M4PZacFWG\"},implicitPathVariables:undefined},{href:{webPageId:\"M4PZacFWG\"},implicitPathVariables:undefined},{href:{webPageId:\"M4PZacFWG\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||800)-0-Math.max(0,((componentViewport?.height||800)-0-0)/1)*1)/1*0)+(0+(Math.max(0,((componentViewport?.height||800)-0-0)/1)*1-0-(Math.max(0,((componentViewport?.height||800)-0-0)/1)*1-0)*1)/2)+0+(((Math.max(0,((componentViewport?.height||800)-0-0)/1)*1-0)*1-0-420)/2+240+15)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-xwsfcs-container\",\"data-framer-appear-id\":\"xwsfcs\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"SKm7Ffr5O-container\",nodeId:\"SKm7Ffr5O\",optimized:true,rendersWithMotion:true,scopeId:\"Zw8Tz_jYx\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(OpenNavigationLink,{fHKDDMhyL:resolvedLinks4[0],height:\"100%\",id:\"SKm7Ffr5O\",layoutId:\"SKm7Ffr5O\",pmLxJr3U4:\"Careers\",variant:\"ME6X9n3RI\",width:\"100%\",...addPropertyOverrides({BJHZK6D4I:{fHKDDMhyL:resolvedLinks4[3]},gJmGq9sCK:{fHKDDMhyL:resolvedLinks4[5]},JxkDr03AZ:{fHKDDMhyL:resolvedLinks4[1]},mzXRBr08Q:{fHKDDMhyL:resolvedLinks4[6],variant:\"FJUsFwJoC\"},pjKbobwzi:{fHKDDMhyL:resolvedLinks4[2]},xhRLEFVqE:{fHKDDMhyL:resolvedLinks4[4],variant:\"NLdz4yxAe\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mo65uo\",\"data-framer-name\":\"Individual Link Wrapper\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"HmKSyqZKj\",onMouseEnter:onMouseEnterp0nsz7,...addPropertyOverrides({BJHZK6D4I:{onMouseLeave:onMouseLeave1pfktmc},mzXRBr08Q:{\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gmXtVnIzJ\"},implicitPathVariables:undefined},{href:{webPageId:\"gmXtVnIzJ\"},implicitPathVariables:undefined},{href:{webPageId:\"gmXtVnIzJ\"},implicitPathVariables:undefined},{href:{webPageId:\"gmXtVnIzJ\"},implicitPathVariables:undefined},{href:{webPageId:\"gmXtVnIzJ\"},implicitPathVariables:undefined},{href:{webPageId:\"gmXtVnIzJ\"},implicitPathVariables:undefined},{href:{webPageId:\"gmXtVnIzJ\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||800)-0-Math.max(0,((componentViewport?.height||800)-0-0)/1)*1)/1*0)+(0+(Math.max(0,((componentViewport?.height||800)-0-0)/1)*1-0-(Math.max(0,((componentViewport?.height||800)-0-0)/1)*1-0)*1)/2)+0+(((Math.max(0,((componentViewport?.height||800)-0-0)/1)*1-0)*1-0-420)/2+320+20)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation5,className:\"framer-1oxwat8-container\",\"data-framer-appear-id\":\"1oxwat8\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"tMGXsMLBN-container\",nodeId:\"tMGXsMLBN\",optimized:true,rendersWithMotion:true,scopeId:\"Zw8Tz_jYx\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(OpenNavigationLink,{fHKDDMhyL:resolvedLinks5[0],height:\"100%\",id:\"tMGXsMLBN\",layoutId:\"tMGXsMLBN\",pmLxJr3U4:\"Contact\",variant:\"ME6X9n3RI\",width:\"100%\",...addPropertyOverrides({BJHZK6D4I:{fHKDDMhyL:resolvedLinks5[3],variant:\"NLdz4yxAe\"},gJmGq9sCK:{fHKDDMhyL:resolvedLinks5[5]},JxkDr03AZ:{fHKDDMhyL:resolvedLinks5[1]},mzXRBr08Q:{fHKDDMhyL:resolvedLinks5[6],variant:\"FJUsFwJoC\"},pjKbobwzi:{fHKDDMhyL:resolvedLinks5[2]},xhRLEFVqE:{fHKDDMhyL:resolvedLinks5[4]}},baseVariant,gestureVariant)})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation6,className:\"framer-2pud80-container\",\"data-framer-appear-id\":\"2pud80\",\"data-framer-name\":\"Video Neutral\",initial:animation7,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"DwR5pYaGX-container\",name:\"Video Neutral\",nodeId:\"DwR5pYaGX\",optimized:true,rendersWithMotion:true,scopeId:\"Zw8Tz_jYx\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"DwR5pYaGX\",isMixedBorderRadius:false,layoutId:\"DwR5pYaGX\",loop:true,muted:true,name:\"Video Neutral\",objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/Ner28rjGjKCbQTu8kmTMH524RA.jpg\",posterEnabled:true,srcType:\"URL\",srcUrl:\"https://signaltheory.b-cdn.net/website-menu-videos/trucking.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation6,className:\"framer-aphqju-container\",\"data-framer-appear-id\":\"aphqju\",\"data-framer-name\":\"Video Profile\",initial:animation7,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"excc5ew87-container\",name:\"Video Profile\",nodeId:\"excc5ew87\",optimized:true,rendersWithMotion:true,scopeId:\"Zw8Tz_jYx\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"excc5ew87\",isMixedBorderRadius:false,layoutId:\"excc5ew87\",loop:true,muted:true,name:\"Video Profile\",objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/dADiHde0L1Ru0JMS1qFh4XGYn1M.jpg\",posterEnabled:true,srcType:\"URL\",srcUrl:\"https://signaltheory.b-cdn.net/website-menu-videos/deere.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation6,className:\"framer-wjhl8n-container\",\"data-framer-appear-id\":\"wjhl8n\",\"data-framer-name\":\"Video Case Studies\",initial:animation7,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"dCtKXu6CA-container\",name:\"Video Case Studies\",nodeId:\"dCtKXu6CA\",optimized:true,rendersWithMotion:true,scopeId:\"Zw8Tz_jYx\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"dCtKXu6CA\",isMixedBorderRadius:false,layoutId:\"dCtKXu6CA\",loop:true,muted:true,name:\"Video Case Studies\",objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/IpKNnEyYsg7Onr7B6qTxO6yEY.jpg\",posterEnabled:true,srcType:\"URL\",srcUrl:\"https://signaltheory.b-cdn.net/website-menu-videos/sonic.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation6,className:\"framer-tod4qg-container\",\"data-framer-appear-id\":\"tod4qg\",\"data-framer-name\":\"Video Contact\",initial:animation7,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"wV7SqZFUL-container\",name:\"Video Contact\",nodeId:\"wV7SqZFUL\",optimized:true,rendersWithMotion:true,scopeId:\"Zw8Tz_jYx\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"wV7SqZFUL\",isMixedBorderRadius:false,layoutId:\"wV7SqZFUL\",loop:true,muted:true,name:\"Video Contact\",objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/n3aFCAVDgYC2swkl9L46cSzESXs.jpg\",posterEnabled:true,srcType:\"URL\",srcUrl:\"https://signaltheory.b-cdn.net/website-menu-videos/aero.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation6,className:\"framer-2v105w-container\",\"data-framer-appear-id\":\"2v105w\",\"data-framer-name\":\"Video Journal\",initial:animation7,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Ykk8WzCNU-container\",name:\"Video Journal\",nodeId:\"Ykk8WzCNU\",optimized:true,rendersWithMotion:true,scopeId:\"Zw8Tz_jYx\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Ykk8WzCNU\",isMixedBorderRadius:false,layoutId:\"Ykk8WzCNU\",loop:true,muted:true,name:\"Video Journal\",objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/kJCLz1x9SZ98gPMkpSEvMlGEvM.jpg\",posterEnabled:true,srcType:\"URL\",srcUrl:\"https://signaltheory.b-cdn.net/website-menu-videos/pecan.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation6,className:\"framer-1rdivvv-container\",\"data-framer-appear-id\":\"1rdivvv\",\"data-framer-name\":\"Video Index\",initial:animation7,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"VlxOCMYOW-container\",name:\"Video Index\",nodeId:\"VlxOCMYOW\",optimized:true,rendersWithMotion:true,scopeId:\"Zw8Tz_jYx\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"VlxOCMYOW\",isMixedBorderRadius:false,layoutId:\"VlxOCMYOW\",loop:true,muted:true,name:\"Video Index\",objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/A3Wg8qERt0Bagde39YmHwRf8LE.jpg\",posterEnabled:true,srcType:\"URL\",srcUrl:\"https://signaltheory.b-cdn.net/website-menu-videos/office.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qfmq66\",\"data-framer-name\":\"Footer\",layoutDependency:layoutDependency,layoutId:\"YeWlrZQnX\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10h9fpb\",layoutDependency:layoutDependency,layoutId:\"XLE4P_Lpc\",children:isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mw73al\",\"data-framer-name\":\"Contact Wrapper\",layoutDependency:layoutDependency,layoutId:\"MSS46_Zc_\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation8,className:\"framer-1okx08e-container\",\"data-framer-appear-id\":\"1okx08e\",initial:animation7,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"xhuL2LZVU-container\",nodeId:\"xhuL2LZVU\",optimized:true,rendersWithMotion:true,scopeId:\"Zw8Tz_jYx\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(TextLink,{height:\"100%\",id:\"xhuL2LZVU\",Kpveh2Q8O:\"JOY. COMFORT. MEANING.\",layoutId:\"xhuL2LZVU\",MOYsDPIsL:\"var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255))\",variant:\"eyytyxpGy\",width:\"100%\"})})})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UGaSC.framer-xwvbnr, .framer-UGaSC .framer-xwvbnr { display: block; }\",\".framer-UGaSC.framer-zy1pwx { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; height: 800px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-UGaSC .framer-61h9yq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 20px 20px 0px 20px; position: absolute; right: 0px; top: 0px; z-index: 5; }\",\".framer-UGaSC .framer-sktx6a-container { flex: 3 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-UGaSC .framer-14zf0j2 { align-content: center; align-items: center; display: flex; flex: 4 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; min-height: 13px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-UGaSC .framer-1ooiedo { align-content: center; align-items: center; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 10; }\",\".framer-UGaSC .framer-rjl1ya-container, .framer-UGaSC .framer-925wja-container, .framer-UGaSC .framer-jnrz6-container, .framer-UGaSC .framer-dho7yj-container, .framer-UGaSC .framer-xwsfcs-container, .framer-UGaSC .framer-1oxwat8-container, .framer-UGaSC .framer-1okx08e-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-UGaSC .framer-swnnx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-UGaSC .framer-1n62tvr { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-UGaSC .framer-b128f0, .framer-UGaSC .framer-ejb2n5, .framer-UGaSC .framer-1amf3gw, .framer-UGaSC .framer-mo65uo { 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 0px 0px 20px; position: relative; width: min-content; }\",\".framer-UGaSC .framer-gkqap3 { 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 0px 0px 20px; position: relative; width: min-content; }\",\".framer-UGaSC .framer-2pud80-container, .framer-UGaSC .framer-aphqju-container, .framer-UGaSC .framer-wjhl8n-container, .framer-UGaSC .framer-tod4qg-container, .framer-UGaSC .framer-1rdivvv-container { flex: none; height: 100%; position: absolute; right: 0px; top: 0px; width: 50%; z-index: 1; }\",\".framer-UGaSC .framer-2v105w-container { flex: none; height: 100%; position: absolute; right: 0px; top: calc(50.00000000000002% - 100% / 2); width: 50%; z-index: 1; }\",\".framer-UGaSC .framer-1qfmq66 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px 20px 20px 20px; position: absolute; right: 0px; z-index: 1; }\",\".framer-UGaSC .framer-10h9fpb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 13px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-UGaSC .framer-1mw73al { align-content: center; align-items: center; display: flex; flex: 3 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UGaSC .framer-61h9yq, .framer-UGaSC .framer-14zf0j2, .framer-UGaSC .framer-1ooiedo, .framer-UGaSC .framer-swnnx, .framer-UGaSC .framer-1n62tvr, .framer-UGaSC .framer-b128f0, .framer-UGaSC .framer-gkqap3, .framer-UGaSC .framer-ejb2n5, .framer-UGaSC .framer-1amf3gw, .framer-UGaSC .framer-mo65uo, .framer-UGaSC .framer-1qfmq66, .framer-UGaSC .framer-10h9fpb, .framer-UGaSC .framer-1mw73al { gap: 0px; } .framer-UGaSC .framer-61h9yq > *, .framer-UGaSC .framer-1ooiedo > *, .framer-UGaSC .framer-b128f0 > *, .framer-UGaSC .framer-ejb2n5 > *, .framer-UGaSC .framer-1amf3gw > *, .framer-UGaSC .framer-mo65uo > *, .framer-UGaSC .framer-10h9fpb > *, .framer-UGaSC .framer-1mw73al > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-UGaSC .framer-61h9yq > :first-child, .framer-UGaSC .framer-14zf0j2 > :first-child, .framer-UGaSC .framer-1ooiedo > :first-child, .framer-UGaSC .framer-swnnx > :first-child, .framer-UGaSC .framer-b128f0 > :first-child, .framer-UGaSC .framer-ejb2n5 > :first-child, .framer-UGaSC .framer-1amf3gw > :first-child, .framer-UGaSC .framer-mo65uo > :first-child, .framer-UGaSC .framer-10h9fpb > :first-child, .framer-UGaSC .framer-1mw73al > :first-child { margin-left: 0px; } .framer-UGaSC .framer-61h9yq > :last-child, .framer-UGaSC .framer-14zf0j2 > :last-child, .framer-UGaSC .framer-1ooiedo > :last-child, .framer-UGaSC .framer-swnnx > :last-child, .framer-UGaSC .framer-b128f0 > :last-child, .framer-UGaSC .framer-ejb2n5 > :last-child, .framer-UGaSC .framer-1amf3gw > :last-child, .framer-UGaSC .framer-mo65uo > :last-child, .framer-UGaSC .framer-10h9fpb > :last-child, .framer-UGaSC .framer-1mw73al > :last-child { margin-right: 0px; } .framer-UGaSC .framer-14zf0j2 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-UGaSC .framer-swnnx > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-UGaSC .framer-1n62tvr > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-UGaSC .framer-1n62tvr > :first-child, .framer-UGaSC .framer-gkqap3 > :first-child, .framer-UGaSC .framer-1qfmq66 > :first-child { margin-top: 0px; } .framer-UGaSC .framer-1n62tvr > :last-child, .framer-UGaSC .framer-gkqap3 > :last-child, .framer-UGaSC .framer-1qfmq66 > :last-child { margin-bottom: 0px; } .framer-UGaSC .framer-gkqap3 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-UGaSC .framer-1qfmq66 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-UGaSC.framer-v-1f95odl.framer-zy1pwx { width: 390px; }\",\".framer-UGaSC.framer-v-1f95odl .framer-61h9yq { padding: 20px 15px 0px 15px; }\",\".framer-UGaSC.framer-v-1f95odl .framer-sktx6a-container { flex: none; width: auto; }\",\".framer-UGaSC.framer-v-1f95odl .framer-b128f0, .framer-UGaSC.framer-v-1f95odl .framer-gkqap3, .framer-UGaSC.framer-v-1f95odl .framer-ejb2n5, .framer-UGaSC.framer-v-1f95odl .framer-1amf3gw, .framer-UGaSC.framer-v-1f95odl .framer-mo65uo { padding: 0px 0px 0px 15px; }\",\".framer-UGaSC.framer-v-1f95odl .framer-1qfmq66 { padding: 0px 15px 20px 15px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"JxkDr03AZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"pjKbobwzi\":{\"layout\":[\"fixed\",\"fixed\"]},\"BJHZK6D4I\":{\"layout\":[\"fixed\",\"fixed\"]},\"xhRLEFVqE\":{\"layout\":[\"fixed\",\"fixed\"]},\"gJmGq9sCK\":{\"layout\":[\"fixed\",\"fixed\"]},\"mzXRBr08Q\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"ZnO4gEEiP\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZw8Tz_jYx=withCSS(Component,css,\"framer-UGaSC\");export default FramerZw8Tz_jYx;FramerZw8Tz_jYx.displayName=\"Menu Open Overlay\";FramerZw8Tz_jYx.defaultProps={height:800,width:1200};addPropertyControls(FramerZw8Tz_jYx,{variant:{options:[\"H7agQX21k\",\"JxkDr03AZ\",\"pjKbobwzi\",\"BJHZK6D4I\",\"xhRLEFVqE\",\"gJmGq9sCK\",\"mzXRBr08Q\"],optionTitles:[\"Unhovered\",\"Profile\",\"Case Studies\",\"Contact\",\"Index\",\"Journal\",\"Mobile Full Navigation \"],title:\"Variant\",type:ControlType.Enum},ZnO4gEEiP:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerZw8Tz_jYx,[{explicitInter:true,fonts:[]},...LogoLinkFonts,...TextLinkFonts,...OpenNavigationLinkFonts,...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZw8Tz_jYx\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"800\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JxkDr03AZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pjKbobwzi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BJHZK6D4I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xhRLEFVqE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gJmGq9sCK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mzXRBr08Q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"ZnO4gEEiP\\\":\\\"tap\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Zw8Tz_jYx.map"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "color", "height", "id", "link", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Kpveh2Q8O", "MOYsDPIsL", "bwVWMSt6G", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterxs3d6e", "args", "onMouseLeave1fppydt", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "Link", "u", "RichText2", "x", "css", "FramerdVTZgYLeH", "withCSS", "dVTZgYLeH_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "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", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "SVG", "css", "FramernmRGYRHrw", "withCSS", "nmRGYRHrw_default", "addPropertyControls", "ControlType", "addFonts", "LogoLinkCopyFonts", "getFonts", "nmRGYRHrw_default", "TextLinkFonts", "dVTZgYLeH_default", "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", "menuCursor", "tap", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "EHMhKGDpT", "A3Ai0xrjJ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap12t3iox", "args", "ref1", "pe", "router", "useRouter", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "css", "FramerWFrvHDnzd", "withCSS", "WFrvHDnzd_default", "addPropertyControls", "ControlType", "addFonts", "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", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "pStQrnGpz", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "SVG", "css", "FramerjRXzTKEh2", "withCSS", "jRXzTKEh2_default", "addPropertyControls", "ControlType", "addFonts", "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", "tap", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "pmLxJr3U4", "fHKDDMhyL", "aAL3Kk_ub", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapahgluq", "args", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "css", "Frameru0l0koE88", "withCSS", "u0l0koE88_default", "addPropertyControls", "ControlType", "addFonts", "LogoLinkFonts", "getFonts", "jRXzTKEh2_default", "TextLinkFonts", "dVTZgYLeH_default", "OpenNavigationLinkFonts", "u0l0koE88_default", "SmartComponentScopedContainerWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "SmartComponentScopedContainer", "VideoFonts", "Video", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "transition3", "animation2", "transition4", "animation3", "transition5", "animation4", "transition6", "animation5", "transition7", "animation6", "animation7", "transition8", "animation8", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "tap", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ZnO4gEEiP", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapsgutib", "args", "onMouseEnter486qth", "onMouseLeave1pfktmc", "onMouseEnterfqimh5", "onMouseEnteruo6ajh", "onMouseEnter143vf3t", "onMouseLeaveuo6ajh", "onMouseEnterp0nsz7", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "LayoutGroup", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "css", "FramerZw8Tz_jYx", "withCSS", "Zw8Tz_jYx_default", "addPropertyControls", "ControlType", "addFonts"]
}
