{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/X3k1rkxRbuFrakoEdJqa/iTsmSpuZGUmG8JU37Fej/TNA_region_override.js", "ssg:https://framerusercontent.com/modules/9f3zXhYnIlPVL6cnMW8o/M3QUEZEsTTkP1sS9n4v9/cyivFD_GA.js", "ssg:https://framerusercontent.com/modules/GLgEY8SJJ1kMWv3oFmJR/1HKZGPOuRdTFYFJdkuTV/NT_murlTP.js", "ssg:https://framerusercontent.com/modules/GShBZ5z4AsJwDXiDsf3i/u0806MIHL7SRczyMyb9S/MEXtM33r1.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withSignInRedirect(Component){return props=>{if(typeof window===\"undefined\"){return /*#__PURE__*/_jsx(Component,{...props});}const url=window.location.href.indexOf(\"au\")!=-1?\"https://v2-au.thenoiseapp.com\":\"https://app.thenoiseapp.com/sign-in\";return /*#__PURE__*/_jsx(\"a\",{href:url,style:{textDecoration:\"none\"},children:/*#__PURE__*/_jsx(Component,{...props})});};}export function withRotate(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,whileHover:{scale:1.05}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSignInRedirect\":{\"type\":\"reactHoc\",\"name\":\"withSignInRedirect\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TNA_region_override.map", "// Generated by Framer (ba0a5a9)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"JUJZkhN4B\",\"sv65oRk1T\",\"aTRSfC89O\"];const serializationHash=\"framer-6uQIm\";const variantClassNames={aTRSfC89O:\"framer-v-1kv4jdb\",JUJZkhN4B:\"framer-v-d1fqfk\",sv65oRk1T:\"framer-v-1k32h54\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Arrow Left\":\"aTRSfC89O\",\"Arrow Right\":\"sv65oRk1T\",\"No Arrows\":\"JUJZkhN4B\"};const getProps=({background,buttonText,click,height,id,shadow,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,EgDtCG4Be:click!==null&&click!==void 0?click:props.EgDtCG4Be,RxkA5XVqz:(_ref=buttonText!==null&&buttonText!==void 0?buttonText:props.RxkA5XVqz)!==null&&_ref!==void 0?_ref:\"Button\",S3_GBOPhN:(_ref1=shadow!==null&&shadow!==void 0?shadow:props.S3_GBOPhN)!==null&&_ref1!==void 0?_ref1:[{blur:5,color:\"rgba(0,0,0,0.25)\",diffusion:.5,focus:.5,inset:false,spread:0,type:\"box\",x:0,y:2}],variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"JUJZkhN4B\",XeQWRsdcX:(_ref3=background!==null&&background!==void 0?background:props.XeQWRsdcX)!==null&&_ref3!==void 0?_ref3:\"rgb(0, 75, 75)\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,RxkA5XVqz,XeQWRsdcX,S3_GBOPhN,EgDtCG4Be,IBpNI_SlWFmJeWg_2P,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"JUJZkhN4B\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTaphfb124=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(EgDtCG4Be){const res=await EgDtCG4Be(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"aTRSfC89O\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"sv65oRk1T\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-d1fqfk\",className,classNames),\"data-framer-name\":\"No Arrows\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"JUJZkhN4B\",onTap:onTaphfb124,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--kqoj2u\":S3_GBOPhN,backgroundColor:XeQWRsdcX,borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"var(--kqoj2u)\",...style},...addPropertyOverrides({aTRSfC89O:{\"data-framer-name\":\"Arrow Left\"},sv65oRk1T:{\"data-framer-name\":\"Arrow Right\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ht2ks1\",\"data-framer-name\":\"arrow-left\",layoutDependency:layoutDependency,layoutId:\"axJowmayv\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-rtbt8g\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"tQf1Ipyk8\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M16 7.00008V9.00008H3.99997L9.49997 14.5001L8.07997 15.9201L0.159973 8.00008L8.07997 0.0800781L9.49997 1.50008L3.99997 7.00008H16Z\" fill=\"#FAFAFA\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNzAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-IBpNI_SlW-FmJeWg_2P))\"},children:\"Button\"})}),className:\"framer-16qbv7f\",\"data-framer-name\":\"Button\",fonts:[\"GF;Public Sans-700\"],layoutDependency:layoutDependency,layoutId:\"Sxwv7gxGT\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-IBpNI_SlW-FmJeWg_2P)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-IBpNI_SlW-FmJeWg_2P\":IBpNI_SlWFmJeWg_2P},text:RxkA5XVqz,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-11z172z\",\"data-framer-name\":\"arrow-right\",layoutDependency:layoutDependency,layoutId:\"mcqnNsreL\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-urzvbo\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"qy8pT0oTV\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 7.00008V9.00008H12L6.5 14.5001L7.92 15.9201L15.84 8.00008L7.92 0.0800781L6.5 1.50008L12 7.00008H0Z\" fill=\"#FAFAFA\"/>\\n</svg>\\n',withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6uQIm.framer-680tyz, .framer-6uQIm .framer-680tyz { display: block; }\",\".framer-6uQIm.framer-d1fqfk { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; min-width: 100px; overflow: visible; padding: 12px 16px 12px 16px; position: relative; width: min-content; }\",\".framer-6uQIm .framer-1ht2ks1, .framer-6uQIm .framer-11z172z { flex: none; height: 24px; overflow: hidden; position: relative; width: 24px; }\",\".framer-6uQIm .framer-rtbt8g, .framer-6uQIm .framer-urzvbo { bottom: 4px; flex: none; left: 4px; position: absolute; right: 4px; top: 4px; }\",\".framer-6uQIm .framer-16qbv7f { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6uQIm.framer-d1fqfk { gap: 0px; } .framer-6uQIm.framer-d1fqfk > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-6uQIm.framer-d1fqfk > :first-child { margin-left: 0px; } .framer-6uQIm.framer-d1fqfk > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"100px\",null,null,null]},\"sv65oRk1T\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"100px\",null,null,null]},\"aTRSfC89O\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"100px\",null,null,null]}}}\n * @framerVariables {\"RxkA5XVqz\":\"buttonText\",\"XeQWRsdcX\":\"background\",\"S3_GBOPhN\":\"shadow\",\"EgDtCG4Be\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercyivFD_GA=withCSS(Component,css,\"framer-6uQIm\");export default FramercyivFD_GA;FramercyivFD_GA.displayName=\"Button\";FramercyivFD_GA.defaultProps={height:48,width:100};addPropertyControls(FramercyivFD_GA,{variant:{options:[\"JUJZkhN4B\",\"sv65oRk1T\",\"aTRSfC89O\"],optionTitles:[\"No Arrows\",\"Arrow Right\",\"Arrow Left\"],title:\"Variant\",type:ControlType.Enum},RxkA5XVqz:{defaultValue:\"Button\",displayTextArea:false,title:\"Button text\",type:ControlType.String},XeQWRsdcX:{defaultValue:\"rgb(0, 75, 75)\",title:\"Background\",type:ControlType.Color},S3_GBOPhN:{defaultValue:[{blur:5,color:\"rgba(0,0,0,0.25)\",diffusion:.5,focus:.5,inset:false,spread:0,type:\"box\",x:0,y:2}],title:\"Shadow\",type:ControlType.BoxShadow},EgDtCG4Be:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramercyivFD_GA,[{explicitInter:true,fonts:[{family:\"Public Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/publicsans/v18/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymu8Z65xg0pX189fg.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercyivFD_GA\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"48\",\"framerVariables\":\"{\\\"RxkA5XVqz\\\":\\\"buttonText\\\",\\\"XeQWRsdcX\\\":\\\"background\\\",\\\"S3_GBOPhN\\\":\\\"shadow\\\",\\\"EgDtCG4Be\\\":\\\"click\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"100\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"100px\\\",null,null,null]},\\\"sv65oRk1T\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"100px\\\",null,null,null]},\\\"aTRSfC89O\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"100px\\\",null,null,null]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cyivFD_GA.map", "// Generated by Framer (4d22d44)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withSignInRedirect}from\"https://framerusercontent.com/modules/X3k1rkxRbuFrakoEdJqa/iTsmSpuZGUmG8JU37Fej/TNA_region_override.js\";import Button,*as ButtonInfo from\"https://framerusercontent.com/modules/9f3zXhYnIlPVL6cnMW8o/M3QUEZEsTTkP1sS9n4v9/cyivFD_GA.js\";const ButtonFonts=getFonts(Button);const ButtonWithSignInRedirectWithMappedReactProps1v1ipky=withMappedReactProps(withSignInRedirect(Button),ButtonInfo);const cycleOrder=[\"fpCVOkQAH\",\"C2kwkExmw\",\"Abmc6vI4e\"];const serializationHash=\"framer-XrSEp\";const variantClassNames={Abmc6vI4e:\"framer-v-1wibbww\",C2kwkExmw:\"framer-v-xijhqz\",fpCVOkQAH:\"framer-v-1o2o3fo\"};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={\"Mobile Open\":\"Abmc6vI4e\",Desktop:\"fpCVOkQAH\",Mobile:\"C2kwkExmw\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"fpCVOkQAH\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fpCVOkQAH\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapyb1agx=activeVariantCallback(async(...args)=>{setVariant(\"Abmc6vI4e\");});const onTapguc0zc=activeVariantCallback(async(...args)=>{setVariant(\"C2kwkExmw\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"C2kwkExmw\",\"Abmc6vI4e\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"C2kwkExmw\",\"Abmc6vI4e\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1o2o3fo\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"fpCVOkQAH\",ref:ref??ref1,style:{backgroundColor:\"rgb(0, 0, 40)\",...style},...addPropertyOverrides({Abmc6vI4e:{\"data-framer-name\":\"Mobile Open\"},C2kwkExmw:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-23kv88\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"g5dlVjLZn\",style:{backgroundColor:\"rgb(0, 0, 40)\"},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"aQjw4SsOY\"},nodeId:\"ITbkV5uqq\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(8+((componentViewport?.height||64)-16-48)/2)+4.5),pixelHeight:2400,pixelWidth:16800,positionX:\"center\",positionY:\"center\",sizes:\"184px\",src:\"https://framerusercontent.com/images/JBhfgDgUVgPui2NFpDbOkNQ23Y.png\",srcSet:\"https://framerusercontent.com/images/JBhfgDgUVgPui2NFpDbOkNQ23Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/JBhfgDgUVgPui2NFpDbOkNQ23Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JBhfgDgUVgPui2NFpDbOkNQ23Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JBhfgDgUVgPui2NFpDbOkNQ23Y.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/JBhfgDgUVgPui2NFpDbOkNQ23Y.png 16800w\"},className:\"framer-87qj96 framer-1096ocl\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"ITbkV5uqq\",...addPropertyOverrides({Abmc6vI4e:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(8+((componentViewport?.height||55)-16-39)/2)+0),pixelHeight:2400,pixelWidth:16800,positionX:\"center\",positionY:\"center\",sizes:\"184px\",src:\"https://framerusercontent.com/images/JBhfgDgUVgPui2NFpDbOkNQ23Y.png\",srcSet:\"https://framerusercontent.com/images/JBhfgDgUVgPui2NFpDbOkNQ23Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/JBhfgDgUVgPui2NFpDbOkNQ23Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JBhfgDgUVgPui2NFpDbOkNQ23Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JBhfgDgUVgPui2NFpDbOkNQ23Y.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/JBhfgDgUVgPui2NFpDbOkNQ23Y.png 16800w\"}},C2kwkExmw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(8+((componentViewport?.height||55)-16-39)/2)+0),pixelHeight:2400,pixelWidth:16800,positionX:\"center\",positionY:\"center\",sizes:\"184px\",src:\"https://framerusercontent.com/images/JBhfgDgUVgPui2NFpDbOkNQ23Y.png\",srcSet:\"https://framerusercontent.com/images/JBhfgDgUVgPui2NFpDbOkNQ23Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/JBhfgDgUVgPui2NFpDbOkNQ23Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JBhfgDgUVgPui2NFpDbOkNQ23Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JBhfgDgUVgPui2NFpDbOkNQ23Y.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/JBhfgDgUVgPui2NFpDbOkNQ23Y.png 16800w\"}}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g2s170\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"CcxwCTI9F\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CWFYunV_K\"},nodeId:\"dbTsHJQqf\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ye3ul0 framer-1096ocl\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"dbTsHJQqf\",style:{backgroundColor:\"rgb(0, 0, 40)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 2px 4px 0px rgba(26, 26, 26, 0.20000000298023224)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNzAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 250, 250))\"},children:\"Case studies\"})}),className:\"framer-pqmp6f\",\"data-framer-name\":\"Button\",fonts:[\"GF;Public Sans-700\"],layoutDependency:layoutDependency,layoutId:\"xHbSZ2pVs\",style:{\"--extracted-r6o4lv\":\"rgb(250, 250, 250)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"V9TO778iG\"},nodeId:\"BMCcIekGK\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1gfh0ti framer-1096ocl\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"BMCcIekGK\",style:{backgroundColor:\"rgb(0, 0, 40)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 2px 4px 0px rgba(26, 26, 26, 0.20000000298023224)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNzAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 250, 250))\"},children:\"Features\"})}),className:\"framer-plaubf\",\"data-framer-name\":\"Button\",fonts:[\"GF;Public Sans-700\"],layoutDependency:layoutDependency,layoutId:\"wUb3kL0XN\",style:{\"--extracted-r6o4lv\":\"rgb(250, 250, 250)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FEDRnvkHX\"},nodeId:\"dEe951PfT\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-wj1grr framer-1096ocl\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"dEe951PfT\",style:{backgroundColor:\"rgb(0, 0, 40)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 2px 4px 0px rgba(26, 26, 26, 0.20000000298023224)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNzAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 250, 250))\"},children:\"Enforcement\"})}),className:\"framer-k39f2f\",\"data-framer-name\":\"Button\",fonts:[\"GF;Public Sans-700\"],layoutDependency:layoutDependency,layoutId:\"p1mPOqW8r\",style:{\"--extracted-r6o4lv\":\"rgb(250, 250, 250)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.rheglobal.com/contact\",nodeId:\"NnWzfSr12\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-184yyea framer-1096ocl\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"NnWzfSr12\",style:{backgroundColor:\"rgb(0, 0, 40)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 2px 4px 0px rgba(26, 26, 26, 0.20000000298023224)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNzAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 250, 250))\"},children:\"Book demo\"})}),className:\"framer-1gcsdng\",\"data-framer-name\":\"Button\",fonts:[\"GF;Public Sans-700\"],layoutDependency:layoutDependency,layoutId:\"cRVkldM_N\",style:{\"--extracted-r6o4lv\":\"rgb(250, 250, 250)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+(8+((componentViewport?.height||64)-16-48)/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bn0cic-container\",layoutDependency:layoutDependency,layoutId:\"c41a4rKMe-container\",children:/*#__PURE__*/_jsx(ButtonWithSignInRedirectWithMappedReactProps1v1ipky,{height:\"100%\",id:\"c41a4rKMe\",layoutId:\"c41a4rKMe\",RxkA5XVqz:\"Sign in\",S3_GBOPhN:\"0px 2px 5px 0px rgba(0,0,0,0.25)\",variant:\"JUJZkhN4B\",width:\"100%\",XeQWRsdcX:\"rgb(255, 255, 255)\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kpe3qz\",\"data-framer-name\":\"menu\",layoutDependency:layoutDependency,layoutId:\"rKMQsbClY\",...addPropertyOverrides({Abmc6vI4e:{\"data-highlight\":true,onTap:onTapguc0zc},C2kwkExmw:{\"data-highlight\":true,onTap:onTapyb1agx}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-18y17ct\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"S0pKjHsgl\",svg:'<svg width=\"24\" height=\"16\" viewBox=\"0 0 24 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 0H24V2.66667H0V0ZM0 6.66667H24V9.33333H0V6.66667ZM0 13.3333H24V16H0V13.3333Z\" fill=\"#FAFAFA\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xyl3kd\",layoutDependency:layoutDependency,layoutId:\"O5AlU2avh\",style:{backgroundColor:\"rgb(0, 0, 40)\",opacity:1},variants:{C2kwkExmw:{opacity:0}},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CWFYunV_K\"},nodeId:\"K6YmTwMU2\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-e8pcfm framer-1096ocl\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"K6YmTwMU2\",style:{backgroundColor:\"rgb(0, 0, 40)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 2px 4px 0px rgba(26, 26, 26, 0.20000000298023224)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNzAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 250, 250))\"},children:\"Case studies\"})}),className:\"framer-x68cc1\",\"data-framer-name\":\"Button\",fonts:[\"GF;Public Sans-700\"],layoutDependency:layoutDependency,layoutId:\"mglALoUB6\",style:{\"--extracted-r6o4lv\":\"rgb(250, 250, 250)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CWFYunV_K\"},nodeId:\"IX981P6nM\",openInNewTab:false,...addPropertyOverrides({Abmc6vI4e:{href:{webPageId:\"V9TO778iG\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1dt5maq framer-1096ocl\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"IX981P6nM\",style:{backgroundColor:\"rgb(0, 0, 40)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 2px 4px 0px rgba(26, 26, 26, 0.20000000298023224)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNzAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 250, 250))\"},children:\"Case studies\"})}),className:\"framer-mpbd29\",\"data-framer-name\":\"Button\",fonts:[\"GF;Public Sans-700\"],layoutDependency:layoutDependency,layoutId:\"ySABe6dYj\",style:{\"--extracted-r6o4lv\":\"rgb(250, 250, 250)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Abmc6vI4e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNzAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 250, 250))\"},children:\"Features\"})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"V9TO778iG\"},nodeId:\"O5tmT7CyC\",openInNewTab:false,...addPropertyOverrides({Abmc6vI4e:{href:{webPageId:\"FEDRnvkHX\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-u2vavf framer-1096ocl\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"O5tmT7CyC\",style:{backgroundColor:\"rgb(0, 0, 40)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 2px 4px 0px rgba(26, 26, 26, 0.20000000298023224)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNzAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 250, 250))\"},children:\"Features\"})}),className:\"framer-1xsewvo\",\"data-framer-name\":\"Button\",fonts:[\"GF;Public Sans-700\"],layoutDependency:layoutDependency,layoutId:\"Gk4nWabIV\",style:{\"--extracted-r6o4lv\":\"rgb(250, 250, 250)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Abmc6vI4e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNzAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 250, 250))\"},children:\"Enforcement\"})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.rheglobal.com/contact\",nodeId:\"DvVYspsXX\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1st91tf framer-1096ocl\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"DvVYspsXX\",style:{backgroundColor:\"rgb(0, 0, 40)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 2px 4px 0px rgba(26, 26, 26, 0.20000000298023224)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNzAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 250, 250))\"},children:\"Book demo\"})}),className:\"framer-1lg7wff\",\"data-framer-name\":\"Button\",fonts:[\"GF;Public Sans-700\"],layoutDependency:layoutDependency,layoutId:\"xrvZdngon\",style:{\"--extracted-r6o4lv\":\"rgb(250, 250, 250)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,...addPropertyOverrides({Abmc6vI4e:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+55+10+232},C2kwkExmw:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+55+10+232}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nedez1-container\",layoutDependency:layoutDependency,layoutId:\"vWhxYJWVc-container\",children:/*#__PURE__*/_jsx(ButtonWithSignInRedirectWithMappedReactProps1v1ipky,{height:\"100%\",id:\"vWhxYJWVc\",layoutId:\"vWhxYJWVc\",RxkA5XVqz:\"Sign in\",S3_GBOPhN:\"0px 2px 5px 0px rgba(0,0,0,0.25)\",style:{width:\"100%\"},variant:\"JUJZkhN4B\",width:\"100%\",XeQWRsdcX:\"rgb(255, 255, 255)\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XrSEp.framer-1096ocl, .framer-XrSEp .framer-1096ocl { display: block; }\",\".framer-XrSEp.framer-1o2o3fo { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 40px 8px 0px; position: relative; width: 1200px; }\",\".framer-XrSEp .framer-23kv88 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 1px; }\",\".framer-XrSEp .framer-87qj96 { flex: none; height: 39px; position: relative; text-decoration: none; width: 184px; }\",\".framer-XrSEp .framer-1g2s170 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-XrSEp .framer-1ye3ul0, .framer-XrSEp .framer-1gfh0ti, .framer-XrSEp .framer-wj1grr, .framer-XrSEp .framer-184yyea { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 12px 16px 12px 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-XrSEp .framer-pqmp6f, .framer-XrSEp .framer-plaubf, .framer-XrSEp .framer-k39f2f, .framer-XrSEp .framer-1gcsdng, .framer-XrSEp .framer-x68cc1, .framer-XrSEp .framer-mpbd29, .framer-XrSEp .framer-1xsewvo, .framer-XrSEp .framer-1lg7wff { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-XrSEp .framer-1bn0cic-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-XrSEp .framer-1kpe3qz { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: hidden; position: relative; width: 32px; }\",\".framer-XrSEp .framer-18y17ct { bottom: 8px; flex: none; left: 4px; position: absolute; right: 4px; top: 8px; }\",\".framer-XrSEp .framer-1xyl3kd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 10px; position: absolute; right: 0px; top: 55px; z-index: 1; }\",\".framer-XrSEp .framer-e8pcfm, .framer-XrSEp .framer-1dt5maq, .framer-XrSEp .framer-u2vavf, .framer-XrSEp .framer-1st91tf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 12px 16px 12px 16px; position: relative; text-decoration: none; width: 100%; }\",\".framer-XrSEp .framer-1nedez1-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XrSEp.framer-1o2o3fo, .framer-XrSEp .framer-23kv88, .framer-XrSEp .framer-1g2s170, .framer-XrSEp .framer-1ye3ul0, .framer-XrSEp .framer-1gfh0ti, .framer-XrSEp .framer-wj1grr, .framer-XrSEp .framer-184yyea, .framer-XrSEp .framer-1xyl3kd, .framer-XrSEp .framer-e8pcfm, .framer-XrSEp .framer-1dt5maq, .framer-XrSEp .framer-u2vavf, .framer-XrSEp .framer-1st91tf { gap: 0px; } .framer-XrSEp.framer-1o2o3fo > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-XrSEp.framer-1o2o3fo > :first-child, .framer-XrSEp .framer-23kv88 > :first-child, .framer-XrSEp .framer-1g2s170 > :first-child, .framer-XrSEp .framer-1ye3ul0 > :first-child, .framer-XrSEp .framer-1gfh0ti > :first-child, .framer-XrSEp .framer-wj1grr > :first-child, .framer-XrSEp .framer-184yyea > :first-child, .framer-XrSEp .framer-e8pcfm > :first-child, .framer-XrSEp .framer-1dt5maq > :first-child, .framer-XrSEp .framer-u2vavf > :first-child, .framer-XrSEp .framer-1st91tf > :first-child { margin-left: 0px; } .framer-XrSEp.framer-1o2o3fo > :last-child, .framer-XrSEp .framer-23kv88 > :last-child, .framer-XrSEp .framer-1g2s170 > :last-child, .framer-XrSEp .framer-1ye3ul0 > :last-child, .framer-XrSEp .framer-1gfh0ti > :last-child, .framer-XrSEp .framer-wj1grr > :last-child, .framer-XrSEp .framer-184yyea > :last-child, .framer-XrSEp .framer-e8pcfm > :last-child, .framer-XrSEp .framer-1dt5maq > :last-child, .framer-XrSEp .framer-u2vavf > :last-child, .framer-XrSEp .framer-1st91tf > :last-child { margin-right: 0px; } .framer-XrSEp .framer-23kv88 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-XrSEp .framer-1g2s170 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-XrSEp .framer-1ye3ul0 > *, .framer-XrSEp .framer-1gfh0ti > *, .framer-XrSEp .framer-wj1grr > *, .framer-XrSEp .framer-184yyea > *, .framer-XrSEp .framer-e8pcfm > *, .framer-XrSEp .framer-1dt5maq > *, .framer-XrSEp .framer-u2vavf > *, .framer-XrSEp .framer-1st91tf > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-XrSEp .framer-1xyl3kd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-XrSEp .framer-1xyl3kd > :first-child { margin-top: 0px; } .framer-XrSEp .framer-1xyl3kd > :last-child { margin-bottom: 0px; } }\",\".framer-XrSEp.framer-v-xijhqz.framer-1o2o3fo, .framer-XrSEp.framer-v-1wibbww.framer-1o2o3fo { width: 600px; }\",\".framer-XrSEp.framer-v-xijhqz .framer-23kv88, .framer-XrSEp.framer-v-1wibbww .framer-23kv88 { padding: 0px 16px 0px 16px; }\",\".framer-XrSEp.framer-v-xijhqz .framer-1kpe3qz, .framer-XrSEp.framer-v-1wibbww .framer-1kpe3qz { cursor: pointer; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"C2kwkExmw\":{\"layout\":[\"fixed\",\"auto\"]},\"Abmc6vI4e\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNT_murlTP=withCSS(Component,css,\"framer-XrSEp\");export default FramerNT_murlTP;FramerNT_murlTP.displayName=\"Product Header\";FramerNT_murlTP.defaultProps={height:64,width:1200};addPropertyControls(FramerNT_murlTP,{variant:{options:[\"fpCVOkQAH\",\"C2kwkExmw\",\"Abmc6vI4e\"],optionTitles:[\"Desktop\",\"Mobile\",\"Mobile Open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerNT_murlTP,[{explicitInter:true,fonts:[{family:\"Public Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/publicsans/v18/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymu8Z65xg0pX189fg.woff2\",weight:\"700\"}]},...ButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNT_murlTP\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C2kwkExmw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Abmc6vI4e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"64\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ba0a5a9)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-JFCqD .framer-styles-preset-1b10bex:not(.rich-text-wrapper), .framer-JFCqD .framer-styles-preset-1b10bex.rich-text-wrapper a { --framer-link-current-text-color: #ffffff; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #ffffff; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #ffffff; --framer-link-text-decoration: none; }\"];export const className=\"framer-JFCqD\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "withSignInRedirect", "Component", "props", "window", "p", "url", "cyivFD_GA_exports", "__export", "__FramerMetadata__", "cyivFD_GA_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", "background", "buttonText", "click", "height", "id", "shadow", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "RxkA5XVqz", "XeQWRsdcX", "S3_GBOPhN", "EgDtCG4Be", "IBpNI_SlWFmJeWg_2P", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTaphfb124", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "RichText2", "css", "FramercyivFD_GA", "withCSS", "cyivFD_GA_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "ButtonFonts", "getFonts", "cyivFD_GA_default", "ButtonWithSignInRedirectWithMappedReactProps1v1ipky", "withMappedReactProps", "withSignInRedirect", "cyivFD_GA_exports", "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", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapyb1agx", "args", "onTapguc0zc", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Link", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "SVG", "css", "FramerNT_murlTP", "withCSS", "NT_murlTP_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className"]
}
