{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framerusercontent.com/modules/vkpQwdHtb7IC5tZrZSpR/wrZngDLZTP5XUA0lcPVm/mBhY74yd2.js", "ssg:https://framerusercontent.com/modules/Kgt2RyounMNdeQNTa1s2/gMP9wyBHZjNPPTkcQzln/kpCH9ru9y.js", "ssg:https://framerusercontent.com/modules/MuoXLAgxGtrRq84ansaC/V1PoMGchvYTFMw8iFzBL/U1sL0xlX_.js", "ssg:https://framerusercontent.com/modules/2lUl2C9lmfY99nw1L8FX/8R1ZgG051So7rws0F4UY/xZcdViJ80.js", "ssg:https://framerusercontent.com/modules/u0NnsbssvqEwGw1cq6t1/ooRrsO8TDuyHI4gor1AP/Pg3Xcw979.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerDisableUnlink\n */ export default function Embed({type,url,html}){if(type===\"url\"&&url){return /*#__PURE__*/ _jsx(EmbedURL,{url:url});}if(type===\"html\"&&html){return /*#__PURE__*/ _jsx(EmbedHTML,{html:html});}return /*#__PURE__*/ _jsx(Instructions,{});};addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",displayTextArea:true,type:ControlType.String,hidden(props){return props.type!==\"html\";}}});function Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url}){// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(!url.startsWith(\"https://\")){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Unsupported protocol.\"});}if(state===undefined){return /*#__PURE__*/ _jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/ _jsx(ErrorMessage,{message:state.message});}if(state===true){const message=`Can't embed ${url} due to its content security policy.`;return /*#__PURE__*/ _jsx(ErrorMessage,{message:message});}return /*#__PURE__*/ _jsx(\"iframe\",{src:url,style:iframeStyle,loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html}){const ref=useRef();// If the HTML contains a script tag we can't use\n// dangerouslySetInnerHTML because it doesn't execute\n// scripts on the client. Otherwise, we can benefit\n// from SSG by using dangerouslySetInnerHTML.\nconst hasScript=html.includes(\"</script>\");useEffect(()=>{if(!hasScript)return;const div=ref.current;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html,hasScript]);return /*#__PURE__*/ _jsx(\"div\",{ref:ref,style:htmlStyle,dangerouslySetInnerHTML:!hasScript?{__html:html}:undefined});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}const centerTextStyle={textAlign:\"center\",minWidth:140};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (be6943a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"TeM4CZvd3\",\"HEf36nKne\"];const serializationHash=\"framer-Vr9Rg\";const variantClassNames={HEf36nKne:\"framer-v-38jvzc\",TeM4CZvd3:\"framer-v-1h4j91t\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Active:\"HEf36nKne\",Neutral:\"TeM4CZvd3\"};const getProps=({height,id,link,sectionTitle,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,U5wQJwAjV:link!==null&&link!==void 0?link:props.U5wQJwAjV,v5p7mISCA:(_ref=sectionTitle!==null&&sectionTitle!==void 0?sectionTitle:props.v5p7mISCA)!==null&&_ref!==void 0?_ref:\"Section 1 Title\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"TeM4CZvd3\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,v5p7mISCA,U5wQJwAjV,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"TeM4CZvd3\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:U5wQJwAjV,openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1h4j91t\",className,classNames)} framer-1ecfycm`,\"data-framer-name\":\"Neutral\",layoutDependency:layoutDependency,layoutId:\"TeM4CZvd3\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-cff8d241-b94c-4177-84b2-052dc19446b4, rgb(255, 255, 255))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,...style},variants:{HEf36nKne:{backgroundColor:\"rgb(247, 247, 247)\"}},...addPropertyOverrides({HEf36nKne:{\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-at431l\",\"data-framer-name\":\"Bullet\",layoutDependency:layoutDependency,layoutId:\"KZHLvG6hW\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kmf3mk\",layoutDependency:layoutDependency,layoutId:\"Relm0zc8_\",style:{backgroundColor:\"rgb(247, 247, 247)\",borderBottomLeftRadius:99,borderBottomRightRadius:99,borderTopLeftRadius:99,borderTopRightRadius:99},variants:{HEf36nKne:{backgroundColor:\"rgb(254, 85, 85)\"}}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Text Medium\", \"SF Pro Text Medium Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(33, 43, 54, 0.8))\"},children:\"Section 1 Title\"})}),className:\"framer-1qup8i1\",fonts:[\"CUSTOM;SF Pro Text Medium\"],layoutDependency:layoutDependency,layoutId:\"ZK0iYzEmG\",style:{\"--extracted-r6o4lv\":\"rgba(33, 43, 54, 0.8)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:v5p7mISCA,variants:{HEf36nKne:{\"--extracted-r6o4lv\":\"rgb(33, 43, 54)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({HEf36nKne:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Text Medium\", \"SF Pro Text Medium Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(33, 43, 54))\"},children:\"Section 1 Title\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Vr9Rg.framer-1ecfycm, .framer-Vr9Rg .framer-1ecfycm { display: block; }\",\".framer-Vr9Rg.framer-1h4j91t { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: auto; justify-content: flex-start; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; text-decoration: none; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Vr9Rg .framer-at431l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 11px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-Vr9Rg .framer-1kmf3mk { flex: none; height: 2px; overflow: visible; position: relative; width: 8px; }\",\".framer-Vr9Rg .framer-1qup8i1 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Vr9Rg.framer-1h4j91t, .framer-Vr9Rg .framer-at431l { gap: 0px; } .framer-Vr9Rg.framer-1h4j91t > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-Vr9Rg.framer-1h4j91t > :first-child { margin-left: 0px; } .framer-Vr9Rg.framer-1h4j91t > :last-child { margin-right: 0px; } .framer-Vr9Rg .framer-at431l > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Vr9Rg .framer-at431l > :first-child { margin-top: 0px; } .framer-Vr9Rg .framer-at431l > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 39\n * @framerIntrinsicWidth 320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"HEf36nKne\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"v5p7mISCA\":\"sectionTitle\",\"U5wQJwAjV\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermBhY74yd2=withCSS(Component,css,\"framer-Vr9Rg\");export default FramermBhY74yd2;FramermBhY74yd2.displayName=\"HR-Resources/Content navigator\";FramermBhY74yd2.defaultProps={height:39,width:320};addPropertyControls(FramermBhY74yd2,{variant:{options:[\"TeM4CZvd3\",\"HEf36nKne\"],optionTitles:[\"Neutral\",\"Active\"],title:\"Variant\",type:ControlType.Enum},v5p7mISCA:{defaultValue:\"Section 1 Title\",displayTextArea:false,title:\"Section Title\",type:ControlType.String},U5wQJwAjV:{title:\"Link\",type:ControlType.Link}});addFonts(FramermBhY74yd2,[{explicitInter:true,fonts:[{family:\"SF Pro Text Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/2UbBlEz7Y4z9QoIk3ngQNHiKftc.otf\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermBhY74yd2\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"320\",\"framerIntrinsicHeight\":\"39\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HEf36nKne\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"v5p7mISCA\\\":\\\"sectionTitle\\\",\\\"U5wQJwAjV\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mBhY74yd2.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;SF Pro Display Bold\"]);export const fonts=[{family:\"SF Pro Display Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/IIF2UEZb0Je0L8zlTGxO3hIkFI.otf\"}];export const css=['.framer-ui2sQ .framer-styles-preset-1ryd9d3:not(.rich-text-wrapper), .framer-ui2sQ .framer-styles-preset-1ryd9d3.rich-text-wrapper h3 { --framer-font-family: \"SF Pro Display Bold\", \"SF Pro Display Bold Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 24px; --framer-paragraph-spacing: 24px; --framer-text-alignment: start; --framer-text-color: var(--token-46135de8-3a42-4281-809b-c20b62ccf207, #212b36); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-ui2sQ\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"Inter\"]);export const fonts=[];export const css=['.framer-A6PTf .framer-styles-preset-ko3u9e:not(.rich-text-wrapper), .framer-A6PTf .framer-styles-preset-ko3u9e.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 16px; --framer-text-alignment: start; --framer-text-color: rgba(33, 43, 54, 0.88); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1px) and (min-width: 1px) { .framer-A6PTf .framer-styles-preset-ko3u9e:not(.rich-text-wrapper), .framer-A6PTf .framer-styles-preset-ko3u9e.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 16px; --framer-text-alignment: start; --framer-text-color: rgba(33, 43, 54, 0.88); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 0px) and (min-width: 0px) { .framer-A6PTf .framer-styles-preset-ko3u9e:not(.rich-text-wrapper), .framer-A6PTf .framer-styles-preset-ko3u9e.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 10px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 16px; --framer-text-alignment: start; --framer-text-color: rgba(33, 43, 54, 0.88); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-A6PTf\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore as e}from\"framer\";e.loadWebFontsFromSelectors([\"CUSTOM;SF Pro Display Bold\"]);export const fonts=[{family:\"SF Pro Display Bold\",moduleAsset:{localModuleIdentifier:\"local-module:css/xZcdViJ80:default\",url:\"https://framerusercontent.com/assets/IIF2UEZb0Je0L8zlTGxO3hIkFI.otf\"},url:\"https://framerusercontent.com/assets/IIF2UEZb0Je0L8zlTGxO3hIkFI.otf\"}];export const css=['.framer-sJJWe .framer-styles-preset-1qrib3l:not(.rich-text-wrapper), .framer-sJJWe .framer-styles-preset-1qrib3l.rich-text-wrapper h1 { --framer-font-family: \"SF Pro Display Bold\", \"SF Pro Display Bold Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 32px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-959ef76c-410b-43d0-81a6-43fef6fb1eb1, #171313); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 0px) { .framer-sJJWe .framer-styles-preset-1qrib3l:not(.rich-text-wrapper), .framer-sJJWe .framer-styles-preset-1qrib3l.rich-text-wrapper h1 { --framer-font-family: \"SF Pro Display Bold\", \"SF Pro Display Bold Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 28px; --framer-paragraph-spacing: 24px; --framer-text-alignment: start; --framer-text-color: var(--token-959ef76c-410b-43d0-81a6-43fef6fb1eb1, #171313); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-sJJWe\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ee31e22)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,clampRGB,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import PageFooter from\"#framer/local/canvasComponent/IOBnyVxho/IOBnyVxho.js\";import PageNavigation from\"#framer/local/canvasComponent/IzjVZRJSy/IzjVZRJSy.js\";import ButtonPrimary from\"#framer/local/canvasComponent/KM1L2PO9G/KM1L2PO9G.js\";import HRResourcesContentNavigator from\"#framer/local/canvasComponent/mBhY74yd2/mBhY74yd2.js\";import HRGlossary,{enumToDisplayNameFunctions}from\"#framer/local/collection/wIjlADyKi/wIjlADyKi.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle10 from\"#framer/local/css/ASXecdxp2/ASXecdxp2.js\";import*as sharedStyle7 from\"#framer/local/css/bOcub6QiA/bOcub6QiA.js\";import*as sharedStyle3 from\"#framer/local/css/CUY6aMIeq/CUY6aMIeq.js\";import*as sharedStyle12 from\"#framer/local/css/eeySimpnv/eeySimpnv.js\";import*as sharedStyle2 from\"#framer/local/css/h483fAngU/h483fAngU.js\";import*as sharedStyle4 from\"#framer/local/css/kpCH9ru9y/kpCH9ru9y.js\";import*as sharedStyle13 from\"#framer/local/css/LjftCPRBH/LjftCPRBH.js\";import*as sharedStyle11 from\"#framer/local/css/lVnSYyT4u/lVnSYyT4u.js\";import*as sharedStyle6 from\"#framer/local/css/OVfhPdlng/OVfhPdlng.js\";import*as sharedStyle9 from\"#framer/local/css/ro7OPezbn/ro7OPezbn.js\";import*as sharedStyle from\"#framer/local/css/tgLWGEctX/tgLWGEctX.js\";import*as sharedStyle8 from\"#framer/local/css/U1sL0xlX_/U1sL0xlX_.js\";import*as sharedStyle5 from\"#framer/local/css/WR9DOcSGq/WR9DOcSGq.js\";import*as sharedStyle14 from\"#framer/local/css/WSHHm4DVV/WSHHm4DVV.js\";import*as sharedStyle1 from\"#framer/local/css/xZcdViJ80/xZcdViJ80.js\";import metadataProvider from\"#framer/local/webPageMetadata/Pg3Xcw979/Pg3Xcw979.js\";const PageNavigationFonts=getFonts(PageNavigation);const HRResourcesContentNavigatorFonts=getFonts(HRResourcesContentNavigator);const HRResourcesContentNavigatorWithVariantAppearEffect=withVariantAppearEffect(HRResourcesContentNavigator);const EmbedFonts=getFonts(Embed);const ButtonPrimaryFonts=getFonts(ButtonPrimary);const PageFooterFonts=getFonts(PageFooter);const breakpoints={xuE4bnCYS:\"(min-width: 1200px)\",yqenfohGD:\"(max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-PD5iB\";const variantClassNames={xuE4bnCYS:\"framer-v-1e8jaa6\",yqenfohGD:\"framer-v-agkjjz\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"xuE4bnCYS\",Mobile:\"yqenfohGD\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"xuE4bnCYS\"};};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"Pg3Xcw979\",data:HRGlossary,type:\"Collection\"},select:[{collection:\"Pg3Xcw979\",name:\"KUgoFapJL\",type:\"Identifier\"},{collection:\"Pg3Xcw979\",name:\"cmNx0wxZk\",type:\"Identifier\"},{collection:\"Pg3Xcw979\",name:\"XnE3bEGGg\",type:\"Identifier\"},{collection:\"Pg3Xcw979\",name:\"UMVrIVstu\",type:\"Identifier\"},{collection:\"Pg3Xcw979\",name:\"nLsvnQbT5\",type:\"Identifier\"},{collection:\"Pg3Xcw979\",name:\"fbFwEBfbt\",type:\"Identifier\"},{collection:\"Pg3Xcw979\",name:\"Xm3A9sHFb\",type:\"Identifier\"},{collection:\"Pg3Xcw979\",name:\"jJ3eN9FCx\",type:\"Identifier\"},{collection:\"Pg3Xcw979\",name:\"HY5HtGbfD\",type:\"Identifier\"},{collection:\"Pg3Xcw979\",name:\"hrBmVap48\",type:\"Identifier\"},{collection:\"Pg3Xcw979\",name:\"IAegQacOs\",type:\"Identifier\"},{collection:\"Pg3Xcw979\",name:\"ryJStVF6v\",type:\"Identifier\"},{collection:\"Pg3Xcw979\",name:\"Vj9I_CPCd\",type:\"Identifier\"},{collection:\"Pg3Xcw979\",name:\"K7bFOtdeB\",type:\"Identifier\"},{collection:\"Pg3Xcw979\",name:\"q0VA4kAbc\",type:\"Identifier\"},{collection:\"Pg3Xcw979\",name:\"WoHKYcszh\",type:\"Identifier\"},{collection:\"Pg3Xcw979\",name:\"nvbotSFTn\",type:\"Identifier\"},{collection:\"Pg3Xcw979\",name:\"atVtiYzRV\",type:\"Identifier\"},{collection:\"Pg3Xcw979\",name:\"EzmJtrSAE\",type:\"Identifier\"},{collection:\"Pg3Xcw979\",name:\"K0vd5KeAY\",type:\"Identifier\"},{collection:\"Pg3Xcw979\",name:\"yo5sYkHkc\",type:\"Identifier\"},{collection:\"Pg3Xcw979\",name:\"REcOynK0X\",type:\"Identifier\"},{collection:\"Pg3Xcw979\",name:\"Tq1l_E9ib\",type:\"Identifier\"},{collection:\"Pg3Xcw979\",name:\"tBnsMtUfW\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"Pg3Xcw979\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,fbFwEBfbt=getFromCurrentRouteData(\"fbFwEBfbt\"),UMVrIVstu=getFromCurrentRouteData(\"UMVrIVstu\")??\"\",tBnsMtUfW=getFromCurrentRouteData(\"tBnsMtUfW\")??\"#09F\",REcOynK0X=getFromCurrentRouteData(\"REcOynK0X\")??\"\",Tq1l_E9ib=getFromCurrentRouteData(\"Tq1l_E9ib\"),Xm3A9sHFb=getFromCurrentRouteData(\"Xm3A9sHFb\")??\"\",hrBmVap48=getFromCurrentRouteData(\"hrBmVap48\")??\"\",XnE3bEGGg=getFromCurrentRouteData(\"XnE3bEGGg\")??\"\",ryJStVF6v=getFromCurrentRouteData(\"ryJStVF6v\")??\"\",K7bFOtdeB=getFromCurrentRouteData(\"K7bFOtdeB\")??\"\",WoHKYcszh=getFromCurrentRouteData(\"WoHKYcszh\")??\"\",atVtiYzRV=getFromCurrentRouteData(\"atVtiYzRV\")??\"\",K0vd5KeAY=getFromCurrentRouteData(\"K0vd5KeAY\")??\"\",KUgoFapJL=getFromCurrentRouteData(\"KUgoFapJL\")??\"\",IAegQacOs=getFromCurrentRouteData(\"IAegQacOs\")??\"\",jJ3eN9FCx=getFromCurrentRouteData(\"jJ3eN9FCx\"),HY5HtGbfD=getFromCurrentRouteData(\"HY5HtGbfD\")??\"\",Vj9I_CPCd=getFromCurrentRouteData(\"Vj9I_CPCd\")??\"\",q0VA4kAbc=getFromCurrentRouteData(\"q0VA4kAbc\")??\"\",nvbotSFTn=getFromCurrentRouteData(\"nvbotSFTn\")??\"\",EzmJtrSAE=getFromCurrentRouteData(\"EzmJtrSAE\")??\"\",yo5sYkHkc=getFromCurrentRouteData(\"yo5sYkHkc\")??\"\",XnE3bEGGgnebFqOX2g,nLsvnQbT5nebFqOX2g,tWLmZyCp8nebFqOX2g,KUgoFapJLnebFqOX2g,idnebFqOX2g,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"NPDqh73Az\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"yqenfohGD\")return false;return true;};const visible=isSet(hrBmVap48);const router=useRouter();const ref2=React.useRef(null);const visible1=isSet(ryJStVF6v);const ref3=React.useRef(null);const visible2=isSet(K7bFOtdeB);const ref4=React.useRef(null);const visible3=isSet(WoHKYcszh);const ref5=React.useRef(null);const visible4=isSet(atVtiYzRV);const ref6=React.useRef(null);const visible5=isSet(K0vd5KeAY);const ref7=React.useRef(null);const elementId1=useRouteElementId(\"zerJMQEn5\");const ref8=React.useRef(null);const visible6=equals(jJ3eN9FCx,\"gqXayr22v\");const elementId2=useRouteElementId(\"aT32LZ0ea\");const visible7=equals(jJ3eN9FCx,\"nPA1BoHZo\");const elementId3=useRouteElementId(\"vIddqpfrm\");const visible8=equals(jJ3eN9FCx,\"kxHd_kxND\");const elementId4=useRouteElementId(\"nKM49Dl5F\");const visible9=equals(jJ3eN9FCx,\"bhI0T4Wp5\");const elementId5=useRouteElementId(\"s39fVN5tz\");const visible10=equals(jJ3eN9FCx,\"jBeYECj3T\");const elementId6=useRouteElementId(\"JIxVIMtx9\");const elementId7=useRouteElementId(\"zNWh2KKQp\");useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"xuE4bnCYS\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1e8jaa6\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:83,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7hrx9x-container\",\"data-framer-name\":\"Navigation/Desktop\",id:elementId,layoutScroll:true,name:\"Navigation/Desktop\",nodeId:\"NPDqh73Az\",ref:ref1,scopeId:\"Pg3Xcw979\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqenfohGD:{variant:\"atYo29_k7\"}},children:/*#__PURE__*/_jsx(PageNavigation,{height:\"100%\",id:\"NPDqh73Az\",layoutId:\"NPDqh73Az\",My6g8S3l5:true,name:\"Navigation/Desktop\",style:{height:\"100%\",width:\"100%\"},variant:\"HSS5lzC5B\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hnovw0\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqenfohGD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+83+0),sizes:`min(${componentViewport?.width||\"100vw\"}, 1320px)`,...toResponsiveImage(fbFwEBfbt)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1320px)`,...toResponsiveImage(fbFwEBfbt)},className:\"framer-66m42z\",\"data-framer-name\":\"feature 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqenfohGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IEhlYXZ5\",\"--framer-font-family\":'\"SF Pro Display Heavy\", \"SF Pro Display Heavy Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-959ef76c-410b-43d0-81a6-43fef6fb1eb1, rgb(23, 19, 19))\"},children:\"Keyword\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IEhlYXZ5\",\"--framer-font-family\":'\"SF Pro Display Heavy\", \"SF Pro Display Heavy Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"72px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-959ef76c-410b-43d0-81a6-43fef6fb1eb1, rgb(23, 19, 19))\"},children:\"Keyword\"})}),className:\"framer-tos1wz\",fonts:[\"CUSTOM;SF Pro Display Heavy\"],text:UMVrIVstu,verticalAlignment:\"center\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q4lrdy\",\"data-framer-name\":\"Body content\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-187bs97 hidden-agkjjz\",\"data-framer-name\":\"Content navigator\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bpr1on\",\"data-framer-name\":\"Sticky content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xa0x01\",style:{\"--11owzge\":clampRGB(tBnsMtUfW),\"--1hv6zuj\":tBnsMtUfW},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IEhlYXZ5\",\"--framer-font-family\":'\"SF Pro Display Heavy\", \"SF Pro Display Heavy Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-46135de8-3a42-4281-809b-c20b62ccf207, rgb(33, 43, 54))\"},children:[\"Automate your\",/*#__PURE__*/_jsx(\"br\",{}),\"HR admin work\",/*#__PURE__*/_jsx(\"br\",{}),\"with Humaaans.\"]})}),className:\"framer-1l48cdp\",fonts:[\"CUSTOM;SF Pro Display Heavy\"],text:REcOynK0X,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:235.5,intrinsicWidth:230,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+632+64+0+0+0+0+32+52),pixelHeight:471,pixelWidth:460,sizes:\"232px\",...toResponsiveImage(Tq1l_E9ib),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1oaprg7\",\"data-framer-name\":\"integrations_graphic_1\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Text Medium\", \"SF Pro Text Medium Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-46135de8-3a42-4281-809b-c20b62ccf207, rgb(33, 43, 54))\"},children:\"Link up with your preferred tools and help your teams thrive at what they do best.\"})}),className:\"framer-1sxe2jj\",fonts:[\"CUSTOM;SF Pro Text Medium\"],text:Xm3A9sHFb,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://humaans.io/book-demo\",motionChild:true,nodeId:\"kW3OeAqzJZHjh7t78Q\",openInNewTab:false,scopeId:\"Pg3Xcw979\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-rtm8cm framer-sf218i\",\"data-framer-name\":\"Button/Primary/Large\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1q04e60\",\"data-styles-preset\":\"tgLWGEctX\",style:{\"--framer-text-color\":\"var(--token-cff8d241-b94c-4177-84b2-052dc19446b4, rgb(255, 255, 255))\"},children:\"Book a demo\"})}),className:\"framer-1apjzwj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3n5eks\",children:[visible&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":zerJMQEn5\",pathVariables:{XnE3bEGGg},webPageId:\"Pg3Xcw979\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,width:\"280px\",y:(componentViewport?.y||0)+0+632+64+0+0+0+356.4056+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o4r4jt-container\",nodeId:\"jrPGvW37P\",rendersWithMotion:true,scopeId:\"Pg3Xcw979\",children:/*#__PURE__*/_jsx(HRResourcesContentNavigatorWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:150,ref:ref2,target:\"TeM4CZvd3\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"jrPGvW37P\",layoutId:\"jrPGvW37P\",style:{width:\"100%\"},U5wQJwAjV:resolvedLinks[0],v5p7mISCA:hrBmVap48,variant:\"HEf36nKne\",width:\"100%\"})})})}),visible1&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":aT32LZ0ea\",pathVariables:{XnE3bEGGg},webPageId:\"Pg3Xcw979\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,width:\"280px\",y:(componentViewport?.y||0)+0+632+64+0+0+0+356.4056+0+43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-144hafk-container\",nodeId:\"sZJ53AUS1\",rendersWithMotion:true,scopeId:\"Pg3Xcw979\",children:/*#__PURE__*/_jsx(HRResourcesContentNavigatorWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:150,ref:ref2,target:\"HEf36nKne\"},{offset:150,ref:ref3,target:\"TeM4CZvd3\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"sZJ53AUS1\",layoutId:\"sZJ53AUS1\",style:{width:\"100%\"},U5wQJwAjV:resolvedLinks1[0],v5p7mISCA:ryJStVF6v,variant:\"TeM4CZvd3\",width:\"100%\"})})})}),visible2&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":vIddqpfrm\",pathVariables:{XnE3bEGGg},webPageId:\"Pg3Xcw979\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,width:\"280px\",y:(componentViewport?.y||0)+0+632+64+0+0+0+356.4056+0+86,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v63tay-container\",nodeId:\"dolcle1OM\",rendersWithMotion:true,scopeId:\"Pg3Xcw979\",children:/*#__PURE__*/_jsx(HRResourcesContentNavigatorWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:150,ref:ref3,target:\"HEf36nKne\"},{offset:150,ref:ref4,target:\"TeM4CZvd3\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"dolcle1OM\",layoutId:\"dolcle1OM\",style:{width:\"100%\"},U5wQJwAjV:resolvedLinks2[0],v5p7mISCA:K7bFOtdeB,variant:\"TeM4CZvd3\",width:\"100%\"})})})}),visible3&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":nKM49Dl5F\",pathVariables:{XnE3bEGGg},webPageId:\"Pg3Xcw979\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,width:\"280px\",y:(componentViewport?.y||0)+0+632+64+0+0+0+356.4056+0+129,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q9t1co-container\",nodeId:\"JsgyY0a9G\",rendersWithMotion:true,scopeId:\"Pg3Xcw979\",children:/*#__PURE__*/_jsx(HRResourcesContentNavigatorWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:150,ref:ref4,target:\"HEf36nKne\"},{offset:150,ref:ref5,target:\"TeM4CZvd3\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"JsgyY0a9G\",layoutId:\"JsgyY0a9G\",style:{width:\"100%\"},U5wQJwAjV:resolvedLinks3[0],v5p7mISCA:WoHKYcszh,variant:\"TeM4CZvd3\",width:\"100%\"})})})}),visible4&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":s39fVN5tz\",pathVariables:{XnE3bEGGg},webPageId:\"Pg3Xcw979\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,width:\"280px\",y:(componentViewport?.y||0)+0+632+64+0+0+0+356.4056+0+172,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uwn7us-container\",nodeId:\"bWJ_4NfdV\",rendersWithMotion:true,scopeId:\"Pg3Xcw979\",children:/*#__PURE__*/_jsx(HRResourcesContentNavigatorWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:150,ref:ref5,target:\"HEf36nKne\"},{offset:150,ref:ref6,target:\"TeM4CZvd3\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"bWJ_4NfdV\",layoutId:\"bWJ_4NfdV\",style:{width:\"100%\"},U5wQJwAjV:resolvedLinks4[0],v5p7mISCA:atVtiYzRV,variant:\"TeM4CZvd3\",width:\"100%\"})})})}),visible5&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":JIxVIMtx9\",pathVariables:{XnE3bEGGg},webPageId:\"Pg3Xcw979\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,width:\"280px\",y:(componentViewport?.y||0)+0+632+64+0+0+0+356.4056+0+215,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vnzorl-container\",nodeId:\"f8YQyf_gD\",rendersWithMotion:true,scopeId:\"Pg3Xcw979\",children:/*#__PURE__*/_jsx(HRResourcesContentNavigatorWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:150,ref:ref6,target:\"HEf36nKne\"},{offset:150,ref:ref7,target:\"TeM4CZvd3\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"f8YQyf_gD\",layoutId:\"f8YQyf_gD\",style:{width:\"100%\"},U5wQJwAjV:resolvedLinks5[0],v5p7mISCA:K0vd5KeAY,variant:\"TeM4CZvd3\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wdlm8\",\"data-framer-name\":\"Post content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqenfohGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IEhlYXZ5\",\"--framer-font-family\":'\"SF Pro Display Heavy\", \"SF Pro Display Heavy Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-959ef76c-410b-43d0-81a6-43fef6fb1eb1, rgb(23, 19, 19))\"},children:\"Title\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IEhlYXZ5\",\"--framer-font-family\":'\"SF Pro Display Heavy\", \"SF Pro Display Heavy Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"56px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-959ef76c-410b-43d0-81a6-43fef6fb1eb1, rgb(23, 19, 19))\"},children:\"Title\"})}),className:\"framer-kelgzn\",fonts:[\"CUSTOM;SF Pro Display Heavy\"],text:KUgoFapJL,verticalAlignment:\"center\",withExternalLayout:true})}),visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n1s5qb\",\"data-framer-name\":\"Section 1\",id:elementId1,ref:ref8,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1qrib3l\",\"data-styles-preset\":\"xZcdViJ80\",children:\"Section 1 Title\"})}),className:\"framer-19ephqq\",\"data-framer-name\":\"Section 1 Title\",fonts:[\"Inter\"],text:hrBmVap48,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"MY9rkMnE7\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"m8kD03hen\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:IAegQacOs,className:\"framer-1gbetkp\",\"data-framer-name\":\"Section 1 Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",blockquote:\"framer-styles-preset-1wf6kxq\",code:\"framer-styles-preset-1jdts0z\",h1:\"framer-styles-preset-1motk0o\",h2:\"framer-styles-preset-hkc0w8\",h3:\"framer-styles-preset-1ryd9d3\",h4:\"framer-styles-preset-1xa3b1t\",h5:\"framer-styles-preset-ougj0z\",h6:\"framer-styles-preset-1wiby4o\",img:\"framer-styles-preset-20izvt\",p:\"framer-styles-preset-ko3u9e\",table:\"framer-styles-preset-1x862im\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible6&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1194f9i-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"o6jk8xo3D\",scopeId:\"Pg3Xcw979\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div class=\"calculator\" data-calc-id=\"eFcoBdWcxeWrNTqWf\" data-type=\"framed\"></div>\\n<script src=\"https://scripts.convertcalculator.com/embed.js\" async=\"true\"></script>',id:\"o6jk8xo3D\",layoutId:\"o6jk8xo3D\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:HY5HtGbfD,width:\"100%\"})})}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fttkli\",\"data-framer-name\":\"Section 2\",id:elementId2,ref:ref2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hkc0w8\",\"data-styles-preset\":\"CUY6aMIeq\",children:\"Section 2 Title\"})}),className:\"framer-1onggvi\",\"data-framer-name\":\"Section 2 Title\",fonts:[\"Inter\"],text:ryJStVF6v,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"MY9rkMnE7\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"m8kD03hen\"]},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqenfohGD:{stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",blockquote:\"framer-styles-preset-1wf6kxq\",code:\"framer-styles-preset-1jdts0z\",h1:\"framer-styles-preset-1motk0o\",h2:\"framer-styles-preset-hkc0w8\",h3:\"framer-styles-preset-hi8m20\",h4:\"framer-styles-preset-1xa3b1t\",h5:\"framer-styles-preset-ougj0z\",h6:\"framer-styles-preset-1wiby4o\",img:\"framer-styles-preset-20izvt\",p:\"framer-styles-preset-ko3u9e\",table:\"framer-styles-preset-1x862im\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:Vj9I_CPCd,className:\"framer-1qh8xau\",\"data-framer-name\":\"Section 2 Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",blockquote:\"framer-styles-preset-1wf6kxq\",h1:\"framer-styles-preset-1motk0o\",h2:\"framer-styles-preset-hkc0w8\",h3:\"framer-styles-preset-hi8m20\",h4:\"framer-styles-preset-1xa3b1t\",h5:\"framer-styles-preset-ougj0z\",h6:\"framer-styles-preset-1wiby4o\",img:\"framer-styles-preset-20izvt\",p:\"framer-styles-preset-ko3u9e\",table:\"framer-styles-preset-1x862im\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xykjn-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IkaB5NaPh\",scopeId:\"Pg3Xcw979\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div class=\"calculator\" data-calc-id=\"eFcoBdWcxeWrNTqWf\" data-type=\"framed\"></div>\\n<script src=\"https://scripts.convertcalculator.com/embed.js\" async=\"true\"></script>',id:\"IkaB5NaPh\",layoutId:\"IkaB5NaPh\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:HY5HtGbfD,width:\"100%\"})})}),visible2&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v8qi53\",\"data-framer-name\":\"Section 3\",id:elementId3,ref:ref3,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hkc0w8\",\"data-styles-preset\":\"CUY6aMIeq\",children:\"Section 3 Title\"})}),className:\"framer-miibwr\",\"data-framer-name\":\"Section 3 Title\",fonts:[\"Inter\"],text:K7bFOtdeB,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"MY9rkMnE7\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"m8kD03hen\"]},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqenfohGD:{stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",blockquote:\"framer-styles-preset-1wf6kxq\",code:\"framer-styles-preset-1jdts0z\",h1:\"framer-styles-preset-1motk0o\",h2:\"framer-styles-preset-hkc0w8\",h3:\"framer-styles-preset-hi8m20\",h4:\"framer-styles-preset-1xa3b1t\",h5:\"framer-styles-preset-ougj0z\",h6:\"framer-styles-preset-1wiby4o\",img:\"framer-styles-preset-20izvt\",p:\"framer-styles-preset-ko3u9e\",table:\"framer-styles-preset-1x862im\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:q0VA4kAbc,className:\"framer-1krsufy\",\"data-framer-name\":\"Section 3 Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",blockquote:\"framer-styles-preset-1wf6kxq\",h1:\"framer-styles-preset-1motk0o\",h2:\"framer-styles-preset-hkc0w8\",h3:\"framer-styles-preset-hi8m20\",h4:\"framer-styles-preset-1xa3b1t\",h5:\"framer-styles-preset-ougj0z\",h6:\"framer-styles-preset-1wiby4o\",img:\"framer-styles-preset-20izvt\",p:\"framer-styles-preset-ko3u9e\",table:\"framer-styles-preset-1x862im\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),visible8&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17il1j7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LDtSg2Ra0\",scopeId:\"Pg3Xcw979\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div class=\"calculator\" data-calc-id=\"eFcoBdWcxeWrNTqWf\" data-type=\"framed\"></div>\\n<script src=\"https://scripts.convertcalculator.com/embed.js\" async=\"true\"></script>',id:\"LDtSg2Ra0\",layoutId:\"LDtSg2Ra0\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:HY5HtGbfD,width:\"100%\"})})}),visible3&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9woeq7\",\"data-framer-name\":\"Section 4\",id:elementId4,ref:ref4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hkc0w8\",\"data-styles-preset\":\"CUY6aMIeq\",children:\"Section 4 Title\"})}),className:\"framer-1ql4v47\",\"data-framer-name\":\"Section 4 Title\",fonts:[\"Inter\"],text:WoHKYcszh,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"MY9rkMnE7\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"m8kD03hen\"]},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqenfohGD:{stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",blockquote:\"framer-styles-preset-1wf6kxq\",code:\"framer-styles-preset-1jdts0z\",h1:\"framer-styles-preset-1motk0o\",h2:\"framer-styles-preset-hkc0w8\",h3:\"framer-styles-preset-hi8m20\",h4:\"framer-styles-preset-1xa3b1t\",h5:\"framer-styles-preset-ougj0z\",h6:\"framer-styles-preset-1wiby4o\",img:\"framer-styles-preset-20izvt\",p:\"framer-styles-preset-ko3u9e\",table:\"framer-styles-preset-1x862im\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:nvbotSFTn,className:\"framer-1gjkxjx\",\"data-framer-name\":\"Section 4 Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",blockquote:\"framer-styles-preset-1wf6kxq\",h1:\"framer-styles-preset-1motk0o\",h2:\"framer-styles-preset-hkc0w8\",h3:\"framer-styles-preset-hi8m20\",h4:\"framer-styles-preset-1xa3b1t\",h5:\"framer-styles-preset-ougj0z\",h6:\"framer-styles-preset-1wiby4o\",img:\"framer-styles-preset-20izvt\",p:\"framer-styles-preset-ko3u9e\",table:\"framer-styles-preset-1x862im\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),visible9&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10mi3mv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GWgXlNQsY\",scopeId:\"Pg3Xcw979\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div class=\"calculator\" data-calc-id=\"eFcoBdWcxeWrNTqWf\" data-type=\"framed\"></div>\\n<script src=\"https://scripts.convertcalculator.com/embed.js\" async=\"true\"></script>',id:\"GWgXlNQsY\",layoutId:\"GWgXlNQsY\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:HY5HtGbfD,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ds7rgn\",\"data-framer-name\":\"Inpost Banner\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:405,intrinsicWidth:328,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+632+64+0+3452.8+71.5692),pixelHeight:405,pixelWidth:328,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EWKyvjneEb5h7EsH70GMtVzmYg.png\"},className:\"framer-1plo4hk hidden-agkjjz\",\"data-framer-name\":\"Faces\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qsuql8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bkthz7\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqenfohGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IEhlYXZ5\",\"--framer-font-family\":'\"SF Pro Display Heavy\", \"SF Pro Display Heavy Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-959ef76c-410b-43d0-81a6-43fef6fb1eb1, rgb(23, 19, 19))\"},children:\"Create a better place of work today\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IEhlYXZ5\",\"--framer-font-family\":'\"SF Pro Display Heavy\", \"SF Pro Display Heavy Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-959ef76c-410b-43d0-81a6-43fef6fb1eb1, rgb(23, 19, 19))\"},children:\"Create a better place of work today\"})}),className:\"framer-1oinyy\",fonts:[\"CUSTOM;SF Pro Display Heavy\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqenfohGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Display Medium\", \"SF Pro Display Medium Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-959ef76c-410b-43d0-81a6-43fef6fb1eb1, rgb(23, 19, 19))\"},children:\"Simplify your people workflows and bring value to everyone in the organisation. Try Humaans today.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Display Medium\", \"SF Pro Display Medium Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-959ef76c-410b-43d0-81a6-43fef6fb1eb1, rgb(23, 19, 19))\"},children:\"Simplify your people workflows and bring value to everyone in the organisation. Try Humaans today.\"})}),className:\"framer-1gjqrn8\",fonts:[\"CUSTOM;SF Pro Display Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqenfohGD:{width:`min(min(min(${componentViewport?.width||\"100vw\"}, 1320px) - 80px, 760px) - 96px, 1160px)`,y:(componentViewport?.y||0)+0+331+40+0+0+5028.8+48+0+0+180.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+632+64+0+3452.8+48+0+220.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dj9v33-container\",nodeId:\"pZQB87fEa\",scopeId:\"Pg3Xcw979\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqenfohGD:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ButtonPrimary,{DFDjUikqe:\"Book a demo\",height:\"100%\",id:\"pZQB87fEa\",iRMRusx_a:\"var(--token-cff8d241-b94c-4177-84b2-052dc19446b4, rgb(255, 255, 255))\",layoutId:\"pZQB87fEa\",mFXf3gbob:\"rgb(254, 85, 85)\",Om7CnEH3Y:\"https://humaans.io/book-demo\",variant:\"Bg9WGdXnK\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v0auuu\"})]}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ehhgq7\",\"data-framer-name\":\"Section 5\",id:elementId5,ref:ref5,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hkc0w8\",\"data-styles-preset\":\"CUY6aMIeq\",children:\"Section 5 Title\"})}),className:\"framer-1j99309\",\"data-framer-name\":\"Section 5 Title\",fonts:[\"Inter\"],text:atVtiYzRV,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqenfohGD:{stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",blockquote:\"framer-styles-preset-1wf6kxq\",code:\"framer-styles-preset-1jdts0z\",h1:\"framer-styles-preset-1motk0o\",h2:\"framer-styles-preset-hkc0w8\",h3:\"framer-styles-preset-hi8m20\",h4:\"framer-styles-preset-1xa3b1t\",h5:\"framer-styles-preset-ougj0z\",h6:\"framer-styles-preset-1wiby4o\",img:\"framer-styles-preset-20izvt\",p:\"framer-styles-preset-ko3u9e\",table:\"framer-styles-preset-1x862im\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:EzmJtrSAE,className:\"framer-w37kyd\",\"data-framer-name\":\"Section 5 Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",blockquote:\"framer-styles-preset-1wf6kxq\",h1:\"framer-styles-preset-1motk0o\",h2:\"framer-styles-preset-hkc0w8\",h3:\"framer-styles-preset-hi8m20\",h4:\"framer-styles-preset-1xa3b1t\",h5:\"framer-styles-preset-ougj0z\",h6:\"framer-styles-preset-1wiby4o\",img:\"framer-styles-preset-20izvt\",p:\"framer-styles-preset-ko3u9e\",table:\"framer-styles-preset-1x862im\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),visible10&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5urk9y-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hswpOVvCA\",scopeId:\"Pg3Xcw979\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div class=\"calculator\" data-calc-id=\"eFcoBdWcxeWrNTqWf\" data-type=\"framed\"></div>\\n<script src=\"https://scripts.convertcalculator.com/embed.js\" async=\"true\"></script>',id:\"hswpOVvCA\",layoutId:\"hswpOVvCA\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:HY5HtGbfD,width:\"100%\"})})}),visible5&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t6gkys\",\"data-framer-name\":\"Section 6\",id:elementId6,ref:ref6,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hkc0w8\",\"data-styles-preset\":\"CUY6aMIeq\",children:\"Section 6 Title\"})}),className:\"framer-14mya1a\",\"data-framer-name\":\"Section 5 Title\",fonts:[\"Inter\"],text:K0vd5KeAY,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqenfohGD:{stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",blockquote:\"framer-styles-preset-1wf6kxq\",code:\"framer-styles-preset-1jdts0z\",h1:\"framer-styles-preset-1motk0o\",h2:\"framer-styles-preset-hkc0w8\",h3:\"framer-styles-preset-hi8m20\",h4:\"framer-styles-preset-1xa3b1t\",h5:\"framer-styles-preset-ougj0z\",h6:\"framer-styles-preset-1wiby4o\",img:\"framer-styles-preset-20izvt\",p:\"framer-styles-preset-ko3u9e\",table:\"framer-styles-preset-1x862im\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:yo5sYkHkc,className:\"framer-17vlon2\",\"data-framer-name\":\"Section 5 Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",blockquote:\"framer-styles-preset-1wf6kxq\",h1:\"framer-styles-preset-1motk0o\",h2:\"framer-styles-preset-hkc0w8\",h3:\"framer-styles-preset-hi8m20\",h4:\"framer-styles-preset-1xa3b1t\",h5:\"framer-styles-preset-ougj0z\",h6:\"framer-styles-preset-1wiby4o\",img:\"framer-styles-preset-20izvt\",p:\"framer-styles-preset-ko3u9e\",table:\"framer-styles-preset-1x862im\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fv2huz\",\"data-framer-name\":\"Spacer\",id:elementId7,ref:ref7})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qog92r\",\"data-framer-name\":\"section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b2hren\",\"data-framer-name\":\"client-logos\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqenfohGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hkc0w8\",\"data-styles-preset\":\"CUY6aMIeq\",style:{\"--framer-text-alignment\":\"center\"},children:\"Popular articles\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hkc0w8\",\"data-styles-preset\":\"CUY6aMIeq\",children:\"Popular articles\"})}),className:\"framer-1v5zh60\",\"data-framer-name\":\"Section 1 Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f3d444\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"nebFqOX2g\",data:HRGlossary,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"nebFqOX2g\",name:\"XnE3bEGGg\",type:\"Identifier\"},{collection:\"nebFqOX2g\",name:\"nLsvnQbT5\",type:\"Identifier\"},{collection:\"nebFqOX2g\",name:\"tWLmZyCp8\",type:\"Identifier\"},{collection:\"nebFqOX2g\",name:\"KUgoFapJL\",type:\"Identifier\"},{collection:\"nebFqOX2g\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idnebFqOX2g,KUgoFapJL:KUgoFapJLnebFqOX2g,nLsvnQbT5:nLsvnQbT5nebFqOX2g,tWLmZyCp8:tWLmZyCp8nebFqOX2g,XnE3bEGGg:XnE3bEGGgnebFqOX2g},index)=>{XnE3bEGGgnebFqOX2g??=\"\";KUgoFapJLnebFqOX2g??=\"\";const textContent=enumToDisplayNameFunctions[\"tWLmZyCp8\"]?.(tWLmZyCp8nebFqOX2g,activeLocale);return /*#__PURE__*/_jsx(LayoutGroup,{id:`nebFqOX2g-${idnebFqOX2g}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{XnE3bEGGg:XnE3bEGGgnebFqOX2g},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{XnE3bEGGg:XnE3bEGGgnebFqOX2g},webPageId:\"Pg3Xcw979\"},motionChild:true,nodeId:\"nr05Z5HkE\",scopeId:\"Pg3Xcw979\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1kgh8x5 framer-sf218i\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqenfohGD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1865.8+0+0+0+65.6+0+1104+0+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 60px, 1160px)`,...toResponsiveImage(nLsvnQbT5nebFqOX2g)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2298.8+80+0+0+53.6+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1160px) - 80px) / 3, 1px)`,...toResponsiveImage(nLsvnQbT5nebFqOX2g)},className:\"framer-1hahdmc\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12221un\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10abpqi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Text Medium\", \"SF Pro Text Medium Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46135de8-3a42-4281-809b-c20b62ccf207, rgb(33, 43, 54))\"},children:\"Content\"})}),className:\"framer-1ep0ss1\",\"data-framer-name\":\"Category\",fonts:[\"CUSTOM;SF Pro Text Medium\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IEJsYWNr\",\"--framer-font-family\":'\"SF Pro Display Black\", \"SF Pro Display Black Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-46135de8-3a42-4281-809b-c20b62ccf207, rgb(33, 43, 54))\"},children:\"Title\"})}),className:\"framer-16hr6t9\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;SF Pro Display Black\"],text:KUgoFapJLnebFqOX2g,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IEJvbGQ=\",\"--framer-font-family\":'\"SF Pro Text Bold\", \"SF Pro Text Bold Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(254, 85, 85)\"},children:\"Read article \u2192\"})}),className:\"framer-nlwoht\",\"data-framer-name\":\"Description\",fonts:[\"CUSTOM;SF Pro Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idnebFqOX2g);})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rwftjs\",\"data-framer-name\":\"section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1si7po5\",\"data-framer-name\":\"client-logos\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqenfohGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Text Medium\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-959ef76c-410b-43d0-81a6-43fef6fb1eb1, rgb(23, 19, 19))\"},children:\"Trusted by global organisations\"})}),fonts:[\"CUSTOM;SF Pro Text Medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro Text Regular\", \"SF Pro Text Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-959ef76c-410b-43d0-81a6-43fef6fb1eb1, rgb(23, 19, 19))\"},children:\"Trusted by global organisations\"})}),className:\"framer-18ukafz\",fonts:[\"CUSTOM;SF Pro Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqenfohGD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:480,intrinsicWidth:554,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3627.4+24+0+0+140),pixelHeight:480,pixelWidth:554,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 60px, 1160px)`,src:\"https://framerusercontent.com/images/j2u44N40rjXNOPyNTIjWgiNdRw.png\",srcSet:\"https://framerusercontent.com/images/j2u44N40rjXNOPyNTIjWgiNdRw.png?scale-down-to=512 512w,https://framerusercontent.com/images/j2u44N40rjXNOPyNTIjWgiNdRw.png 554w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:120,intrinsicWidth:4596,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3024.4+80+0+0+116),pixelHeight:120,pixelWidth:4596,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1160px)`,src:\"https://framerusercontent.com/images/cjYNg9xN4U6B3k1XDSTJom1eM.png\",srcSet:\"https://framerusercontent.com/images/cjYNg9xN4U6B3k1XDSTJom1eM.png?scale-down-to=512 512w,https://framerusercontent.com/images/cjYNg9xN4U6B3k1XDSTJom1eM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cjYNg9xN4U6B3k1XDSTJom1eM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/cjYNg9xN4U6B3k1XDSTJom1eM.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/cjYNg9xN4U6B3k1XDSTJom1eM.png 4596w\"},className:\"framer-110bx9w\",\"data-framer-name\":\"Desktop_logos\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6g5e9u\",\"data-framer-name\":\"section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10or5ho\",\"data-framer-name\":\"feature 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4384x3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ij36vz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqenfohGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IEhlYXZ5\",\"--framer-font-family\":'\"SF Pro Display Heavy\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-959ef76c-410b-43d0-81a6-43fef6fb1eb1, rgb(23, 19, 19))\"},children:\"Create a better place of work today\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IEhlYXZ5\",\"--framer-font-family\":'\"SF Pro Display Heavy\", \"SF Pro Display Heavy Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-959ef76c-410b-43d0-81a6-43fef6fb1eb1, rgb(23, 19, 19))\"},children:\"Create a better place of work today\"})}),className:\"framer-1wuzl40\",fonts:[\"CUSTOM;SF Pro Display Heavy\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqenfohGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Display Medium\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-959ef76c-410b-43d0-81a6-43fef6fb1eb1, rgb(23, 19, 19))\"},children:\"Simplify your people workflows and bring value to everyone in the organisation. Experience Humaans today.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Display Medium\", \"SF Pro Display Medium Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-959ef76c-410b-43d0-81a6-43fef6fb1eb1, rgb(23, 19, 19))\"},children:\"Simplify your people workflows and bring value to everyone in the organisation. Experience Humaans today.\"})}),className:\"framer-10hzkhj\",fonts:[\"CUSTOM;SF Pro Display Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqenfohGD:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1508px) - 60px, 1160px)`,y:(componentViewport?.y||0)+0+4155.4+40+0+80+0+0+180.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+3339.4+40+0+105.8+0+220.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1snjrea-container\",nodeId:\"yyxesJKYQ\",scopeId:\"Pg3Xcw979\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqenfohGD:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ButtonPrimary,{DFDjUikqe:\"Book a demo\",height:\"100%\",id:\"yyxesJKYQ\",iRMRusx_a:\"var(--token-cff8d241-b94c-4177-84b2-052dc19446b4, rgb(255, 255, 255))\",layoutId:\"yyxesJKYQ\",mFXf3gbob:\"rgb(254, 85, 85)\",Om7CnEH3Y:\"https://humaans.io/book-demo\",variant:\"Bg9WGdXnK\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vex722\"}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:292,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3339.4+40+0+47),pixelHeight:584,pixelWidth:480,sizes:\"240px\",src:\"https://framerusercontent.com/images/DlnUpvlDNQIjvr5ESQOfufVHmC0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/DlnUpvlDNQIjvr5ESQOfufVHmC0.png 480w\"},className:\"framer-9dmjjf hidden-agkjjz\",\"data-framer-name\":\"Footer_faces_right\"}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:232,intrinsicWidth:145,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3339.4+40+0+143),pixelHeight:464,pixelWidth:290,src:\"https://framerusercontent.com/images/NTU0ByX8JhSD8Pd8q0tI1TQLog.png\"},className:\"framer-1cwz8bs hidden-agkjjz\",\"data-framer-name\":\"Footer_faces_left\",transformTemplate:transformTemplate1})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqenfohGD:{y:(componentViewport?.y||0)+0+4563.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:161,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3839.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16bz0pn-container\",nodeId:\"dkDi8k6V6\",scopeId:\"Pg3Xcw979\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqenfohGD:{variant:\"MIPfyIePY\"}},children:/*#__PURE__*/_jsx(PageFooter,{height:\"100%\",id:\"dkDi8k6V6\",layoutId:\"dkDi8k6V6\",RWi3aMZKd:\"HR software for modern People teams to onboard, manage and grow their employees.\",style:{width:\"100%\"},variant:\"UKZWiVgic\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PD5iB.framer-sf218i, .framer-PD5iB .framer-sf218i { display: block; }\",\".framer-PD5iB.framer-1e8jaa6 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-PD5iB .framer-7hrx9x-container { flex: none; height: 83px; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 0px; width: 100%; z-index: 3; }\",\".framer-PD5iB .framer-hnovw0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-PD5iB .framer-66m42z { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 512px; justify-content: center; max-width: 1320px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-PD5iB .framer-tos1wz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-PD5iB .framer-1q4lrdy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1320px; overflow: visible; padding: 64px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-PD5iB .framer-187bs97 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px 0px 100px 0px; position: relative; width: 280px; z-index: 1; }\",\".framer-PD5iB .framer-1bpr1on { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: sticky; top: 128px; width: 100%; z-index: 1; }\",\".framer-PD5iB .framer-1xa0x01 { align-content: flex-start; align-items: flex-start; background-color: var(--1jjqbn0, var(--11owzge)); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 24px 32px 24px; position: relative; width: 280px; will-change: var(--framer-will-change-override, transform); }\",\".framer-PD5iB .framer-1l48cdp, .framer-PD5iB .framer-1sxe2jj, .framer-PD5iB .framer-18ukafz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PD5iB .framer-1oaprg7 { aspect-ratio: 0.9766454352441614 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 238px); overflow: visible; position: relative; width: 100%; }\",\".framer-PD5iB .framer-rtm8cm { align-content: center; align-items: center; background-color: var(--token-7f3e4683-b8c8-4ba1-a52f-815bb3b96e95, #fe5555); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; padding: 8px 16px 8px 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-PD5iB .framer-1apjzwj { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-PD5iB .framer-3n5eks { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-PD5iB .framer-1o4r4jt-container, .framer-PD5iB .framer-144hafk-container, .framer-PD5iB .framer-1v63tay-container, .framer-PD5iB .framer-1q9t1co-container, .framer-PD5iB .framer-uwn7us-container, .framer-PD5iB .framer-1vnzorl-container { flex: none; height: auto; position: relative; width: 280px; }\",\".framer-PD5iB .framer-wdlm8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 760px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-PD5iB .framer-kelgzn, .framer-PD5iB .framer-1ep0ss1, .framer-PD5iB .framer-16hr6t9, .framer-PD5iB .framer-nlwoht { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PD5iB .framer-1n1s5qb, .framer-PD5iB .framer-fttkli, .framer-PD5iB .framer-1v8qi53, .framer-PD5iB .framer-9woeq7, .framer-PD5iB .framer-1ehhgq7, .framer-PD5iB .framer-t6gkys { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-PD5iB .framer-19ephqq, .framer-PD5iB .framer-1gbetkp, .framer-PD5iB .framer-1onggvi, .framer-PD5iB .framer-1qh8xau, .framer-PD5iB .framer-miibwr, .framer-PD5iB .framer-1krsufy, .framer-PD5iB .framer-1ql4v47, .framer-PD5iB .framer-1gjkxjx, .framer-PD5iB .framer-1j99309, .framer-PD5iB .framer-w37kyd, .framer-PD5iB .framer-14mya1a, .framer-PD5iB .framer-17vlon2, .framer-PD5iB .framer-1v5zh60 { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PD5iB .framer-1194f9i-container, .framer-PD5iB .framer-xykjn-container, .framer-PD5iB .framer-17il1j7-container, .framer-PD5iB .framer-10mi3mv-container, .framer-PD5iB .framer-5urk9y-container { flex: none; height: 588px; position: relative; width: 100%; }\",\".framer-PD5iB .framer-ds7rgn { align-content: center; align-items: center; background-color: var(--token-6375f69f-dc55-4fe2-9c25-47797efdc2c5, #ffe9e2); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 48px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-PD5iB .framer-1plo4hk { aspect-ratio: 0.821917808219178 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); left: 91%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 164px; z-index: 1; }\",\".framer-PD5iB .framer-1qsuql8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1160px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-PD5iB .framer-bkthz7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 80%; }\",\".framer-PD5iB .framer-1oinyy, .framer-PD5iB .framer-1gjqrn8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-PD5iB .framer-dj9v33-container, .framer-PD5iB .framer-1snjrea-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-PD5iB .framer-1v0auuu { aspect-ratio: 1.1652281134401974 / 1; background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.8) 0%, var(--token-6375f69f-dc55-4fe2-9c25-47797efdc2c5, rgb(255, 233, 226)) 100%); border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; flex: none; height: var(--framer-aspect-ratio-supported, 811px); left: 34%; overflow: hidden; position: absolute; top: -375px; transform: translateX(-50%); width: 945px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-PD5iB .framer-fv2huz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 100px; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-PD5iB .framer-1qog92r, .framer-PD5iB .framer-1rwftjs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-PD5iB .framer-b2hren, .framer-PD5iB .framer-1si7po5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1160px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PD5iB .framer-1f3d444 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-PD5iB .framer-1kgh8x5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-PD5iB .framer-1hahdmc { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 216px; position: relative; width: 100%; }\",\".framer-PD5iB .framer-12221un { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 100%; }\",\".framer-PD5iB .framer-10abpqi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PD5iB .framer-110bx9w { aspect-ratio: 29.871794871794872 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 38px); overflow: visible; position: relative; width: 100%; }\",\".framer-PD5iB .framer-6g5e9u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1508px; overflow: hidden; padding: 40px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-PD5iB .framer-10or5ho { align-content: center; align-items: center; background-color: var(--token-6375f69f-dc55-4fe2-9c25-47797efdc2c5, #ffe9e2); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 460px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-PD5iB .framer-4384x3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1160px; overflow: visible; padding: 0px; position: relative; width: 600px; z-index: 1; }\",\".framer-PD5iB .framer-1ij36vz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-PD5iB .framer-1wuzl40, .framer-PD5iB .framer-10hzkhj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 600px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-PD5iB .framer-vex722 { aspect-ratio: 1.1652281134401974 / 1; background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.8) 0%, var(--token-6375f69f-dc55-4fe2-9c25-47797efdc2c5, rgb(255, 233, 226)) 100%); border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; flex: none; height: var(--framer-aspect-ratio-supported, 811px); left: 50%; overflow: hidden; position: absolute; top: -255px; transform: translateX(-50%); width: 945px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-PD5iB .framer-9dmjjf { flex: none; height: 292px; left: calc(83.89830508474579% - 240px / 2); overflow: visible; position: absolute; top: calc(41.95652173913046% - 292px / 2); width: 240px; z-index: 1; }\",\".framer-PD5iB .framer-1cwz8bs { aspect-ratio: 0.625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 232px); left: 11%; overflow: visible; position: absolute; top: 56%; transform: translate(-50%, -50%); width: 145px; z-index: 1; }\",\".framer-PD5iB .framer-16bz0pn-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (color: color(display-p3 1 1 1)) { .framer-PD5iB .framer-1xa0x01 { --1jjqbn0: var(--1hv6zuj); } }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PD5iB.framer-1e8jaa6, .framer-PD5iB .framer-hnovw0, .framer-PD5iB .framer-66m42z, .framer-PD5iB .framer-1q4lrdy, .framer-PD5iB .framer-187bs97, .framer-PD5iB .framer-1bpr1on, .framer-PD5iB .framer-1xa0x01, .framer-PD5iB .framer-rtm8cm, .framer-PD5iB .framer-3n5eks, .framer-PD5iB .framer-wdlm8, .framer-PD5iB .framer-1n1s5qb, .framer-PD5iB .framer-fttkli, .framer-PD5iB .framer-1v8qi53, .framer-PD5iB .framer-9woeq7, .framer-PD5iB .framer-ds7rgn, .framer-PD5iB .framer-1qsuql8, .framer-PD5iB .framer-bkthz7, .framer-PD5iB .framer-1ehhgq7, .framer-PD5iB .framer-t6gkys, .framer-PD5iB .framer-fv2huz, .framer-PD5iB .framer-1qog92r, .framer-PD5iB .framer-b2hren, .framer-PD5iB .framer-1f3d444, .framer-PD5iB .framer-1kgh8x5, .framer-PD5iB .framer-12221un, .framer-PD5iB .framer-10abpqi, .framer-PD5iB .framer-1rwftjs, .framer-PD5iB .framer-1si7po5, .framer-PD5iB .framer-6g5e9u, .framer-PD5iB .framer-10or5ho, .framer-PD5iB .framer-4384x3, .framer-PD5iB .framer-1ij36vz { gap: 0px; } .framer-PD5iB.framer-1e8jaa6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PD5iB.framer-1e8jaa6 > :first-child, .framer-PD5iB .framer-hnovw0 > :first-child, .framer-PD5iB .framer-187bs97 > :first-child, .framer-PD5iB .framer-1bpr1on > :first-child, .framer-PD5iB .framer-1xa0x01 > :first-child, .framer-PD5iB .framer-3n5eks > :first-child, .framer-PD5iB .framer-wdlm8 > :first-child, .framer-PD5iB .framer-1n1s5qb > :first-child, .framer-PD5iB .framer-fttkli > :first-child, .framer-PD5iB .framer-1v8qi53 > :first-child, .framer-PD5iB .framer-9woeq7 > :first-child, .framer-PD5iB .framer-1qsuql8 > :first-child, .framer-PD5iB .framer-bkthz7 > :first-child, .framer-PD5iB .framer-1ehhgq7 > :first-child, .framer-PD5iB .framer-t6gkys > :first-child, .framer-PD5iB .framer-fv2huz > :first-child, .framer-PD5iB .framer-1qog92r > :first-child, .framer-PD5iB .framer-b2hren > :first-child, .framer-PD5iB .framer-1kgh8x5 > :first-child, .framer-PD5iB .framer-12221un > :first-child, .framer-PD5iB .framer-10abpqi > :first-child, .framer-PD5iB .framer-1rwftjs > :first-child, .framer-PD5iB .framer-1si7po5 > :first-child, .framer-PD5iB .framer-6g5e9u > :first-child, .framer-PD5iB .framer-4384x3 > :first-child, .framer-PD5iB .framer-1ij36vz > :first-child { margin-top: 0px; } .framer-PD5iB.framer-1e8jaa6 > :last-child, .framer-PD5iB .framer-hnovw0 > :last-child, .framer-PD5iB .framer-187bs97 > :last-child, .framer-PD5iB .framer-1bpr1on > :last-child, .framer-PD5iB .framer-1xa0x01 > :last-child, .framer-PD5iB .framer-3n5eks > :last-child, .framer-PD5iB .framer-wdlm8 > :last-child, .framer-PD5iB .framer-1n1s5qb > :last-child, .framer-PD5iB .framer-fttkli > :last-child, .framer-PD5iB .framer-1v8qi53 > :last-child, .framer-PD5iB .framer-9woeq7 > :last-child, .framer-PD5iB .framer-1qsuql8 > :last-child, .framer-PD5iB .framer-bkthz7 > :last-child, .framer-PD5iB .framer-1ehhgq7 > :last-child, .framer-PD5iB .framer-t6gkys > :last-child, .framer-PD5iB .framer-fv2huz > :last-child, .framer-PD5iB .framer-1qog92r > :last-child, .framer-PD5iB .framer-b2hren > :last-child, .framer-PD5iB .framer-1kgh8x5 > :last-child, .framer-PD5iB .framer-12221un > :last-child, .framer-PD5iB .framer-10abpqi > :last-child, .framer-PD5iB .framer-1rwftjs > :last-child, .framer-PD5iB .framer-1si7po5 > :last-child, .framer-PD5iB .framer-6g5e9u > :last-child, .framer-PD5iB .framer-4384x3 > :last-child, .framer-PD5iB .framer-1ij36vz > :last-child { margin-bottom: 0px; } .framer-PD5iB .framer-hnovw0 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-PD5iB .framer-66m42z > *, .framer-PD5iB .framer-ds7rgn > *, .framer-PD5iB .framer-10or5ho > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-PD5iB .framer-66m42z > :first-child, .framer-PD5iB .framer-1q4lrdy > :first-child, .framer-PD5iB .framer-rtm8cm > :first-child, .framer-PD5iB .framer-ds7rgn > :first-child, .framer-PD5iB .framer-1f3d444 > :first-child, .framer-PD5iB .framer-10or5ho > :first-child { margin-left: 0px; } .framer-PD5iB .framer-66m42z > :last-child, .framer-PD5iB .framer-1q4lrdy > :last-child, .framer-PD5iB .framer-rtm8cm > :last-child, .framer-PD5iB .framer-ds7rgn > :last-child, .framer-PD5iB .framer-1f3d444 > :last-child, .framer-PD5iB .framer-10or5ho > :last-child { margin-right: 0px; } .framer-PD5iB .framer-1q4lrdy > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-PD5iB .framer-187bs97 > *, .framer-PD5iB .framer-12221un > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-PD5iB .framer-1bpr1on > *, .framer-PD5iB .framer-1qsuql8 > *, .framer-PD5iB .framer-4384x3 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-PD5iB .framer-1xa0x01 > *, .framer-PD5iB .framer-1n1s5qb > *, .framer-PD5iB .framer-fttkli > *, .framer-PD5iB .framer-1v8qi53 > *, .framer-PD5iB .framer-9woeq7 > *, .framer-PD5iB .framer-1ehhgq7 > *, .framer-PD5iB .framer-t6gkys > *, .framer-PD5iB .framer-fv2huz > *, .framer-PD5iB .framer-1kgh8x5 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-PD5iB .framer-rtm8cm > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-PD5iB .framer-3n5eks > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-PD5iB .framer-wdlm8 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-PD5iB .framer-bkthz7 > *, .framer-PD5iB .framer-1ij36vz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-PD5iB .framer-1qog92r > *, .framer-PD5iB .framer-10abpqi > *, .framer-PD5iB .framer-1rwftjs > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-PD5iB .framer-b2hren > *, .framer-PD5iB .framer-1si7po5 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-PD5iB .framer-1f3d444 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-PD5iB .framer-6g5e9u > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,\"@media (max-width: 1199px) { .framer-PD5iB.framer-1e8jaa6 { width: 400px; } .framer-PD5iB .framer-hnovw0 { padding: 83px 0px 0px 0px; } .framer-PD5iB .framer-66m42z { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; flex-direction: column; gap: 32px; height: 248px; padding: 80px 30px 80px 30px; will-change: unset; } .framer-PD5iB .framer-tos1wz, .framer-PD5iB .framer-4384x3 { order: 0; width: 100%; } .framer-PD5iB .framer-1q4lrdy { align-content: center; align-items: center; flex-direction: column; gap: 16px; padding: 40px 40px 0px 40px; } .framer-PD5iB .framer-wdlm8, .framer-PD5iB .framer-1kgh8x5 { flex: none; width: 100%; } .framer-PD5iB .framer-1194f9i-container, .framer-PD5iB .framer-xykjn-container, .framer-PD5iB .framer-17il1j7-container, .framer-PD5iB .framer-10mi3mv-container, .framer-PD5iB .framer-5urk9y-container { height: 986px; } .framer-PD5iB .framer-ds7rgn { flex-direction: column; gap: 32px; } .framer-PD5iB .framer-1qsuql8 { flex: none; order: 0; width: 100%; } .framer-PD5iB .framer-bkthz7, .framer-PD5iB .framer-dj9v33-container, .framer-PD5iB .framer-1ij36vz, .framer-PD5iB .framer-10hzkhj, .framer-PD5iB .framer-1snjrea-container { width: 100%; } .framer-PD5iB .framer-1v0auuu, .framer-PD5iB .framer-vex722 { order: 1; } .framer-PD5iB .framer-fv2huz { height: 48px; } .framer-PD5iB .framer-1qog92r { gap: 32px; padding: 0px 30px 80px 30px; } .framer-PD5iB .framer-b2hren, .framer-PD5iB .framer-1si7po5 { gap: 32px; } .framer-PD5iB .framer-1f3d444 { flex-direction: column; } .framer-PD5iB .framer-1rwftjs { gap: 32px; padding: 24px 30px 80px 30px; } .framer-PD5iB .framer-110bx9w { aspect-ratio: 1.1619718309859155 / 1; height: var(--framer-aspect-ratio-supported, 293px); } .framer-PD5iB .framer-6g5e9u { padding: 40px 0px 0px 0px; } .framer-PD5iB .framer-10or5ho { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; flex-direction: column; gap: 32px; height: min-content; padding: 80px 30px 80px 30px; will-change: unset; } .framer-PD5iB .framer-1wuzl40 { width: 260px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PD5iB .framer-66m42z, .framer-PD5iB .framer-1q4lrdy, .framer-PD5iB .framer-ds7rgn, .framer-PD5iB .framer-1qog92r, .framer-PD5iB .framer-b2hren, .framer-PD5iB .framer-1f3d444, .framer-PD5iB .framer-1rwftjs, .framer-PD5iB .framer-1si7po5, .framer-PD5iB .framer-10or5ho { gap: 0px; } .framer-PD5iB .framer-66m42z > *, .framer-PD5iB .framer-ds7rgn > *, .framer-PD5iB .framer-1qog92r > *, .framer-PD5iB .framer-b2hren > *, .framer-PD5iB .framer-1rwftjs > *, .framer-PD5iB .framer-1si7po5 > *, .framer-PD5iB .framer-10or5ho > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-PD5iB .framer-66m42z > :first-child, .framer-PD5iB .framer-1q4lrdy > :first-child, .framer-PD5iB .framer-ds7rgn > :first-child, .framer-PD5iB .framer-1qog92r > :first-child, .framer-PD5iB .framer-b2hren > :first-child, .framer-PD5iB .framer-1f3d444 > :first-child, .framer-PD5iB .framer-1rwftjs > :first-child, .framer-PD5iB .framer-1si7po5 > :first-child, .framer-PD5iB .framer-10or5ho > :first-child { margin-top: 0px; } .framer-PD5iB .framer-66m42z > :last-child, .framer-PD5iB .framer-1q4lrdy > :last-child, .framer-PD5iB .framer-ds7rgn > :last-child, .framer-PD5iB .framer-1qog92r > :last-child, .framer-PD5iB .framer-b2hren > :last-child, .framer-PD5iB .framer-1f3d444 > :last-child, .framer-PD5iB .framer-1rwftjs > :last-child, .framer-PD5iB .framer-1si7po5 > :last-child, .framer-PD5iB .framer-10or5ho > :last-child { margin-bottom: 0px; } .framer-PD5iB .framer-1q4lrdy > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-PD5iB .framer-1f3d444 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 11421\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"yqenfohGD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"NPDqh73Az\":{\"pattern\":\":NPDqh73Az\",\"name\":\"nav\"},\"zerJMQEn5\":{\"pattern\":\":zerJMQEn5\",\"name\":\"section-1\"},\"aT32LZ0ea\":{\"pattern\":\":aT32LZ0ea\",\"name\":\"section-2\"},\"vIddqpfrm\":{\"pattern\":\":vIddqpfrm\",\"name\":\"section-3\"},\"nKM49Dl5F\":{\"pattern\":\":nKM49Dl5F\",\"name\":\"section-4\"},\"s39fVN5tz\":{\"pattern\":\":s39fVN5tz\",\"name\":\"section-5\"},\"JIxVIMtx9\":{\"pattern\":\":JIxVIMtx9\",\"name\":\"section-6\"},\"zNWh2KKQp\":{\"pattern\":\":zNWh2KKQp\",\"name\":\"spacer\"}}\n * @framerResponsiveScreen\n */const FramerPg3Xcw979=withCSS(Component,css,\"framer-PD5iB\");export default FramerPg3Xcw979;FramerPg3Xcw979.displayName=\"Hr Glossary\";FramerPg3Xcw979.defaultProps={height:11421,width:1200};addFonts(FramerPg3Xcw979,[{explicitInter:true,fonts:[{family:\"SF Pro Display Heavy\",source:\"custom\",url:\"https://framerusercontent.com/assets/jvIDP6irVRwTgtC3hnV6ps1J5r8.otf\"},{family:\"SF Pro Text Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/2UbBlEz7Y4z9QoIk3ngQNHiKftc.otf\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"SF Pro Display Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/CrPR4iv4eBstTKEQMZMGNjwhzZQ.otf\"},{family:\"SF Pro Display Black\",source:\"custom\",url:\"https://framerusercontent.com/assets/idk4enupQH7jOE8LHhzjEsQZDyU.otf\"},{family:\"SF Pro Text Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/w2LYIOMgRubQHyOWcWMXhpthMM.otf\"},{family:\"SF Pro Text Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/bBsMkaMH6n9c3mCxb6qrkWU4VYU.otf\"}]},...PageNavigationFonts,...HRResourcesContentNavigatorFonts,...EmbedFonts,...ButtonPrimaryFonts,...PageFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...componentPresets.fonts?.[\"MY9rkMnE7\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"MY9rkMnE7\"]):[],...componentPresets.fonts?.[\"m8kD03hen\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"m8kD03hen\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPg3Xcw979\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yqenfohGD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"11421\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"NPDqh73Az\\\":{\\\"pattern\\\":\\\":NPDqh73Az\\\",\\\"name\\\":\\\"nav\\\"},\\\"zerJMQEn5\\\":{\\\"pattern\\\":\\\":zerJMQEn5\\\",\\\"name\\\":\\\"section-1\\\"},\\\"aT32LZ0ea\\\":{\\\"pattern\\\":\\\":aT32LZ0ea\\\",\\\"name\\\":\\\"section-2\\\"},\\\"vIddqpfrm\\\":{\\\"pattern\\\":\\\":vIddqpfrm\\\",\\\"name\\\":\\\"section-3\\\"},\\\"nKM49Dl5F\\\":{\\\"pattern\\\":\\\":nKM49Dl5F\\\",\\\"name\\\":\\\"section-4\\\"},\\\"s39fVN5tz\\\":{\\\"pattern\\\":\\\":s39fVN5tz\\\",\\\"name\\\":\\\"section-5\\\"},\\\"JIxVIMtx9\\\":{\\\"pattern\\\":\\\":JIxVIMtx9\\\",\\\"name\\\":\\\"section-6\\\"},\\\"zNWh2KKQp\\\":{\\\"pattern\\\":\\\":zNWh2KKQp\\\",\\\"name\\\":\\\"spacer\\\"}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "sectionTitle", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "v5p7mISCA", "U5wQJwAjV", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "css", "FramermBhY74yd2", "withCSS", "mBhY74yd2_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "PageNavigationFonts", "getFonts", "IzjVZRJSy_default", "HRResourcesContentNavigatorFonts", "mBhY74yd2_default", "HRResourcesContentNavigatorWithVariantAppearEffect", "withVariantAppearEffect", "EmbedFonts", "Embed", "ButtonPrimaryFonts", "KM1L2PO9G_default", "PageFooterFonts", "IOBnyVxho_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "isSet", "equals", "a", "b", "transformTemplate1", "_", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "wIjlADyKi_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "fbFwEBfbt", "UMVrIVstu", "tBnsMtUfW", "REcOynK0X", "Tq1l_E9ib", "Xm3A9sHFb", "hrBmVap48", "XnE3bEGGg", "ryJStVF6v", "K7bFOtdeB", "WoHKYcszh", "atVtiYzRV", "K0vd5KeAY", "KUgoFapJL", "IAegQacOs", "jJ3eN9FCx", "HY5HtGbfD", "Vj9I_CPCd", "q0VA4kAbc", "nvbotSFTn", "EzmJtrSAE", "yo5sYkHkc", "XnE3bEGGgnebFqOX2g", "nLsvnQbT5nebFqOX2g", "tWLmZyCp8nebFqOX2g", "KUgoFapJLnebFqOX2g", "idnebFqOX2g", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "visible", "router", "useRouter", "ref2", "visible1", "ref3", "visible2", "ref4", "visible3", "ref5", "visible4", "ref6", "visible5", "ref7", "elementId1", "ref8", "visible6", "elementId2", "visible7", "elementId3", "visible8", "elementId4", "visible9", "elementId5", "visible10", "elementId6", "elementId7", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "x", "RichText2", "clampRGB", "Link", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "ComponentPresetsProvider", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "textContent", "enumToDisplayNameFunctions", "PathVariablesContext", "css", "FramerPg3Xcw979", "withCSS", "Pg3Xcw979_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
