{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/jNBsk8CI17JqVZ05S9Sk/fvfXj3LqqvTdKt3CRplf/Custom_Function_Override.js", "ssg:https://framerusercontent.com/modules/ycA4kWoXeBMb6fbl4tYq/sgx4jX359MRLW34cLIpQ/LA60stj9k.js", "ssg:https://framerusercontent.com/modules/chWcINTiZjyIGZqcAl3W/jRthvPSnXyCztmTatNZn/P875og59P.js", "ssg:https://framerusercontent.com/modules/GDQ8VJGBXRKFmpXKjUrO/x9qpy0q0p2jZ9xET5FAh/fqheQxiK2.js", "ssg:https://framerusercontent.com/modules/9vCt51aAuJBWbLUaqYJH/tuxglHQEXMkBG0I3OclQ/YxAUZlgP8.js", "ssg:https://framerusercontent.com/modules/rCeZGByAt5trjtc74Nqt/8Sfw2R9ZNPTlyP3hPKEV/ZNc7qfYHq.js", "ssg:https://framerusercontent.com/modules/GKUg2orBx2V4mWdSTDYe/nrbWG4HSN71iB2q7GV7C/BuaVewDhZ.js", "ssg:https://framerusercontent.com/modules/LaIhRkn21zH738kgLtuV/XqhA4QwgM5FR5hS6R9Ig/coxzlrGBo.js", "ssg:https://framerusercontent.com/modules/QGDWRjaf3whbKJjy05zK/ZlWTE37574GxoOQKfNb5/IE4mCIbED.js", "ssg:https://framerusercontent.com/modules/O0GZsI4IC786ZMk1CjX5/Fph3EDrsZIdAlYT8ABak/vQ79k8B3o.js", "ssg:https://framerusercontent.com/modules/eG7L7BbfsWj44h8VTY5u/zouWArICRcoSlmuCf4J2/W4pBh3E74.js", "ssg:https://framerusercontent.com/modules/P5JUppb4em1SZBqq3CWS/ZbTAPGpI19V6nYFzV68a/ybJIMxfIa.js", "ssg:https://framerusercontent.com/modules/82Jf3TToA1gobeJEY9Az/aqt841idV4jH01EfDFg6/l4AtbBukW.js", "ssg:https://framerusercontent.com/modules/2UuKmv8MccxYFYFatGgh/lBJkYJr2dKaHiuVRZdhN/o_nFYTkx_.js", "ssg:https://framerusercontent.com/modules/oNvwjs22sOY1de0ndzda/axsvuTiWxh4IayDgyNDt/GX5HFbuMH.js", "ssg:https://framerusercontent.com/modules/dO4QXQaNR1LRqP6qmlIb/LqlL7LqhNFk1i8Tsw5fN/kDrZs2M2R.js", "ssg:https://framerusercontent.com/modules/VhYkG6YCGMH2UYfDfsjy/ks8JqtWA6dA5fx5jcOLX/n0mleuK5n.js", "ssg:https://framerusercontent.com/modules/4Mc4nGzdsKtlIrP2gzCb/qp9Q4P74XOtf8A0XzKvT/MLmHJeYwx.js", "ssg:https://framerusercontent.com/modules/NnOQpGWwVZ9AtSYGgx2e/5fd6Hagqobb2CPiZXrv9/xnuEhAA7W.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\",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\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{createElement as _createElement}from\"react\";import{useState,useEffect,useMemo}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{HUBSPOT_TRACK_EVENTS,USERPILOT_EVENTS,getUUIDParams}from\"https://framerusercontent.com/modules/bht4YxYvS1EtDNlVwP8y/mOMEFYnimAD9y1L7v7lf/Hubspot_Events.js\";import{segmentLoad,callTrackEvent}from\"https://framerusercontent.com/modules/sAg1Vq6Uhcdm0gGKWqo1/2e6AFKpjound28TT0R8k/UseSegment.js\";const{trackButtonClickedTryItForFree,trackHeaderFooterMenuClick,trackClickTab,trackClickTabFloating,trackClickAugmentedRealitySolutions,trackClickBuildYourOwnConfigurator,trackClickCustomerSuccessStories,trackClickExplore3DRendering,trackClickLearnMoreEnterprise}=USERPILOT_EVENTS;// Learn more: https://www.framer.com/docs/guides/overrides/\n// helper functions\nfunction updateLoginButton(user=null){const logInBtn=document.querySelectorAll(\".login_btn\");if(logInBtn?.length>0){for(let i=0;i<logInBtn?.length;i++){const btn=logInBtn[i];if(!(user?.id&&user?.is_guest)){btn.querySelector(\".framer-text\").innerHTML=user?\"Hi, \"+user?.first_name:\"Log in\";// btn.toggleClass(\"user_name\", !!user)\n// btn.toggleClass(\"js-event_btn_Mixpanel\", !user)\nbtn.querySelectorAll(\"a\")?.[0]?.setAttribute(\"data-href\",btn.querySelectorAll(\"a\")?.[0]?.getAttribute(\"href\"));btn.querySelectorAll(\"a\")?.[0]?.setAttribute(\"href\",user?\"javascript:void(0)\":\"https://app.imagine.io/sign-in\"+getUUIDParams());btn.querySelectorAll(\"a\")?.[0]?.setAttribute(\"target\",user?\"\":\"_blank\");}btn.querySelectorAll(\"a\")?.[0]?.addEventListener(\"click\",function(event){callTrackEvent(\"Login Click\",{},false);});}}}function updateGetStartedButton(_user=null){const user=_user&&!_user?.is_guest;const getStartedBtn=document.querySelectorAll(\".getStarted_btn\");if(getStartedBtn?.length>0){for(let i=0;i<getStartedBtn?.length;i++){const btn=getStartedBtn[i];btn.style.display=user?\"block\":\"none\";btn.querySelector(\".framer-text\").innerHTML=user?\"Dashboard\":\"Get started\";//     btn.toggleClass(\"header_dashboard\", !!user)\n//     btn.toggleClass(\"js-event_btn_Mixpanel\", !user)\nif(btn.querySelectorAll(\"a\")?.[0]){btn.querySelectorAll(\"a\")?.[0]?.setAttribute(\"href\",user?\"https://app.imagine.io/dashboard\"+getUUIDParams():\"https://app.imagine.io/register\"+getUUIDParams());btn.querySelectorAll(\"a\")?.[0]?.setAttribute(\"target\",\"_blank\");}else{btn.onclick=()=>{window.open(user?\"https://app.imagine.io/dashboard\"+getUUIDParams():\"https://app.imagine.io/register\"+getUUIDParams(),\"_blank\");};}}}}function getDataFromLocalStorage(callback=null){const currentUser=localStorage.getItem(\"current_user\")||null;const USER_DATA=currentUser?JSON.parse(currentUser):null;const user=USER_DATA?.user;callback?.(user);return user;}// function overrides\nexport function withHideWhenLoggedIn(Component){const WrappedComponent=props=>{const handleLogin=()=>{const isLoggedIn=getDataFromLocalStorage();// hiding login btn when the user is loggedin, else showing it\ndocument.querySelectorAll(\".hide_when_loggedin\").forEach(btn=>{btn.style.display=isLoggedIn?\"none\":\"flex\";});};useEffect(()=>{handleLogin();window.addEventListener(\"storage\",handleLogin);return()=>{window.removeEventListener(\"storage\",handleLogin);};},[]);props.className+=\" hide_when_loggedin\";return /*#__PURE__*/_jsx(Component,{...props});};return WrappedComponent;}// function overrides\nexport function withLoginButton(Component){const WrappedComponent=props=>{const handleLogin=()=>{const isLoggedIn=getDataFromLocalStorage(updateLoginButton);// hiding login btn when the user is loggedin, else showing it\ndocument.querySelectorAll(\".login_btn\").forEach(btn=>{btn.style.display=isLoggedIn?\"none\":\"flex\";});};useEffect(()=>{handleLogin();segmentLoad();window.addEventListener(\"storage\",handleLogin);return()=>{window.removeEventListener(\"storage\",handleLogin);};},[]);props.className+=\" login_btn\";return /*#__PURE__*/_jsx(Component,{...props,onClick:trackButtonClickedTryItForFree});};return WrappedComponent;}export function withGetStartedButton(Component){const WrappedComponent=props=>{const handleGetStarted=()=>getDataFromLocalStorage(updateGetStartedButton);useEffect(()=>{handleGetStarted();window.addEventListener(\"storage\",handleGetStarted);// window.addEventListener(\"click\", handleGetStarted)\nreturn()=>{window.removeEventListener(\"storage\",handleGetStarted);// window.removeEventListener(\"click\", handleGetStarted)\n};},[]);props.className+=\" getStarted_btn\";return /*#__PURE__*/_jsx(Component,{...props});};return WrappedComponent;}const CYCLE={MONTHLY:1,YEARLY:2};const TYPE={PRODUCTS:1,TEXTILES:2};const defaultValues={cycle:CYCLE.YEARLY,type:TYPE.PRODUCTS};const useStore=createStore({...defaultValues});// new subscription working & flow\nfunction getSubscriptionInfoFromBrowserStorage(callback=null){const currentUser=localStorage.getItem(\"current_user\")||null;const planOrderId=localStorage.getItem(\"planOrderId\");const planPriceId=localStorage.getItem(\"planPriceId\");const planPriceAmount=localStorage.getItem(\"planPriceAmount\");const isTexturePlan=localStorage.getItem(\"isTexturePlan\");const USER_DATA=currentUser?JSON.parse(currentUser):null;const user=USER_DATA?.user;const organizationDetail=USER_DATA?.organization_detail;const obj={user:user,organizationDetail:organizationDetail,planOrderId:+planOrderId,planPriceId:planPriceId===\"null\"?null:+planPriceId,planPriceAmount:+planPriceAmount,isTexturePlan:isTexturePlan===\"true\"?true:false};callback?.(obj);return obj;}export function withSubscriptionWrapperProductsAddClass(Component){const WrappedComponent=props=>{const[store,setStore]=useStore();if(!props.className?.includes(\"subscription-wrapper\")){props.className+=\" subscription-wrapper\";}if(!props.className?.includes(\"products\")){props.className+=\" products\";}return /*#__PURE__*/_jsx(Component,{...props});};return WrappedComponent;}export function withSubscriptionWrapperTextilesAddClass(Component){const WrappedComponent=props=>{const[store,setStore]=useStore();if(!props.className?.includes(\"subscription-wrapper\")){props.className+=\" subscription-wrapper\";}if(!props.className?.includes(\"textiles\")){props.className+=\" textiles\";}return /*#__PURE__*/_jsx(Component,{...props});};return WrappedComponent;}export function withSubscriptionProductsTypeAddClass(Component){const WrappedComponent=props=>{const[store,setStore]=useStore();const handleSelectType=()=>{setStore({...store,type:TYPE.PRODUCTS});};if(!props.className?.includes(\"subscription-type\")){props.className+=\" subscription-type\";}if(!props.className?.includes(\"products\")){props.className+=\" products\";}return /*#__PURE__*/_jsx(Component,{...props,onClick:handleSelectType});};return WrappedComponent;}export function withSubscriptionTextilesTypeAddClass(Component){const WrappedComponent=props=>{const[store,setStore]=useStore();const handleSelectType=()=>{setStore({...store,type:TYPE.TEXTILES});};if(!props.className?.includes(\"subscription-type\")){props.className+=\" subscription-type\";}if(!props.className?.includes(\"textiles\")){props.className+=\" textiles\";}return /*#__PURE__*/_jsx(Component,{...props,onClick:handleSelectType});};return WrappedComponent;}export function withSubscriptionCycleAddClass(Component){const WrappedComponent=props=>{const[store,setStore]=useStore();const handleSelectCycle=e=>{const isMonthly=e.target.innerText?.includes(\"monthly\");setStore({...store,cycle:isMonthly?CYCLE.MONTHLY:CYCLE.YEARLY});};if(!props.className?.includes(\"subscription-cycle\")){props.className+=\" subscription-cycle\";}return /*#__PURE__*/_jsx(Component,{...props,onClick:handleSelectCycle});};return WrappedComponent;}export function withSubscriptionContainerAddClass(Component){const WrappedComponent=props=>{const[store,setStore]=useStore();const[isLoggedin,setIsLoggedin]=useState();const getAndUpdateAllButtons=(containers=[])=>{if(containers.length===0)return;const userInfo=getSubscriptionInfoFromBrowserStorage();const isTexturePlan=userInfo?.isTexturePlan;const planOrderId=userInfo?.planOrderId;const planPriceId=userInfo?.planPriceId;const planPriceAmount=userInfo?.planPriceAmount;const orgSubscriptionType=userInfo?.organizationDetail?.subscription_type;const isFreemiumOrg=orgSubscriptionType===\"FREEMIUM\";const isPremiumOrg=orgSubscriptionType===\"PREMIUM\"&&planPriceId// planOrderId > 0\n;const isOldPremiumOrg=orgSubscriptionType===\"PREMIUM\"&&(!planPriceId||planPriceId===null)// planOrderId === 0\n;const isOldSubscription=orgSubscriptionType===\"OLD_SUBSCRIPTION\";const subscriptionTypes=document.querySelectorAll(\".subscription-type\");if(userInfo?.user&&isPremiumOrg){if(subscriptionTypes?.length>0){for(let i=0;i<subscriptionTypes.length;i++){subscriptionTypes[i].parentElement.parentElement.style.display=\"none\";}}}else{if(subscriptionTypes?.length>0){for(let i=0;i<subscriptionTypes.length;i++){subscriptionTypes[i].parentElement.parentElement.style.display=\"flex\";}}}for(let i=0;i<containers.length;i++){const name1=containers[i].querySelector(\".subscription-name .framer-text\")?.innerText;const button=containers?.[i]?.querySelector(\".subscription-button\")?.querySelectorAll(\"a\")?.[0];let cardPlanOrderId=containers?.[i]?.querySelector(\".subscription-plan-order-id\")?.querySelector(\".framer-text\")?.innerText;cardPlanOrderId=Number(cardPlanOrderId);let cardPlanPriceId=containers?.[i]?.querySelector(\".subscription-plan-price-id\")?.querySelector(\".framer-text\")?.innerText;cardPlanPriceId=Number(cardPlanPriceId);let cardPlanPriceAmount=containers?.[i]?.querySelector(\".subscription-plan-price-amount\")?.querySelector(\".framer-text\")?.innerText;cardPlanPriceAmount=parseInt(cardPlanPriceAmount.replace(/[$,]/g,\"\"),10);const href=button.getAttribute(\"href\");if(userInfo?.user){const isCurrentPlan=planPriceId?cardPlanPriceId===planPriceId:cardPlanOrderId===planOrderId;if(i===0){button.setAttribute(\"href\",href?.replaceAll(\"register\",\"dashboard\"));button.querySelectorAll(\".framer-text\")[0].innerHTML=isCurrentPlan&&isFreemiumOrg?\"Current Plan\":\"Try it free\";}else{if(!isOldPremiumOrg){button.querySelectorAll(\".framer-text\")[0].innerHTML=isCurrentPlan?\"Current Plan\":cardPlanPriceAmount>planPriceAmount// cardPlanOrderId > planOrderId\n?`Upgrade to ${name1}`:`Downgrade to ${name1}`;}else{button.querySelectorAll(\".framer-text\")[0].innerHTML=isCurrentPlan?\"Current Plan\":`Go ${name1}`;}button.setAttribute(\"href\",href?.replaceAll(\"register?\",\"settings?activeTab=plans&\"));button.style.pointerEvents=isCurrentPlan?\"none\":\"auto\";const subButton=button.querySelectorAll(\"a\")[0];if(isCurrentPlan){subButton.classList.add(\"current-plan-button\");}else{subButton.classList.remove(\"current-plan-button\");}}}else{if(i===0){button.setAttribute(\"href\",href?.replaceAll(\"dashboard\",\"register\"));button.querySelectorAll(\".framer-text\")[0].innerHTML=\"Try it free\";}else{button.setAttribute(\"href\",href?.replaceAll(\"settings?activeTab=plans&\",\"register?\"));button.style.pointerEvents=\"auto\";button.querySelectorAll(\"a\")[0].style.backgroundColor=\"rgb(235, 78, 10)\";button.querySelectorAll(\"a\")[0].querySelectorAll(\".framer-text\")[0].style.color=\"rgb(255,255,255)\";button.querySelectorAll(\".framer-text\")[0].innerHTML=`Go ${name1}`;}}}};const getMonthlyContainers=(wrapper=null)=>{const containers=wrapper.querySelectorAll(\".subscription-container.monthly\");getAndUpdateAllButtons(containers);};const getYearlyContainers=(wrapper=null)=>{const containers=wrapper?.querySelectorAll(\".subscription-container.yearly\");getAndUpdateAllButtons(containers);};const getProductsWrapperContainers=()=>{const wrapper=document.querySelector(\".subscription-wrapper.products\");const wrapperTextiles=document.querySelector(\".subscription-wrapper.textiles\");if(wrapperTextiles)wrapperTextiles.parentElement.style.display=\"none\";if(wrapper)wrapper.parentElement.style.display=\"block\";if(store.cycle===CYCLE.MONTHLY)getMonthlyContainers(wrapper);if(store.cycle===CYCLE.YEARLY)getYearlyContainers(wrapper);};const getTextilesWrapperContainers=()=>{const userInfo=getSubscriptionInfoFromBrowserStorage();const planOrderId=userInfo?.planOrderId;const planPriceId=userInfo?.planPriceId;const orgSubscriptionType=userInfo?.organizationDetail?.subscription_type;const isPremiumOrg=orgSubscriptionType===\"PREMIUM\"&&planPriceId// planOrderId > 0\n;if(userInfo?.user&&isPremiumOrg){const wrapper=document.querySelector(\".subscription-wrapper.textiles\");const wrapperProducts=document.querySelector(\".subscription-wrapper.products\");wrapperProducts.parentElement.style.display=\"none\";wrapper.parentElement.style.display=\"block\";if(store.cycle===CYCLE.MONTHLY)getMonthlyContainers(wrapper);if(store.cycle===CYCLE.YEARLY)getYearlyContainers(wrapper);}};const checkIfUserIsLoggedInorNot=()=>{const userInfo=getSubscriptionInfoFromBrowserStorage();setIsLoggedin(Boolean(userInfo?.user));setTimeout(()=>{if(userInfo?.isTexturePlan)getTextilesWrapperContainers();else getProductsWrapperContainers();},5e3);};useEffect(()=>{setStore({...store,...getSubscriptionInfoFromBrowserStorage()?.isTexturePlan===true?{type:TYPE.TEXTILES}:{type:TYPE.PRODUCTS}});},[getSubscriptionInfoFromBrowserStorage()?.isTexturePlan,getSubscriptionInfoFromBrowserStorage()?.planPriceId,getSubscriptionInfoFromBrowserStorage()?.planPriceAmount,isLoggedin]);useEffect(()=>{checkIfUserIsLoggedInorNot();window.addEventListener(\"storage\",checkIfUserIsLoggedInorNot);return()=>{window.removeEventListener(\"storage\",checkIfUserIsLoggedInorNot);};},[]);useEffect(()=>{const timerId=setTimeout(()=>{if(store.type===TYPE.PRODUCTS)getProductsWrapperContainers();if(store.type===TYPE.TEXTILES)getTextilesWrapperContainers();},500);return()=>{if(timerId)clearInterval(timerId);};},[store,isLoggedin]);if(!props.className?.includes(\"subscription-container\")){props.className+=\" subscription-container\";}props.className+=store?.type===TYPE.PRODUCTS?\" products\":\" textiles\";props.className+=store?.cycle===CYCLE.MONTHLY?\" monthly\":\" yearly\";return /*#__PURE__*/_jsx(Component,{...props});};return WrappedComponent;}export function withSubscriptionNameAddClass(Component){const WrappedComponent=props=>{if(!props.className?.includes(\"subscription-name\")){props.className+=\" subscription-name\";}return /*#__PURE__*/_jsx(Component,{...props});};return WrappedComponent;}export function withSubscriptionPlanOrderIdAddClass(Component){const WrappedComponent=props=>{if(!props.className?.includes(\"subscription-plan-order-id\")){props.className+=\" subscription-plan-order-id\";}return /*#__PURE__*/_jsx(Component,{...props});};return WrappedComponent;}export function withSubscriptionPlanPriceIdAddClass(Component){const WrappedComponent=props=>{if(!props.className?.includes(\"subscription-plan-price-id\")){props.className+=\" subscription-plan-price-id\";}return /*#__PURE__*/_jsx(Component,{...props});};return WrappedComponent;}export function withSubscriptionPlanPriceAmountAddClass(Component){const WrappedComponent=props=>{if(!props.className?.includes(\"subscription-plan-price-amount\")){props.className+=\" subscription-plan-price-amount\";}return /*#__PURE__*/_jsx(Component,{...props});};return WrappedComponent;}const getHubspotEvents=(type=null)=>{const{trackBuyFreemiumSubscription,trackBuyProductsBasicMonthlySubscription,trackBuyProductsBasicYearlySubscription,trackBuyTextilesBasicMonthlySubscription,trackBuyTextilesBasicYearlySubscription,trackBuyProductsPlusMonthlySubscription,trackBuyProductsPlusYearlySubscription,trackBuyTextilesPlusMonthlySubscription,trackBuyTextilesPlusYearlySubscription,trackBuyProductsProMonthlySubscription,trackBuyProductsProYearlySubscription,trackBuyTextilesProMonthlySubscription,trackBuyTextilesProYearlySubscription}=HUBSPOT_TRACK_EVENTS||{};const subscriptionEventsMapping={[\"freemium_1_1\"]:trackBuyFreemiumSubscription,[\"freemium_1_2\"]:trackBuyFreemiumSubscription,[\"freemium_2_1\"]:trackBuyFreemiumSubscription,[\"freemium_2_2\"]:trackBuyFreemiumSubscription,[\"basic_1_1\"]:trackBuyProductsBasicMonthlySubscription,[\"basic_1_2\"]:trackBuyProductsBasicYearlySubscription,[\"basic_2_1\"]:trackBuyTextilesBasicMonthlySubscription,[\"basic_2_2\"]:trackBuyTextilesBasicYearlySubscription,[\"plus_1_1\"]:trackBuyProductsPlusMonthlySubscription,[\"plus_1_2\"]:trackBuyProductsPlusYearlySubscription,[\"plus_2_1\"]:trackBuyTextilesPlusMonthlySubscription,[\"plus_2_2\"]:trackBuyTextilesPlusYearlySubscription,[\"pro_1_1\"]:trackBuyProductsProMonthlySubscription,[\"pro_1_2\"]:trackBuyProductsProYearlySubscription,[\"pro_2_1\"]:trackBuyTextilesProMonthlySubscription,[\"pro_2_2\"]:trackBuyTextilesProYearlySubscription};const eventFunction=subscriptionEventsMapping[type];if(typeof eventFunction===\"function\"){eventFunction()// Call the function directly\n;console.log(`Event function for ${type} called successfully.`);}else{console.log(`No event function found for type ${type}.`);}};export function withSubscriptionButtonAddClass(Component){const WrappedComponent=props=>{const[store]=useStore();const handleClick=e=>{const container=e?.target?.closest(\".subscription-container\");let name1=container?.querySelector(\".subscription-name .framer-text\")?.innerText;if(name1){name1=name1?.trim()?.toLowerCase();}getHubspotEvents?.(`${name1}_${store.type}_${store.cycle}`);};if(!props.className?.includes(\"subscription-button\")){props.className+=\" subscription-button\";}return /*#__PURE__*/_jsx(Component,{...props,as:\"Button\",onClick:handleClick});};return WrappedComponent;}export function withOverlayCloseButtonAddClass(Component){const WrappedComponent=props=>{if(!props.className?.includes(\"overlay-close-button\")){props.className+=\" overlay-close-button\";}return /*#__PURE__*/_jsx(Component,{...props,as:\"Button\"});};return WrappedComponent;}export function withHeaderMenuClick(Component){const WrappedComponent=props=>{const handleClick=e=>{e.stopPropagation();const menu_name=e?.target?.innerText||e?.target?.querySelector(\".framer-text\")?.innerText||\"\";trackHeaderFooterMenuClick({clicked_from:\"Header\",menu_name:menu_name});};if(!props.className?.includes(\"header-menu-item\")){props.className+=\" header-menu-item\";}return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};return WrappedComponent;}export function withFooterMenuClick(Component){const WrappedComponent=props=>{const handleClick=e=>{e.stopPropagation();e.stopPropagation();const menu_name=e?.target?.innerText||e?.target?.querySelector(\".framer-text\")?.innerText||\"\";trackHeaderFooterMenuClick({clicked_from:\"Footer\",menu_name:menu_name});};if(!props.className?.includes(\"footer-menu-item\")){props.className+=\" footer-menu-item\";}return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};return WrappedComponent;}export function withClickTab(Component){return props=>{const handleClick=e=>{e.stopPropagation();const tabName=e?.target?.closest(\".click-tab\")?.querySelector(\".framer-text\")?.innerText||e?.target?.innerText;trackClickTab({tab_name:tabName});};if(!props.className?.includes(\"click-tab\")){props.className+=\" click-tab\";}return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};}export function withClickTabFloating(Component){return props=>{const handleClick=e=>{e.stopPropagation();const tabName=e?.target?.closest(\".click-tab-floating\")?.querySelector(\".framer-text\")?.innerText||e?.target?.innerText;trackClickTabFloating({tab_name:tabName});};if(!props.className?.includes(\"click-tab-floating\")){props.className+=\" click-tab-floating\";}return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};}export function withClickLearnMoreEnterprise(Component){return props=>{const handleClick=e=>{e.stopPropagation();trackClickLearnMoreEnterprise();};if(!props.className?.includes(\"click-button\")){props.className+=\" click-button\";}return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};}export function withClickExplore3DRendering(Component){return props=>{const handleClick=e=>{e.stopPropagation();trackClickExplore3DRendering();};if(!props.className?.includes(\"click-button\")){props.className+=\" click-button\";}return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};}export function withClickBuildYourOwnConfigurator(Component){return props=>{const handleClick=e=>{e.stopPropagation();trackClickBuildYourOwnConfigurator();};if(!props.className?.includes(\"click-button\")){props.className+=\" click-button\";}return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};}export function withClickCustomerSuccessStories(Component){return props=>{const handleClick=e=>{e.stopPropagation();trackClickCustomerSuccessStories();};if(!props.className?.includes(\"click-button\")){props.className+=\" click-button\";}return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};}export function withClickAugmentedRealitySolutions(Component){return props=>{const handleClick=e=>{e.stopPropagation();trackClickAugmentedRealitySolutions();};if(!props.className?.includes(\"click-button\")){props.className+=\" click-button\";}return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};}// DYNAMIC PLAN CARD - BEGINS\nexport function withSubscriptionPlanCard(Component){return props=>{const[plans,setPlans]=useState([]);const fetchDetails=async()=>{const token=\"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzIyNDkzNzIzLCJpYXQiOjE3MjE4ODg5MjMsImp0aSI6IjIxM2MyMmM0ZjNlZDQ4YWFiMzdlODNlN2FlMTQ1MTRjIiwidXNlcl9pZCI6NTI2MSwibWVtYmVyIjoxMTgwLCJvcmdhbml6YXRpb24iOjEwNDAsImlzX2VtYWlsX3ZlcmlmaWVkIjp0cnVlfQ.im7TLxkN3h6qjJNS7uh0uWvuJm2bNe4cb00KsOVDSQk\";const url=\"https://prod.imagine.io/subscription/api/main_subscription_plans/?is_add_on=false&per_page=100\";const response=await fetch(url,{headers:{[\"Authorization\"]:`Bearer ${token}`,[\"Content-Type\"]:\"application/json\"}}).then(r=>r.json());const results=response?.results?.filter(a=>a?.pricing_details.length>0);setPlans(results);console.log(\"DEBUG__response\",results);};useEffect(()=>{fetchDetails();},[]);useEffect(()=>{if(plans.length===0)return;const planCard=document.querySelectorAll(\".subscription-plan-card\");if(planCard?.length>0){for(let i=0;i<planCard?.length;i++){if(i===0){planCard[i].parentElement.style.display=\"flex\";planCard[i].parentElement.style.flexWrap=\"wrap\";planCard[i].parentElement.style.gap=\"1.5em\";planCard[i].parentElement.style.width=\"100%\";planCard[i].parentElement.style.height=\"auto\";}planCard[i].style.width=\"100%\";planCard[i].style.maxWidth=\"400px\";}}},[plans]);const linkTitle=useMemo(()=>{return`Go ${name}`;},[name]);if(!props.className?.includes(\"subscription-plan-card\")){props.className+=\" subscription-plan-card\";}if(plans?.length===0)return null;return /*#__PURE__*/_jsx(_Fragment,{children:plans?.map(({id,name:name1})=>/*#__PURE__*/_createElement(Component,{...props,key:id,planTitle:name1,linkTitle:linkTitle}))});};}// DYNAMIC PLAN CARD - ENDS\n// subscription\n// let freemimum = [],\n//     basic = [],\n//     plus = [],\n//     pro = [],\n//     monthlyTabElement = [],\n//     YealyTabElement = [],\n//     activeTab = \"yearly\"\n// function handleGetTab() {\n//     let tab = localStorage.getItem(\"currentTab\")\n//     if (!tab) {\n//         localStorage.setItem(\"currentTab\", \"yearly\")\n//     }\n//     return activeTab || \"yearly\"\n// }\n// function updateSubscriptionButton(data) {\n//     const { user, planOrderId, isTexturePlan } = data || {}\n//     const currentUser = JSON.parse(localStorage.getItem(\"current_user\"))\n//     const isFreemimum =\n//         currentUser?.organization_detail?.subscription_type === \"FREEMIUM\" &&\n//         (!planOrderId || planOrderId === 0 || planOrderId === \"0\")\n//     const oldPlan =\n//         user &&\n//         (!planOrderId || planOrderId === 0 || planOrderId === \"0\") &&\n//         currentUser?.organization_detail?.subscription_type !== \"FREEMIUM\" &&\n//         currentUser?.organization_detail?.subscription_type\n//     const AllDataList = document.querySelectorAll(\n//         \".pricing-section .framer-text\"\n//     )\n//     if (AllDataList?.length > 0) {\n//         for (let i = 0; i < AllDataList?.length; i++) {\n//             const btn = AllDataList[i]\n//             const getStarted = \"Get started\"\n//             const TryIt = \"Try it Free\"\n//             const currentPlan = \"Current Plan\"\n//             const goPro = \"Go Pro\"\n//             const upgradePro = \"Upgrade to Pro\"\n//             const downgradePro = \"Downgrade to Pro\"\n//             const goBasic = \"Go Basic\"\n//             const upgradeBasic = \"Upgrade to Basic\"\n//             const downgradeBasic = \"Downgrade to Basic\"\n//             const goPlus = \"Go Plus\"\n//             const upgradePlus = \"Upgrade to Plus\"\n//             const downgradePlus = \"Downgrade to Plus\"\n//             const monthlyTab = \"Pay monthly\"\n//             const yearlyTab = \"Pay yearly (Save 16%)\"\n//             switch (btn.innerHTML) {\n//                 case getStarted:\n//                 case TryIt:\n//                     freemimum = [btn]\n//                     break\n//                 case goBasic:\n//                 case upgradeBasic:\n//                 case downgradeBasic:\n//                     basic = [btn]\n//                     break\n//                 case goPlus:\n//                 case upgradePlus:\n//                 case downgradePlus:\n//                     plus = [btn]\n//                     break\n//                 case goPro:\n//                 case upgradePro:\n//                 case downgradePro:\n//                     pro = [btn]\n//                     break\n//                 case monthlyTab:\n//                     monthlyTabElement = [btn]\n//                     break\n//                 case yearlyTab:\n//                     YealyTabElement = [btn]\n//                     break\n//             }\n//         }\n//     }\n//     const handleSetActiveTab = (value) => {\n//         activeTab = value\n//         localStorage.setItem(\"currentTab\", value)\n//     }\n//     if (YealyTabElement?.length > 0) {\n//         const btn = YealyTabElement[0]\n//         btn.addEventListener(\"click\", () => handleSetActiveTab(\"yearly\"))\n//     }\n//     if (monthlyTabElement?.length > 0) {\n//         const btn = monthlyTabElement[0]\n//         btn.addEventListener(\"click\", () => handleSetActiveTab(\"monthly\"))\n//     }\n//     if (activeTab === \"monthly\") {\n//         // monthly plan logic\n//         if (freemimum?.length > 0) {\n//             const btn = freemimum[0]\n//             btn.innerHTML = user && isFreemimum ? \"Current Plan\" : \"Try it Free\"\n//         }\n//         if (basic?.length > 0) {\n//             const btn = basic[0]\n//             btn.innerHTML =\n//                 user && !oldPlan\n//                     ? +planOrderId === 1\n//                         ? \"Current Plan\"\n//                         : +planOrderId >= 1\n//                           ? \"Downgrade to Basic\"\n//                           : \"Upgrade to Basic\"\n//                     : \"Go Basic\"\n//             const shouldDisable = user && !oldPlan && +planOrderId === 1\n//             btn.style.color = shouldDisable\n//                 ? \"rgb(16, 16, 16)\"\n//                 : \"rgb(255, 255, 255)\"\n//             btn.closest(\".pricing-section\").style.background = shouldDisable\n//                 ? \"rgb(236, 236, 234)\"\n//                 : \"rgb(235, 78, 10)\"\n//             btn.closest(\".pricing-section\").style.pointerEvents = shouldDisable\n//                 ? \"none\"\n//                 : \"auto\"\n//         }\n//         if (plus?.length > 0) {\n//             const btn = plus[0]\n//             btn.innerHTML =\n//                 user && !oldPlan\n//                     ? +planOrderId === 2\n//                         ? \"Current Plan\"\n//                         : +planOrderId >= 2\n//                           ? \"Downgrade to Plus\"\n//                           : \"Upgrade to Plus\"\n//                     : \"Go Plus\"\n//             const shouldDisable = user && !oldPlan && +planOrderId === 2\n//             btn.style.color = shouldDisable\n//                 ? \"rgb(16, 16, 16)\"\n//                 : \"rgb(255, 255, 255)\"\n//             btn.closest(\".pricing-section\").style.background = shouldDisable\n//                 ? \"rgb(236, 236, 234)\"\n//                 : \"rgb(235, 78, 10)\"\n//             btn.closest(\".pricing-section\").style.pointerEvents = shouldDisable\n//                 ? \"none\"\n//                 : \"auto\"\n//         }\n//         if (pro?.length > 0) {\n//             const btn = pro[0]\n//             btn.innerHTML =\n//                 user && !oldPlan\n//                     ? +planOrderId === 3\n//                         ? \"Current Plan\"\n//                         : +planOrderId >= 3\n//                           ? \"Downgrade to Pro\"\n//                           : \"Upgrade to Pro\"\n//                     : \"Go Pro\"\n//             const shouldDisable = user && !oldPlan && +planOrderId === 3\n//             btn.style.color = shouldDisable\n//                 ? \"rgb(16, 16, 16)\"\n//                 : \"rgb(255, 255, 255)\"\n//             btn.closest(\".pricing-section\").style.background = shouldDisable\n//                 ? \"rgb(236, 236, 234)\"\n//                 : \"rgb(235, 78, 10)\"\n//             btn.closest(\".pricing-section\").style.pointerEvents = shouldDisable\n//                 ? \"none\"\n//                 : \"auto\"\n//         }\n//     } else {\n//         // yearly plan logic\n//         if (freemimum?.length > 0) {\n//             const btn = freemimum[0]\n//             btn.innerHTML = user && isFreemimum ? \"Current Plan\" : \"Try it Free\"\n//         }\n//         if (basic?.length > 0) {\n//             const btn = basic[0]\n//             btn.innerHTML =\n//                 user && !oldPlan\n//                     ? +planOrderId === 4\n//                         ? \"Current Plan\"\n//                         : +planOrderId >= 5\n//                           ? \"Downgrade to Basic\"\n//                           : \"Upgrade to Basic\"\n//                     : \"Go Basic\"\n//             const shouldDisable = user && !oldPlan && +planOrderId === 4\n//             btn.style.color = shouldDisable\n//                 ? \"rgb(16, 16, 16)\"\n//                 : \"rgb(255, 255, 255)\"\n//             btn.closest(\".pricing-section\").style.background = shouldDisable\n//                 ? \"rgb(236, 236, 234)\"\n//                 : \"rgb(235, 78, 10)\"\n//             btn.closest(\".pricing-section\").style.pointerEvents = shouldDisable\n//                 ? \"none\"\n//                 : \"auto\"\n//         }\n//         if (plus?.length > 0) {\n//             const btn = plus[0]\n//             btn.innerHTML =\n//                 user && !oldPlan\n//                     ? +planOrderId === 5\n//                         ? \"Current Plan\"\n//                         : +planOrderId >= 6\n//                           ? \"Downgrade to Plus\"\n//                           : \"Upgrade to Plus\"\n//                     : \"Go Plus\"\n//             const shouldDisable = user && !oldPlan && +planOrderId === 5\n//             btn.style.color = shouldDisable\n//                 ? \"rgb(16, 16, 16)\"\n//                 : \"rgb(255, 255, 255)\"\n//             btn.closest(\".pricing-section\").style.background = shouldDisable\n//                 ? \"rgb(236, 236, 234)\"\n//                 : \"rgb(235, 78, 10)\"\n//             btn.closest(\".pricing-section\").style.pointerEvents = shouldDisable\n//                 ? \"none\"\n//                 : \"auto\"\n//         }\n//         if (pro?.length > 0) {\n//             const btn = pro[0]\n//             btn.innerHTML =\n//                 user && !oldPlan\n//                     ? +planOrderId === 6\n//                         ? \"Current Plan\"\n//                         : +planOrderId >= 7\n//                           ? \"Downgrade to Pro\"\n//                           : \"Upgrade to Pro\"\n//                     : \"Go Pro\"\n//             const shouldDisable = user && !oldPlan && +planOrderId === 6\n//             btn.style.color = shouldDisable\n//                 ? \"rgb(16, 16, 16)\"\n//                 : \"rgb(255, 255, 255)\"\n//             btn.closest(\".pricing-section\").style.background = shouldDisable\n//                 ? \"rgb(236, 236, 234)\"\n//                 : \"rgb(235, 78, 10)\"\n//             btn.closest(\".pricing-section\").style.pointerEvents = shouldDisable\n//                 ? \"none\"\n//                 : \"auto\"\n//         }\n//     }\n// }\n// function getDataFromLocalStorageSubscriptionInfo(callback = null) {\n//     const currentUser = localStorage.getItem(\"current_user\") || null\n//     const planOrderId = localStorage.getItem(\"planOrderId\")\n//     const isTexturePlan = localStorage.getItem(\"isTexturePlan\")\n//     const USER_DATA = currentUser ? JSON.parse(currentUser) : null\n//     const user = USER_DATA?.user\n//     callback?.({\n//         user: user,\n//         planOrderId: +planOrderId,\n//         isTexturePlan: isTexturePlan,\n//     })\n// }\n// export const withSubscription = (Component): ComponentType => {\n//     const WrappedComponent = (props) => {\n//         const handleUpdateBtnTitle = () =>\n//             getDataFromLocalStorageSubscriptionInfo(updateSubscriptionButton)\n//         useEffect(() => {\n//             const timerId = setTimeout(() => {\n//                 handleUpdateBtnTitle()\n//                 localStorage.setItem(\"currentTab\", \"yearly\")\n//                 window.addEventListener(\"storage\", handleUpdateBtnTitle)\n//                 // window.addEventListener(\"click\", handleUpdateBtnTitle)\n//             }, 1000)\n//             return () => {\n//                 if (timerId) clearInterval(timerId)\n//                 window.removeEventListener(\"storage\", handleUpdateBtnTitle)\n//                 // window.removeEventListener(\"click\", handleUpdateBtnTitle)\n//             }\n//         }, [])\n//         props.className += \" pricing-section\"\n//         return <Component {...props} />\n//     }\n//     return WrappedComponent\n// }\n// export function withUpdateFreeMiumButton(Component): ComponentType {\n//     const WrappedComponent = (props) => {\n//         return <Component {...props} />\n//     }\n//     return WrappedComponent\n// }\n\nexport const __FramerMetadata__ = {\"exports\":{\"withOverlayCloseButtonAddClass\":{\"type\":\"reactHoc\",\"name\":\"withOverlayCloseButtonAddClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withClickBuildYourOwnConfigurator\":{\"type\":\"reactHoc\",\"name\":\"withClickBuildYourOwnConfigurator\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscriptionProductsTypeAddClass\":{\"type\":\"reactHoc\",\"name\":\"withSubscriptionProductsTypeAddClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHeaderMenuClick\":{\"type\":\"reactHoc\",\"name\":\"withHeaderMenuClick\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withFooterMenuClick\":{\"type\":\"reactHoc\",\"name\":\"withFooterMenuClick\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscriptionButtonAddClass\":{\"type\":\"reactHoc\",\"name\":\"withSubscriptionButtonAddClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscriptionCycleAddClass\":{\"type\":\"reactHoc\",\"name\":\"withSubscriptionCycleAddClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscriptionContainerAddClass\":{\"type\":\"reactHoc\",\"name\":\"withSubscriptionContainerAddClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscriptionPlanPriceAmountAddClass\":{\"type\":\"reactHoc\",\"name\":\"withSubscriptionPlanPriceAmountAddClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscriptionWrapperProductsAddClass\":{\"type\":\"reactHoc\",\"name\":\"withSubscriptionWrapperProductsAddClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscriptionNameAddClass\":{\"type\":\"reactHoc\",\"name\":\"withSubscriptionNameAddClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscriptionPlanCard\":{\"type\":\"reactHoc\",\"name\":\"withSubscriptionPlanCard\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withGetStartedButton\":{\"type\":\"reactHoc\",\"name\":\"withGetStartedButton\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withClickLearnMoreEnterprise\":{\"type\":\"reactHoc\",\"name\":\"withClickLearnMoreEnterprise\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscriptionTextilesTypeAddClass\":{\"type\":\"reactHoc\",\"name\":\"withSubscriptionTextilesTypeAddClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withClickTab\":{\"type\":\"reactHoc\",\"name\":\"withClickTab\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscriptionPlanPriceIdAddClass\":{\"type\":\"reactHoc\",\"name\":\"withSubscriptionPlanPriceIdAddClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHideWhenLoggedIn\":{\"type\":\"reactHoc\",\"name\":\"withHideWhenLoggedIn\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscriptionWrapperTextilesAddClass\":{\"type\":\"reactHoc\",\"name\":\"withSubscriptionWrapperTextilesAddClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withClickExplore3DRendering\":{\"type\":\"reactHoc\",\"name\":\"withClickExplore3DRendering\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withClickTabFloating\":{\"type\":\"reactHoc\",\"name\":\"withClickTabFloating\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withClickCustomerSuccessStories\":{\"type\":\"reactHoc\",\"name\":\"withClickCustomerSuccessStories\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withClickAugmentedRealitySolutions\":{\"type\":\"reactHoc\",\"name\":\"withClickAugmentedRealitySolutions\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscriptionPlanOrderIdAddClass\":{\"type\":\"reactHoc\",\"name\":\"withSubscriptionPlanOrderIdAddClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withLoginButton\":{\"type\":\"reactHoc\",\"name\":\"withLoginButton\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (114679e)\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 enabledGestures={dPyLBepZ6:{hover:true},iMIAwx4W1:{hover:true},lriEYYymY:{hover:true}};const cycleOrder=[\"iMIAwx4W1\",\"dPyLBepZ6\",\"hRLyrHedS\",\"lriEYYymY\",\"pL1ySK2TY\",\"wfX5zFhhY\",\"Cw_a1Irs4\",\"J_3gXfmq1\",\"GcuiszfJy\",\"RApvmwgSA\",\"gqFNqaTEi\",\"xIWXnH8Vo\",\"my05XROqI\"];const serializationHash=\"framer-iJQlo\";const variantClassNames={Cw_a1Irs4:\"framer-v-p95srp\",dPyLBepZ6:\"framer-v-1an48nd\",GcuiszfJy:\"framer-v-1l0kmc9\",gqFNqaTEi:\"framer-v-a1pgx3\",hRLyrHedS:\"framer-v-1podliv\",iMIAwx4W1:\"framer-v-h0gaxd\",J_3gXfmq1:\"framer-v-9oj5rc\",lriEYYymY:\"framer-v-1gt4zvd\",my05XROqI:\"framer-v-n2w118\",pL1ySK2TY:\"framer-v-nn4e8q\",RApvmwgSA:\"framer-v-x37gaa\",wfX5zFhhY:\"framer-v-7jr0wm\",xIWXnH8Vo:\"framer-v-ve5ehn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Dark - No BG\":\"lriEYYymY\",\"Dark-2\":\"Cw_a1Irs4\",\"Dark-Active\":\"gqFNqaTEi\",\"Light - No BG\":\"pL1ySK2TY\",\"Light-2\":\"wfX5zFhhY\",\"Main-Mobile\":\"J_3gXfmq1\",\"NEW LIGHT\":\"my05XROqI\",\"Variant 10\":\"RApvmwgSA\",Dark:\"dPyLBepZ6\",Large:\"GcuiszfJy\",Light:\"hRLyrHedS\",NOLINK:\"xIWXnH8Vo\",Papaya:\"iMIAwx4W1\"};const getProps=({color3,height,hover6,hover7,hover8,hover9,id,link,link2,newTab,smoothScroll2,tap2,title,width,...props})=>{return{...props,CcorEOxxJ:hover9??props.CcorEOxxJ,ePFx1lHpQ:hover7??props.ePFx1lHpQ,iwpUBbA_a:tap2??props.iwpUBbA_a,jvJ2apzus:hover8??props.jvJ2apzus,kEVqYsxmg:link2??props.kEVqYsxmg,r3gI1vuyG:link??props.r3gI1vuyG,T_2SjiHyI:hover6??props.T_2SjiHyI,variant:humanReadableVariantMap[props.variant]??props.variant??\"iMIAwx4W1\",vbgP6rbuK:smoothScroll2??props.vbgP6rbuK,vLaR6_i7A:color3??props.vLaR6_i7A??\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\",XvKj2WK6Q:title??props.XvKj2WK6Q??\"Contact Sales\",Y6fnYx7_S:newTab??props.Y6fnYx7_S};};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,XvKj2WK6Q,r3gI1vuyG,iwpUBbA_a,Y6fnYx7_S,vbgP6rbuK,vLaR6_i7A,kEVqYsxmg,T_2SjiHyI,ePFx1lHpQ,jvJ2apzus,CcorEOxxJ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"iMIAwx4W1\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterwklure=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(T_2SjiHyI){const res=await T_2SjiHyI(...args);if(res===false)return false;}if(ePFx1lHpQ){const res=await ePFx1lHpQ(...args);if(res===false)return false;}if(jvJ2apzus){const res=await jvJ2apzus(...args);if(res===false)return false;}if(CcorEOxxJ){const res=await CcorEOxxJ(...args);if(res===false)return false;}});const onTap1aci1jd=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(iwpUBbA_a){const res=await iwpUBbA_a(...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:r3gI1vuyG,motionChild:true,nodeId:\"iMIAwx4W1\",openInNewTab:Y6fnYx7_S,scopeId:\"LA60stj9k\",smoothScroll:vbgP6rbuK,...addPropertyOverrides({hRLyrHedS:{href:kEVqYsxmg,openInNewTab:false,smoothScroll:false},xIWXnH8Vo:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-h0gaxd\",className,classNames)} framer-1ui89ng`,\"data-framer-name\":\"Papaya\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"iMIAwx4W1\",onMouseEnter:onMouseEnterwklure,ref:refBinding,style:{backgroundColor:\"var(--token-ec2fc95b-0069-4aaf-9dc7-4e4f889ff086, rgb(235, 78, 10))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,...style},variants:{\"dPyLBepZ6-hover\":{backgroundColor:\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\"},\"iMIAwx4W1-hover\":{backgroundColor:\"rgb(252, 102, 38)\"},\"lriEYYymY-hover\":{backgroundColor:\"var(--token-424407ca-8a5e-4b48-84df-2af93dcb4665, rgb(39, 40, 40))\"},Cw_a1Irs4:{backgroundColor:\"var(--token-a89c5b27-f6c1-400c-ab81-19a1903fc649, rgb(27, 28, 28))\"},dPyLBepZ6:{backgroundColor:\"var(--token-424407ca-8a5e-4b48-84df-2af93dcb4665, rgb(39, 40, 40))\"},gqFNqaTEi:{backgroundColor:\"var(--token-424407ca-8a5e-4b48-84df-2af93dcb4665, rgb(39, 40, 40))\"},hRLyrHedS:{backgroundColor:\"var(--token-255e0d8f-6c19-4cdb-914d-8d083e1995ba, rgb(249, 249, 249))\"},lriEYYymY:{backgroundColor:\"rgba(0, 0, 0, 0)\"},my05XROqI:{backgroundColor:\"var(--token-255e0d8f-6c19-4cdb-914d-8d083e1995ba, rgb(249, 249, 249))\"},pL1ySK2TY:{backgroundColor:\"rgba(0, 0, 0, 0)\"},RApvmwgSA:{backgroundColor:\"var(--token-3c8a01de-94fc-452c-ab90-43ddac961ed5, rgb(236, 236, 234))\"},wfX5zFhhY:{backgroundColor:\"var(--token-3c8a01de-94fc-452c-ab90-43ddac961ed5, rgb(236, 236, 234))\"}},...addPropertyOverrides({\"dPyLBepZ6-hover\":{\"data-framer-name\":undefined},\"iMIAwx4W1-hover\":{\"data-framer-name\":undefined},\"lriEYYymY-hover\":{\"data-framer-name\":undefined},Cw_a1Irs4:{\"data-framer-name\":\"Dark-2\"},dPyLBepZ6:{\"data-framer-name\":\"Dark\"},GcuiszfJy:{\"data-framer-name\":\"Large\"},gqFNqaTEi:{\"data-framer-name\":\"Dark-Active\"},hRLyrHedS:{\"data-framer-name\":\"Light\"},J_3gXfmq1:{\"data-framer-name\":\"Main-Mobile\"},lriEYYymY:{\"data-framer-name\":\"Dark - No BG\",onTap:onTap1aci1jd},my05XROqI:{\"data-framer-name\":\"NEW LIGHT\"},pL1ySK2TY:{\"data-framer-name\":\"Light - No BG\"},RApvmwgSA:{\"data-framer-name\":\"Variant 10\"},wfX5zFhhY:{\"data-framer-name\":\"Light-2\"},xIWXnH8Vo:{\"data-framer-name\":\"NOLINK\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-792d9903-2669-4d32-aca9-4bf0750cf240, rgb(255, 255, 255)))\"},children:\"Contact Sales\"})}),className:\"framer-1nsujs3\",\"data-framer-name\":\"Button\",fonts:[\"CUSTOM;PP Neue Montreal Medium\"],layoutDependency:layoutDependency,layoutId:\"QnDRu8Tu9\",style:{\"--extracted-r6o4lv\":\"var(--token-792d9903-2669-4d32-aca9-4bf0750cf240, rgb(255, 255, 255))\",\"--variable-reference-vLaR6_i7A-LA60stj9k\":vLaR6_i7A},text:XvKj2WK6Q,variants:{hRLyrHedS:{\"--extracted-r6o4lv\":\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\"},my05XROqI:{\"--extracted-r6o4lv\":\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\"},pL1ySK2TY:{\"--extracted-r6o4lv\":\"var(--variable-reference-vLaR6_i7A-LA60stj9k)\",\"--variable-reference-vLaR6_i7A-LA60stj9k\":vLaR6_i7A},RApvmwgSA:{\"--extracted-r6o4lv\":\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\"},wfX5zFhhY:{\"--extracted-r6o4lv\":\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({hRLyrHedS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)))\"},children:\"Contact Sales\"})})},my05XROqI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)))\"},children:\"Contact Sales\"})})},pL1ySK2TY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-vLaR6_i7A-LA60stj9k))\"},children:\"Contact Sales\"})})},RApvmwgSA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)))\"},children:\"Contact Sales\"})})},wfX5zFhhY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)))\"},children:\"Contact Sales\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iJQlo.framer-1ui89ng, .framer-iJQlo .framer-1ui89ng { display: block; }\",\".framer-iJQlo.framer-h0gaxd { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 10px 14px 10px 14px; position: relative; text-decoration: none; width: min-content; }\",\".framer-iJQlo .framer-1nsujs3 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-iJQlo.framer-v-9oj5rc.framer-h0gaxd { padding: 12px 16px 12px 16px; }\",\".framer-iJQlo.framer-v-1l0kmc9.framer-h0gaxd, .framer-iJQlo.framer-v-x37gaa.framer-h0gaxd { padding: 15px 25px 15px 25px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 115\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"dPyLBepZ6\":{\"layout\":[\"auto\",\"auto\"]},\"hRLyrHedS\":{\"layout\":[\"auto\",\"auto\"]},\"lriEYYymY\":{\"layout\":[\"auto\",\"auto\"]},\"pL1ySK2TY\":{\"layout\":[\"auto\",\"auto\"]},\"wfX5zFhhY\":{\"layout\":[\"auto\",\"auto\"]},\"Cw_a1Irs4\":{\"layout\":[\"auto\",\"auto\"]},\"J_3gXfmq1\":{\"layout\":[\"auto\",\"auto\"]},\"GcuiszfJy\":{\"layout\":[\"auto\",\"auto\"]},\"RApvmwgSA\":{\"layout\":[\"auto\",\"auto\"]},\"gqFNqaTEi\":{\"layout\":[\"auto\",\"auto\"]},\"xIWXnH8Vo\":{\"layout\":[\"auto\",\"auto\"]},\"my05XROqI\":{\"layout\":[\"auto\",\"auto\"]},\"PGfHWe3_h\":{\"layout\":[\"auto\",\"auto\"]},\"kxvc0w5NK\":{\"layout\":[\"auto\",\"auto\"]},\"ER_iodTGQ\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"XvKj2WK6Q\":\"title\",\"r3gI1vuyG\":\"link\",\"iwpUBbA_a\":\"tap2\",\"Y6fnYx7_S\":\"newTab\",\"vbgP6rbuK\":\"smoothScroll2\",\"vLaR6_i7A\":\"color3\",\"kEVqYsxmg\":\"link2\",\"T_2SjiHyI\":\"hover6\",\"ePFx1lHpQ\":\"hover7\",\"jvJ2apzus\":\"hover8\",\"CcorEOxxJ\":\"hover9\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerLA60stj9k=withCSS(Component,css,\"framer-iJQlo\");export default FramerLA60stj9k;FramerLA60stj9k.displayName=\"Button / MainButtonFinal\";FramerLA60stj9k.defaultProps={height:40,width:115};addPropertyControls(FramerLA60stj9k,{variant:{options:[\"iMIAwx4W1\",\"dPyLBepZ6\",\"hRLyrHedS\",\"lriEYYymY\",\"pL1ySK2TY\",\"wfX5zFhhY\",\"Cw_a1Irs4\",\"J_3gXfmq1\",\"GcuiszfJy\",\"RApvmwgSA\",\"gqFNqaTEi\",\"xIWXnH8Vo\",\"my05XROqI\"],optionTitles:[\"Papaya\",\"Dark\",\"Light\",\"Dark - No BG\",\"Light - No BG\",\"Light-2\",\"Dark-2\",\"Main-Mobile\",\"Large\",\"Variant 10\",\"Dark-Active\",\"NOLINK\",\"NEW LIGHT\"],title:\"Variant\",type:ControlType.Enum},XvKj2WK6Q:{defaultValue:\"Contact Sales\",displayTextArea:false,title:\"Title\",type:ControlType.String},r3gI1vuyG:{title:\"Link\",type:ControlType.Link},iwpUBbA_a:{title:\"Tap 2\",type:ControlType.EventHandler},Y6fnYx7_S:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},vbgP6rbuK:{defaultValue:false,title:\"Smooth Scroll 2\",type:ControlType.Boolean},vLaR6_i7A:{defaultValue:\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\",title:\"Color 3\",type:ControlType.Color},kEVqYsxmg:{title:\"Link 2\",type:ControlType.Link},T_2SjiHyI:{title:\"Hover 6\",type:ControlType.EventHandler},ePFx1lHpQ:{title:\"Hover 7\",type:ControlType.EventHandler},jvJ2apzus:{title:\"Hover 8\",type:ControlType.EventHandler},CcorEOxxJ:{title:\"Hover 9\",type:ControlType.EventHandler}});addFonts(FramerLA60stj9k,[{explicitInter:true,fonts:[{family:\"PP Neue Montreal Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/X3dpjR58Ye6dvtoHdLcifA4vzo.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLA60stj9k\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"XvKj2WK6Q\\\":\\\"title\\\",\\\"r3gI1vuyG\\\":\\\"link\\\",\\\"iwpUBbA_a\\\":\\\"tap2\\\",\\\"Y6fnYx7_S\\\":\\\"newTab\\\",\\\"vbgP6rbuK\\\":\\\"smoothScroll2\\\",\\\"vLaR6_i7A\\\":\\\"color3\\\",\\\"kEVqYsxmg\\\":\\\"link2\\\",\\\"T_2SjiHyI\\\":\\\"hover6\\\",\\\"ePFx1lHpQ\\\":\\\"hover7\\\",\\\"jvJ2apzus\\\":\\\"hover8\\\",\\\"CcorEOxxJ\\\":\\\"hover9\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dPyLBepZ6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hRLyrHedS\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"lriEYYymY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pL1ySK2TY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wfX5zFhhY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Cw_a1Irs4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"J_3gXfmq1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"GcuiszfJy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"RApvmwgSA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gqFNqaTEi\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xIWXnH8Vo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"my05XROqI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"PGfHWe3_h\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kxvc0w5NK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ER_iodTGQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"115\",\"framerIntrinsicHeight\":\"40\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LA60stj9k.map", "// Generated by Framer (114679e)\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 enabledGestures={GfkgnAmV5:{hover:true},gp5t_XAWu:{hover:true},Ja0c28NdZ:{hover:true}};const cycleOrder=[\"Ja0c28NdZ\",\"gp5t_XAWu\",\"U4x9z8_wV\",\"GfkgnAmV5\",\"cfjAESWTA\",\"UUQ0Y_lVE\",\"kL_cpvzvn\",\"f2hxITsPi\",\"Puqv86Rpo\",\"cwSQ9ojzO\",\"KkUkgM74Q\"];const serializationHash=\"framer-VJhlo\";const variantClassNames={cfjAESWTA:\"framer-v-rr813m\",cwSQ9ojzO:\"framer-v-3mlh1w\",f2hxITsPi:\"framer-v-1rx937k\",GfkgnAmV5:\"framer-v-1b2yi5t\",gp5t_XAWu:\"framer-v-f75j6g\",Ja0c28NdZ:\"framer-v-ppkkcc\",KkUkgM74Q:\"framer-v-327ql0\",kL_cpvzvn:\"framer-v-6swrhr\",Puqv86Rpo:\"framer-v-31so5n\",U4x9z8_wV:\"framer-v-1ph4a2l\",UUQ0Y_lVE:\"framer-v-19q8ah8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Dark - No BG\":\"GfkgnAmV5\",\"Dark-2\":\"kL_cpvzvn\",\"Light - No BG\":\"cfjAESWTA\",\"Light-2\":\"UUQ0Y_lVE\",\"Main-Mobile\":\"f2hxITsPi\",\"Variant 10\":\"cwSQ9ojzO\",\"Variant 11\":\"KkUkgM74Q\",Dark:\"gp5t_XAWu\",Large:\"Puqv86Rpo\",Light:\"U4x9z8_wV\",Papaya:\"Ja0c28NdZ\"};const getProps=({background2,height,hover7,id,link,newTab,smoothScroll2,tap2,title,width,...props})=>{return{...props,iwpUBbA_a:tap2??props.iwpUBbA_a,r3gI1vuyG:link??props.r3gI1vuyG,ruDDc5HKQ:hover7??props.ruDDc5HKQ,V_mdeIg77:background2??props.V_mdeIg77??\"var(--token-ec2fc95b-0069-4aaf-9dc7-4e4f889ff086, rgb(235, 78, 10))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"Ja0c28NdZ\",vbgP6rbuK:smoothScroll2??props.vbgP6rbuK,XvKj2WK6Q:title??props.XvKj2WK6Q??\"Contact Sales\",Y6fnYx7_S:newTab??props.Y6fnYx7_S};};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,XvKj2WK6Q,r3gI1vuyG,iwpUBbA_a,Y6fnYx7_S,vbgP6rbuK,V_mdeIg77,ruDDc5HKQ,vLaR6_i7ALA60stj9k,mfAN6OFNqLA60stj9k,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Ja0c28NdZ\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnteradorln=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(ruDDc5HKQ){const res=await ruDDc5HKQ(...args);if(res===false)return false;}});const onTap1aci1jd=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(iwpUBbA_a){const res=await iwpUBbA_a(...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:r3gI1vuyG,motionChild:true,nodeId:\"Ja0c28NdZ\",openInNewTab:Y6fnYx7_S,scopeId:\"P875og59P\",smoothScroll:vbgP6rbuK,...addPropertyOverrides({U4x9z8_wV:{smoothScroll:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-ppkkcc\",className,classNames)} framer-1fpnj64`,\"data-framer-name\":\"Papaya\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Ja0c28NdZ\",onMouseEnter:onMouseEnteradorln,ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-ec2fc95b-0069-4aaf-9dc7-4e4f889ff086, rgb(235, 78, 10))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,...style},variants:{\"GfkgnAmV5-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-424407ca-8a5e-4b48-84df-2af93dcb4665, rgb(39, 40, 40))\"},\"gp5t_XAWu-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\"},\"Ja0c28NdZ-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(252, 102, 38)\"},cfjAESWTA:{backgroundColor:\"rgba(0, 0, 0, 0)\"},cwSQ9ojzO:{backgroundColor:\"var(--token-3c8a01de-94fc-452c-ab90-43ddac961ed5, rgb(236, 236, 234))\"},GfkgnAmV5:{backgroundColor:\"rgba(0, 0, 0, 0)\"},gp5t_XAWu:{backgroundColor:\"var(--token-424407ca-8a5e-4b48-84df-2af93dcb4665, rgb(39, 40, 40))\"},KkUkgM74Q:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-ec2fc95b-0069-4aaf-9dc7-4e4f889ff086, rgb(235, 78, 10))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(235, 77, 9, 0.06)\"},kL_cpvzvn:{backgroundColor:\"var(--token-a89c5b27-f6c1-400c-ab81-19a1903fc649, rgb(27, 28, 28))\"},Puqv86Rpo:{backgroundColor:V_mdeIg77},U4x9z8_wV:{backgroundColor:\"var(--token-255e0d8f-6c19-4cdb-914d-8d083e1995ba, rgb(249, 249, 249))\"},UUQ0Y_lVE:{backgroundColor:\"var(--token-3c8a01de-94fc-452c-ab90-43ddac961ed5, rgb(236, 236, 234))\"}},...addPropertyOverrides({\"GfkgnAmV5-hover\":{\"data-framer-name\":undefined},\"gp5t_XAWu-hover\":{\"data-framer-name\":undefined},\"Ja0c28NdZ-hover\":{\"data-framer-name\":undefined},cfjAESWTA:{\"data-framer-name\":\"Light - No BG\"},cwSQ9ojzO:{\"data-framer-name\":\"Variant 10\"},f2hxITsPi:{\"data-framer-name\":\"Main-Mobile\"},GfkgnAmV5:{\"data-framer-name\":\"Dark - No BG\",onTap:onTap1aci1jd},gp5t_XAWu:{\"data-framer-name\":\"Dark\"},KkUkgM74Q:{\"data-border\":true,\"data-framer-name\":\"Variant 11\"},kL_cpvzvn:{\"data-framer-name\":\"Dark-2\"},Puqv86Rpo:{\"data-framer-name\":\"Large\"},U4x9z8_wV:{\"data-framer-name\":\"Light\"},UUQ0Y_lVE:{\"data-framer-name\":\"Light-2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-792d9903-2669-4d32-aca9-4bf0750cf240, rgb(255, 255, 255)))\"},children:\"Contact Sales\"})}),className:\"framer-2hnc2i\",\"data-framer-name\":\"Button\",fonts:[\"CUSTOM;PP Neue Montreal Medium\"],layoutDependency:layoutDependency,layoutId:\"eoABEiJCD\",style:{\"--extracted-r6o4lv\":\"var(--token-792d9903-2669-4d32-aca9-4bf0750cf240, rgb(255, 255, 255))\",\"--variable-reference-mfAN6OFNq-LA60stj9k\":mfAN6OFNqLA60stj9k,\"--variable-reference-vLaR6_i7A-LA60stj9k\":vLaR6_i7ALA60stj9k},text:XvKj2WK6Q,variants:{cfjAESWTA:{\"--extracted-r6o4lv\":\"var(--variable-reference-vLaR6_i7A-LA60stj9k)\",\"--variable-reference-vLaR6_i7A-LA60stj9k\":vLaR6_i7ALA60stj9k},cwSQ9ojzO:{\"--extracted-r6o4lv\":\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\"},KkUkgM74Q:{\"--extracted-r6o4lv\":\"var(--token-ec2fc95b-0069-4aaf-9dc7-4e4f889ff086, rgb(235, 78, 10))\"},Puqv86Rpo:{\"--extracted-r6o4lv\":\"var(--variable-reference-mfAN6OFNq-LA60stj9k)\",\"--variable-reference-mfAN6OFNq-LA60stj9k\":mfAN6OFNqLA60stj9k},U4x9z8_wV:{\"--extracted-r6o4lv\":\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\"},UUQ0Y_lVE:{\"--extracted-r6o4lv\":\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cfjAESWTA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-vLaR6_i7A-LA60stj9k))\"},children:\"Contact Sales\"})})},cwSQ9ojzO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)))\"},children:\"Contact Sales\"})})},KkUkgM74Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ec2fc95b-0069-4aaf-9dc7-4e4f889ff086, rgb(235, 78, 10)))\"},children:\"Contact Sales\"})})},Puqv86Rpo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-mfAN6OFNq-LA60stj9k))\"},children:\"Contact Sales\"})})},U4x9z8_wV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)))\"},children:\"Contact Sales\"})})},UUQ0Y_lVE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)))\"},children:\"Contact Sales\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VJhlo.framer-1fpnj64, .framer-VJhlo .framer-1fpnj64 { display: block; }\",\".framer-VJhlo.framer-ppkkcc { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 10px 14px 10px 14px; position: relative; text-decoration: none; width: min-content; }\",\".framer-VJhlo .framer-2hnc2i { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-VJhlo.framer-v-1rx937k.framer-ppkkcc { padding: 12px 16px 12px 16px; }\",\".framer-VJhlo.framer-v-31so5n.framer-ppkkcc, .framer-VJhlo.framer-v-3mlh1w.framer-ppkkcc { padding: 15px 25px 15px 25px; }\",'.framer-VJhlo[data-border=\"true\"]::after, .framer-VJhlo [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 115\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"gp5t_XAWu\":{\"layout\":[\"auto\",\"auto\"]},\"U4x9z8_wV\":{\"layout\":[\"auto\",\"auto\"]},\"GfkgnAmV5\":{\"layout\":[\"auto\",\"auto\"]},\"cfjAESWTA\":{\"layout\":[\"auto\",\"auto\"]},\"UUQ0Y_lVE\":{\"layout\":[\"auto\",\"auto\"]},\"kL_cpvzvn\":{\"layout\":[\"auto\",\"auto\"]},\"f2hxITsPi\":{\"layout\":[\"auto\",\"auto\"]},\"Puqv86Rpo\":{\"layout\":[\"auto\",\"auto\"]},\"cwSQ9ojzO\":{\"layout\":[\"auto\",\"auto\"]},\"KkUkgM74Q\":{\"layout\":[\"auto\",\"auto\"]},\"gIReehl8j\":{\"layout\":[\"auto\",\"auto\"]},\"Lsmb4wpe_\":{\"layout\":[\"auto\",\"auto\"]},\"lPHLOudOK\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"XvKj2WK6Q\":\"title\",\"r3gI1vuyG\":\"link\",\"iwpUBbA_a\":\"tap2\",\"Y6fnYx7_S\":\"newTab\",\"vbgP6rbuK\":\"smoothScroll2\",\"V_mdeIg77\":\"background2\",\"ruDDc5HKQ\":\"hover7\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerP875og59P=withCSS(Component,css,\"framer-VJhlo\");export default FramerP875og59P;FramerP875og59P.displayName=\"Button / MainButtonFinal Copy\";FramerP875og59P.defaultProps={height:40,width:115};addPropertyControls(FramerP875og59P,{variant:{options:[\"Ja0c28NdZ\",\"gp5t_XAWu\",\"U4x9z8_wV\",\"GfkgnAmV5\",\"cfjAESWTA\",\"UUQ0Y_lVE\",\"kL_cpvzvn\",\"f2hxITsPi\",\"Puqv86Rpo\",\"cwSQ9ojzO\",\"KkUkgM74Q\"],optionTitles:[\"Papaya\",\"Dark\",\"Light\",\"Dark - No BG\",\"Light - No BG\",\"Light-2\",\"Dark-2\",\"Main-Mobile\",\"Large\",\"Variant 10\",\"Variant 11\"],title:\"Variant\",type:ControlType.Enum},XvKj2WK6Q:{defaultValue:\"Contact Sales\",displayTextArea:false,title:\"Title\",type:ControlType.String},r3gI1vuyG:{title:\"Link\",type:ControlType.Link},iwpUBbA_a:{title:\"Tap 2\",type:ControlType.EventHandler},Y6fnYx7_S:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},vbgP6rbuK:{defaultValue:false,title:\"Smooth Scroll 2\",type:ControlType.Boolean},V_mdeIg77:{defaultValue:'var(--token-ec2fc95b-0069-4aaf-9dc7-4e4f889ff086, rgb(235, 78, 10)) /* {\"name\":\"Papaya\"} */',title:\"Background 2\",type:ControlType.Color},ruDDc5HKQ:{title:\"Hover 7\",type:ControlType.EventHandler}});addFonts(FramerP875og59P,[{explicitInter:true,fonts:[{family:\"PP Neue Montreal Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/X3dpjR58Ye6dvtoHdLcifA4vzo.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerP875og59P\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gp5t_XAWu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"U4x9z8_wV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"GfkgnAmV5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cfjAESWTA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UUQ0Y_lVE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kL_cpvzvn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"f2hxITsPi\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Puqv86Rpo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cwSQ9ojzO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"KkUkgM74Q\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gIReehl8j\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Lsmb4wpe_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"lPHLOudOK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"40\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"115\",\"framerVariables\":\"{\\\"XvKj2WK6Q\\\":\\\"title\\\",\\\"r3gI1vuyG\\\":\\\"link\\\",\\\"iwpUBbA_a\\\":\\\"tap2\\\",\\\"Y6fnYx7_S\\\":\\\"newTab\\\",\\\"vbgP6rbuK\\\":\\\"smoothScroll2\\\",\\\"V_mdeIg77\\\":\\\"background2\\\",\\\"ruDDc5HKQ\\\":\\\"hover7\\\"}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./P875og59P.map", "// Generated by Framer (5b26096)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;PP Neue Montreal Medium\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"PP Neue Montreal Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/X3dpjR58Ye6dvtoHdLcifA4vzo.woff2\"}]}];export const css=['.framer-HRcVy .framer-styles-preset-jifskq:not(.rich-text-wrapper), .framer-HRcVy .framer-styles-preset-jifskq.rich-text-wrapper h4 { --framer-font-family: \"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.1px; --framer-line-height: 20px; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-HRcVy\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (114679e)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,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\";import*as sharedStyle from\"https://framerusercontent.com/modules/GDQ8VJGBXRKFmpXKjUrO/x9qpy0q0p2jZ9xET5FAh/fqheQxiK2.js\";const enabledGestures={faj3tzAo8:{hover:true},nzS1UEsKH:{hover:true},oVXEIhLEs:{hover:true},pNNQ0hvPz:{hover:true},wozyQnQOL:{hover:true},YlAzm2s0J:{hover:true}};const cycleOrder=[\"faj3tzAo8\",\"pNNQ0hvPz\",\"oVXEIhLEs\",\"YlAzm2s0J\",\"nzS1UEsKH\",\"wozyQnQOL\",\"QDjn1nsAE\",\"wY_22QoHv\"];const serializationHash=\"framer-LXAU5\";const variantClassNames={faj3tzAo8:\"framer-v-ghked1\",nzS1UEsKH:\"framer-v-1pi5ya3\",oVXEIhLEs:\"framer-v-98z1av\",pNNQ0hvPz:\"framer-v-14yak2\",QDjn1nsAE:\"framer-v-wzppqz\",wozyQnQOL:\"framer-v-6anbj4\",wY_22QoHv:\"framer-v-q7avxq\",YlAzm2s0J:\"framer-v-1mm1lv3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={bounce:.2,delay:0,duration:.4,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={\"Clear-Dark\":\"wozyQnQOL\",\"Clear-Light\":\"pNNQ0hvPz\",\"Dark-1\":\"oVXEIhLEs\",\"Homepage Button Clear Dark\":\"wY_22QoHv\",\"Homepage Button Dark\":\"QDjn1nsAE\",Dark2:\"YlAzm2s0J\",Light:\"nzS1UEsKH\",Main:\"faj3tzAo8\"};const getProps=({click,height,id,link,padding,shadow2,title,width,...props})=>{return{...props,Ekb5zt9TK:shadow2??props.Ekb5zt9TK??\"0px 0px 0px 0px rgba(0, 0, 0, 0.25)\",HkXArTRCm:padding??props.HkXArTRCm??\"10px 20px 10px 20px\",i6ydiGswO:link??props.i6ydiGswO,JJ00ngaKv:click??props.JJ00ngaKv,jpKtV9MEn:title??props.jpKtV9MEn??\"Short\",variant:humanReadableVariantMap[props.variant]??props.variant??\"faj3tzAo8\"};};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,jpKtV9MEn,HkXArTRCm,i6ydiGswO,JJ00ngaKv,Ekb5zt9TK,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"faj3tzAo8\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapcbi8nj=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(JJ00ngaKv){const res=await JJ00ngaKv(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];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:i6ydiGswO,motionChild:true,nodeId:\"faj3tzAo8\",openInNewTab:false,scopeId:\"YxAUZlgP8\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-ghked1\",className,classNames)} framer-3tdfy7`,\"data-framer-name\":\"Main\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"faj3tzAo8\",onTap:onTapcbi8nj,ref:refBinding,style:{\"--164dkfe\":Ekb5zt9TK,\"--1honjkx\":numberToPixelString(HkXArTRCm),backgroundColor:\"var(--token-ec2fc95b-0069-4aaf-9dc7-4e4f889ff086, rgb(235, 78, 10))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,boxShadow:\"var(--164dkfe)\",...style},variants:{nzS1UEsKH:{backgroundColor:\"var(--token-255e0d8f-6c19-4cdb-914d-8d083e1995ba, rgb(249, 249, 249))\"},oVXEIhLEs:{backgroundColor:\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\"},pNNQ0hvPz:{backgroundColor:\"rgba(0, 0, 0, 0)\"},QDjn1nsAE:{backgroundColor:\"var(--token-424407ca-8a5e-4b48-84df-2af93dcb4665, rgb(39, 40, 40))\"},wozyQnQOL:{backgroundColor:\"rgba(0, 0, 0, 0)\"},wY_22QoHv:{backgroundColor:\"rgba(0, 0, 0, 0)\"},YlAzm2s0J:{backgroundColor:\"var(--token-424407ca-8a5e-4b48-84df-2af93dcb4665, rgb(39, 40, 40))\"}},...addPropertyOverrides({\"faj3tzAo8-hover\":{\"data-framer-name\":undefined},\"nzS1UEsKH-hover\":{\"data-framer-name\":undefined},\"oVXEIhLEs-hover\":{\"data-framer-name\":undefined},\"pNNQ0hvPz-hover\":{\"data-framer-name\":undefined},\"wozyQnQOL-hover\":{\"data-framer-name\":undefined},\"YlAzm2s0J-hover\":{\"data-framer-name\":undefined},nzS1UEsKH:{\"data-framer-name\":\"Light\"},oVXEIhLEs:{\"data-framer-name\":\"Dark-1\"},pNNQ0hvPz:{\"data-framer-name\":\"Clear-Light\"},QDjn1nsAE:{\"data-framer-name\":\"Homepage Button Dark\"},wozyQnQOL:{\"data-framer-name\":\"Clear-Dark\"},wY_22QoHv:{\"data-framer-name\":\"Homepage Button Clear Dark\"},YlAzm2s0J:{\"data-framer-name\":\"Dark2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-jifskq\",\"data-styles-preset\":\"fqheQxiK2\",children:\"Short\"})}),className:\"framer-1rm3hsp\",\"data-framer-name\":\"Button\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VplfT0ONj\",text:jpKtV9MEn,variants:{nzS1UEsKH:{\"--extracted-1eung3n\":\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\"},wozyQnQOL:{\"--extracted-1eung3n\":\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\"},wY_22QoHv:{\"--extracted-1eung3n\":\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nzS1UEsKH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-jifskq\",\"data-styles-preset\":\"fqheQxiK2\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)))\"},children:\"Short\"})})},wozyQnQOL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-jifskq\",\"data-styles-preset\":\"fqheQxiK2\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)))\"},children:\"Short\"})})},wY_22QoHv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-jifskq\",\"data-styles-preset\":\"fqheQxiK2\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)))\"},children:\"Short\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LXAU5.framer-3tdfy7, .framer-LXAU5 .framer-3tdfy7 { display: block; }\",\".framer-LXAU5.framer-ghked1 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: var(--1honjkx); position: relative; text-decoration: none; width: min-content; }\",\".framer-LXAU5 .framer-1rm3hsp { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 74\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"pNNQ0hvPz\":{\"layout\":[\"auto\",\"auto\"]},\"oVXEIhLEs\":{\"layout\":[\"auto\",\"auto\"]},\"YlAzm2s0J\":{\"layout\":[\"auto\",\"auto\"]},\"nzS1UEsKH\":{\"layout\":[\"auto\",\"auto\"]},\"wozyQnQOL\":{\"layout\":[\"auto\",\"auto\"]},\"QDjn1nsAE\":{\"layout\":[\"auto\",\"auto\"]},\"wY_22QoHv\":{\"layout\":[\"auto\",\"auto\"]},\"dVKenaHjd\":{\"layout\":[\"auto\",\"auto\"]},\"RD4qitdt4\":{\"layout\":[\"auto\",\"auto\"]},\"ej1sHh6KB\":{\"layout\":[\"auto\",\"auto\"]},\"X88g4MWFk\":{\"layout\":[\"auto\",\"auto\"]},\"EAuIEq3xy\":{\"layout\":[\"auto\",\"auto\"]},\"M5XWLpyI8\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"jpKtV9MEn\":\"title\",\"HkXArTRCm\":\"padding\",\"i6ydiGswO\":\"link\",\"JJ00ngaKv\":\"click\",\"Ekb5zt9TK\":\"shadow2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerYxAUZlgP8=withCSS(Component,css,\"framer-LXAU5\");export default FramerYxAUZlgP8;FramerYxAUZlgP8.displayName=\"Main-button-2025\";FramerYxAUZlgP8.defaultProps={height:40,width:74};addPropertyControls(FramerYxAUZlgP8,{variant:{options:[\"faj3tzAo8\",\"pNNQ0hvPz\",\"oVXEIhLEs\",\"YlAzm2s0J\",\"nzS1UEsKH\",\"wozyQnQOL\",\"QDjn1nsAE\",\"wY_22QoHv\"],optionTitles:[\"Main\",\"Clear-Light\",\"Dark-1\",\"Dark2\",\"Light\",\"Clear-Dark\",\"Homepage Button Dark\",\"Homepage Button Clear Dark\"],title:\"Variant\",type:ControlType.Enum},jpKtV9MEn:{defaultValue:\"Short\",displayTextArea:false,title:\"Title\",type:ControlType.String},HkXArTRCm:{defaultValue:\"10px 20px 10px 20px\",title:\"Padding\",type:ControlType.Padding},i6ydiGswO:{title:\"Link\",type:ControlType.Link},JJ00ngaKv:{title:\"Click\",type:ControlType.EventHandler},Ekb5zt9TK:{defaultValue:[{blur:0,color:\"rgba(0,0,0,0.25)\",diffusion:.5,focus:.5,inset:false,spread:0,type:\"box\",x:0,y:0}],title:\"Shadow 2\",type:ControlType.BoxShadow}});addFonts(FramerYxAUZlgP8,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYxAUZlgP8\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"jpKtV9MEn\\\":\\\"title\\\",\\\"HkXArTRCm\\\":\\\"padding\\\",\\\"i6ydiGswO\\\":\\\"link\\\",\\\"JJ00ngaKv\\\":\\\"click\\\",\\\"Ekb5zt9TK\\\":\\\"shadow2\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"74\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pNNQ0hvPz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"oVXEIhLEs\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"YlAzm2s0J\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"nzS1UEsKH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wozyQnQOL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"QDjn1nsAE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wY_22QoHv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dVKenaHjd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"RD4qitdt4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ej1sHh6KB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"X88g4MWFk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"EAuIEq3xy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"M5XWLpyI8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YxAUZlgP8.map", "// Generated by Framer (114679e)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Link,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import MainButton2025 from\"https://framerusercontent.com/modules/9vCt51aAuJBWbLUaqYJH/tuxglHQEXMkBG0I3OclQ/YxAUZlgP8.js\";const MainButton2025Fonts=getFonts(MainButton2025);const MainButton2025Controls=getPropertyControls(MainButton2025);const serializationHash=\"framer-eqtQ4\";const variantClassNames={pa7Ss2C3R:\"framer-v-1j5u4g0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,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 humanReadableEnumMap={\"Clear-Dark\":\"wozyQnQOL\",\"Clear-Light\":\"pNNQ0hvPz\",\"Dark-1\":\"oVXEIhLEs\",\"Homepage Button Clear Dark\":\"wY_22QoHv\",\"Homepage Button Dark\":\"QDjn1nsAE\",Dark2:\"YlAzm2s0J\",Light:\"nzS1UEsKH\",Main:\"faj3tzAo8\"};const getProps=({height,id,shadow,title,trackingID,variant2,width,...props})=>{return{...props,BmJhhEjPU:shadow??props.BmJhhEjPU??\"0px 2px 5px 0px rgba(0, 0, 0, 0)\",cD_kEsJqn:trackingID??props.cD_kEsJqn,wnpDrIU5Y:humanReadableEnumMap[variant2]??variant2??props.wnpDrIU5Y??\"faj3tzAo8\",x0aGn4ek5:title??props.x0aGn4ek5??\"Book a demo\"};};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,x0aGn4ek5,cD_kEsJqn,BmJhhEjPU,wnpDrIU5Y,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"pa7Ss2C3R\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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,{clickTrackingId:cD_kEsJqn,href:{webPageId:\"jWZ8SyWIl\"},motionChild:true,nodeId:\"pa7Ss2C3R\",scopeId:\"ZNc7qfYHq\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1j5u4g0\",className,classNames)} framer-66699a`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"pa7Ss2C3R\",ref:refBinding,style:{\"--ugt2jy\":BmJhhEjPU,backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,boxShadow:\"var(--ugt2jy)\",...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+(0+((componentViewport?.height||40)-0-40)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ai2fzn-container\",layoutDependency:layoutDependency,layoutId:\"ctXOgKxm6-container\",nodeId:\"ctXOgKxm6\",rendersWithMotion:true,scopeId:\"ZNc7qfYHq\",children:/*#__PURE__*/_jsx(MainButton2025,{Ekb5zt9TK:\"0px 0px 0px 0px rgba(0, 0, 0, 0.25)\",height:\"100%\",HkXArTRCm:\"10px 20px 10px 20px\",id:\"ctXOgKxm6\",jpKtV9MEn:x0aGn4ek5,layoutId:\"ctXOgKxm6\",variant:wnpDrIU5Y,width:\"100%\"})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eqtQ4.framer-66699a, .framer-eqtQ4 .framer-66699a { display: block; }\",\".framer-eqtQ4.framer-1j5u4g0 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-eqtQ4 .framer-1ai2fzn-container { flex: none; height: auto; position: relative; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 121\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"x0aGn4ek5\":\"title\",\"cD_kEsJqn\":\"trackingID\",\"BmJhhEjPU\":\"shadow\",\"wnpDrIU5Y\":\"variant2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerZNc7qfYHq=withCSS(Component,css,\"framer-eqtQ4\");export default FramerZNc7qfYHq;FramerZNc7qfYHq.displayName=\"Book a Demo V2\";FramerZNc7qfYHq.defaultProps={height:40,width:121};addPropertyControls(FramerZNc7qfYHq,{x0aGn4ek5:{defaultValue:\"Book a demo\",displayTextArea:false,placeholder:\"Title\",title:\"Title\",type:ControlType.String},cD_kEsJqn:{title:\"Tracking-ID\",type:ControlType.TrackingId},BmJhhEjPU:{defaultValue:[{blur:5,color:\"rgba(0, 0, 0, 0)\",diffusion:.5,focus:.5,inset:false,spread:0,type:\"box\",x:0,y:2}],title:\"Shadow\",type:ControlType.BoxShadow},wnpDrIU5Y:MainButton2025Controls?.[\"variant\"]&&{...MainButton2025Controls[\"variant\"],defaultValue:\"faj3tzAo8\",description:undefined,hidden:undefined,title:\"Variant 2\"}});addFonts(FramerZNc7qfYHq,[{explicitInter:true,fonts:[]},...MainButton2025Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZNc7qfYHq\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"121\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"40\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"x0aGn4ek5\\\":\\\"title\\\",\\\"cD_kEsJqn\\\":\\\"trackingID\\\",\\\"BmJhhEjPU\\\":\\\"shadow\\\",\\\"wnpDrIU5Y\\\":\\\"variant2\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZNc7qfYHq.map", "// Generated by Framer (114679e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{withHeaderMenuClick}from\"https://framerusercontent.com/modules/jNBsk8CI17JqVZ05S9Sk/fvfXj3LqqvTdKt3CRplf/Custom_Function_Override.js\";import CardResourceCard from\"https://framerusercontent.com/modules/LaIhRkn21zH738kgLtuV/XqhA4QwgM5FR5hS6R9Ig/coxzlrGBo.js\";const CardResourceCardFonts=getFonts(CardResourceCard);const MotionDivWithHeaderMenuClick1va3hcd=withCodeBoundaryForOverrides(motion.div,{nodeId:\"gGJh7yU_R\",override:withHeaderMenuClick,scopeId:\"BuaVewDhZ\"});const MotionDivWithHeaderMenuClickpx5b6r=withCodeBoundaryForOverrides(motion.div,{nodeId:\"q52T18yGf\",override:withHeaderMenuClick,scopeId:\"BuaVewDhZ\"});const MotionDivWithHeaderMenuClick9uc65l=withCodeBoundaryForOverrides(motion.div,{nodeId:\"adFpXqFMz\",override:withHeaderMenuClick,scopeId:\"BuaVewDhZ\"});const MotionDivWithHeaderMenuClick17xjue5=withCodeBoundaryForOverrides(motion.div,{nodeId:\"WXtkkyH_s\",override:withHeaderMenuClick,scopeId:\"BuaVewDhZ\"});const MotionDivWithHeaderMenuClick1l1ijr5=withCodeBoundaryForOverrides(motion.div,{nodeId:\"Kuh8prBm2\",override:withHeaderMenuClick,scopeId:\"BuaVewDhZ\"});const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"J269GiZvW\",\"hdc4aDu8S\"];const serializationHash=\"framer-400s4\";const variantClassNames={hdc4aDu8S:\"framer-v-1gnp8ux\",J269GiZvW:\"framer-v-19kgc4v\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-5,y:0};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition3={duration:0,type:\"tween\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"J269GiZvW\",\"Variant 2\":\"hdc4aDu8S\"};const getProps=({height,id,title,width,...props})=>{return{...props,JXmWagFDy:title??props.JXmWagFDy??\"Features\",variant:humanReadableVariantMap[props.variant]??props.variant??\"J269GiZvW\"};};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,JXmWagFDy,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"J269GiZvW\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"hdc4aDu8S\")return false;return true;};const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,...addPropertyOverrides({hdc4aDu8S:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-19kgc4v\",className,classNames),\"data-framer-appear-id\":\"19kgc4v\",\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"J269GiZvW\",optimized:true,ref:refBinding,style:{backgroundColor:\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\",borderBottomLeftRadius:2,borderBottomRightRadius:2,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\",...style},variants:{hdc4aDu8S:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({hdc4aDu8S:{__framer__presenceAnimate:undefined,__framer__presenceInitial:undefined,\"data-framer-name\":\"Variant 2\",optimized:undefined}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"PP Neue Montreal Regular\", \"PP Neue Montreal Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.25px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-792d9903-2669-4d32-aca9-4bf0750cf240, rgb(255, 255, 255)))\"},children:\"Features\"})}),className:\"framer-15cp4dc\",fonts:[\"CUSTOM;PP Neue Montreal Regular\"],layoutDependency:layoutDependency,layoutId:\"SClURdHUe\",style:{\"--extracted-r6o4lv\":\"var(--token-792d9903-2669-4d32-aca9-4bf0750cf240, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.5},text:JXmWagFDy,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jbwd3r\",layoutDependency:layoutDependency,layoutId:\"fIgKItl7Z\",children:[/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClick1va3hcd,{className:\"framer-1va3hcd\",layoutDependency:layoutDependency,layoutId:\"gGJh7yU_R\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UCBxm9dSg\"},implicitPathVariables:undefined},{href:{webPageId:\"UCBxm9dSg\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"318px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||485)-45-524)/2+105+20)+0+0+0,...addPropertyOverrides({hdc4aDu8S:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||523)-0-696)/2+0+0)+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wavu2d-container\",layoutDependency:layoutDependency,layoutId:\"zfVMWuqcq-container\",nodeId:\"zfVMWuqcq\",rendersWithMotion:true,scopeId:\"BuaVewDhZ\",children:/*#__PURE__*/_jsx(CardResourceCard,{height:\"100%\",id:\"zfVMWuqcq\",layoutId:\"zfVMWuqcq\",pIBPI7bhS:addImageAlt({pixelHeight:500,pixelWidth:800,src:\"https://framerusercontent.com/images/pNS6jIVBKuDAtGeT8UYbaLiCz2Q.jpg\",srcSet:\"https://framerusercontent.com/images/pNS6jIVBKuDAtGeT8UYbaLiCz2Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pNS6jIVBKuDAtGeT8UYbaLiCz2Q.jpg 800w\"},\"\"),rvAo6FB5G:resolvedLinks[0],style:{width:\"100%\"},tI4jPIjFq:\"Configurators\",variant:\"ZQY4PqV0g\",width:\"100%\",...addPropertyOverrides({hdc4aDu8S:{rvAo6FB5G:resolvedLinks[1],variant:\"p6qkON_D1\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClickpx5b6r,{className:\"framer-px5b6r\",layoutDependency:layoutDependency,layoutId:\"q52T18yGf\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LoABjakxA\"},implicitPathVariables:undefined},{href:{webPageId:\"LoABjakxA\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"317px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||485)-45-524)/2+105+20)+0+0+0,...addPropertyOverrides({hdc4aDu8S:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||523)-0-696)/2+0+0)+0+100+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-h3zi7b-container\",layoutDependency:layoutDependency,layoutId:\"qBorGBBR2-container\",nodeId:\"qBorGBBR2\",rendersWithMotion:true,scopeId:\"BuaVewDhZ\",children:/*#__PURE__*/_jsx(CardResourceCard,{height:\"100%\",id:\"qBorGBBR2\",layoutId:\"qBorGBBR2\",pIBPI7bhS:addImageAlt({pixelHeight:80,pixelWidth:125,src:\"https://framerusercontent.com/images/vgJzvdMj8AglFuATrt5FM5Tw.png\"},\"\"),rvAo6FB5G:resolvedLinks1[0],style:{width:\"100%\"},tI4jPIjFq:\"Lifestyle Imagery\",variant:\"ZQY4PqV0g\",width:\"100%\",...addPropertyOverrides({hdc4aDu8S:{rvAo6FB5G:resolvedLinks1[1],variant:\"p6qkON_D1\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"BnwHBB5b_\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"318px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||485)-45-524)/2+105+20)+0+101,...addPropertyOverrides({hdc4aDu8S:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||523)-0-696)/2+0+0)+0+200}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1uy8rnt-container\",layoutDependency:layoutDependency,layoutId:\"ZLM02kKGp-container\",nodeId:\"ZLM02kKGp\",rendersWithMotion:true,scopeId:\"BuaVewDhZ\",children:/*#__PURE__*/_jsx(CardResourceCard,{height:\"100%\",id:\"ZLM02kKGp\",layoutId:\"ZLM02kKGp\",pIBPI7bhS:addImageAlt({pixelHeight:165,pixelWidth:258,src:\"https://framerusercontent.com/images/g9MZ9QlM59vpGoDuG5W4kqu0QDo.png\"},\"\"),rvAo6FB5G:resolvedLinks2[0],style:{width:\"100%\"},tI4jPIjFq:\"AI Visual Tools\",variant:\"ZQY4PqV0g\",width:\"100%\",...addPropertyOverrides({hdc4aDu8S:{rvAo6FB5G:\"https://imagine.io/platform/ai\",variant:\"p6qkON_D1\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClick9uc65l,{className:\"framer-9uc65l\",layoutDependency:layoutDependency,layoutId:\"adFpXqFMz\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"H2NIMXxgr\"},implicitPathVariables:undefined},{href:{webPageId:\"H2NIMXxgr\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"317px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||485)-45-524)/2+105+20)+0+101+0,...addPropertyOverrides({hdc4aDu8S:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||523)-0-696)/2+0+0)+0+300+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gxxi9p-container\",layoutDependency:layoutDependency,layoutId:\"A08cpf5Ny-container\",nodeId:\"A08cpf5Ny\",rendersWithMotion:true,scopeId:\"BuaVewDhZ\",children:/*#__PURE__*/_jsx(CardResourceCard,{height:\"100%\",id:\"A08cpf5Ny\",layoutId:\"A08cpf5Ny\",pIBPI7bhS:addImageAlt({pixelHeight:500,pixelWidth:800,src:\"https://framerusercontent.com/images/T2dDIUFuoeEJJRoUUypk9EvVso.jpg\",srcSet:\"https://framerusercontent.com/images/T2dDIUFuoeEJJRoUUypk9EvVso.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/T2dDIUFuoeEJJRoUUypk9EvVso.jpg 800w\"},\"\"),rvAo6FB5G:resolvedLinks3[0],style:{width:\"100%\"},tI4jPIjFq:\"3D Rendering\",variant:\"ZQY4PqV0g\",width:\"100%\",...addPropertyOverrides({hdc4aDu8S:{rvAo6FB5G:resolvedLinks3[1],variant:\"p6qkON_D1\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClick17xjue5,{className:\"framer-17xjue5\",layoutDependency:layoutDependency,layoutId:\"WXtkkyH_s\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YVeY1gSUy\"},implicitPathVariables:undefined},{href:{webPageId:\"YVeY1gSUy\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"318px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||485)-45-524)/2+105+20)+0+202+0,...addPropertyOverrides({hdc4aDu8S:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||523)-0-696)/2+0+0)+0+400+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-d2m2w6-container\",layoutDependency:layoutDependency,layoutId:\"UkWBAF6RJ-container\",nodeId:\"UkWBAF6RJ\",rendersWithMotion:true,scopeId:\"BuaVewDhZ\",children:/*#__PURE__*/_jsx(CardResourceCard,{height:\"100%\",id:\"UkWBAF6RJ\",layoutId:\"UkWBAF6RJ\",pIBPI7bhS:addImageAlt({pixelHeight:500,pixelWidth:800,src:\"https://framerusercontent.com/images/Jl07DjoMRLnemyvXpy95czNbwc.jpg\",srcSet:\"https://framerusercontent.com/images/Jl07DjoMRLnemyvXpy95czNbwc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Jl07DjoMRLnemyvXpy95czNbwc.jpg 800w\"},\"\"),rvAo6FB5G:resolvedLinks4[0],style:{width:\"100%\"},tI4jPIjFq:\"Augmented Reality\",variant:\"ZQY4PqV0g\",width:\"100%\",...addPropertyOverrides({hdc4aDu8S:{rvAo6FB5G:resolvedLinks4[1],variant:\"p6qkON_D1\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClick1l1ijr5,{className:\"framer-1l1ijr5\",layoutDependency:layoutDependency,layoutId:\"Kuh8prBm2\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"y4r_qmAel\"},implicitPathVariables:undefined},{href:{webPageId:\"y4r_qmAel\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"317px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||485)-45-524)/2+105+20)+0+202+0,...addPropertyOverrides({hdc4aDu8S:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||523)-0-696)/2+0+0)+0+500+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-v7kddl-container\",layoutDependency:layoutDependency,layoutId:\"jWdaow2dg-container\",nodeId:\"jWdaow2dg\",rendersWithMotion:true,scopeId:\"BuaVewDhZ\",children:/*#__PURE__*/_jsx(CardResourceCard,{height:\"100%\",id:\"jWdaow2dg\",layoutId:\"jWdaow2dg\",pIBPI7bhS:addImageAlt({pixelHeight:500,pixelWidth:800,src:\"https://framerusercontent.com/images/BDmoRhcGKXcFOoSEefHGaUD0g8c.jpg\",srcSet:\"https://framerusercontent.com/images/BDmoRhcGKXcFOoSEefHGaUD0g8c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BDmoRhcGKXcFOoSEefHGaUD0g8c.jpg 800w\"},\"\"),rvAo6FB5G:resolvedLinks5[0],style:{width:\"100%\"},tI4jPIjFq:\"Video\",variant:\"ZQY4PqV0g\",width:\"100%\",...addPropertyOverrides({hdc4aDu8S:{rvAo6FB5G:resolvedLinks5[1],variant:\"p6qkON_D1\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"NOTS0sY89\"},implicitPathVariables:undefined},{href:{webPageId:\"NOTS0sY89\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"318px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||485)-45-524)/2+105+20)+0+303,...addPropertyOverrides({hdc4aDu8S:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||523)-0-696)/2+0+0)+0+600}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-q2uv68-container\",layoutDependency:layoutDependency,layoutId:\"wL4f6cpzA-container\",nodeId:\"wL4f6cpzA\",rendersWithMotion:true,scopeId:\"BuaVewDhZ\",children:/*#__PURE__*/_jsx(CardResourceCard,{height:\"100%\",id:\"wL4f6cpzA\",layoutId:\"wL4f6cpzA\",pIBPI7bhS:addImageAlt({pixelHeight:640,pixelWidth:1024,src:\"https://framerusercontent.com/images/wyYjjAcXwWCfjQc4Qk3gqbKyxwk.jpg\",srcSet:\"https://framerusercontent.com/images/wyYjjAcXwWCfjQc4Qk3gqbKyxwk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wyYjjAcXwWCfjQc4Qk3gqbKyxwk.jpg 1024w\"},\"\"),rvAo6FB5G:resolvedLinks6[0],style:{width:\"100%\"},tI4jPIjFq:\"Mattress Builder\",variant:\"ZQY4PqV0g\",width:\"100%\",...addPropertyOverrides({hdc4aDu8S:{rvAo6FB5G:resolvedLinks6[1],variant:\"p6qkON_D1\"}},baseVariant,gestureVariant)})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-400s4.framer-vo0kgd, .framer-400s4 .framer-vo0kgd { display: block; }\",\".framer-400s4.framer-19kgc4v { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 15px 30px 30px 30px; position: relative; width: 700px; will-change: var(--framer-will-change-override, transform); }\",\".framer-400s4 .framer-15cp4dc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-400s4 .framer-jbwd3r { display: grid; flex: none; gap: 5px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(1px, 1fr)); grid-template-rows: repeat(4, min-content); height: min-content; justify-content: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-400s4 .framer-1va3hcd, .framer-400s4 .framer-px5b6r, .framer-400s4 .framer-9uc65l, .framer-400s4 .framer-17xjue5, .framer-400s4 .framer-1l1ijr5 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 318px; }\",\".framer-400s4 .framer-wavu2d-container, .framer-400s4 .framer-d2m2w6-container { flex: none; height: auto; position: relative; width: 318px; }\",\".framer-400s4 .framer-h3zi7b-container, .framer-400s4 .framer-gxxi9p-container, .framer-400s4 .framer-v7kddl-container { flex: none; height: auto; position: relative; width: 317px; }\",\".framer-400s4 .framer-1uy8rnt-container, .framer-400s4 .framer-q2uv68-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 318px; }\",\".framer-400s4.framer-v-1gnp8ux.framer-19kgc4v { padding: 0px; width: 467px; }\",\".framer-400s4.framer-v-1gnp8ux .framer-jbwd3r { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 4px; justify-content: center; }\",\".framer-400s4.framer-v-1gnp8ux .framer-1va3hcd, .framer-400s4.framer-v-1gnp8ux .framer-px5b6r, .framer-400s4.framer-v-1gnp8ux .framer-1uy8rnt-container, .framer-400s4.framer-v-1gnp8ux .framer-9uc65l, .framer-400s4.framer-v-1gnp8ux .framer-17xjue5, .framer-400s4.framer-v-1gnp8ux .framer-q2uv68-container { align-self: unset; width: 100%; }\",\".framer-400s4.framer-v-1gnp8ux .framer-wavu2d-container, .framer-400s4.framer-v-1gnp8ux .framer-h3zi7b-container, .framer-400s4.framer-v-1gnp8ux .framer-gxxi9p-container, .framer-400s4.framer-v-1gnp8ux .framer-d2m2w6-container { flex: 1 0 0px; width: 1px; }\",\".framer-400s4.framer-v-1gnp8ux .framer-1l1ijr5 { align-self: unset; flex-direction: column; width: 100%; }\",\".framer-400s4.framer-v-1gnp8ux .framer-v7kddl-container { width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 485\n * @framerIntrinsicWidth 700\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hdc4aDu8S\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"JXmWagFDy\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerBuaVewDhZ=withCSS(Component,css,\"framer-400s4\");export default FramerBuaVewDhZ;FramerBuaVewDhZ.displayName=\"Navigation / Platform\";FramerBuaVewDhZ.defaultProps={height:485,width:700};addPropertyControls(FramerBuaVewDhZ,{variant:{options:[\"J269GiZvW\",\"hdc4aDu8S\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},JXmWagFDy:{defaultValue:\"Features\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerBuaVewDhZ,[{explicitInter:true,fonts:[{family:\"PP Neue Montreal Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/VFYJOsKjIQ6qepv7Eu14z79ME.woff2\"}]},...CardResourceCardFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBuaVewDhZ\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hdc4aDu8S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"JXmWagFDy\\\":\\\"title\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"700\",\"framerIntrinsicHeight\":\"485\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (114679e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";const MaterialFonts=getFonts(Material);const enabledGestures={ZQY4PqV0g:{hover:true}};const cycleOrder=[\"ZQY4PqV0g\",\"p6qkON_D1\"];const serializationHash=\"framer-skUaf\";const variantClassNames={p6qkON_D1:\"framer-v-j79h7d\",ZQY4PqV0g:\"framer-v-1jzbyy6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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={Main:\"ZQY4PqV0g\",Mobile:\"p6qkON_D1\"};const getProps=({cardImage,height,id,link,title,width,...props})=>{return{...props,pIBPI7bhS:cardImage??props.pIBPI7bhS??{pixelHeight:1500,pixelWidth:1500,src:\"https://framerusercontent.com/images/p6IABMf1Gae64j78YMbRvBmjs.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/p6IABMf1Gae64j78YMbRvBmjs.webp?scale-down-to=512 512w,https://framerusercontent.com/images/p6IABMf1Gae64j78YMbRvBmjs.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/p6IABMf1Gae64j78YMbRvBmjs.webp 1500w\"},rvAo6FB5G:link??props.rvAo6FB5G,tI4jPIjFq:title??props.tI4jPIjFq??\"Webinar Title\",variant:humanReadableVariantMap[props.variant]??props.variant??\"ZQY4PqV0g\"};};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,tI4jPIjFq,rvAo6FB5G,pIBPI7bhS,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZQY4PqV0g\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"p6qkON_D1\")return false;return true;};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:rvAo6FB5G,motionChild:true,nodeId:\"ZQY4PqV0g\",scopeId:\"coxzlrGBo\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1jzbyy6\",className,classNames)} framer-u68zyp`,\"data-framer-name\":\"Main\",layoutDependency:layoutDependency,layoutId:\"ZQY4PqV0g\",ref:refBinding,style:{backgroundColor:\"var(--token-a89c5b27-f6c1-400c-ab81-19a1903fc649, rgb(27, 28, 28))\",borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3,...style},variants:{\"ZQY4PqV0g-hover\":{backgroundColor:\"var(--token-424407ca-8a5e-4b48-84df-2af93dcb4665, rgb(39, 40, 40))\"}},...addPropertyOverrides({\"ZQY4PqV0g-hover\":{\"data-framer-name\":undefined},p6qkON_D1:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3e3,intrinsicWidth:4e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(8+((componentViewport?.height||200)-16-80)/2)),pixelHeight:3e3,pixelWidth:4e3,sizes:\"125px\",...toResponsiveImage(pIBPI7bhS)},className:\"framer-y30dej\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"LcUtwQ6Ff\",style:{borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3},...addPropertyOverrides({p6qkON_D1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3e3,intrinsicWidth:4e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(8+((componentViewport?.height||200)-16-55)/2)),pixelHeight:3e3,pixelWidth:4e3,sizes:\"85.5556px\",...toResponsiveImage(pIBPI7bhS)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pn4sxc\",\"data-framer-name\":\"Copy and Arrow\",layoutDependency:layoutDependency,layoutId:\"z1MshL50T\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18yxdwx\",\"data-framer-name\":\"Copy\",layoutDependency:layoutDependency,layoutId:\"xMfsGoFM0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-792d9903-2669-4d32-aca9-4bf0750cf240, rgb(255, 255, 255)))\"},children:\"AI Stylist\"})}),className:\"framer-7kwypa\",fonts:[\"CUSTOM;PP Neue Montreal Medium\"],layoutDependency:layoutDependency,layoutId:\"lMVhXUIc2\",style:{\"--extracted-r6o4lv\":\"var(--token-792d9903-2669-4d32-aca9-4bf0750cf240, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:tI4jPIjFq,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tz2u2t-container\",\"data-framer-name\":\"Icon\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"lZC9Smt7K-container\",name:\"Icon\",nodeId:\"lZC9Smt7K\",rendersWithMotion:true,scopeId:\"coxzlrGBo\",style:{opacity:.2,rotate:180},variants:{\"ZQY4PqV0g-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-792d9903-2669-4d32-aca9-4bf0750cf240, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"East\",iconStyle15:\"Outlined\",iconStyle2:\"Sharp\",iconStyle7:\"TwoTone\",id:\"lZC9Smt7K\",layoutId:\"lZC9Smt7K\",mirrored:true,name:\"Icon\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-skUaf.framer-u68zyp, .framer-skUaf .framer-u68zyp { display: block; }\",\".framer-skUaf.framer-1jzbyy6 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 8px; position: relative; text-decoration: none; width: 390px; }\",\".framer-skUaf .framer-y30dej { flex: none; height: 80px; overflow: visible; position: relative; width: 125px; }\",\".framer-skUaf .framer-pn4sxc { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: visible; padding: 8px 24px 8px 16px; position: relative; width: 1px; }\",\".framer-skUaf .framer-18yxdwx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-skUaf .framer-7kwypa { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-skUaf .framer-tz2u2t-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-skUaf.framer-v-j79h7d .framer-y30dej { aspect-ratio: 1.5555555555555556 / 1; height: var(--framer-aspect-ratio-supported, 55px); width: 86px; }\",\".framer-skUaf.framer-v-j79h7d .framer-pn4sxc { gap: 0px; justify-content: center; }\",\".framer-skUaf.framer-v-j79h7d .framer-18yxdwx { align-content: center; align-items: center; justify-content: center; padding: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 96\n * @framerIntrinsicWidth 390\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"p6qkON_D1\":{\"layout\":[\"fixed\",\"auto\"]},\"kxRE8iPtr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"tI4jPIjFq\":\"title\",\"rvAo6FB5G\":\"link\",\"pIBPI7bhS\":\"cardImage\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramercoxzlrGBo=withCSS(Component,css,\"framer-skUaf\");export default FramercoxzlrGBo;FramercoxzlrGBo.displayName=\"Card / ResourceCard\";FramercoxzlrGBo.defaultProps={height:96,width:390};addPropertyControls(FramercoxzlrGBo,{variant:{options:[\"ZQY4PqV0g\",\"p6qkON_D1\"],optionTitles:[\"Main\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},tI4jPIjFq:{defaultValue:\"Webinar Title\",displayTextArea:false,placeholder:\"Webinar Subcopy\",title:\"Title\",type:ControlType.String},rvAo6FB5G:{title:\"Link\",type:ControlType.Link},pIBPI7bhS:{__defaultAssetReference:\"data:framer/asset-reference,p6IABMf1Gae64j78YMbRvBmjs.webp?originalFilename=textile_pillow.webp&preferredSize=auto\",title:\"Card-Image\",type:ControlType.ResponsiveImage}});addFonts(FramercoxzlrGBo,[{explicitInter:true,fonts:[{family:\"PP Neue Montreal Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/X3dpjR58Ye6dvtoHdLcifA4vzo.woff2\"}]},...MaterialFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercoxzlrGBo\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"96\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"tI4jPIjFq\\\":\\\"title\\\",\\\"rvAo6FB5G\\\":\\\"link\\\",\\\"pIBPI7bhS\\\":\\\"cardImage\\\"}\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"390\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p6qkON_D1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kxRE8iPtr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./coxzlrGBo.map", "// Generated by Framer (114679e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{withHeaderMenuClick}from\"https://framerusercontent.com/modules/jNBsk8CI17JqVZ05S9Sk/fvfXj3LqqvTdKt3CRplf/Custom_Function_Override.js\";import CardResourceCard from\"https://framerusercontent.com/modules/LaIhRkn21zH738kgLtuV/XqhA4QwgM5FR5hS6R9Ig/coxzlrGBo.js\";const CardResourceCardFonts=getFonts(CardResourceCard);const MotionDivWithHeaderMenuClickumkn0p=withCodeBoundaryForOverrides(motion.div,{nodeId:\"QUdq6EDRX\",override:withHeaderMenuClick,scopeId:\"IE4mCIbED\"});const MotionDivWithHeaderMenuClick1ir7r7i=withCodeBoundaryForOverrides(motion.div,{nodeId:\"XMEX3wggl\",override:withHeaderMenuClick,scopeId:\"IE4mCIbED\"});const MotionDivWithHeaderMenuClickk2uiyb=withCodeBoundaryForOverrides(motion.div,{nodeId:\"X8rkufV8v\",override:withHeaderMenuClick,scopeId:\"IE4mCIbED\"});const MotionDivWithHeaderMenuClickg36ydb=withCodeBoundaryForOverrides(motion.div,{nodeId:\"zLSDVKHW4\",override:withHeaderMenuClick,scopeId:\"IE4mCIbED\"});const MotionDivWithHeaderMenuClickyhqe1y=withCodeBoundaryForOverrides(motion.div,{nodeId:\"ddu3PABrq\",override:withHeaderMenuClick,scopeId:\"IE4mCIbED\"});const MotionDivWithHeaderMenuClickqs7k7h=withCodeBoundaryForOverrides(motion.div,{nodeId:\"T4GKug2Y9\",override:withHeaderMenuClick,scopeId:\"IE4mCIbED\"});const MotionDivWithHeaderMenuClick1ikjkj9=withCodeBoundaryForOverrides(motion.div,{nodeId:\"VvmpzpVFD\",override:withHeaderMenuClick,scopeId:\"IE4mCIbED\"});const MotionDivWithHeaderMenuClick1y334om=withCodeBoundaryForOverrides(motion.div,{nodeId:\"HvVViFzei\",override:withHeaderMenuClick,scopeId:\"IE4mCIbED\"});const MotionDivWithHeaderMenuClickwzocs8=withCodeBoundaryForOverrides(motion.div,{nodeId:\"jfLA0FSW6\",override:withHeaderMenuClick,scopeId:\"IE4mCIbED\"});const MotionDivWithHeaderMenuClick8r4iyl=withCodeBoundaryForOverrides(motion.div,{nodeId:\"IczLjAn48\",override:withHeaderMenuClick,scopeId:\"IE4mCIbED\"});const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"eiE8sVZTw\",\"hskLf2ZRZ\"];const serializationHash=\"framer-p0WyT\";const variantClassNames={eiE8sVZTw:\"framer-v-10uu5dp\",hskLf2ZRZ:\"framer-v-r3h5eu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-5,y:0};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition3={duration:0,type:\"tween\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"eiE8sVZTw\",\"Variant 2\":\"hskLf2ZRZ\"};const getProps=({height,hover,id,title,width,...props})=>{return{...props,IuB87oueG:title??props.IuB87oueG??\"Popular Industries\",UONv9KzPh:hover??props.UONv9KzPh,variant:humanReadableVariantMap[props.variant]??props.variant??\"eiE8sVZTw\"};};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,IuB87oueG,UONv9KzPh,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"eiE8sVZTw\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1c34sce=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(UONv9KzPh){const res=await UONv9KzPh(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"hskLf2ZRZ\")return false;return true;};const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,...addPropertyOverrides({hskLf2ZRZ:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-10uu5dp\",className,classNames),\"data-framer-appear-id\":\"10uu5dp\",\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"eiE8sVZTw\",onMouseEnter:onMouseEnter1c34sce,optimized:true,ref:refBinding,style:{backgroundColor:\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\",borderBottomLeftRadius:2,borderBottomRightRadius:2,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\",...style},variants:{hskLf2ZRZ:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({hskLf2ZRZ:{__framer__presenceAnimate:undefined,__framer__presenceInitial:undefined,\"data-framer-name\":\"Variant 2\",optimized:undefined}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"PP Neue Montreal Regular\", \"PP Neue Montreal Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.25px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-792d9903-2669-4d32-aca9-4bf0750cf240, rgb(255, 255, 255)))\"},children:\"Popular Industries\"})}),className:\"framer-1n18c1f\",fonts:[\"CUSTOM;PP Neue Montreal Regular\"],layoutDependency:layoutDependency,layoutId:\"ZFd34PrQp\",style:{\"--extracted-r6o4lv\":\"var(--token-792d9903-2669-4d32-aca9-4bf0750cf240, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.5},text:IuB87oueG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sm8cjb\",layoutDependency:layoutDependency,layoutId:\"SlqTMc0dP\",children:[/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClickumkn0p,{className:\"framer-umkn0p\",layoutDependency:layoutDependency,layoutId:\"QUdq6EDRX\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lZtd5b_2h\"},implicitPathVariables:undefined},{href:{webPageId:\"lZtd5b_2h\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"354px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||200)-45-625)/2+105+20)+0+0+0,...addPropertyOverrides({hskLf2ZRZ:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-996)/2+0+0)+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6773ik-container\",layoutDependency:layoutDependency,layoutId:\"jRf63mZ0F-container\",nodeId:\"jRf63mZ0F\",rendersWithMotion:true,scopeId:\"IE4mCIbED\",children:/*#__PURE__*/_jsx(CardResourceCard,{height:\"100%\",id:\"jRf63mZ0F\",layoutId:\"jRf63mZ0F\",pIBPI7bhS:addImageAlt({pixelHeight:1500,pixelWidth:1500,src:\"https://framerusercontent.com/images/YvldWQQ2pl6tUqsLs9dhcMmQM.png\",srcSet:\"https://framerusercontent.com/images/YvldWQQ2pl6tUqsLs9dhcMmQM.png?scale-down-to=512 512w,https://framerusercontent.com/images/YvldWQQ2pl6tUqsLs9dhcMmQM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YvldWQQ2pl6tUqsLs9dhcMmQM.png 1500w\"},\"\"),rvAo6FB5G:resolvedLinks[0],style:{width:\"100%\"},tI4jPIjFq:\"Accessories\",variant:\"ZQY4PqV0g\",width:\"100%\",...addPropertyOverrides({hskLf2ZRZ:{rvAo6FB5G:resolvedLinks[1],variant:\"p6qkON_D1\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClick1ir7r7i,{className:\"framer-1ir7r7i\",layoutDependency:layoutDependency,layoutId:\"XMEX3wggl\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"j12eMRs81\"},implicitPathVariables:undefined},{href:{webPageId:\"j12eMRs81\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"354px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||200)-45-625)/2+105+20)+0+0+0,...addPropertyOverrides({hskLf2ZRZ:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-996)/2+0+0)+0+100+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ycph25-container\",layoutDependency:layoutDependency,layoutId:\"s13i7OcPJ-container\",nodeId:\"s13i7OcPJ\",rendersWithMotion:true,scopeId:\"IE4mCIbED\",children:/*#__PURE__*/_jsx(CardResourceCard,{height:\"100%\",id:\"s13i7OcPJ\",layoutId:\"s13i7OcPJ\",pIBPI7bhS:addImageAlt({pixelHeight:281,pixelWidth:500,src:\"https://framerusercontent.com/images/0B8V5Y6geR9xBseScDlFE5UfaE.png\"},\"\"),rvAo6FB5G:resolvedLinks1[0],style:{width:\"100%\"},tI4jPIjFq:\"Commercial\",variant:\"ZQY4PqV0g\",width:\"100%\",...addPropertyOverrides({hskLf2ZRZ:{rvAo6FB5G:resolvedLinks1[1],variant:\"p6qkON_D1\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClickk2uiyb,{className:\"framer-k2uiyb\",layoutDependency:layoutDependency,layoutId:\"X8rkufV8v\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pdIozOdJT\"},implicitPathVariables:undefined},{href:{webPageId:\"pdIozOdJT\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"354px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||200)-45-625)/2+105+20)+0+101+0,...addPropertyOverrides({hskLf2ZRZ:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-996)/2+0+0)+0+200+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-25gjpy-container\",layoutDependency:layoutDependency,layoutId:\"L4CEjT6cM-container\",nodeId:\"L4CEjT6cM\",rendersWithMotion:true,scopeId:\"IE4mCIbED\",children:/*#__PURE__*/_jsx(CardResourceCard,{height:\"100%\",id:\"L4CEjT6cM\",layoutId:\"L4CEjT6cM\",pIBPI7bhS:addImageAlt({pixelHeight:365,pixelWidth:350,src:\"https://framerusercontent.com/images/q4Pp7WXHTCpiNmwZu0X79I6PuVY.png\"},\"\"),rvAo6FB5G:resolvedLinks2[0],style:{width:\"100%\"},tI4jPIjFq:\"Lighting\",variant:\"ZQY4PqV0g\",width:\"100%\",...addPropertyOverrides({hskLf2ZRZ:{rvAo6FB5G:resolvedLinks2[1],variant:\"p6qkON_D1\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClickg36ydb,{className:\"framer-g36ydb\",layoutDependency:layoutDependency,layoutId:\"zLSDVKHW4\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FcDxQnMTY\"},implicitPathVariables:undefined},{href:{webPageId:\"FcDxQnMTY\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"354px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||200)-45-625)/2+105+20)+0+101+0,...addPropertyOverrides({hskLf2ZRZ:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-996)/2+0+0)+0+300+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rf8nry-container\",layoutDependency:layoutDependency,layoutId:\"YIlzz8toc-container\",nodeId:\"YIlzz8toc\",rendersWithMotion:true,scopeId:\"IE4mCIbED\",children:/*#__PURE__*/_jsx(CardResourceCard,{height:\"100%\",id:\"YIlzz8toc\",layoutId:\"YIlzz8toc\",pIBPI7bhS:addImageAlt({pixelHeight:364,pixelWidth:350,src:\"https://framerusercontent.com/images/IQ4lF8rQxqPYeI8HdrZ1LpOApdc.png\"},\"\"),rvAo6FB5G:resolvedLinks3[0],style:{width:\"100%\"},tI4jPIjFq:\"Outdoor\",variant:\"ZQY4PqV0g\",width:\"100%\",...addPropertyOverrides({hskLf2ZRZ:{rvAo6FB5G:resolvedLinks3[1],variant:\"p6qkON_D1\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClickyhqe1y,{className:\"framer-yhqe1y\",layoutDependency:layoutDependency,layoutId:\"ddu3PABrq\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mOYx3R1QY\"},implicitPathVariables:undefined},{href:{webPageId:\"mOYx3R1QY\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"354px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||200)-45-625)/2+105+20)+0+202+0,...addPropertyOverrides({hskLf2ZRZ:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-996)/2+0+0)+0+400+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wbbsih-container\",layoutDependency:layoutDependency,layoutId:\"P8h2n2w5i-container\",nodeId:\"P8h2n2w5i\",rendersWithMotion:true,scopeId:\"IE4mCIbED\",children:/*#__PURE__*/_jsx(CardResourceCard,{height:\"100%\",id:\"P8h2n2w5i\",layoutId:\"P8h2n2w5i\",pIBPI7bhS:addImageAlt({pixelHeight:514,pixelWidth:960,src:\"https://framerusercontent.com/images/yEOcmSIUSUqL8RBndxUQu2EdykE.png\",srcSet:\"https://framerusercontent.com/images/yEOcmSIUSUqL8RBndxUQu2EdykE.png?scale-down-to=512 512w,https://framerusercontent.com/images/yEOcmSIUSUqL8RBndxUQu2EdykE.png 960w\"},\"\"),rvAo6FB5G:resolvedLinks4[0],style:{width:\"100%\"},tI4jPIjFq:\"Bath\",variant:\"ZQY4PqV0g\",width:\"100%\",...addPropertyOverrides({hskLf2ZRZ:{rvAo6FB5G:resolvedLinks4[1],variant:\"p6qkON_D1\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClickqs7k7h,{className:\"framer-qs7k7h\",layoutDependency:layoutDependency,layoutId:\"T4GKug2Y9\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fkidtH25b\"},implicitPathVariables:undefined},{href:{webPageId:\"fkidtH25b\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"354px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||200)-45-625)/2+105+20)+0+202+0,...addPropertyOverrides({hskLf2ZRZ:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-996)/2+0+0)+0+500+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1n7r7mp-container\",layoutDependency:layoutDependency,layoutId:\"BwCU1bDj7-container\",nodeId:\"BwCU1bDj7\",rendersWithMotion:true,scopeId:\"IE4mCIbED\",children:/*#__PURE__*/_jsx(CardResourceCard,{height:\"100%\",id:\"BwCU1bDj7\",layoutId:\"BwCU1bDj7\",pIBPI7bhS:addImageAlt({pixelHeight:4e3,pixelWidth:4e3,src:\"https://framerusercontent.com/images/VRU4CXBJottfxaPUl2mYctSN7Y.png\",srcSet:\"https://framerusercontent.com/images/VRU4CXBJottfxaPUl2mYctSN7Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/VRU4CXBJottfxaPUl2mYctSN7Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VRU4CXBJottfxaPUl2mYctSN7Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VRU4CXBJottfxaPUl2mYctSN7Y.png 4000w\"},\"\"),rvAo6FB5G:resolvedLinks5[0],style:{width:\"100%\"},tI4jPIjFq:\"Case Goods\",variant:\"ZQY4PqV0g\",width:\"100%\",...addPropertyOverrides({hskLf2ZRZ:{rvAo6FB5G:resolvedLinks5[1],variant:\"p6qkON_D1\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClick1ikjkj9,{className:\"framer-1ikjkj9\",layoutDependency:layoutDependency,layoutId:\"VvmpzpVFD\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"owX2LJDw_\"},implicitPathVariables:undefined},{href:{webPageId:\"owX2LJDw_\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"354px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||200)-45-625)/2+105+20)+0+303+0,...addPropertyOverrides({hskLf2ZRZ:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-996)/2+0+0)+0+600+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ym7wib-container\",layoutDependency:layoutDependency,layoutId:\"zEJIZiilX-container\",nodeId:\"zEJIZiilX\",rendersWithMotion:true,scopeId:\"IE4mCIbED\",children:/*#__PURE__*/_jsx(CardResourceCard,{height:\"100%\",id:\"zEJIZiilX\",layoutId:\"zEJIZiilX\",pIBPI7bhS:addImageAlt({pixelHeight:514,pixelWidth:960,src:\"https://framerusercontent.com/images/7FDQxQ8USxsqQCuXmcVIIvDXt84.png\",srcSet:\"https://framerusercontent.com/images/7FDQxQ8USxsqQCuXmcVIIvDXt84.png?scale-down-to=512 512w,https://framerusercontent.com/images/7FDQxQ8USxsqQCuXmcVIIvDXt84.png 960w\"},\"\"),rvAo6FB5G:resolvedLinks6[0],style:{width:\"100%\"},tI4jPIjFq:\"Appliances\",variant:\"ZQY4PqV0g\",width:\"100%\",...addPropertyOverrides({hskLf2ZRZ:{rvAo6FB5G:resolvedLinks6[1],variant:\"p6qkON_D1\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClick1y334om,{className:\"framer-1y334om\",layoutDependency:layoutDependency,layoutId:\"HvVViFzei\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VoQywgDo9\"},implicitPathVariables:undefined},{href:{webPageId:\"VoQywgDo9\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"354px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||200)-45-625)/2+105+20)+0+303+0,...addPropertyOverrides({hskLf2ZRZ:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-996)/2+0+0)+0+700+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1e4gyg3-container\",layoutDependency:layoutDependency,layoutId:\"POdal7xXh-container\",nodeId:\"POdal7xXh\",rendersWithMotion:true,scopeId:\"IE4mCIbED\",children:/*#__PURE__*/_jsx(CardResourceCard,{height:\"100%\",id:\"POdal7xXh\",layoutId:\"POdal7xXh\",pIBPI7bhS:addImageAlt({pixelHeight:1507,pixelWidth:1950,src:\"https://framerusercontent.com/images/Yl7AhofQckKmdXlokTTasfCU.png\",srcSet:\"https://framerusercontent.com/images/Yl7AhofQckKmdXlokTTasfCU.png?scale-down-to=512 512w,https://framerusercontent.com/images/Yl7AhofQckKmdXlokTTasfCU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Yl7AhofQckKmdXlokTTasfCU.png 1950w\"},\"\"),rvAo6FB5G:resolvedLinks7[0],style:{width:\"100%\"},tI4jPIjFq:\"Furniture\",variant:\"ZQY4PqV0g\",width:\"100%\",...addPropertyOverrides({hskLf2ZRZ:{rvAo6FB5G:resolvedLinks7[1],variant:\"p6qkON_D1\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClickwzocs8,{className:\"framer-wzocs8\",layoutDependency:layoutDependency,layoutId:\"jfLA0FSW6\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"JY8U_kUau\"},implicitPathVariables:undefined},{href:{webPageId:\"JY8U_kUau\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"354px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||200)-45-625)/2+105+20)+0+404+0,...addPropertyOverrides({hskLf2ZRZ:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-996)/2+0+0)+0+800+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1068evz-container\",layoutDependency:layoutDependency,layoutId:\"THWindrR8-container\",nodeId:\"THWindrR8\",rendersWithMotion:true,scopeId:\"IE4mCIbED\",children:/*#__PURE__*/_jsx(CardResourceCard,{height:\"100%\",id:\"THWindrR8\",layoutId:\"THWindrR8\",pIBPI7bhS:addImageAlt({pixelHeight:322,pixelWidth:369,src:\"https://framerusercontent.com/images/8rdEx7rrjzDeMt4plAAByn4OLYw.png\"},\"\"),rvAo6FB5G:resolvedLinks8[0],style:{width:\"100%\"},tI4jPIjFq:\"Mattresses\",variant:\"ZQY4PqV0g\",width:\"100%\",...addPropertyOverrides({hskLf2ZRZ:{rvAo6FB5G:resolvedLinks8[1],variant:\"p6qkON_D1\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClick8r4iyl,{className:\"framer-8r4iyl\",layoutDependency:layoutDependency,layoutId:\"IczLjAn48\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"I0FM88TIf\"},implicitPathVariables:undefined},{href:{webPageId:\"I0FM88TIf\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"354px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||200)-45-625)/2+105+20)+0+404+0,...addPropertyOverrides({hskLf2ZRZ:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-996)/2+0+0)+0+900+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fne4rm-container\",layoutDependency:layoutDependency,layoutId:\"NkCHZCYV1-container\",nodeId:\"NkCHZCYV1\",rendersWithMotion:true,scopeId:\"IE4mCIbED\",children:/*#__PURE__*/_jsx(CardResourceCard,{height:\"100%\",id:\"NkCHZCYV1\",layoutId:\"NkCHZCYV1\",rvAo6FB5G:resolvedLinks9[0],style:{width:\"100%\"},tI4jPIjFq:\"See all industries\",variant:\"ZQY4PqV0g\",width:\"100%\",...addPropertyOverrides({hskLf2ZRZ:{rvAo6FB5G:resolvedLinks9[1],variant:\"p6qkON_D1\"}},baseVariant,gestureVariant)})})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-p0WyT.framer-1qhv11l, .framer-p0WyT .framer-1qhv11l { display: block; }\",\".framer-p0WyT.framer-10uu5dp { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 15px 30px 30px 30px; position: relative; width: 773px; will-change: var(--framer-will-change-override, transform); }\",\".framer-p0WyT .framer-1n18c1f { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-p0WyT .framer-sm8cjb { display: grid; flex: none; gap: 5px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(4, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p0WyT .framer-umkn0p { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 354px; }\",\".framer-p0WyT .framer-6773ik-container, .framer-p0WyT .framer-ycph25-container, .framer-p0WyT .framer-25gjpy-container, .framer-p0WyT .framer-1rf8nry-container, .framer-p0WyT .framer-wbbsih-container, .framer-p0WyT .framer-1n7r7mp-container, .framer-p0WyT .framer-ym7wib-container, .framer-p0WyT .framer-1e4gyg3-container, .framer-p0WyT .framer-1068evz-container, .framer-p0WyT .framer-1fne4rm-container { flex: none; height: auto; position: relative; width: 354px; }\",\".framer-p0WyT .framer-1ir7r7i, .framer-p0WyT .framer-k2uiyb, .framer-p0WyT .framer-g36ydb, .framer-p0WyT .framer-yhqe1y, .framer-p0WyT .framer-qs7k7h, .framer-p0WyT .framer-1ikjkj9, .framer-p0WyT .framer-1y334om, .framer-p0WyT .framer-wzocs8, .framer-p0WyT .framer-8r4iyl { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 96px; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 1fr; }\",\".framer-p0WyT.framer-v-r3h5eu.framer-10uu5dp { padding: 0px; width: 494px; }\",\".framer-p0WyT.framer-v-r3h5eu .framer-sm8cjb { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 4px; }\",\".framer-p0WyT.framer-v-r3h5eu .framer-umkn0p { align-self: unset; width: 100%; }\",\".framer-p0WyT.framer-v-r3h5eu .framer-6773ik-container, .framer-p0WyT.framer-v-r3h5eu .framer-ycph25-container, .framer-p0WyT.framer-v-r3h5eu .framer-25gjpy-container, .framer-p0WyT.framer-v-r3h5eu .framer-1rf8nry-container, .framer-p0WyT.framer-v-r3h5eu .framer-wbbsih-container, .framer-p0WyT.framer-v-r3h5eu .framer-1n7r7mp-container, .framer-p0WyT.framer-v-r3h5eu .framer-ym7wib-container, .framer-p0WyT.framer-v-r3h5eu .framer-1e4gyg3-container, .framer-p0WyT.framer-v-r3h5eu .framer-1068evz-container, .framer-p0WyT.framer-v-r3h5eu .framer-1fne4rm-container { flex: 1 0 0px; width: 1px; }\",\".framer-p0WyT.framer-v-r3h5eu .framer-1ir7r7i, .framer-p0WyT.framer-v-r3h5eu .framer-k2uiyb, .framer-p0WyT.framer-v-r3h5eu .framer-g36ydb, .framer-p0WyT.framer-v-r3h5eu .framer-yhqe1y, .framer-p0WyT.framer-v-r3h5eu .framer-qs7k7h, .framer-p0WyT.framer-v-r3h5eu .framer-1ikjkj9, .framer-p0WyT.framer-v-r3h5eu .framer-1y334om, .framer-p0WyT.framer-v-r3h5eu .framer-wzocs8, .framer-p0WyT.framer-v-r3h5eu .framer-8r4iyl { align-self: unset; height: min-content; width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 586\n * @framerIntrinsicWidth 773\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hskLf2ZRZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"IuB87oueG\":\"title\",\"UONv9KzPh\":\"hover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerIE4mCIbED=withCSS(Component,css,\"framer-p0WyT\");export default FramerIE4mCIbED;FramerIE4mCIbED.displayName=\"Navigation / Industries\";FramerIE4mCIbED.defaultProps={height:586,width:773};addPropertyControls(FramerIE4mCIbED,{variant:{options:[\"eiE8sVZTw\",\"hskLf2ZRZ\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},IuB87oueG:{defaultValue:\"Popular Industries\",displayTextArea:false,title:\"Title\",type:ControlType.String},UONv9KzPh:{title:\"Hover\",type:ControlType.EventHandler}});addFonts(FramerIE4mCIbED,[{explicitInter:true,fonts:[{family:\"PP Neue Montreal Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/VFYJOsKjIQ6qepv7Eu14z79ME.woff2\"}]},...CardResourceCardFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIE4mCIbED\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"773\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hskLf2ZRZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"586\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"IuB87oueG\\\":\\\"title\\\",\\\"UONv9KzPh\\\":\\\"hover\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (114679e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";const MaterialFonts=getFonts(Material);const enabledGestures={FaDJweb3h:{hover:true}};const cycleOrder=[\"FaDJweb3h\",\"cwJpHEsqx\"];const serializationHash=\"framer-mrADc\";const variantClassNames={cwJpHEsqx:\"framer-v-uvudht\",FaDJweb3h:\"framer-v-1ockdhi\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"FaDJweb3h\",Mobile:\"cwJpHEsqx\"};const getProps=({height,id,link,link2,newTab,title,width,...props})=>{return{...props,BCQSeLBGI:link2??props.BCQSeLBGI,bdahDCk7z:link??props.bdahDCk7z,mI914ZxSS:title??props.mI914ZxSS??\"Curator\",variant:humanReadableVariantMap[props.variant]??props.variant??\"FaDJweb3h\",XxGjU9O7l:newTab??props.XxGjU9O7l};};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,mI914ZxSS,bdahDCk7z,BCQSeLBGI,XxGjU9O7l,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FaDJweb3h\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"cwJpHEsqx\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({cwJpHEsqx:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:BCQSeLBGI,motionChild:true,nodeId:\"FaDJweb3h\",openInNewTab:XxGjU9O7l,scopeId:\"vQ79k8B3o\",...addPropertyOverrides({\"FaDJweb3h-hover\":{href:bdahDCk7z}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1ockdhi\",className,classNames)} framer-1tw211c`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"FaDJweb3h\",ref:refBinding,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3,...style},variants:{\"FaDJweb3h-hover\":{backgroundColor:\"var(--token-a89c5b27-f6c1-400c-ab81-19a1903fc649, rgb(27, 28, 28))\"}},...addPropertyOverrides({\"FaDJweb3h-hover\":{\"data-framer-name\":undefined},cwJpHEsqx:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-792d9903-2669-4d32-aca9-4bf0750cf240, rgb(255, 255, 255)))\"},children:\"Curator\"})}),className:\"framer-q1zjzu\",\"data-framer-name\":\"Button\",fonts:[\"CUSTOM;PP Neue Montreal Medium\"],layoutDependency:layoutDependency,layoutId:\"von0CffGy\",style:{\"--extracted-r6o4lv\":\"var(--token-792d9903-2669-4d32-aca9-4bf0750cf240, rgb(255, 255, 255))\"},text:mI914ZxSS,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-qpo2yc\",layoutDependency:layoutDependency,layoutId:\"d4muVrh6K\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1eccxqo-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"QdajaPaHO-container\",nodeId:\"QdajaPaHO\",rendersWithMotion:true,scopeId:\"vQ79k8B3o\",style:{opacity:0,rotate:180},variants:{\"FaDJweb3h-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-792d9903-2669-4d32-aca9-4bf0750cf240, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"East\",iconStyle15:\"Outlined\",iconStyle2:\"Sharp\",iconStyle7:\"TwoTone\",id:\"QdajaPaHO\",layoutId:\"QdajaPaHO\",mirrored:true,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mrADc.framer-1tw211c, .framer-mrADc .framer-1tw211c { display: block; }\",\".framer-mrADc.framer-1ockdhi { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; height: 38px; justify-content: space-between; overflow: visible; padding: 4px 16px 4px 16px; position: relative; text-decoration: none; width: 156px; }\",\".framer-mrADc .framer-q1zjzu { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-mrADc .framer-qpo2yc { flex: none; height: 20px; overflow: hidden; position: relative; width: 20px; }\",\".framer-mrADc .framer-1eccxqo-container { bottom: 0px; flex: none; left: -5px; position: absolute; top: 0px; width: 20px; }\",\".framer-mrADc.framer-v-uvudht.framer-1ockdhi { height: min-content; padding: 12px 16px 12px 0px; }\",\".framer-mrADc.framer-v-1ockdhi.hover .framer-1eccxqo-container { left: 0px; right: 0px; width: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 38\n * @framerIntrinsicWidth 156\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"cwJpHEsqx\":{\"layout\":[\"fixed\",\"auto\"]},\"ursn8NOZJ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"mI914ZxSS\":\"title\",\"bdahDCk7z\":\"link\",\"BCQSeLBGI\":\"link2\",\"XxGjU9O7l\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramervQ79k8B3o=withCSS(Component,css,\"framer-mrADc\");export default FramervQ79k8B3o;FramervQ79k8B3o.displayName=\"SiteButtonArrow\";FramervQ79k8B3o.defaultProps={height:38,width:156};addPropertyControls(FramervQ79k8B3o,{variant:{options:[\"FaDJweb3h\",\"cwJpHEsqx\"],optionTitles:[\"Variant 1\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},mI914ZxSS:{defaultValue:\"Curator\",displayTextArea:false,title:\"Title\",type:ControlType.String},bdahDCk7z:{title:\"Link\",type:ControlType.Link},BCQSeLBGI:{title:\"Link 2\",type:ControlType.Link},XxGjU9O7l:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean}});addFonts(FramervQ79k8B3o,[{explicitInter:true,fonts:[{family:\"PP Neue Montreal Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/X3dpjR58Ye6dvtoHdLcifA4vzo.woff2\"}]},...MaterialFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervQ79k8B3o\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cwJpHEsqx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ursn8NOZJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"mI914ZxSS\\\":\\\"title\\\",\\\"bdahDCk7z\\\":\\\"link\\\",\\\"BCQSeLBGI\\\":\\\"link2\\\",\\\"XxGjU9O7l\\\":\\\"newTab\\\"}\",\"framerIntrinsicWidth\":\"156\",\"framerIntrinsicHeight\":\"38\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vQ79k8B3o.map", "// Generated by Framer (114679e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{withHeaderMenuClick}from\"https://framerusercontent.com/modules/jNBsk8CI17JqVZ05S9Sk/fvfXj3LqqvTdKt3CRplf/Custom_Function_Override.js\";import SiteButtonArrow from\"https://framerusercontent.com/modules/O0GZsI4IC786ZMk1CjX5/Fph3EDrsZIdAlYT8ABak/vQ79k8B3o.js\";const SiteButtonArrowFonts=getFonts(SiteButtonArrow);const MotionDivWithHeaderMenuClickod0k1b=withCodeBoundaryForOverrides(motion.div,{nodeId:\"P5TywzZmw\",override:withHeaderMenuClick,scopeId:\"W4pBh3E74\"});const MotionDivWithHeaderMenuClick1hj33m7=withCodeBoundaryForOverrides(motion.div,{nodeId:\"zud2CUICw\",override:withHeaderMenuClick,scopeId:\"W4pBh3E74\"});const MotionDivWithHeaderMenuClick13k0r44=withCodeBoundaryForOverrides(motion.div,{nodeId:\"iGsZAnYC5\",override:withHeaderMenuClick,scopeId:\"W4pBh3E74\"});const MotionDivWithHeaderMenuClickclb6h2=withCodeBoundaryForOverrides(motion.div,{nodeId:\"dYe6p1SQL\",override:withHeaderMenuClick,scopeId:\"W4pBh3E74\"});const MotionDivWithHeaderMenuClickx7s3zq=withCodeBoundaryForOverrides(motion.div,{nodeId:\"PJTji6LrC\",override:withHeaderMenuClick,scopeId:\"W4pBh3E74\"});const MotionDivWithHeaderMenuClick1m3lv1u=withCodeBoundaryForOverrides(motion.div,{nodeId:\"JX3AS2BUb\",override:withHeaderMenuClick,scopeId:\"W4pBh3E74\"});const MotionDivWithHeaderMenuClick3ovhb3=withCodeBoundaryForOverrides(motion.div,{nodeId:\"x4ez0_VFt\",override:withHeaderMenuClick,scopeId:\"W4pBh3E74\"});const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"LyQuzoD2_\",\"rqwow_J1R\",\"rfDkuZgMD\"];const serializationHash=\"framer-JMvaW\";const variantClassNames={LyQuzoD2_:\"framer-v-15rkgd5\",rfDkuZgMD:\"framer-v-1ni1khx\",rqwow_J1R:\"framer-v-1t9v7jv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-5,y:0};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition3={duration:0,type:\"tween\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"LyQuzoD2_\",\"Variant 2\":\"rqwow_J1R\",\"Variant 3\":\"rfDkuZgMD\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"LyQuzoD2_\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LyQuzoD2_\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"rfDkuZgMD\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"rfDkuZgMD\")return false;return true;};const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,...addPropertyOverrides({rfDkuZgMD:{value:transition3},rqwow_J1R:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-15rkgd5\",className,classNames),\"data-framer-appear-id\":\"15rkgd5\",\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"LyQuzoD2_\",optimized:true,ref:refBinding,style:{backgroundColor:\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\",borderBottomLeftRadius:2,borderBottomRightRadius:2,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\",...style},variants:{rfDkuZgMD:{backgroundColor:\"rgba(0, 0, 0, 0)\"},rqwow_J1R:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({rfDkuZgMD:{__framer__presenceAnimate:undefined,__framer__presenceInitial:undefined,\"data-framer-name\":\"Variant 3\",optimized:undefined},rqwow_J1R:{__framer__presenceAnimate:undefined,__framer__presenceInitial:undefined,\"data-framer-name\":\"Variant 2\",optimized:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClickod0k1b,{className:\"framer-od0k1b\",layoutDependency:layoutDependency,layoutId:\"P5TywzZmw\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"206px\",y:(componentViewport?.y||0)+10+(((componentViewport?.height||200)-30-296)/2+0+0)+0,...addPropertyOverrides({rfDkuZgMD:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-325)/2+0+0)+0},rqwow_J1R:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-296)/2+0+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lsball-container\",layoutDependency:layoutDependency,layoutId:\"VfT4JlXyT-container\",nodeId:\"VfT4JlXyT\",rendersWithMotion:true,scopeId:\"W4pBh3E74\",children:/*#__PURE__*/_jsx(SiteButtonArrow,{BCQSeLBGI:\"resources.imagine.io/blog\",bdahDCk7z:\"resources.imagine.io/blog\",height:\"100%\",id:\"VfT4JlXyT\",layoutId:\"VfT4JlXyT\",mI914ZxSS:\"Blog\",style:{height:\"100%\",width:\"100%\"},variant:\"FaDJweb3h\",width:\"100%\",XxGjU9O7l:false,...addPropertyOverrides({rfDkuZgMD:{BCQSeLBGI:\"https://discord.gg/VCHYeZgSUW?utm_campaign=Main_website_links&utm_source=website&utm_medium=top_navigation&utm_term=discord&utm_content=community\",bdahDCk7z:\"https://discord.gg/VCHYeZgSUW?utm_campaign=Main_website_links&utm_source=website&utm_medium=top_navigation&utm_term=discord&utm_content=community\",mI914ZxSS:\"Join Our Discord\",variant:\"cwJpHEsqx\"},rqwow_J1R:{variant:\"cwJpHEsqx\"}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({rfDkuZgMD:{height:24,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-325)/2+38+5)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fex1p2-container\",layoutDependency:layoutDependency,layoutId:\"H31zdt7gi-container\",nodeId:\"H31zdt7gi\",rendersWithMotion:true,scopeId:\"W4pBh3E74\",style:{opacity:.54},children:/*#__PURE__*/_jsx(SiteButtonArrow,{height:\"100%\",id:\"H31zdt7gi\",layoutId:\"H31zdt7gi\",mI914ZxSS:\"Learn, ask, and share your art\",style:{height:\"100%\",width:\"100%\"},variant:\"cwJpHEsqx\",width:\"100%\",XxGjU9O7l:false})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClick1hj33m7,{className:\"framer-1hj33m7\",layoutDependency:layoutDependency,layoutId:\"zud2CUICw\",children:isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"206px\",y:(componentViewport?.y||0)+10+(((componentViewport?.height||200)-30-296)/2+38+5)+0,...addPropertyOverrides({rqwow_J1R:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-296)/2+38+5)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fiqoza-container\",layoutDependency:layoutDependency,layoutId:\"WvzwDrNfx-container\",nodeId:\"WvzwDrNfx\",rendersWithMotion:true,scopeId:\"W4pBh3E74\",...addPropertyOverrides({rqwow_J1R:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SiteButtonArrow,{BCQSeLBGI:\"resources.imagine.io/success-stories\",bdahDCk7z:\"resources.imagine.io/success-stories\",height:\"100%\",id:\"WvzwDrNfx\",layoutId:\"WvzwDrNfx\",mI914ZxSS:\"Success Stories\",style:{height:\"100%\",width:\"100%\"},variant:\"FaDJweb3h\",width:\"100%\",XxGjU9O7l:false,...addPropertyOverrides({rqwow_J1R:{BCQSeLBGI:\"https://resources.imagine.io\",style:{width:\"100%\"},variant:\"cwJpHEsqx\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClick13k0r44,{className:\"framer-13k0r44\",layoutDependency:layoutDependency,layoutId:\"iGsZAnYC5\",children:isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"206px\",y:(componentViewport?.y||0)+10+(((componentViewport?.height||200)-30-296)/2+76+10)+0,...addPropertyOverrides({rqwow_J1R:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-296)/2+76+10)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1blaqur-container\",layoutDependency:layoutDependency,layoutId:\"qGjCkkwga-container\",nodeId:\"qGjCkkwga\",rendersWithMotion:true,scopeId:\"W4pBh3E74\",...addPropertyOverrides({rqwow_J1R:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SiteButtonArrow,{BCQSeLBGI:\"resources.imagine.io/webinar\",bdahDCk7z:\"resources.imagine.io/webinar\",height:\"100%\",id:\"qGjCkkwga\",layoutId:\"qGjCkkwga\",mI914ZxSS:\"Webinar\",style:{height:\"100%\",width:\"100%\"},variant:\"FaDJweb3h\",width:\"100%\",XxGjU9O7l:false,...addPropertyOverrides({rqwow_J1R:{BCQSeLBGI:\"https://resources.imagine.io/webinar\",style:{width:\"100%\"},variant:\"cwJpHEsqx\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClickclb6h2,{className:\"framer-clb6h2\",layoutDependency:layoutDependency,layoutId:\"dYe6p1SQL\",children:isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"206px\",y:(componentViewport?.y||0)+10+(((componentViewport?.height||200)-30-296)/2+114+15)+0,...addPropertyOverrides({rqwow_J1R:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-296)/2+114+15)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-l7rqop-container\",layoutDependency:layoutDependency,layoutId:\"JcatKhy_2-container\",nodeId:\"JcatKhy_2\",rendersWithMotion:true,scopeId:\"W4pBh3E74\",...addPropertyOverrides({rqwow_J1R:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SiteButtonArrow,{BCQSeLBGI:\"https://resources.imagine.io/events\",bdahDCk7z:\"https://resources.imagine.io/events\",height:\"100%\",id:\"JcatKhy_2\",layoutId:\"JcatKhy_2\",mI914ZxSS:\"Events\",style:{height:\"100%\",width:\"100%\"},variant:\"FaDJweb3h\",width:\"100%\",XxGjU9O7l:false,...addPropertyOverrides({rqwow_J1R:{BCQSeLBGI:\"https://resources.imagine.io\",style:{width:\"100%\"},variant:\"cwJpHEsqx\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClickx7s3zq,{className:\"framer-x7s3zq\",layoutDependency:layoutDependency,layoutId:\"PJTji6LrC\",children:isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"206px\",y:(componentViewport?.y||0)+10+(((componentViewport?.height||200)-30-296)/2+152+20)+0,...addPropertyOverrides({rqwow_J1R:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-296)/2+152+20)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pnmwah-container\",layoutDependency:layoutDependency,layoutId:\"AoY0b18yv-container\",nodeId:\"AoY0b18yv\",rendersWithMotion:true,scopeId:\"W4pBh3E74\",...addPropertyOverrides({rqwow_J1R:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SiteButtonArrow,{BCQSeLBGI:\"https://resources.imagine.io/news-press\",bdahDCk7z:\"https://resources.imagine.io/news-press\",height:\"100%\",id:\"AoY0b18yv\",layoutId:\"AoY0b18yv\",mI914ZxSS:\"News & Press\",style:{height:\"100%\",width:\"100%\"},variant:\"FaDJweb3h\",width:\"100%\",XxGjU9O7l:false,...addPropertyOverrides({rqwow_J1R:{BCQSeLBGI:\"https://resources.imagine.io\",style:{width:\"100%\"},variant:\"cwJpHEsqx\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClick1m3lv1u,{className:\"framer-1m3lv1u\",layoutDependency:layoutDependency,layoutId:\"JX3AS2BUb\",children:isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tyHFpmLfr\"},implicitPathVariables:undefined},{href:{webPageId:\"tyHFpmLfr\"},implicitPathVariables:undefined},{href:{webPageId:\"tyHFpmLfr\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"206px\",y:(componentViewport?.y||0)+10+(((componentViewport?.height||200)-30-296)/2+190+25)+0,...addPropertyOverrides({rqwow_J1R:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-296)/2+190+25)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-191zxn1-container\",layoutDependency:layoutDependency,layoutId:\"UJ3FtBUXN-container\",nodeId:\"UJ3FtBUXN\",rendersWithMotion:true,scopeId:\"W4pBh3E74\",children:/*#__PURE__*/_jsx(SiteButtonArrow,{BCQSeLBGI:resolvedLinks[1],bdahDCk7z:resolvedLinks[0],height:\"100%\",id:\"UJ3FtBUXN\",layoutId:\"UJ3FtBUXN\",mI914ZxSS:\"Catalog\",style:{height:\"100%\",width:\"100%\"},variant:\"FaDJweb3h\",width:\"100%\",XxGjU9O7l:false,...addPropertyOverrides({rqwow_J1R:{BCQSeLBGI:\"https://resources.imagine.io\",bdahDCk7z:resolvedLinks[2],style:{width:\"100%\"},variant:\"cwJpHEsqx\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClick3ovhb3,{className:\"framer-3ovhb3\",layoutDependency:layoutDependency,layoutId:\"x4ez0_VFt\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SsH0zKJh9\"},implicitPathVariables:undefined},{href:{webPageId:\"SsH0zKJh9\"},implicitPathVariables:undefined},{href:{webPageId:\"SsH0zKJh9\"},implicitPathVariables:undefined},{href:{webPageId:\"SsH0zKJh9\"},implicitPathVariables:undefined},{href:{webPageId:\"SsH0zKJh9\"},implicitPathVariables:undefined},{href:{webPageId:\"SsH0zKJh9\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"206px\",y:(componentViewport?.y||0)+10+(((componentViewport?.height||200)-30-296)/2+228+30)+0,...addPropertyOverrides({rfDkuZgMD:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-325)/2+252+35)+0},rqwow_J1R:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-296)/2+228+30)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1v61nm2-container\",layoutDependency:layoutDependency,layoutId:\"N4HaekNsI-container\",nodeId:\"N4HaekNsI\",rendersWithMotion:true,scopeId:\"W4pBh3E74\",children:/*#__PURE__*/_jsx(SiteButtonArrow,{BCQSeLBGI:resolvedLinks1[1],bdahDCk7z:resolvedLinks1[0],height:\"100%\",id:\"N4HaekNsI\",layoutId:\"N4HaekNsI\",mI914ZxSS:\"Changelog\",style:{height:\"100%\",width:\"100%\"},variant:\"FaDJweb3h\",width:\"100%\",XxGjU9O7l:false,...addPropertyOverrides({rfDkuZgMD:{BCQSeLBGI:resolvedLinks1[5],bdahDCk7z:resolvedLinks1[4]},rqwow_J1R:{BCQSeLBGI:resolvedLinks1[3],bdahDCk7z:resolvedLinks1[2],variant:\"cwJpHEsqx\"}},baseVariant,gestureVariant)})})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JMvaW.framer-150qb5q, .framer-JMvaW .framer-150qb5q { display: block; }\",\".framer-JMvaW.framer-15rkgd5 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 20px 20px 20px; position: relative; width: 246px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JMvaW .framer-od0k1b, .framer-JMvaW .framer-1hj33m7, .framer-JMvaW .framer-13k0r44, .framer-JMvaW .framer-clb6h2, .framer-JMvaW .framer-x7s3zq { flex: none; height: 38px; overflow: visible; position: relative; width: 100%; }\",\".framer-JMvaW .framer-1lsball-container, .framer-JMvaW .framer-1fiqoza-container, .framer-JMvaW .framer-1blaqur-container, .framer-JMvaW .framer-l7rqop-container, .framer-JMvaW .framer-1pnmwah-container { bottom: 0px; flex: none; left: calc(50.00000000000002% - 206px / 2); position: absolute; top: 0px; width: 206px; }\",\".framer-JMvaW .framer-fex1p2-container { flex: none; height: 24px; position: relative; width: 100%; }\",\".framer-JMvaW .framer-1m3lv1u, .framer-JMvaW .framer-3ovhb3 { flex: none; height: 38px; overflow: visible; position: relative; width: 206px; }\",\".framer-JMvaW .framer-191zxn1-container, .framer-JMvaW .framer-1v61nm2-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-JMvaW.framer-v-1t9v7jv.framer-15rkgd5, .framer-JMvaW.framer-v-1ni1khx.framer-15rkgd5 { padding: 0px; }\",\".framer-JMvaW.framer-v-1t9v7jv .framer-1lsball-container { left: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-JMvaW.framer-v-1t9v7jv .framer-1fiqoza-container { bottom: unset; height: 35px; left: 50%; width: 100%; }\",\".framer-JMvaW.framer-v-1t9v7jv .framer-1blaqur-container, .framer-JMvaW.framer-v-1t9v7jv .framer-l7rqop-container, .framer-JMvaW.framer-v-1t9v7jv .framer-1pnmwah-container { bottom: unset; height: 38px; left: 50%; width: 100%; }\",\".framer-JMvaW.framer-v-1t9v7jv .framer-1m3lv1u, .framer-JMvaW.framer-v-1t9v7jv .framer-3ovhb3 { width: 100%; }\",\".framer-JMvaW.framer-v-1t9v7jv .framer-191zxn1-container { bottom: unset; height: 38px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 326\n * @framerIntrinsicWidth 246\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rqwow_J1R\":{\"layout\":[\"fixed\",\"auto\"]},\"rfDkuZgMD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerW4pBh3E74=withCSS(Component,css,\"framer-JMvaW\");export default FramerW4pBh3E74;FramerW4pBh3E74.displayName=\"Navigation / Resources\";FramerW4pBh3E74.defaultProps={height:326,width:246};addPropertyControls(FramerW4pBh3E74,{variant:{options:[\"LyQuzoD2_\",\"rqwow_J1R\",\"rfDkuZgMD\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerW4pBh3E74,[{explicitInter:true,fonts:[]},...SiteButtonArrowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW4pBh3E74\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rqwow_J1R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rfDkuZgMD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"326\",\"framerIntrinsicWidth\":\"246\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (114679e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{withHeaderMenuClick}from\"https://framerusercontent.com/modules/jNBsk8CI17JqVZ05S9Sk/fvfXj3LqqvTdKt3CRplf/Custom_Function_Override.js\";import SiteButtonArrow from\"https://framerusercontent.com/modules/O0GZsI4IC786ZMk1CjX5/Fph3EDrsZIdAlYT8ABak/vQ79k8B3o.js\";const SiteButtonArrowFonts=getFonts(SiteButtonArrow);const MotionDivWithHeaderMenuClicki73sxg=withCodeBoundaryForOverrides(motion.div,{nodeId:\"N2DGEoK8y\",override:withHeaderMenuClick,scopeId:\"ybJIMxfIa\"});const MotionDivWithHeaderMenuClickcdknt4=withCodeBoundaryForOverrides(motion.div,{nodeId:\"SBIdQx7cX\",override:withHeaderMenuClick,scopeId:\"ybJIMxfIa\"});const MotionDivWithHeaderMenuClick1x6ms8y=withCodeBoundaryForOverrides(motion.div,{nodeId:\"dRmrr2RSw\",override:withHeaderMenuClick,scopeId:\"ybJIMxfIa\"});const MotionDivWithHeaderMenuClick1y8suen=withCodeBoundaryForOverrides(motion.div,{nodeId:\"LxN9zJ79J\",override:withHeaderMenuClick,scopeId:\"ybJIMxfIa\"});const MotionDivWithHeaderMenuClick1u8448a=withCodeBoundaryForOverrides(motion.div,{nodeId:\"NPKInUKF4\",override:withHeaderMenuClick,scopeId:\"ybJIMxfIa\"});const MotionDivWithHeaderMenuClickysigej=withCodeBoundaryForOverrides(motion.div,{nodeId:\"Ndg6AcyBG\",override:withHeaderMenuClick,scopeId:\"ybJIMxfIa\"});const MotionDivWithHeaderMenuClick6v33dd=withCodeBoundaryForOverrides(motion.div,{nodeId:\"bvQHWH7eF\",override:withHeaderMenuClick,scopeId:\"ybJIMxfIa\"});const MotionDivWithHeaderMenuClickzctr0h=withCodeBoundaryForOverrides(motion.div,{nodeId:\"NTNud70rR\",override:withHeaderMenuClick,scopeId:\"ybJIMxfIa\"});const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"yNrXM54Xc\",\"MFE5oDk8w\"];const serializationHash=\"framer-Cph4D\";const variantClassNames={MFE5oDk8w:\"framer-v-rc35yj\",yNrXM54Xc:\"framer-v-hrx2e1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-5,y:0};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition3={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"yNrXM54Xc\",\"Variant 2\":\"MFE5oDk8w\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"yNrXM54Xc\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"yNrXM54Xc\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"MFE5oDk8w\")return false;return true;};const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,...addPropertyOverrides({MFE5oDk8w:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-hrx2e1\",className,classNames),\"data-framer-appear-id\":\"hrx2e1\",\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"yNrXM54Xc\",optimized:true,ref:refBinding,style:{backgroundColor:\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\",borderBottomLeftRadius:2,borderBottomRightRadius:2,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\",...style},variants:{MFE5oDk8w:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({MFE5oDk8w:{__framer__presenceAnimate:undefined,__framer__presenceInitial:undefined,\"data-framer-name\":\"Variant 2\",optimized:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-p7ck52\",layoutDependency:layoutDependency,layoutId:\"K0EDDzed0\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-56r7u5\",layoutDependency:layoutDependency,layoutId:\"fzuf6RNDh\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"PP Neue Montreal Regular\", \"PP Neue Montreal Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.25px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-792d9903-2669-4d32-aca9-4bf0750cf240, rgb(255, 255, 255)))\"},children:\"Departments\"})}),className:\"framer-1fbbeel\",fonts:[\"CUSTOM;PP Neue Montreal Regular\"],layoutDependency:layoutDependency,layoutId:\"Nm6Y3PMa7\",style:{\"--extracted-r6o4lv\":\"var(--token-792d9903-2669-4d32-aca9-4bf0750cf240, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1angfap\",layoutDependency:layoutDependency,layoutId:\"v3e5KBHkC\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n685tv\",layoutDependency:layoutDependency,layoutId:\"Z763gZImS\",children:[/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClicki73sxg,{className:\"framer-i73sxg\",layoutDependency:layoutDependency,layoutId:\"N2DGEoK8y\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"nv2lf8yfh\"},implicitPathVariables:undefined},{href:{webPageId:\"nv2lf8yfh\"},implicitPathVariables:undefined},{href:{webPageId:\"nv2lf8yfh\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"225px\",y:(componentViewport?.y||0)+(15+((componentViewport?.height||200)-45-301)/2)+0+0+125+0+0+0+0,...addPropertyOverrides({MFE5oDk8w:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-362)/2)+0+0+0+0+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pvfze7-container\",layoutDependency:layoutDependency,layoutId:\"DQsscAVYY-container\",nodeId:\"DQsscAVYY\",rendersWithMotion:true,scopeId:\"ybJIMxfIa\",children:/*#__PURE__*/_jsx(SiteButtonArrow,{bdahDCk7z:resolvedLinks[0],height:\"100%\",id:\"DQsscAVYY\",layoutId:\"DQsscAVYY\",mI914ZxSS:\"Marketing\",style:{height:\"100%\",width:\"100%\"},variant:\"FaDJweb3h\",width:\"100%\",XxGjU9O7l:false,...addPropertyOverrides({MFE5oDk8w:{BCQSeLBGI:resolvedLinks[2],bdahDCk7z:resolvedLinks[1],variant:\"cwJpHEsqx\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClickcdknt4,{className:\"framer-cdknt4\",layoutDependency:layoutDependency,layoutId:\"SBIdQx7cX\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FhJ8L0XA6\"},implicitPathVariables:undefined},{href:{webPageId:\"FhJ8L0XA6\"},implicitPathVariables:undefined},{href:{webPageId:\"FhJ8L0XA6\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"225px\",y:(componentViewport?.y||0)+(15+((componentViewport?.height||200)-45-301)/2)+0+0+125+0+0+46+0,...addPropertyOverrides({MFE5oDk8w:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-362)/2)+0+0+0+0+0+0+0+46+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1e2pntu-container\",layoutDependency:layoutDependency,layoutId:\"lN_k0tkMT-container\",nodeId:\"lN_k0tkMT\",rendersWithMotion:true,scopeId:\"ybJIMxfIa\",children:/*#__PURE__*/_jsx(SiteButtonArrow,{bdahDCk7z:resolvedLinks1[0],height:\"100%\",id:\"lN_k0tkMT\",layoutId:\"lN_k0tkMT\",mI914ZxSS:\"NPD\",style:{height:\"100%\",width:\"100%\"},variant:\"FaDJweb3h\",width:\"100%\",XxGjU9O7l:false,...addPropertyOverrides({MFE5oDk8w:{BCQSeLBGI:resolvedLinks1[2],bdahDCk7z:resolvedLinks1[1],variant:\"cwJpHEsqx\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClick1x6ms8y,{className:\"framer-1x6ms8y\",layoutDependency:layoutDependency,layoutId:\"dRmrr2RSw\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Py2fwfyrn\"},implicitPathVariables:undefined},{href:{webPageId:\"Py2fwfyrn\"},implicitPathVariables:undefined},{href:{webPageId:\"Py2fwfyrn\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"225px\",y:(componentViewport?.y||0)+(15+((componentViewport?.height||200)-45-301)/2)+0+0+125+0+0+92+0,...addPropertyOverrides({MFE5oDk8w:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-362)/2)+0+0+0+0+0+0+0+92+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xyhyib-container\",layoutDependency:layoutDependency,layoutId:\"pZrV8IN4D-container\",nodeId:\"pZrV8IN4D\",rendersWithMotion:true,scopeId:\"ybJIMxfIa\",children:/*#__PURE__*/_jsx(SiteButtonArrow,{bdahDCk7z:resolvedLinks2[0],height:\"100%\",id:\"pZrV8IN4D\",layoutId:\"pZrV8IN4D\",mI914ZxSS:\"Photography\",style:{height:\"100%\",width:\"100%\"},variant:\"FaDJweb3h\",width:\"100%\",XxGjU9O7l:false,...addPropertyOverrides({MFE5oDk8w:{BCQSeLBGI:resolvedLinks2[2],bdahDCk7z:resolvedLinks2[1],variant:\"cwJpHEsqx\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClick1y8suen,{className:\"framer-1y8suen\",layoutDependency:layoutDependency,layoutId:\"LxN9zJ79J\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"JOQKVgwXE\"},implicitPathVariables:undefined},{href:{webPageId:\"JOQKVgwXE\"},implicitPathVariables:undefined},{href:{webPageId:\"JOQKVgwXE\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"225px\",y:(componentViewport?.y||0)+(15+((componentViewport?.height||200)-45-301)/2)+0+0+125+0+0+138+0,...addPropertyOverrides({MFE5oDk8w:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-362)/2)+0+0+0+0+0+0+0+138+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14qdge4-container\",layoutDependency:layoutDependency,layoutId:\"eQWPkctei-container\",nodeId:\"eQWPkctei\",rendersWithMotion:true,scopeId:\"ybJIMxfIa\",children:/*#__PURE__*/_jsx(SiteButtonArrow,{bdahDCk7z:resolvedLinks3[0],height:\"100%\",id:\"eQWPkctei\",layoutId:\"eQWPkctei\",mI914ZxSS:\"Sales\",style:{height:\"100%\",width:\"100%\"},variant:\"FaDJweb3h\",width:\"100%\",XxGjU9O7l:false,...addPropertyOverrides({MFE5oDk8w:{BCQSeLBGI:resolvedLinks3[2],bdahDCk7z:resolvedLinks3[1],variant:\"cwJpHEsqx\"}},baseVariant,gestureVariant)})})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cgam2x\",layoutDependency:layoutDependency,layoutId:\"y6vh6anz0\",children:[/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClick1u8448a,{className:\"framer-1u8448a\",layoutDependency:layoutDependency,layoutId:\"NPKInUKF4\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"BLMDzMdky\"},implicitPathVariables:undefined},{href:{webPageId:\"BLMDzMdky\"},implicitPathVariables:undefined},{href:{webPageId:\"BLMDzMdky\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"225px\",y:(componentViewport?.y||0)+(15+((componentViewport?.height||200)-45-301)/2)+0+0+125+0+0+0+0,...addPropertyOverrides({MFE5oDk8w:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-362)/2)+0+0+0+0+0+186+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7zql5l-container\",layoutDependency:layoutDependency,layoutId:\"gKAfO8aK8-container\",nodeId:\"gKAfO8aK8\",rendersWithMotion:true,scopeId:\"ybJIMxfIa\",children:/*#__PURE__*/_jsx(SiteButtonArrow,{bdahDCk7z:resolvedLinks4[0],height:\"100%\",id:\"gKAfO8aK8\",layoutId:\"gKAfO8aK8\",mI914ZxSS:\"CGI Management\",style:{height:\"100%\",width:\"100%\"},variant:\"FaDJweb3h\",width:\"100%\",XxGjU9O7l:false,...addPropertyOverrides({MFE5oDk8w:{BCQSeLBGI:resolvedLinks4[2],bdahDCk7z:resolvedLinks4[1],variant:\"cwJpHEsqx\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClickysigej,{className:\"framer-ysigej\",layoutDependency:layoutDependency,layoutId:\"Ndg6AcyBG\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"AHe9jTV_Q\"},implicitPathVariables:undefined},{href:{webPageId:\"AHe9jTV_Q\"},implicitPathVariables:undefined},{href:{webPageId:\"AHe9jTV_Q\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"225px\",y:(componentViewport?.y||0)+(15+((componentViewport?.height||200)-45-301)/2)+0+0+125+0+0+46+0,...addPropertyOverrides({MFE5oDk8w:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-362)/2)+0+0+0+0+0+186+0+46+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ku2q8r-container\",layoutDependency:layoutDependency,layoutId:\"dL12Gwysv-container\",nodeId:\"dL12Gwysv\",rendersWithMotion:true,scopeId:\"ybJIMxfIa\",children:/*#__PURE__*/_jsx(SiteButtonArrow,{bdahDCk7z:resolvedLinks5[0],height:\"100%\",id:\"dL12Gwysv\",layoutId:\"dL12Gwysv\",mI914ZxSS:\"Shopify\",style:{height:\"100%\",width:\"100%\"},variant:\"FaDJweb3h\",width:\"100%\",XxGjU9O7l:false,...addPropertyOverrides({MFE5oDk8w:{BCQSeLBGI:resolvedLinks5[2],bdahDCk7z:resolvedLinks5[1],variant:\"cwJpHEsqx\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClick6v33dd,{className:\"framer-6v33dd\",layoutDependency:layoutDependency,layoutId:\"bvQHWH7eF\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jsILw17pi\"},implicitPathVariables:undefined},{href:{webPageId:\"jsILw17pi\"},implicitPathVariables:undefined},{href:{webPageId:\"jsILw17pi\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"225px\",y:(componentViewport?.y||0)+(15+((componentViewport?.height||200)-45-301)/2)+0+0+125+0+0+92+0,...addPropertyOverrides({MFE5oDk8w:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-362)/2)+0+0+0+0+0+186+0+92+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mrov1z-container\",layoutDependency:layoutDependency,layoutId:\"W8NNaXahD-container\",nodeId:\"W8NNaXahD\",rendersWithMotion:true,scopeId:\"ybJIMxfIa\",children:/*#__PURE__*/_jsx(SiteButtonArrow,{bdahDCk7z:resolvedLinks6[0],height:\"100%\",id:\"W8NNaXahD\",layoutId:\"W8NNaXahD\",mI914ZxSS:\"Design\",style:{height:\"100%\",width:\"100%\"},variant:\"FaDJweb3h\",width:\"100%\",XxGjU9O7l:false,...addPropertyOverrides({MFE5oDk8w:{BCQSeLBGI:resolvedLinks6[2],bdahDCk7z:resolvedLinks6[1],variant:\"cwJpHEsqx\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(MotionDivWithHeaderMenuClickzctr0h,{className:\"framer-zctr0h\",layoutDependency:layoutDependency,layoutId:\"NTNud70rR\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"u3C3HXbcw\"},implicitPathVariables:undefined},{href:{webPageId:\"u3C3HXbcw\"},implicitPathVariables:undefined},{href:{webPageId:\"u3C3HXbcw\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"225px\",y:(componentViewport?.y||0)+(15+((componentViewport?.height||200)-45-301)/2)+0+0+125+0+0+138+0,...addPropertyOverrides({MFE5oDk8w:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-362)/2)+0+0+0+0+0+186+0+138+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1w5kzle-container\",layoutDependency:layoutDependency,layoutId:\"p_SVqqtvc-container\",nodeId:\"p_SVqqtvc\",rendersWithMotion:true,scopeId:\"ybJIMxfIa\",children:/*#__PURE__*/_jsx(SiteButtonArrow,{bdahDCk7z:resolvedLinks7[0],height:\"100%\",id:\"p_SVqqtvc\",layoutId:\"p_SVqqtvc\",mI914ZxSS:\"eCommerce\",style:{height:\"100%\",width:\"100%\"},variant:\"FaDJweb3h\",width:\"100%\",XxGjU9O7l:false,...addPropertyOverrides({MFE5oDk8w:{BCQSeLBGI:resolvedLinks7[2],bdahDCk7z:resolvedLinks7[1],variant:\"cwJpHEsqx\"}},baseVariant,gestureVariant)})})})})})]})]})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Cph4D.framer-7pu9sm, .framer-Cph4D .framer-7pu9sm { display: block; }\",\".framer-Cph4D.framer-hrx2e1 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 15px 30px 30px 30px; position: relative; width: 520px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Cph4D .framer-p7ck52 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Cph4D .framer-56r7u5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Cph4D .framer-1fbbeel { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 240px; word-break: break-word; word-wrap: break-word; }\",\".framer-Cph4D .framer-1angfap { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Cph4D .framer-1n685tv, .framer-Cph4D .framer-1cgam2x { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Cph4D .framer-i73sxg, .framer-Cph4D .framer-cdknt4, .framer-Cph4D .framer-1x6ms8y, .framer-Cph4D .framer-1y8suen, .framer-Cph4D .framer-1u8448a, .framer-Cph4D .framer-ysigej, .framer-Cph4D .framer-6v33dd, .framer-Cph4D .framer-zctr0h { flex: none; height: 38px; overflow: visible; position: relative; width: 100%; }\",\".framer-Cph4D .framer-pvfze7-container, .framer-Cph4D .framer-1e2pntu-container, .framer-Cph4D .framer-xyhyib-container, .framer-Cph4D .framer-14qdge4-container, .framer-Cph4D .framer-7zql5l-container, .framer-Cph4D .framer-ku2q8r-container, .framer-Cph4D .framer-mrov1z-container, .framer-Cph4D .framer-1w5kzle-container { bottom: 0px; flex: none; left: calc(50.00000000000002% - 225px / 2); position: absolute; top: 0px; width: 225px; }\",\".framer-Cph4D.framer-v-rc35yj.framer-hrx2e1 { padding: 0px; width: 491px; }\",\".framer-Cph4D.framer-v-rc35yj .framer-p7ck52 { flex-direction: column; gap: 10px; }\",\".framer-Cph4D.framer-v-rc35yj .framer-56r7u5 { flex: none; width: 100%; }\",\".framer-Cph4D.framer-v-rc35yj .framer-1angfap { flex-direction: column; }\",\".framer-Cph4D.framer-v-rc35yj .framer-1n685tv { flex: none; order: 0; width: 100%; }\",\".framer-Cph4D.framer-v-rc35yj .framer-pvfze7-container, .framer-Cph4D.framer-v-rc35yj .framer-1e2pntu-container, .framer-Cph4D.framer-v-rc35yj .framer-xyhyib-container, .framer-Cph4D.framer-v-rc35yj .framer-14qdge4-container, .framer-Cph4D.framer-v-rc35yj .framer-7zql5l-container, .framer-Cph4D.framer-v-rc35yj .framer-ku2q8r-container, .framer-Cph4D.framer-v-rc35yj .framer-mrov1z-container, .framer-Cph4D.framer-v-rc35yj .framer-1w5kzle-container { left: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-Cph4D.framer-v-rc35yj .framer-1cgam2x { flex: none; order: 1; width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 262\n * @framerIntrinsicWidth 520\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"MFE5oDk8w\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerybJIMxfIa=withCSS(Component,css,\"framer-Cph4D\");export default FramerybJIMxfIa;FramerybJIMxfIa.displayName=\"Navigation / Solutions\";FramerybJIMxfIa.defaultProps={height:262,width:520};addPropertyControls(FramerybJIMxfIa,{variant:{options:[\"yNrXM54Xc\",\"MFE5oDk8w\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerybJIMxfIa,[{explicitInter:true,fonts:[{family:\"PP Neue Montreal Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/VFYJOsKjIQ6qepv7Eu14z79ME.woff2\"}]},...SiteButtonArrowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerybJIMxfIa\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"520\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MFE5oDk8w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"262\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (114679e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";const MaterialFonts=getFonts(Material);const cycleOrder=[\"dW6MVoIiX\",\"l5Z_dhYEG\"];const serializationHash=\"framer-Rgpqw\";const variantClassNames={dW6MVoIiX:\"framer-v-m1z1ur\",l5Z_dhYEG:\"framer-v-17ds26i\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};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??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"dW6MVoIiX\",\"Variant 2\":\"l5Z_dhYEG\"};const getProps=({fill,height,iconVisible,id,link,tap,title,width,...props})=>{return{...props,cePvWGYpp:iconVisible??props.cePvWGYpp??true,e2gnAX1bS:title??props.e2gnAX1bS??\"Platform\",eR21mtUqT:link??props.eR21mtUqT,kBY1uSXqQ:fill??props.kBY1uSXqQ??\"rgba(40, 41, 41, 0)\",lyqnjuGWp:tap??props.lyqnjuGWp,variant:humanReadableVariantMap[props.variant]??props.variant??\"dW6MVoIiX\"};};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,e2gnAX1bS,cePvWGYpp,eR21mtUqT,lyqnjuGWp,kBY1uSXqQ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dW6MVoIiX\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap3t2bh3=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(lyqnjuGWp){const res=await lyqnjuGWp(...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:eR21mtUqT,motionChild:true,nodeId:\"dW6MVoIiX\",scopeId:\"l4AtbBukW\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-m1z1ur\",className,classNames)} framer-1y94vid`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"dW6MVoIiX\",onTap:onTap3t2bh3,ref:refBinding,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3,...style},variants:{l5Z_dhYEG:{backgroundColor:kBY1uSXqQ}},...addPropertyOverrides({l5Z_dhYEG:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-792d9903-2669-4d32-aca9-4bf0750cf240, rgb(255, 255, 255)))\"},children:\"Platform\"})}),className:\"framer-11mhced\",\"data-framer-name\":\"Button\",fonts:[\"CUSTOM;PP Neue Montreal Medium\"],layoutDependency:layoutDependency,layoutId:\"geQxQy8Q5\",style:{\"--extracted-r6o4lv\":\"var(--token-792d9903-2669-4d32-aca9-4bf0750cf240, rgb(255, 255, 255))\"},text:e2gnAX1bS,verticalAlignment:\"top\",withExternalLayout:true}),cePvWGYpp&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bdu0w3-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Ix3jR7H19-container\",nodeId:\"Ix3jR7H19\",rendersWithMotion:true,scopeId:\"l4AtbBukW\",style:{rotate:90},variants:{l5Z_dhYEG:{rotate:270}},children:/*#__PURE__*/_jsx(Material,{color:\"rgb(252, 252, 252)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ChevronRight\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"Ix3jR7H19\",layoutId:\"Ix3jR7H19\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Rgpqw.framer-1y94vid, .framer-Rgpqw .framer-1y94vid { display: block; }\",\".framer-Rgpqw.framer-m1z1ur { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 16px; position: relative; text-decoration: none; width: 344px; }\",\".framer-Rgpqw .framer-11mhced { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Rgpqw .framer-1bdu0w3-container { flex: none; height: 24px; position: relative; width: 24px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 56\n * @framerIntrinsicWidth 344\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"l5Z_dhYEG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"e2gnAX1bS\":\"title\",\"cePvWGYpp\":\"iconVisible\",\"eR21mtUqT\":\"link\",\"lyqnjuGWp\":\"tap\",\"kBY1uSXqQ\":\"fill\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerl4AtbBukW=withCSS(Component,css,\"framer-Rgpqw\");export default Framerl4AtbBukW;Framerl4AtbBukW.displayName=\"Button / Nav Dropdown\";Framerl4AtbBukW.defaultProps={height:56,width:344};addPropertyControls(Framerl4AtbBukW,{variant:{options:[\"dW6MVoIiX\",\"l5Z_dhYEG\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},e2gnAX1bS:{defaultValue:\"Platform\",displayTextArea:false,title:\"Title\",type:ControlType.String},cePvWGYpp:{defaultValue:true,title:\"IconVisible\",type:ControlType.Boolean},eR21mtUqT:{title:\"Link\",type:ControlType.Link},lyqnjuGWp:{title:\"Tap\",type:ControlType.EventHandler},kBY1uSXqQ:{defaultValue:\"rgba(40, 41, 41, 0)\",title:\"Fill\",type:ControlType.Color}});addFonts(Framerl4AtbBukW,[{explicitInter:true,fonts:[{family:\"PP Neue Montreal Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/X3dpjR58Ye6dvtoHdLcifA4vzo.woff2\"}]},...MaterialFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerl4AtbBukW\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"56\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"e2gnAX1bS\\\":\\\"title\\\",\\\"cePvWGYpp\\\":\\\"iconVisible\\\",\\\"eR21mtUqT\\\":\\\"link\\\",\\\"lyqnjuGWp\\\":\\\"tap\\\",\\\"kBY1uSXqQ\\\":\\\"fill\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"344\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"l5Z_dhYEG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./l4AtbBukW.map", "// Generated by Framer (114679e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,SmartComponentScopedContainer,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 SiteButtonArrow from\"https://framerusercontent.com/modules/O0GZsI4IC786ZMk1CjX5/Fph3EDrsZIdAlYT8ABak/vQ79k8B3o.js\";const SiteButtonArrowFonts=getFonts(SiteButtonArrow);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"xSxtnfNUb\",\"U9iysv99Q\"];const serializationHash=\"framer-BYSs1\";const variantClassNames={U9iysv99Q:\"framer-v-4fz5j4\",xSxtnfNUb:\"framer-v-zazg1u\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-5,y:0};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition3={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"xSxtnfNUb\",\"Variant 2\":\"U9iysv99Q\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"xSxtnfNUb\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xSxtnfNUb\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,...addPropertyOverrides({U9iysv99Q:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-zazg1u\",className,classNames),\"data-framer-appear-id\":\"zazg1u\",\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"xSxtnfNUb\",optimized:true,ref:refBinding,style:{backgroundColor:\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\",borderBottomLeftRadius:2,borderBottomRightRadius:2,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\",...style},variants:{U9iysv99Q:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({U9iysv99Q:{__framer__presenceAnimate:undefined,__framer__presenceInitial:undefined,\"data-framer-name\":\"Variant 2\",optimized:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PG5MKTx72\"},implicitPathVariables:undefined},{href:{webPageId:\"PG5MKTx72\"},implicitPathVariables:undefined},{href:{webPageId:\"PG5MKTx72\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+10+(((componentViewport?.height||200)-30-81)/2+0+0),...addPropertyOverrides({U9iysv99Q:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-81)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mh6fpc-container\",layoutDependency:layoutDependency,layoutId:\"Zo7pUe0LH-container\",nodeId:\"Zo7pUe0LH\",rendersWithMotion:true,scopeId:\"o_nFYTkx_\",children:/*#__PURE__*/_jsx(SiteButtonArrow,{bdahDCk7z:resolvedLinks[0],height:\"100%\",id:\"Zo7pUe0LH\",layoutId:\"Zo7pUe0LH\",mI914ZxSS:\"About\",style:{height:\"100%\",width:\"100%\"},variant:\"FaDJweb3h\",width:\"100%\",XxGjU9O7l:false,...addPropertyOverrides({U9iysv99Q:{BCQSeLBGI:resolvedLinks[2],bdahDCk7z:resolvedLinks[1],style:{width:\"100%\"},variant:\"cwJpHEsqx\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":JIHzpjLuU\",webPageId:\"tMi3g6ng8\"},implicitPathVariables:undefined},{href:{hash:\":JIHzpjLuU\",webPageId:\"tMi3g6ng8\"},implicitPathVariables:undefined},{href:{hash:\":JIHzpjLuU\",webPageId:\"tMi3g6ng8\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+10+(((componentViewport?.height||200)-30-81)/2+38+5),...addPropertyOverrides({U9iysv99Q:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-81)/2+38+5)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-m64pt6-container\",layoutDependency:layoutDependency,layoutId:\"xeDoVf2Mv-container\",nodeId:\"xeDoVf2Mv\",rendersWithMotion:true,scopeId:\"o_nFYTkx_\",children:/*#__PURE__*/_jsx(SiteButtonArrow,{bdahDCk7z:resolvedLinks1[0],height:\"100%\",id:\"xeDoVf2Mv\",layoutId:\"xeDoVf2Mv\",mI914ZxSS:\"Careers\",style:{height:\"100%\",width:\"100%\"},variant:\"FaDJweb3h\",width:\"100%\",XxGjU9O7l:false,...addPropertyOverrides({U9iysv99Q:{BCQSeLBGI:resolvedLinks1[2],bdahDCk7z:resolvedLinks1[1],style:{width:\"100%\"},variant:\"cwJpHEsqx\"}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BYSs1.framer-bapzjm, .framer-BYSs1 .framer-bapzjm { display: block; }\",\".framer-BYSs1.framer-zazg1u { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 20px 20px 20px; position: relative; width: 267px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BYSs1 .framer-1mh6fpc-container, .framer-BYSs1 .framer-m64pt6-container { flex: none; height: 38px; position: relative; width: 100%; }\",\".framer-BYSs1.framer-v-4fz5j4.framer-zazg1u { padding: 0px; }\",\".framer-BYSs1.framer-v-4fz5j4 .framer-1mh6fpc-container, .framer-BYSs1.framer-v-4fz5j4 .framer-m64pt6-container { height: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 111\n * @framerIntrinsicWidth 267\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"U9iysv99Q\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framero_nFYTkx_=withCSS(Component,css,\"framer-BYSs1\");export default Framero_nFYTkx_;Framero_nFYTkx_.displayName=\"Navigation / Company\";Framero_nFYTkx_.defaultProps={height:111,width:267};addPropertyControls(Framero_nFYTkx_,{variant:{options:[\"xSxtnfNUb\",\"U9iysv99Q\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framero_nFYTkx_,[{explicitInter:true,fonts:[]},...SiteButtonArrowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framero_nFYTkx_\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"U9iysv99Q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"267\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"111\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./o_nFYTkx_.map", "// Generated by Framer (114679e)\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}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import NavigationPlatform from\"https://framerusercontent.com/modules/GKUg2orBx2V4mWdSTDYe/nrbWG4HSN71iB2q7GV7C/BuaVewDhZ.js\";import NavigationIndustries from\"https://framerusercontent.com/modules/QGDWRjaf3whbKJjy05zK/ZlWTE37574GxoOQKfNb5/IE4mCIbED.js\";import ButtonNavDropdown from\"https://framerusercontent.com/modules/82Jf3TToA1gobeJEY9Az/aqt841idV4jH01EfDFg6/l4AtbBukW.js\";import NavigationCompany from\"https://framerusercontent.com/modules/2UuKmv8MccxYFYFatGgh/lBJkYJr2dKaHiuVRZdhN/o_nFYTkx_.js\";import NavigationResources from\"https://framerusercontent.com/modules/eG7L7BbfsWj44h8VTY5u/zouWArICRcoSlmuCf4J2/W4pBh3E74.js\";import NavigationSolutions from\"https://framerusercontent.com/modules/P5JUppb4em1SZBqq3CWS/ZbTAPGpI19V6nYFzV68a/ybJIMxfIa.js\";const ButtonNavDropdownFonts=getFonts(ButtonNavDropdown);const NavigationSolutionsFonts=getFonts(NavigationSolutions);const NavigationIndustriesFonts=getFonts(NavigationIndustries);const NavigationCompanyFonts=getFonts(NavigationCompany);const NavigationResourcesFonts=getFonts(NavigationResources);const NavigationPlatformFonts=getFonts(NavigationPlatform);const cycleOrder=[\"X_u3Ri_Wj\",\"OXpWvI_xV\",\"ENxlBkInY\",\"M1an2NyNM\",\"IBGsSwwgx\",\"UPAob8RuO\"];const serializationHash=\"framer-wwhM5\";const variantClassNames={ENxlBkInY:\"framer-v-vd6ow\",IBGsSwwgx:\"framer-v-brtg5y\",M1an2NyNM:\"framer-v-1n1zjuk\",OXpWvI_xV:\"framer-v-1gm99c9\",UPAob8RuO:\"framer-v-m0ne5t\",X_u3Ri_Wj:\"framer-v-8a4yjb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};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??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={\"Company Open\":\"IBGsSwwgx\",\"Industries Open\":\"M1an2NyNM\",\"Mobile-Scrollable\":\"X_u3Ri_Wj\",\"Platform Open\":\"OXpWvI_xV\",\"Resources Open\":\"UPAob8RuO\",\"Solutions Open\":\"ENxlBkInY\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"X_u3Ri_Wj\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"X_u3Ri_Wj\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const lyqnjuGWp1xcvv5t=activeVariantCallback(async(...args)=>{setVariant(\"OXpWvI_xV\");});const lyqnjuGWp1y0hhjp=activeVariantCallback(async(...args)=>{setVariant(\"X_u3Ri_Wj\");});const lyqnjuGWpx9jqzm=activeVariantCallback(async(...args)=>{setVariant(\"ENxlBkInY\");});const lyqnjuGWpf62209=activeVariantCallback(async(...args)=>{setVariant(\"M1an2NyNM\");});const lyqnjuGWp1rnndzk=activeVariantCallback(async(...args)=>{setVariant(\"IBGsSwwgx\");});const lyqnjuGWpf6zdb0=activeVariantCallback(async(...args)=>{setVariant(\"UPAob8RuO\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"ENxlBkInY\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"M1an2NyNM\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"IBGsSwwgx\")return true;return false;};const router=useRouter();const isDisplayed3=()=>{if(baseVariant===\"UPAob8RuO\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"OXpWvI_xV\")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-8a4yjb\",className,classNames),\"data-framer-name\":\"Mobile-Scrollable\",layoutDependency:layoutDependency,layoutId:\"X_u3Ri_Wj\",ref:refBinding,style:{backgroundColor:\"var(--token-a89c5b27-f6c1-400c-ab81-19a1903fc649, rgb(27, 28, 28))\",...style},...addPropertyOverrides({ENxlBkInY:{\"data-framer-name\":\"Solutions Open\"},IBGsSwwgx:{\"data-framer-name\":\"Company Open\"},M1an2NyNM:{\"data-framer-name\":\"Industries Open\"},OXpWvI_xV:{\"data-framer-name\":\"Platform Open\"},UPAob8RuO:{\"data-framer-name\":\"Resources Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+55+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ldtel5-container\",layoutDependency:layoutDependency,layoutId:\"AweUrwA_p-container\",nodeId:\"AweUrwA_p\",rendersWithMotion:true,scopeId:\"GX5HFbuMH\",children:/*#__PURE__*/_jsx(ButtonNavDropdown,{cePvWGYpp:true,e2gnAX1bS:\"Platform\",height:\"100%\",id:\"AweUrwA_p\",kBY1uSXqQ:\"rgba(40, 41, 41, 0)\",layoutId:\"AweUrwA_p\",lyqnjuGWp:lyqnjuGWp1xcvv5t,style:{width:\"100%\"},variant:\"dW6MVoIiX\",width:\"100%\",...addPropertyOverrides({OXpWvI_xV:{kBY1uSXqQ:\"var(--token-80ef4419-bc1c-4725-9d94-ee7c934df37b, rgb(54, 54, 54))\",lyqnjuGWp:lyqnjuGWp1y0hhjp,variant:\"l5Z_dhYEG\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+55+56,...addPropertyOverrides({OXpWvI_xV:{y:(componentViewport?.y||0)+55+561}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1237iie-container\",layoutDependency:layoutDependency,layoutId:\"a_gdaJ3kx-container\",nodeId:\"a_gdaJ3kx\",rendersWithMotion:true,scopeId:\"GX5HFbuMH\",children:/*#__PURE__*/_jsx(ButtonNavDropdown,{cePvWGYpp:true,e2gnAX1bS:\"Solutions\",height:\"100%\",id:\"a_gdaJ3kx\",kBY1uSXqQ:\"rgba(40, 41, 41, 0)\",layoutId:\"a_gdaJ3kx\",lyqnjuGWp:lyqnjuGWpx9jqzm,style:{width:\"100%\"},variant:\"dW6MVoIiX\",width:\"100%\",...addPropertyOverrides({ENxlBkInY:{kBY1uSXqQ:\"var(--token-80ef4419-bc1c-4725-9d94-ee7c934df37b, rgb(54, 54, 54))\",lyqnjuGWp:lyqnjuGWp1y0hhjp,variant:\"l5Z_dhYEG\"}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-102b9mg\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"U6RpiKtfI\",style:{backgroundColor:\"var(--token-80ef4419-bc1c-4725-9d94-ee7c934df37b, rgb(54, 54, 54))\"},children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:262,...addPropertyOverrides({ENxlBkInY:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+55+112+4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gb9lbk-container\",layoutDependency:layoutDependency,layoutId:\"WgqFjbBUb-container\",nodeId:\"WgqFjbBUb\",rendersWithMotion:true,scopeId:\"GX5HFbuMH\",children:/*#__PURE__*/_jsx(NavigationSolutions,{height:\"100%\",id:\"WgqFjbBUb\",layoutId:\"WgqFjbBUb\",style:{width:\"100%\"},variant:\"MFE5oDk8w\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+55+112,...addPropertyOverrides({ENxlBkInY:{y:(componentViewport?.y||0)+55+394},OXpWvI_xV:{y:(componentViewport?.y||0)+55+617}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wo1ypb-container\",layoutDependency:layoutDependency,layoutId:\"HJ7m4BKvc-container\",nodeId:\"HJ7m4BKvc\",rendersWithMotion:true,scopeId:\"GX5HFbuMH\",children:/*#__PURE__*/_jsx(ButtonNavDropdown,{cePvWGYpp:true,e2gnAX1bS:\"Industries\",height:\"100%\",id:\"HJ7m4BKvc\",kBY1uSXqQ:\"rgba(40, 41, 41, 0)\",layoutId:\"HJ7m4BKvc\",lyqnjuGWp:lyqnjuGWpf62209,style:{width:\"100%\"},variant:\"dW6MVoIiX\",width:\"100%\",...addPropertyOverrides({M1an2NyNM:{kBY1uSXqQ:\"var(--token-80ef4419-bc1c-4725-9d94-ee7c934df37b, rgb(54, 54, 54))\",lyqnjuGWp:lyqnjuGWp1y0hhjp,variant:\"l5Z_dhYEG\"}},baseVariant,gestureVariant)})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-p93opj\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"qEC2zsdd_\",style:{backgroundColor:\"var(--token-80ef4419-bc1c-4725-9d94-ee7c934df37b, rgb(54, 54, 54))\"},children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:586,...addPropertyOverrides({M1an2NyNM:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+55+168+4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2imvab-container\",layoutDependency:layoutDependency,layoutId:\"XYJ7oARB9-container\",nodeId:\"XYJ7oARB9\",rendersWithMotion:true,scopeId:\"GX5HFbuMH\",children:/*#__PURE__*/_jsx(NavigationIndustries,{height:\"100%\",id:\"XYJ7oARB9\",IuB87oueG:\"Popular Industries\",layoutId:\"XYJ7oARB9\",style:{width:\"100%\"},variant:\"hskLf2ZRZ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+55+168,...addPropertyOverrides({ENxlBkInY:{y:(componentViewport?.y||0)+55+450},M1an2NyNM:{y:(componentViewport?.y||0)+55+774},OXpWvI_xV:{y:(componentViewport?.y||0)+55+673}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1s18462-container\",layoutDependency:layoutDependency,layoutId:\"GVmLy0qGv-container\",nodeId:\"GVmLy0qGv\",rendersWithMotion:true,scopeId:\"GX5HFbuMH\",children:/*#__PURE__*/_jsx(ButtonNavDropdown,{cePvWGYpp:true,e2gnAX1bS:\"Company\",height:\"100%\",id:\"GVmLy0qGv\",kBY1uSXqQ:\"rgba(40, 41, 41, 0)\",layoutId:\"GVmLy0qGv\",lyqnjuGWp:lyqnjuGWp1rnndzk,style:{width:\"100%\"},variant:\"dW6MVoIiX\",width:\"100%\",...addPropertyOverrides({IBGsSwwgx:{kBY1uSXqQ:\"var(--token-80ef4419-bc1c-4725-9d94-ee7c934df37b, rgb(54, 54, 54))\",lyqnjuGWp:lyqnjuGWp1y0hhjp,variant:\"l5Z_dhYEG\"}},baseVariant,gestureVariant)})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-bu9060\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"PpQbpe8qt\",style:{backgroundColor:\"var(--token-80ef4419-bc1c-4725-9d94-ee7c934df37b, rgb(54, 54, 54))\"},children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:111,...addPropertyOverrides({IBGsSwwgx:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+55+224+4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1t8wnqb-container\",layoutDependency:layoutDependency,layoutId:\"hwfENeASI-container\",nodeId:\"hwfENeASI\",rendersWithMotion:true,scopeId:\"GX5HFbuMH\",children:/*#__PURE__*/_jsx(NavigationCompany,{height:\"100%\",id:\"hwfENeASI\",layoutId:\"hwfENeASI\",style:{width:\"100%\"},variant:\"U9iysv99Q\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+55+224,...addPropertyOverrides({ENxlBkInY:{y:(componentViewport?.y||0)+55+506},IBGsSwwgx:{y:(componentViewport?.y||0)+55+355},M1an2NyNM:{y:(componentViewport?.y||0)+55+830},OXpWvI_xV:{y:(componentViewport?.y||0)+55+729}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1efjdb-container\",layoutDependency:layoutDependency,layoutId:\"EGz5hy6Si-container\",nodeId:\"EGz5hy6Si\",rendersWithMotion:true,scopeId:\"GX5HFbuMH\",children:/*#__PURE__*/_jsx(ButtonNavDropdown,{cePvWGYpp:true,e2gnAX1bS:\"Resources\",height:\"100%\",id:\"EGz5hy6Si\",kBY1uSXqQ:\"rgba(40, 41, 41, 0)\",layoutId:\"EGz5hy6Si\",lyqnjuGWp:lyqnjuGWpf6zdb0,style:{width:\"100%\"},variant:\"dW6MVoIiX\",width:\"100%\",...addPropertyOverrides({UPAob8RuO:{kBY1uSXqQ:\"var(--token-80ef4419-bc1c-4725-9d94-ee7c934df37b, rgb(54, 54, 54))\",lyqnjuGWp:lyqnjuGWp1y0hhjp,variant:\"l5Z_dhYEG\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CAae2U0Iu\"},implicitPathVariables:undefined},{href:{webPageId:\"CAae2U0Iu\"},implicitPathVariables:undefined},{href:{webPageId:\"CAae2U0Iu\"},implicitPathVariables:undefined},{href:{webPageId:\"CAae2U0Iu\"},implicitPathVariables:undefined},{href:{webPageId:\"CAae2U0Iu\"},implicitPathVariables:undefined},{href:{webPageId:\"CAae2U0Iu\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+55+280,...addPropertyOverrides({ENxlBkInY:{y:(componentViewport?.y||0)+55+562},IBGsSwwgx:{y:(componentViewport?.y||0)+55+411},M1an2NyNM:{y:(componentViewport?.y||0)+55+886},OXpWvI_xV:{y:(componentViewport?.y||0)+55+785},UPAob8RuO:{y:(componentViewport?.y||0)+55+626}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-r591tp-container\",layoutDependency:layoutDependency,layoutId:\"fb4cn2mZB-container\",nodeId:\"fb4cn2mZB\",rendersWithMotion:true,scopeId:\"GX5HFbuMH\",children:/*#__PURE__*/_jsx(ButtonNavDropdown,{cePvWGYpp:false,e2gnAX1bS:\"Pricing\",eR21mtUqT:resolvedLinks[0],height:\"100%\",id:\"fb4cn2mZB\",kBY1uSXqQ:\"rgba(40, 41, 41, 0)\",layoutId:\"fb4cn2mZB\",style:{width:\"100%\"},variant:\"dW6MVoIiX\",width:\"100%\",...addPropertyOverrides({ENxlBkInY:{eR21mtUqT:resolvedLinks[2]},IBGsSwwgx:{eR21mtUqT:resolvedLinks[4]},M1an2NyNM:{eR21mtUqT:resolvedLinks[3]},OXpWvI_xV:{eR21mtUqT:resolvedLinks[1]},UPAob8RuO:{eR21mtUqT:resolvedLinks[5]}},baseVariant,gestureVariant)})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-oo33h0\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"dmTxTFojv\",style:{backgroundColor:\"var(--token-80ef4419-bc1c-4725-9d94-ee7c934df37b, rgb(54, 54, 54))\"},children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:326,...addPropertyOverrides({UPAob8RuO:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+55+280+4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mprz8d-container\",layoutDependency:layoutDependency,layoutId:\"l2o8V7gdk-container\",nodeId:\"l2o8V7gdk\",rendersWithMotion:true,scopeId:\"GX5HFbuMH\",children:/*#__PURE__*/_jsx(NavigationResources,{height:\"100%\",id:\"l2o8V7gdk\",layoutId:\"l2o8V7gdk\",style:{width:\"100%\"},variant:\"rqwow_J1R\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"B6XhQbDND\"},implicitPathVariables:undefined},{href:{webPageId:\"B6XhQbDND\"},implicitPathVariables:undefined},{href:{webPageId:\"B6XhQbDND\"},implicitPathVariables:undefined},{href:{webPageId:\"B6XhQbDND\"},implicitPathVariables:undefined},{href:{webPageId:\"B6XhQbDND\"},implicitPathVariables:undefined},{href:{webPageId:\"B6XhQbDND\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+55+336,...addPropertyOverrides({ENxlBkInY:{y:(componentViewport?.y||0)+55+618},IBGsSwwgx:{y:(componentViewport?.y||0)+55+467},M1an2NyNM:{y:(componentViewport?.y||0)+55+942},OXpWvI_xV:{y:(componentViewport?.y||0)+55+897},UPAob8RuO:{y:(componentViewport?.y||0)+55+682}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ccqrq1-container\",layoutDependency:layoutDependency,layoutId:\"BXFuexrZX-container\",nodeId:\"BXFuexrZX\",rendersWithMotion:true,scopeId:\"GX5HFbuMH\",children:/*#__PURE__*/_jsx(ButtonNavDropdown,{cePvWGYpp:false,e2gnAX1bS:\"Enterprise\",eR21mtUqT:resolvedLinks1[0],height:\"100%\",id:\"BXFuexrZX\",kBY1uSXqQ:\"rgba(40, 41, 41, 0)\",layoutId:\"BXFuexrZX\",style:{width:\"100%\"},variant:\"dW6MVoIiX\",width:\"100%\",...addPropertyOverrides({ENxlBkInY:{eR21mtUqT:resolvedLinks1[2]},IBGsSwwgx:{eR21mtUqT:resolvedLinks1[4]},M1an2NyNM:{eR21mtUqT:resolvedLinks1[3]},OXpWvI_xV:{eR21mtUqT:resolvedLinks1[1]},UPAob8RuO:{eR21mtUqT:resolvedLinks1[5]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"JReDK4EXY\"},implicitPathVariables:undefined},{href:{webPageId:\"JReDK4EXY\"},implicitPathVariables:undefined},{href:{webPageId:\"JReDK4EXY\"},implicitPathVariables:undefined},{href:{webPageId:\"JReDK4EXY\"},implicitPathVariables:undefined},{href:{webPageId:\"JReDK4EXY\"},implicitPathVariables:undefined},{href:{webPageId:\"JReDK4EXY\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+55+392,...addPropertyOverrides({ENxlBkInY:{y:(componentViewport?.y||0)+55+674},IBGsSwwgx:{y:(componentViewport?.y||0)+55+523},M1an2NyNM:{y:(componentViewport?.y||0)+55+998},OXpWvI_xV:{y:(componentViewport?.y||0)+55+841},UPAob8RuO:{y:(componentViewport?.y||0)+55+738}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mychfk-container\",layoutDependency:layoutDependency,layoutId:\"i7bjrjkqW-container\",nodeId:\"i7bjrjkqW\",rendersWithMotion:true,scopeId:\"GX5HFbuMH\",children:/*#__PURE__*/_jsx(ButtonNavDropdown,{cePvWGYpp:false,e2gnAX1bS:\"Partners\",eR21mtUqT:resolvedLinks2[0],height:\"100%\",id:\"i7bjrjkqW\",kBY1uSXqQ:\"rgba(40, 41, 41, 0)\",layoutId:\"i7bjrjkqW\",style:{width:\"100%\"},variant:\"dW6MVoIiX\",width:\"100%\",...addPropertyOverrides({ENxlBkInY:{eR21mtUqT:resolvedLinks2[2]},IBGsSwwgx:{eR21mtUqT:resolvedLinks2[4]},M1an2NyNM:{eR21mtUqT:resolvedLinks2[3]},OXpWvI_xV:{eR21mtUqT:resolvedLinks2[1]},UPAob8RuO:{eR21mtUqT:resolvedLinks2[5]}},baseVariant,gestureVariant)})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-13pul84\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"a5xebhHP1\",style:{backgroundColor:\"var(--token-80ef4419-bc1c-4725-9d94-ee7c934df37b, rgb(54, 54, 54))\"},children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:485,...addPropertyOverrides({OXpWvI_xV:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+55+56+4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nbxx0t-container\",layoutDependency:layoutDependency,layoutId:\"JWyUGkxU4-container\",nodeId:\"JWyUGkxU4\",rendersWithMotion:true,scopeId:\"GX5HFbuMH\",children:/*#__PURE__*/_jsx(NavigationPlatform,{height:\"100%\",id:\"JWyUGkxU4\",JXmWagFDy:\"Features\",layoutId:\"JWyUGkxU4\",style:{width:\"100%\"},variant:\"hdc4aDu8S\",width:\"100%\"})})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wwhM5.framer-1qufe4d, .framer-wwhM5 .framer-1qufe4d { display: block; }\",\".framer-wwhM5.framer-8a4yjb { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: auto; padding: 55px 0px 170px 0px; position: relative; width: 368px; }\",\".framer-wwhM5 .framer-ldtel5-container, .framer-wwhM5 .framer-1237iie-container, .framer-wwhM5 .framer-wo1ypb-container, .framer-wwhM5 .framer-1s18462-container, .framer-wwhM5 .framer-1efjdb-container, .framer-wwhM5 .framer-r591tp-container, .framer-wwhM5 .framer-ccqrq1-container, .framer-wwhM5 .framer-1mychfk-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-wwhM5 .framer-102b9mg, .framer-wwhM5 .framer-p93opj, .framer-wwhM5 .framer-bu9060, .framer-wwhM5 .framer-oo33h0, .framer-wwhM5 .framer-13pul84 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 16px 16px 16px; position: relative; width: 100%; }\",\".framer-wwhM5 .framer-gb9lbk-container, .framer-wwhM5 .framer-2imvab-container, .framer-wwhM5 .framer-1t8wnqb-container, .framer-wwhM5 .framer-1mprz8d-container, .framer-wwhM5 .framer-1nbxx0t-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 11; }\",\".framer-wwhM5.framer-v-1gm99c9 .framer-ldtel5-container, .framer-wwhM5.framer-v-m0ne5t .framer-ldtel5-container { order: 1; }\",\".framer-wwhM5.framer-v-1gm99c9 .framer-1237iie-container, .framer-wwhM5.framer-v-m0ne5t .framer-wo1ypb-container { order: 5; }\",\".framer-wwhM5.framer-v-1gm99c9 .framer-wo1ypb-container, .framer-wwhM5.framer-v-m0ne5t .framer-1s18462-container { order: 7; }\",\".framer-wwhM5.framer-v-1gm99c9 .framer-1s18462-container, .framer-wwhM5.framer-v-m0ne5t .framer-1efjdb-container { order: 9; }\",\".framer-wwhM5.framer-v-1gm99c9 .framer-1efjdb-container, .framer-wwhM5.framer-v-m0ne5t .framer-r591tp-container { order: 11; }\",\".framer-wwhM5.framer-v-1gm99c9 .framer-r591tp-container, .framer-wwhM5.framer-v-m0ne5t .framer-ccqrq1-container { order: 12; }\",\".framer-wwhM5.framer-v-1gm99c9 .framer-ccqrq1-container { order: 15; }\",\".framer-wwhM5.framer-v-1gm99c9 .framer-1mychfk-container, .framer-wwhM5.framer-v-m0ne5t .framer-1mychfk-container { order: 13; }\",\".framer-wwhM5.framer-v-1gm99c9 .framer-13pul84, .framer-wwhM5.framer-v-m0ne5t .framer-1237iie-container { order: 2; }\",\".framer-wwhM5.framer-v-m0ne5t .framer-oo33h0 { order: 10; }\",\".framer-wwhM5.framer-v-m0ne5t .framer-1mprz8d-container { order: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 368\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"OXpWvI_xV\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"ENxlBkInY\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"M1an2NyNM\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"IBGsSwwgx\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"UPAob8RuO\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerGX5HFbuMH=withCSS(Component,css,\"framer-wwhM5\");export default FramerGX5HFbuMH;FramerGX5HFbuMH.displayName=\"Navigation / MobileDropDowns\";FramerGX5HFbuMH.defaultProps={height:800,width:368};addPropertyControls(FramerGX5HFbuMH,{variant:{options:[\"X_u3Ri_Wj\",\"OXpWvI_xV\",\"ENxlBkInY\",\"M1an2NyNM\",\"IBGsSwwgx\",\"UPAob8RuO\"],optionTitles:[\"Mobile-Scrollable\",\"Platform Open\",\"Solutions Open\",\"Industries Open\",\"Company Open\",\"Resources Open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerGX5HFbuMH,[{explicitInter:true,fonts:[]},...ButtonNavDropdownFonts,...NavigationSolutionsFonts,...NavigationIndustriesFonts,...NavigationCompanyFonts,...NavigationResourcesFonts,...NavigationPlatformFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGX5HFbuMH\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"OXpWvI_xV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"ENxlBkInY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"M1an2NyNM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"IBGsSwwgx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"UPAob8RuO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]}}}\",\"framerIntrinsicHeight\":\"800\",\"framerIntrinsicWidth\":\"368\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (114679e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"QmwAjShC_\",\"Vivs1tTvM\",\"vrQGUwaGM\",\"ou0r8DHge\"];const serializationHash=\"framer-amnJa\";const variantClassNames={ou0r8DHge:\"framer-v-qbmjg2\",QmwAjShC_:\"framer-v-1g9jqux\",Vivs1tTvM:\"framer-v-14mb1ll\",vrQGUwaGM:\"framer-v-1c59v22\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Dark / Small\":\"ou0r8DHge\",\"Light / Small\":\"vrQGUwaGM\",Dark:\"QmwAjShC_\",Light:\"Vivs1tTvM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"QmwAjShC_\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QmwAjShC_\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1g9jqux\",className,classNames),\"data-framer-name\":\"Dark\",layoutDependency:layoutDependency,layoutId:\"QmwAjShC_\",ref:refBinding,style:{...style},...addPropertyOverrides({ou0r8DHge:{\"data-framer-name\":\"Dark / Small\"},Vivs1tTvM:{\"data-framer-name\":\"Light\"},vrQGUwaGM:{\"data-framer-name\":\"Light / Small\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-vlx0at\",\"data-framer-name\":\"Mark_2\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"Mi_xOs1US\",svg:'<svg width=\"24\" height=\"22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m11.92 14.472 5.776 6.944h6.145l-11.92-6.944Z\" fill=\"#919191\"/><path d=\"m11.92 14.472-.022.013L0 21.415h6.146l5.775-6.943Z\" fill=\"#727272\"/><path d=\"m11.92 14.472 2.506 6.944h3.27l-5.775-6.944Z\" fill=\"#828282\"/><path d=\"M11.92 21.416h2.506l-2.505-6.944v6.944Z\" fill=\"#828282\"/><path d=\"M9.416 21.416h2.505v-6.944l-2.505 6.944Zm2.505-6.944-5.775 6.944h3.27l2.505-6.944Z\" fill=\"#828282\"/><path d=\"m11.92 14.472.017.01 11.905 6.934-3.073-5.37-8.848-1.574Z\" fill=\"#D7D7D7\"/><path d=\"m11.92 14.472 8.849 1.574-1.635-2.858-7.213 1.284Z\" fill=\"#E6E6E6\"/><path d=\"m11.92 14.472 7.214-1.284L17.88 11l-5.96 3.472Z\" fill=\"#E6E6E6\"/><path d=\"M17.881 11 16.63 8.81l-4.708 5.662L17.88 11Zm-5.961 3.472 4.71-5.662-1.635-2.858-3.073 8.519Z\" fill=\"#E6E6E6\"/><path d=\"m11.92 14.472 3.074-8.519L11.92.583v13.889Z\" fill=\"#F6F6F6\"/><path d=\"M0 21.416Z\" fill=\"#fff\"/><path d=\"M11.921 14.472V.584l-3.073 5.37 3.073 8.518Z\" fill=\"#242424\"/><path d=\"m11.921 14.472-8.848 1.574L0 21.416l11.921-6.944Z\" fill=\"#434343\"/><path d=\"M11.92 14.472 8.849 5.953 7.213 8.811l4.708 5.66Z\" fill=\"#333\"/><path d=\"M7.213 8.81 5.96 11l5.96 3.472L7.214 8.81Z\" fill=\"#333\"/><path d=\"M11.921 14.472 5.961 11l-1.253 2.188 7.213 1.284Z\" fill=\"#333\"/><path d=\"m11.921 14.472-7.213-1.284-1.635 2.858 8.848-1.574Z\" fill=\"#333\"/><g style=\"mix-blend-mode:color\"><mask id=\"a\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"24\" height=\"22\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m11.92 14.471-.022.014L0 21.415h23.84l-11.469-6.68 11.47 6.68-3.073-5.37-1.635-2.857-1.253-2.189-1.25-2.189-1.635-2.857L11.92.583l-3.073 5.37 3.073 8.518-3.073-8.518L7.213 8.81 5.96 11l-1.252 2.188-1.635 2.857L0 21.415l11.92-6.944ZM0 21.416Z\" fill=\"#fff\" style=\"mix-blend-mode:difference\"/></mask><g mask=\"url(#a)\"><path fill=\"#EC4E0B\" d=\"M0 .583h23.667v20.833H0z\"/></g></g></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qmn0eh\",\"data-framer-name\":\"Medium\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"pRGPJ0h7F\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 97 21\"><path d=\"M 0.515 0.296 L 0.515 2.762 L 2.99 2.762 L 2.99 0.296 Z M 0.672 4.879 L 0.672 16.744 L 2.857 16.744 L 2.857 4.879 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 0.515 0.296 L 0.515 2.762 L 2.99 2.762 L 2.99 0.296 Z M 0.672 4.879 L 0.672 16.744 L 2.857 16.744 L 2.857 4.879 Z\" fill=\"rgba(0,0,0,0.9)\"></path><path d=\"M 5.287 16.744 L 7.473 16.744 L 7.473 9.462 C 7.473 7.671 8.498 6.485 10.127 6.485 C 11.799 6.485 12.11 7.555 12.11 9.137 L 12.11 16.744 L 14.297 16.744 L 14.297 9.462 C 14.297 7.671 15.321 6.485 16.95 6.485 C 18.623 6.485 18.934 7.555 18.934 9.137 L 18.934 16.744 L 21.119 16.744 L 21.119 8.509 C 21.119 5.973 19.96 4.531 17.664 4.531 C 15.902 4.531 14.765 5.461 13.939 6.601 L 13.895 6.601 C 13.426 5.275 12.468 4.531 10.885 4.531 C 9.168 4.531 8.12 5.461 7.518 6.368 L 7.473 6.368 L 7.473 4.879 L 5.288 4.879 L 5.288 16.744 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 5.287 16.744 L 7.473 16.744 L 7.473 9.462 C 7.473 7.671 8.498 6.485 10.127 6.485 C 11.799 6.485 12.11 7.555 12.11 9.137 L 12.11 16.744 L 14.297 16.744 L 14.297 9.462 C 14.297 7.671 15.321 6.485 16.95 6.485 C 18.623 6.485 18.934 7.555 18.934 9.137 L 18.934 16.744 L 21.119 16.744 L 21.119 8.509 C 21.119 5.973 19.96 4.531 17.664 4.531 C 15.902 4.531 14.765 5.461 13.939 6.601 L 13.895 6.601 C 13.426 5.275 12.468 4.531 10.885 4.531 C 9.168 4.531 8.12 5.461 7.518 6.368 L 7.473 6.368 L 7.473 4.879 L 5.288 4.879 L 5.288 16.744 Z\" fill=\"rgba(0,0,0,0.9)\"></path><path d=\"M 26.55 17.071 C 28.402 17.071 29.694 16.302 30.453 15.069 L 30.498 15.069 C 30.608 16.418 31.211 16.861 32.28 16.861 C 32.638 16.861 33.018 16.815 33.396 16.721 L 33.396 15.325 C 33.263 15.349 33.196 15.349 33.129 15.349 C 32.705 15.349 32.593 14.906 32.593 14.045 L 32.593 8.601 C 32.593 5.53 30.72 4.508 28.379 4.508 C 24.9 4.508 23.473 6.299 23.362 8.579 L 25.592 8.579 C 25.703 6.997 26.305 6.346 28.29 6.346 C 29.963 6.346 30.453 7.066 30.453 7.927 C 30.453 9.091 29.361 9.323 27.576 9.672 C 24.745 10.253 22.827 11.021 22.827 13.673 C 22.827 15.697 24.277 17.071 26.55 17.071 Z M 27.041 15.232 C 25.681 15.232 25.123 14.627 25.123 13.51 C 25.123 12.278 25.947 11.719 27.955 11.277 C 29.115 11.021 30.095 10.766 30.453 10.416 L 30.453 12.115 C 30.453 14.185 29.003 15.232 27.041 15.232 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 26.55 17.071 C 28.402 17.071 29.694 16.302 30.453 15.069 L 30.498 15.069 C 30.608 16.418 31.211 16.861 32.28 16.861 C 32.638 16.861 33.018 16.815 33.396 16.721 L 33.396 15.325 C 33.263 15.349 33.196 15.349 33.129 15.349 C 32.705 15.349 32.593 14.906 32.593 14.045 L 32.593 8.601 C 32.593 5.53 30.72 4.508 28.379 4.508 C 24.9 4.508 23.473 6.299 23.362 8.579 L 25.592 8.579 C 25.703 6.997 26.305 6.346 28.29 6.346 C 29.963 6.346 30.453 7.066 30.453 7.927 C 30.453 9.091 29.361 9.323 27.576 9.672 C 24.745 10.253 22.827 11.021 22.827 13.673 C 22.827 15.697 24.277 17.071 26.55 17.071 Z M 27.041 15.232 C 25.681 15.232 25.123 14.627 25.123 13.51 C 25.123 12.278 25.947 11.719 27.955 11.277 C 29.115 11.021 30.095 10.766 30.453 10.416 L 30.453 12.115 C 30.453 14.185 29.003 15.232 27.041 15.232 Z\" fill=\"rgba(0,0,0,0.9)\"></path><path d=\"M 43.084 15.954 C 43.084 18.187 42.013 19.141 39.94 19.141 C 38.088 19.141 37.309 18.303 37.086 17.234 L 34.833 17.234 C 35.056 19.373 36.684 21.001 39.94 21.001 C 43.195 21.001 45.269 19.397 45.269 15.813 L 45.269 4.881 L 43.084 4.881 L 43.084 6.277 L 43.039 6.277 C 42.414 5.438 41.366 4.531 39.538 4.531 C 36.706 4.531 34.521 6.532 34.521 10.347 C 34.521 14.139 36.706 16.14 39.538 16.14 C 41.367 16.14 42.414 15.302 43.039 14.349 L 43.084 14.349 Z M 39.94 6.438 C 41.902 6.438 43.061 7.742 43.061 10.347 C 43.061 12.929 41.902 14.255 39.94 14.255 C 37.798 14.255 36.796 12.58 36.796 10.347 C 36.796 8.113 37.798 6.438 39.94 6.438 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 43.084 15.954 C 43.084 18.187 42.013 19.141 39.94 19.141 C 38.088 19.141 37.309 18.303 37.086 17.234 L 34.833 17.234 C 35.056 19.373 36.684 21.001 39.94 21.001 C 43.195 21.001 45.269 19.397 45.269 15.813 L 45.269 4.881 L 43.084 4.881 L 43.084 6.277 L 43.039 6.277 C 42.414 5.438 41.366 4.531 39.538 4.531 C 36.706 4.531 34.521 6.532 34.521 10.347 C 34.521 14.139 36.706 16.14 39.538 16.14 C 41.367 16.14 42.414 15.302 43.039 14.349 L 43.084 14.349 Z M 39.94 6.438 C 41.902 6.438 43.061 7.742 43.061 10.347 C 43.061 12.929 41.902 14.255 39.94 14.255 C 37.798 14.255 36.796 12.58 36.796 10.347 C 36.796 8.113 37.798 6.438 39.94 6.438 Z\" fill=\"rgba(0,0,0,0.9)\"></path><path d=\"M 47.572 0.296 L 47.572 2.762 L 50.047 2.762 L 50.047 0.296 Z M 47.729 4.879 L 47.729 16.744 L 49.914 16.744 L 49.914 4.879 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 47.572 0.296 L 47.572 2.762 L 50.047 2.762 L 50.047 0.296 Z M 47.729 4.879 L 47.729 16.744 L 49.914 16.744 L 49.914 4.879 Z\" fill=\"rgba(0,0,0,0.9)\"></path><path d=\"M 52.344 16.744 L 54.53 16.744 L 54.53 9.462 C 54.53 7.671 55.734 6.485 57.607 6.485 C 59.234 6.485 59.904 7.555 59.904 9.137 L 59.904 16.744 L 62.11 16.744 L 62.11 8.509 C 62.11 5.787 60.416 4.531 58.32 4.531 C 56.358 4.531 55.177 5.461 54.575 6.368 L 54.53 6.368 L 54.53 4.879 L 52.345 4.879 L 52.345 16.744 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 52.344 16.744 L 54.53 16.744 L 54.53 9.462 C 54.53 7.671 55.734 6.485 57.607 6.485 C 59.234 6.485 59.904 7.555 59.904 9.137 L 59.904 16.744 L 62.11 16.744 L 62.11 8.509 C 62.11 5.787 60.416 4.531 58.32 4.531 C 56.358 4.531 55.177 5.461 54.575 6.368 L 54.53 6.368 L 54.53 4.879 L 52.345 4.879 L 52.345 16.744 Z\" fill=\"rgba(0,0,0,0.9)\"></path><path d=\"M 69.45 17.094 C 72.438 17.094 74.11 15.372 74.69 13.092 L 72.483 13.092 C 72.26 13.882 71.501 15.232 69.494 15.232 C 67.243 15.232 66.127 13.417 66.082 11.417 L 74.825 11.417 C 74.846 11.231 74.846 10.882 74.846 10.556 C 74.846 6.881 72.906 4.508 69.451 4.508 C 65.971 4.508 63.831 7.066 63.831 10.789 C 63.831 14.418 65.838 17.094 69.45 17.094 Z M 69.383 6.368 C 71.323 6.368 72.55 7.764 72.55 9.625 L 66.081 9.625 C 66.215 7.671 67.553 6.368 69.382 6.368 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 69.45 17.094 C 72.438 17.094 74.11 15.372 74.69 13.092 L 72.483 13.092 C 72.26 13.882 71.501 15.232 69.494 15.232 C 67.243 15.232 66.127 13.417 66.082 11.417 L 74.825 11.417 C 74.846 11.231 74.846 10.882 74.846 10.556 C 74.846 6.881 72.906 4.508 69.451 4.508 C 65.971 4.508 63.831 7.066 63.831 10.789 C 63.831 14.418 65.838 17.094 69.45 17.094 Z M 69.383 6.368 C 71.323 6.368 72.55 7.764 72.55 9.625 L 66.081 9.625 C 66.215 7.671 67.553 6.368 69.382 6.368 Z\" fill=\"rgba(0,0,0,0.9)\"></path><path d=\"M 75.662 14.208 L 75.662 16.744 L 78.093 16.744 L 78.093 14.208 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 75.662 14.208 L 75.662 16.744 L 78.093 16.744 L 78.093 14.208 Z\" fill=\"rgba(0,0,0,0.9)\"></path><path d=\"M 80.933 0.296 L 80.933 2.762 L 83.407 2.762 L 83.407 0.296 Z M 81.088 4.879 L 81.088 16.744 L 83.275 16.744 L 83.275 4.879 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 80.933 0.296 L 80.933 2.762 L 83.407 2.762 L 83.407 0.296 Z M 81.088 4.879 L 81.088 16.744 L 83.275 16.744 L 83.275 4.879 Z\" fill=\"rgba(0,0,0,0.9)\"></path><path d=\"M 90.77 17.094 C 94.316 17.094 96.457 14.511 96.457 10.789 C 96.457 7.089 94.316 4.508 90.77 4.508 C 87.225 4.508 85.084 7.114 85.084 10.813 C 85.084 14.534 87.225 17.094 90.77 17.094 Z M 90.77 15.209 C 88.429 15.209 87.358 13.278 87.358 10.811 C 87.358 8.322 88.429 6.415 90.77 6.415 C 93.088 6.415 94.182 8.322 94.182 10.813 C 94.182 13.278 93.088 15.209 90.77 15.209 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 90.77 17.094 C 94.316 17.094 96.457 14.511 96.457 10.789 C 96.457 7.089 94.316 4.508 90.77 4.508 C 87.225 4.508 85.084 7.114 85.084 10.813 C 85.084 14.534 87.225 17.094 90.77 17.094 Z M 90.77 15.209 C 88.429 15.209 87.358 13.278 87.358 10.811 C 87.358 8.322 88.429 6.415 90.77 6.415 C 93.088 6.415 94.182 8.322 94.182 10.813 C 94.182 13.278 93.088 15.209 90.77 15.209 Z\" fill=\"rgba(0,0,0,0.9)\"></path></svg>',svgContentId:9811853643,variants:{ou0r8DHge:{backgroundColor:\"rgba(255, 255, 255, 0)\"},Vivs1tTvM:{backgroundColor:\"rgba(87, 27, 27, 0)\"},vrQGUwaGM:{backgroundColor:\"rgba(87, 27, 27, 0)\"}},withExternalLayout:true,...addPropertyOverrides({ou0r8DHge:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 74.391 16.154\"><path d=\"M 0.395 0.228 L 0.395 2.125 L 2.293 2.125 L 2.293 0.228 Z M 0.515 3.753 L 0.515 12.88 L 2.191 12.88 L 2.191 3.753 Z\" fill=\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)) /* {&quot;name&quot;:&quot;Dark / 800&quot;} */\"></path><path d=\"M 4.054 12.88 L 5.731 12.88 L 5.731 7.279 C 5.731 5.901 6.518 4.989 7.766 4.989 C 9.049 4.989 9.288 5.812 9.288 7.029 L 9.288 12.88 L 10.964 12.88 L 10.964 7.279 C 10.964 5.901 11.75 4.989 12.999 4.989 C 14.282 4.989 14.521 5.812 14.521 7.029 L 14.521 12.88 L 16.197 12.88 L 16.197 6.545 C 16.197 4.594 15.308 3.485 13.547 3.485 C 12.195 3.485 11.323 4.201 10.69 5.078 L 10.657 5.078 C 10.297 4.057 9.562 3.485 8.348 3.485 C 7.031 3.485 6.227 4.201 5.765 4.898 L 5.731 4.898 L 5.731 3.753 L 4.055 3.753 L 4.055 12.88 Z\" fill=\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)) /* {&quot;name&quot;:&quot;Dark / 800&quot;} */\"></path><path d=\"M 20.362 13.131 C 21.782 13.131 22.773 12.54 23.355 11.592 L 23.389 11.592 C 23.474 12.629 23.936 12.97 24.756 12.97 C 25.031 12.97 25.322 12.934 25.612 12.862 L 25.612 11.789 C 25.51 11.807 25.458 11.807 25.407 11.807 C 25.082 11.807 24.996 11.466 24.996 10.804 L 24.996 6.616 C 24.996 4.254 23.56 3.467 21.764 3.467 C 19.096 3.467 18.002 4.845 17.917 6.599 L 19.627 6.599 C 19.712 5.382 20.174 4.881 21.696 4.881 C 22.979 4.881 23.355 5.435 23.355 6.098 C 23.355 6.993 22.517 7.171 21.148 7.44 C 18.977 7.887 17.506 8.478 17.506 10.518 C 17.506 12.075 18.618 13.131 20.362 13.131 Z M 20.738 11.717 C 19.695 11.717 19.267 11.252 19.267 10.393 C 19.267 9.444 19.9 9.015 21.439 8.675 C 22.328 8.478 23.081 8.281 23.355 8.012 L 23.355 9.319 C 23.355 10.911 22.243 11.717 20.738 11.717 Z\" fill=\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)) /* {&quot;name&quot;:&quot;Dark / 800&quot;} */\"></path><path d=\"M 33.042 12.272 C 33.042 13.99 32.221 14.724 30.63 14.724 C 29.211 14.724 28.613 14.08 28.442 13.257 L 26.714 13.257 C 26.885 14.902 28.134 16.155 30.63 16.155 C 33.127 16.155 34.717 14.92 34.717 12.164 L 34.717 3.754 L 33.042 3.754 L 33.042 4.828 L 33.007 4.828 C 32.528 4.183 31.724 3.485 30.323 3.485 C 28.15 3.485 26.475 5.025 26.475 7.959 C 26.475 10.876 28.15 12.416 30.323 12.416 C 31.725 12.416 32.528 11.77 33.007 11.038 L 33.042 11.038 Z M 30.63 4.953 C 32.135 4.953 33.024 5.955 33.024 7.959 C 33.024 9.945 32.135 10.966 30.63 10.966 C 28.988 10.966 28.219 9.677 28.219 7.959 C 28.219 6.241 28.988 4.953 30.63 4.953 Z\" fill=\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)) /* {&quot;name&quot;:&quot;Dark / 800&quot;} */\"></path><path d=\"M 36.484 0.228 L 36.484 2.125 L 38.382 2.125 L 38.382 0.228 Z M 36.604 3.753 L 36.604 12.88 L 38.28 12.88 L 38.28 3.753 Z\" fill=\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)) /* {&quot;name&quot;:&quot;Dark / 800&quot;} */\"></path><path d=\"M 40.143 12.88 L 41.82 12.88 L 41.82 7.279 C 41.82 5.901 42.743 4.989 44.18 4.989 C 45.428 4.989 45.941 5.812 45.941 7.029 L 45.941 12.88 L 47.633 12.88 L 47.633 6.545 C 47.633 4.452 46.334 3.485 44.727 3.485 C 43.222 3.485 42.316 4.201 41.854 4.898 L 41.82 4.898 L 41.82 3.753 L 40.144 3.753 L 40.144 12.88 Z\" fill=\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)) /* {&quot;name&quot;:&quot;Dark / 800&quot;} */\"></path><path d=\"M 53.262 13.149 C 55.554 13.149 56.837 11.825 57.281 10.07 L 55.589 10.07 C 55.418 10.679 54.835 11.717 53.296 11.717 C 51.57 11.717 50.714 10.32 50.68 8.782 L 57.384 8.782 C 57.401 8.639 57.401 8.371 57.401 8.12 C 57.401 5.293 55.913 3.467 53.263 3.467 C 50.594 3.467 48.953 5.435 48.953 8.299 C 48.953 11.091 50.492 13.149 53.262 13.149 Z M 53.211 4.898 C 54.699 4.898 55.64 5.972 55.64 7.404 L 50.679 7.404 C 50.781 5.901 51.808 4.898 53.21 4.898 Z\" fill=\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)) /* {&quot;name&quot;:&quot;Dark / 800&quot;} */\"></path><path d=\"M 58.027 10.93 L 58.027 12.88 L 59.891 12.88 L 59.891 10.93 Z\" fill=\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)) /* {&quot;name&quot;:&quot;Dark / 800&quot;} */\"></path><path d=\"M 62.069 0.228 L 62.069 2.125 L 63.966 2.125 L 63.966 0.228 Z M 62.188 3.753 L 62.188 12.88 L 63.865 12.88 L 63.865 3.753 Z\" fill=\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)) /* {&quot;name&quot;:&quot;Dark / 800&quot;} */\"></path><path d=\"M 69.613 13.149 C 72.332 13.149 73.974 11.162 73.974 8.299 C 73.974 5.453 72.332 3.467 69.613 3.467 C 66.894 3.467 65.252 5.472 65.252 8.317 C 65.252 11.18 66.894 13.149 69.613 13.149 Z M 69.613 11.699 C 67.818 11.699 66.997 10.214 66.997 8.316 C 66.997 6.402 67.818 4.935 69.613 4.935 C 71.391 4.935 72.23 6.402 72.23 8.317 C 72.23 10.214 71.391 11.699 69.613 11.699 Z\" fill=\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)) /* {&quot;name&quot;:&quot;Dark / 800&quot;} */\"></path></svg>',svgContentId:8680862679},Vivs1tTvM:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 97 21\"><path d=\"M 0.515 0.296 L 0.515 2.762 L 2.99 2.762 L 2.99 0.296 Z M 0.672 4.879 L 0.672 16.744 L 2.857 16.744 L 2.857 4.879 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 0.515 0.296 L 0.515 2.762 L 2.99 2.762 L 2.99 0.296 Z M 0.672 4.879 L 0.672 16.744 L 2.857 16.744 L 2.857 4.879 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 5.287 16.744 L 7.473 16.744 L 7.473 9.462 C 7.473 7.671 8.498 6.485 10.127 6.485 C 11.799 6.485 12.11 7.555 12.11 9.137 L 12.11 16.744 L 14.297 16.744 L 14.297 9.462 C 14.297 7.671 15.321 6.485 16.95 6.485 C 18.623 6.485 18.934 7.555 18.934 9.137 L 18.934 16.744 L 21.119 16.744 L 21.119 8.509 C 21.119 5.973 19.96 4.531 17.664 4.531 C 15.902 4.531 14.765 5.461 13.939 6.601 L 13.895 6.601 C 13.426 5.275 12.468 4.531 10.885 4.531 C 9.168 4.531 8.12 5.461 7.518 6.368 L 7.473 6.368 L 7.473 4.879 L 5.288 4.879 L 5.288 16.744 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 5.287 16.744 L 7.473 16.744 L 7.473 9.462 C 7.473 7.671 8.498 6.485 10.127 6.485 C 11.799 6.485 12.11 7.555 12.11 9.137 L 12.11 16.744 L 14.297 16.744 L 14.297 9.462 C 14.297 7.671 15.321 6.485 16.95 6.485 C 18.623 6.485 18.934 7.555 18.934 9.137 L 18.934 16.744 L 21.119 16.744 L 21.119 8.509 C 21.119 5.973 19.96 4.531 17.664 4.531 C 15.902 4.531 14.765 5.461 13.939 6.601 L 13.895 6.601 C 13.426 5.275 12.468 4.531 10.885 4.531 C 9.168 4.531 8.12 5.461 7.518 6.368 L 7.473 6.368 L 7.473 4.879 L 5.288 4.879 L 5.288 16.744 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 26.55 17.071 C 28.402 17.071 29.694 16.302 30.453 15.069 L 30.498 15.069 C 30.608 16.418 31.211 16.861 32.28 16.861 C 32.638 16.861 33.018 16.815 33.396 16.721 L 33.396 15.325 C 33.263 15.349 33.196 15.349 33.129 15.349 C 32.705 15.349 32.593 14.906 32.593 14.045 L 32.593 8.601 C 32.593 5.53 30.72 4.508 28.379 4.508 C 24.9 4.508 23.473 6.299 23.362 8.579 L 25.592 8.579 C 25.703 6.997 26.305 6.346 28.29 6.346 C 29.963 6.346 30.453 7.066 30.453 7.927 C 30.453 9.091 29.361 9.323 27.576 9.672 C 24.745 10.253 22.827 11.021 22.827 13.673 C 22.827 15.697 24.277 17.071 26.55 17.071 Z M 27.041 15.232 C 25.681 15.232 25.123 14.627 25.123 13.51 C 25.123 12.278 25.947 11.719 27.955 11.277 C 29.115 11.021 30.095 10.766 30.453 10.416 L 30.453 12.115 C 30.453 14.185 29.003 15.232 27.041 15.232 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 26.55 17.071 C 28.402 17.071 29.694 16.302 30.453 15.069 L 30.498 15.069 C 30.608 16.418 31.211 16.861 32.28 16.861 C 32.638 16.861 33.018 16.815 33.396 16.721 L 33.396 15.325 C 33.263 15.349 33.196 15.349 33.129 15.349 C 32.705 15.349 32.593 14.906 32.593 14.045 L 32.593 8.601 C 32.593 5.53 30.72 4.508 28.379 4.508 C 24.9 4.508 23.473 6.299 23.362 8.579 L 25.592 8.579 C 25.703 6.997 26.305 6.346 28.29 6.346 C 29.963 6.346 30.453 7.066 30.453 7.927 C 30.453 9.091 29.361 9.323 27.576 9.672 C 24.745 10.253 22.827 11.021 22.827 13.673 C 22.827 15.697 24.277 17.071 26.55 17.071 Z M 27.041 15.232 C 25.681 15.232 25.123 14.627 25.123 13.51 C 25.123 12.278 25.947 11.719 27.955 11.277 C 29.115 11.021 30.095 10.766 30.453 10.416 L 30.453 12.115 C 30.453 14.185 29.003 15.232 27.041 15.232 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 43.084 15.954 C 43.084 18.187 42.013 19.141 39.94 19.141 C 38.088 19.141 37.309 18.303 37.086 17.234 L 34.833 17.234 C 35.056 19.373 36.684 21.001 39.94 21.001 C 43.195 21.001 45.269 19.397 45.269 15.813 L 45.269 4.881 L 43.084 4.881 L 43.084 6.277 L 43.039 6.277 C 42.414 5.438 41.366 4.531 39.538 4.531 C 36.706 4.531 34.521 6.532 34.521 10.347 C 34.521 14.139 36.706 16.14 39.538 16.14 C 41.367 16.14 42.414 15.302 43.039 14.349 L 43.084 14.349 Z M 39.94 6.438 C 41.902 6.438 43.061 7.742 43.061 10.347 C 43.061 12.929 41.902 14.255 39.94 14.255 C 37.798 14.255 36.796 12.58 36.796 10.347 C 36.796 8.113 37.798 6.438 39.94 6.438 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 43.084 15.954 C 43.084 18.187 42.013 19.141 39.94 19.141 C 38.088 19.141 37.309 18.303 37.086 17.234 L 34.833 17.234 C 35.056 19.373 36.684 21.001 39.94 21.001 C 43.195 21.001 45.269 19.397 45.269 15.813 L 45.269 4.881 L 43.084 4.881 L 43.084 6.277 L 43.039 6.277 C 42.414 5.438 41.366 4.531 39.538 4.531 C 36.706 4.531 34.521 6.532 34.521 10.347 C 34.521 14.139 36.706 16.14 39.538 16.14 C 41.367 16.14 42.414 15.302 43.039 14.349 L 43.084 14.349 Z M 39.94 6.438 C 41.902 6.438 43.061 7.742 43.061 10.347 C 43.061 12.929 41.902 14.255 39.94 14.255 C 37.798 14.255 36.796 12.58 36.796 10.347 C 36.796 8.113 37.798 6.438 39.94 6.438 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 47.572 0.296 L 47.572 2.762 L 50.047 2.762 L 50.047 0.296 Z M 47.729 4.879 L 47.729 16.744 L 49.914 16.744 L 49.914 4.879 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 47.572 0.296 L 47.572 2.762 L 50.047 2.762 L 50.047 0.296 Z M 47.729 4.879 L 47.729 16.744 L 49.914 16.744 L 49.914 4.879 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 52.344 16.744 L 54.53 16.744 L 54.53 9.462 C 54.53 7.671 55.734 6.485 57.607 6.485 C 59.234 6.485 59.904 7.555 59.904 9.137 L 59.904 16.744 L 62.11 16.744 L 62.11 8.509 C 62.11 5.787 60.416 4.531 58.32 4.531 C 56.358 4.531 55.177 5.461 54.575 6.368 L 54.53 6.368 L 54.53 4.879 L 52.345 4.879 L 52.345 16.744 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 52.344 16.744 L 54.53 16.744 L 54.53 9.462 C 54.53 7.671 55.734 6.485 57.607 6.485 C 59.234 6.485 59.904 7.555 59.904 9.137 L 59.904 16.744 L 62.11 16.744 L 62.11 8.509 C 62.11 5.787 60.416 4.531 58.32 4.531 C 56.358 4.531 55.177 5.461 54.575 6.368 L 54.53 6.368 L 54.53 4.879 L 52.345 4.879 L 52.345 16.744 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 69.45 17.094 C 72.438 17.094 74.11 15.372 74.69 13.092 L 72.483 13.092 C 72.26 13.882 71.501 15.232 69.494 15.232 C 67.243 15.232 66.127 13.417 66.082 11.417 L 74.825 11.417 C 74.846 11.231 74.846 10.882 74.846 10.556 C 74.846 6.881 72.906 4.508 69.451 4.508 C 65.971 4.508 63.831 7.066 63.831 10.789 C 63.831 14.418 65.838 17.094 69.45 17.094 Z M 69.383 6.368 C 71.323 6.368 72.55 7.764 72.55 9.625 L 66.081 9.625 C 66.215 7.671 67.553 6.368 69.382 6.368 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 69.45 17.094 C 72.438 17.094 74.11 15.372 74.69 13.092 L 72.483 13.092 C 72.26 13.882 71.501 15.232 69.494 15.232 C 67.243 15.232 66.127 13.417 66.082 11.417 L 74.825 11.417 C 74.846 11.231 74.846 10.882 74.846 10.556 C 74.846 6.881 72.906 4.508 69.451 4.508 C 65.971 4.508 63.831 7.066 63.831 10.789 C 63.831 14.418 65.838 17.094 69.45 17.094 Z M 69.383 6.368 C 71.323 6.368 72.55 7.764 72.55 9.625 L 66.081 9.625 C 66.215 7.671 67.553 6.368 69.382 6.368 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 75.662 14.208 L 75.662 16.744 L 78.093 16.744 L 78.093 14.208 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 75.662 14.208 L 75.662 16.744 L 78.093 16.744 L 78.093 14.208 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 80.933 0.296 L 80.933 2.762 L 83.407 2.762 L 83.407 0.296 Z M 81.088 4.879 L 81.088 16.744 L 83.275 16.744 L 83.275 4.879 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 80.933 0.296 L 80.933 2.762 L 83.407 2.762 L 83.407 0.296 Z M 81.088 4.879 L 81.088 16.744 L 83.275 16.744 L 83.275 4.879 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 90.77 17.094 C 94.316 17.094 96.457 14.511 96.457 10.789 C 96.457 7.089 94.316 4.508 90.77 4.508 C 87.225 4.508 85.084 7.114 85.084 10.813 C 85.084 14.534 87.225 17.094 90.77 17.094 Z M 90.77 15.209 C 88.429 15.209 87.358 13.278 87.358 10.811 C 87.358 8.322 88.429 6.415 90.77 6.415 C 93.088 6.415 94.182 8.322 94.182 10.813 C 94.182 13.278 93.088 15.209 90.77 15.209 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 90.77 17.094 C 94.316 17.094 96.457 14.511 96.457 10.789 C 96.457 7.089 94.316 4.508 90.77 4.508 C 87.225 4.508 85.084 7.114 85.084 10.813 C 85.084 14.534 87.225 17.094 90.77 17.094 Z M 90.77 15.209 C 88.429 15.209 87.358 13.278 87.358 10.811 C 87.358 8.322 88.429 6.415 90.77 6.415 C 93.088 6.415 94.182 8.322 94.182 10.813 C 94.182 13.278 93.088 15.209 90.77 15.209 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path></svg>',svgContentId:9007115111},vrQGUwaGM:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 74.391 16.154\"><path d=\"M 0.395 0.228 L 0.395 2.125 L 2.293 2.125 L 2.293 0.228 Z M 0.515 3.753 L 0.515 12.88 L 2.191 12.88 L 2.191 3.753 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 0.395 0.228 L 0.395 2.125 L 2.293 2.125 L 2.293 0.228 Z M 0.515 3.753 L 0.515 12.88 L 2.191 12.88 L 2.191 3.753 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 4.054 12.88 L 5.731 12.88 L 5.731 7.279 C 5.731 5.901 6.518 4.989 7.766 4.989 C 9.049 4.989 9.288 5.812 9.288 7.029 L 9.288 12.88 L 10.964 12.88 L 10.964 7.279 C 10.964 5.901 11.75 4.989 12.999 4.989 C 14.282 4.989 14.521 5.812 14.521 7.029 L 14.521 12.88 L 16.197 12.88 L 16.197 6.545 C 16.197 4.594 15.308 3.485 13.547 3.485 C 12.195 3.485 11.323 4.201 10.69 5.078 L 10.657 5.078 C 10.297 4.057 9.562 3.485 8.348 3.485 C 7.031 3.485 6.227 4.201 5.765 4.898 L 5.731 4.898 L 5.731 3.753 L 4.055 3.753 L 4.055 12.88 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 4.054 12.88 L 5.731 12.88 L 5.731 7.279 C 5.731 5.901 6.518 4.989 7.766 4.989 C 9.049 4.989 9.288 5.812 9.288 7.029 L 9.288 12.88 L 10.964 12.88 L 10.964 7.279 C 10.964 5.901 11.75 4.989 12.999 4.989 C 14.282 4.989 14.521 5.812 14.521 7.029 L 14.521 12.88 L 16.197 12.88 L 16.197 6.545 C 16.197 4.594 15.308 3.485 13.547 3.485 C 12.195 3.485 11.323 4.201 10.69 5.078 L 10.657 5.078 C 10.297 4.057 9.562 3.485 8.348 3.485 C 7.031 3.485 6.227 4.201 5.765 4.898 L 5.731 4.898 L 5.731 3.753 L 4.055 3.753 L 4.055 12.88 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 20.362 13.131 C 21.782 13.131 22.773 12.54 23.355 11.592 L 23.389 11.592 C 23.474 12.629 23.936 12.97 24.756 12.97 C 25.031 12.97 25.322 12.934 25.612 12.862 L 25.612 11.789 C 25.51 11.807 25.458 11.807 25.407 11.807 C 25.082 11.807 24.996 11.466 24.996 10.804 L 24.996 6.616 C 24.996 4.254 23.56 3.467 21.764 3.467 C 19.096 3.467 18.002 4.845 17.917 6.599 L 19.627 6.599 C 19.712 5.382 20.174 4.881 21.696 4.881 C 22.979 4.881 23.355 5.435 23.355 6.098 C 23.355 6.993 22.517 7.171 21.148 7.44 C 18.977 7.887 17.506 8.478 17.506 10.518 C 17.506 12.075 18.618 13.131 20.362 13.131 Z M 20.738 11.717 C 19.695 11.717 19.267 11.252 19.267 10.393 C 19.267 9.444 19.9 9.015 21.439 8.675 C 22.328 8.478 23.081 8.281 23.355 8.012 L 23.355 9.319 C 23.355 10.911 22.243 11.717 20.738 11.717 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 20.362 13.131 C 21.782 13.131 22.773 12.54 23.355 11.592 L 23.389 11.592 C 23.474 12.629 23.936 12.97 24.756 12.97 C 25.031 12.97 25.322 12.934 25.612 12.862 L 25.612 11.789 C 25.51 11.807 25.458 11.807 25.407 11.807 C 25.082 11.807 24.996 11.466 24.996 10.804 L 24.996 6.616 C 24.996 4.254 23.56 3.467 21.764 3.467 C 19.096 3.467 18.002 4.845 17.917 6.599 L 19.627 6.599 C 19.712 5.382 20.174 4.881 21.696 4.881 C 22.979 4.881 23.355 5.435 23.355 6.098 C 23.355 6.993 22.517 7.171 21.148 7.44 C 18.977 7.887 17.506 8.478 17.506 10.518 C 17.506 12.075 18.618 13.131 20.362 13.131 Z M 20.738 11.717 C 19.695 11.717 19.267 11.252 19.267 10.393 C 19.267 9.444 19.9 9.015 21.439 8.675 C 22.328 8.478 23.081 8.281 23.355 8.012 L 23.355 9.319 C 23.355 10.911 22.243 11.717 20.738 11.717 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 33.042 12.272 C 33.042 13.99 32.221 14.724 30.63 14.724 C 29.211 14.724 28.613 14.08 28.442 13.257 L 26.714 13.257 C 26.885 14.902 28.134 16.155 30.63 16.155 C 33.127 16.155 34.717 14.92 34.717 12.164 L 34.717 3.754 L 33.042 3.754 L 33.042 4.828 L 33.007 4.828 C 32.528 4.183 31.724 3.485 30.323 3.485 C 28.15 3.485 26.475 5.025 26.475 7.959 C 26.475 10.876 28.15 12.416 30.323 12.416 C 31.725 12.416 32.528 11.77 33.007 11.038 L 33.042 11.038 Z M 30.63 4.953 C 32.135 4.953 33.024 5.955 33.024 7.959 C 33.024 9.945 32.135 10.966 30.63 10.966 C 28.988 10.966 28.219 9.677 28.219 7.959 C 28.219 6.241 28.988 4.953 30.63 4.953 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 33.042 12.272 C 33.042 13.99 32.221 14.724 30.63 14.724 C 29.211 14.724 28.613 14.08 28.442 13.257 L 26.714 13.257 C 26.885 14.902 28.134 16.155 30.63 16.155 C 33.127 16.155 34.717 14.92 34.717 12.164 L 34.717 3.754 L 33.042 3.754 L 33.042 4.828 L 33.007 4.828 C 32.528 4.183 31.724 3.485 30.323 3.485 C 28.15 3.485 26.475 5.025 26.475 7.959 C 26.475 10.876 28.15 12.416 30.323 12.416 C 31.725 12.416 32.528 11.77 33.007 11.038 L 33.042 11.038 Z M 30.63 4.953 C 32.135 4.953 33.024 5.955 33.024 7.959 C 33.024 9.945 32.135 10.966 30.63 10.966 C 28.988 10.966 28.219 9.677 28.219 7.959 C 28.219 6.241 28.988 4.953 30.63 4.953 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 36.484 0.228 L 36.484 2.125 L 38.382 2.125 L 38.382 0.228 Z M 36.604 3.753 L 36.604 12.88 L 38.28 12.88 L 38.28 3.753 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 36.484 0.228 L 36.484 2.125 L 38.382 2.125 L 38.382 0.228 Z M 36.604 3.753 L 36.604 12.88 L 38.28 12.88 L 38.28 3.753 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 40.143 12.88 L 41.82 12.88 L 41.82 7.279 C 41.82 5.901 42.743 4.989 44.18 4.989 C 45.428 4.989 45.941 5.812 45.941 7.029 L 45.941 12.88 L 47.633 12.88 L 47.633 6.545 C 47.633 4.452 46.334 3.485 44.727 3.485 C 43.222 3.485 42.316 4.201 41.854 4.898 L 41.82 4.898 L 41.82 3.753 L 40.144 3.753 L 40.144 12.88 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 40.143 12.88 L 41.82 12.88 L 41.82 7.279 C 41.82 5.901 42.743 4.989 44.18 4.989 C 45.428 4.989 45.941 5.812 45.941 7.029 L 45.941 12.88 L 47.633 12.88 L 47.633 6.545 C 47.633 4.452 46.334 3.485 44.727 3.485 C 43.222 3.485 42.316 4.201 41.854 4.898 L 41.82 4.898 L 41.82 3.753 L 40.144 3.753 L 40.144 12.88 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 53.262 13.149 C 55.554 13.149 56.837 11.825 57.281 10.07 L 55.589 10.07 C 55.418 10.679 54.835 11.717 53.296 11.717 C 51.57 11.717 50.714 10.32 50.68 8.782 L 57.384 8.782 C 57.401 8.639 57.401 8.371 57.401 8.12 C 57.401 5.293 55.913 3.467 53.263 3.467 C 50.594 3.467 48.953 5.435 48.953 8.299 C 48.953 11.091 50.492 13.149 53.262 13.149 Z M 53.211 4.898 C 54.699 4.898 55.64 5.972 55.64 7.404 L 50.679 7.404 C 50.781 5.901 51.808 4.898 53.21 4.898 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 53.262 13.149 C 55.554 13.149 56.837 11.825 57.281 10.07 L 55.589 10.07 C 55.418 10.679 54.835 11.717 53.296 11.717 C 51.57 11.717 50.714 10.32 50.68 8.782 L 57.384 8.782 C 57.401 8.639 57.401 8.371 57.401 8.12 C 57.401 5.293 55.913 3.467 53.263 3.467 C 50.594 3.467 48.953 5.435 48.953 8.299 C 48.953 11.091 50.492 13.149 53.262 13.149 Z M 53.211 4.898 C 54.699 4.898 55.64 5.972 55.64 7.404 L 50.679 7.404 C 50.781 5.901 51.808 4.898 53.21 4.898 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 58.027 10.93 L 58.027 12.88 L 59.891 12.88 L 59.891 10.93 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 58.027 10.93 L 58.027 12.88 L 59.891 12.88 L 59.891 10.93 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 62.069 0.228 L 62.069 2.125 L 63.966 2.125 L 63.966 0.228 Z M 62.188 3.753 L 62.188 12.88 L 63.865 12.88 L 63.865 3.753 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 62.069 0.228 L 62.069 2.125 L 63.966 2.125 L 63.966 0.228 Z M 62.188 3.753 L 62.188 12.88 L 63.865 12.88 L 63.865 3.753 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 69.613 13.149 C 72.332 13.149 73.974 11.162 73.974 8.299 C 73.974 5.453 72.332 3.467 69.613 3.467 C 66.894 3.467 65.252 5.472 65.252 8.317 C 65.252 11.18 66.894 13.149 69.613 13.149 Z M 69.613 11.699 C 67.818 11.699 66.997 10.214 66.997 8.316 C 66.997 6.402 67.818 4.935 69.613 4.935 C 71.391 4.935 72.23 6.402 72.23 8.317 C 72.23 10.214 71.391 11.699 69.613 11.699 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 69.613 13.149 C 72.332 13.149 73.974 11.162 73.974 8.299 C 73.974 5.453 72.332 3.467 69.613 3.467 C 66.894 3.467 65.252 5.472 65.252 8.317 C 65.252 11.18 66.894 13.149 69.613 13.149 Z M 69.613 11.699 C 67.818 11.699 66.997 10.214 66.997 8.316 C 66.997 6.402 67.818 4.935 69.613 4.935 C 71.391 4.935 72.23 6.402 72.23 8.317 C 72.23 10.214 71.391 11.699 69.613 11.699 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path></svg>',svgContentId:9091398564}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-amnJa.framer-1qaih6h, .framer-amnJa .framer-1qaih6h { display: block; }\",\".framer-amnJa.framer-1g9jqux { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-amnJa .framer-vlx0at { aspect-ratio: 1.0909090909090908 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; width: 28px; }\",\".framer-amnJa .framer-1qmn0eh { flex: none; height: 21px; position: relative; width: 97px; }\",\".framer-amnJa.framer-v-1c59v22 .framer-vlx0at, .framer-amnJa.framer-v-qbmjg2 .framer-vlx0at { height: var(--framer-aspect-ratio-supported, 20px); width: 21px; }\",\".framer-amnJa.framer-v-1c59v22 .framer-1qmn0eh, .framer-amnJa.framer-v-qbmjg2 .framer-1qmn0eh { height: 16px; width: 74px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26\n * @framerIntrinsicWidth 133\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Vivs1tTvM\":{\"layout\":[\"auto\",\"auto\"]},\"vrQGUwaGM\":{\"layout\":[\"auto\",\"auto\"]},\"ou0r8DHge\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerkDrZs2M2R=withCSS(Component,css,\"framer-amnJa\");export default FramerkDrZs2M2R;FramerkDrZs2M2R.displayName=\"Imagine.io Logo\";FramerkDrZs2M2R.defaultProps={height:26,width:133};addPropertyControls(FramerkDrZs2M2R,{variant:{options:[\"QmwAjShC_\",\"Vivs1tTvM\",\"vrQGUwaGM\",\"ou0r8DHge\"],optionTitles:[\"Dark\",\"Light\",\"Light / Small\",\"Dark / Small\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerkDrZs2M2R,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkDrZs2M2R\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"133\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Vivs1tTvM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vrQGUwaGM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ou0r8DHge\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"26\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kDrZs2M2R.map", "// Generated by Framer (114679e)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,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 enabledGestures={gmOjGBNZQ:{hover:true},Qylzq04XT:{hover:true},V3fyfJPlM:{hover:true}};const cycleOrder=[\"V3fyfJPlM\",\"Qylzq04XT\",\"LIOzoTQXe\",\"gmOjGBNZQ\",\"Ztgtdq8yY\",\"V5pvnTKYq\",\"B7C6kWSVe\",\"UYkAEQoEm\",\"PZUGvO_yd\",\"uZOi1RwMY\"];const serializationHash=\"framer-D1h9C\";const variantClassNames={B7C6kWSVe:\"framer-v-725wyy\",gmOjGBNZQ:\"framer-v-i0sqxb\",LIOzoTQXe:\"framer-v-14fa65b\",PZUGvO_yd:\"framer-v-1nrscwb\",Qylzq04XT:\"framer-v-1rmsf44\",UYkAEQoEm:\"framer-v-c40imy\",uZOi1RwMY:\"framer-v-skv7ii\",V3fyfJPlM:\"framer-v-1aldat2\",V5pvnTKYq:\"framer-v-xn5i2c\",Ztgtdq8yY:\"framer-v-1y1gscw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Dark - No BG\":\"gmOjGBNZQ\",\"Dark-2\":\"B7C6kWSVe\",\"Light - No BG\":\"Ztgtdq8yY\",\"Light-2\":\"V5pvnTKYq\",\"Main-Mobile\":\"UYkAEQoEm\",\"Variant 10\":\"uZOi1RwMY\",Dark:\"Qylzq04XT\",Large:\"PZUGvO_yd\",Light:\"LIOzoTQXe\",Papaya:\"V3fyfJPlM\"};const getProps=({background2,height,hover7,id,tap2,title,width,...props})=>{return{...props,iwpUBbA_a:tap2??props.iwpUBbA_a,ruDDc5HKQ:hover7??props.ruDDc5HKQ,V_mdeIg77:background2??props.V_mdeIg77??\"var(--token-ec2fc95b-0069-4aaf-9dc7-4e4f889ff086, rgb(235, 78, 10))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"V3fyfJPlM\",XvKj2WK6Q:title??props.XvKj2WK6Q??\"Contact Sales\"};};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,XvKj2WK6Q,iwpUBbA_a,V_mdeIg77,ruDDc5HKQ,vLaR6_i7ALA60stj9k,mfAN6OFNqLA60stj9k,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"V3fyfJPlM\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnteradorln=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(ruDDc5HKQ){const res=await ruDDc5HKQ(...args);if(res===false)return false;}});const onTap1aci1jd=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(iwpUBbA_a){const res=await iwpUBbA_a(...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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1aldat2\",className,classNames),\"data-framer-name\":\"Papaya\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"V3fyfJPlM\",onMouseEnter:onMouseEnteradorln,ref:refBinding,style:{backgroundColor:\"var(--token-ec2fc95b-0069-4aaf-9dc7-4e4f889ff086, rgb(235, 78, 10))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,...style},variants:{\"gmOjGBNZQ-hover\":{backgroundColor:\"var(--token-424407ca-8a5e-4b48-84df-2af93dcb4665, rgb(39, 40, 40))\"},\"Qylzq04XT-hover\":{backgroundColor:\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\"},\"V3fyfJPlM-hover\":{backgroundColor:\"rgb(252, 102, 38)\"},B7C6kWSVe:{backgroundColor:\"var(--token-a89c5b27-f6c1-400c-ab81-19a1903fc649, rgb(27, 28, 28))\"},gmOjGBNZQ:{backgroundColor:\"rgba(0, 0, 0, 0)\"},LIOzoTQXe:{backgroundColor:\"var(--token-255e0d8f-6c19-4cdb-914d-8d083e1995ba, rgb(249, 249, 249))\"},PZUGvO_yd:{backgroundColor:V_mdeIg77},Qylzq04XT:{backgroundColor:\"var(--token-424407ca-8a5e-4b48-84df-2af93dcb4665, rgb(39, 40, 40))\"},uZOi1RwMY:{backgroundColor:\"var(--token-3c8a01de-94fc-452c-ab90-43ddac961ed5, rgb(236, 236, 234))\"},V5pvnTKYq:{backgroundColor:\"var(--token-3c8a01de-94fc-452c-ab90-43ddac961ed5, rgb(236, 236, 234))\"},Ztgtdq8yY:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({\"gmOjGBNZQ-hover\":{\"data-framer-name\":undefined},\"Qylzq04XT-hover\":{\"data-framer-name\":undefined},\"V3fyfJPlM-hover\":{\"data-framer-name\":undefined},B7C6kWSVe:{\"data-framer-name\":\"Dark-2\"},gmOjGBNZQ:{\"data-framer-name\":\"Dark - No BG\",onTap:onTap1aci1jd},LIOzoTQXe:{\"data-framer-name\":\"Light\"},PZUGvO_yd:{\"data-framer-name\":\"Large\"},Qylzq04XT:{\"data-framer-name\":\"Dark\"},UYkAEQoEm:{\"data-framer-name\":\"Main-Mobile\"},uZOi1RwMY:{\"data-framer-name\":\"Variant 10\"},V5pvnTKYq:{\"data-framer-name\":\"Light-2\"},Ztgtdq8yY:{\"data-framer-name\":\"Light - No BG\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-792d9903-2669-4d32-aca9-4bf0750cf240, rgb(255, 255, 255)))\"},children:\"Contact Sales\"})}),className:\"framer-1mdaxi3\",\"data-framer-name\":\"Button\",fonts:[\"CUSTOM;PP Neue Montreal Medium\"],layoutDependency:layoutDependency,layoutId:\"Lr4HlLYQt\",style:{\"--extracted-r6o4lv\":\"var(--token-792d9903-2669-4d32-aca9-4bf0750cf240, rgb(255, 255, 255))\",\"--variable-reference-mfAN6OFNq-LA60stj9k\":mfAN6OFNqLA60stj9k,\"--variable-reference-vLaR6_i7A-LA60stj9k\":vLaR6_i7ALA60stj9k},text:XvKj2WK6Q,variants:{LIOzoTQXe:{\"--extracted-r6o4lv\":\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\"},PZUGvO_yd:{\"--extracted-r6o4lv\":\"var(--variable-reference-mfAN6OFNq-LA60stj9k)\",\"--variable-reference-mfAN6OFNq-LA60stj9k\":mfAN6OFNqLA60stj9k},uZOi1RwMY:{\"--extracted-r6o4lv\":\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\"},V5pvnTKYq:{\"--extracted-r6o4lv\":\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\"},Ztgtdq8yY:{\"--extracted-r6o4lv\":\"var(--variable-reference-vLaR6_i7A-LA60stj9k)\",\"--variable-reference-vLaR6_i7A-LA60stj9k\":vLaR6_i7ALA60stj9k}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({LIOzoTQXe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)))\"},children:\"Contact Sales\"})})},PZUGvO_yd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-mfAN6OFNq-LA60stj9k))\"},children:\"Contact Sales\"})})},uZOi1RwMY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)))\"},children:\"Contact Sales\"})})},V5pvnTKYq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)))\"},children:\"Contact Sales\"})})},Ztgtdq8yY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-vLaR6_i7A-LA60stj9k))\"},children:\"Contact Sales\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-D1h9C.framer-dp8p9a, .framer-D1h9C .framer-dp8p9a { display: block; }\",\".framer-D1h9C.framer-1aldat2 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 10px 14px 10px 14px; position: relative; width: min-content; }\",\".framer-D1h9C .framer-1mdaxi3 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-D1h9C.framer-v-c40imy.framer-1aldat2 { padding: 12px 16px 12px 16px; }\",\".framer-D1h9C.framer-v-1nrscwb.framer-1aldat2, .framer-D1h9C.framer-v-skv7ii.framer-1aldat2 { padding: 15px 25px 15px 25px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 115\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Qylzq04XT\":{\"layout\":[\"auto\",\"auto\"]},\"LIOzoTQXe\":{\"layout\":[\"auto\",\"auto\"]},\"gmOjGBNZQ\":{\"layout\":[\"auto\",\"auto\"]},\"Ztgtdq8yY\":{\"layout\":[\"auto\",\"auto\"]},\"V5pvnTKYq\":{\"layout\":[\"auto\",\"auto\"]},\"B7C6kWSVe\":{\"layout\":[\"auto\",\"auto\"]},\"UYkAEQoEm\":{\"layout\":[\"auto\",\"auto\"]},\"PZUGvO_yd\":{\"layout\":[\"auto\",\"auto\"]},\"uZOi1RwMY\":{\"layout\":[\"auto\",\"auto\"]},\"Gu9EaQs6u\":{\"layout\":[\"auto\",\"auto\"]},\"BATa_NajP\":{\"layout\":[\"auto\",\"auto\"]},\"FDGyJiw9N\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"XvKj2WK6Q\":\"title\",\"iwpUBbA_a\":\"tap2\",\"V_mdeIg77\":\"background2\",\"ruDDc5HKQ\":\"hover7\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framern0mleuK5n=withCSS(Component,css,\"framer-D1h9C\");export default Framern0mleuK5n;Framern0mleuK5n.displayName=\"Button / MainButtonFinal Copy 2\";Framern0mleuK5n.defaultProps={height:40,width:115};addPropertyControls(Framern0mleuK5n,{variant:{options:[\"V3fyfJPlM\",\"Qylzq04XT\",\"LIOzoTQXe\",\"gmOjGBNZQ\",\"Ztgtdq8yY\",\"V5pvnTKYq\",\"B7C6kWSVe\",\"UYkAEQoEm\",\"PZUGvO_yd\",\"uZOi1RwMY\"],optionTitles:[\"Papaya\",\"Dark\",\"Light\",\"Dark - No BG\",\"Light - No BG\",\"Light-2\",\"Dark-2\",\"Main-Mobile\",\"Large\",\"Variant 10\"],title:\"Variant\",type:ControlType.Enum},XvKj2WK6Q:{defaultValue:\"Contact Sales\",displayTextArea:false,title:\"Title\",type:ControlType.String},iwpUBbA_a:{title:\"Tap 2\",type:ControlType.EventHandler},V_mdeIg77:{defaultValue:'var(--token-ec2fc95b-0069-4aaf-9dc7-4e4f889ff086, rgb(235, 78, 10)) /* {\"name\":\"Papaya\"} */',title:\"Background 2\",type:ControlType.Color},ruDDc5HKQ:{title:\"Hover 7\",type:ControlType.EventHandler}});addFonts(Framern0mleuK5n,[{explicitInter:true,fonts:[{family:\"PP Neue Montreal Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/X3dpjR58Ye6dvtoHdLcifA4vzo.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framern0mleuK5n\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Qylzq04XT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"LIOzoTQXe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gmOjGBNZQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Ztgtdq8yY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"V5pvnTKYq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"B7C6kWSVe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UYkAEQoEm\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"PZUGvO_yd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uZOi1RwMY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Gu9EaQs6u\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"BATa_NajP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FDGyJiw9N\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"115\",\"framerIntrinsicHeight\":\"40\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"XvKj2WK6Q\\\":\\\"title\\\",\\\"iwpUBbA_a\\\":\\\"tap2\\\",\\\"V_mdeIg77\\\":\\\"background2\\\",\\\"ruDDc5HKQ\\\":\\\"hover7\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./n0mleuK5n.map", "// Generated by Framer (114679e)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Link,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{withLoginMainNav}from\"https://framerusercontent.com/modules/bht4YxYvS1EtDNlVwP8y/mOMEFYnimAD9y1L7v7lf/Hubspot_Events.js\";import ButtonMainButtonFinal from\"https://framerusercontent.com/modules/ycA4kWoXeBMb6fbl4tYq/sgx4jX359MRLW34cLIpQ/LA60stj9k.js\";import ButtonMainButtonFinalCopy2 from\"https://framerusercontent.com/modules/VhYkG6YCGMH2UYfDfsjy/ks8JqtWA6dA5fx5jcOLX/n0mleuK5n.js\";const ButtonMainButtonFinalCopy2Fonts=getFonts(ButtonMainButtonFinalCopy2);const MotionAWithLoginMainNavr3zuzb=withCodeBoundaryForOverrides(motion.a,{nodeId:\"VOI3rvMY1\",override:withLoginMainNav,scopeId:\"MLmHJeYwx\"});const ButtonMainButtonFinalControls=getPropertyControls(ButtonMainButtonFinal);const cycleOrder=[\"VOI3rvMY1\",\"wYjxNvH9b\",\"NxoMo0Rik\"];const serializationHash=\"framer-nYB3S\";const variantClassNames={NxoMo0Rik:\"framer-v-cm8xh6\",VOI3rvMY1:\"framer-v-r3zuzb\",wYjxNvH9b:\"framer-v-1k4emlq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Dark - No BG\":\"lriEYYymY\",\"Dark-2\":\"Cw_a1Irs4\",\"Dark-Active\":\"gqFNqaTEi\",\"Light - No BG\":\"pL1ySK2TY\",\"Light-2\":\"wfX5zFhhY\",\"Main-Mobile\":\"J_3gXfmq1\",\"NEW LIGHT\":\"my05XROqI\",\"Variant 10\":\"RApvmwgSA\",Dark:\"dPyLBepZ6\",Large:\"GcuiszfJy\",Light:\"hRLyrHedS\",NOLINK:\"xIWXnH8Vo\",Papaya:\"iMIAwx4W1\"};const humanReadableVariantMap={\"Variant 1\":\"VOI3rvMY1\",\"Variant 2\":\"wYjxNvH9b\",\"Variant 3\":\"NxoMo0Rik\"};const getProps=({click,contactSales,height,id,link,newTab,title,variant2,width,...props})=>{return{...props,AN9e8q7tc:newTab??props.AN9e8q7tc,C5IXoGfex:humanReadableEnumMap[variant2]??variant2??props.C5IXoGfex,lb__kXgsJ:click??props.lb__kXgsJ,Snjtyf3an:contactSales??props.Snjtyf3an,SzrlCTTKi:title??props.SzrlCTTKi??\"Contact Sales\",variant:humanReadableVariantMap[props.variant]??props.variant??\"VOI3rvMY1\",Xj0G7A4hE:link??props.Xj0G7A4hE};};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,SzrlCTTKi,C5IXoGfex,Snjtyf3an,Xj0G7A4hE,AN9e8q7tc,lb__kXgsJ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"VOI3rvMY1\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap175rlbd=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Snjtyf3an){const res=await Snjtyf3an(...args);if(res===false)return false;}if(lb__kXgsJ){const res=await lb__kXgsJ(...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:Xj0G7A4hE,motionChild:true,nodeId:\"VOI3rvMY1\",openInNewTab:AN9e8q7tc,scopeId:\"MLmHJeYwx\",children:/*#__PURE__*/_jsx(MotionAWithLoginMainNavr3zuzb,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-r3zuzb\",className,classNames)} framer-1sa5ivb`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"VOI3rvMY1\",onTap:onTap175rlbd,ref:refBinding,style:{borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,...style},...addPropertyOverrides({NxoMo0Rik:{\"data-framer-name\":\"Variant 3\"},wYjxNvH9b:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-40)/2+0+0),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1i0pa5i-container\",layoutDependency:layoutDependency,layoutId:\"Zfp_ynDKr-container\",nodeId:\"Zfp_ynDKr\",rendersWithMotion:true,scopeId:\"MLmHJeYwx\",children:/*#__PURE__*/_jsx(ButtonMainButtonFinalCopy2,{height:\"100%\",id:\"Zfp_ynDKr\",layoutId:\"Zfp_ynDKr\",V_mdeIg77:\"var(--token-ec2fc95b-0069-4aaf-9dc7-4e4f889ff086, rgb(235, 78, 10))\",variant:C5IXoGfex,width:\"100%\",XvKj2WK6Q:SzrlCTTKi,...addPropertyOverrides({NxoMo0Rik:{variant:\"B7C6kWSVe\"}},baseVariant,gestureVariant)})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nYB3S.framer-1sa5ivb, .framer-nYB3S .framer-1sa5ivb { display: block; }\",\".framer-nYB3S.framer-r3zuzb { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-nYB3S .framer-1i0pa5i-container { flex: none; height: auto; position: relative; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 127\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"wYjxNvH9b\":{\"layout\":[\"auto\",\"auto\"]},\"NxoMo0Rik\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"SzrlCTTKi\":\"title\",\"C5IXoGfex\":\"variant2\",\"Snjtyf3an\":\"contactSales\",\"Xj0G7A4hE\":\"link\",\"AN9e8q7tc\":\"newTab\",\"lb__kXgsJ\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerMLmHJeYwx=withCSS(Component,css,\"framer-nYB3S\");export default FramerMLmHJeYwx;FramerMLmHJeYwx.displayName=\"Hubspot-Event / Main-Nav-Login Copy\";FramerMLmHJeYwx.defaultProps={height:40,width:127};addPropertyControls(FramerMLmHJeYwx,{variant:{options:[\"VOI3rvMY1\",\"wYjxNvH9b\",\"NxoMo0Rik\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},SzrlCTTKi:{defaultValue:\"Contact Sales\",displayTextArea:false,title:\"Title\",type:ControlType.String},C5IXoGfex:ButtonMainButtonFinalControls?.[\"variant\"]&&{...ButtonMainButtonFinalControls[\"variant\"],defaultValue:null,description:undefined,hidden:undefined,title:\"Variant 2\"},Snjtyf3an:{title:\"Contact Sales\",type:ControlType.EventHandler},Xj0G7A4hE:{title:\"Link\",type:ControlType.Link},AN9e8q7tc:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},lb__kXgsJ:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerMLmHJeYwx,[{explicitInter:true,fonts:[]},...ButtonMainButtonFinalCopy2Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMLmHJeYwx\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"127\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"SzrlCTTKi\\\":\\\"title\\\",\\\"C5IXoGfex\\\":\\\"variant2\\\",\\\"Snjtyf3an\\\":\\\"contactSales\\\",\\\"Xj0G7A4hE\\\":\\\"link\\\",\\\"AN9e8q7tc\\\":\\\"newTab\\\",\\\"lb__kXgsJ\\\":\\\"click\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wYjxNvH9b\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NxoMo0Rik\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (114679e)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ButtonMainButtonFinal from\"https://framerusercontent.com/modules/ycA4kWoXeBMb6fbl4tYq/sgx4jX359MRLW34cLIpQ/LA60stj9k.js\";import ButtonMainButtonFinalCopy from\"https://framerusercontent.com/modules/chWcINTiZjyIGZqcAl3W/jRthvPSnXyCztmTatNZn/P875og59P.js\";const ButtonMainButtonFinalCopyFonts=getFonts(ButtonMainButtonFinalCopy);const ButtonMainButtonFinalControls=getPropertyControls(ButtonMainButtonFinal);const serializationHash=\"framer-L3YgE\";const variantClassNames={ETYbY6axb:\"framer-v-1frw8io\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Dark - No BG\":\"lriEYYymY\",\"Dark-2\":\"Cw_a1Irs4\",\"Dark-Active\":\"gqFNqaTEi\",\"Light - No BG\":\"pL1ySK2TY\",\"Light-2\":\"wfX5zFhhY\",\"Main-Mobile\":\"J_3gXfmq1\",\"NEW LIGHT\":\"my05XROqI\",\"Variant 10\":\"RApvmwgSA\",Dark:\"dPyLBepZ6\",Large:\"GcuiszfJy\",Light:\"hRLyrHedS\",NOLINK:\"xIWXnH8Vo\",Papaya:\"iMIAwx4W1\"};const getProps=({contactSales,height,id,title,variant2,width,...props})=>{return{...props,C5IXoGfex:humanReadableEnumMap[variant2]??variant2??props.C5IXoGfex,Snjtyf3an:contactSales??props.Snjtyf3an,SzrlCTTKi:title??props.SzrlCTTKi??\"Contact Sales\"};};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,SzrlCTTKi,C5IXoGfex,Snjtyf3an,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"ETYbY6axb\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1ewyh7u=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Snjtyf3an){const res=await Snjtyf3an(...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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1frw8io\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ETYbY6axb\",onTap:onTap1ewyh7u,ref:refBinding,style:{borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"127px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-40)/2+0+0),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10bx3t0-container\",layoutDependency:layoutDependency,layoutId:\"wOVb19ZR7-container\",nodeId:\"wOVb19ZR7\",rendersWithMotion:true,scopeId:\"xnuEhAA7W\",children:/*#__PURE__*/_jsx(ButtonMainButtonFinalCopy,{height:\"100%\",id:\"wOVb19ZR7\",layoutId:\"wOVb19ZR7\",style:{width:\"100%\"},V_mdeIg77:\"var(--token-ec2fc95b-0069-4aaf-9dc7-4e4f889ff086, rgb(235, 78, 10))\",variant:C5IXoGfex,vbgP6rbuK:false,width:\"100%\",XvKj2WK6Q:SzrlCTTKi,Y6fnYx7_S:false})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-L3YgE.framer-1jz6mha, .framer-L3YgE .framer-1jz6mha { display: block; }\",\".framer-L3YgE.framer-1frw8io { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-L3YgE .framer-10bx3t0-container { flex: none; height: auto; position: relative; width: 127px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 127\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"SzrlCTTKi\":\"title\",\"C5IXoGfex\":\"variant2\",\"Snjtyf3an\":\"contactSales\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerxnuEhAA7W=withCSS(Component,css,\"framer-L3YgE\");export default FramerxnuEhAA7W;FramerxnuEhAA7W.displayName=\"Hubspot-Event / Main-Nav-Contact-Sales Copy\";FramerxnuEhAA7W.defaultProps={height:40,width:127};addPropertyControls(FramerxnuEhAA7W,{SzrlCTTKi:{defaultValue:\"Contact Sales\",displayTextArea:false,title:\"Title\",type:ControlType.String},C5IXoGfex:ButtonMainButtonFinalControls?.[\"variant\"]&&{...ButtonMainButtonFinalControls[\"variant\"],defaultValue:null,description:undefined,hidden:undefined,title:\"Variant 2\"},Snjtyf3an:{title:\"Contact Sales\",type:ControlType.EventHandler}});addFonts(FramerxnuEhAA7W,[{explicitInter:true,fonts:[]},...ButtonMainButtonFinalCopyFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxnuEhAA7W\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"SzrlCTTKi\\\":\\\"title\\\",\\\"C5IXoGfex\\\":\\\"variant2\\\",\\\"Snjtyf3an\\\":\\\"contactSales\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"127\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "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", "trackButtonClickedTryItForFree", "trackHeaderFooterMenuClick", "trackClickTab", "trackClickTabFloating", "trackClickAugmentedRealitySolutions", "trackClickBuildYourOwnConfigurator", "trackClickCustomerSuccessStories", "trackClickExplore3DRendering", "trackClickLearnMoreEnterprise", "USERPILOT_EVENTS", "updateLoginButton", "user", "logInBtn", "i", "btn", "getUUIDParams", "event", "callTrackEvent", "updateGetStartedButton", "_user", "getStartedBtn", "window", "getDataFromLocalStorage", "callback", "currentUser", "withLoginButton", "Component", "props", "handleLogin", "isLoggedIn", "getDataFromLocalStorage", "updateLoginButton", "btn", "ue", "segmentLoad", "window", "p", "trackButtonClickedTryItForFree", "withGetStartedButton", "handleGetStarted", "updateGetStartedButton", "CYCLE", "TYPE", "defaultValues", "useStore", "createStore", "withSubscriptionProductsTypeAddClass", "Component", "props", "store", "setStore", "useStore", "handleSelectType", "TYPE", "p", "withSubscriptionTextilesTypeAddClass", "withOverlayCloseButtonAddClass", "Component", "props", "p", "withHeaderMenuClick", "handleClick", "e", "menu_name", "trackHeaderFooterMenuClick", "withFooterMenuClick", "withClickTab", "tabName", "trackClickTab", "withClickTabFloating", "trackClickTabFloating", "withClickLearnMoreEnterprise", "trackClickLearnMoreEnterprise", "withClickExplore3DRendering", "trackClickExplore3DRendering", "withClickBuildYourOwnConfigurator", "trackClickBuildYourOwnConfigurator", "withClickCustomerSuccessStories", "trackClickCustomerSuccessStories", "withClickAugmentedRealitySolutions", "trackClickAugmentedRealitySolutions", "LA60stj9k_exports", "__export", "__FramerMetadata__", "LA60stj9k_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "color3", "height", "hover6", "hover7", "hover8", "hover9", "id", "link", "link2", "newTab", "smoothScroll2", "tap2", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "XvKj2WK6Q", "r3gI1vuyG", "iwpUBbA_a", "Y6fnYx7_S", "vbgP6rbuK", "vLaR6_i7A", "kEVqYsxmg", "T_2SjiHyI", "ePFx1lHpQ", "jvJ2apzus", "CcorEOxxJ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterwklure", "args", "onTap1aci1jd", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText", "css", "FramerLA60stj9k", "withCSS", "LA60stj9k_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background2", "height", "hover7", "id", "link", "newTab", "smoothScroll2", "tap2", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "XvKj2WK6Q", "r3gI1vuyG", "iwpUBbA_a", "Y6fnYx7_S", "vbgP6rbuK", "V_mdeIg77", "ruDDc5HKQ", "vLaR6_i7ALA60stj9k", "mfAN6OFNqLA60stj9k", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnteradorln", "args", "onTap1aci1jd", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText", "css", "FramerP875og59P", "withCSS", "P875og59P_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "link", "padding", "shadow2", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "jpKtV9MEn", "HkXArTRCm", "i6ydiGswO", "JJ00ngaKv", "Ekb5zt9TK", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapcbi8nj", "args", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText", "css", "FramerYxAUZlgP8", "withCSS", "YxAUZlgP8_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ZNc7qfYHq_exports", "__export", "__FramerMetadata__", "ZNc7qfYHq_default", "MainButton2025Fonts", "getFonts", "YxAUZlgP8_default", "MainButton2025Controls", "getPropertyControls", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "height", "id", "shadow", "title", "trackingID", "variant2", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "x0aGn4ek5", "cD_kEsJqn", "BmJhhEjPU", "wnpDrIU5Y", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "YxAUZlgP8_default", "css", "FramerZNc7qfYHq", "withCSS", "ZNc7qfYHq_default", "addPropertyControls", "ControlType", "MainButton2025Controls", "addFonts", "MainButton2025Fonts", "__FramerMetadata__", "BuaVewDhZ_exports", "__export", "__FramerMetadata__", "BuaVewDhZ_default", "MaterialFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "cardImage", "height", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "tI4jPIjFq", "rvAo6FB5G", "pIBPI7bhS", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramercoxzlrGBo", "withCSS", "coxzlrGBo_default", "addPropertyControls", "ControlType", "addFonts", "CardResourceCardFonts", "getFonts", "coxzlrGBo_default", "MotionDivWithHeaderMenuClick1va3hcd", "withCodeBoundaryForOverrides", "motion", "withHeaderMenuClick", "MotionDivWithHeaderMenuClickpx5b6r", "MotionDivWithHeaderMenuClick9uc65l", "MotionDivWithHeaderMenuClick17xjue5", "MotionDivWithHeaderMenuClick1l1ijr5", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "transition2", "transition3", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "JXmWagFDy", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "LayoutGroup", "u", "RichText", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "css", "FramerBuaVewDhZ", "withCSS", "BuaVewDhZ_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "CardResourceCardFonts", "getFonts", "coxzlrGBo_default", "MotionDivWithHeaderMenuClickumkn0p", "withCodeBoundaryForOverrides", "motion", "withHeaderMenuClick", "MotionDivWithHeaderMenuClick1ir7r7i", "MotionDivWithHeaderMenuClickk2uiyb", "MotionDivWithHeaderMenuClickg36ydb", "MotionDivWithHeaderMenuClickyhqe1y", "MotionDivWithHeaderMenuClickqs7k7h", "MotionDivWithHeaderMenuClick1ikjkj9", "MotionDivWithHeaderMenuClick1y334om", "MotionDivWithHeaderMenuClickwzocs8", "MotionDivWithHeaderMenuClick8r4iyl", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "transition2", "transition3", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "hover", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "IuB87oueG", "UONv9KzPh", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1c34sce", "args", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "LayoutGroup", "u", "RichText", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "css", "FramerIE4mCIbED", "withCSS", "IE4mCIbED_default", "addPropertyControls", "ControlType", "addFonts", "MaterialFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "link2", "newTab", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "mI914ZxSS", "bdahDCk7z", "BCQSeLBGI", "XxGjU9O7l", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "Link", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramervQ79k8B3o", "withCSS", "vQ79k8B3o_default", "addPropertyControls", "ControlType", "addFonts", "SiteButtonArrowFonts", "getFonts", "vQ79k8B3o_default", "MotionDivWithHeaderMenuClickod0k1b", "withCodeBoundaryForOverrides", "motion", "withHeaderMenuClick", "MotionDivWithHeaderMenuClick1hj33m7", "MotionDivWithHeaderMenuClick13k0r44", "MotionDivWithHeaderMenuClickclb6h2", "MotionDivWithHeaderMenuClickx7s3zq", "MotionDivWithHeaderMenuClick1m3lv1u", "MotionDivWithHeaderMenuClick3ovhb3", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "transition2", "transition3", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "router", "useRouter", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "css", "FramerW4pBh3E74", "withCSS", "W4pBh3E74_default", "addPropertyControls", "ControlType", "addFonts", "SiteButtonArrowFonts", "getFonts", "vQ79k8B3o_default", "MotionDivWithHeaderMenuClicki73sxg", "withCodeBoundaryForOverrides", "motion", "withHeaderMenuClick", "MotionDivWithHeaderMenuClickcdknt4", "MotionDivWithHeaderMenuClick1x6ms8y", "MotionDivWithHeaderMenuClick1y8suen", "MotionDivWithHeaderMenuClick1u8448a", "MotionDivWithHeaderMenuClickysigej", "MotionDivWithHeaderMenuClick6v33dd", "MotionDivWithHeaderMenuClickzctr0h", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "transition2", "transition3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "LayoutGroup", "u", "RichText", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "css", "FramerybJIMxfIa", "withCSS", "ybJIMxfIa_default", "addPropertyControls", "ControlType", "addFonts", "MaterialFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "fill", "height", "iconVisible", "id", "link", "tap", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "e2gnAX1bS", "cePvWGYpp", "eR21mtUqT", "lyqnjuGWp", "kBY1uSXqQ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3t2bh3", "args", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Framerl4AtbBukW", "withCSS", "l4AtbBukW_default", "addPropertyControls", "ControlType", "addFonts", "SiteButtonArrowFonts", "getFonts", "vQ79k8B3o_default", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "transition2", "transition3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "router", "useRouter", "LayoutGroup", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "css", "Framero_nFYTkx_", "withCSS", "o_nFYTkx_default", "addPropertyControls", "ControlType", "addFonts", "ButtonNavDropdownFonts", "getFonts", "l4AtbBukW_default", "NavigationSolutionsFonts", "ybJIMxfIa_default", "NavigationIndustriesFonts", "IE4mCIbED_default", "NavigationCompanyFonts", "o_nFYTkx_default", "NavigationResourcesFonts", "W4pBh3E74_default", "NavigationPlatformFonts", "BuaVewDhZ_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", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "lyqnjuGWp1xcvv5t", "args", "lyqnjuGWp1y0hhjp", "lyqnjuGWpx9jqzm", "lyqnjuGWpf62209", "lyqnjuGWp1rnndzk", "lyqnjuGWpf6zdb0", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "router", "useRouter", "isDisplayed3", "isDisplayed4", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "css", "FramerGX5HFbuMH", "withCSS", "GX5HFbuMH_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", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "SVG", "css", "FramerkDrZs2M2R", "withCSS", "kDrZs2M2R_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background2", "height", "hover7", "id", "tap2", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "XvKj2WK6Q", "iwpUBbA_a", "V_mdeIg77", "ruDDc5HKQ", "vLaR6_i7ALA60stj9k", "mfAN6OFNqLA60stj9k", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnteradorln", "args", "onTap1aci1jd", "scopingClassNames", "cx", "LayoutGroup", "RichText", "css", "Framern0mleuK5n", "withCSS", "n0mleuK5n_default", "addPropertyControls", "ControlType", "addFonts", "ButtonMainButtonFinalCopy2Fonts", "getFonts", "n0mleuK5n_default", "MotionAWithLoginMainNavr3zuzb", "withCodeBoundaryForOverrides", "motion", "withLoginMainNav", "ButtonMainButtonFinalControls", "getPropertyControls", "LA60stj9k_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "click", "contactSales", "height", "id", "link", "newTab", "title", "variant2", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "SzrlCTTKi", "C5IXoGfex", "Snjtyf3an", "Xj0G7A4hE", "AN9e8q7tc", "lb__kXgsJ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap175rlbd", "args", "scopingClassNames", "cx", "LayoutGroup", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerMLmHJeYwx", "withCSS", "MLmHJeYwx_default", "addPropertyControls", "ControlType", "addFonts", "ButtonMainButtonFinalCopyFonts", "getFonts", "P875og59P_default", "ButtonMainButtonFinalControls", "getPropertyControls", "LA60stj9k_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "contactSales", "height", "id", "title", "variant2", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "SzrlCTTKi", "C5IXoGfex", "Snjtyf3an", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1ewyh7u", "args", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "P875og59P_default", "css", "FramerxnuEhAA7W", "withCSS", "xnuEhAA7W_default", "addPropertyControls", "ControlType", "ButtonMainButtonFinalControls", "addFonts", "ButtonMainButtonFinalCopyFonts"]
}
