{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js", "ssg:https://framerusercontent.com/modules/gr9tM1IxjoF2zxH3qxpT/6bgS6sGrLSOwocpxv6IW/KV2Llfkw4.js", "ssg:https://framerusercontent.com/modules/lOeQLq2VadI43umbsWsb/JBt5Xw1ldEXUalrOTkFA/tzbfaH6lq.js", "ssg:https://framerusercontent.com/modules/8MjrVP7flftfUcSv5LDZ/Y1GwjEhENP2oxEjNaA1B/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}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 any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedURL,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHTML,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}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\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url,style}){const hasAutoHeight=!style.height;// 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(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},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,style}){const ref=useRef();const onCanvas=useIsOnCanvas();const[iframeHeight,setIframeHeight]=useState(0);const hasAutoHeight=!style.height;const hasScript=html.includes(\"</script>\");useEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);if(hasScript){const srcDoc=`<html>\n    <head>\n        <style>body { margin: 0; }</style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>`;const currentStyle={...iframeStyle,...style};if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// 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,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (e2fa450)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={HvTmPEHo1:{hover:true,pressed:true}};const cycleOrder=[\"HvTmPEHo1\",\"KUhNjWVvW\",\"Zi3lfVbuQ\",\"LNIP06QwN\",\"V0oZr5uMi\"];const serializationHash=\"framer-XC8se\";const variantClassNames={HvTmPEHo1:\"framer-v-8l6ke\",KUhNjWVvW:\"framer-v-hp4k3h\",LNIP06QwN:\"framer-v-a0u6ng\",V0oZr5uMi:\"framer-v-1ov5fpt\",Zi3lfVbuQ:\"framer-v-rr1j7j\"};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={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;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={Default:\"HvTmPEHo1\",Disabled:\"Zi3lfVbuQ\",Error:\"V0oZr5uMi\",Loading:\"KUhNjWVvW\",Success:\"LNIP06QwN\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"HvTmPEHo1\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"HvTmPEHo1\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"KUhNjWVvW\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"KUhNjWVvW\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-8l6ke\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"HvTmPEHo1\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, rgb(86, 63, 255))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1,...style},variants:{\"HvTmPEHo1-hover\":{backgroundColor:\"rgb(162, 151, 247)\"},\"HvTmPEHo1-pressed\":{backgroundColor:\"rgb(162, 151, 247)\"},V0oZr5uMi:{backgroundColor:\"rgba(255, 34, 68, 0.15)\"},Zi3lfVbuQ:{opacity:.5}},...addPropertyOverrides({\"HvTmPEHo1-hover\":{\"data-framer-name\":undefined},\"HvTmPEHo1-pressed\":{\"data-framer-name\":undefined},KUhNjWVvW:{\"data-framer-name\":\"Loading\"},LNIP06QwN:{\"data-framer-name\":\"Success\"},V0oZr5uMi:{\"data-framer-name\":\"Error\"},Zi3lfVbuQ:{\"data-framer-name\":\"Disabled\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Submit\"})}),className:\"framer-4l2xwh\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"ICebMwHSn\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{V0oZr5uMi:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({LNIP06QwN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Thank you\"})})},V0oZr5uMi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Something went wrong\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-7hxouy\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"sFvPpV6kE\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1drnpxd\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"zGdCiLaK3\",style:{background:\"conic-gradient(from 180deg at 50% 50%, #4cf 0deg, #4cf 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{KUhNjWVvW:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ojgx5i\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"Osc_BXJG2\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XC8se.framer-1prjvvu, .framer-XC8se .framer-1prjvvu { display: block; }\",\".framer-XC8se.framer-8l6ke { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-XC8se .framer-4l2xwh { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-XC8se .framer-7hxouy { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-XC8se .framer-1drnpxd { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-XC8se .framer-ojgx5i { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XC8se.framer-8l6ke { gap: 0px; } .framer-XC8se.framer-8l6ke > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-XC8se.framer-8l6ke > :first-child { margin-left: 0px; } .framer-XC8se.framer-8l6ke > :last-child { margin-right: 0px; } }\",\".framer-XC8se.framer-v-hp4k3h.framer-8l6ke, .framer-XC8se.framer-v-rr1j7j.framer-8l6ke, .framer-XC8se.framer-v-a0u6ng.framer-8l6ke, .framer-XC8se.framer-v-1ov5fpt.framer-8l6ke { cursor: unset; }\",\".framer-XC8se.framer-v-hp4k3h .framer-1drnpxd { overflow: hidden; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"KUhNjWVvW\":{\"layout\":[\"fixed\",\"fixed\"]},\"Zi3lfVbuQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"LNIP06QwN\":{\"layout\":[\"fixed\",\"fixed\"]},\"V0oZr5uMi\":{\"layout\":[\"fixed\",\"fixed\"]},\"OwsHvwBUV\":{\"layout\":[\"fixed\",\"fixed\"]},\"jS88WfZM_\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKV2Llfkw4=withCSS(Component,css,\"framer-XC8se\");export default FramerKV2Llfkw4;FramerKV2Llfkw4.displayName=\"Button\";FramerKV2Llfkw4.defaultProps={height:40,width:240};addPropertyControls(FramerKV2Llfkw4,{variant:{options:[\"HvTmPEHo1\",\"KUhNjWVvW\",\"Zi3lfVbuQ\",\"LNIP06QwN\",\"V0oZr5uMi\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerKV2Llfkw4,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKV2Llfkw4\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"240\",\"framerIntrinsicHeight\":\"40\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KUhNjWVvW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Zi3lfVbuQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LNIP06QwN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"V0oZr5uMi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OwsHvwBUV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jS88WfZM_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KV2Llfkw4.map", "// Generated by Framer (e2fa450)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,FormContainer,FormPlainTextInput,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Button from\"https://framerusercontent.com/modules/gr9tM1IxjoF2zxH3qxpT/6bgS6sGrLSOwocpxv6IW/KV2Llfkw4.js\";const ButtonFonts=getFonts(Button);const serializationHash=\"framer-Ng9jA\";const variantClassNames={DNczGV4ZY:\"framer-v-1v8z9be\"};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 transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":var _variants_success;return(_variants_success=variants.success)!==null&&_variants_success!==void 0?_variants_success:currentVariant;case\"pending\":var _variants_pending;return(_variants_pending=variants.pending)!==null&&_variants_pending!==void 0?_variants_pending:currentVariant;case\"error\":var _variants_error;return(_variants_error=variants.error)!==null&&_variants_error!==void 0?_variants_error:currentVariant;case\"incomplete\":var _variants_incomplete;return(_variants_incomplete=variants.incomplete)!==null&&_variants_incomplete!==void 0?_variants_incomplete:currentVariant;}};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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"DNczGV4ZY\",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(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1v8z9be\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"DNczGV4ZY\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},children:/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/3f6be31f-9685-4761-837e-cd059ab612e7/submit\",className:\"framer-1pribt2\",layoutDependency:layoutDependency,layoutId:\"vIBZbg2L5\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},transformTemplate:transformTemplate1,children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\"},children:\"Get in touch\"})}),className:\"framer-1yivbw9\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"QOo4xc_UH\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1rbkpwd\",layoutDependency:layoutDependency,layoutId:\"EHUJKSWb0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Name\"})}),className:\"framer-x950yh\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"csZFKBcns\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-s57udz\",inputName:\"Name\",layoutDependency:layoutDependency,layoutId:\"xjeYuoMNl\",placeholder:\"Jane Smith\",required:true,style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"rgb(153, 153, 153)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-3bfl8s\",layoutDependency:layoutDependency,layoutId:\"zxVYwypfv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Email\"})}),className:\"framer-aq5yz4\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"R_6di3ILs\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-blea6k\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"xda4hukIW\",placeholder:\"jane@framer.com\",required:true,style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"rgb(153, 153, 153)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"email\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-9i81in\",layoutDependency:layoutDependency,layoutId:\"ylTWG_5ng\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Phone\"})}),className:\"framer-1jm3ekw\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Uvzdv6uYp\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-tblesu\",inputName:\"Phone\",layoutDependency:layoutDependency,layoutId:\"PV_vLqMw1\",placeholder:\"Phone\",required:true,style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"rgb(153, 153, 153)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"tel\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||382)*.5000000000000002-191)+20+302,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-w1z6da-container\",layoutDependency:layoutDependency,layoutId:\"IU8XnLRtg-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"IU8XnLRtg\",layoutId:\"IU8XnLRtg\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"KUhNjWVvW\",success:\"LNIP06QwN\"},\"HvTmPEHo1\"),width:\"100%\"})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ng9jA.framer-1be7yho, .framer-Ng9jA .framer-1be7yho { display: block; }\",\".framer-Ng9jA.framer-1v8z9be { height: 382px; position: relative; width: 402px; }\",\".framer-Ng9jA .framer-1pribt2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 0px; overflow: hidden; padding: 20px; position: absolute; right: 0px; top: 50%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Ng9jA .framer-1yivbw9, .framer-Ng9jA .framer-x950yh, .framer-Ng9jA .framer-aq5yz4, .framer-Ng9jA .framer-1jm3ekw { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Ng9jA .framer-1rbkpwd, .framer-Ng9jA .framer-3bfl8s, .framer-Ng9jA .framer-9i81in { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-Ng9jA .framer-s57udz, .framer-Ng9jA .framer-blea6k, .framer-Ng9jA .framer-tblesu { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-padding: 12px; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-Ng9jA .framer-w1z6da-container { flex: none; height: 40px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ng9jA .framer-1pribt2, .framer-Ng9jA .framer-1rbkpwd, .framer-Ng9jA .framer-3bfl8s, .framer-Ng9jA .framer-9i81in { gap: 0px; } .framer-Ng9jA .framer-1pribt2 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Ng9jA .framer-1pribt2 > :first-child, .framer-Ng9jA .framer-1rbkpwd > :first-child, .framer-Ng9jA .framer-3bfl8s > :first-child, .framer-Ng9jA .framer-9i81in > :first-child { margin-top: 0px; } .framer-Ng9jA .framer-1pribt2 > :last-child, .framer-Ng9jA .framer-1rbkpwd > :last-child, .framer-Ng9jA .framer-3bfl8s > :last-child, .framer-Ng9jA .framer-9i81in > :last-child { margin-bottom: 0px; } .framer-Ng9jA .framer-1rbkpwd > *, .framer-Ng9jA .framer-3bfl8s > *, .framer-Ng9jA .framer-9i81in > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 382\n * @framerIntrinsicWidth 402\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertzbfaH6lq=withCSS(Component,css,\"framer-Ng9jA\");export default FramertzbfaH6lq;FramertzbfaH6lq.displayName=\"form\";FramertzbfaH6lq.defaultProps={height:382,width:402};addFonts(FramertzbfaH6lq,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...ButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertzbfaH6lq\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"382\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"402\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tzbfaH6lq.map", "// Generated by Framer (128ce9c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import CookieBanner from\"https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/lHWI5ZgO1uh19TvlznGn/Cookies.js\";import Embed1 from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import FAQ from\"#framer/local/canvasComponent/gWoShLv2R/gWoShLv2R.js\";import UserComponent1 from\"#framer/local/canvasComponent/MDcEcW54z/MDcEcW54z.js\";import UserComponent from\"#framer/local/canvasComponent/oj0hAZC82/oj0hAZC82.js\";import Form from\"#framer/local/canvasComponent/tzbfaH6lq/tzbfaH6lq.js\";import*as sharedStyle from\"#framer/local/css/GTg_GqQaV/GTg_GqQaV.js\";import*as sharedStyle1 from\"#framer/local/css/UvcmRHRwk/UvcmRHRwk.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const UserComponentFonts=getFonts(UserComponent);const CookieBannerFonts=getFonts(CookieBanner);const FormFonts=getFonts(Form);const EmbedFonts=getFonts(Embed);const UserComponent1Fonts=getFonts(UserComponent1);const MotionDivWithFX=withFX(motion.div);const Embed1Fonts=getFonts(Embed1);const FAQFonts=getFonts(FAQ);const breakpoints={l7_FvOud7:\"(min-width: 810px) and (max-width: 1439px)\",T0lvaDWzn:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-E16C1\";const variantClassNames={l7_FvOud7:\"framer-v-tf1r54\",T0lvaDWzn:\"framer-v-l241wy\",WQLkyLRf1:\"framer-v-72rtr7\"};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate3=(_,t)=>`translate(-50%, -50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"T0lvaDWzn\",Tablet:\"l7_FvOud7\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const k9W7gMjUi3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"o3pJr7HUI\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"T0lvaDWzn\")return true;return false;};const elementId1=useRouteElementId(\"JUa6jgaTl\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"RCvjL1Daj\");const ref3=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"l7_FvOud7\",\"T0lvaDWzn\"].includes(baseVariant))return false;return true;};const elementId3=useRouteElementId(\"YPHru_BKr\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"R8Y0GVRUg\");const ref5=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"T0lvaDWzn\")return false;return true;};const elementId5=useRouteElementId(\"KXu9yEgf8\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"bsifScbPT\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"WTaM0kHGD\");const ref8=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"l7_FvOud7\")return true;return false;};const elementId8=useRouteElementId(\"YhPtoV1ee\");const ref9=React.useRef(null);const isDisplayed4=()=>{if(!isBrowser())return true;if([\"l7_FvOud7\",\"T0lvaDWzn\"].includes(baseVariant))return true;return false;};const elementId9=useRouteElementId(\"oHw1YIphq\");const ref10=React.useRef(null);const elementId10=useRouteElementId(\"wqn01CcdP\");const ref11=React.useRef(null);const isDisplayed5=()=>{if(!isBrowser())return true;if(baseVariant===\"l7_FvOud7\")return false;return true;};const elementId11=useRouteElementId(\"fOp1kutjh\");const ref12=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ecrxbb\",\"data-framer-name\":\"\u041F\u0435\u0440\u0432\u044B\u0439\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qo8zzk\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xgpon\",\"data-framer-name\":\"Frame 427318481\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-text-transform\":\"uppercase\"},children:\"Background check\"})})},T0lvaDWzn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-text-transform\":\"uppercase\"},children:\"Background check\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-transform\":\"uppercase\"},children:\"Background check\"})}),className:\"framer-1unfupn\",\"data-framer-name\":\"Background check\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 322 17\"><path d=\"M 252.339 1.35 L 1.325 1.35 L 287.441 13.835\" fill=\"transparent\" stroke-width=\"2.65\" stroke=\"rgb(248,43,43)\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:11300910086},T0lvaDWzn:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 280 15\"><path d=\"M 244.679 1.304 L 1.284 1.304 L 278.716 13.37\" fill=\"transparent\" stroke-width=\"2.57\" stroke=\"rgb(248,43,43)\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:11331104634}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19dm4lv\",\"data-framer-name\":\"Vector 17\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 436 23\"><path d=\"M 381 2 L 2 2 L 434 20.5\" fill=\"transparent\" stroke-width=\"4\" stroke=\"rgb(248,43,43)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:9040668460,withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"100%\",\"--framer-text-transform\":\"uppercase\"},children:\"digital reputation\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"100%\",\"--framer-text-transform\":\"uppercase\"},children:\"Revolution\"})]})},T0lvaDWzn:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"100%\",\"--framer-text-transform\":\"uppercase\"},children:\"digital reputation\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"100%\",\"--framer-text-transform\":\"uppercase\"},children:\"Revolution\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"100%\",\"--framer-text-transform\":\"uppercase\"},children:\"digital reputation\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"100%\",\"--framer-text-transform\":\"uppercase\"},children:\"Revolution\"})]}),className:\"framer-1n0zp7j\",\"data-framer-name\":\"Revolution digital reputation\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"PROFID is a cutting-edge security tool that streamlines background checks and access management. It combines advanced encryption, user-friendly interfaces, and seamless integration to provide a comprehensive security solution for businesses of all sizes.\"})})},T0lvaDWzn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"PROFID is a cutting-edge security tool that streamlines background checks and access management. It combines advanced encryption, user-friendly interfaces, and seamless integration to provide a comprehensive security solution for businesses of all sizes.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"PROFID is a cutting-edge security tool that streamlines background checks and access management. It combines advanced encryption, user-friendly interfaces, and seamless integration to provide a comprehensive security solution for businesses of all sizes.\"})}),className:\"framer-1h6kr1i\",\"data-framer-name\":\"EPASS is a cutting-edge security tool that streamlines background checks and access management. It combines advanced encryption, user-friendly interfaces, and seamless integration to provide a comprehensive security solution for businesses of all sizes\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ss4wur\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{y:(componentViewport?.y||0)+0+83+50+0+661.5+0+0},T0lvaDWzn:{y:(componentViewport?.y||0)+0+83+30+0+0+650.5+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+0+-143.5+0+1103+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hr8uex-container\",nodeId:\"f2rD7yh8M\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{style:{width:\"100%\"}},T0lvaDWzn:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(UserComponent,{height:\"100%\",id:\"f2rD7yh8M\",layoutId:\"f2rD7yh8M\",MY6MPKVVr:\"Start simulation\",OyPYrAwsq:\"https://demo.theprofid.com/\",uv92xjzJ4:\"0px 2px 5px 0px rgba(0, 0, 0, 0.16)\",variant:\"JS4ai7u1v\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{y:(componentViewport?.y||0)+0+83+50+0+661.5+0+69},T0lvaDWzn:{y:(componentViewport?.y||0)+0+83+30+0+0+650.5+0+69}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+0+-143.5+0+1103+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16ex76i-container\",nodeId:\"DPulVPApF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{style:{width:\"100%\"}},T0lvaDWzn:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(UserComponent,{height:\"100%\",id:\"DPulVPApF\",layoutId:\"DPulVPApF\",MY6MPKVVr:\"Contact us\",OyPYrAwsq:\"https://calendly.com/profid-theprofid/30min\",uv92xjzJ4:\"0px 2px 5px 0px rgba(0, 0, 0, 0.16)\",variant:\"Pz37dXdKS\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:552,intrinsicWidth:625,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+83+270.75),pixelHeight:552,pixelWidth:625,sizes:\"389px\",src:\"https://framerusercontent.com/images/oTItonaaShZdSK8dEFWamfzXXA.png\",srcSet:\"https://framerusercontent.com/images/oTItonaaShZdSK8dEFWamfzXXA.png?scale-down-to=512 512w,https://framerusercontent.com/images/oTItonaaShZdSK8dEFWamfzXXA.png 625w\"}},T0lvaDWzn:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:552,intrinsicWidth:625,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+83+30+813.5),pixelHeight:552,pixelWidth:625,sizes:\"344.2029px\",src:\"https://framerusercontent.com/images/oTItonaaShZdSK8dEFWamfzXXA.png\",srcSet:\"https://framerusercontent.com/images/oTItonaaShZdSK8dEFWamfzXXA.png?scale-down-to=512 512w,https://framerusercontent.com/images/oTItonaaShZdSK8dEFWamfzXXA.png 625w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:552,intrinsicWidth:625,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+159),pixelHeight:552,pixelWidth:625,sizes:\"625px\",src:\"https://framerusercontent.com/images/oTItonaaShZdSK8dEFWamfzXXA.png\",srcSet:\"https://framerusercontent.com/images/oTItonaaShZdSK8dEFWamfzXXA.png?scale-down-to=512 512w,https://framerusercontent.com/images/oTItonaaShZdSK8dEFWamfzXXA.png 625w\"},className:\"framer-51va3p\",\"data-framer-name\":\"\\xd0_\\xd0_\\xd0_\\xd1_\\xd1_\\xd1_\\xd1_\\xd0_\\xd1_\\xd0_\\xd1_01_1_\\xd0\\xba\\xd0_\\xd0_\\xd0_\\xd1_\"})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14bb3wk-container\",isAuthoredByUser:true,isModuleExternal:true,layoutScroll:true,nodeId:\"W19DqwGLd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CookieBanner,{banner:{animation:{scale:1,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},x:0,y:10},containerWidth:0,inset:20,insetBottom:20,insetLeft:20,insetPerSide:false,insetRight:20,insetTop:20,padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,position:\"bottom-right\",style:{backdrop:\"rgba(0, 0, 0, 0.1)\",border:{color:\"rgba(0, 0, 0, 0.05)\",radius:14,width:1},colorBody:\"rgb(68, 68, 68)\",colorTitle:\"rgb(0, 0, 0)\",fill:\"rgb(255, 255, 255)\",fontBody:{},fontTitle:{},link:\"rgb(153, 153, 153)\"},width:360,zIndex:10},button:{borderRadius:8,direction:\"row\",fluid:true,font:{},hoverOpacity:.6,labels:{accept:\"Accept\",acceptAll:\"Accept all\",confirm:\"Okay\",customize:\"Customize\",reject:\"Reject\",rejectAll:\"Reject all\",save:\"Save Preferences\"},padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,primary:{color:\"rgb(255, 255, 255)\",fill:\"rgb(0, 0, 0)\"},secondary:{color:\"rgb(68, 68, 68)\",fill:\"rgb(238, 238, 238)\"},tapOpacity:.4},content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:\"https://www.framer.com/legal/policy/\",prefix:\"Read our\"},euShowReject:true,euTitle:\"\",euType:\"medium\",isEU:false,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to understand & improve\\nour website and provide personalized\\ncontent & advertising. \",worldPolicy:{label:\"Cookie Policy\",link:\"https://drive.google.com/file/d/1FofrZ8XLjP3o-5kNmGwQWokvlT9fiQ-7/view\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"},gtmId:\"\",height:\"100%\",id:\"W19DqwGLd\",layoutId:\"W19DqwGLd\",options:{analytics:{description:\"Enables tracking of performance.\",title:\"Analytics\"},marketing:{description:\"Enables ads personalization and tracking.\",title:\"Marketing\"},necessary:{description:\"Enables security and basic functionality.\",optional:true,title:\"Necessary\"},preferences:{description:\"Enables personalized content and settings.\",title:\"Preferences\"},preview:false,style:{background:\"rgba(0, 0, 0, 0.02)\",border:{color:\"rgba(0, 0, 0, 0.02)\",radius:8,width:0},fontBody:{},fontTitle:{},padding:12,paddingBottom:12,paddingLeft:12,paddingPerSide:false,paddingRight:12,paddingTop:12,toggleColor:\"rgb(0, 0, 0)\",toggleColorInactive:\"rgba(0, 0, 0, 0.1)\"}},preview:true,trigger:{color:\"rgb(51, 51, 51)\",iconSize:24,iconType:\"default\",text:\"Cookie Settings\",textFont:{},type:\"none\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mjiyyl hidden-72rtr7 hidden-tf1r54\",\"data-border\":true,\"data-framer-name\":\"Frame 427318589\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9fj9wa\",\"data-framer-name\":\"Frame 427318593\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://dashboard.theprofid.com\",motionChild:true,nodeId:\"XuXGZu4ZI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1gtlfp3 framer-lux5qc\",\"data-framer-name\":\"Frame 427318279\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Customer login\"})}),className:\"framer-1ip6qgs\",\"data-framer-name\":\"Customer login\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":o3pJr7HUI\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"QDQlTWh16\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1wal6g framer-lux5qc\",\"data-framer-name\":\"g10\",fill:\"black\",intrinsicHeight:430,intrinsicWidth:2039,svg:'<svg width=\"2039\" height=\"430\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><mask id=\"a\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"2039\" height=\"430\"><path d=\"M.627 0H2038.42v429.992H.627V0Z\" fill=\"#fff\"/></mask><g mask=\"url(#a)\" fill=\"#563FFF\"><path d=\"M227.173 357.527a4.96 4.96 0 0 0-1.262-.558c.43.124.848.306 1.243.552l73.627 46.188a53.524 53.524 0 0 0 6.016 3.066 53.54 53.54 0 0 1-6.011-3.066l-73.613-46.182Zm-113.937 29.008c7.349 2.696 15.388 1.934 22.6-2.351l54.539-34.219c-.003-.001-.01-.002-.012-.004l-54.54 34.216c-7.203 4.279-15.242 5.04-22.587 2.358Zm55.095-327.022c8.268-24.668 30.352-40.608 56.257-40.608 8.088 0 15.807 1.556 22.846 4.444-7.046-2.893-14.767-4.45-22.864-4.45-25.899 0-47.976 15.94-56.251 40.607l-28.008 83.543.012.004 28.008-83.54Zm-94.977 283.31 24.243-72.312-.012-.01-24.243 72.316c-6.921 20.63-.628 42.185 15.821 55.953-16.44-13.779-22.726-35.328-15.809-55.947Zm269.631 39.87c-6.721 4.989-14.599 6.566-22.1 4.677 7.508 1.892 15.391.316 22.112-4.677 7.809-5.778 15.145-17.842 10.127-32.819l-20.575-61.372-.016.012 20.572 61.36c5.019 14.971-2.312 27.035-10.12 32.819ZM94.252 402.567c14.085 9.218 31.066 10.941 46.557 4.784-15.481 6.141-32.465 4.421-46.557-4.784ZM238.954 44.876c7.98 3.504 15.36 10.305 19.173 21.681l27.94 83.344.012-.005-27.939-83.332c-3.817-11.384-11.201-18.186-19.186-21.688Zm-76.021 287.219c6.377 6.012 13.443 11.01 20.988 14.909-7.541-3.899-14.601-8.895-20.976-14.903l-46.301-43.646-.004.006 46.293 43.634Z\"/><path d=\"m97.6 270.503-61.773-58.228c-.171-.16-.311-.338-.479-.501.165.16.299.343.467.501l61.769 58.226.013.01.003-.008Zm183.239-210.99c-5.687-16.964-17.907-29.8-33.405-36.164-7.039-2.888-14.758-4.444-22.846-4.444-25.904 0-47.989 15.94-56.257 40.608l-28.007 83.54 4.572 1.373 13.626 4.098 4.573 1.372 27.936-83.332c6.105-18.208 21.339-24.699 33.557-24.699 4.579 0 9.579.912 14.366 3.01 7.985 3.503 15.369 10.305 19.186 21.689l27.939 83.332 4.569-1.372 13.63-4.098 4.569-1.373-28.008-83.54Zm-65.945 296.846c-6.457-.718-12.774-2.193-18.894-4.294-1.895-.651-3.776-1.322-5.624-2.099l-54.54 34.217c-7.212 4.287-15.251 5.048-22.6 2.352-2.451-.898-4.823-2.18-7.063-3.842-7.81-5.778-15.139-17.835-10.12-32.819l20.587-61.413.004-.007-3.824-3.603-11.399-10.745-3.821-3.603-.003.008-24.243 72.312c-6.917 20.618-.63 42.168 15.81 55.947.833.697 1.565 1.469 2.448 2.124.85.631 1.764 1.101 2.64 1.672 14.092 9.205 31.076 10.927 46.557 4.784 2.655-1.053 5.271-2.279 7.811-3.791l73.384-46.032c.532-.332 1.112-.512 1.702-.621a88.141 88.141 0 0 1-8.812-.547Zm160.928-13.536-24.23-72.274-3.823 3.604-11.4 10.745-3.82 3.604 20.575 61.372c5.018 14.977-2.318 27.041-10.127 32.819-6.721 4.993-14.604 6.569-22.112 4.677-.227-.056-.447-.157-.671-.221-1.018-.287-2.034-.594-3.034-1.008a28.746 28.746 0 0 1-3.603-1.808l-54.748-34.35c-1.851.776-3.736 1.446-5.631 2.096-6.125 2.1-12.442 3.572-18.904 4.288a88.077 88.077 0 0 1-8.808.54c.139.027.286.02.426.062.434.124.86.309 1.261.558l73.613 46.182a53.455 53.455 0 0 0 6.011 3.066c6.488 2.828 13.417 4.319 20.365 4.319 10.878 0 21.383-3.528 30.396-10.2 18.358-13.611 25.527-36.403 18.264-58.071Z\"/><path d=\"M41.69 133.009c12.712-8.598 28.39-10.996 42.97-6.628l139.959 42.068 139.96-42.068c14.604-4.368 30.259-1.97 42.975 6.628 6.753 4.565 12.145 10.481 15.918 17.278-3.773-6.825-9.178-12.765-15.956-17.346-12.716-8.598-28.382-11.015-42.974-6.63l-55.695 16.743-4.569 1.372-13.63 4.097-4.569 1.374-.012.004-61.479 18.48-61.493-18.484-4.572-1.374-13.627-4.097-4.572-1.372-.013-.005-55.681-16.738c-14.594-4.385-30.247-1.968-42.976 6.63-13.524 9.144-21.594 23.693-22.128 39.912-.012.381.056.746.05 1.125.006-.352-.032-.696-.018-1.051.54-16.225 8.609-30.774 22.133-39.918Zm-20.13 56.188a50.708 50.708 0 0 0 1.814 5.136 50.368 50.368 0 0 1-1.907-5.588c.04.148.05.304.094.452Z\"/><path d=\"M179.631 315.701 52.512 195.876c-6.156-5.808-9.398-13.699-9.113-22.215.299-8.94 4.672-16.904 12.001-21.86 4.436-3.001 9.55-4.585 14.779-4.585 2.492 0 4.976.366 7.368 1.086l146.383 43.995.689.205 147.079-44.2c7.454-2.266 15.524-.981 22.14 3.499 7.33 4.956 11.704 12.92 12.001 21.867.285 8.516-2.957 16.405-9.113 22.208L269.607 315.701c-25.637 24.165-64.313 24.165-89.976 0Zm243.841-165.413c-3.773-6.798-9.165-12.714-15.918-17.279-12.716-8.597-28.371-10.996-42.976-6.628l-139.959 42.068L84.66 126.381c-14.58-4.368-30.26-1.969-42.969 6.628-13.524 9.144-21.593 23.693-22.133 39.919-.014.354.024.698.018 1.049a52.913 52.913 0 0 0 .562 8.363c.32 2.17.74 4.316 1.329 6.405a50.178 50.178 0 0 0 1.908 5.588c.083.204.195.393.283.595.297.689.645 1.357.972 2.034a51.15 51.15 0 0 0 1.86 3.526c.41.704.838 1.396 1.282 2.081a51.854 51.854 0 0 0 2.339 3.284c.467.608.91 1.225 1.408 1.815a53.505 53.505 0 0 0 3.83 4.106c.167.163.307.342.478.502L97.6 270.504l3.82 3.602 11.399 10.746 3.824 3.602 46.303 43.647c6.373 6.009 13.433 11.005 20.974 14.903 2.107 1.089 4.268 2.041 6.443 2.957l.012.004c1.848.779 3.731 1.449 5.625 2.1 6.119 2.101 12.436 3.575 18.894 4.295 2.917.324 5.856.514 8.812.546.305.003.609.043.913.043.292 0 .577-.039.867-.041a88.696 88.696 0 0 0 8.809-.54c6.46-.716 12.777-2.19 18.903-4.288 1.894-.651 3.78-1.32 5.632-2.098a91.86 91.86 0 0 0 27.464-17.881l46.24-43.588.014-.012 3.822-3.603 11.398-10.745 3.824-3.605 61.82-58.272c10.995-10.356 16.772-24.334 16.27-39.348-.268-8.123-2.427-15.826-6.21-22.64Zm291.963 78.932H589.106v-62.584h126.329v62.584ZM539.432 124.185v232.526h49.674v-85.039h140.356l35.637-34.241v-79.006l-35.637-34.24h-190.03Zm456.451 103.683H869.554v-61.232h126.329v61.232Zm14.027 42.443 35.65-34.24v-77.646l-35.65-34.24H819.88v232.526h49.674v-86.4h84.821l46.905 86.4h52.2l-47.26-86.4h3.69Zm287.23 42.597h-141.49V167.999h141.49v144.909Zm-155.51-188.723-35.65 34.24v164.046l35.65 34.24h169.54l35.65-34.24V158.425l-35.65-34.24h-169.54Zm444.01 97.578h-125.56v-55.462h159.77v-42.116h-209.44v232.526h49.67v-93.178h125.56v-41.77Zm79.11 134.948h49.68V124.185h-49.68v232.526Zm305.1-43.803h-139.02V167.999h139.02v144.909Zm-188.69-188.723v232.526h202.72l35.64-34.24V158.425l-35.64-34.24h-202.72Z\"/></g></svg>',withExternalLayout:true})})]})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qrgemf hidden-72rtr7 hidden-tf1r54\",\"data-framer-name\":\"Frame 427318597\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-loeezu\",\"data-framer-name\":\"Frame 427318594\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"125%\"},children:\"The perfect solution for different industries \"})}),className:\"framer-uhuq5h\",\"data-framer-name\":\"Perfect solution for different industries\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Hire highly-qualified employees faster than the competition with PROFID\u2019s modern background check platform.\"})}),className:\"framer-1mhxxnd\",\"data-framer-name\":\"Hire highly-qualified employees faster than the competition with EPASS\u2019s modern background check platform.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"It offers an aggregated database encompassing all pertinent information, enabling companies across all industries to effectively assess candidates.\"})}),className:\"framer-u420we\",\"data-framer-name\":\"It offers an aggregated database encompassing all pertinent information, enabling companies across all industries to effectively assess candidates.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lo58uk\",\"data-framer-name\":\"Frame 427318603\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f87t8y\",\"data-framer-name\":\"Frame 427318601\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-51dl1e\",\"data-framer-name\":\"Frame 427318599\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wzt2m0\",\"data-framer-name\":\"Frame 427318598\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Staffing\"})}),className:\"framer-10h9de\",\"data-framer-name\":\"Staffing\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Avoid background check delays.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Detect risks: criminal history, data falsification. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Improve hiring quality.\"})]}),className:\"framer-bsjt5l\",\"data-framer-name\":\"Avoid background check delays Detect risks: criminal history, data falsification Improve hiring quality\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wnhfrj\",\"data-framer-name\":\"Frame_427318486\",fill:\"black\",intrinsicHeight:149,intrinsicWidth:120,svg:'<svg width=\"120\" height=\"149\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"20.753\" y=\"19.876\" width=\"98.371\" height=\"118.549\" rx=\"11.35\" fill=\"url(#a)\"/><path d=\"M61.74 9.787a6.24 6.24 0 0 0-6.1 4.933l-2.727 12.723h35.312l-3.832-13.412a5.852 5.852 0 0 0-5.627-4.244H61.741Z\" fill=\"#fff\"/><path d=\"M69.938 1.59c-6.053 0-7.987 5.464-8.197 8.197h17.025c-.42-2.733-2.774-8.198-8.828-8.198Z\" fill=\"#fff\"/><path d=\"M52.913 27.443H38.409c-6.268 0-11.35 5.082-11.35 11.35v80.715c0 6.269 5.082 11.35 11.35 11.35h63.058c6.269 0 11.351-5.081 11.351-11.35V38.794c0-6.269-5.082-11.35-11.351-11.35H88.225m-35.312 0 2.726-12.724a6.24 6.24 0 0 1 6.102-4.933m-8.828 17.656h35.312m0 0-3.832-13.412a5.852 5.852 0 0 0-5.627-4.244m-17.025 0c.21-2.733 2.144-8.198 8.197-8.198 6.054 0 8.408 5.465 8.828 8.198m-17.025 0h17.025\" stroke=\"#000\" stroke-width=\"1.261\"/><path fill=\"#000\" d=\"M37.148 43.838h32.79v2.522h-32.79zm0 10.09h32.79v2.522h-32.79zm0 10.089H61.11v2.522H37.148z\"/><mask id=\"b\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"76\" y=\"36\" width=\"32\" height=\"32\"><circle cx=\"92.205\" cy=\"52.036\" r=\"15.134\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.261\"/></mask><g mask=\"url(#b)\" stroke=\"#000\" stroke-width=\"1.261\"><circle cx=\"92.205\" cy=\"52.036\" r=\"15.134\" fill=\"#fff\"/><path d=\"M95.989 46.36v3.784a4.414 4.414 0 0 1-8.829 0v-3.783a4.414 4.414 0 0 1 8.829 0ZM78.963 67.8c0-4.203 2.522-12.611 12.611-12.611 10.09 0 12.192 8.407 11.981 12.611\"/></g><rect x=\"84.638\" y=\"75.998\" width=\"15.134\" height=\"15.134\" rx=\"3.153\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.261\"/><rect x=\"84.638\" y=\"103.113\" width=\"15.134\" height=\"15.134\" rx=\"3.153\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.261\"/><path d=\"m88.422 81.043 5.675 5.675 11.981-11.981m-17.656 33.42 5.675 5.676 11.981-11.981\" stroke=\"#000\" stroke-width=\"1.261\"/><circle cx=\"53.739\" cy=\"95.546\" r=\"20.809\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.261\"/><rect x=\"51.217\" y=\"82.934\" width=\"5.045\" height=\"5.045\" rx=\"1.261\" fill=\"#000\"/><path d=\"M43.28 88.654a1.261 1.261 0 0 1 0-1.783l1.785-1.784a1.261 1.261 0 0 1 1.783 0l2.675 2.675-3.567 3.568-2.675-2.676Zm20.486 0a1.261 1.261 0 0 0 0-1.783l-1.784-1.784a1.261 1.261 0 0 0-1.784 0l-2.675 2.675 3.567 3.568 2.675-2.676Zm0 13.351a1.26 1.26 0 0 1 0 1.783l-1.784 1.784a1.262 1.262 0 0 1-1.784 0l-2.675-2.676 3.567-3.567 2.675 2.676Zm-20.486 0a1.26 1.26 0 0 0 0 1.783l1.785 1.784a1.262 1.262 0 0 0 1.783 0l2.675-2.676-3.567-3.567-2.675 2.676Z\" fill=\"#000\"/><rect x=\"51.217\" y=\"103.113\" width=\"5.045\" height=\"5.045\" rx=\"1.261\" fill=\"#000\"/><rect x=\"61.307\" y=\"93.024\" width=\"5.045\" height=\"5.045\" rx=\"1.261\" fill=\"#000\"/><rect x=\"41.128\" y=\"93.024\" width=\"5.045\" height=\"5.045\" rx=\"1.261\" fill=\"#000\"/><circle cx=\"53.74\" cy=\"95.546\" r=\"8.198\" stroke=\"#000\" stroke-width=\"1.261\"/><circle cx=\"53.74\" cy=\"95.546\" r=\"2.522\" fill=\"#000\"/><path fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.261\" d=\"m36.345 108.483 4.7 4.7-6.242 6.243-4.7-4.7z\"/><rect x=\"26.822\" y=\"111.572\" width=\"15.255\" height=\"35.859\" rx=\"3.153\" transform=\"rotate(45 26.822 111.572)\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.261\"/><defs><linearGradient id=\"a\" x1=\"20.753\" y1=\"38.667\" x2=\"102.729\" y2=\"138.425\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient></defs></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jk3nt5\",\"data-framer-name\":\"Frame 427318602\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5yxkjn\",\"data-framer-name\":\"Frame 427318599\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a70izw\",\"data-framer-name\":\"Frame 427318598\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Freelance\"})}),className:\"framer-1oaewuk\",\"data-framer-name\":\"Freelance\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Enhance client satisfaction by working with verified freelancers. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Reduce fraud by identifying fraudulent indicators.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Quick account activation.\"})]}),className:\"framer-19iehhj\",\"data-framer-name\":\"Enhance client satisfaction by working with verified freelancers. Reduce fraud Detecting fraudulent signs Quick account activation\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-wn8a0e\",\"data-framer-name\":\"Frame_427318716\",fill:\"black\",intrinsicHeight:142,intrinsicWidth:172,svg:'<svg width=\"172\" height=\"142\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M80.225 34.208v23.135h14.289V34.208c1.134-5.896 7.348-17.69 23.134-17.69 15.786 0 21.547 12.7 22.454 19.051v21.774h14.289V34.208c-1.134-10.886-10.07-32.66-36.743-32.66-26.672 0-36.062 21.774-37.423 32.66Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.361\"/><rect x=\"55.73\" y=\"55.982\" width=\"115.671\" height=\"85.107\" rx=\"11.35\" fill=\"url(#a)\"/><path d=\"M36.679 75.033c.544 3.81 3.856 6.124 5.443 6.805.907.453 2.722-.136 2.722-6.124 0-7.485-2.042-12.928 6.123-12.928 1.134 0 3.81.408 5.444 2.041.453-.68 1.905-2.041 4.082-2.041 2.722 0 6.804 2.041 7.485 5.443-.227-4.536-3.538-13.608-14.97-13.608-11.43 0-15.649 7.258-16.33 10.887v9.525Z\" fill=\"#000\"/><path d=\"M98.597 140.353c-1.815-10.886-10.887-32.66-32.66-32.66a5.357 5.357 0 0 1-2.722-1.4c2.948 6.591 8.71 22.629 8.165 34.06h27.217Z\" fill=\"#fff\"/><path d=\"M42.122 81.838c-1.587-.68-4.899-2.994-5.443-6.805-.68-.907-2.314-1.905-3.402 1.361-1.361 4.083 0 7.485 2.721 9.526 2.178 1.633 4.536 1.134 5.444.68v14.97c0 .827-.179 1.988-.68 3.078a5.628 5.628 0 0 1-1.127 1.645c-.759 4.096-2.276 16.642-2.276 34.06h34.02c.545-11.431-5.216-27.469-8.164-34.06-.77-.751-1.361-1.84-1.361-3.362 0-4.083 0-5.444 1.36-6.805 1.362-1.36 4.764-2.04 4.764-9.526V68.23c-.68-3.403-4.763-5.444-7.485-5.444-2.177 0-3.629 1.36-4.082 2.041-1.633-1.633-4.31-2.041-5.444-2.041-8.165 0-6.123 5.443-6.123 12.928 0 5.987-1.815 6.577-2.722 6.124Z\" fill=\"#fff\"/><path d=\"M35.998 107.693c-5.443 0-34.701-2.041-34.701 32.66h36.062c0-17.418 1.517-29.964 2.276-34.06-.83.826-2.003 1.4-3.637 1.4Z\" fill=\"#fff\"/><path d=\"M36.679 75.033c.544 3.81 3.856 6.124 5.443 6.805.907.453 2.722-.136 2.722-6.124 0-7.485-2.042-12.928 6.123-12.928 1.134 0 3.81.408 5.444 2.041.453-.68 1.905-2.041 4.082-2.041 2.722 0 6.804 2.041 7.485 5.443m-31.3 6.804c-.68-.907-2.313-1.905-3.401 1.361-1.361 4.083 0 7.485 2.721 9.526 2.178 1.633 4.536 1.134 5.444.68v14.97c0 .827-.179 1.988-.68 3.078m-4.083-29.615v-9.525c.68-3.63 4.899-10.887 16.33-10.887 11.43 0 14.742 9.072 14.969 13.608m-4.763 27.897c-1.361 1.361-1.361 2.722-1.361 6.805 0 1.522.592 2.611 1.36 3.362m0-10.167c1.362-1.36 4.764-2.04 4.764-9.526m-4.763 9.526c-2.041 2.042-8.301 4.899-17.01 0M67.977 86.6V68.23m0 18.37V68.23M40.76 104.647l14.29 13.933 6.804-12.928m-21.093-1.004a5.628 5.628 0 0 1-1.126 1.645m23.58 0a5.357 5.357 0 0 0 2.721 1.4c21.774 0 30.846 21.774 32.66 32.66H71.38m-8.165-34.06c2.948 6.591 8.71 22.629 8.165 34.06m0 0H37.359m2.276-34.06c-.83.826-2.003 1.4-3.637 1.4-5.443 0-34.701-2.041-34.701 32.66h36.062m2.276-34.06c-.759 4.096-2.276 16.642-2.276 34.06\" stroke=\"#000\" stroke-width=\"1.361\"/><circle cx=\"116.968\" cy=\"98.168\" r=\"17.01\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.361\"/><path d=\"m109.483 98.848 7.485 7.485 21.093-21.093\" stroke=\"#000\" stroke-width=\"1.361\"/><rect x=\"73.421\" y=\"69.59\" width=\"8.165\" height=\"5.443\" rx=\"1.361\" fill=\"#000\"/><rect x=\"85.669\" y=\"69.59\" width=\"8.165\" height=\"5.443\" rx=\"1.361\" fill=\"#000\"/><rect x=\"97.916\" y=\"69.59\" width=\"8.165\" height=\"5.443\" rx=\"1.361\" fill=\"#000\"/><path d=\"M95.875 130.147h54.433m21.093-57.835h-51.712\" stroke=\"#000\" stroke-width=\"1.361\"/><defs><linearGradient id=\"a\" x1=\"55.73\" y1=\"69.472\" x2=\"103.818\" y2=\"165.323\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient></defs></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18a91xp\",\"data-framer-name\":\"Frame 427318603\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1840b2t\",\"data-framer-name\":\"Frame 427318599\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oiaxzs\",\"data-framer-name\":\"Frame 427318598\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Real Estate\"})}),className:\"framer-o5fzqx\",\"data-framer-name\":\"Real Estate\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Increase Tenant reliability. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Verify tenants\u2019 financial capabilities to pay. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Attract more tenants by providing a secure and trustworthy rental environment.\"})]}),className:\"framer-1b41agf\",\"data-framer-name\":\"Increase Tenant reliability Verify tenants\u2019 financial capabilities to pay Attract more tenants by providing a secure and trustworthy rental environment\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-157o1tb\",\"data-framer-name\":\"Frame_427318719\",fill:\"black\",intrinsicHeight:122,intrinsicWidth:154,svg:'<svg width=\"154\" height=\"122\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M49.886.764 22.203 28.36v92.928h90.394V.764h-62.71Z\" fill=\"url(#a)\"/><path d=\"M50.66.764V29.22H22.204\" stroke=\"#000\" stroke-width=\"1.116\"/><path d=\"M62.607 112.361V98.969h11.16v-9.486h11.717v-9.486h11.718V67.722h11.159v44.639H62.606Zm40.174-69.191v12.276l12.276-12.275h31.247c5.357 0 6.696-4.464 6.696-6.696V17.503c0-5.356-4.464-6.696-6.696-6.696h-49.66c-5.803 0-7.626 4.464-7.812 6.696v18.972c0 4.91 4.092 6.51 6.138 6.696h7.811Zm-54.682 67.541-8.928-5.046-32.07-46.87-4.199-6.139c-1.302-1.302-3.236-4.575-.558-7.253l5.022-3.348c2.678-1.786 5.952 1.488 7.254 3.348l3.759 5.58L50.331 98.41l1.137 9.858.537 4.65-3.906-2.208Z\" fill=\"#fff\"/><path d=\"M48.099 46.519h40.733M54.237 58.794h28.457m14.508 53.567h11.159v-44.64h-11.16v12.276m0 32.364H85.485m11.718 0V79.997m-11.718 32.364V89.483m0 22.878H73.766m23.436-32.364H85.484v9.486m0 0H73.766v9.486m0 13.392h-11.16V98.969h11.16m0 13.392V98.969M2.902 52.656c-1.302-1.302-3.236-4.575-.558-7.253l5.022-3.348c2.678-1.786 5.952 1.488 7.254 3.348M2.902 52.656l11.718-7.253M2.902 52.656l4.2 6.138m32.07 46.871 11.159-7.254m-11.16 7.254 8.928 5.046m-8.928-5.046-32.07-46.87m43.23 39.616 1.137 9.858m-1.137-9.858L18.379 50.982m29.72 59.729 3.906 2.208-.537-4.65m-3.369 2.442c.2-.876 1.155-2.591 3.37-2.442m-36.85-62.867 3.76 5.58M7.102 58.794l11.277-7.812m0 11.718 23.582 34.595m60.82-41.849V43.171H94.97c-2.046-.186-6.138-1.786-6.138-6.696V17.503c.186-2.232 2.009-6.696 7.812-6.696h49.66c2.232 0 6.696 1.34 6.696 6.696v18.972c0 2.232-1.339 6.696-6.696 6.696h-31.247l-12.276 12.275Z\" stroke=\"#000\" stroke-width=\"1.116\"/><path stroke=\"#000\" d=\"M115.5 24.264h13v13h-13z\"/><path d=\"M112.75 25.514 122 15.5l9.25 10.013h-18.5Z\" fill=\"#000\" stroke=\"#000\"/><defs><linearGradient id=\"a\" x1=\"22.203\" y1=\"19.868\" x2=\"106.772\" y2=\"112.887\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient></defs></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2g4im5\",\"data-framer-name\":\"Frame 427318604\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s20kag\",\"data-framer-name\":\"Frame 427318599\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ag5n6a\",\"data-framer-name\":\"Frame 427318598\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Automotive\"})}),className:\"framer-j3rqq4\",\"data-framer-name\":\"Automative\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Fast screening of customers and staff. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Identify fraudulent applications and reduces the risk of vehicle theft.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Build streamlined, efficient workflows.\"})]}),className:\"framer-1p1naxs\",\"data-framer-name\":\"Fast screening of customers and staff Identify fraudulent applications and reduces the risk of vehicle theft. Build streamlined, efficient workflows\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-15df5wm\",\"data-framer-name\":\"Frame_427318718\",fill:\"black\",intrinsicHeight:123,intrinsicWidth:157,svg:'<svg width=\"157\" height=\"123\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.01 93.475c-.863-12.301 15.123-14.89 26.1-14.635 2.52.058 4.939-1.125 6.347-3.217 8.14-12.093 14.041-15.931 16.099-16.305h41.21c4.108 0 11.902 13.094 15.285 19.64h5.87c6.261 0 9.049 8.296 9.66 12.443.718 4.898.389 8.68-.446 11.538-1.306 4.461-5.733 2.259-7.727-1.94-2.303-4.85-6.854-9.232-15.183-9.232-9.983 0-14.748 6.295-16.702 12.147-1.148 3.436-4.051 6.395-7.674 6.395h-24.74c-3.624 0-6.526-2.956-7.648-6.401-1.904-5.85-6.54-12.14-16.24-12.14-10.15 0-14.89 6.886-16.743 12.95-.958 3.134-3.492 4.807-4.838 1.819-1.153-2.559-2.183-6.67-2.63-13.062Zm51.603-29.033h14.185v14.639H39.773c2.12-3.335 7.655-10.93 12.84-14.639Zm21.033 14.639V64.442h12.35c2.74 0 4.484 1.627 5.014 2.44l7.704 12.198H73.646Z\" fill=\"url(#a)\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.01 93.475c-.863-12.301 15.123-14.89 26.1-14.635 2.52.058 4.939-1.125 6.347-3.217 8.14-12.093 14.041-15.931 16.099-16.305h41.21c4.108 0 11.902 13.094 15.285 19.64h5.87c6.261 0 9.049 8.296 9.66 12.443.718 4.898.389 8.68-.446 11.538-1.306 4.461-5.733 2.259-7.727-1.94-2.303-4.85-6.854-9.232-15.183-9.232-9.983 0-14.748 6.295-16.702 12.147-1.148 3.436-4.051 6.395-7.674 6.395h-24.74c-3.624 0-6.526-2.956-7.648-6.401-1.904-5.85-6.54-12.14-16.24-12.14-10.15 0-14.89 6.886-16.743 12.95-.958 3.134-3.492 4.807-4.838 1.819-1.153-2.559-2.183-6.67-2.63-13.062Zm51.603-29.033h14.185v14.639H39.773c2.12-3.335 7.655-10.93 12.84-14.639Zm21.033 14.639V64.442h12.35c2.74 0 4.484 1.627 5.014 2.44l7.704 12.198H73.646Z\" fill=\"url(#b)\"/><path d=\"M73.646 64.442v14.639h25.068l-7.704-12.2c-.53-.813-2.274-2.439-5.014-2.439h-12.35Z\" fill=\"url(#c)\"/><path d=\"M73.646 64.442v14.639h25.068l-7.704-12.2c-.53-.813-2.274-2.439-5.014-2.439h-12.35Z\" fill=\"#fff\"/><path d=\"M52.613 64.442h14.185v14.639H39.773c2.12-3.335 7.655-10.93 12.84-14.639Z\" fill=\"url(#d)\"/><path d=\"M52.613 64.442h14.185v14.639H39.773c2.12-3.335 7.655-10.93 12.84-14.639Z\" fill=\"#fff\"/><circle cx=\"24.976\" cy=\"110.318\" r=\"11\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"2\"/><circle cx=\"97.976\" cy=\"110.318\" r=\"11\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"2\"/><rect x=\"124.999\" y=\".318\" width=\"10.511\" height=\"10.511\" rx=\"2.628\" fill=\"#000\"/><path d=\"M108.463 12.237a2.628 2.628 0 0 1 0-3.716l3.716-3.717a2.629 2.629 0 0 1 3.717 0l5.574 5.575-7.433 7.432-5.574-5.574Zm42.681 0a2.628 2.628 0 0 0 0-3.716l-3.717-3.717a2.627 2.627 0 0 0-3.716 0l-5.574 5.575 7.432 7.432 5.575-5.574Zm0 27.817a2.628 2.628 0 0 1 0 3.716l-3.717 3.716a2.627 2.627 0 0 1-3.716 0l-5.574-5.574 7.432-7.432 5.575 5.574Zm-42.681 0a2.628 2.628 0 0 0 0 3.716l3.716 3.716a2.629 2.629 0 0 0 3.717 0l5.574-5.574-7.433-7.432-5.574 5.574Z\" fill=\"#000\"/><rect x=\"124.999\" y=\"42.363\" width=\"10.511\" height=\"10.511\" rx=\"2.628\" fill=\"#000\"/><rect x=\"146.021\" y=\"21.341\" width=\"10.511\" height=\"10.511\" rx=\"2.628\" fill=\"#000\"/><rect x=\"103.976\" y=\"21.341\" width=\"10.511\" height=\"10.511\" rx=\"2.628\" fill=\"#000\"/><circle cx=\"130.255\" cy=\"26.596\" r=\"17.081\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"2.628\"/><circle cx=\"130.255\" cy=\"26.596\" r=\"5.256\" fill=\"#000\"/><circle cx=\"24.976\" cy=\"110.318\" r=\"6\" fill=\"#000\"/><circle cx=\"97.976\" cy=\"110.318\" r=\"6\" fill=\"#000\"/><defs><linearGradient id=\"a\" x1=\".976\" y1=\"67.402\" x2=\"20.062\" y2=\"133.813\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#0B4DEB\"/><stop offset=\"1\" stop-color=\"#76BCF3\"/></linearGradient><linearGradient id=\"b\" x1=\".976\" y1=\"67.402\" x2=\"20.062\" y2=\"133.813\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient><linearGradient id=\"c\" x1=\".976\" y1=\"67.402\" x2=\"20.062\" y2=\"133.813\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#0B4DEB\"/><stop offset=\"1\" stop-color=\"#76BCF3\"/></linearGradient><linearGradient id=\"d\" x1=\".976\" y1=\"67.402\" x2=\"20.062\" y2=\"133.813\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#0B4DEB\"/><stop offset=\"1\" stop-color=\"#76BCF3\"/></linearGradient></defs></svg>',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r26ssp\",\"data-framer-name\":\"Frame 427318592\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h0mchb\",\"data-framer-name\":\"Frame 427318279\",id:\"1h0mchb\",onTap:onTap3bnx0g({overlay}),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get in touch\"})}),className:\"framer-1m39zw7\",\"data-framer-name\":\"Get started\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-17eqooe\"),\"data-framer-portal-id\":\"1h0mchb\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"k4VWSRuwx\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T0lvaDWzn:{width:\"350px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"474px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-hghlwk-container\"),\"data-framer-portal-id\":\"1h0mchb\",nodeId:\"PMj6n7Nnn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Form,{height:\"100%\",id:\"PMj6n7Nnn\",layoutId:\"PMj6n7Nnn\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),getContainer())})})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/profid-theprofid/30min\",motionChild:true,nodeId:\"H2LGXWgn7\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-p915uu framer-lux5qc\",\"data-framer-name\":\"Frame 427318591\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Contact us\"})}),className:\"framer-jzfw18\",\"data-framer-name\":\"Talk to sales\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2sujw0 hidden-72rtr7 hidden-tf1r54\",\"data-framer-name\":\"Frame 427318599\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vhfamx\",\"data-framer-name\":\"Frame 427318594\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"125%\"},children:\"360\\xb0 User\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"125%\"},children:\"information in\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"125%\"},children:\"one score\"})]}),className:\"framer-8dcjls\",\"data-framer-name\":\"360\\xb0 User information in one score\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14ulikg\",\"data-framer-name\":\"Frame 427318603\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v92o1c\",\"data-framer-name\":\"Frame 427318612\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pn0vxy\",\"data-framer-name\":\"Frame 427318610\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11veszk\",\"data-framer-name\":\"Frame_427318516\",fill:\"black\",intrinsicHeight:93,intrinsicWidth:73,svg:'<svg width=\"73\" height=\"93\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"#D9D9D9\" d=\"M15.905.51h49.97v89.112h-49.97z\"/><path fill=\"#563FFF\" d=\"M15.905.51h49.97v89.112h-49.97z\"/><path fill=\"url(#a)\" d=\"M15.905.51h49.97v89.112h-49.97z\"/><path d=\"M32.562 9.165c4.025-1.388 13.325-2.665 18.322 3.332M37.142 48.308c-4.303-1.527-12.909-7.412-12.909-18.738 0-14.158 12.909-17.073 17.49-17.073 4.58 0 14.574 4.164 14.574 12.909-.139 1.665-1.332 4.997-4.997 4.997.267-4.72-1.36-14.159-9.994-14.159-10.793 0-12.076 9.162-12.076 14.991 0 5.83 7.08 14.991 10.827 15.824m4.997-.833c3.748-1.11 11.243-5.496 11.243-14.158m-6.246 3.748c-2.221.555-6.663.833-6.663-2.499 0-4.164-.416-7.912-2.498-7.912-2.082 0-2.499 2.499-2.499 3.748 0 1.25-.416 12.076 4.997 12.076m4.58-10.826c0-2.777-1.249-8.329-6.245-8.329-6.247 0-7.912 3.748-7.912 7.08 0 3.33.833 8.744 4.58 12.075\" stroke=\"#fff\" stroke-width=\".833\"/><path d=\"m9.837 85.169 33.134-19.13 3.331 5.77-33.134 19.13a2.915 2.915 0 0 1-3.982-1.067l-.416-.721a2.915 2.915 0 0 1 1.067-3.982Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".833\"/><path d=\"m39.964 61.042 15.146-8.744 9.683 16.772-15.048 8.914-9.781-16.942Zm14.73-9.466-15.147 8.745-1.251-2.168a2.915 2.915 0 0 1 1.067-3.981l10.097-5.83a2.915 2.915 0 0 1 3.982 1.067l1.252 2.167ZM50.16 78.705l15.05-8.915 1.14 1.976a2.915 2.915 0 0 1-1.066 3.982l-10.098 5.83a2.915 2.915 0 0 1-3.981-1.067l-1.044-1.807Zm-5.562 5.505H68.75a3.748 3.748 0 0 1 3.748 3.747v2.915H40.85v-2.915a3.748 3.748 0 0 1 3.748-3.748ZM12.574 43.4c1.998 0 3.053-1.942 3.33-2.914.279.972 1.333 2.915 3.332 2.915 1.999 0 3.887-1.944 4.58-2.915.695 1.666 2.749 4.997 5.414 4.997-.971.833-2.915 2.915-2.915 4.58 0 2.082 4.58 2.499 4.58 12.076 0 7.662-7.772 9.578-11.659 9.578-1.11.139-3.331.916-3.331 2.915 0-2-2.221-2.776-3.331-2.915-3.887 0-11.66-1.916-11.66-9.578 0-9.577 4.58-9.994 4.58-12.076 0-1.665-1.943-3.747-2.914-4.58 2.665 0 4.719-3.331 5.413-4.997.694.972 2.582 2.915 4.58 2.915Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".833\"/><path d=\"m15.905 50.994 1.66 5.112.094.287h5.677l-4.348 3.16-.245.177.094.288 1.66 5.111-4.347-3.159-.245-.178-.245.178-4.348 3.16 1.66-5.112.094-.288-.244-.178-4.348-3.159h5.676l.094-.287 1.66-5.112Z\" stroke=\"#000\" stroke-width=\".833\"/><defs><linearGradient id=\"a\" x1=\"15.905\" y1=\"14.635\" x2=\"77.534\" y2=\"65.317\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1npl3vy\",\"data-framer-name\":\"Frame 427318615\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Criminal score\"})}),className:\"framer-vyk2mz\",\"data-framer-name\":\"Criminal score\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ktymjx\",\"data-framer-name\":\"Line 72\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:296,svg:'<svg width=\"296\" height=\"4\" viewBox=\"-1 -1 296 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.2\" y1=\"0.550781\" x2=\"294\" y2=\"0.550781\" stroke=\"#525F7E\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"A detailed numerical summary of an individual's criminal background, providing essential insights into their legal history. This helps ensure the safety and integrity of your business by thoroughly understanding the candidate's past.\"})}),className:\"framer-1k6nhro\",\"data-framer-name\":\"A detailed numerical summary of an individual's criminal background, providing essential insights into their legal history. This helps ensure the safety and integrity of your business by thoroughly understanding the candidate's past.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cdyfk6\",\"data-framer-name\":\"Frame 427318615\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1l83rnt\",\"data-framer-name\":\"Frame_427318517\",fill:\"black\",intrinsicHeight:84,intrinsicWidth:105,svg:'<svg width=\"105\" height=\"84\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"#fff\" stroke=\"#000\" stroke-width=\".839\" d=\"M23.978 32.29h7.548v45.29h-7.548zm21.807 0h7.548v45.29h-7.548zm21.806 0h7.548v45.29h-7.548z\"/><path d=\"m49.56 0 35.59 33.34H13.968L49.56 0Z\" fill=\"#D9D9D9\"/><path d=\"m49.56 0 35.59 33.34H13.968L49.56 0Z\" fill=\"url(#a)\"/><path d=\"m49.56 0 35.59 33.34H13.968L49.56 0Z\" fill=\"url(#b)\"/><path fill=\"#fff\" d=\"M84.786 75.484v8.387H14.334v-8.387z\"/><path transform=\"rotate(90 84.785 75.484)\" fill=\"url(#c)\" d=\"M84.785 75.484h8.387v70.452h-8.387z\"/><path transform=\"rotate(90 84.785 75.484)\" fill=\"url(#d)\" d=\"M84.785 75.484h8.387v70.452h-8.387z\"/><path d=\"m83.107 38.26 1.108 3.409.094.29h3.889l-2.9 2.106-.246.18.094.29 1.108 3.408-2.9-2.107-.247-.179-.246.18-2.9 2.106 1.108-3.409.094-.29-.247-.178-2.9-2.107h3.89l.094-.29 1.107-3.409Zm15.097 0 1.108 3.409.094.29h3.889l-2.9 2.106-.246.18.094.29 1.107 3.408-2.9-2.107-.246-.179-.246.18-2.9 2.106 1.108-3.409.094-.29-.247-.178-2.9-2.107h3.889l.095-.29 1.107-3.409Zm-7.548 10.903 1.108 3.41.094.289h3.889l-2.9 2.107-.247.179.095.29 1.107 3.408-2.9-2.106-.246-.18-.247.18-2.9 2.106 1.108-3.408.094-.29-.246-.18-2.9-2.106h3.889l.094-.29 1.108-3.409Z\" stroke=\"#000\" stroke-width=\".839\"/><mask id=\"e\" maskUnits=\"userSpaceOnUse\" x=\"43.688\" y=\"9.71\" width=\"12\" height=\"19\" fill=\"#000\"><path fill=\"#fff\" d=\"M43.688 9.71h12v19h-12z\"/><path d=\"M49.12 27.387V10.613h1.075v16.774H49.12Zm3.362-11.571c-.07-.62-.358-1.101-.865-1.442-.507-.345-1.145-.517-1.913-.517-.55 0-1.027.087-1.429.262-.402.17-.714.406-.937.707a1.67 1.67 0 0 0-.328 1.016c0 .319.075.594.223.826a2 2 0 0 0 .597.583c.248.153.515.281.799.386.284.1.557.184.819.25l1.31.34c.428.105.867.247 1.317.426.45.18.868.415 1.252.708.384.292.695.655.93 1.087.24.433.36.95.36 1.553 0 .76-.196 1.435-.589 2.025-.389.59-.954 1.055-1.697 1.396-.738.34-1.632.51-2.68.51-1.005 0-1.874-.159-2.608-.478-.734-.319-1.308-.77-1.723-1.356-.415-.59-.644-1.289-.688-2.097h2.031c.04.485.197.89.472 1.212.28.32.636.557 1.068.715.437.153.915.229 1.435.229.572 0 1.081-.09 1.527-.269.45-.183.803-.436 1.061-.76a1.8 1.8 0 0 0 .387-1.146c0-.398-.114-.723-.341-.977-.223-.253-.526-.463-.91-.629a8.902 8.902 0 0 0-1.292-.439l-1.585-.432c-1.075-.293-1.927-.723-2.556-1.291-.624-.568-.937-1.32-.937-2.254 0-.773.21-1.448.63-2.025.419-.576.986-1.024 1.703-1.343.716-.323 1.524-.485 2.424-.485.909 0 1.71.16 2.405.479.699.318 1.25.757 1.651 1.316a3.32 3.32 0 0 1 .63 1.914h-1.953Z\"/></mask><path d=\"M49.12 27.387V10.613h1.075v16.774H49.12Zm3.362-11.571c-.07-.62-.358-1.101-.865-1.442-.507-.345-1.145-.517-1.913-.517-.55 0-1.027.087-1.429.262-.402.17-.714.406-.937.707a1.67 1.67 0 0 0-.328 1.016c0 .319.075.594.223.826a2 2 0 0 0 .597.583c.248.153.515.281.799.386.284.1.557.184.819.25l1.31.34c.428.105.867.247 1.317.426.45.18.868.415 1.252.708.384.292.695.655.93 1.087.24.433.36.95.36 1.553 0 .76-.196 1.435-.589 2.025-.389.59-.954 1.055-1.697 1.396-.738.34-1.632.51-2.68.51-1.005 0-1.874-.159-2.608-.478-.734-.319-1.308-.77-1.723-1.356-.415-.59-.644-1.289-.688-2.097h2.031c.04.485.197.89.472 1.212.28.32.636.557 1.068.715.437.153.915.229 1.435.229.572 0 1.081-.09 1.527-.269.45-.183.803-.436 1.061-.76a1.8 1.8 0 0 0 .387-1.146c0-.398-.114-.723-.341-.977-.223-.253-.526-.463-.91-.629a8.902 8.902 0 0 0-1.292-.439l-1.585-.432c-1.075-.293-1.927-.723-2.556-1.291-.624-.568-.937-1.32-.937-2.254 0-.773.21-1.448.63-2.025.419-.576.986-1.024 1.703-1.343.716-.323 1.524-.485 2.424-.485.909 0 1.71.16 2.405.479.699.318 1.25.757 1.651 1.316a3.32 3.32 0 0 1 .63 1.914h-1.953Z\" fill=\"#fff\"/><path d=\"M49.12 27.387h-.838v.84h.838v-.84Zm0-16.774v-.839h-.838v.84h.838Zm1.075 0h.839v-.839h-.84v.84Zm0 16.774v.84h.839v-.84h-.84Zm2.287-11.571-.834.094.084.744h.75v-.838Zm-.865-1.442-.472.694.004.002.468-.696Zm-3.342-.255.327.772.008-.003-.335-.77Zm-.937.707-.674-.498-.002.002.676.496Zm-.105 1.842-.706.453.006.009.7-.462Zm.597.583-.454.705.007.005.008.005.439-.715Zm.799.386-.29.787.01.004.28-.79Zm.819.25.211-.812-.008-.002-.203.813Zm1.31.34-.21.812.01.003.2-.815Zm3.5 2.221-.737.402.003.006.733-.408Zm-.23 3.578-.698-.465-.002.003.7.462Zm-1.697 1.396-.35-.763-.002.001.352.762Zm-5.288.032.334-.769-.334.77Zm-1.723-1.356-.686.483.002.002.684-.485Zm-.688-2.097v-.838h-.885l.047.884.838-.046Zm2.031 0 .836-.068-.062-.77h-.774V22Zm.472 1.212-.639.544.008.01.63-.553Zm1.068.715-.287.788.01.003.277-.791Zm2.962-.04.313.779.003-.002-.316-.777Zm1.061-.76.656.523.003-.004-.659-.519Zm.046-2.123-.63.554.005.006.625-.56Zm-.91-.629-.337.769.004.001.332-.77Zm-1.292-.439-.22.81.007.001.213-.81Zm-1.585-.432.22-.81-.22.81Zm-2.556-1.291-.564.62.002.003.562-.623Zm-.308-4.279-.678-.493.678.493Zm1.704-1.343.341.766.004-.002-.345-.764Zm4.83-.007-.35.763.35-.763Zm1.65 1.317-.68.49.001.003.68-.492Zm.63 1.914v.838h.859l-.021-.858-.839.02Zm-4.476 11.571V10.613h-1.677v16.774h1.677Zm-.839-15.935h1.075V9.774H49.12v1.678Zm.236-.839v16.774h1.678V10.613h-1.678Zm.839 15.936H49.12v1.677h1.075V26.55Zm3.12-10.827c-.097-.859-.514-1.562-1.23-2.044l-.936 1.392c.297.2.456.458.5.84l1.666-.188Zm-1.226-2.04c-.678-.462-1.491-.664-2.386-.664v1.677c.644 0 1.106.144 1.442.373l.944-1.387Zm-2.386-.664c-.637 0-1.232.1-1.762.332l.668 1.538c.273-.119.63-.193 1.094-.193v-1.677Zm-1.755.329c-.517.219-.959.54-1.284.98l1.349.998c.12-.162.303-.313.59-.434l-.655-1.544Zm-1.286.982a2.51 2.51 0 0 0-.49 1.513h1.677c0-.207.056-.37.165-.519l-1.352-.994Zm-.49 1.513c0 .453.107.891.355 1.278l1.412-.905a.664.664 0 0 1-.09-.373h-1.677Zm.361 1.288c.22.333.505.609.843.826l.907-1.41a1.162 1.162 0 0 1-.35-.34l-1.4.924Zm.858.835c.297.183.614.336.947.46l.581-1.574a3.668 3.668 0 0 1-.65-.315l-.878 1.43Zm.958.463c.306.108.605.2.896.272l.406-1.627a8.18 8.18 0 0 1-.742-.226l-.56 1.581Zm.888.27 1.31.34.422-1.623-1.31-.34-.422 1.623Zm1.322.344c.387.095.789.224 1.206.39l.62-1.558a10.817 10.817 0 0 0-1.427-.461l-.4 1.629Zm1.206.39c.38.151.73.35 1.054.596l1.016-1.335a6.118 6.118 0 0 0-1.45-.82l-.62 1.56Zm1.054.596c.288.22.522.491.702.822l1.473-.803a4.228 4.228 0 0 0-1.159-1.354l-1.016 1.335Zm.705.828c.158.283.255.654.255 1.145h1.677c0-.714-.142-1.378-.465-1.96l-1.467.815ZM53.78 22c0 .607-.154 1.118-.449 1.56l1.396.93c.492-.737.73-1.577.73-2.49H53.78Zm-.451 1.563c-.29.44-.724.81-1.347 1.095l.7 1.525c.862-.396 1.56-.956 2.047-1.696l-1.4-.924Zm-1.349 1.096c-.6.277-1.367.434-2.328.434v1.677c1.136 0 2.156-.184 3.031-.588l-.703-1.523Zm-2.328.434c-.918 0-1.668-.146-2.274-.409l-.668 1.539c.863.375 1.85.547 2.942.547v-1.677Zm-2.274-.409c-.61-.265-1.056-.625-1.373-1.072l-1.368.97c.513.724 1.215 1.268 2.073 1.64l.668-1.538Zm-1.371-1.07c-.314-.445-.5-.988-.537-1.659l-1.675.09c.052.946.324 1.801.84 2.535l1.372-.966Zm-1.374-.775h2.031v-1.677h-2.031v1.677Zm1.195-.77c.052.633.264 1.211.67 1.687l1.276-1.087c-.144-.17-.247-.4-.274-.737l-1.672.136Zm.677 1.696c.38.434.859.749 1.412.95l.574-1.576a1.712 1.712 0 0 1-.724-.48l-1.262 1.106Zm1.422.953c.536.188 1.11.277 1.712.277v-1.678c-.437 0-.82-.064-1.158-.182l-.554 1.583Zm1.712.277c.66 0 1.277-.104 1.84-.33l-.626-1.556c-.33.132-.729.208-1.214.208v1.678Zm1.843-.331c.56-.228 1.04-.56 1.4-1.014l-1.31-1.046c-.154.193-.383.368-.723.507l.633 1.553Zm1.404-1.018c.38-.483.567-1.05.567-1.665h-1.678a.964.964 0 0 1-.207.628l1.318 1.037Zm.567-1.665c0-.568-.168-1.104-.555-1.537l-1.25 1.12c.067.074.127.189.127.417h1.678Zm-.55-1.53c-.322-.367-.737-.642-1.208-.846l-.665 1.54c.297.129.49.273.613.413l1.26-1.108Zm-1.205-.844a9.737 9.737 0 0 0-1.413-.482l-.427 1.622c.446.118.835.251 1.169.397l.67-1.537Zm-1.406-.48-1.586-.432-.441 1.618 1.586.432.441-1.618Zm-1.586-.432c-.986-.269-1.708-.648-2.214-1.105l-1.124 1.245c.753.68 1.734 1.161 2.897 1.478l.441-1.618Zm-2.212-1.103c-.43-.39-.662-.906-.662-1.633h-1.677c0 1.143.392 2.13 1.211 2.875l1.128-1.242Zm-.662-1.633c0-.612.162-1.11.469-1.531l-1.357-.987c-.532.732-.79 1.583-.79 2.518h1.678Zm.469-1.531c.324-.446.77-.806 1.366-1.07l-.682-1.533c-.837.372-1.527.909-2.041 1.616l1.357.987Zm1.37-1.072c.593-.268 1.281-.411 2.08-.411v-1.678c-1.002 0-1.93.18-2.77.56l.69 1.529Zm2.08-.411c.81 0 1.488.142 2.054.402l.7-1.525c-.823-.378-1.748-.555-2.755-.555v1.678Zm2.056.402c.582.266 1.011.617 1.318 1.044l1.362-.979c-.496-.691-1.168-1.218-1.984-1.59l-.696 1.525Zm1.32 1.046c.297.41.456.882.47 1.442l1.677-.04a4.158 4.158 0 0 0-.789-2.385l-1.358.984Zm1.308.583h-1.952v1.677h1.952v-1.677Z\" fill=\"#000\" mask=\"url(#e)\"/><path d=\"M1.333 54.097h43.613v13.838a3.774 3.774 0 0 1-3.774 3.775H5.108a3.774 3.774 0 0 1-3.775-3.775V54.097Zm43.613-.839H1.333V51.58h43.613v1.678Zm0-2.516H1.333v-1.678h43.613v1.678Zm0-2.516H1.333v-.42a3.774 3.774 0 0 1 3.775-3.774h36.064a3.774 3.774 0 0 1 3.774 3.774v.42ZM5.108 63.322H9.72v-.838H5.108v.838Zm0 3.775h18.451v-.839H5.108v.839Zm7.548-3.774h2.935v-.84h-2.935v.84Zm6.29 0h3.774v-.84h-3.774v.84Zm5.871 0h4.613v-.84h-4.613v.84Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".839\"/><defs><linearGradient id=\"a\" x1=\"82.085\" y1=\"1.787\" x2=\"61.467\" y2=\"55.543\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#43BBFF\"/><stop offset=\"1\" stop-color=\"#0E50EB\"/></linearGradient><linearGradient id=\"b\" x1=\"67.285\" y1=\"3.977\" x2=\"34.942\" y2=\"31.795\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FF9A67\"/><stop offset=\"1\" stop-color=\"#FC691F\"/></linearGradient><linearGradient id=\"c\" x1=\"92.298\" y1=\"78.317\" x2=\"76.342\" y2=\"80.995\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#43BBFF\"/><stop offset=\"1\" stop-color=\"#0E50EB\"/></linearGradient><linearGradient id=\"d\" x1=\"90.787\" y1=\"81.787\" x2=\"85.063\" y2=\"82.104\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FF9A67\"/><stop offset=\"1\" stop-color=\"#FC691F\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n1pjl3\",\"data-framer-name\":\"Frame 427318615\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Credit score\"})}),className:\"framer-1tomn7r\",\"data-framer-name\":\"Credit score\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jf8sc8\",\"data-framer-name\":\"Line 72\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:296,svg:'<svg width=\"296\" height=\"4\" viewBox=\"-1 -1 296 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.2\" y1=\"1.48633\" x2=\"294\" y2=\"1.48633\" stroke=\"#525F7E\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"A comprehensive evaluation of an individual's financial background, encompassing payment habits, debt management, and credit usage. This allows you to make informed decisions about financial reliability and trustworthiness.\"})}),className:\"framer-1hxs11r\",\"data-framer-name\":\"A comprehensive evaluation of an individual's financial background, encompassing payment habits, debt management, and credit usage. This allows for informed decisions about financial reliability and trustworthiness.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o7gjz\",\"data-framer-name\":\"Frame 427318616\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-5rjij7\",\"data-framer-name\":\"Frame_427318518\",fill:\"black\",intrinsicHeight:72,intrinsicWidth:87,svg:'<svg width=\"87\" height=\"72\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"9.872\" y=\".358\" width=\"65.933\" height=\"55.183\" rx=\"8.242\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".717\"/><rect x=\"5.572\" y=\"7.525\" width=\"75.25\" height=\"55.183\" rx=\"8.242\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".717\"/><rect x=\".914\" y=\"15.767\" width=\"86\" height=\"55.9\" rx=\"8.6\" fill=\"#D9D9D9\"/><rect x=\".914\" y=\"15.767\" width=\"86\" height=\"55.9\" rx=\"8.6\" fill=\"url(#a)\"/><rect x=\".914\" y=\"15.767\" width=\"86\" height=\"55.9\" rx=\"8.6\" fill=\"url(#b)\"/><path d=\"M6.29 65.217h75.607M47.856 40.133h34.041m-12.541 6.45h-21.5\" stroke=\"#000\" stroke-width=\"1.433\"/><mask id=\"c\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"5\" y=\"22\" width=\"39\" height=\"39\"><circle cx=\"24.564\" cy=\"41.567\" r=\"19.35\" fill=\"#D9D9D9\"/></mask><g mask=\"url(#c)\"><circle cx=\"24.564\" cy=\"41.567\" r=\"19.35\" fill=\"#fff\"/><path d=\"M32.252 36.856c-.257 1.796-1.818 2.886-2.566 3.207-.428.214-1.283-.064-1.283-2.887 0-3.528.962-6.094-2.887-6.094-.534 0-1.796.193-2.566.963-.214-.321-.898-.963-1.924-.963-1.283 0-3.208.963-3.528 2.566.107-2.138 1.667-6.415 7.056-6.415s7.377 3.422 7.698 5.132v4.49Z\" fill=\"#000\"/><path d=\"M3.064 64.5c.717-3.583 8.242-12.248 15.396-12.248a2.527 2.527 0 0 0 1.283-.66c-1.39 3.106-4.106 7.52-3.849 12.908H3.064Z\" fill=\"#fff\"/><path d=\"M29.686 40.063c.748-.32 2.31-1.411 2.566-3.207.32-.428 1.09-.898 1.603.641.642 1.925 0 3.529-1.282 4.49-1.027.77-2.139.535-2.566.322v7.056c0 .39.084.937.32 1.451.129.279.302.547.531.776.358 1.93 1.073 4.697 1.073 12.908H15.894c-.257-5.389 2.459-9.802 3.849-12.908.362-.355.641-.868.641-1.586 0-1.924 0-2.566-.641-3.207-.642-.642-2.245-.962-2.245-4.49v-8.66c.32-1.604 2.245-2.567 3.528-2.567 1.026 0 1.71.642 1.924.963.77-.77 2.032-.963 2.566-.963 3.85 0 2.887 2.566 2.887 6.094 0 2.823.855 3.101 1.283 2.887Z\" fill=\"#fff\"/><path d=\"M32.572 52.252c2.567 0 16.359 1.856 16.359 12.248h-17c0-8.211-.715-10.978-1.073-12.908.391.389.944.66 1.714.66Z\" fill=\"#fff\"/><path d=\"M32.252 36.856c-.257 1.796-1.818 2.886-2.566 3.207-.428.214-1.283-.064-1.283-2.887 0-3.528.962-6.094-2.887-6.094-.534 0-1.796.193-2.566.963-.214-.321-.898-.963-1.924-.963-1.283 0-3.208.963-3.528 2.566m14.754 3.208c.32-.428 1.09-.898 1.603.641.642 1.925 0 3.529-1.282 4.49-1.027.77-2.139.535-2.566.322v7.056c0 .39.084.937.32 1.451m1.925-13.96v-4.49c-.321-1.711-2.31-5.133-7.698-5.133-5.389 0-6.95 4.277-7.056 6.415m2.245 13.15c.641.642.641 1.284.641 3.208 0 .718-.279 1.231-.641 1.586m0-4.793c-.642-.642-2.245-.962-2.245-4.49m2.245 4.49c.962.962 3.913 2.31 8.018 0m-10.263-4.49v-8.66m0 8.66v-8.66m12.83 17.167-6.736 6.567-3.208-6.094m9.943-.473c.129.279.302.547.531.776m-11.115 0c-.415.405-.94.602-1.283.66-7.154 0-14.68 8.665-15.396 12.248h12.83m3.849-12.908c-1.39 3.106-4.106 7.52-3.849 12.908m0 0h16.037m-1.073-12.908c.391.389.944.66 1.714.66 2.567 0 16.359 1.856 16.359 12.248h-17m-1.073-12.908c.358 1.93 1.073 4.697 1.073 12.908\" stroke=\"#000\" stroke-width=\".641\"/><circle cx=\"24.564\" cy=\"41.567\" r=\"18.992\" stroke=\"#000\" stroke-width=\".717\"/></g><path d=\"m52.514 23.376.947 2.913.08.248h3.323l-2.478 1.8-.21.153.08.248.947 2.912-2.478-1.8-.21-.153-.212.153-2.477 1.8.946-2.912.08-.248-.21-.153-2.478-1.8h3.323l.08-.248.947-2.913Zm12.183 0 .947 2.913.08.248h3.323l-2.477 1.8-.211.153.08.248.947 2.912-2.478-1.8-.21-.153-.211.153-2.478 1.8.947-2.912.08-.248-.21-.153-2.478-1.8h3.322l.081-.248.946-2.913Zm12.183 0 .947 2.913.08.248h3.324l-2.478 1.8-.21.153.08.248.946 2.912-2.478-1.8-.21-.153-.211.153-2.478 1.8.947-2.912.08-.248-.21-.153-2.478-1.8h3.323l.08-.248.947-2.913Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".717\"/><defs><linearGradient id=\"a\" x1=\"77.946\" y1=\"18.014\" x2=\"48.464\" y2=\"81.968\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#43BBFF\"/><stop offset=\"1\" stop-color=\"#0E50EB\"/></linearGradient><linearGradient id=\"b\" x1=\".914\" y1=\"24.627\" x2=\"30.106\" y2=\"90.492\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-awtr9a\",\"data-framer-name\":\"Frame 427318615\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Employee score\"})}),className:\"framer-14nbzjn\",\"data-framer-name\":\"Employee score\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-msporo\",\"data-framer-name\":\"Line 72\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:296,svg:'<svg width=\"296\" height=\"4\" viewBox=\"-1 -1 296 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.2\" y1=\"0.652832\" x2=\"294\" y2=\"0.652832\" stroke=\"#525F7E\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"An in-depth assessment of an individual's professional background, including work experience, skill sets, qualifications, and reference verifications. This score assists in identifying the best candidates for your organization, enhancing workforce quality.\"})}),className:\"framer-bj1l2u\",\"data-framer-name\":\"An in-depth assessment of an individual's professional background, including work experience, skill sets, qualifications, and reference verifications. This score assists in identifying the best candidates for your organization, enhancing workforce quality.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uebuoq\",\"data-framer-name\":\"Frame 427318617\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1xehunv\",\"data-framer-name\":\"Frame_427318515\",fill:\"black\",intrinsicHeight:83,intrinsicWidth:98,svg:'<svg width=\"98\" height=\"83\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M35.626.405V56.18h-6.42a6.87 6.87 0 0 1-6.871-6.871V7.275a6.87 6.87 0 0 1 6.87-6.87h6.421Zm.809 0h11.767V56.18H36.435V.405ZM49.01 56.18V.405h11.386V56.18H49.01Zm12.194 0V.405h6.802a6.87 6.87 0 0 1 6.87 6.87V49.31a6.87 6.87 0 0 1-6.87 6.87h-6.802Z\" stroke=\"#000\" stroke-width=\".808\"/><rect x=\"18.697\" y=\"18.592\" width=\"59.817\" height=\"56.583\" rx=\"7.275\" fill=\"#D9D9D9\"/><rect x=\"18.697\" y=\"18.592\" width=\"59.817\" height=\"56.583\" rx=\"7.275\" fill=\"url(#a)\"/><rect x=\"18.697\" y=\"18.592\" width=\"59.817\" height=\"56.583\" rx=\"7.275\" fill=\"url(#b)\"/><rect x=\"25.568\" y=\"35.163\" width=\"45.267\" height=\"25.867\" rx=\"4.446\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".808\"/><path fill=\"#fff\" stroke=\"#000\" stroke-width=\".808\" d=\"m29.256 72.346 4.9-2.829 4.85 8.4-4.9 2.83z\"/><path fill=\"#fff\" stroke=\"#000\" stroke-width=\".808\" d=\"m30.91 79.366 8.498-4.907 1.397 2.42-8.499 4.907z\"/><path d=\"m1.773 29.504 4.85-2.8 4.25-2.454 3.5 6.063 2.354 4.076 2.02 3.5 2.393 4.144 2.334 4.042 2.144 3.715 2.523 4.368 2.333 4.042 2.8 4.85 3.466 6.003-9.1 5.254L1.772 29.504Z\" fill=\"#fff\"/><path d=\"m6.623 26.704-4.85 2.8 25.866 44.803 9.1-5.254-3.465-6.003M6.623 26.704l4.25-2.454 3.5 6.063m-7.75-3.609-4.85-8.516m12.6 12.125h-3.5m3.5 0 2.354 4.076m0 0h-3.234m3.234 0 2.02 3.5m0 0h-2.829m2.83 0 2.392 4.144m0 0h-3.2m3.2 0 2.334 4.042m0 0h-3.11m3.11 0 2.144 3.715m0 0H22.79m2.83 0 2.522 4.368m0 0h-2.523m2.523 0 2.333 4.042m0 0H27.64m2.835 0 2.8 4.85m0 0h-2.8m21.912-17.865 3.715 3.716a4.446 4.446 0 0 1-6.287 6.287L46.1 51.473l6.287-6.288Zm-.572-.571L45.528 50.9l-3.715-3.715a4.446 4.446 0 0 1 6.287-6.287l3.715 3.715Z\" stroke=\"#000\" stroke-width=\".808\"/><path d=\"M80.535 70.325c0 .399-.217.829-.72 1.27-.502.439-1.251.853-2.213 1.209-1.919.71-4.597 1.159-7.576 1.159a28.56 28.56 0 0 1-2.463-.105l5.474-7.012c2.203.237 4.093.727 5.432 1.364.693.33 1.22.69 1.568 1.059.346.366.498.721.498 1.056Zm-13.92 3.433c-2.099-.26-3.886-.75-5.15-1.375-.655-.324-1.151-.675-1.478-1.033-.326-.356-.469-.7-.469-1.025 0-.399.217-.829.72-1.269.502-.44 1.251-.854 2.213-1.21 1.919-.71 4.597-1.158 7.575-1.158.702 0 1.388.025 2.052.072l-5.463 6.998Zm13.733-1.556c.065-.056.127-.114.187-.174v2.339c0 .399-.217.829-.72 1.269-.502.44-1.251.854-2.213 1.21-1.919.71-4.597 1.158-7.576 1.158-2.978 0-5.656-.448-7.575-1.158-.962-.356-1.711-.77-2.213-1.21-.503-.44-.72-.87-.72-1.27v-2.338c.407.403.949.763 1.588 1.08 1.42.701 3.388 1.221 5.641 1.48 1.037.119 2.139.183 3.28.183 3.048 0 5.826-.457 7.856-1.209 1.014-.375 1.862-.832 2.465-1.36Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".808\"/><path d=\"M94.526 74.588c-.282.283-.74.433-1.406.389-.666-.044-1.489-.281-2.42-.71-1.86-.854-4.07-2.431-6.176-4.537-.6-.6-1.158-1.209-1.668-1.816l8.829-1.088c1.39 1.726 2.38 3.409 2.877 4.806.256.723.374 1.35.36 1.857-.015.504-.159.862-.396 1.1Zm-12.27-7.415c-1.3-1.667-2.218-3.278-2.67-4.614-.233-.692-.335-1.291-.314-1.776.022-.481.163-.825.393-1.056.282-.282.74-.432 1.407-.388.665.044 1.488.281 2.42.71 1.86.854 4.07 2.43 6.176 4.537.496.496.964.999 1.4 1.502l-8.812 1.085Zm10.81 8.61c.087.006.172.01.256.01l-1.654 1.653c-.282.282-.739.433-1.406.389-.665-.044-1.488-.281-2.42-.71-1.86-.854-4.07-2.431-6.176-4.537s-3.683-4.317-4.538-6.176c-.428-.932-.665-1.755-.709-2.42-.044-.667.106-1.125.389-1.407l1.653-1.653c.003.572.132 1.21.36 1.886.507 1.5 1.532 3.26 2.942 5.035a28.86 28.86 0 0 0 2.19 2.449c2.155 2.155 4.442 3.796 6.41 4.7.982.452 1.905.729 2.704.782Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".808\"/><defs><linearGradient id=\"a\" x1=\"72.276\" y1=\"20.867\" x2=\"35.962\" y2=\"74.997\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#43BBFF\"/><stop offset=\"1\" stop-color=\"#0E50EB\"/></linearGradient><linearGradient id=\"b\" x1=\"61.505\" y1=\"23.654\" x2=\"28.529\" y2=\"39.87\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FF9A67\"/><stop offset=\"1\" stop-color=\"#FC691F\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-137bqgk\",\"data-framer-name\":\"Frame 427318615\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Drug score\"})}),className:\"framer-sjcpsh\",\"data-framer-name\":\"Drug score\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12mk93c\",\"data-framer-name\":\"Line 72\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:296,svg:'<svg width=\"296\" height=\"4\" viewBox=\"-1 -1 296 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.2\" y1=\"0.983398\" x2=\"294\" y2=\"0.983398\" stroke=\"#525F7E\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"An examination of an individual\u2019s history with substance use, detailing past drug interactions and related behaviors. This critical insight helps maintain a drug-free and safe working environment.\"})}),className:\"framer-wfaib1\",\"data-framer-name\":\"An examination of an individual\u2019s history with substance use, detailing past drug interactions and related behaviors. This critical insight helps maintain a drug-free and safe working environment.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12sfwr7\",\"data-framer-name\":\"Frame 427318618\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1bzw838\",\"data-framer-name\":\"Frame_427318520\",fill:\"black\",intrinsicHeight:87,intrinsicWidth:90,svg:'<svg width=\"90\" height=\"87\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path opacity=\".4\" stroke=\"#000\" stroke-width=\".771\" d=\"M27.095 5.01h62.434v80.932H27.095z\"/><path fill=\"#D9D9D9\" d=\"M22.856 0H86.06v81.703H22.856z\"/><path fill=\"url(#a)\" d=\"M22.856 0H86.06v81.703H22.856z\"/><path fill=\"url(#b)\" d=\"M22.856 0H86.06v81.703H22.856z\"/><path d=\"M31.72 47.789h8.864m6.166 0h30.832M31.72 53.955h8.864m6.166 0h30.832M31.72 60.122h8.864m6.166 0h30.832M31.72 66.288h8.864m6.166 0h30.832M31.72 72.454h8.864m6.166 0h30.832\" stroke=\"#000\" stroke-width=\"1.542\"/><path d=\"M1.274 22.738c2.775-11.099 13.489-6.937 18.499-3.468 5.01-3.469 15.724-7.63 18.499 3.468.756 3.025.27 6.023-.985 8.864C33.935 39.19 25.1 45.662 19.773 48.56c-4.777-2.597-12.375-8.071-16.31-14.644-2.097-3.503-3.154-7.318-2.189-11.177Z\" fill=\"#fff\"/><path d=\"M3.463 33.915C1.366 30.412.309 26.597 1.274 22.738c2.775-11.099 13.489-6.937 18.499-3.468 5.01-3.469 15.724-7.63 18.499 3.468.756 3.025.27 6.023-.985 8.864M3.463 33.915c3.935 6.573 11.533 12.047 16.31 14.645 5.327-2.898 14.162-9.371 17.514-16.958M3.463 33.915l8.216-7.708 8.094 10.79 5.395-5.395h12.119\" stroke=\"#000\" stroke-width=\".771\"/><path d=\"M51.76 20.04V9.636h5.396v10.791h10.791v5.395H57.156v10.79H51.76V25.821H40.97v-5.395h10.79v-.385Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".771\"/><defs><linearGradient id=\"a\" x1=\"79.469\" y1=\"3.285\" x2=\"23.013\" y2=\"64.865\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#43BBFF\"/><stop offset=\"1\" stop-color=\"#0E50EB\"/></linearGradient><linearGradient id=\"b\" x1=\"22.856\" y1=\"12.951\" x2=\"79.99\" y2=\"77.769\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w2s40y\",\"data-framer-name\":\"Frame 427318615\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Medical professional score\"})}),className:\"framer-15929kl\",\"data-framer-name\":\"Medical score\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hv8y31\",\"data-framer-name\":\"Line 72\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:296,svg:'<svg width=\"296\" height=\"4\" viewBox=\"-1 -1 296 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.2\" y1=\"0.731445\" x2=\"294\" y2=\"0.731445\" stroke=\"#525F7E\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"A verification of an individual's status against medical sanction lists and regulatory compliance checks. This ensures that medical personnel meet industry standards and regulatory requirements, safeguarding the integrity and reputation of your healthcare organization.\"})}),className:\"framer-1nixm2\",\"data-framer-name\":\"A verification of an individual's status against medical sanction lists and regulatory compliance checks. This ensures that medical personnel meet industry standards and regulatory requirements, safeguarding the integrity and reputation of your healthcare organization.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7pdtis\",\"data-framer-name\":\"Frame 427318619\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-8se24f\",\"data-framer-name\":\"Frame_427318521\",fill:\"black\",intrinsicHeight:65,intrinsicWidth:122,svg:'<svg width=\"122\" height=\"65\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M81.58 4.25h40.334m-40.333 7.09h40.333m-40.333 5.32h25.263\" stroke=\"#000\" stroke-width=\"1.773\"/><rect x=\"58.976\" y=\"21.535\" width=\"9.751\" height=\"13.297\" rx=\"4.875\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".886\"/><path d=\"M51.441 45.429c0-5.608 4.546-10.154 10.154-10.154h4.513c5.608 0 10.154 4.546 10.154 10.154a2.256 2.256 0 0 1-2.257 2.256H53.698a2.256 2.256 0 0 1-2.257-2.256Z\" fill=\"#0546F0\"/><path d=\"M51.441 45.429c0-5.608 4.546-10.154 10.154-10.154h4.513c5.608 0 10.154 4.546 10.154 10.154a2.256 2.256 0 0 1-2.257 2.256H53.698a2.256 2.256 0 0 1-2.257-2.256Z\" fill=\"url(#a)\"/><rect x=\"8.449\" y=\"21.535\" width=\"9.751\" height=\"13.297\" rx=\"4.875\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".886\"/><path d=\"M.914 45.429c0-5.608 4.546-10.154 10.154-10.154h4.513c5.608 0 10.154 4.546 10.154 10.154a2.256 2.256 0 0 1-2.257 2.256H3.17A2.256 2.256 0 0 1 .914 45.43Z\" fill=\"#0546F0\"/><path d=\"M.914 45.429c0-5.608 4.546-10.154 10.154-10.154h4.513c5.608 0 10.154 4.546 10.154 10.154a2.256 2.256 0 0 1-2.257 2.256H3.17A2.256 2.256 0 0 1 .914 45.43Z\" fill=\"url(#b)\"/><path d=\"M29.28 16.955c.437 3.033 3.092 4.875 4.365 5.417.727.36 2.182-.109 2.182-4.876 0-5.958-1.637-10.292 4.91-10.292.908 0 3.054.325 4.363 1.625.364-.541 1.528-1.625 3.273-1.625 2.182 0 5.455 1.625 6 4.334-.181-3.612-2.836-10.834-12-10.834-9.165 0-12.547 5.778-13.092 8.667v7.584Z\" fill=\"#000\"/><path d=\"M78.921 63.642c-1.219-6.052-14.017-20.686-26.184-20.686a4.31 4.31 0 0 1-2.182-1.115c2.364 5.247 6.983 12.7 6.546 21.8h21.82Z\" fill=\"#fff\"/><path d=\"M33.645 22.372c-1.273-.542-3.928-2.384-4.364-5.417-.546-.723-1.855-1.517-2.728 1.083-1.09 3.25 0 5.959 2.182 7.584 1.746 1.3 3.637.902 4.364.541v11.918c0 .658-.143 1.583-.545 2.45a4.485 4.485 0 0 1-.903 1.31c-.608 3.26-1.825 7.933-1.825 21.8H57.1c.437-9.1-4.182-16.553-6.546-21.8-.617-.598-1.09-1.465-1.09-2.677 0-3.25 0-4.334 1.09-5.417 1.091-1.083 3.819-1.625 3.819-7.584V11.538c-.546-2.709-3.819-4.334-6-4.334-1.746 0-2.91 1.084-3.274 1.625-1.309-1.3-3.455-1.625-4.364-1.625-6.546 0-4.91 4.334-4.91 10.292 0 4.767-1.454 5.237-2.181 4.876Z\" fill=\"#fff\"/><path d=\"M28.735 42.956c-4.364 0-27.82 3.136-27.82 20.686h28.91c0-13.868 1.218-18.54 1.826-21.8-.665.657-1.606 1.114-2.916 1.114Z\" fill=\"#fff\"/><path d=\"M29.28 16.955c.437 3.033 3.092 4.875 4.365 5.417.727.36 2.182-.109 2.182-4.876 0-5.958-1.637-10.292 4.91-10.292.908 0 3.054.325 4.363 1.625.364-.541 1.528-1.625 3.273-1.625 2.182 0 5.455 1.625 6 4.334m-25.092 5.417c-.546-.723-1.855-1.517-2.728 1.083-1.09 3.25 0 5.959 2.182 7.584 1.746 1.3 3.637.902 4.364.541v11.918c0 .658-.143 1.583-.545 2.45M29.28 16.955V9.37C29.826 6.48 33.208.704 42.373.704c9.164 0 11.819 7.222 12 10.834m-3.818 22.209c-1.09 1.083-1.09 2.167-1.09 5.417 0 1.212.473 2.079 1.09 2.677m0-8.094c1.091-1.083 3.819-1.625 3.819-7.584m-3.819 7.584c-1.636 1.625-6.655 3.9-13.637 0m17.456-7.584V11.538m0 14.625V11.538M32.554 40.53l11.455 11.092 5.455-10.292m-16.91-.8a4.485 4.485 0 0 1-.903 1.31m18.904 0a4.31 4.31 0 0 0 2.182 1.115c12.167 0 24.965 14.634 26.184 20.686h-21.82m-6.546-21.8c2.364 5.246 6.983 12.7 6.546 21.8m0 0H29.826m1.825-21.8c-.665.657-1.606 1.114-2.916 1.114-4.364 0-27.82 3.136-27.82 20.686h28.91m1.826-21.8c-.608 3.26-1.825 7.932-1.825 21.8\" stroke=\"#000\" stroke-width=\".886\"/><mask id=\"d\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"82\" y=\"24\" width=\"40\" height=\"40\"><circle cx=\"101.969\" cy=\"44.139\" r=\"19.502\" fill=\"#D9D9D9\"/><circle cx=\"101.969\" cy=\"44.139\" r=\"19.502\" fill=\"url(#c)\"/></mask><g mask=\"url(#d)\"><circle cx=\"101.969\" cy=\"44.139\" r=\"19.502\" fill=\"#D9D9D9\"/><circle cx=\"101.969\" cy=\"44.139\" r=\"19.502\" fill=\"url(#e)\"/><circle cx=\"101.969\" cy=\"44.139\" r=\"19.502\" fill=\"url(#f)\"/><path d=\"M101.082 24.637V44.14l.043.073m10.152 17.213-10.152-17.213m19.016 7.462-19.016-7.462\" stroke=\"#000\" stroke-width=\".886\"/></g><defs><linearGradient id=\"a\" x1=\"69.204\" y1=\"36.385\" x2=\"60.096\" y2=\"44.859\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FF9A67\"/><stop offset=\"1\" stop-color=\"#FC691F\"/></linearGradient><linearGradient id=\"b\" x1=\"18.677\" y1=\"36.385\" x2=\"9.568\" y2=\"44.859\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FF9A67\"/><stop offset=\"1\" stop-color=\"#FC691F\"/></linearGradient><linearGradient id=\"c\" x1=\"117.404\" y1=\"26.206\" x2=\"91.872\" y2=\"62.205\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#43BBFF\"/><stop offset=\"1\" stop-color=\"#0E50EB\"/></linearGradient><linearGradient id=\"e\" x1=\"117.404\" y1=\"26.206\" x2=\"91.872\" y2=\"62.205\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#43BBFF\"/><stop offset=\"1\" stop-color=\"#0E50EB\"/></linearGradient><linearGradient id=\"f\" x1=\"110.38\" y1=\"28.127\" x2=\"88.428\" y2=\"38.338\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FF9A67\"/><stop offset=\"1\" stop-color=\"#FC691F\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oitrl1\",\"data-framer-name\":\"Frame 427318615\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Peers score\"})}),className:\"framer-17iclwz\",\"data-framer-name\":\"Peers score\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wtel2a\",\"data-framer-name\":\"Line 72\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:296,svg:'<svg width=\"296\" height=\"3\" viewBox=\"-1 -1 296 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.2\" y1=\"0.507812\" x2=\"294\" y2=\"0.507812\" stroke=\"#525F7E\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"A nuanced measurement of an individual's social network, relationships, and interactions. This provides valuable context on their social influence and reliability, helping to build a trustworthy and cohesive team.\"})}),className:\"framer-1eki03h\",\"data-framer-name\":\"A nuanced measurement of an individual's social network, relationships, and interactions. This provides valuable context on their social influence and reliability, helping to build a trustworthy and cohesive team.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lf8an8 hidden-72rtr7 hidden-tf1r54\",\"data-framer-name\":\"Frame 427318601\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u2gb7p\",\"data-framer-name\":\"Frame 427318594\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"125%\",\"--framer-text-transform\":\"uppercase\"},children:\"Revolution digital reputation\"})}),className:\"framer-16gu2yb\",\"data-framer-name\":\"Revolution digital reputation\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\"},children:\"The innovative background check system and unique preventive protection technology deliver double the productivity and effectiveness.\"})}),className:\"framer-zb91w\",\"data-framer-name\":\"\u2018The Innovative Background check system and unique preventive protection technology ae twice as productive and twice as effective protection.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-r19vjc hidden-72rtr7 hidden-tf1r54\",\"data-framer-name\":\"Frame 427318623\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18hqhz3\",\"data-framer-name\":\"Frame 427318634\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1080qq6\",\"data-framer-name\":\"Frame 427318624\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dmhxc7\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mubt00\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"125%\"},children:\"Compare for yourself:\"})}),className:\"framer-if7b6h\",\"data-framer-name\":\"Compare for yourself:\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13exo1n\",\"data-framer-name\":\"Frame_427318721\",fill:\"black\",intrinsicHeight:122,intrinsicWidth:128,svg:'<svg width=\"128\" height=\"122\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path fill=\"#E1F3F3\" d=\"M0 0h64v122H0z\"/><path d=\"M32.226 73.36a.412.412 0 0 0-.002 0l6.463 4.004-6.461-4.003v-.001Zm-5.164-25.838c.726-2.137 2.663-3.52 4.937-3.52a5.352 5.352 0 0 1-.002-.002c-2.273 0-4.21 1.382-4.936 3.521l.001.001Zm-8.338 24.564c-.608 1.788-.054 3.658 1.389 4.852-1.443-1.196-1.995-3.064-1.389-4.85v-.002Zm23.667 3.457c-.59.433-1.28.57-1.94.405.66.165 1.352.028 1.94-.405ZM20.56 77.266Zm6.028-6.111a8.096 8.096 0 0 0 .002 0l-4.065-3.785 4.063 3.783v.002Z\" fill=\"#563FFF\"/><path d=\"M36.937 47.522a5.118 5.118 0 0 0-2.932-3.134A5.325 5.325 0 0 0 32 44.002c-2.274 0-4.211 1.383-4.937 3.52l-2.458 7.244.401.119 1.197.356.401.12 2.452-7.226c.536-1.579 1.873-2.141 2.945-2.141a3.2 3.2 0 0 1 1.262.26c.7.304 1.348.894 1.683 1.88l2.452 7.226.402-.12 1.196-.355.402-.12-2.459-7.243ZM31.149 73.26a7.853 7.853 0 0 1-1.658-.373 8.413 8.413 0 0 1-.495-.182l-4.787 2.968c-.633.371-1.339.437-1.983.203a2.437 2.437 0 0 1-.62-.333c-.686-.502-1.33-1.547-.888-2.845l1.807-5.325-.335-.314-1-.93-.335-.313-2.128 6.27c-.608 1.788-.056 3.656 1.389 4.85.074.06.137.127.215.184.075.055.155.096.232.145a4.46 4.46 0 0 0 4.087.416 4.79 4.79 0 0 0 .686-.33l6.442-3.99a.438.438 0 0 1 .149-.054 7.576 7.576 0 0 1-.774-.048h-.004Zm14.125-1.174-2.126-6.267-.335.312-1 .931-.335.312 1.806 5.321c.441 1.299-.204 2.345-.888 2.845-.59.433-1.282.57-1.94.405-.02-.004-.04-.013-.06-.019a2.274 2.274 0 0 1-.582-.245l-4.806-2.979a8.413 8.413 0 0 1-.494.183 7.753 7.753 0 0 1-2.433.418c.012.003.025.001.037.006a.41.41 0 0 1 .11.048l6.462 4.003c.17.1.348.188.528.265a4.53 4.53 0 0 0 1.788.375c.955 0 1.877-.306 2.667-.885 1.612-1.18 2.242-3.156 1.604-5.035l-.003.006Z\" fill=\"#563FFF\"/><path d=\"M15.946 53.896a4.484 4.484 0 0 1 3.771-.575l12.285 3.648 12.284-3.648a4.487 4.487 0 0 1 3.773.575 4.386 4.386 0 0 1 1.397 1.498 4.4 4.4 0 0 0-1.4-1.504 4.483 4.483 0 0 0-3.773-.574l-4.888 1.451-.401.12-1.197.355-.401.12L32 56.965l-5.397-1.603-.401-.12-1.197-.355-.401-.12-4.888-1.451a4.484 4.484 0 0 0-3.773.574c-1.188.793-1.896 2.053-1.943 3.46 0 .033.004.064.004.097 0-.03-.002-.06-.001-.09.047-1.407.755-2.669 1.943-3.461Zm-1.767 4.87c.044.151.099.3.16.446a3.982 3.982 0 0 1-.168-.484c.003.013.005.026.01.04l-.002-.002Z\" fill=\"#563FFF\"/><path d=\"M49.456 55.394a4.4 4.4 0 0 0-1.397-1.498 4.487 4.487 0 0 0-3.773-.575L32.002 56.97l-12.285-3.65a4.484 4.484 0 0 0-3.77.575c-1.189.794-1.897 2.055-1.944 3.461l.001.09c-.002.177.006.35.024.522.007.069.016.136.025.204a4.349 4.349 0 0 0 .283 1.04c.008.017.018.033.025.05.027.06.056.118.086.177.05.103.105.205.164.306.035.061.074.12.112.18.063.098.133.193.205.285.041.052.08.106.124.157.105.124.217.242.336.356.015.014.027.029.042.044l5.422 5.048.335.312 1 .93.335.313 4.065 3.784c.559.52 1.179.955 1.841 1.293a8.137 8.137 0 0 0 1.06.439 7.754 7.754 0 0 0 2.431.42c.026 0 .053.004.08.004.026 0 .05-.003.076-.003a7.874 7.874 0 0 0 2.433-.418c.167-.057.332-.115.495-.183a8.09 8.09 0 0 0 2.41-1.55l4.06-3.779.334-.313 1-.932.335-.311 5.427-5.053a4.4 4.4 0 0 0 1.428-3.412 4.29 4.29 0 0 0-.544-1.963l.003.002Zm-21.403 14.34L16.895 59.346a2.485 2.485 0 0 1-.8-1.927 2.35 2.35 0 0 1 1.053-1.896 2.287 2.287 0 0 1 1.944-.303l12.848 3.814.06.018 12.91-3.832a2.3 2.3 0 0 1 1.943.303 2.35 2.35 0 0 1 1.054 1.896 2.48 2.48 0 0 1-.8 1.925L35.95 69.734c-2.25 2.096-5.645 2.096-7.898 0h.001Z\" fill=\"#563FFF\"/><path fill=\"#F4E6E6\" d=\"M64 0h64v122H64z\"/><path d=\"M79.615 50.62h-1.44a2.203 2.203 0 0 0-.864-1.408 2.386 2.386 0 0 0-.734-.37 2.865 2.865 0 0 0-.854-.124 2.67 2.67 0 0 0-1.463.41c-.428.275-.767.676-1.016 1.206-.246.53-.37 1.175-.37 1.939 0 .77.124 1.418.37 1.948.25.53.59.93 1.02 1.2.431.271.916.406 1.455.406.298 0 .581-.04.85-.12.27-.083.515-.204.733-.364a2.209 2.209 0 0 0 .873-1.39l1.44.005a3.857 3.857 0 0 1-.448 1.283 3.54 3.54 0 0 1-.845 1.007 3.82 3.82 0 0 1-1.172.65c-.44.154-.92.231-1.44.231-.82 0-1.549-.194-2.189-.581-.64-.391-1.145-.95-1.514-1.676-.366-.727-.55-1.593-.55-2.6 0-1.009.185-1.875.555-2.598.369-.727.874-1.284 1.514-1.672.64-.39 1.368-.586 2.183-.586.502 0 .97.073 1.404.217a3.7 3.7 0 0 1 1.177.628c.348.274.636.61.863 1.006.228.394.382.845.462 1.353Zm4.583 6.523c-.665 0-1.245-.152-1.74-.457a3.083 3.083 0 0 1-1.155-1.279c-.273-.547-.41-1.188-.41-1.92 0-.736.136-1.379.41-1.93.274-.55.66-.979 1.155-1.283.495-.305 1.075-.457 1.74-.457s1.245.152 1.74.457c.496.304.88.732 1.154 1.283.274.551.411 1.194.411 1.93 0 .732-.137 1.372-.41 1.92a3.082 3.082 0 0 1-1.155 1.28c-.495.304-1.075.456-1.74.456Zm.005-1.159c.43 0 .787-.114 1.07-.341.284-.228.493-.531.629-.91.138-.378.207-.795.207-1.25 0-.453-.069-.869-.207-1.247a2.031 2.031 0 0 0-.628-.919c-.284-.23-.64-.346-1.071-.346-.434 0-.794.115-1.08.346-.284.23-.495.537-.633.919a3.677 3.677 0 0 0-.203 1.246c0 .456.067.873.203 1.251.138.379.35.682.632.91.287.227.647.341 1.08.341ZM89.044 57v-7.09h1.325v1.153h.088c.148-.39.39-.695.725-.914.335-.221.737-.332 1.204-.332.474 0 .871.11 1.192.332.323.222.561.526.715.914h.074a2 2 0 0 1 .808-.905c.37-.227.81-.341 1.32-.341.643 0 1.168.201 1.574.605.41.403.614 1.01.614 1.823V57h-1.38v-4.626c0-.48-.13-.828-.392-1.043a1.427 1.427 0 0 0-.938-.323c-.449 0-.798.138-1.047.415-.25.274-.374.627-.374 1.057V57h-1.376v-4.713c0-.385-.12-.694-.36-.928-.24-.234-.553-.351-.937-.351-.262 0-.504.07-.725.208a1.523 1.523 0 0 0-.531.567 1.739 1.739 0 0 0-.199.845V57h-1.38Zm11.489 2.66v-9.75h1.348v1.149h.116c.08-.148.195-.319.346-.513.151-.194.36-.363.628-.508.268-.147.622-.221 1.062-.221.572 0 1.083.144 1.532.434.45.289.802.706 1.058 1.25.258.546.387 1.201.387 1.967 0 .767-.127 1.424-.383 1.972-.255.544-.606.965-1.052 1.26a2.728 2.728 0 0 1-1.528.438c-.431 0-.784-.072-1.058-.216a2.01 2.01 0 0 1-.637-.508 3.816 3.816 0 0 1-.355-.517h-.083v3.762h-1.381Zm1.353-6.205c0 .498.072.935.217 1.31.145.376.354.67.628.882.274.21.609.314 1.006.314.413 0 .757-.109 1.034-.328a2.03 2.03 0 0 0 .628-.9c.145-.378.217-.804.217-1.278 0-.468-.071-.888-.212-1.26a1.934 1.934 0 0 0-.628-.883c-.277-.215-.623-.323-1.039-.323-.4 0-.738.103-1.015.31a1.903 1.903 0 0 0-.624.863c-.141.37-.212.8-.212 1.293Zm9.727 3.688c-.699 0-1.3-.15-1.805-.448a3.029 3.029 0 0 1-1.163-1.27c-.271-.547-.407-1.189-.407-1.924 0-.727.136-1.367.407-1.92a3.15 3.15 0 0 1 1.144-1.298c.493-.31 1.068-.466 1.727-.466.4 0 .788.066 1.163.198.376.133.713.34 1.011.623.299.284.534.651.707 1.104.172.45.258.995.258 1.639v.489h-5.637v-1.034h4.285c0-.363-.074-.685-.222-.965a1.682 1.682 0 0 0-.623-.67 1.744 1.744 0 0 0-.933-.244c-.388 0-.726.095-1.015.286a1.915 1.915 0 0 0-.665.739 2.13 2.13 0 0 0-.231.983v.808c0 .474.083.877.249 1.21.17.332.405.586.707.761.301.173.654.259 1.057.259.261 0 .5-.037.715-.111a1.482 1.482 0 0 0 .919-.9l1.306.235a2.357 2.357 0 0 1-.563 1.011c-.267.287-.604.51-1.011.67a3.783 3.783 0 0 1-1.38.235Zm8.752-4.736v1.195h-4.192v-1.195h4.192ZM82.617 67.909v1.108h-3.873v-1.108h3.873Zm-2.835-1.699h1.38v6.708c0 .268.04.47.12.605.08.132.184.223.31.272.13.046.27.07.42.07.11 0 .208-.008.29-.024.084-.015.149-.027.195-.037l.25 1.14c-.08.031-.195.062-.343.093a2.696 2.696 0 0 1-.553.055 2.428 2.428 0 0 1-1.016-.194 1.742 1.742 0 0 1-.762-.627c-.194-.284-.29-.639-.29-1.067V66.21ZM84.144 75v-7.09h1.38V75h-1.38Zm.697-8.185a.877.877 0 0 1-.619-.24.78.78 0 0 1-.254-.582.77.77 0 0 1 .254-.581.869.869 0 0 1 .619-.245c.24 0 .445.082.614.245.172.16.258.353.258.581a.774.774 0 0 1-.258.582.861.861 0 0 1-.614.24Zm5.85 1.094v1.108h-3.873v-1.108h3.873Zm-2.835-1.699h1.38v6.708c0 .268.04.47.12.605.08.132.184.223.31.272.13.046.27.07.42.07.111 0 .208-.008.291-.024.083-.015.148-.027.194-.037l.25 1.14a2.695 2.695 0 0 1-.896.148 2.428 2.428 0 0 1-1.016-.194 1.742 1.742 0 0 1-.762-.627c-.194-.284-.29-.639-.29-1.067V66.21Zm7.273 8.933c-.665 0-1.245-.152-1.74-.457a3.082 3.082 0 0 1-1.155-1.279c-.274-.547-.41-1.188-.41-1.92 0-.736.136-1.379.41-1.93.274-.55.659-.978 1.154-1.283.496-.305 1.076-.457 1.74-.457.665 0 1.246.152 1.741.457.496.305.88.732 1.154 1.283.274.551.411 1.194.411 1.93 0 .732-.137 1.373-.41 1.92a3.082 3.082 0 0 1-1.155 1.28c-.495.304-1.076.456-1.74.456Zm.004-1.159c.431 0 .788-.113 1.071-.341a2 2 0 0 0 .628-.91c.139-.378.208-.795.208-1.25 0-.453-.07-.869-.208-1.247a2.03 2.03 0 0 0-.628-.919c-.283-.23-.64-.346-1.07-.346-.435 0-.795.115-1.081.346-.283.23-.494.537-.632.919a3.677 3.677 0 0 0-.204 1.246c0 .456.068.873.204 1.251.138.379.349.682.632.91.286.228.646.341 1.08.341ZM99.975 75v-7.09h1.334v1.126h.074a1.71 1.71 0 0 1 .683-.9 1.955 1.955 0 0 1 1.117-.333 5.978 5.978 0 0 1 .587.032v1.32a2.506 2.506 0 0 0-.296-.05 2.806 2.806 0 0 0-.425-.033c-.326 0-.617.07-.872.208a1.534 1.534 0 0 0-.6.568c-.148.24-.222.514-.222.822V75h-1.38Zm11.998-9.454V75h-1.431v-8.023h-.055l-2.263 1.477v-1.367l2.359-1.541h1.39Z\" fill=\"#000\"/></g><defs><clipPath id=\"a\"><path d=\"M0 15C0 6.716 6.716 0 15 0h98c8.284 0 15 6.716 15 15v107H0V15Z\" fill=\"#fff\"/></clipPath></defs></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5b254a\",\"data-border\":true,\"data-framer-name\":\"Frame 427318637\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gymulg\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-z9dbmd\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Extra fraud protection from hired employees\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"(future fraud prevention) \"})]}),className:\"framer-geoh6k\",\"data-framer-name\":\"Extra fraud protection from hired employees (future fraud prevention)\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ot1tio\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:89,intrinsicWidth:128,svg:'<svg width=\"128\" height=\"89\" viewBox=\"0 0 128 89\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"89\" transform=\"translate(0 0.0078125)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"28.5078\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 44.5077L30.3891 48.3968L38.1673 40.6187\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"89\" transform=\"translate(64 0.0078125)\" fill=\"#F4E6E6\"/>\\n<rect x=\"80\" y=\"28.5078\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M100.333 48.841L91.6665 40.1743\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M100.333 40.1743L91.6665 48.841\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s3giis\",\"data-border\":true,\"data-framer-name\":\"Frame 427318625\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qqqndf\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nbi808\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Protection against resume falsification \"})}),className:\"framer-77glio\",\"data-framer-name\":\"Protection against resume falsification\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-84sbkm\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:70,intrinsicWidth:128,svg:'<svg width=\"128\" height=\"70\" viewBox=\"0 0 128 70\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"70\" transform=\"translate(0 0.0078125)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"19.0078\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 35.0077L30.3891 38.8968L38.1673 31.1187\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"70\" transform=\"translate(64 0.0078125)\" fill=\"#F4E6E6\"/>\\n<rect x=\"80\" y=\"19.0078\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M100.333 39.341L91.6665 30.6743\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M100.333 30.6743L91.6665 39.341\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-137jdh6\",\"data-border\":true,\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zmz6dv\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kl4vwe\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Candidate verification before starting \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"the background check (KYC, biometric ID) \"})]}),className:\"framer-gude4z\",\"data-framer-name\":\"Candidate verification before starting the background check (KYC, biometric ID)\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-llsxqr\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:108,intrinsicWidth:128,svg:'<svg width=\"128\" height=\"108\" viewBox=\"0 0 128 108\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"108\" transform=\"translate(0 0.0078125)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"38.0078\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 54.0077L30.3891 57.8968L38.1673 50.1187\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"108\" transform=\"translate(64 0.0078125)\" fill=\"#F4E6E6\"/>\\n<rect x=\"80\" y=\"38.0078\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M100.333 58.341L91.6665 49.6743\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M100.333 49.6743L91.6665 58.341\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-g7667b\",\"data-border\":true,\"data-framer-name\":\"Frame 427318627\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tazz1g\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10s9w7m\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Medical professional score\"})}),className:\"framer-st7t9c\",\"data-framer-name\":\"Medical Check\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-k4qfur\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:51,intrinsicWidth:128,svg:'<svg width=\"128\" height=\"51\" viewBox=\"0 0 128 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"51\" transform=\"translate(0 0.0078125)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"9.50781\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 25.5077L30.3891 29.3968L38.1673 21.6187\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(64 0.0078125)\" fill=\"#E1F3F3\"/>\\n<rect x=\"80\" y=\"9.50781\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M90.5 25.5077L94.3891 29.3968L102.167 21.6187\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fdi095\",\"data-border\":true,\"data-framer-name\":\"Frame 427318628\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xd6r5c\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f632az\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Credit Check \"})}),className:\"framer-gc84do\",\"data-framer-name\":\"Credit Check\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ssgz1p\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:51,intrinsicWidth:128,svg:'<svg width=\"128\" height=\"51\" viewBox=\"0 0 128 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"51\" transform=\"translate(0 0.0078125)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"9.50781\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 25.5077L30.3891 29.3968L38.1673 21.6187\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(64 0.0078125)\" fill=\"#E1F3F3\"/>\\n<rect x=\"80\" y=\"9.50781\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M90.5 25.5077L94.3891 29.3968L102.167 21.6187\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-101y8lk\",\"data-border\":true,\"data-framer-name\":\"Frame 427318629\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gfg609\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6poj54\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Federal Criminal Search \"})}),className:\"framer-1y49ofe\",\"data-framer-name\":\"Federal Criminal Search\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lhjw0z\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:51,intrinsicWidth:128,svg:'<svg width=\"128\" height=\"51\" viewBox=\"0 0 128 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"51\" transform=\"translate(0 0.0078125)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"9.50781\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 25.5077L30.3891 29.3968L38.1673 21.6187\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(64 0.0078125)\" fill=\"#E1F3F3\"/>\\n<rect x=\"80\" y=\"9.50781\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M90.5 25.5077L94.3891 29.3968L102.167 21.6187\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i0qp86\",\"data-border\":true,\"data-framer-name\":\"Frame 427318630\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p84hq1\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-q33nyw\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"County criminal search \"})}),className:\"framer-bnkwml\",\"data-framer-name\":\"County criminal search\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-dqyo0s\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:51,intrinsicWidth:128,svg:'<svg width=\"128\" height=\"51\" viewBox=\"0 0 128 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"51\" transform=\"translate(0 0.0078125)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"9.50781\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 25.5082L30.3891 29.3973L38.1673 21.6191\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(64 0.0078125)\" fill=\"#E1F3F3\"/>\\n<rect x=\"80\" y=\"9.50781\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M90.5 25.5082L94.3891 29.3973L102.167 21.6191\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eq0v85\",\"data-border\":true,\"data-framer-name\":\"Frame 427318631\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10ryqmq\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uqpcri\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"SSN trace \"})}),className:\"framer-zgvvur\",\"data-framer-name\":\"SSN trace\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qpit9m\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:51,intrinsicWidth:128,svg:'<svg width=\"128\" height=\"51\" viewBox=\"0 0 128 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"51\" transform=\"translate(0 0.0078125)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"9.50781\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 25.5082L30.3891 29.3973L38.1673 21.6191\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(64 0.0078125)\" fill=\"#E1F3F3\"/>\\n<rect x=\"80\" y=\"9.50781\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M90.5 25.5082L94.3891 29.3973L102.167 21.6191\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nd13rf\",\"data-border\":true,\"data-framer-name\":\"Frame 427318636\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m1c506\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9v3byj\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Sex offender registry \"})}),className:\"framer-1nfay1g\",\"data-framer-name\":\"Sex offenser registry\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19hlf6h\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:51,intrinsicWidth:128,svg:'<svg width=\"128\" height=\"51\" viewBox=\"0 0 128 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"51\" transform=\"translate(0 0.0078125)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"9.50781\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 25.5082L30.3891 29.3973L38.1673 21.6191\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(64 0.0078125)\" fill=\"#E1F3F3\"/>\\n<rect x=\"80\" y=\"9.50781\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M90.5 25.5082L94.3891 29.3973L102.167 21.6191\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jtce63\",\"data-border\":true,\"data-framer-name\":\"Frame 427318632\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vsu7k2\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a6jur8\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Recommendations ONLY  from verified employees \"})}),className:\"framer-1hzkg34\",\"data-framer-name\":\"Recommendations ONLY from verified employees\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1i0qbqc\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:70,intrinsicWidth:128,svg:'<svg width=\"128\" height=\"70\" viewBox=\"0 0 128 70\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"70\" transform=\"translate(0 0.0078125)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"19.0078\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 35.0082L30.3891 38.8973L38.1673 31.1191\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"70\" transform=\"translate(64 0.0078125)\" fill=\"#F4E6E6\"/>\\n<rect x=\"80\" y=\"19.0078\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M100.333 39.3414L91.6665 30.6748\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M100.333 30.6748L91.6665 39.3415\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j5cxqv\",\"data-border\":true,\"data-framer-name\":\"Frame 427318633\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-enlvr5\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yq7txp\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"24/7 online access to up-to-date information \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"and dashboard with deep dive analytics \"})]}),className:\"framer-txpkhv\",\"data-framer-name\":\"24/7 online access to up-to-date information and dashboard with deep dive analytics\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1t03gzu\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:108,intrinsicWidth:128,svg:'<svg width=\"128\" height=\"108\" viewBox=\"0 0 128 108\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"108\" transform=\"translate(0 0.0078125)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"38.0078\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 54.0082L30.3891 57.8973L38.1673 50.1191\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"108\" transform=\"translate(64 0.0078125)\" fill=\"#F4E6E6\"/>\\n<rect x=\"80\" y=\"38.0078\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M100.333 58.3414L91.6665 49.6748\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M100.333 49.6748L91.6665 58.3415\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wtqn0d\",\"data-border\":true,\"data-framer-name\":\"Frame 427318634\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1azwfqs\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pndpy9\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Possibility of issue resolution with an employee without fear of being biased by the employer \"})}),className:\"framer-1gngf7u\",\"data-framer-name\":\"Possibility of issue resolution with an employee without fear of being biased by the employer\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-gwe6zt\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:127,intrinsicWidth:128,svg:'<svg width=\"128\" height=\"127\" viewBox=\"0 0 128 127\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"127\" transform=\"translate(0 0.0078125)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"47.5078\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 63.5082L30.3891 67.3973L38.1673 59.6191\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"127\" transform=\"translate(64 0.0078125)\" fill=\"#F4E6E6\"/>\\n<rect x=\"80\" y=\"47.5078\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M100.333 67.8414L91.6665 59.1748\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M100.333 59.1748L91.6665 67.8415\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ssyqd1\",\"data-border\":true,\"data-framer-name\":\"Frame 427318635\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7a5uiz\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-r0j5dh\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Online monitoring and real time alerts for existing employees\"})}),className:\"framer-7cl3jy\",\"data-framer-name\":\"Online monitoring and real time alerts for existing employees\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-feg81j\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:89,intrinsicWidth:128,svg:'<svg width=\"128\" height=\"89\" viewBox=\"0 0 128 89\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"89\" transform=\"translate(0 0.0078125)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"28.5078\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 44.5082L30.3891 48.3973L38.1673 40.6191\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"89\" transform=\"translate(64 0.0078125)\" fill=\"#F4E6E6\"/>\\n<rect x=\"80\" y=\"28.5078\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M100.333 48.8414L91.6665 40.1748\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M100.333 40.1748L91.6665 48.8415\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mwl8h6 hidden-72rtr7 hidden-tf1r54\",\"data-framer-name\":\"Frame 427318625\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-cjsb6h\",\"data-framer-name\":\"Frame 427318592\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vfc38r\",\"data-framer-name\":\"Frame 427318279\",id:\"vfc38r\",onTap:onTap3bnx0g({overlay:overlay1}),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get in touch\"})}),className:\"framer-1ihfatz\",\"data-framer-name\":\"Get started\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-imy9qq\"),\"data-framer-portal-id\":\"vfc38r\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"TfEtuuHBy\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"352px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1y5l9i1-container\"),\"data-framer-portal-id\":\"vfc38r\",nodeId:\"eW60v3S6y\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Form,{height:\"100%\",id:\"eW60v3S6y\",layoutId:\"eW60v3S6y\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jwfna7 hidden-72rtr7 hidden-tf1r54\",\"data-framer-name\":\"Frame 427318626\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y25fqk\",\"data-framer-name\":\"Frame 427318594\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"125%\"},children:\"Pricing\"})}),className:\"framer-1eqlena\",\"data-framer-name\":\"Tariffs\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jtpj54\",\"data-framer-name\":\"Frame 427318640\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\"},children:\"One-time verification\"})}),className:\"framer-15q5xa2\",\"data-framer-name\":\"One-time verification\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sv6k3u\",\"data-framer-name\":\"Frame 427318603\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cao9r\",\"data-framer-name\":\"Frame 427318612\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e8sipa\",\"data-framer-name\":\"Frame 427318638\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1743j4d\",\"data-framer-name\":\"Frame 427318639\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pbrsxg\",\"data-border\":true,\"data-framer-name\":\"Frame 427318346\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pjihew\",\"data-framer-name\":\"Frame 427318348\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qdcoix\",\"data-framer-name\":\"Frame 427318302\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1icv0ci\",\"data-framer-name\":\"Frame 427318300\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-8n2snh\",\"data-framer-name\":\"Media / Play\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1c6tz2d\",\"data-framer-name\":\"Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 17\"><path d=\"M 11.752 9.514 C 12.346 9.118 12.346 8.245 11.752 7.849 L 2.555 1.718 C 1.89 1.275 1 1.751 1 2.55 L 1 14.813 C 1 15.612 1.89 16.088 2.555 15.645 Z\" fill=\"transparent\" stroke-width=\"1.87\" stroke=\"var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, rgb(86, 63, 255)) /* {&quot;name&quot;:&quot;blue&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11987776452,withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\"},children:\"Basic\"})}),className:\"framer-q5dxkk\",\"data-framer-name\":\"Basic\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kv19mv\",\"data-framer-name\":\"Frame 427318376\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Sex Offender Registry\"})}),className:\"framer-1et43it\",\"data-framer-name\":\"Sex Offender Registry\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Global Watchlist Records\"})}),className:\"framer-1ucfoy3\",\"data-framer-name\":\"Global Watchlist Records\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"National Criminal Records\"})}),className:\"framer-16lz4vm\",\"data-framer-name\":\"National Criminal Records\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ihda5q\",\"data-border\":true,\"data-framer-name\":\"Frame 427318350\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lnpx5i\",\"data-framer-name\":\"Frame 427318424\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-utyyol\",\"data-framer-name\":\"Frame 427318425\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\"},children:\"$ 19.99 \"})}),className:\"framer-1lvukvu\",\"data-framer-name\":\"$ 9.9\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Price\"})}),className:\"framer-1a8lpex\",\"data-framer-name\":\"Price\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1exi1d7\",\"data-border\":true,\"data-framer-name\":\"Frame 427318408\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ol2fbv\",\"data-framer-name\":\"Frame 427318348\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gtxgc8\",\"data-framer-name\":\"Frame 427318302\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cxugwk\",\"data-framer-name\":\"Frame 427318300\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-zjrm5d\",\"data-framer-name\":\"Basic / Lightning\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15rbbtn\",\"data-framer-name\":\"Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21 23\"><path d=\"M 11.667 1.682 L 1.667 13.682 L 10.667 13.682 L 9.667 21.682 L 19.667 9.682 L 10.667 9.682 Z\" fill=\"transparent\" stroke-width=\"1.87\" stroke=\"var(--token-655c4d75-f6f5-49e7-9be1-38155d2821e9, rgb(252, 105, 31)) /* {&quot;name&quot;:&quot;Orange&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10030667707,withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-655c4d75-f6f5-49e7-9be1-38155d2821e9, rgb(252, 105, 31))\"},children:\"Essential\"})}),className:\"framer-8s9cnr\",\"data-framer-name\":\"Essential\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1io2r8s\",\"data-framer-name\":\"Frame 427318376\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Sex Offender Registry\"})}),className:\"framer-bldfw5\",\"data-framer-name\":\"Sex Offender Registry\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Global Watchlist Records\"})}),className:\"framer-1mzk44h\",\"data-framer-name\":\"Global Watchlist Records\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"National Criminal Records\"})}),className:\"framer-1eqnr92\",\"data-framer-name\":\"National Criminal Records\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"County Criminal Search (1)\"})}),className:\"framer-1icccoe\",\"data-framer-name\":\"Country Criminal Search (1)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Education Verification (Highest level)\"})}),className:\"framer-113kmwq\",\"data-framer-name\":\"Education Verification (Highest level)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Employment Verification (Current)\"})}),className:\"framer-93yetk\",\"data-framer-name\":\"Employment Verification (Current)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"EPASS Score (limited)\"})}),className:\"framer-1bh4tb0\",\"data-framer-name\":\"EPASS Score (limited)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hz1zmi\",\"data-border\":true,\"data-framer-name\":\"Frame 427318350\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ulq3gx\",\"data-framer-name\":\"Frame 427318424\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rkjzjy\",\"data-framer-name\":\"Frame 427318425\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-655c4d75-f6f5-49e7-9be1-38155d2821e9, rgb(252, 105, 31))\"},children:\"$ 44.99\"})}),className:\"framer-xc2ab8\",\"data-framer-name\":\"$ 39.9\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-655c4d75-f6f5-49e7-9be1-38155d2821e9, rgb(252, 105, 31))\"},children:\"Price\"})}),className:\"framer-1u8hsj\",\"data-framer-name\":\"Price\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ty1i1o\",\"data-border\":true,\"data-framer-name\":\"Frame 427318410\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-117xqud\",\"data-framer-name\":\"Frame 427318348\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u4so59\",\"data-framer-name\":\"Frame 427318302\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-oa4szl\",\"data-framer-name\":\"Frame 427318300\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1diemj2\",\"data-framer-name\":\"Basic / Star\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-s91bdy\",\"data-framer-name\":\"Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21 20\"><path d=\"M 13.069 6.425 L 10.749 1.445 C 10.586 1.094 10.081 1.094 9.918 1.445 L 7.598 6.425 C 7.532 6.568 7.395 6.667 7.237 6.686 L 1.738 7.331 C 1.35 7.377 1.194 7.852 1.481 8.115 L 5.546 11.838 C 5.663 11.945 5.716 12.105 5.685 12.259 L 4.605 17.639 C 4.529 18.018 4.937 18.312 5.278 18.123 L 10.11 15.444 C 10.249 15.367 10.418 15.367 10.557 15.444 L 15.389 18.123 C 15.73 18.312 16.138 18.018 16.062 17.639 L 14.982 12.259 C 14.951 12.105 15.004 11.945 15.121 11.838 L 19.186 8.115 C 19.473 7.852 19.317 7.377 18.929 7.331 L 13.43 6.686 C 13.272 6.667 13.135 6.568 13.069 6.425 Z\" fill=\"transparent\" stroke-width=\"1.87\" stroke=\"var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, rgb(86, 63, 255)) /* {&quot;name&quot;:&quot;blue&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:8755544193,withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\"},children:\"Professional\"})}),className:\"framer-db0auv\",\"data-framer-name\":\"Professional\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p6xdc\",\"data-framer-name\":\"Frame 427318376\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Sex Offender Registry\"})}),className:\"framer-ocgj90\",\"data-framer-name\":\"Sex Offender Registry\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Global Watchlist Records\"})}),className:\"framer-1g3jmgu\",\"data-framer-name\":\"Global Watchlist Records\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"National Criminal Records\"})}),className:\"framer-1xn03j8\",\"data-framer-name\":\"National Criminal Records\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"County Criminal Search (1)\"})}),className:\"framer-wmqmca\",\"data-framer-name\":\"Country Criminal Search (1)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Education Verification (Highest level)\"})}),className:\"framer-wf036c\",\"data-framer-name\":\"Education Verification (Highest level)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Employment Verification (Current)\"})}),className:\"framer-1snvpjb\",\"data-framer-name\":\"Employment Verification (Current)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Medical professional score\"})}),className:\"framer-nx3nn3\",\"data-framer-name\":\"Medical Check\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Federal Criminal Search\"})}),className:\"framer-1cxpe13\",\"data-framer-name\":\"Federal Criminal Search\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Credit Check\"})}),className:\"framer-21qvza\",\"data-framer-name\":\"Credit Check\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"EPASS Score (limited)\"})}),className:\"framer-1yt3qbc\",\"data-framer-name\":\"EPASS Score (limited)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dynkvh\",\"data-border\":true,\"data-framer-name\":\"Frame 427318350\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vhcy0a\",\"data-framer-name\":\"Frame 427318424\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eacqc4\",\"data-framer-name\":\"Frame 427318425\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\"},children:\"$ 64.99\"})}),className:\"framer-p4x6dg\",\"data-framer-name\":\"$ 59.9\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Price\"})}),className:\"framer-n88ggn\",\"data-framer-name\":\"Price\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-127owvb\",\"data-framer-name\":\"Frame 427318592\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/profid-theprofid/30min\",motionChild:true,nodeId:\"rWchKAp4_\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-145s2w framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Frame 427318591\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, rgb(86, 63, 255))\"},children:\"Contact us\"})}),className:\"framer-1dbmkxr\",\"data-framer-name\":\"Talk to Sales\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p83mm\",\"data-framer-name\":\"Frame 427318279\",id:\"1p83mm\",onTap:onTap3bnx0g({overlay:overlay2}),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get in touch\"})}),className:\"framer-112cckp\",\"data-framer-name\":\"Get started\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1gzyjmo\"),\"data-framer-portal-id\":\"1p83mm\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"F0YxLJa2L\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"352px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-juluez-container\"),\"data-framer-portal-id\":\"1p83mm\",nodeId:\"VuHzWYdTF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Form,{height:\"100%\",id:\"VuHzWYdTF\",layoutId:\"VuHzWYdTF\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})})]})]})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7kuqow-container\",isModuleExternal:true,nodeId:\"RGPKyoWtI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div style=\"padding:20px 0;font-size:20px;gap:15px;display:flex;flex-wrap:wrap;flex-direction:column;\">Additional third-party fees may apply.   <a style=\"text-decoration:none;\" href=\"/fees\">Learn more about passthrough fees.</a></div>',id:\"RGPKyoWtI\",layoutId:\"RGPKyoWtI\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1png45u hidden-72rtr7 hidden-tf1r54\",\"data-framer-name\":\"Frame 427318628\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-9vaf2i\",\"data-framer-name\":\"Frame 427318640\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-re98nl\",\"data-framer-name\":\"Frame 427318643\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7wwvin\",\"data-framer-name\":\"Frame 427318642\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Additional options\"})}),className:\"framer-jxg4fl\",\"data-framer-name\":\"Additional options\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"If you require a more customized solution, we can offer one. Just contact us.\"})}),className:\"framer-1ut11c6\",\"data-framer-name\":\"We suggest choosing an option that will give you a complete picture of the candidate or client\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o48ktx\",\"data-framer-name\":\"Frame 427318592\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/profid-theprofid/30min\",motionChild:true,nodeId:\"anXKvX8ky\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-5t920d framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Frame 427318591\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Talk to Sales\"})}),className:\"framer-1u43yuw\",\"data-framer-name\":\"Talk to Sales\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8ecn5k\",\"data-framer-name\":\"Frame 427318279\",id:\"8ecn5k\",onTap:onTap3bnx0g({overlay:overlay3}),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(4, 70, 242)\"},children:\"Get in touch\"})}),className:\"framer-1dyizzj\",\"data-framer-name\":\"Get started\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-vivh8d\"),\"data-framer-portal-id\":\"8ecn5k\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay3.hide()},\"k9Oe24EBJ\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"352px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-zoajkf-container\"),\"data-framer-portal-id\":\"8ecn5k\",nodeId:\"Dp1Widr4_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Form,{height:\"100%\",id:\"Dp1Widr4_\",layoutId:\"Dp1Widr4_\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})})]})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-16ue1bx hidden-72rtr7 hidden-tf1r54\",\"data-framer-name\":\"Frame 427318631\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tckv12\",\"data-framer-name\":\"Frame 427318493\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"PROFID is the best practices combination of:\"})}),className:\"framer-1xmqyax\",\"data-framer-name\":\"EPASS is the best practices combination of:\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f8voih\",\"data-framer-name\":\"Frame 427318646\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-134grb2\",\"data-framer-name\":\"Line 83\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:352,svg:'<svg width=\"352\" height=\"4\" viewBox=\"-1 -1 352 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.589844\" x2=\"350\" y2=\"0.589844\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pa3ezi\",\"data-framer-name\":\"Frame 427318499\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Government Scoring Systems\"})}),className:\"framer-kh08nt\",\"data-framer-name\":\"Government social scoring systems\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gzabbo\",\"data-framer-name\":\"Group 306\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:66,intrinsicWidth:65,svg:'<svg width=\"65\" height=\"66\" viewBox=\"0 0 65 66\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M54.3636 41.4535C53.9703 42.3446 53.853 43.3331 54.0268 44.2916C54.2006 45.25 54.6575 46.1344 55.3386 46.8307L55.5159 47.008C56.0653 47.5568 56.5012 48.2085 56.7985 48.9259C57.0959 49.6432 57.249 50.4122 57.249 51.1887C57.249 51.9652 57.0959 52.7342 56.7985 53.4515C56.5012 54.1689 56.0653 54.8206 55.5159 55.3694C54.9671 55.9188 54.3154 56.3546 53.5981 56.652C52.8807 56.9494 52.1118 57.1024 51.3352 57.1024C50.5587 57.1024 49.7897 56.9494 49.0724 56.652C48.355 56.3546 47.7033 55.9188 47.1545 55.3694L46.9773 55.1921C46.2809 54.511 45.3965 54.0541 44.4381 53.8803C43.4797 53.7065 42.4911 53.8238 41.6 54.2171C40.7261 54.5916 39.9809 55.2135 39.4559 56.0062C38.931 56.7989 38.6492 57.7277 38.6455 58.6785V59.1807C38.6455 60.7479 38.0229 62.2509 36.9147 63.3591C35.8065 64.4673 34.3035 65.0898 32.7364 65.0898C31.1692 65.0898 29.6662 64.4673 28.558 63.3591C27.4498 62.2509 26.8273 60.7479 26.8273 59.1807V58.9148C26.8044 57.9369 26.4878 56.9885 25.9188 56.1928C25.3497 55.3972 24.5544 54.7911 23.6364 54.4535C22.7452 54.0602 21.7567 53.9429 20.7983 54.1166C19.8398 54.2904 18.9554 54.7473 18.2591 55.4285L18.0818 55.6057C17.533 56.1552 16.8813 56.591 16.164 56.8884C15.4466 57.1857 14.6777 57.3388 13.9011 57.3388C13.1246 57.3388 12.3557 57.1857 11.6383 56.8884C10.921 56.591 10.2692 56.1552 9.72045 55.6057C9.17105 55.057 8.7352 54.4052 8.43783 53.6879C8.14046 52.9705 7.9874 52.2016 7.9874 51.4251C7.9874 50.6485 8.14046 49.8796 8.43783 49.1622C8.7352 48.4449 9.17105 47.7932 9.72045 47.2444L9.89773 47.0671C10.5789 46.3708 11.0358 45.4864 11.2096 44.5279C11.3833 43.5695 11.266 42.581 10.8727 41.6898C10.4982 40.816 9.87632 40.0707 9.08365 39.5457C8.29097 39.0208 7.3621 38.7391 6.41136 38.7353H5.90909C4.3419 38.7353 2.8389 38.1127 1.73073 37.0046C0.622563 35.8964 0 34.3934 0 32.8262C0 31.259 0.622563 29.756 1.73073 28.6478C2.8389 27.5397 4.3419 26.9171 5.90909 26.9171H6.175C7.15294 26.8942 8.10138 26.5777 8.89702 26.0086C9.69266 25.4396 10.2987 24.6443 10.6364 23.7262C11.0297 22.8351 11.147 21.8465 10.9732 20.8881C10.7994 19.9297 10.3425 19.0453 9.66136 18.3489L9.48409 18.1717C8.93468 17.6229 8.49884 16.9712 8.20146 16.2538C7.90409 15.5365 7.75103 14.7675 7.75103 13.991C7.75103 13.2144 7.90409 12.4455 8.20146 11.7281C8.49884 11.0108 8.93468 10.3591 9.48409 9.8103C10.0329 9.26089 10.6846 8.82504 11.4019 8.52767C12.1193 8.2303 12.8882 8.07724 13.6648 8.07724C14.4413 8.07724 15.2102 8.2303 15.9276 8.52767C16.645 8.82504 17.2967 9.26089 17.8455 9.8103L18.0227 9.98757C18.719 10.6687 19.6035 11.1256 20.5619 11.2994C21.5203 11.4732 22.5089 11.3559 23.4 10.9626H23.6364C24.5102 10.588 25.2555 9.96617 25.7805 9.17349C26.3054 8.38081 26.5871 7.45194 26.5909 6.50121V5.99893C26.5909 4.43175 27.2135 2.92875 28.3216 1.82058C29.4298 0.712407 30.9328 0.0898438 32.5 0.0898438C34.0672 0.0898438 35.5702 0.712407 36.6784 1.82058C37.7865 2.92875 38.4091 4.43175 38.4091 5.99893V6.26484C38.4129 7.21558 38.6946 8.14445 39.2195 8.93713C39.7445 9.7298 40.4898 10.3517 41.3636 10.7262C42.2548 11.1195 43.2433 11.2368 44.2017 11.063C45.1602 10.8893 46.0446 10.4323 46.7409 9.75121L46.9182 9.57393C47.467 9.02453 48.1187 8.58868 48.836 8.29131C49.5534 7.99394 50.3223 7.84088 51.0989 7.84088C51.8754 7.84088 52.6443 7.99394 53.3617 8.29131C54.079 8.58868 54.7307 9.02453 55.2795 9.57393C55.8289 10.1227 56.2648 10.7744 56.5622 11.4918C56.8595 12.2091 57.0126 12.9781 57.0126 13.7546C57.0126 14.5312 56.8595 15.3001 56.5622 16.0174C56.2648 16.7348 55.8289 17.3865 55.2795 17.9353L55.1023 18.1126C54.4211 18.8089 53.9642 19.6933 53.7904 20.6517C53.6166 21.6102 53.734 22.5987 54.1273 23.4898V23.7262C54.5018 24.6001 55.1237 25.3453 55.9163 25.8703C56.709 26.3952 57.6379 26.677 58.5886 26.6807H59.0909C60.6581 26.6807 62.1611 27.3033 63.2693 28.4115C64.3774 29.5197 65 31.0227 65 32.5898C65 34.157 64.3774 35.66 63.2693 36.7682C62.1611 37.8764 60.6581 38.4989 59.0909 38.4989H58.825C57.8743 38.5027 56.9454 38.7844 56.1527 39.3094C55.36 39.8343 54.7382 40.5796 54.3636 41.4535Z\" fill=\"white\" stroke=\"#14181F\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 33.0898C14 29.0898 20.9 21.0898 32.5 21.0898C44.1 21.0898 51 29.0898 53 33.0898C50.1667 37.4232 42.1 46.0898 32.5 46.0898C22.9 46.0898 14.8333 37.4232 12 33.0898ZM32.5 39.5898C36.366 39.5898 39.5 36.4558 39.5 32.5898C39.5 28.7239 36.366 25.5898 32.5 25.5898C28.634 25.5898 25.5 28.7239 25.5 32.5898C25.5 36.4558 28.634 39.5898 32.5 39.5898Z\" fill=\"url(#paint0_linear_297_2618)\"/>\\n<path d=\"M39.5 32.5898C39.5 36.4558 36.366 39.5898 32.5 39.5898C28.634 39.5898 25.5 36.4558 25.5 32.5898C25.5 28.7239 28.634 25.5898 32.5 25.5898C36.366 25.5898 39.5 28.7239 39.5 32.5898Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 33.0898C14 29.0898 20.9 21.0898 32.5 21.0898C44.1 21.0898 51 29.0898 53 33.0898C50.1667 37.4232 42.1 46.0898 32.5 46.0898C22.9 46.0898 14.8333 37.4232 12 33.0898ZM32.5 39.5898C36.366 39.5898 39.5 36.4558 39.5 32.5898C39.5 28.7239 36.366 25.5898 32.5 25.5898C28.634 25.5898 25.5 28.7239 25.5 32.5898C25.5 36.4558 28.634 39.5898 32.5 39.5898Z\" stroke=\"#14181F\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M39.5 32.5898C39.5 36.4558 36.366 39.5898 32.5 39.5898C28.634 39.5898 25.5 36.4558 25.5 32.5898C25.5 28.7239 28.634 25.5898 32.5 25.5898C36.366 25.5898 39.5 28.7239 39.5 32.5898Z\" stroke=\"#14181F\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_297_2618\" x1=\"12.3154\" y1=\"23.6728\" x2=\"34.8534\" y2=\"56.6635\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1E61ED\"/>\\n<stop offset=\"1\" stop-color=\"#67ACF2\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1expy98\",\"data-framer-name\":\"Line 82\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:352,svg:'<svg width=\"352\" height=\"4\" viewBox=\"-1 -1 352 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.589844\" x2=\"350\" y2=\"0.589844\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wu6t43\",\"data-framer-name\":\"Frame 427318500\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Social media \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"recommendations\"})]}),className:\"framer-p0h0mt\",\"data-framer-name\":\"Social media reccomendations\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-zvnqjs\",\"data-framer-name\":\"Frame 427318645\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:66,intrinsicWidth:82,svg:'<svg width=\"82\" height=\"66\" viewBox=\"0 0 82 66\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M37.0578 0.0898438L22.0742 15.0268V65.3246H71.0003V0.0898438H37.0578Z\" fill=\"white\"/>\\n<path d=\"M37.4769 0.0898438V15.4925H22.0742\" stroke=\"black\" stroke-width=\"0.983783\"/>\\n<path d=\"M36.0903 59.5992L31.2581 56.868L13.9003 31.4989L11.6273 28.1768C10.9226 27.4721 9.87559 25.7003 11.3253 24.2506L14.0434 22.4385C15.493 21.4721 17.2648 23.2439 17.9695 24.2506L20.0041 27.2707L37.2983 52.9418L37.914 58.2773L38.2044 60.7941L36.0903 59.5992Z\" fill=\"white\"/>\\n<path d=\"M36.0903 42.4041H58.1372M39.4124 49.0484H54.8151M11.6273 28.1768C10.9226 27.4721 9.87559 25.7003 11.3253 24.2506C11.6273 24.0493 12.5937 23.405 14.0434 22.4385C15.493 21.4721 17.2648 23.2439 17.9695 24.2506M11.6273 28.1768L17.9695 24.2506M11.6273 28.1768L13.9003 31.4989M31.2581 56.868L37.2983 52.9418M31.2581 56.868L36.0903 59.5992M31.2581 56.868L13.9003 31.4989M37.2983 52.9418L37.914 58.2773M37.2983 52.9418L20.0041 27.2707M36.0903 59.5992L38.2044 60.7941L37.914 58.2773M36.0903 59.5992C36.1987 59.125 36.7152 58.1968 37.914 58.2773M17.9695 24.2506L20.0041 27.2707M13.9003 31.4989L20.0041 27.2707M20.0041 33.613L32.7682 52.3378\" stroke=\"black\" stroke-width=\"0.983783\"/>\\n<mask id=\"mask0_297_2650\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"38\" y=\"18\" width=\"19\" height=\"18\">\\n<circle cx=\"47.4155\" cy=\"27.2095\" r=\"8.26359\" fill=\"white\" stroke=\"black\" stroke-width=\"0.688632\"/>\\n</mask>\\n<g mask=\"url(#mask0_297_2650)\">\\n<circle cx=\"47.4155\" cy=\"27.2095\" r=\"8.26359\" fill=\"white\"/>\\n<circle cx=\"47.4155\" cy=\"27.2095\" r=\"8.26359\" fill=\"url(#paint0_linear_297_2650)\"/>\\n<circle cx=\"47.4155\" cy=\"27.2095\" r=\"8.26359\" stroke=\"black\" stroke-width=\"0.688632\"/>\\n<path d=\"M44.6612 24.111C44.6612 22.7799 45.7403 21.7008 47.0714 21.7008C48.4025 21.7008 49.4816 22.7799 49.4816 24.111V26.1769C49.4816 27.508 48.4025 28.5871 47.0714 28.5871C45.7403 28.5871 44.6612 27.508 44.6612 26.1769V24.111Z\" fill=\"white\" stroke=\"black\" stroke-width=\"0.688632\"/>\\n<path d=\"M47.0714 28.9316C41.5623 28.9316 40.1851 33.5225 40.1851 35.818H53.6134C53.7282 33.5225 52.5804 28.9316 47.0714 28.9316Z\" fill=\"white\" stroke=\"black\" stroke-width=\"0.688632\"/>\\n<circle cx=\"47.4155\" cy=\"27.2095\" r=\"8.26359\" stroke=\"black\" stroke-width=\"0.688632\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_297_2650\" x1=\"38.8076\" y1=\"21.3304\" x2=\"50.104\" y2=\"37.8972\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#0B4DEB\"/>\\n<stop offset=\"1\" stop-color=\"#76BCF3\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3htk8f\",\"data-framer-name\":\"Line 81\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:352,svg:'<svg width=\"352\" height=\"4\" viewBox=\"-1 -1 352 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.589844\" x2=\"350\" y2=\"0.589844\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u9pigk\",\"data-framer-name\":\"Frame 427318501\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Fraud prevention \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"software\"})]}),className:\"framer-1k0bzr5\",\"data-framer-name\":\"Fraud prevention software\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-f8tm66\",\"data-framer-name\":\"Group 302\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:61,intrinsicWidth:72,svg:'<svg width=\"72\" height=\"61\" viewBox=\"0 0 72 61\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.6872 21.8019C21.0055 24.0297 22.9415 25.3823 23.8698 25.7802C24.4002 26.0454 25.4609 25.7006 25.4609 22.1997C25.4609 17.8237 24.2675 14.6411 29.0413 14.6411C29.7044 14.6411 31.2692 14.8798 32.2239 15.8346C32.4892 15.4367 33.3378 14.6411 34.6109 14.6411C36.2022 14.6411 38.5891 15.8346 38.987 17.8237C38.8543 15.1715 36.9183 9.86719 30.2348 9.86719C23.5514 9.86719 21.085 14.1106 20.6872 16.2324V21.8019Z\" fill=\"black\"/>\\n<path d=\"M56.8889 56.0894C56 51.645 46.6667 40.8975 37.7935 40.8975C37.3688 40.8267 36.7173 40.5821 36.2022 40.0789C37.9261 43.9322 41.2942 49.406 40.9759 56.0894H56.8889Z\" fill=\"white\"/>\\n<path d=\"M23.8698 25.7802C22.9415 25.3823 21.0055 24.0297 20.6872 21.8019C20.2894 21.2715 19.3346 20.688 18.6981 22.5976C17.9024 24.9845 18.6981 26.9736 20.2894 28.1671C21.5624 29.1219 22.9414 28.8302 23.4718 28.5649V37.3171C23.4719 37.8005 23.3675 38.4798 23.074 39.117C22.9147 39.4627 22.6998 39.796 22.4157 40.0789C21.9721 42.4735 21.0847 45.9051 21.0847 56.0894H40.9759C41.2942 49.406 37.9261 43.9322 36.2022 40.0789C35.7524 39.6395 35.4065 39.0029 35.4065 38.1127C35.4065 35.7258 35.4065 34.9301 36.2022 34.1345C36.9978 33.3388 38.987 32.941 38.987 28.5649V17.8237C38.5891 15.8346 36.2022 14.6411 34.6109 14.6411C33.3378 14.6411 32.4892 15.4367 32.2239 15.8346C31.2692 14.8798 29.7044 14.6411 29.0413 14.6411C24.2675 14.6411 25.4609 17.8237 25.4609 22.1997C25.4609 25.7006 24.4002 26.0454 23.8698 25.7802Z\" fill=\"white\"/>\\n<path d=\"M20.2894 40.8975C17.1066 40.8975 0 43.2005 0 56.0894H21.0847C21.0847 45.9051 21.9721 42.4735 22.4157 40.0789C21.9308 40.5616 21.2445 40.8975 20.2894 40.8975Z\" fill=\"white\"/>\\n<path d=\"M20.6872 21.8019C21.0055 24.0297 22.9415 25.3823 23.8698 25.7802C24.4002 26.0454 25.4609 25.7006 25.4609 22.1997C25.4609 17.8237 24.2675 14.6411 29.0413 14.6411C29.7044 14.6411 31.2692 14.8798 32.2239 15.8346C32.4892 15.4367 33.3378 14.6411 34.6109 14.6411C36.2022 14.6411 38.5891 15.8346 38.987 17.8237M20.6872 21.8019C20.2894 21.2715 19.3346 20.688 18.6981 22.5976C17.9024 24.9845 18.6981 26.9736 20.2894 28.1671C21.5624 29.1219 22.9414 28.8302 23.4718 28.5649V37.3171C23.4719 37.8005 23.3675 38.4798 23.074 39.117M20.6872 21.8019V16.2324C21.085 14.1106 23.5514 9.86719 30.2348 9.86719C36.9183 9.86719 38.8543 15.1715 38.987 17.8237M36.2022 34.1345C35.4065 34.9301 35.4065 35.7258 35.4065 38.1127C35.4065 39.0029 35.7524 39.6395 36.2022 40.0789M36.2022 34.1345C36.9978 33.3388 38.987 32.941 38.987 28.5649M36.2022 34.1345C35.0087 35.328 31.3487 36.9988 26.2566 34.1345M38.987 28.5649C38.987 25.0641 38.987 19.9454 38.987 17.8237M38.987 28.5649V17.8237M23.074 39.117L31.4283 47.2627L35.4065 39.704M23.074 39.117C22.9147 39.4627 22.6998 39.796 22.4157 40.0789M36.2022 40.0789C36.7173 40.5821 37.3687 40.8267 37.7935 40.8975C46.6667 40.8975 56 51.645 56.8889 56.0894H40.9759M36.2022 40.0789C37.9261 43.9322 41.2942 49.406 40.9759 56.0894M40.9759 56.0894H21.0847M22.4157 40.0789C21.9308 40.5616 21.2445 40.8975 20.2894 40.8975C17.1066 40.8975 0 43.2005 0 56.0894H21.0847M22.4157 40.0789C21.9721 42.4735 21.0847 45.9051 21.0847 56.0894\" stroke=\"black\" stroke-width=\"0.851996\"/>\\n<rect x=\"52.0316\" y=\"34.3441\" width=\"4.38149\" height=\"6.15927\" stroke=\"black\" stroke-width=\"0.951839\"/>\\n<rect x=\"49.3651\" y=\"40.5648\" width=\"9.71483\" height=\"19.4926\" rx=\"1.42776\" fill=\"white\" stroke=\"black\" stroke-width=\"0.951839\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24 21.4231V24.0897C24.1481 25.4231 25.6 28.0897 30.2222 28.0897C34.8444 28.0897 36.5926 26.0157 36.8889 24.9786C37.1634 25.9393 38.8362 27.7898 43.3206 28.0572C43.8928 28.0913 44.3187 27.5552 44.1874 26.9973L42.8279 21.2195C42.7334 20.818 42.3751 20.5342 41.9627 20.5342H24.8889C24.398 20.5342 24 20.9321 24 21.4231ZM31.5556 25.4231C29.4222 25.4231 28.8889 23.4971 28.8889 22.312L31.5556 22.7564C33.1099 22.7564 33.5317 23.3226 33.7123 23.861C33.7619 24.0092 33.7595 24.1694 33.7262 24.322C33.609 24.8593 33.4166 25.4231 31.5556 25.4231Z\" fill=\"url(#paint0_linear_297_2632)\"/>\\n<circle cx=\"54.2221\" cy=\"17.8676\" r=\"17.3019\" fill=\"white\" stroke=\"black\" stroke-width=\"0.951839\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_297_2632\" x1=\"26.6667\" y1=\"20.5342\" x2=\"40.4444\" y2=\"27.6453\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1058EC\"/>\\n<stop offset=\"1\" stop-color=\"#1050EB\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1p3ddqg\",\"data-framer-name\":\"Line 80\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:352,svg:'<svg width=\"352\" height=\"4\" viewBox=\"-1 -1 352 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"1.03418\" x2=\"350\" y2=\"1.03418\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ksuicj\",\"data-framer-name\":\"Frame 427318502\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Background checks\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"services\"})]}),className:\"framer-jh13ov\",\"data-framer-name\":\"Background checks services\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1q9qoir\",\"data-framer-name\":\"Group 304\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:59,intrinsicWidth:70,svg:'<svg width=\"70\" height=\"59\" viewBox=\"0 0 70 59\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"3.78223\" y=\"3.29688\" width=\"32.9364\" height=\"44.2485\" stroke=\"black\"/>\\n<rect x=\"0.265625\" y=\"0.53418\" width=\"33.9364\" height=\"45.2485\" fill=\"white\"/>\\n<rect x=\"37.4712\" y=\"38.1114\" width=\"3.52485\" height=\"5.03313\" transform=\"rotate(45 37.4712 38.1114)\" fill=\"white\" stroke=\"black\"/>\\n<rect x=\"32.1382\" y=\"40.2452\" width=\"8.0497\" height=\"16.3453\" rx=\"1.5\" transform=\"rotate(45 32.1382 40.2452)\" fill=\"white\" stroke=\"black\"/>\\n<circle cx=\"48.6694\" cy=\"29.4055\" r=\"14.5828\" transform=\"rotate(45 48.6694 29.4055)\" fill=\"white\" stroke=\"black\"/>\\n<path d=\"M5.54443 6.94434H10.0693M13.4629 6.94434H29.677\" stroke=\"black\"/>\\n<path d=\"M5.54443 10.3379H10.0693M13.4629 10.3379H29.677\" stroke=\"black\"/>\\n<path d=\"M5.54443 13.3545H10.0693M13.4629 13.3545H29.677\" stroke=\"black\"/>\\n<path d=\"M5.54443 16.3711H10.0693M13.4629 16.3711H29.677\" stroke=\"black\"/>\\n<path d=\"M5.54443 19.3877H10.0693M13.4629 19.3877H29.677\" stroke=\"black\"/>\\n<path d=\"M43.2515 28.8145L47.0222 32.5852L54.1865 25.4209\" stroke=\"#0546F0\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-s22g8\",\"data-framer-name\":\"Line 79\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:352,svg:'<svg width=\"352\" height=\"4\" viewBox=\"-1 -1 352 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.702148\" x2=\"350\" y2=\"0.702148\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1czz425\",\"data-framer-name\":\"Frame 427318503\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Professional \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Networks\"})]}),className:\"framer-kcqlu6\",\"data-framer-name\":\"Professional Networks\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gdqrrz\",\"data-framer-name\":\"Frame 427318647\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:59,intrinsicWidth:77,svg:'<svg width=\"77\" height=\"59\" viewBox=\"0 0 77 59\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.7354 14.9844L27.6098 19.8588M54.9358 14.9844L48.6829 21.2373M53.8526 44.9198L46.0241 37.0913M22.7354 44.9198L31.2533 36.4019\" stroke=\"black\"/>\\n<mask id=\"mask0_297_2728\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"9\" y=\"0\" width=\"17\" height=\"18\">\\n<circle cx=\"17.521\" cy=\"8.82133\" r=\"8.004\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</mask>\\n<g mask=\"url(#mask0_297_2728)\">\\n<circle cx=\"17.521\" cy=\"8.82133\" r=\"8.004\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M15.3896 5.79955C15.3896 4.53168 16.4174 3.50386 17.6853 3.50386C18.9532 3.50386 19.981 4.53167 19.981 5.79955V7.81424C19.981 9.08212 18.9532 10.1099 17.6853 10.1099C16.4174 10.1099 15.3896 9.08212 15.3896 7.81425V5.79955Z\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M10.9697 17.2166C10.9697 14.9781 12.3129 10.501 17.6854 10.501C23.0579 10.501 24.1772 14.9781 24.0653 17.2166\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</g>\\n<mask id=\"mask1_297_2728\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"9\" y=\"41\" width=\"17\" height=\"18\">\\n<circle cx=\"17.521\" cy=\"49.8877\" r=\"8.004\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</mask>\\n<g mask=\"url(#mask1_297_2728)\">\\n<circle cx=\"17.521\" cy=\"49.8877\" r=\"8.004\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M15.3896 46.866C15.3896 45.5981 16.4174 44.5703 17.6853 44.5703C18.9532 44.5703 19.981 45.5981 19.981 46.866V48.8807C19.981 50.1485 18.9532 51.1763 17.6853 51.1763C16.4174 51.1763 15.3896 50.1485 15.3896 48.8807V46.866Z\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M10.9697 58.283C10.9697 56.0445 12.3129 51.5674 17.6854 51.5674C23.0579 51.5674 24.1772 56.0445 24.0653 58.283\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</g>\\n<mask id=\"mask2_297_2728\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"51\" y=\"0\" width=\"17\" height=\"18\">\\n<circle cx=\"59.6055\" cy=\"8.82133\" r=\"8.004\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</mask>\\n<g mask=\"url(#mask2_297_2728)\">\\n<circle cx=\"59.6055\" cy=\"8.82133\" r=\"8.004\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M57.4741 5.79955C57.4741 4.53168 58.5019 3.50386 59.7698 3.50386C61.0376 3.50386 62.0654 4.53167 62.0654 5.79955V7.81424C62.0654 9.08212 61.0376 10.1099 59.7698 10.1099C58.5019 10.1099 57.4741 9.08212 57.4741 7.81425V5.79955Z\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M53.0542 17.2166C53.0542 14.9781 54.3973 10.501 59.7699 10.501C65.1424 10.501 66.2617 14.9781 66.1497 17.2166\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</g>\\n<mask id=\"mask3_297_2728\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"22\" y=\"13\" width=\"33\" height=\"32\">\\n<circle cx=\"38.5083\" cy=\"28.7212\" r=\"15.1695\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</mask>\\n<g mask=\"url(#mask3_297_2728)\">\\n<circle cx=\"38.5083\" cy=\"28.7212\" r=\"15.1695\" fill=\"url(#paint0_linear_297_2728)\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M34.2246 23.1198C34.2246 20.5856 36.279 18.5312 38.8132 18.5312C41.3474 18.5312 43.4018 20.5856 43.4018 23.1198V26.8542C43.4018 29.3885 41.3474 31.4429 38.8132 31.4429C36.279 31.4429 34.2246 29.3885 34.2246 26.8542V23.1198Z\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M38.8129 31.833C28.8545 31.833 26.8022 40.5691 26.8022 44.7184H51.0759C51.2834 40.5691 48.7713 31.833 38.8129 31.833Z\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<circle cx=\"38.5083\" cy=\"28.7212\" r=\"15.1695\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</g>\\n<mask id=\"mask4_297_2728\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"51\" y=\"41\" width=\"17\" height=\"18\">\\n<circle cx=\"59.6055\" cy=\"49.8877\" r=\"8.004\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</mask>\\n<g mask=\"url(#mask4_297_2728)\">\\n<circle cx=\"59.6055\" cy=\"49.8877\" r=\"8.004\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M57.4741 46.866C57.4741 45.5981 58.5019 44.5703 59.7698 44.5703C61.0376 44.5703 62.0654 45.5981 62.0654 46.866V48.8807C62.0654 50.1485 61.0376 51.1763 59.7698 51.1763C58.5019 51.1763 57.4741 50.1485 57.4741 48.8807V46.866Z\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M53.0542 58.283C53.0542 56.0445 54.3973 51.5674 59.7699 51.5674C65.1424 51.5674 66.2617 56.0445 66.1497 58.283\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_297_2728\" x1=\"50.8232\" y1=\"14.4122\" x2=\"30.4525\" y2=\"43.135\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#43BBFF\"/>\\n<stop offset=\"1\" stop-color=\"#0E50EB\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-arv6e3 hidden-72rtr7 hidden-tf1r54\",\"data-framer-name\":\"Frame 427318636\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d9g5sm\",\"data-framer-name\":\"Frame 427318654\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-rjvd2z\",\"data-framer-name\":\"Line 84\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:352,svg:'<svg width=\"352\" height=\"4\" viewBox=\"-1 -1 352 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.1\" y1=\"0.789062\" x2=\"350\" y2=\"0.789062\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-40fx5i\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6m5rx2\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/people/EPASS/100087441582953/\",motionChild:true,nodeId:\"BRubXD6PP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1x39w5e framer-lux5qc\",\"data-framer-name\":\"Frame_427318582\",fill:\"black\",intrinsicHeight:39,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M38.003 19.932c0 9.598-7.114 17.532-16.356 18.82a19.267 19.267 0 0 1-5.69-.06C6.91 37.235 0 29.39 0 19.932 0 9.437 8.508.93 19.003.93c10.494 0 19.002 8.508 19.002 19.003h-.002Z\" fill=\"#fff\"/><path d=\"M21.647 16.189v4.14h5.12l-.81 5.576h-4.31v12.847a19.267 19.267 0 0 1-5.69-.06V25.906h-4.722v-5.577h4.723v-5.065a5.69 5.69 0 0 1 5.69-5.69v.002c.01 0 .018-.003.027-.003h5.094v4.823H23.44c-.989 0-1.792.803-1.792 1.792l-.001.002Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/theprofid/\",motionChild:true,nodeId:\"Jvv7Fj3Aj\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1cmxcnt framer-lux5qc\",\"data-framer-name\":\"Frame_427318583\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><path d=\"M 13.678 0.667 L 13.616 0.667 C 6.098 0.667 0.004 6.761 0.004 14.279 L 0.004 14.341 C 0.004 21.858 6.098 27.953 13.616 27.953 L 13.678 27.953 C 21.195 27.953 27.29 21.858 27.29 14.341 L 27.29 14.279 C 27.29 6.762 21.195 0.666 13.678 0.666 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 6.512 9.737 C 6.161 9.422 5.964 8.97 5.973 8.498 C 5.973 8.007 6.153 7.576 6.512 7.242 C 6.871 6.908 7.333 6.741 7.9 6.741 C 8.467 6.741 8.912 6.908 9.27 7.241 C 9.629 7.575 9.809 7.995 9.809 8.498 C 9.809 9.002 9.629 9.403 9.27 9.737 C 8.911 10.07 8.455 10.237 7.9 10.237 C 7.346 10.237 6.871 10.07 6.511 9.737 Z M 9.506 11.65 L 9.506 21.879 L 6.275 21.879 L 6.275 11.65 L 9.507 11.65 Z M 20.266 12.661 C 20.971 13.426 21.322 14.475 21.322 15.812 L 21.322 21.699 L 18.252 21.699 L 18.252 16.227 C 18.252 15.552 18.077 15.029 17.728 14.656 C 17.379 14.283 16.91 14.096 16.32 14.096 C 15.732 14.096 15.261 14.283 14.913 14.656 C 14.564 15.03 14.388 15.553 14.388 16.227 L 14.388 21.699 L 11.301 21.699 L 11.301 11.622 L 14.388 11.622 L 14.388 12.958 C 14.701 12.513 15.123 12.161 15.652 11.902 C 16.182 11.643 16.778 11.514 17.44 11.514 C 18.619 11.514 19.562 11.896 20.266 12.66 Z\" fill=\"rgb(7,11,14)\"></path></svg>',svgContentId:9559017163,withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1uq6mwi\",\"data-framer-name\":\"PROFID_2\",fill:\"black\",intrinsicHeight:430,intrinsicWidth:2039,svg:'<svg width=\"2039\" height=\"430\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><mask id=\"a\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"2039\" height=\"430\"><path d=\"M.627 0H2038.42v429.992H.627V0Z\" fill=\"#fff\"/></mask><g mask=\"url(#a)\" fill=\"#fff\"><path d=\"M227.173 357.527a4.96 4.96 0 0 0-1.262-.558c.43.124.848.306 1.243.552l73.627 46.188a53.524 53.524 0 0 0 6.016 3.066 53.54 53.54 0 0 1-6.011-3.066l-73.613-46.182Zm-113.937 29.008c7.349 2.696 15.388 1.934 22.6-2.351l54.539-34.219c-.003-.001-.01-.002-.012-.004l-54.54 34.216c-7.203 4.279-15.242 5.04-22.587 2.358Zm55.095-327.022c8.268-24.668 30.352-40.608 56.257-40.608 8.088 0 15.807 1.556 22.846 4.444-7.046-2.893-14.767-4.45-22.864-4.45-25.899 0-47.976 15.94-56.251 40.607l-28.008 83.543.012.004 28.008-83.54Zm-94.977 283.31 24.243-72.312-.012-.01-24.243 72.316c-6.921 20.63-.628 42.185 15.821 55.953-16.44-13.779-22.726-35.328-15.809-55.947Zm269.631 39.87c-6.721 4.989-14.599 6.566-22.1 4.677 7.508 1.892 15.391.316 22.112-4.677 7.809-5.778 15.145-17.842 10.127-32.819l-20.575-61.372-.016.012 20.572 61.36c5.019 14.971-2.312 27.035-10.12 32.819ZM94.252 402.567c14.085 9.218 31.066 10.941 46.557 4.784-15.481 6.141-32.465 4.421-46.557-4.784ZM238.954 44.876c7.98 3.504 15.36 10.305 19.173 21.681l27.94 83.344.012-.005-27.939-83.332c-3.817-11.384-11.201-18.185-19.186-21.688Zm-76.021 287.219c6.377 6.012 13.443 11.01 20.988 14.909-7.541-3.899-14.601-8.895-20.976-14.903l-46.301-43.646-.004.006 46.293 43.634Z\"/><path d=\"m97.6 270.503-61.773-58.228c-.171-.16-.311-.338-.479-.501.165.16.299.343.467.501l61.769 58.226.013.01.003-.008Zm183.239-210.99c-5.687-16.964-17.907-29.8-33.405-36.164-7.039-2.888-14.758-4.444-22.846-4.444-25.904 0-47.989 15.94-56.257 40.608l-28.007 83.54 4.572 1.373 13.626 4.098 4.573 1.372 27.936-83.332c6.105-18.208 21.339-24.699 33.557-24.699 4.579 0 9.579.912 14.366 3.01 7.985 3.503 15.369 10.305 19.186 21.689l27.939 83.332 4.569-1.372 13.63-4.098 4.569-1.373-28.008-83.54Zm-65.945 296.846c-6.457-.718-12.774-2.193-18.894-4.294-1.895-.651-3.776-1.322-5.624-2.099l-54.54 34.217c-7.212 4.287-15.251 5.048-22.6 2.352-2.451-.898-4.823-2.18-7.063-3.842-7.81-5.778-15.139-17.835-10.12-32.819l20.587-61.413.004-.007-3.824-3.603-11.399-10.745-3.821-3.603-.003.008-24.243 72.312c-6.917 20.618-.63 42.168 15.81 55.947.833.697 1.565 1.469 2.448 2.124.85.631 1.764 1.101 2.64 1.672 14.092 9.205 31.076 10.927 46.557 4.784 2.655-1.053 5.271-2.279 7.811-3.791l73.384-46.032c.532-.332 1.112-.512 1.702-.621a88.141 88.141 0 0 1-8.812-.547Zm160.928-13.536-24.23-72.274-3.823 3.604-11.4 10.745-3.82 3.604 20.575 61.372c5.018 14.977-2.318 27.041-10.127 32.819-6.721 4.993-14.604 6.569-22.112 4.677-.227-.056-.447-.157-.671-.221-1.018-.287-2.034-.594-3.034-1.008a28.746 28.746 0 0 1-3.603-1.808l-54.748-34.35c-1.851.776-3.736 1.446-5.631 2.096-6.125 2.1-12.442 3.572-18.904 4.288a88.077 88.077 0 0 1-8.808.54c.139.027.286.02.426.062.434.124.86.309 1.261.558l73.613 46.182a53.455 53.455 0 0 0 6.011 3.066c6.488 2.828 13.417 4.319 20.365 4.319 10.878 0 21.383-3.528 30.396-10.2 18.358-13.611 25.527-36.403 18.264-58.071Z\"/><path d=\"M41.69 133.009c12.712-8.598 28.39-10.996 42.97-6.628l139.959 42.068 139.96-42.068c14.604-4.368 30.259-1.97 42.975 6.628 6.753 4.565 12.145 10.481 15.918 17.278-3.773-6.825-9.178-12.765-15.956-17.346-12.716-8.598-28.382-11.015-42.974-6.63l-55.695 16.743-4.569 1.372-13.63 4.097-4.569 1.374-.012.004-61.479 18.48-61.493-18.484-4.572-1.374-13.627-4.097-4.572-1.372-.013-.005-55.681-16.738c-14.594-4.385-30.247-1.968-42.976 6.63-13.524 9.144-21.594 23.693-22.128 39.912-.012.381.056.746.05 1.125.006-.352-.032-.696-.018-1.051.54-16.225 8.609-30.774 22.133-39.918Zm-20.13 56.188a50.708 50.708 0 0 0 1.814 5.136 50.368 50.368 0 0 1-1.907-5.588c.04.148.05.304.094.452Z\"/><path d=\"M179.631 315.701 52.512 195.876c-6.156-5.808-9.398-13.699-9.113-22.215.299-8.94 4.672-16.904 12.001-21.86 4.436-3.001 9.55-4.585 14.779-4.585 2.492 0 4.976.366 7.368 1.086l146.383 43.995.689.205 147.079-44.2c7.454-2.266 15.524-.981 22.14 3.499 7.33 4.956 11.704 12.92 12.001 21.867.285 8.516-2.957 16.405-9.113 22.208L269.607 315.701c-25.637 24.165-64.313 24.165-89.976 0Zm243.841-165.413c-3.773-6.798-9.165-12.714-15.918-17.279-12.716-8.597-28.371-10.996-42.976-6.628l-139.959 42.068L84.66 126.381c-14.58-4.368-30.26-1.969-42.969 6.628-13.524 9.144-21.593 23.693-22.133 39.919-.014.354.024.698.018 1.049a52.913 52.913 0 0 0 .562 8.363c.32 2.17.74 4.316 1.329 6.405a50.178 50.178 0 0 0 1.908 5.588c.083.204.195.393.283.595.297.689.645 1.357.972 2.034a51.15 51.15 0 0 0 1.86 3.526c.41.704.838 1.396 1.282 2.081a51.854 51.854 0 0 0 2.339 3.284c.467.608.91 1.225 1.408 1.815a53.505 53.505 0 0 0 3.83 4.106c.167.163.307.342.478.502L97.6 270.504l3.82 3.602 11.399 10.746 3.824 3.602 46.303 43.647c6.373 6.009 13.433 11.005 20.974 14.903 2.107 1.089 4.268 2.041 6.443 2.957l.012.004c1.848.779 3.731 1.449 5.625 2.1 6.119 2.101 12.436 3.575 18.894 4.295 2.917.324 5.856.514 8.812.546.305.003.609.043.913.043.292 0 .577-.039.867-.041a88.696 88.696 0 0 0 8.809-.54c6.46-.716 12.777-2.19 18.903-4.288 1.894-.651 3.78-1.32 5.632-2.098a91.86 91.86 0 0 0 27.464-17.881l46.24-43.588.014-.012 3.822-3.603 11.398-10.745 3.824-3.605 61.82-58.272c10.995-10.356 16.772-24.334 16.27-39.348-.268-8.123-2.427-15.826-6.21-22.64Zm291.963 78.932H589.106v-62.584h126.329v62.584ZM539.432 124.185v232.526h49.674v-85.039h140.356l35.637-34.241v-79.006l-35.637-34.24h-190.03Zm456.451 103.683H869.554v-61.232h126.329v61.232Zm14.027 42.443 35.65-34.24v-77.646l-35.65-34.24H819.88v232.526h49.674v-86.4h84.821l46.905 86.4h52.2l-47.26-86.4h3.69Zm287.23 42.597h-141.49V167.999h141.49v144.909Zm-155.51-188.723-35.65 34.24v164.046l35.65 34.24h169.54l35.65-34.24V158.425l-35.65-34.24h-169.54Zm444.01 97.578h-125.56v-55.462h159.77v-42.116h-209.44v232.526h49.67v-93.178h125.56v-41.77Zm79.11 134.948h49.68V124.185h-49.68v232.526Zm305.1-43.803h-139.02V167.999h139.02v144.909Zm-188.69-188.723v232.526h202.72l35.64-34.24V158.425l-35.64-34.24h-202.72Z\"/></g></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16etfwe\",\"data-framer-name\":\"Frame 427318652\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/profid-theprofid/30min\",motionChild:true,nodeId:\"RIgXwn3cl\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-2zbkt4 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Frame 427318279\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, rgb(86, 63, 255))\"},children:\"Contact us\"})}),className:\"framer-tc9723\",\"data-framer-name\":\"Talk to Sales\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://dashboard.theprofid.com/\",motionChild:true,nodeId:\"hyGxnPsNo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1o5h1lm framer-lux5qc\",\"data-framer-name\":\"Frame 427318561\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Customer login\"})}),className:\"framer-1l83g29\",\"data-framer-name\":\"Customer login\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-axqyob\",\"data-framer-name\":\"Frame 427318563\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Background check\"})}),className:\"framer-ie2hou\",\"data-framer-name\":\"Background check\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qf2gla\",\"data-framer-name\":\"Frame 427318655\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e2i5vh\",\"data-framer-name\":\"Frame 427318562\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"#perfect\",motionChild:true,nodeId:\"QRg_TORrP\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"Perfect solution\"})})})}),className:\"framer-1jkoddx\",\"data-framer-name\":\"Perfect solution\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"#benefits2\",motionChild:true,nodeId:\"Nux2UimtT\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"Benefits\"})})})}),className:\"framer-127en8n\",\"data-framer-name\":\"Benefits\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"#how-it-works1\",motionChild:true,nodeId:\"qWCNn1tdS\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"How it works\"})})})}),className:\"framer-savbe1\",\"data-framer-name\":\"How it works\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d1bpj8\",\"data-framer-name\":\"Frame 427318563\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"#tariffs\",motionChild:true,nodeId:\"m52ZaZZ3w\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"Pricing\"})})})}),className:\"framer-8rgozd\",\"data-framer-name\":\"Tariffs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"#faq1\",motionChild:true,nodeId:\"vRaCWOA90\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"FAQ\"})})})}),className:\"framer-16s1p31\",\"data-framer-name\":\"FAQ\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bzrz3j\",\"data-framer-name\":\"Line 85\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:352,svg:'<svg width=\"352\" height=\"4\" viewBox=\"-1 -1 352 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.1\" y1=\"0.789062\" x2=\"350\" y2=\"0.789062\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xo0ef\",\"data-framer-name\":\"Frame 427318656\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"San Diego, California\"})})}),className:\"framer-2518gu\",\"data-framer-name\":\"San Diego Spaces Makers Quarter 845 15th StreetCalifornia, 92101\",fonts:[\"Inter-Medium\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"profid@theprofid.com\"})}),className:\"framer-rw3ov8\",\"data-framer-name\":\"Partners@epasscheck.com\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"(650) 446-7717\"})}),className:\"framer-qr5ucv\",\"data-framer-name\":\"(747)2857444\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3au4in\",\"data-framer-name\":\"Line 85\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:352,svg:'<svg width=\"352\" height=\"4\" viewBox=\"-1 -1 352 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.1\" y1=\"0.789062\" x2=\"350\" y2=\"0.789062\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cbtfmv\",\"data-framer-name\":\"Frame 427318659\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lubo1\",\"data-framer-name\":\"Frame 427318657\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/1NIXalueY9-25VK8XK1XZ-tUak49XF34V/view?usp=sharing\",motionChild:true,nodeId:\"fRSlmsit5\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"Privacy\"})})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/1NIXalueY9-25VK8XK1XZ-tUak49XF34V/view?usp=sharing\",motionChild:true,nodeId:\"fRSlmsit5\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"Policy\"})})})]}),className:\"framer-ciskgh\",\"data-framer-name\":\"Privacy Policy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/1T3tSN5TqyT0MxYNNwWnCs37DmG_lh6Ib/view?usp=sharing\",motionChild:true,nodeId:\"t9O3dERFI\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"Terms of\"})})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/1T3tSN5TqyT0MxYNNwWnCs37DmG_lh6Ib/view?usp=sharing\",motionChild:true,nodeId:\"t9O3dERFI\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"service\"})})})]}),className:\"framer-xwge6p\",\"data-framer-name\":\"Terms of service\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/1rKDaHrdhdzf-L4307GWxkLjGD-DxA1SN/view?usp=sharing\",motionChild:true,nodeId:\"j8FDakyjL\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"Customer\"})})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/1rKDaHrdhdzf-L4307GWxkLjGD-DxA1SN/view?usp=sharing\",motionChild:true,nodeId:\"j8FDakyjL\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"agreement\"})})})]}),className:\"framer-23ij5w\",\"data-framer-name\":\"Customer agreement\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/1o8hYOF-fyg-zfwOz-IRrQKoNH741RI5D/view?usp=sharing\",motionChild:true,nodeId:\"QzGjekLZe\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"Cookie\"})})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/1o8hYOF-fyg-zfwOz-IRrQKoNH741RI5D/view?usp=sharing\",motionChild:true,nodeId:\"QzGjekLZe\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"Policy\"})})})]}),className:\"framer-1jg0wcs\",\"data-framer-name\":\"Customer agreement\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mhprw4\",\"data-framer-name\":\"Frame 427318658\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1menv9k\",\"data-framer-name\":\"Mask group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ajpxsq\",\"data-framer-name\":\"image 4\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T0lvaDWzn:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:45,intrinsicWidth:64,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+21470.3+40+0+0+906.9+0+48.8+0),pixelHeight:45,pixelWidth:64,src:\"https://framerusercontent.com/images/8CgifXXPTnl2IQYIbhN4vsrfoPg.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:45,intrinsicWidth:64,pixelHeight:45,pixelWidth:64,src:\"https://framerusercontent.com/images/8CgifXXPTnl2IQYIbhN4vsrfoPg.png\"},className:\"framer-6gd7b5\",\"data-framer-name\":\"Mask_group\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\\xa9 2025 PROFID. All rights reserved.\"})}),className:\"framer-1e52ohg\",\"data-framer-name\":\"\\xa9 2024 EPASS. Allrights reserved.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qdj8fk hidden-tf1r54 hidden-l241wy\",\"data-border\":true,\"data-framer-name\":\"Frame 427318280\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pvq070\",\"data-border\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dggplw\",\"data-framer-name\":\"Frame 427318282\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":o3pJr7HUI\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"D6ilx3091\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-n1aigx framer-lux5qc\",\"data-framer-name\":\"g10\",fill:\"black\",intrinsicHeight:430,intrinsicWidth:2039,svg:'<svg width=\"2039\" height=\"430\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><mask id=\"a\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"2039\" height=\"430\"><path d=\"M.627 0H2038.42v429.992H.627V0Z\" fill=\"#fff\"/></mask><g mask=\"url(#a)\" fill=\"#563FFF\"><path d=\"M227.173 357.527a4.96 4.96 0 0 0-1.262-.558c.43.124.848.306 1.243.552l73.627 46.188a53.524 53.524 0 0 0 6.016 3.066 53.54 53.54 0 0 1-6.011-3.066l-73.613-46.182Zm-113.937 29.008c7.349 2.696 15.388 1.934 22.6-2.351l54.539-34.219c-.003-.001-.01-.002-.012-.004l-54.54 34.216c-7.203 4.279-15.242 5.04-22.587 2.358Zm55.095-327.022c8.268-24.668 30.352-40.608 56.257-40.608 8.088 0 15.807 1.556 22.846 4.444-7.046-2.893-14.767-4.45-22.864-4.45-25.899 0-47.976 15.94-56.251 40.607l-28.008 83.543.012.004 28.008-83.54Zm-94.977 283.31 24.243-72.312-.012-.01-24.243 72.316c-6.921 20.63-.628 42.185 15.821 55.953-16.44-13.779-22.726-35.328-15.809-55.947Zm269.631 39.87c-6.721 4.989-14.599 6.566-22.1 4.677 7.508 1.892 15.391.316 22.112-4.677 7.809-5.778 15.145-17.842 10.127-32.819l-20.575-61.372-.016.012 20.572 61.36c5.019 14.971-2.312 27.035-10.12 32.819ZM94.252 402.567c14.085 9.218 31.066 10.941 46.557 4.784-15.481 6.141-32.465 4.421-46.557-4.784ZM238.954 44.876c7.98 3.504 15.36 10.305 19.173 21.681l27.94 83.344.012-.005-27.939-83.332c-3.817-11.384-11.201-18.186-19.186-21.688Zm-76.021 287.219c6.377 6.012 13.443 11.01 20.988 14.909-7.541-3.899-14.601-8.895-20.976-14.903l-46.301-43.646-.004.006 46.293 43.634Z\"/><path d=\"m97.6 270.503-61.773-58.228c-.171-.16-.311-.338-.479-.501.165.16.299.343.467.501l61.769 58.226.013.01.003-.008Zm183.239-210.99c-5.687-16.964-17.907-29.8-33.405-36.164-7.039-2.888-14.758-4.444-22.846-4.444-25.904 0-47.989 15.94-56.257 40.608l-28.007 83.54 4.572 1.373 13.626 4.098 4.573 1.372 27.936-83.332c6.105-18.208 21.339-24.699 33.557-24.699 4.579 0 9.579.912 14.366 3.01 7.985 3.503 15.369 10.305 19.186 21.689l27.939 83.332 4.569-1.372 13.63-4.098 4.569-1.373-28.008-83.54Zm-65.945 296.846c-6.457-.718-12.774-2.193-18.894-4.294-1.895-.651-3.776-1.322-5.624-2.099l-54.54 34.217c-7.212 4.287-15.251 5.048-22.6 2.352-2.451-.898-4.823-2.18-7.063-3.842-7.81-5.778-15.139-17.835-10.12-32.819l20.587-61.413.004-.007-3.824-3.603-11.399-10.745-3.821-3.603-.003.008-24.243 72.312c-6.917 20.618-.63 42.168 15.81 55.947.833.697 1.565 1.469 2.448 2.124.85.631 1.764 1.101 2.64 1.672 14.092 9.205 31.076 10.927 46.557 4.784 2.655-1.053 5.271-2.279 7.811-3.791l73.384-46.032c.532-.332 1.112-.512 1.702-.621a88.141 88.141 0 0 1-8.812-.547Zm160.928-13.536-24.23-72.274-3.823 3.604-11.4 10.745-3.82 3.604 20.575 61.372c5.018 14.977-2.318 27.041-10.127 32.819-6.721 4.993-14.604 6.569-22.112 4.677-.227-.056-.447-.157-.671-.221-1.018-.287-2.034-.594-3.034-1.008a28.746 28.746 0 0 1-3.603-1.808l-54.748-34.35c-1.851.776-3.736 1.446-5.631 2.096-6.125 2.1-12.442 3.572-18.904 4.288a88.077 88.077 0 0 1-8.808.54c.139.027.286.02.426.062.434.124.86.309 1.261.558l73.613 46.182a53.455 53.455 0 0 0 6.011 3.066c6.488 2.828 13.417 4.319 20.365 4.319 10.878 0 21.383-3.528 30.396-10.2 18.358-13.611 25.527-36.403 18.264-58.071Z\"/><path d=\"M41.69 133.009c12.712-8.598 28.39-10.996 42.97-6.628l139.959 42.068 139.96-42.068c14.604-4.368 30.259-1.97 42.975 6.628 6.753 4.565 12.145 10.481 15.918 17.278-3.773-6.825-9.178-12.765-15.956-17.346-12.716-8.598-28.382-11.015-42.974-6.63l-55.695 16.743-4.569 1.372-13.63 4.097-4.569 1.374-.012.004-61.479 18.48-61.493-18.484-4.572-1.374-13.627-4.097-4.572-1.372-.013-.005-55.681-16.738c-14.594-4.385-30.247-1.968-42.976 6.63-13.524 9.144-21.594 23.693-22.128 39.912-.012.381.056.746.05 1.125.006-.352-.032-.696-.018-1.051.54-16.225 8.609-30.774 22.133-39.918Zm-20.13 56.188a50.708 50.708 0 0 0 1.814 5.136 50.368 50.368 0 0 1-1.907-5.588c.04.148.05.304.094.452Z\"/><path d=\"M179.631 315.701 52.512 195.876c-6.156-5.808-9.398-13.699-9.113-22.215.299-8.94 4.672-16.904 12.001-21.86 4.436-3.001 9.55-4.585 14.779-4.585 2.492 0 4.976.366 7.368 1.086l146.383 43.995.689.205 147.079-44.2c7.454-2.266 15.524-.981 22.14 3.499 7.33 4.956 11.704 12.92 12.001 21.867.285 8.516-2.957 16.405-9.113 22.208L269.607 315.701c-25.637 24.165-64.313 24.165-89.976 0Zm243.841-165.413c-3.773-6.798-9.165-12.714-15.918-17.279-12.716-8.597-28.371-10.996-42.976-6.628l-139.959 42.068L84.66 126.381c-14.58-4.368-30.26-1.969-42.969 6.628-13.524 9.144-21.593 23.693-22.133 39.919-.014.354.024.698.018 1.049a52.913 52.913 0 0 0 .562 8.363c.32 2.17.74 4.316 1.329 6.405a50.178 50.178 0 0 0 1.908 5.588c.083.204.195.393.283.595.297.689.645 1.357.972 2.034a51.15 51.15 0 0 0 1.86 3.526c.41.704.838 1.396 1.282 2.081a51.854 51.854 0 0 0 2.339 3.284c.467.608.91 1.225 1.408 1.815a53.505 53.505 0 0 0 3.83 4.106c.167.163.307.342.478.502L97.6 270.504l3.82 3.602 11.399 10.746 3.824 3.602 46.303 43.647c6.373 6.009 13.433 11.005 20.974 14.903 2.107 1.089 4.268 2.041 6.443 2.957l.012.004c1.848.779 3.731 1.449 5.625 2.1 6.119 2.101 12.436 3.575 18.894 4.295 2.917.324 5.856.514 8.812.546.305.003.609.043.913.043.292 0 .577-.039.867-.041a88.696 88.696 0 0 0 8.809-.54c6.46-.716 12.777-2.19 18.903-4.288 1.894-.651 3.78-1.32 5.632-2.098a91.86 91.86 0 0 0 27.464-17.881l46.24-43.588.014-.012 3.822-3.603 11.398-10.745 3.824-3.605 61.82-58.272c10.995-10.356 16.772-24.334 16.27-39.348-.268-8.123-2.427-15.826-6.21-22.64Zm291.963 78.932H589.106v-62.584h126.329v62.584ZM539.432 124.185v232.526h49.674v-85.039h140.356l35.637-34.241v-79.006l-35.637-34.24h-190.03Zm456.451 103.683H869.554v-61.232h126.329v61.232Zm14.027 42.443 35.65-34.24v-77.646l-35.65-34.24H819.88v232.526h49.674v-86.4h84.821l46.905 86.4h52.2l-47.26-86.4h3.69Zm287.23 42.597h-141.49V167.999h141.49v144.909Zm-155.51-188.723-35.65 34.24v164.046l35.65 34.24h169.54l35.65-34.24V158.425l-35.65-34.24h-169.54Zm444.01 97.578h-125.56v-55.462h159.77v-42.116h-209.44v232.526h49.67v-93.178h125.56v-41.77Zm79.11 134.948h49.68V124.185h-49.68v232.526Zm305.1-43.803h-139.02V167.999h139.02v144.909Zm-188.69-188.723v232.526h202.72l35.64-34.24V158.425l-35.64-34.24h-202.72Z\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q9e3hx\",\"data-framer-name\":\"Frame 427318281\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(Link,{href:{hash:\":YPHru_BKr\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"dOWLpwuzZ\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5q339h\",\"data-styles-preset\":\"UvcmRHRwk\",children:\"Perfect solution\"})})})}),className:\"framer-14k2kut\",\"data-framer-name\":\"Perfect solution\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(Link,{href:{hash:\":R8Y0GVRUg\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"T7mlEQDeD\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5q339h\",\"data-styles-preset\":\"UvcmRHRwk\",children:\"Benefits\"})})})}),className:\"framer-1gfc89x\",\"data-framer-name\":\"Benefits\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(Link,{href:{hash:\":KXu9yEgf8\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"ug8L_uSRV\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5q339h\",\"data-styles-preset\":\"UvcmRHRwk\",children:\"How it works\"})})})}),className:\"framer-bn7ex6\",\"data-framer-name\":\"How it works\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(Link,{href:{hash:\":bsifScbPT\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"HcYW0KnYO\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5q339h\",\"data-styles-preset\":\"UvcmRHRwk\",children:\"Pricing\"})})})}),className:\"framer-8dgsw1\",\"data-framer-name\":\"Tariffs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(Link,{href:{hash:\":WTaM0kHGD\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"QNBiHIy01\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5q339h\",\"data-styles-preset\":\"UvcmRHRwk\",children:\"FAQ\"})})})}),className:\"framer-2xeoko\",\"data-framer-name\":\"FAQ\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:19.5233,children:/*#__PURE__*/_jsx(Container,{className:\"framer-on9lgk-container\",nodeId:\"UzvdJnPh4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(UserComponent1,{gMaUiMtqo:\"https://dashboard.theprofid.com\",height:\"100%\",id:\"UzvdJnPh4\",layoutId:\"UzvdJnPh4\",style:{height:\"100%\"},width:\"100%\"})})})]})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dz6m35\",\"data-framer-name\":\"\u041F\u0430\u0440\u0442\u043D\u0451\u0440\u044B\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vu4k7y\",\"data-framer-name\":\"Frame 427318485\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T0lvaDWzn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our partners\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our partners\"})}),className:\"framer-2nct56\",\"data-framer-name\":\"Our partners\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+977.5+32+5+-7),pixelHeight:106,pixelWidth:3152,positionX:\"center\",positionY:\"center\",sizes:\"577px\",src:\"https://framerusercontent.com/images/gzcX7UHe8P3fCodxdLELLikwcE.png\",srcSet:\"https://framerusercontent.com/images/gzcX7UHe8P3fCodxdLELLikwcE.png?scale-down-to=512 512w,https://framerusercontent.com/images/gzcX7UHe8P3fCodxdLELLikwcE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gzcX7UHe8P3fCodxdLELLikwcE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gzcX7UHe8P3fCodxdLELLikwcE.png 3152w\"}},T0lvaDWzn:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1267.5+32+-10.3+0+31.6),pixelHeight:106,pixelWidth:3152,positionX:\"center\",positionY:\"center\",sizes:\"358px\",src:\"https://framerusercontent.com/images/gzcX7UHe8P3fCodxdLELLikwcE.png\",srcSet:\"https://framerusercontent.com/images/gzcX7UHe8P3fCodxdLELLikwcE.png?scale-down-to=512 512w,https://framerusercontent.com/images/gzcX7UHe8P3fCodxdLELLikwcE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gzcX7UHe8P3fCodxdLELLikwcE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gzcX7UHe8P3fCodxdLELLikwcE.png 3152w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+810+32+0+0),pixelHeight:106,pixelWidth:3152,positionX:\"center\",positionY:\"center\",sizes:\"1038px\",src:\"https://framerusercontent.com/images/gzcX7UHe8P3fCodxdLELLikwcE.png\",srcSet:\"https://framerusercontent.com/images/gzcX7UHe8P3fCodxdLELLikwcE.png?scale-down-to=512 512w,https://framerusercontent.com/images/gzcX7UHe8P3fCodxdLELLikwcE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gzcX7UHe8P3fCodxdLELLikwcE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gzcX7UHe8P3fCodxdLELLikwcE.png 3152w\"},className:\"framer-162nl6t\",\"data-framer-name\":\"Frame 427318484\"})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ulmqoa hidden-tf1r54 hidden-l241wy\",\"data-framer-name\":\"Frame 427318475\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17gooop\",\"data-framer-name\":\"fdfd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\"},children:\"The perfect solution for different industries \"})}),className:\"framer-109q8yq\",\"data-framer-name\":\"Perfect solution for different industries\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gvzla4\",\"data-framer-name\":\"Frame 427318576\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Hire highly-qualified employees faster than the competition with PROFID\u2019s modern background check platform.\"})}),className:\"framer-1ihqh29\",\"data-framer-name\":\"Hire highly-qualified employees faster than the competition with EPASS\u2019s modern background check platform.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"It offers an aggregated database encompassing all pertinent information, enabling companies across all industries to effectively assess candidates.\"})}),className:\"framer-1crbn1l\",\"data-framer-name\":\"It offers an aggregated database encompassing all pertinent information, enabling companies across all industries to effectively assess candidates.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Staffing\"})}),className:\"framer-crfqn9\",\"data-framer-name\":\"Staffing\",fonts:[\"Inter-Medium\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Avoid background check delays. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Detect risks: criminal history, data falsification.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Improve hiring quality.\"})]}),className:\"framer-1iwdthj\",\"data-framer-name\":\"Avoid background check delays Detect risks: criminal history, data falsification Improve hiring quality\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Real Estate\"})}),className:\"framer-18bmbdu\",\"data-framer-name\":\"Real Estate\",fonts:[\"Inter-Medium\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Increase Tenant reliability.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Verify tenants\u2019 financial capabilities to pay. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Attract more tenants by providing a secure and trustworthy rental environment.\"})]}),className:\"framer-d6fhk9\",\"data-framer-name\":\"Increase Tenant reliability Verify tenants\u2019 financial capabilities to pay Attract more tenants by providing a secure and trustworthy rental environment\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Automotive\"})}),className:\"framer-jqa3z0\",\"data-framer-name\":\"Automative\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Fast screening of customers and staff.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Identify fraudulent applications and reduces the risk of vehicle theft.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Build streamlined, efficient workflows.\"})]}),className:\"framer-m087cq\",\"data-framer-name\":\"Fast screening of customers and staff Identify fraudulent applications and reduces the risk of vehicle theft. Build streamlined, efficient workflows\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Freelance\"})}),className:\"framer-1sq6laf\",\"data-framer-name\":\"Freelance\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Enhance client satisfaction by working with verified freelancers. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Reduce fraud by identifying fraudulent indicators.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Quick account activation.\"})]}),className:\"framer-j1ltwu\",\"data-framer-name\":\"Enhance client satisfaction by working with verified freelancers. Reduce fraud Detecting fraudulent signs Quick account activation\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Overlay,{children:overlay4=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+910+70+0+696-313.7969,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-5kmhnx-container\",id:\"5kmhnx\",nodeId:\"KQzxnt38Y\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(UserComponent,{height:\"100%\",id:\"KQzxnt38Y\",k9W7gMjUi:k9W7gMjUi3bnx0g({overlay:overlay4}),layoutId:\"KQzxnt38Y\",MY6MPKVVr:\"Get in touch\",uv92xjzJ4:\"0px 2px 5px 0px rgba(0, 0, 0, 0.16)\",variant:\"JS4ai7u1v\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay4.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-la24q6\"),\"data-framer-portal-id\":\"5kmhnx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay4.hide()},\"vfxStGMTU\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"474px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-cd8zk2-container\"),\"data-framer-portal-id\":\"5kmhnx\",inComponentSlot:true,nodeId:\"hfMa4yHDq\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Form,{height:\"100%\",id:\"hfMa4yHDq\",layoutId:\"hfMa4yHDq\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+910+70+0+696-313.7969,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4u5ldw-container\",nodeId:\"FoRkCGEvy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(UserComponent,{height:\"100%\",id:\"FoRkCGEvy\",layoutId:\"FoRkCGEvy\",MY6MPKVVr:\"Contact us\",OyPYrAwsq:\"https://calendly.com/profid-theprofid/30min\",uv92xjzJ4:\"0px 2px 5px 0px rgba(0, 0, 0, 0.16)\",variant:\"Pz37dXdKS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-zin0fj\",\"data-framer-name\":\"Frame_427318716\",fill:\"black\",intrinsicHeight:142,intrinsicWidth:172,svg:'<svg width=\"172\" height=\"142\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M80.225 34.208v23.135h14.289V34.208c1.134-5.896 7.348-17.69 23.134-17.69 15.786 0 21.547 12.7 22.454 19.051v21.774h14.289V34.208c-1.134-10.886-10.07-32.66-36.743-32.66-26.672 0-36.062 21.774-37.423 32.66Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.361\"/><rect x=\"55.73\" y=\"55.982\" width=\"115.671\" height=\"85.107\" rx=\"11.35\" fill=\"url(#a)\"/><path d=\"M36.679 75.033c.544 3.81 3.856 6.124 5.443 6.805.907.453 2.722-.136 2.722-6.124 0-7.485-2.042-12.928 6.123-12.928 1.134 0 3.81.408 5.444 2.041.453-.68 1.905-2.041 4.082-2.041 2.722 0 6.804 2.041 7.485 5.443-.227-4.536-3.538-13.608-14.97-13.608-11.43 0-15.649 7.258-16.33 10.887v9.525Z\" fill=\"#000\"/><path d=\"M98.597 140.353c-1.815-10.886-10.887-32.66-32.66-32.66a5.357 5.357 0 0 1-2.722-1.4c2.948 6.591 8.71 22.629 8.165 34.06h27.217Z\" fill=\"#fff\"/><path d=\"M42.122 81.838c-1.587-.68-4.899-2.994-5.443-6.805-.68-.907-2.314-1.905-3.402 1.361-1.361 4.083 0 7.485 2.721 9.526 2.178 1.633 4.536 1.134 5.444.68v14.97c0 .827-.179 1.988-.68 3.078a5.628 5.628 0 0 1-1.127 1.645c-.759 4.096-2.276 16.642-2.276 34.06h34.02c.545-11.431-5.216-27.469-8.164-34.06-.77-.751-1.361-1.84-1.361-3.362 0-4.083 0-5.444 1.36-6.805 1.362-1.36 4.764-2.04 4.764-9.526V68.23c-.68-3.403-4.763-5.444-7.485-5.444-2.177 0-3.629 1.36-4.082 2.041-1.633-1.633-4.31-2.041-5.444-2.041-8.165 0-6.123 5.443-6.123 12.928 0 5.987-1.815 6.577-2.722 6.124Z\" fill=\"#fff\"/><path d=\"M35.998 107.693c-5.443 0-34.701-2.041-34.701 32.66h36.062c0-17.418 1.517-29.964 2.276-34.06-.83.826-2.003 1.4-3.637 1.4Z\" fill=\"#fff\"/><path d=\"M36.679 75.033c.544 3.81 3.856 6.124 5.443 6.805.907.453 2.722-.136 2.722-6.124 0-7.485-2.042-12.928 6.123-12.928 1.134 0 3.81.408 5.444 2.041.453-.68 1.905-2.041 4.082-2.041 2.722 0 6.804 2.041 7.485 5.443m-31.3 6.804c-.68-.907-2.313-1.905-3.401 1.361-1.361 4.083 0 7.485 2.721 9.526 2.178 1.633 4.536 1.134 5.444.68v14.97c0 .827-.179 1.988-.68 3.078m-4.083-29.615v-9.525c.68-3.63 4.899-10.887 16.33-10.887 11.43 0 14.742 9.072 14.969 13.608m-4.763 27.897c-1.361 1.361-1.361 2.722-1.361 6.805 0 1.522.592 2.611 1.36 3.362m0-10.167c1.362-1.36 4.764-2.04 4.764-9.526m-4.763 9.526c-2.041 2.042-8.301 4.899-17.01 0M67.977 86.6V68.23m0 18.37V68.23M40.76 104.647l14.29 13.933 6.804-12.928m-21.093-1.004a5.628 5.628 0 0 1-1.126 1.645m23.58 0a5.357 5.357 0 0 0 2.721 1.4c21.774 0 30.846 21.774 32.66 32.66H71.38m-8.165-34.06c2.948 6.591 8.71 22.629 8.165 34.06m0 0H37.359m2.276-34.06c-.83.826-2.003 1.4-3.637 1.4-5.443 0-34.701-2.041-34.701 32.66h36.062m2.276-34.06c-.759 4.096-2.276 16.642-2.276 34.06\" stroke=\"#000\" stroke-width=\"1.361\"/><circle cx=\"116.968\" cy=\"98.168\" r=\"17.01\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.361\"/><path d=\"m109.483 98.848 7.485 7.485 21.093-21.093\" stroke=\"#000\" stroke-width=\"1.361\"/><rect x=\"73.421\" y=\"69.59\" width=\"8.165\" height=\"5.443\" rx=\"1.361\" fill=\"#000\"/><rect x=\"85.669\" y=\"69.59\" width=\"8.165\" height=\"5.443\" rx=\"1.361\" fill=\"#000\"/><rect x=\"97.916\" y=\"69.59\" width=\"8.165\" height=\"5.443\" rx=\"1.361\" fill=\"#000\"/><path d=\"M95.875 130.147h54.433m21.093-57.835h-51.712\" stroke=\"#000\" stroke-width=\"1.361\"/><defs><linearGradient id=\"a\" x1=\"55.73\" y1=\"69.472\" x2=\"103.818\" y2=\"165.323\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8m2v8a\",\"data-framer-name\":\"Frame_427318486\",fill:\"black\",intrinsicHeight:149,intrinsicWidth:120,svg:'<svg width=\"120\" height=\"149\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"20.753\" y=\"19.876\" width=\"98.371\" height=\"118.549\" rx=\"11.35\" fill=\"url(#a)\"/><path d=\"M61.74 9.787a6.24 6.24 0 0 0-6.1 4.933l-2.727 12.723h35.312l-3.832-13.412a5.852 5.852 0 0 0-5.627-4.244H61.741Z\" fill=\"#fff\"/><path d=\"M69.938 1.59c-6.053 0-7.987 5.464-8.197 8.197h17.025c-.42-2.733-2.774-8.198-8.828-8.198Z\" fill=\"#fff\"/><path d=\"M52.913 27.443H38.409c-6.268 0-11.35 5.082-11.35 11.35v80.715c0 6.269 5.082 11.35 11.35 11.35h63.058c6.269 0 11.351-5.081 11.351-11.35V38.794c0-6.269-5.082-11.35-11.351-11.35H88.225m-35.312 0 2.726-12.724a6.24 6.24 0 0 1 6.102-4.933m-8.828 17.656h35.312m0 0-3.832-13.412a5.852 5.852 0 0 0-5.627-4.244m-17.025 0c.21-2.733 2.144-8.198 8.197-8.198 6.054 0 8.408 5.465 8.828 8.198m-17.025 0h17.025\" stroke=\"#000\" stroke-width=\"1.261\"/><path fill=\"#000\" d=\"M37.148 43.838h32.79v2.522h-32.79zm0 10.09h32.79v2.522h-32.79zm0 10.089H61.11v2.522H37.148z\"/><mask id=\"b\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"76\" y=\"36\" width=\"32\" height=\"32\"><circle cx=\"92.205\" cy=\"52.036\" r=\"15.134\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.261\"/></mask><g mask=\"url(#b)\" stroke=\"#000\" stroke-width=\"1.261\"><circle cx=\"92.205\" cy=\"52.036\" r=\"15.134\" fill=\"#fff\"/><path d=\"M95.989 46.36v3.784a4.414 4.414 0 0 1-8.829 0v-3.783a4.414 4.414 0 0 1 8.829 0ZM78.963 67.8c0-4.203 2.522-12.611 12.611-12.611 10.09 0 12.192 8.407 11.981 12.611\"/></g><rect x=\"84.638\" y=\"75.998\" width=\"15.134\" height=\"15.134\" rx=\"3.153\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.261\"/><rect x=\"84.638\" y=\"103.113\" width=\"15.134\" height=\"15.134\" rx=\"3.153\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.261\"/><path d=\"m88.422 81.043 5.675 5.675 11.981-11.981m-17.656 33.42 5.675 5.676 11.981-11.981\" stroke=\"#000\" stroke-width=\"1.261\"/><circle cx=\"53.739\" cy=\"95.546\" r=\"20.809\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.261\"/><rect x=\"51.217\" y=\"82.934\" width=\"5.045\" height=\"5.045\" rx=\"1.261\" fill=\"#000\"/><path d=\"M43.28 88.654a1.261 1.261 0 0 1 0-1.783l1.785-1.784a1.261 1.261 0 0 1 1.783 0l2.675 2.675-3.567 3.568-2.675-2.676Zm20.486 0a1.261 1.261 0 0 0 0-1.783l-1.784-1.784a1.261 1.261 0 0 0-1.784 0l-2.675 2.675 3.567 3.568 2.675-2.676Zm0 13.351a1.26 1.26 0 0 1 0 1.783l-1.784 1.784a1.262 1.262 0 0 1-1.784 0l-2.675-2.676 3.567-3.567 2.675 2.676Zm-20.486 0a1.26 1.26 0 0 0 0 1.783l1.785 1.784a1.262 1.262 0 0 0 1.783 0l2.675-2.676-3.567-3.567-2.675 2.676Z\" fill=\"#000\"/><rect x=\"51.217\" y=\"103.113\" width=\"5.045\" height=\"5.045\" rx=\"1.261\" fill=\"#000\"/><rect x=\"61.307\" y=\"93.024\" width=\"5.045\" height=\"5.045\" rx=\"1.261\" fill=\"#000\"/><rect x=\"41.128\" y=\"93.024\" width=\"5.045\" height=\"5.045\" rx=\"1.261\" fill=\"#000\"/><circle cx=\"53.74\" cy=\"95.546\" r=\"8.198\" stroke=\"#000\" stroke-width=\"1.261\"/><circle cx=\"53.74\" cy=\"95.546\" r=\"2.522\" fill=\"#000\"/><path fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.261\" d=\"m36.345 108.483 4.7 4.7-6.242 6.243-4.7-4.7z\"/><rect x=\"26.822\" y=\"111.572\" width=\"15.255\" height=\"35.859\" rx=\"3.153\" transform=\"rotate(45 26.822 111.572)\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.261\"/><defs><linearGradient id=\"a\" x1=\"20.753\" y1=\"38.667\" x2=\"102.729\" y2=\"138.425\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-c2o4be\",\"data-framer-name\":\"Frame_427318718\",fill:\"black\",intrinsicHeight:123,intrinsicWidth:157,svg:'<svg width=\"157\" height=\"123\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.01 93.475c-.863-12.301 15.123-14.89 26.1-14.635 2.52.058 4.939-1.125 6.347-3.217 8.14-12.093 14.041-15.931 16.099-16.305h41.21c4.108 0 11.902 13.094 15.285 19.64h5.87c6.261 0 9.049 8.296 9.66 12.443.718 4.898.389 8.68-.446 11.538-1.306 4.461-5.733 2.259-7.727-1.94-2.303-4.85-6.854-9.232-15.183-9.232-9.983 0-14.748 6.295-16.702 12.147-1.148 3.436-4.051 6.395-7.674 6.395h-24.74c-3.624 0-6.526-2.956-7.648-6.401-1.904-5.85-6.54-12.14-16.24-12.14-10.15 0-14.89 6.886-16.743 12.95-.958 3.134-3.492 4.807-4.838 1.819-1.153-2.559-2.183-6.67-2.63-13.062Zm51.603-29.033h14.185v14.639H39.773c2.12-3.335 7.655-10.93 12.84-14.639Zm21.033 14.639V64.442h12.35c2.74 0 4.484 1.627 5.014 2.44l7.704 12.198H73.646Z\" fill=\"url(#a)\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.01 93.475c-.863-12.301 15.123-14.89 26.1-14.635 2.52.058 4.939-1.125 6.347-3.217 8.14-12.093 14.041-15.931 16.099-16.305h41.21c4.108 0 11.902 13.094 15.285 19.64h5.87c6.261 0 9.049 8.296 9.66 12.443.718 4.898.389 8.68-.446 11.538-1.306 4.461-5.733 2.259-7.727-1.94-2.303-4.85-6.854-9.232-15.183-9.232-9.983 0-14.748 6.295-16.702 12.147-1.148 3.436-4.051 6.395-7.674 6.395h-24.74c-3.624 0-6.526-2.956-7.648-6.401-1.904-5.85-6.54-12.14-16.24-12.14-10.15 0-14.89 6.886-16.743 12.95-.958 3.134-3.492 4.807-4.838 1.819-1.153-2.559-2.183-6.67-2.63-13.062Zm51.603-29.033h14.185v14.639H39.773c2.12-3.335 7.655-10.93 12.84-14.639Zm21.033 14.639V64.442h12.35c2.74 0 4.484 1.627 5.014 2.44l7.704 12.198H73.646Z\" fill=\"url(#b)\"/><path d=\"M73.646 64.442v14.639h25.068l-7.704-12.2c-.53-.813-2.274-2.439-5.014-2.439h-12.35Z\" fill=\"url(#c)\"/><path d=\"M73.646 64.442v14.639h25.068l-7.704-12.2c-.53-.813-2.274-2.439-5.014-2.439h-12.35Z\" fill=\"#fff\"/><path d=\"M52.613 64.442h14.185v14.639H39.773c2.12-3.335 7.655-10.93 12.84-14.639Z\" fill=\"url(#d)\"/><path d=\"M52.613 64.442h14.185v14.639H39.773c2.12-3.335 7.655-10.93 12.84-14.639Z\" fill=\"#fff\"/><circle cx=\"24.976\" cy=\"110.318\" r=\"11\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"2\"/><circle cx=\"97.976\" cy=\"110.318\" r=\"11\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"2\"/><rect x=\"124.999\" y=\".318\" width=\"10.511\" height=\"10.511\" rx=\"2.628\" fill=\"#000\"/><path d=\"M108.463 12.237a2.628 2.628 0 0 1 0-3.716l3.716-3.717a2.629 2.629 0 0 1 3.717 0l5.574 5.575-7.433 7.432-5.574-5.574Zm42.681 0a2.628 2.628 0 0 0 0-3.716l-3.717-3.717a2.627 2.627 0 0 0-3.716 0l-5.574 5.575 7.432 7.432 5.575-5.574Zm0 27.817a2.628 2.628 0 0 1 0 3.716l-3.717 3.716a2.627 2.627 0 0 1-3.716 0l-5.574-5.574 7.432-7.432 5.575 5.574Zm-42.681 0a2.628 2.628 0 0 0 0 3.716l3.716 3.716a2.629 2.629 0 0 0 3.717 0l5.574-5.574-7.433-7.432-5.574 5.574Z\" fill=\"#000\"/><rect x=\"124.999\" y=\"42.363\" width=\"10.511\" height=\"10.511\" rx=\"2.628\" fill=\"#000\"/><rect x=\"146.021\" y=\"21.341\" width=\"10.511\" height=\"10.511\" rx=\"2.628\" fill=\"#000\"/><rect x=\"103.976\" y=\"21.341\" width=\"10.511\" height=\"10.511\" rx=\"2.628\" fill=\"#000\"/><circle cx=\"130.255\" cy=\"26.596\" r=\"17.081\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"2.628\"/><circle cx=\"130.255\" cy=\"26.596\" r=\"5.256\" fill=\"#000\"/><circle cx=\"24.976\" cy=\"110.318\" r=\"6\" fill=\"#000\"/><circle cx=\"97.976\" cy=\"110.318\" r=\"6\" fill=\"#000\"/><defs><linearGradient id=\"a\" x1=\".976\" y1=\"67.402\" x2=\"20.062\" y2=\"133.813\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#0B4DEB\"/><stop offset=\"1\" stop-color=\"#76BCF3\"/></linearGradient><linearGradient id=\"b\" x1=\".976\" y1=\"67.402\" x2=\"20.062\" y2=\"133.813\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient><linearGradient id=\"c\" x1=\".976\" y1=\"67.402\" x2=\"20.062\" y2=\"133.813\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#0B4DEB\"/><stop offset=\"1\" stop-color=\"#76BCF3\"/></linearGradient><linearGradient id=\"d\" x1=\".976\" y1=\"67.402\" x2=\"20.062\" y2=\"133.813\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#0B4DEB\"/><stop offset=\"1\" stop-color=\"#76BCF3\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12m7wup\",\"data-framer-name\":\"Frame_427318719\",fill:\"black\",intrinsicHeight:122,intrinsicWidth:154,svg:'<svg width=\"154\" height=\"122\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M49.886.764 22.203 28.36v92.928h90.394V.764h-62.71Z\" fill=\"url(#a)\"/><path d=\"M50.66.764V29.22H22.204\" stroke=\"#000\" stroke-width=\"1.116\"/><path d=\"M62.607 112.361V98.969h11.16v-9.486h11.717v-9.486h11.718V67.722h11.159v44.639H62.606Zm40.174-69.191v12.276l12.276-12.275h31.247c5.357 0 6.696-4.464 6.696-6.696V17.503c0-5.356-4.464-6.696-6.696-6.696h-49.66c-5.803 0-7.626 4.464-7.812 6.696v18.972c0 4.91 4.092 6.51 6.138 6.696h7.811Zm-54.682 67.541-8.928-5.046-32.07-46.87-4.199-6.139c-1.302-1.302-3.236-4.575-.558-7.253l5.022-3.348c2.678-1.786 5.952 1.488 7.254 3.348l3.759 5.58L50.331 98.41l1.137 9.858.537 4.65-3.906-2.208Z\" fill=\"#fff\"/><path d=\"M48.099 46.519h40.733M54.237 58.794h28.457m14.508 53.567h11.159v-44.64h-11.16v12.276m0 32.364H85.485m11.718 0V79.997m-11.718 32.364V89.483m0 22.878H73.766m23.436-32.364H85.484v9.486m0 0H73.766v9.486m0 13.392h-11.16V98.969h11.16m0 13.392V98.969M2.902 52.656c-1.302-1.302-3.236-4.575-.558-7.253l5.022-3.348c2.678-1.786 5.952 1.488 7.254 3.348M2.902 52.656l11.718-7.253M2.902 52.656l4.2 6.138m32.07 46.871 11.159-7.254m-11.16 7.254 8.928 5.046m-8.928-5.046-32.07-46.87m43.23 39.616 1.137 9.858m-1.137-9.858L18.379 50.982m29.72 59.729 3.906 2.208-.537-4.65m-3.369 2.442c.2-.876 1.155-2.591 3.37-2.442m-36.85-62.867 3.76 5.58M7.102 58.794l11.277-7.812m0 11.718 23.582 34.595m60.82-41.849V43.171H94.97c-2.046-.186-6.138-1.786-6.138-6.696V17.503c.186-2.232 2.009-6.696 7.812-6.696h49.66c2.232 0 6.696 1.34 6.696 6.696v18.972c0 2.232-1.339 6.696-6.696 6.696h-31.247l-12.276 12.275Z\" stroke=\"#000\" stroke-width=\"1.116\"/><path stroke=\"#000\" d=\"M115.5 24.264h13v13h-13z\"/><path d=\"M112.75 25.514 122 15.5l9.25 10.013h-18.5Z\" fill=\"#000\" stroke=\"#000\"/><defs><linearGradient id=\"a\" x1=\"22.203\" y1=\"19.868\" x2=\"106.772\" y2=\"112.887\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient></defs></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11b8uf0\",\"data-framer-name\":\"\u0412\u0442\u043E\u0440\u043E\u0439\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hfik95\",\"data-framer-name\":\"Frame 427318694\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7qh5pf\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z9mgxz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yumae0\",\"data-framer-name\":\"Frame 427318535\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{transformTemplate:transformTemplate2},T0lvaDWzn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"135%\"},children:\"User-Friendly Interface\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"135%\"},children:\"User-Friendly Interface\"})}),className:\"framer-1cx2dyo\",\"data-framer-name\":\"User-Friendly Interface\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{transformTemplate:transformTemplate1},T0lvaDWzn:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"PROFID platform features an intuitive interface and personal user dashboard, making it easy for your company to manage and track screening processes.\"})}),className:\"framer-tpmdlm\",\"data-framer-name\":\"EPASS platform features an intuitive interface and personal user dashboard, making it easy for your company to manage and track screening processes\",fonts:[\"Inter\"],verticalAlignment:\"bottom\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bprvfx\",\"data-framer-name\":\"Frame_427318714\",fill:\"black\",intrinsicHeight:161,intrinsicWidth:246,svg:'<svg width=\"246\" height=\"161\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><g clip-path=\"url(#b)\"><path fill=\"#000\" d=\"M.414-.637h283.688v13.043H.414z\"/><path fill=\"url(#c)\" d=\"M90.085 12.406h194.017v169.561H90.085z\"/><path fill=\"url(#d)\" d=\"M90.085 12.406h194.017v169.561H90.085z\"/><path fill=\"#fff\" d=\"M.414 12.406h89.672v169.561H.414z\"/><path fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.63\" d=\"M103.944 21.373h119.019v4.891H103.944zm-.001 16.304h182.604v133.692H103.943z\"/><path d=\"M119.433 47.46h68.476m-68.476 10.597h53.803m-53.803 22.825h68.476M119.433 91.48h53.803m-53.803 25.271h68.476m-68.476 10.598h53.803m-53.803 22.011h68.476m-68.476 10.597h53.803\" stroke=\"#000\" stroke-width=\"1.63\"/><circle cx=\"213.995\" cy=\"53.166\" r=\"7.337\" stroke=\"#000\" stroke-width=\"1.63\"/><circle cx=\"213.995\" cy=\"87.404\" r=\"7.337\" stroke=\"#000\" stroke-width=\"1.63\"/><circle cx=\"213.995\" cy=\"121.643\" r=\"7.337\" stroke=\"#000\" stroke-width=\"1.63\"/><circle cx=\"213.995\" cy=\"155.881\" r=\"7.337\" stroke=\"#000\" stroke-width=\"1.63\"/><circle cx=\"238.451\" cy=\"53.166\" r=\"7.337\" stroke=\"#000\" stroke-width=\"1.63\"/><circle cx=\"238.451\" cy=\"87.404\" r=\"7.337\" stroke=\"#000\" stroke-width=\"1.63\"/><circle cx=\"238.451\" cy=\"121.643\" r=\"7.337\" stroke=\"#000\" stroke-width=\"1.63\"/><circle cx=\"238.451\" cy=\"155.881\" r=\"7.337\" stroke=\"#000\" stroke-width=\"1.63\"/><path d=\"m24.87 99.632 11.413 11.413 30.162-30.163\" stroke=\"#000\" stroke-width=\"1.63\"/></g><path stroke=\"#000\" stroke-width=\"1.63\" d=\"M1.229.178h249.37v159.477H1.229z\"/></g><defs><linearGradient id=\"c\" x1=\"90.085\" y1=\"12.406\" x2=\"284.102\" y2=\"181.967\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#1351ED\"/><stop offset=\"1\" stop-color=\"#75BCF2\"/></linearGradient><linearGradient id=\"d\" x1=\"90.085\" y1=\"39.283\" x2=\"195.201\" y2=\"215.675\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.414)\" d=\"M0 0h245v161H0z\"/></clipPath><clipPath id=\"b\"><path fill=\"#fff\" d=\"M.414-.637h251V160.47h-251z\"/></clipPath></defs></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ozo82u\",\"data-framer-name\":\"Frame 427318533\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{transformTemplate:transformTemplate2},T0lvaDWzn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Fast Processing\"})}),transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Fast Processing\"})}),className:\"framer-41eibo\",\"data-framer-name\":\"Fast Processing\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{transformTemplate:transformTemplate1},T0lvaDWzn:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"PROFID prioritizes speed, delivering rapid turnaround on background checks to keep your hiring and onboarding moving forward efficiently.\"})}),className:\"framer-cftrdw\",\"data-framer-name\":\"EPASS prioritizes speed, delivering rapid turnaround on background checks to keep your hiring and onboarding moving forward efficiently.\",fonts:[\"Inter\"],verticalAlignment:\"bottom\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1nrpvda\",\"data-framer-name\":\"Ellipse 3747\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:162,intrinsicWidth:138,svg:'<svg width=\"138\" height=\"162\" viewBox=\"-1 -1 138 162\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M135.877 91.743C135.877 129.264 105.46 159.682 67.9385 159.682C30.4171 159.682 0 129.264 0 91.743C0 54.2216 30.4171 23.8045 67.9385 23.8045C105.46 23.8045 135.877 54.2216 135.877 91.743Z\" fill=\"white\"/>\\n<path d=\"M67.9385 23.8045C30.4171 23.8045 0 54.2216 0 91.743C0 129.264 30.4171 159.682 67.9385 159.682C105.46 159.682 135.877 129.264 135.877 91.743C135.877 54.2216 105.46 23.8045 67.9385 23.8045ZM67.9385 23.8045V0.681519M67.9385 0.681519H51.6769M67.9385 0.681519H84.2936M121.651 16.0417L135.02 29.4107M15.0779 16.0417L1.70889 29.4107M67.9385 59.5162V91.743L88.3559 104.03\" stroke=\"black\" stroke-width=\"1.70997\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pgi3nh\",\"data-framer-name\":\"Frame 427318580\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zsnzqg\",\"data-framer-name\":\"Frame 427318534\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T0lvaDWzn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"135%\"},children:\"Dedicated User Accounts\"})}),transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"135%\"},children:\"Dedicated User Accounts\"})}),className:\"framer-tiqm0y\",\"data-framer-name\":\"Dedicated User Accounts\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{transformTemplate:transformTemplate1},T0lvaDWzn:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"var(--token-357ffd5f-62ca-4bd1-87f7-ddf2e5d21db8, rgb(82, 94, 126))\"},children:\"Each user has their own secure account, ensuring personalized access and accountability.\"})}),className:\"framer-1egc8e4\",\"data-framer-name\":\"Each user has their own secure account, ensuring personalized access and accountability.\",fonts:[\"Inter\"],verticalAlignment:\"bottom\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1imjizw\",\"data-framer-name\":\"Frame_427318720\",fill:\"black\",intrinsicHeight:138,intrinsicWidth:247,svg:'<svg width=\"247\" height=\"138\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M100.742 98.647a9.144 9.144 0 0 1 .622-5.284 9.052 9.052 0 0 1 3.303-3.992 8.944 8.944 0 0 1 4.933-1.508h.491c2.893 0 5.668-1.159 7.714-3.222A11.046 11.046 0 0 0 121 76.863c0-2.917-1.149-5.715-3.195-7.778a10.865 10.865 0 0 0-7.714-3.222h-.927a8.948 8.948 0 0 1-4.934-1.508 9.065 9.065 0 0 1-3.303-3.992v-.44a9.146 9.146 0 0 1-.622-5.283 9.107 9.107 0 0 1 2.422-4.727l.328-.33a11.011 11.011 0 0 0 2.367-3.57 11.077 11.077 0 0 0 0-8.425 11.008 11.008 0 0 0-2.367-3.57 10.917 10.917 0 0 0-3.541-2.387 10.832 10.832 0 0 0-11.896 2.387l-.327.33a8.974 8.974 0 0 1-4.688 2.442 8.931 8.931 0 0 1-5.24-.627 9.017 9.017 0 0 1-3.958-3.33 9.13 9.13 0 0 1-1.496-4.975v-.495a11.05 11.05 0 0 0-3.195-7.778A10.864 10.864 0 0 0 61 16.363c-2.893 0-5.668 1.16-7.714 3.222a11.047 11.047 0 0 0-3.195 7.778v.935a9.127 9.127 0 0 1-1.496 4.974 9.019 9.019 0 0 1-3.959 3.331H44.2a8.933 8.933 0 0 1-5.24.627 8.975 8.975 0 0 1-4.687-2.442l-.328-.33a10.903 10.903 0 0 0-3.54-2.387 10.833 10.833 0 0 0-11.896 2.387 11.005 11.005 0 0 0-2.368 3.57 11.077 11.077 0 0 0 2.368 11.995l.327.33a9.101 9.101 0 0 1 2.422 4.727 9.145 9.145 0 0 1-.622 5.283 9.066 9.066 0 0 1-3.21 4.249 8.95 8.95 0 0 1-5.026 1.69h-.49c-2.894 0-5.669 1.16-7.715 3.223A11.046 11.046 0 0 0 1 77.303c0 2.918 1.15 5.716 3.195 7.778a10.863 10.863 0 0 0 7.714 3.222h.927a8.948 8.948 0 0 1 4.934 1.509 9.059 9.059 0 0 1 3.303 3.991 9.143 9.143 0 0 1 .622 5.283 9.102 9.102 0 0 1-2.422 4.727l-.328.33a11.003 11.003 0 0 0-2.367 3.57 11.082 11.082 0 0 0 0 8.425 11.014 11.014 0 0 0 2.367 3.57 10.888 10.888 0 0 0 3.541 2.387 10.824 10.824 0 0 0 8.355 0 10.89 10.89 0 0 0 3.541-2.387l.327-.33a8.978 8.978 0 0 1 4.688-2.442 8.936 8.936 0 0 1 5.24.627 9.013 9.013 0 0 1 4.213 3.238 9.123 9.123 0 0 1 1.677 5.067v.495c0 2.917 1.15 5.715 3.196 7.778a10.863 10.863 0 0 0 7.714 3.222 10.86 10.86 0 0 0 7.713-3.222 11.047 11.047 0 0 0 3.196-7.778v-.935a9.124 9.124 0 0 1 1.496-4.974 9.015 9.015 0 0 1 3.958-3.331 8.93 8.93 0 0 1 5.24-.627 8.977 8.977 0 0 1 4.687 2.442l.328.33a10.904 10.904 0 0 0 3.54 2.387 10.824 10.824 0 0 0 8.355 0 10.899 10.899 0 0 0 3.541-2.387 11.019 11.019 0 0 0 2.368-3.57 11.082 11.082 0 0 0 0-8.425 11.019 11.019 0 0 0-2.368-3.57l-.327-.33a9.096 9.096 0 0 1-2.422-4.726ZM61 95.013c9.941 0 18-8.126 18-18.15s-8.059-18.15-18-18.15-18 8.126-18 18.15 8.059 18.15 18 18.15Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M100.742 98.647a9.144 9.144 0 0 1 .622-5.284 9.052 9.052 0 0 1 3.303-3.992 8.944 8.944 0 0 1 4.933-1.508h.491c2.893 0 5.668-1.159 7.714-3.222A11.046 11.046 0 0 0 121 76.863c0-2.917-1.149-5.715-3.195-7.778a10.865 10.865 0 0 0-7.714-3.222h-.927a8.948 8.948 0 0 1-4.934-1.508 9.065 9.065 0 0 1-3.303-3.992v-.44a9.146 9.146 0 0 1-.622-5.283 9.107 9.107 0 0 1 2.422-4.727l.328-.33a11.011 11.011 0 0 0 2.367-3.57 11.077 11.077 0 0 0 0-8.425 11.008 11.008 0 0 0-2.367-3.57 10.917 10.917 0 0 0-3.541-2.387 10.832 10.832 0 0 0-11.896 2.387l-.327.33a8.974 8.974 0 0 1-4.688 2.442 8.931 8.931 0 0 1-5.24-.627 9.017 9.017 0 0 1-3.958-3.33 9.13 9.13 0 0 1-1.496-4.975v-.495a11.05 11.05 0 0 0-3.195-7.778A10.864 10.864 0 0 0 61 16.363c-2.893 0-5.668 1.16-7.714 3.222a11.047 11.047 0 0 0-3.195 7.778v.935a9.127 9.127 0 0 1-1.496 4.974 9.019 9.019 0 0 1-3.959 3.331H44.2a8.933 8.933 0 0 1-5.24.627 8.975 8.975 0 0 1-4.687-2.442l-.328-.33a10.903 10.903 0 0 0-3.54-2.387 10.833 10.833 0 0 0-11.896 2.387 11.005 11.005 0 0 0-2.368 3.57 11.077 11.077 0 0 0 2.368 11.995l.327.33a9.101 9.101 0 0 1 2.422 4.727 9.145 9.145 0 0 1-.622 5.283 9.066 9.066 0 0 1-3.21 4.249 8.95 8.95 0 0 1-5.026 1.69h-.49c-2.894 0-5.669 1.16-7.715 3.223A11.046 11.046 0 0 0 1 77.303c0 2.918 1.15 5.716 3.195 7.778a10.863 10.863 0 0 0 7.714 3.222h.927a8.948 8.948 0 0 1 4.934 1.509 9.059 9.059 0 0 1 3.303 3.991 9.143 9.143 0 0 1 .622 5.283 9.102 9.102 0 0 1-2.422 4.727l-.328.33a11.003 11.003 0 0 0-2.367 3.57 11.082 11.082 0 0 0 0 8.425 11.014 11.014 0 0 0 2.367 3.57 10.888 10.888 0 0 0 3.541 2.387 10.824 10.824 0 0 0 8.355 0 10.89 10.89 0 0 0 3.541-2.387l.327-.33a8.978 8.978 0 0 1 4.688-2.442 8.936 8.936 0 0 1 5.24.627 9.013 9.013 0 0 1 4.213 3.238 9.123 9.123 0 0 1 1.677 5.067v.495c0 2.917 1.15 5.715 3.196 7.778a10.863 10.863 0 0 0 7.714 3.222 10.86 10.86 0 0 0 7.713-3.222 11.047 11.047 0 0 0 3.196-7.778v-.935a9.124 9.124 0 0 1 1.496-4.974 9.015 9.015 0 0 1 3.958-3.331 8.93 8.93 0 0 1 5.24-.627 8.977 8.977 0 0 1 4.687 2.442l.328.33a10.904 10.904 0 0 0 3.54 2.387 10.824 10.824 0 0 0 8.355 0 10.899 10.899 0 0 0 3.541-2.387 11.019 11.019 0 0 0 2.368-3.57 11.082 11.082 0 0 0 0-8.425 11.019 11.019 0 0 0-2.368-3.57l-.327-.33a9.096 9.096 0 0 1-2.422-4.726ZM61 95.013c9.941 0 18-8.126 18-18.15s-8.059-18.15-18-18.15-18 8.126-18 18.15 8.059 18.15 18 18.15Z\" fill=\"url(#b)\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M100.742 98.647a9.144 9.144 0 0 1 .622-5.284 9.052 9.052 0 0 1 3.303-3.992 8.944 8.944 0 0 1 4.933-1.508h.491c2.893 0 5.668-1.159 7.714-3.222A11.046 11.046 0 0 0 121 76.863c0-2.917-1.149-5.715-3.195-7.778a10.865 10.865 0 0 0-7.714-3.222h-.927a8.948 8.948 0 0 1-4.934-1.508 9.065 9.065 0 0 1-3.303-3.992v-.44a9.146 9.146 0 0 1-.622-5.283 9.107 9.107 0 0 1 2.422-4.727l.328-.33a11.011 11.011 0 0 0 2.367-3.57 11.077 11.077 0 0 0 0-8.425 11.008 11.008 0 0 0-2.367-3.57 10.917 10.917 0 0 0-3.541-2.387 10.832 10.832 0 0 0-11.896 2.387l-.327.33a8.974 8.974 0 0 1-4.688 2.442 8.931 8.931 0 0 1-5.24-.627 9.017 9.017 0 0 1-3.958-3.33 9.13 9.13 0 0 1-1.496-4.975v-.495a11.05 11.05 0 0 0-3.195-7.778A10.864 10.864 0 0 0 61 16.363c-2.893 0-5.668 1.16-7.714 3.222a11.047 11.047 0 0 0-3.195 7.778v.935a9.127 9.127 0 0 1-1.496 4.974 9.019 9.019 0 0 1-3.959 3.331H44.2a8.933 8.933 0 0 1-5.24.627 8.975 8.975 0 0 1-4.687-2.442l-.328-.33a10.903 10.903 0 0 0-3.54-2.387 10.833 10.833 0 0 0-11.896 2.387 11.005 11.005 0 0 0-2.368 3.57 11.077 11.077 0 0 0 2.368 11.995l.327.33a9.101 9.101 0 0 1 2.422 4.727 9.145 9.145 0 0 1-.622 5.283 9.066 9.066 0 0 1-3.21 4.249 8.95 8.95 0 0 1-5.026 1.69h-.49c-2.894 0-5.669 1.16-7.715 3.223A11.046 11.046 0 0 0 1 77.303c0 2.918 1.15 5.716 3.195 7.778a10.863 10.863 0 0 0 7.714 3.222h.927a8.948 8.948 0 0 1 4.934 1.509 9.059 9.059 0 0 1 3.303 3.991 9.143 9.143 0 0 1 .622 5.283 9.102 9.102 0 0 1-2.422 4.727l-.328.33a11.003 11.003 0 0 0-2.367 3.57 11.082 11.082 0 0 0 0 8.425 11.014 11.014 0 0 0 2.367 3.57 10.888 10.888 0 0 0 3.541 2.387 10.824 10.824 0 0 0 8.355 0 10.89 10.89 0 0 0 3.541-2.387l.327-.33a8.978 8.978 0 0 1 4.688-2.442 8.936 8.936 0 0 1 5.24.627 9.013 9.013 0 0 1 4.213 3.238 9.123 9.123 0 0 1 1.677 5.067v.495c0 2.917 1.15 5.715 3.196 7.778a10.863 10.863 0 0 0 7.714 3.222 10.86 10.86 0 0 0 7.713-3.222 11.047 11.047 0 0 0 3.196-7.778v-.935a9.124 9.124 0 0 1 1.496-4.974 9.015 9.015 0 0 1 3.958-3.331 8.93 8.93 0 0 1 5.24-.627 8.977 8.977 0 0 1 4.687 2.442l.328.33a10.904 10.904 0 0 0 3.54 2.387 10.824 10.824 0 0 0 8.355 0 10.899 10.899 0 0 0 3.541-2.387 11.019 11.019 0 0 0 2.368-3.57 11.082 11.082 0 0 0 0-8.425 11.019 11.019 0 0 0-2.368-3.57l-.327-.33a9.096 9.096 0 0 1-2.422-4.726ZM61 95.013c9.941 0 18-8.126 18-18.15s-8.059-18.15-18-18.15-18 8.126-18 18.15 8.059 18.15 18 18.15Z\" fill=\"url(#c)\"/><path d=\"M79 76.863c0 10.024-8.059 18.15-18 18.15s-18-8.126-18-18.15 8.059-18.15 18-18.15 18 8.126 18 18.15Z\" fill=\"#fff\"/><path d=\"M79 76.863c0 10.024-8.059 18.15-18 18.15s-18-8.126-18-18.15 8.059-18.15 18-18.15 18 8.126 18 18.15Z\" fill=\"url(#d)\"/><path d=\"M79 76.863c0 10.024-8.059 18.15-18 18.15s-18-8.126-18-18.15 8.059-18.15 18-18.15 18 8.126 18 18.15Z\" fill=\"#fff\"/><path clip-rule=\"evenodd\" d=\"M100.742 98.647a9.144 9.144 0 0 1 .622-5.284 9.052 9.052 0 0 1 3.303-3.992 8.944 8.944 0 0 1 4.933-1.508h.491c2.893 0 5.668-1.159 7.714-3.222A11.046 11.046 0 0 0 121 76.863c0-2.917-1.149-5.715-3.195-7.778a10.865 10.865 0 0 0-7.714-3.222h-.927a8.948 8.948 0 0 1-4.934-1.508 9.065 9.065 0 0 1-3.303-3.992v-.44a9.146 9.146 0 0 1-.622-5.283 9.107 9.107 0 0 1 2.422-4.727l.328-.33a11.011 11.011 0 0 0 2.367-3.57 11.077 11.077 0 0 0 0-8.425 11.008 11.008 0 0 0-2.367-3.57 10.917 10.917 0 0 0-3.541-2.387 10.832 10.832 0 0 0-11.896 2.387l-.327.33a8.974 8.974 0 0 1-4.688 2.442 8.931 8.931 0 0 1-5.24-.627 9.017 9.017 0 0 1-3.958-3.33 9.13 9.13 0 0 1-1.496-4.975v-.495a11.05 11.05 0 0 0-3.195-7.778A10.864 10.864 0 0 0 61 16.363c-2.893 0-5.668 1.16-7.714 3.222a11.047 11.047 0 0 0-3.195 7.778v.935a9.127 9.127 0 0 1-1.496 4.974 9.019 9.019 0 0 1-3.959 3.331H44.2a8.933 8.933 0 0 1-5.24.627 8.975 8.975 0 0 1-4.687-2.442l-.328-.33a10.903 10.903 0 0 0-3.54-2.387 10.833 10.833 0 0 0-11.896 2.387 11.005 11.005 0 0 0-2.368 3.57 11.077 11.077 0 0 0 2.368 11.995l.327.33a9.101 9.101 0 0 1 2.422 4.727 9.145 9.145 0 0 1-.622 5.283 9.066 9.066 0 0 1-3.21 4.249 8.95 8.95 0 0 1-5.026 1.69h-.49c-2.894 0-5.669 1.16-7.715 3.223A11.046 11.046 0 0 0 1 77.303c0 2.918 1.15 5.716 3.195 7.778a10.863 10.863 0 0 0 7.714 3.222h.927a8.948 8.948 0 0 1 4.934 1.509 9.059 9.059 0 0 1 3.303 3.991 9.143 9.143 0 0 1 .622 5.283 9.102 9.102 0 0 1-2.422 4.727l-.328.33a11.003 11.003 0 0 0-2.367 3.57 11.082 11.082 0 0 0 0 8.425 11.014 11.014 0 0 0 2.367 3.57 10.888 10.888 0 0 0 3.541 2.387 10.824 10.824 0 0 0 8.355 0 10.89 10.89 0 0 0 3.541-2.387l.327-.33a8.978 8.978 0 0 1 4.688-2.442 8.936 8.936 0 0 1 5.24.627 9.013 9.013 0 0 1 4.213 3.238 9.123 9.123 0 0 1 1.677 5.067v.495c0 2.917 1.15 5.715 3.196 7.778a10.863 10.863 0 0 0 7.714 3.222 10.86 10.86 0 0 0 7.713-3.222 11.047 11.047 0 0 0 3.196-7.778v-.935a9.124 9.124 0 0 1 1.496-4.974 9.015 9.015 0 0 1 3.958-3.331 8.93 8.93 0 0 1 5.24-.627 8.977 8.977 0 0 1 4.687 2.442l.328.33a10.904 10.904 0 0 0 3.54 2.387 10.824 10.824 0 0 0 8.355 0 10.899 10.899 0 0 0 3.541-2.387 11.019 11.019 0 0 0 2.368-3.57 11.082 11.082 0 0 0 0-8.425 11.019 11.019 0 0 0-2.368-3.57l-.327-.33a9.096 9.096 0 0 1-2.422-4.726ZM61 95.013c9.941 0 18-8.126 18-18.15s-8.059-18.15-18-18.15-18 8.126-18 18.15 8.059 18.15 18 18.15Z\" stroke=\"#000\"/><path d=\"M79 76.863c0 10.024-8.059 18.15-18 18.15s-18-8.126-18-18.15 8.059-18.15 18-18.15 18 8.126 18 18.15Z\" stroke=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M254.82 17.878a12.081 12.081 0 0 0 .835 7.03 12.073 12.073 0 0 0 11.05 7.318h.659a14.638 14.638 0 0 1 0 29.274h-1.244a12.078 12.078 0 0 0-11.051 7.318v.585a12.075 12.075 0 0 0 2.415 13.32l.439.438a14.628 14.628 0 0 1 4.293 10.355 14.63 14.63 0 0 1-4.293 10.355 14.633 14.633 0 0 1-20.71 0l-.439-.439a12.077 12.077 0 0 0-13.319-2.414 12.081 12.081 0 0 0-7.319 11.05v.658a14.637 14.637 0 1 1-29.272 0v-1.244a12.078 12.078 0 0 0-7.319-11.05h-.585a12.076 12.076 0 0 0-13.319 2.415l-.439.439a14.652 14.652 0 0 1-10.356 4.293 14.645 14.645 0 0 1-10.355-4.293 14.643 14.643 0 0 1 0-20.71l.439-.44a12.08 12.08 0 0 0 3.25-6.288 12.08 12.08 0 0 0-.835-7.03 12.07 12.07 0 0 0-11.05-7.904h-.659a14.637 14.637 0 0 1 0-29.273h1.244a12.08 12.08 0 0 0 11.051-7.318 12.074 12.074 0 0 0-2.415-13.319l-.439-.439A14.628 14.628 0 0 1 140.784.21a14.63 14.63 0 0 1 4.293-10.355 14.63 14.63 0 0 1 15.96-3.177 14.63 14.63 0 0 1 4.75 3.177l.439.439a12.077 12.077 0 0 0 13.319 2.414 12.074 12.074 0 0 0 7.904-11.05V-19a14.636 14.636 0 1 1 29.273 0v1.244a12.071 12.071 0 0 0 7.318 11.05 12.076 12.076 0 0 0 13.319-2.415l.439-.439a14.65 14.65 0 0 1 10.356-4.293 14.634 14.634 0 0 1 10.355 4.293 14.64 14.64 0 0 1 3.177 15.96 14.64 14.64 0 0 1-3.177 4.75l-.439.44a12.08 12.08 0 0 0-3.25 6.288Zm-53.32 4.835c13.338 0 24.15 10.812 24.15 24.15s-10.812 24.15-24.15 24.15-24.15-10.812-24.15-24.15 10.812-24.15 24.15-24.15Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M254.82 17.878a12.081 12.081 0 0 0 .835 7.03 12.073 12.073 0 0 0 11.05 7.318h.659a14.638 14.638 0 0 1 0 29.274h-1.244a12.078 12.078 0 0 0-11.051 7.318v.585a12.075 12.075 0 0 0 2.415 13.32l.439.438a14.628 14.628 0 0 1 4.293 10.355 14.63 14.63 0 0 1-4.293 10.355 14.633 14.633 0 0 1-20.71 0l-.439-.439a12.077 12.077 0 0 0-13.319-2.414 12.081 12.081 0 0 0-7.319 11.05v.658a14.637 14.637 0 1 1-29.272 0v-1.244a12.078 12.078 0 0 0-7.319-11.05h-.585a12.076 12.076 0 0 0-13.319 2.415l-.439.439a14.652 14.652 0 0 1-10.356 4.293 14.645 14.645 0 0 1-10.355-4.293 14.643 14.643 0 0 1 0-20.71l.439-.44a12.08 12.08 0 0 0 3.25-6.288 12.08 12.08 0 0 0-.835-7.03 12.07 12.07 0 0 0-11.05-7.904h-.659a14.637 14.637 0 0 1 0-29.273h1.244a12.08 12.08 0 0 0 11.051-7.318 12.074 12.074 0 0 0-2.415-13.319l-.439-.439A14.628 14.628 0 0 1 140.784.21a14.63 14.63 0 0 1 4.293-10.355 14.63 14.63 0 0 1 15.96-3.177 14.63 14.63 0 0 1 4.75 3.177l.439.439a12.077 12.077 0 0 0 13.319 2.414 12.074 12.074 0 0 0 7.904-11.05V-19a14.636 14.636 0 1 1 29.273 0v1.244a12.071 12.071 0 0 0 7.318 11.05 12.076 12.076 0 0 0 13.319-2.415l.439-.439a14.65 14.65 0 0 1 10.356-4.293 14.634 14.634 0 0 1 10.355 4.293 14.64 14.64 0 0 1 3.177 15.96 14.64 14.64 0 0 1-3.177 4.75l-.439.44a12.08 12.08 0 0 0-3.25 6.288Zm-53.32 4.835c13.338 0 24.15 10.812 24.15 24.15s-10.812 24.15-24.15 24.15-24.15-10.812-24.15-24.15 10.812-24.15 24.15-24.15Z\" fill=\"url(#e)\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M254.82 17.878a12.081 12.081 0 0 0 .835 7.03 12.073 12.073 0 0 0 11.05 7.318h.659a14.638 14.638 0 0 1 0 29.274h-1.244a12.078 12.078 0 0 0-11.051 7.318v.585a12.075 12.075 0 0 0 2.415 13.32l.439.438a14.628 14.628 0 0 1 4.293 10.355 14.63 14.63 0 0 1-4.293 10.355 14.633 14.633 0 0 1-20.71 0l-.439-.439a12.077 12.077 0 0 0-13.319-2.414 12.081 12.081 0 0 0-7.319 11.05v.658a14.637 14.637 0 1 1-29.272 0v-1.244a12.078 12.078 0 0 0-7.319-11.05h-.585a12.076 12.076 0 0 0-13.319 2.415l-.439.439a14.652 14.652 0 0 1-10.356 4.293 14.645 14.645 0 0 1-10.355-4.293 14.643 14.643 0 0 1 0-20.71l.439-.44a12.08 12.08 0 0 0 3.25-6.288 12.08 12.08 0 0 0-.835-7.03 12.07 12.07 0 0 0-11.05-7.904h-.659a14.637 14.637 0 0 1 0-29.273h1.244a12.08 12.08 0 0 0 11.051-7.318 12.074 12.074 0 0 0-2.415-13.319l-.439-.439A14.628 14.628 0 0 1 140.784.21a14.63 14.63 0 0 1 4.293-10.355 14.63 14.63 0 0 1 15.96-3.177 14.63 14.63 0 0 1 4.75 3.177l.439.439a12.077 12.077 0 0 0 13.319 2.414 12.074 12.074 0 0 0 7.904-11.05V-19a14.636 14.636 0 1 1 29.273 0v1.244a12.071 12.071 0 0 0 7.318 11.05 12.076 12.076 0 0 0 13.319-2.415l.439-.439a14.65 14.65 0 0 1 10.356-4.293 14.634 14.634 0 0 1 10.355 4.293 14.64 14.64 0 0 1 3.177 15.96 14.64 14.64 0 0 1-3.177 4.75l-.439.44a12.08 12.08 0 0 0-3.25 6.288Zm-53.32 4.835c13.338 0 24.15 10.812 24.15 24.15s-10.812 24.15-24.15 24.15-24.15-10.812-24.15-24.15 10.812-24.15 24.15-24.15Z\" fill=\"url(#f)\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M254.82 17.878a12.081 12.081 0 0 0 .835 7.03 12.073 12.073 0 0 0 11.05 7.318h.659a14.638 14.638 0 0 1 0 29.274h-1.244a12.078 12.078 0 0 0-11.051 7.318v.585a12.075 12.075 0 0 0 2.415 13.32l.439.438a14.628 14.628 0 0 1 4.293 10.355 14.63 14.63 0 0 1-4.293 10.355 14.633 14.633 0 0 1-20.71 0l-.439-.439a12.077 12.077 0 0 0-13.319-2.414 12.081 12.081 0 0 0-7.319 11.05v.658a14.637 14.637 0 1 1-29.272 0v-1.244a12.078 12.078 0 0 0-7.319-11.05h-.585a12.076 12.076 0 0 0-13.319 2.415l-.439.439a14.652 14.652 0 0 1-10.356 4.293 14.645 14.645 0 0 1-10.355-4.293 14.643 14.643 0 0 1 0-20.71l.439-.44a12.08 12.08 0 0 0 3.25-6.288 12.08 12.08 0 0 0-.835-7.03 12.07 12.07 0 0 0-11.05-7.904h-.659a14.637 14.637 0 0 1 0-29.273h1.244a12.08 12.08 0 0 0 11.051-7.318 12.074 12.074 0 0 0-2.415-13.319l-.439-.439A14.628 14.628 0 0 1 140.784.21a14.63 14.63 0 0 1 4.293-10.355 14.63 14.63 0 0 1 15.96-3.177 14.63 14.63 0 0 1 4.75 3.177l.439.439a12.077 12.077 0 0 0 13.319 2.414 12.074 12.074 0 0 0 7.904-11.05V-19a14.636 14.636 0 1 1 29.273 0v1.244a12.071 12.071 0 0 0 7.318 11.05 12.076 12.076 0 0 0 13.319-2.415l.439-.439a14.65 14.65 0 0 1 10.356-4.293 14.634 14.634 0 0 1 10.355 4.293 14.64 14.64 0 0 1 3.177 15.96 14.64 14.64 0 0 1-3.177 4.75l-.439.44a12.08 12.08 0 0 0-3.25 6.288Zm-53.32 4.835c13.338 0 24.15 10.812 24.15 24.15s-10.812 24.15-24.15 24.15-24.15-10.812-24.15-24.15 10.812-24.15 24.15-24.15Z\" fill=\"url(#g)\"/><path d=\"M225.65 46.863c0-13.338-10.812-24.15-24.15-24.15s-24.15 10.812-24.15 24.15 10.812 24.15 24.15 24.15 24.15-10.812 24.15-24.15Z\" fill=\"#fff\"/><path d=\"M225.65 46.863c0-13.338-10.812-24.15-24.15-24.15s-24.15 10.812-24.15 24.15 10.812 24.15 24.15 24.15 24.15-10.812 24.15-24.15Z\" fill=\"url(#h)\"/><path d=\"M225.65 46.863c0-13.338-10.812-24.15-24.15-24.15s-24.15 10.812-24.15 24.15 10.812 24.15 24.15 24.15 24.15-10.812 24.15-24.15Z\" fill=\"#fff\"/><path clip-rule=\"evenodd\" d=\"M254.82 17.878a12.081 12.081 0 0 0 .835 7.03 12.073 12.073 0 0 0 11.05 7.318h.659a14.638 14.638 0 0 1 0 29.274h-1.244a12.078 12.078 0 0 0-11.051 7.318v.585a12.075 12.075 0 0 0 2.415 13.32l.439.438a14.628 14.628 0 0 1 4.293 10.355 14.63 14.63 0 0 1-4.293 10.355 14.633 14.633 0 0 1-20.71 0l-.439-.439a12.077 12.077 0 0 0-13.319-2.414 12.081 12.081 0 0 0-7.319 11.05v.658a14.637 14.637 0 1 1-29.272 0v-1.244a12.078 12.078 0 0 0-7.319-11.05h-.585a12.076 12.076 0 0 0-13.319 2.415l-.439.439a14.652 14.652 0 0 1-10.356 4.293 14.645 14.645 0 0 1-10.355-4.293 14.643 14.643 0 0 1 0-20.71l.439-.44a12.08 12.08 0 0 0 3.25-6.288 12.08 12.08 0 0 0-.835-7.03 12.07 12.07 0 0 0-11.05-7.904h-.659a14.637 14.637 0 0 1 0-29.273h1.244a12.08 12.08 0 0 0 11.051-7.318 12.074 12.074 0 0 0-2.415-13.319l-.439-.439A14.628 14.628 0 0 1 140.784.21a14.63 14.63 0 0 1 4.293-10.355 14.63 14.63 0 0 1 15.96-3.177 14.63 14.63 0 0 1 4.75 3.177l.439.439a12.077 12.077 0 0 0 13.319 2.414 12.074 12.074 0 0 0 7.904-11.05V-19a14.636 14.636 0 1 1 29.273 0v1.244a12.071 12.071 0 0 0 7.318 11.05 12.076 12.076 0 0 0 13.319-2.415l.439-.439a14.65 14.65 0 0 1 10.356-4.293 14.634 14.634 0 0 1 10.355 4.293 14.64 14.64 0 0 1 3.177 15.96 14.64 14.64 0 0 1-3.177 4.75l-.439.44a12.08 12.08 0 0 0-3.25 6.288Zm-53.32 4.835c13.338 0 24.15 10.812 24.15 24.15s-10.812 24.15-24.15 24.15-24.15-10.812-24.15-24.15 10.812-24.15 24.15-24.15Z\" stroke=\"#000\"/><path d=\"M225.65 46.863c0-13.338-10.812-24.15-24.15-24.15s-24.15 10.812-24.15 24.15 10.812 24.15 24.15 24.15 24.15-10.812 24.15-24.15Z\" stroke=\"#000\"/></g><defs><linearGradient id=\"b\" x1=\"92.241\" y1=\"16.363\" x2=\"38.581\" y2=\"133.964\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FC691F\"/><stop offset=\"1\" stop-color=\"#fff\"/></linearGradient><linearGradient id=\"c\" x1=\"1\" y1=\"35.542\" x2=\"80.634\" y2=\"151.365\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient><linearGradient id=\"d\" x1=\"61\" y1=\"16.363\" x2=\"61\" y2=\"137.363\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FC691F\"/><stop offset=\"1\" stop-color=\"#fff\"/></linearGradient><linearGradient id=\"e\" x1=\"201.5\" y1=\"127.363\" x2=\"201.5\" y2=\"-33.637\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#0A4BEB\"/><stop offset=\"1\" stop-color=\"#7DC0F5\"/></linearGradient><linearGradient id=\"f\" x1=\"164.224\" y1=\"110.405\" x2=\"248.824\" y2=\"-23.215\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FC691F\"/><stop offset=\"1\" stop-color=\"#fff\"/></linearGradient><linearGradient id=\"g\" x1=\"121\" y1=\"101.843\" x2=\"226.642\" y2=\"-53.087\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient><linearGradient id=\"h\" x1=\"201.5\" y1=\"127.363\" x2=\"201.5\" y2=\"-33.637\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#0A4BEB\"/><stop offset=\"1\" stop-color=\"#7DC0F5\"/></linearGradient><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h247v138H0z\"/></clipPath></defs></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ld3bfn\",\"data-framer-name\":\"Frame 427318537\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T0lvaDWzn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Excellent fit for companies of all sizes\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Excellent fit for companies of all sizes\"})}),className:\"framer-16itqi8\",\"data-framer-name\":\"Excellent fit for small and big companies\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{transformTemplate:transformTemplate1},T0lvaDWzn:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"PROFID provides a value for money solution packed with unique features to maximize your investment. \"})}),className:\"framer-4u5xum\",\"data-framer-name\":\"EPASS provides a value for money solution packed with unique features to maximize your investment.\",fonts:[\"Inter\"],verticalAlignment:\"bottom\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1nrnusk\",\"data-framer-name\":\"Frame_427318712\",fill:\"black\",intrinsicHeight:150,intrinsicWidth:188,svg:'<svg width=\"188\" height=\"150\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><rect x=\"108.983\" y=\"-4.318\" width=\"89.835\" height=\"154.003\" rx=\"5.133\" fill=\"#fff\"/><rect x=\"157.888\" y=\"101.354\" width=\"33.23\" height=\"16.247\" rx=\"2.567\" fill=\"#fff\"/><path d=\"M116.683 11.082a2.567 2.567 0 0 1 2.567-2.567h28.096a2.567 2.567 0 0 1 2.567 2.567v11.113a2.567 2.567 0 0 1-2.567 2.567H119.25a2.567 2.567 0 0 1-2.567-2.567V11.082Zm41.205 0a2.567 2.567 0 0 1 2.567-2.567h28.096a2.567 2.567 0 0 1 2.567 2.567v11.113a2.567 2.567 0 0 1-2.567 2.567h-28.096a2.567 2.567 0 0 1-2.567-2.567V11.082Zm-41.204 23.209a2.566 2.566 0 0 1 2.566-2.566h28.097a2.566 2.566 0 0 1 2.566 2.566v11.114a2.567 2.567 0 0 1-2.566 2.567H119.25a2.567 2.567 0 0 1-2.566-2.567V34.29Zm41.204 0a2.567 2.567 0 0 1 2.567-2.566h28.096a2.567 2.567 0 0 1 2.567 2.566v11.114a2.567 2.567 0 0 1-2.567 2.567h-28.096a2.567 2.567 0 0 1-2.567-2.567V34.29Zm-41.204 23.21a2.566 2.566 0 0 1 2.566-2.566h28.097a2.566 2.566 0 0 1 2.566 2.566v11.114a2.566 2.566 0 0 1-2.566 2.566H119.25a2.566 2.566 0 0 1-2.566-2.566V57.5Zm41.204 0a2.567 2.567 0 0 1 2.567-2.566h28.096a2.567 2.567 0 0 1 2.567 2.566v11.114a2.567 2.567 0 0 1-2.567 2.566h-28.096a2.567 2.567 0 0 1-2.567-2.566V57.5ZM116.684 80.71a2.566 2.566 0 0 1 2.566-2.566h28.097a2.566 2.566 0 0 1 2.566 2.567v11.113a2.567 2.567 0 0 1-2.566 2.567H119.25a2.567 2.567 0 0 1-2.566-2.567V80.711Zm41.204 0a2.567 2.567 0 0 1 2.567-2.566h28.096a2.567 2.567 0 0 1 2.567 2.567v11.113a2.567 2.567 0 0 1-2.567 2.567h-28.096a2.567 2.567 0 0 1-2.567-2.567V80.711Zm-41.204 23.211a2.566 2.566 0 0 1 2.566-2.567h28.097a2.566 2.566 0 0 1 2.566 2.567v11.113a2.567 2.567 0 0 1-2.566 2.567H119.25a2.567 2.567 0 0 1-2.566-2.567v-11.113Zm41.204 0a2.567 2.567 0 0 1 2.567-2.567h28.096a2.567 2.567 0 0 1 2.567 2.567v11.113a2.567 2.567 0 0 1-2.567 2.567h-28.096a2.567 2.567 0 0 1-2.567-2.567v-11.113Z\" fill=\"#563FFF\"/><path d=\"M160.847 124.682a2.566 2.566 0 0 1 2.567 2.566v22.434h-18v-22.434a2.566 2.566 0 0 1 2.567-2.566h12.866Z\" fill=\"#000\"/><rect x=\"14.424\" y=\"56.571\" width=\"73.151\" height=\"62.885\" rx=\"7.058\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.283\"/><path d=\"m3.436 54.315 8.905-14.842a6.417 6.417 0 0 1 5.502-3.115h66.313a6.417 6.417 0 0 1 5.502 3.115l8.906 14.842a6.417 6.417 0 0 1-1.729 8.49l-4.122 2.999a6.417 6.417 0 0 1-7.548 0l-8.873-6.453-8.872 6.453a6.417 6.417 0 0 1-7.548 0L51 59.35l-8.873 6.453a6.417 6.417 0 0 1-7.548 0l-8.872-6.453-8.872 6.453a6.417 6.417 0 0 1-7.549 0l-4.122-2.998a6.417 6.417 0 0 1-1.728-8.491Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.28\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M60.914 90.248v28.934h-20V90.248c0-1.141.925-2.067 2.067-2.067h15.866c1.142 0 2.067.926 2.067 2.067Z\" fill=\"#563FFF\" stroke=\"#000\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.414)\" d=\"M0 0h187v150H0z\"/></clipPath></defs></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oltf1q\",\"data-framer-name\":\"Frame 427318536\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{transformTemplate:transformTemplate1},T0lvaDWzn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"135%\"},children:\"Comprehensive Screening Solution\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"135%\"},children:\"Comprehensive Screening Solution\"})}),className:\"framer-18w904s\",\"data-framer-name\":\"Comprehensive Screening Solution\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"PROFID offers a wide range of checks, from criminal history and financial stability to peers scoring and reviews.\"})}),className:\"framer-rwh6tx hidden-l241wy\",\"data-framer-name\":\"EPASS offers a wide range of checks, from criminal history and financial stability to peers scoring and reviews.\",fonts:[\"Inter\"],verticalAlignment:\"bottom\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-vl8jku\",\"data-framer-name\":\"Frame_427318715\",fill:\"black\",intrinsicHeight:158,intrinsicWidth:209,svg:'<svg width=\"209\" height=\"158\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M125.42-8.318h78.26c8.861 0 16.045 7.183 16.045 16.044v61.21c0 8.861-7.184 16.044-16.045 16.044h-8.077a3.702 3.702 0 0 0-3.702 3.703v14.962c0 1.019-1.164 1.599-1.977.986l-25.095-18.905a3.702 3.702 0 0 0-2.228-.746H125.42c-8.861 0-16.044-7.183-16.044-16.044V7.726c0-8.861 7.183-16.044 16.044-16.044Z\" fill=\"url(#b)\"/><path d=\"M125.42-8.318h78.26c8.861 0 16.045 7.183 16.045 16.044v61.21c0 8.861-7.184 16.044-16.045 16.044h-8.077a3.702 3.702 0 0 0-3.702 3.703v14.962c0 1.019-1.164 1.599-1.977.986l-25.095-18.905a3.702 3.702 0 0 0-2.228-.746H125.42c-8.861 0-16.044-7.183-16.044-16.044V7.726c0-8.861 7.183-16.044 16.044-16.044Z\" fill=\"url(#c)\"/><path d=\"M195.622 46.944h-51.435m51.435-21.38h-31.467\" stroke=\"#000\" stroke-width=\"1.234\"/><path d=\"M118.789 43.243h-78.26c-8.861 0-16.045 7.183-16.045 16.044v61.21c0 8.861 7.184 16.045 16.045 16.045h8.077a3.702 3.702 0 0 1 3.702 3.702v14.963c0 1.018 1.164 1.598 1.977.985l25.095-18.905a3.7 3.7 0 0 1 2.228-.745h37.181c8.861 0 16.044-7.184 16.044-16.045v-61.21c0-8.861-7.183-16.044-16.044-16.044Z\" fill=\"url(#d)\"/><path d=\"M118.789 43.243h-78.26c-8.861 0-16.045 7.183-16.045 16.044v61.21c0 8.861 7.184 16.045 16.045 16.045h8.077a3.702 3.702 0 0 1 3.702 3.702v14.963c0 1.018 1.164 1.598 1.977.985l25.095-18.905a3.7 3.7 0 0 1 2.228-.745h37.181c8.861 0 16.044-7.184 16.044-16.045v-61.21c0-8.861-7.183-16.044-16.044-16.044Z\" fill=\"url(#e)\"/><path d=\"M79.659 111.848s-23.844-13.28-23.844-29.216c0-15.936 18.545-17.264 23.844-4.795 5.298-12.469 23.843-11.14 23.843 4.795 0 15.936-23.843 29.216-23.843 29.216Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".822\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><g clip-path=\"url(#f)\" stroke=\"#000\" stroke-width=\"1.234\"><circle cx=\"24.35\" cy=\"42.256\" r=\"22.832\" fill=\"#fff\"/><path d=\"M10.671 62.31c0-4.316 6.125-7.816 13.68-7.816 7.554 0 13.678 3.5 13.678 7.817M24.35 46.678c5.396 0 9.77-4.374 9.77-9.77 0-5.397-4.374-9.771-9.77-9.771s-9.77 4.374-9.77 9.77a9.77 9.77 0 0 0 9.77 9.77Z\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g></g><defs><linearGradient id=\"b\" x1=\"164.55\" y1=\"-8.318\" x2=\"164.55\" y2=\"106.12\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#7DC0F5\"/><stop offset=\"1\" stop-color=\"#0A4BEB\"/></linearGradient><linearGradient id=\"c\" x1=\"219.725\" y1=\"9.821\" x2=\"143.673\" y2=\"117.368\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient><linearGradient id=\"d\" x1=\"79.659\" y1=\"43.243\" x2=\"79.659\" y2=\"157.682\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#0A4BEB\"/><stop offset=\"1\" stop-color=\"#7DC0F5\"/></linearGradient><linearGradient id=\"e\" x1=\"24.484\" y1=\"61.382\" x2=\"100.536\" y2=\"168.929\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.901)\" d=\"M0 0h208v158H0z\"/></clipPath><clipPath id=\"f\"><rect x=\".901\" y=\"18.646\" width=\"46.898\" height=\"46.898\" rx=\"23.449\" fill=\"#fff\"/></clipPath></defs></svg>',withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"PROFID offers a wide range of checks, from criminal history and financial stability to peers scoring and reviews.\"})}),className:\"framer-sr3h1d hidden-72rtr7 hidden-tf1r54\",\"data-framer-name\":\"EPASS offers a wide range of checks, from criminal history and financial stability to peers scoring and reviews.\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"bottom\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o7xel\",\"data-framer-name\":\"Frame 427318581\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T0lvaDWzn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\"},children:\"Why choose PROFID?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\"},children:\"Why choose PROFID?\"})}),className:\"framer-zwuyzr\",\"data-framer-name\":\"Why choose EPASS?\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T0lvaDWzn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"PROFID offers a range of powerful features to streamline your background check and access management processes:\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"PROFID offers a range of powerful features to streamline your background check and access management processes:\"})}),className:\"framer-f3e0tu\",\"data-framer-name\":\"EPASS offers a range of powerful features to streamline your background check and access management processes:\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xxt622 hidden-tf1r54 hidden-l241wy\",\"data-framer-name\":\"Frame 427318529\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ui34n4\",\"data-framer-name\":\"Frame 427318528\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\"},children:\"360\\xb0 User information in one score\"})}),className:\"framer-80jbqf\",\"data-framer-name\":\"360\\xb0 User information in one score\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tgzcou\",\"data-framer-name\":\"Frame 427318527\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14c6ey1\",\"data-framer-name\":\"Frame 427318525\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kvovpj\",\"data-framer-name\":\"Frame 427318522\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Criminal score\"})}),className:\"framer-e0nqt1\",\"data-framer-name\":\"Criminal score\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bp1afj\",\"data-framer-name\":\"Line 72\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:358,svg:'<svg width=\"358\" height=\"4\" viewBox=\"-1 -1 358 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.2\" y1=\"0.818359\" x2=\"356\" y2=\"0.818359\" stroke=\"#525F7E\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"A detailed numerical summary of an individual's criminal background, providing essential insights into their legal history. This helps ensure the safety and integrity of your business by thoroughly understanding the candidate's past.\"})}),className:\"framer-f0xko2\",\"data-framer-name\":\"A detailed numerical summary of an individual's criminal background, providing essential insights into their legal history. This helps ensure the safety and integrity of your business by thoroughly understanding the candidate's past.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wfk8nu\",\"data-framer-name\":\"Frame_427318516\",fill:\"black\",intrinsicHeight:93,intrinsicWidth:73,svg:'<svg width=\"73\" height=\"93\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"#D9D9D9\" d=\"M15.905.51h49.97v89.112h-49.97z\"/><path fill=\"#563FFF\" d=\"M15.905.51h49.97v89.112h-49.97z\"/><path fill=\"url(#a)\" d=\"M15.905.51h49.97v89.112h-49.97z\"/><path d=\"M32.562 9.165c4.025-1.388 13.325-2.665 18.322 3.332M37.142 48.308c-4.303-1.527-12.909-7.412-12.909-18.738 0-14.158 12.909-17.073 17.49-17.073 4.58 0 14.574 4.164 14.574 12.909-.139 1.665-1.332 4.997-4.997 4.997.267-4.72-1.36-14.159-9.994-14.159-10.793 0-12.076 9.162-12.076 14.991 0 5.83 7.08 14.991 10.827 15.824m4.997-.833c3.748-1.11 11.243-5.496 11.243-14.158m-6.246 3.748c-2.221.555-6.663.833-6.663-2.499 0-4.164-.416-7.912-2.498-7.912-2.082 0-2.499 2.499-2.499 3.748 0 1.25-.416 12.076 4.997 12.076m4.58-10.826c0-2.777-1.249-8.329-6.245-8.329-6.247 0-7.912 3.748-7.912 7.08 0 3.33.833 8.744 4.58 12.075\" stroke=\"#fff\" stroke-width=\".833\"/><path d=\"m9.837 85.169 33.134-19.13 3.331 5.77-33.134 19.13a2.915 2.915 0 0 1-3.982-1.067l-.416-.721a2.915 2.915 0 0 1 1.067-3.982Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".833\"/><path d=\"m39.964 61.042 15.146-8.744 9.683 16.772-15.048 8.914-9.781-16.942Zm14.73-9.466-15.147 8.745-1.251-2.168a2.915 2.915 0 0 1 1.067-3.981l10.097-5.83a2.915 2.915 0 0 1 3.982 1.067l1.252 2.167ZM50.16 78.705l15.05-8.915 1.14 1.976a2.915 2.915 0 0 1-1.066 3.982l-10.098 5.83a2.915 2.915 0 0 1-3.981-1.067l-1.044-1.807Zm-5.562 5.505H68.75a3.748 3.748 0 0 1 3.748 3.747v2.915H40.85v-2.915a3.748 3.748 0 0 1 3.748-3.748ZM12.574 43.4c1.998 0 3.053-1.942 3.33-2.914.279.972 1.333 2.915 3.332 2.915 1.999 0 3.887-1.944 4.58-2.915.695 1.666 2.749 4.997 5.414 4.997-.971.833-2.915 2.915-2.915 4.58 0 2.082 4.58 2.499 4.58 12.076 0 7.662-7.772 9.578-11.659 9.578-1.11.139-3.331.916-3.331 2.915 0-2-2.221-2.776-3.331-2.915-3.887 0-11.66-1.916-11.66-9.578 0-9.577 4.58-9.994 4.58-12.076 0-1.665-1.943-3.747-2.914-4.58 2.665 0 4.719-3.331 5.413-4.997.694.972 2.582 2.915 4.58 2.915Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".833\"/><path d=\"m15.905 50.994 1.66 5.112.094.287h5.677l-4.348 3.16-.245.177.094.288 1.66 5.111-4.347-3.159-.245-.178-.245.178-4.348 3.16 1.66-5.112.094-.288-.244-.178-4.348-3.159h5.676l.094-.287 1.66-5.112Z\" stroke=\"#000\" stroke-width=\".833\"/><defs><linearGradient id=\"a\" x1=\"15.905\" y1=\"14.635\" x2=\"77.534\" y2=\"65.317\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient></defs></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18cpfds\",\"data-framer-name\":\"Frame 427318523\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Credit score\"})}),className:\"framer-1x6f2hw\",\"data-framer-name\":\"Credit score\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18f4ob1\",\"data-framer-name\":\"Line 72\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:358,svg:'<svg width=\"358\" height=\"4\" viewBox=\"-1 -1 358 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.2\" y1=\"0.818359\" x2=\"356\" y2=\"0.818359\" stroke=\"#525F7E\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"A comprehensive evaluation of an individual's financial background, encompassing payment habits, debt management, and credit usage. This allows you to make informed decisions about financial reliability and trustworthiness.\"})}),className:\"framer-q4by27\",\"data-framer-name\":\"A comprehensive evaluation of an individual's financial background, encompassing payment habits, debt management, and credit usage. This allows for informed decisions about financial reliability and trustworthiness.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vf1awq\",\"data-framer-name\":\"Frame 427318517\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xycsaf\",\"data-framer-name\":\"Frame_427318517\",fill:\"black\",intrinsicHeight:84,intrinsicWidth:105,svg:'<svg width=\"105\" height=\"84\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"#fff\" stroke=\"#000\" stroke-width=\".839\" d=\"M23.978 32.29h7.548v45.29h-7.548zm21.807 0h7.548v45.29h-7.548zm21.806 0h7.548v45.29h-7.548z\"/><path d=\"m49.56 0 35.59 33.34H13.968L49.56 0Z\" fill=\"#D9D9D9\"/><path d=\"m49.56 0 35.59 33.34H13.968L49.56 0Z\" fill=\"url(#a)\"/><path d=\"m49.56 0 35.59 33.34H13.968L49.56 0Z\" fill=\"url(#b)\"/><path fill=\"#fff\" d=\"M84.786 75.484v8.387H14.334v-8.387z\"/><path transform=\"rotate(90 84.785 75.484)\" fill=\"url(#c)\" d=\"M84.785 75.484h8.387v70.452h-8.387z\"/><path transform=\"rotate(90 84.785 75.484)\" fill=\"url(#d)\" d=\"M84.785 75.484h8.387v70.452h-8.387z\"/><path d=\"m83.107 38.26 1.108 3.409.094.29h3.889l-2.9 2.106-.246.18.094.29 1.108 3.408-2.9-2.107-.247-.179-.246.18-2.9 2.106 1.108-3.409.094-.29-.247-.178-2.9-2.107h3.89l.094-.29 1.107-3.409Zm15.097 0 1.108 3.409.094.29h3.889l-2.9 2.106-.246.18.094.29 1.107 3.408-2.9-2.107-.246-.179-.246.18-2.9 2.106 1.108-3.409.094-.29-.247-.178-2.9-2.107h3.889l.095-.29 1.107-3.409Zm-7.548 10.903 1.108 3.41.094.289h3.889l-2.9 2.107-.247.179.095.29 1.107 3.408-2.9-2.106-.246-.18-.247.18-2.9 2.106 1.108-3.408.094-.29-.246-.18-2.9-2.106h3.889l.094-.29 1.108-3.409Z\" stroke=\"#000\" stroke-width=\".839\"/><mask id=\"e\" maskUnits=\"userSpaceOnUse\" x=\"43.688\" y=\"9.71\" width=\"12\" height=\"19\" fill=\"#000\"><path fill=\"#fff\" d=\"M43.688 9.71h12v19h-12z\"/><path d=\"M49.12 27.387V10.613h1.075v16.774H49.12Zm3.362-11.571c-.07-.62-.358-1.101-.865-1.442-.507-.345-1.145-.517-1.913-.517-.55 0-1.027.087-1.429.262-.402.17-.714.406-.937.707a1.67 1.67 0 0 0-.328 1.016c0 .319.075.594.223.826a2 2 0 0 0 .597.583c.248.153.515.281.799.386.284.1.557.184.819.25l1.31.34c.428.105.867.247 1.317.426.45.18.868.415 1.252.708.384.292.695.655.93 1.087.24.433.36.95.36 1.553 0 .76-.196 1.435-.589 2.025-.389.59-.954 1.055-1.697 1.396-.738.34-1.632.51-2.68.51-1.005 0-1.874-.159-2.608-.478-.734-.319-1.308-.77-1.723-1.356-.415-.59-.644-1.289-.688-2.097h2.031c.04.485.197.89.472 1.212.28.32.636.557 1.068.715.437.153.915.229 1.435.229.572 0 1.081-.09 1.527-.269.45-.183.803-.436 1.061-.76a1.8 1.8 0 0 0 .387-1.146c0-.398-.114-.723-.341-.977-.223-.253-.526-.463-.91-.629a8.902 8.902 0 0 0-1.292-.439l-1.585-.432c-1.075-.293-1.927-.723-2.556-1.291-.624-.568-.937-1.32-.937-2.254 0-.773.21-1.448.63-2.025.419-.576.986-1.024 1.703-1.343.716-.323 1.524-.485 2.424-.485.909 0 1.71.16 2.405.479.699.318 1.25.757 1.651 1.316a3.32 3.32 0 0 1 .63 1.914h-1.953Z\"/></mask><path d=\"M49.12 27.387V10.613h1.075v16.774H49.12Zm3.362-11.571c-.07-.62-.358-1.101-.865-1.442-.507-.345-1.145-.517-1.913-.517-.55 0-1.027.087-1.429.262-.402.17-.714.406-.937.707a1.67 1.67 0 0 0-.328 1.016c0 .319.075.594.223.826a2 2 0 0 0 .597.583c.248.153.515.281.799.386.284.1.557.184.819.25l1.31.34c.428.105.867.247 1.317.426.45.18.868.415 1.252.708.384.292.695.655.93 1.087.24.433.36.95.36 1.553 0 .76-.196 1.435-.589 2.025-.389.59-.954 1.055-1.697 1.396-.738.34-1.632.51-2.68.51-1.005 0-1.874-.159-2.608-.478-.734-.319-1.308-.77-1.723-1.356-.415-.59-.644-1.289-.688-2.097h2.031c.04.485.197.89.472 1.212.28.32.636.557 1.068.715.437.153.915.229 1.435.229.572 0 1.081-.09 1.527-.269.45-.183.803-.436 1.061-.76a1.8 1.8 0 0 0 .387-1.146c0-.398-.114-.723-.341-.977-.223-.253-.526-.463-.91-.629a8.902 8.902 0 0 0-1.292-.439l-1.585-.432c-1.075-.293-1.927-.723-2.556-1.291-.624-.568-.937-1.32-.937-2.254 0-.773.21-1.448.63-2.025.419-.576.986-1.024 1.703-1.343.716-.323 1.524-.485 2.424-.485.909 0 1.71.16 2.405.479.699.318 1.25.757 1.651 1.316a3.32 3.32 0 0 1 .63 1.914h-1.953Z\" fill=\"#fff\"/><path d=\"M49.12 27.387h-.838v.84h.838v-.84Zm0-16.774v-.839h-.838v.84h.838Zm1.075 0h.839v-.839h-.84v.84Zm0 16.774v.84h.839v-.84h-.84Zm2.287-11.571-.834.094.084.744h.75v-.838Zm-.865-1.442-.472.694.004.002.468-.696Zm-3.342-.255.327.772.008-.003-.335-.77Zm-.937.707-.674-.498-.002.002.676.496Zm-.105 1.842-.706.453.006.009.7-.462Zm.597.583-.454.705.007.005.008.005.439-.715Zm.799.386-.29.787.01.004.28-.79Zm.819.25.211-.812-.008-.002-.203.813Zm1.31.34-.21.812.01.003.2-.815Zm3.5 2.221-.737.402.003.006.733-.408Zm-.23 3.578-.698-.465-.002.003.7.462Zm-1.697 1.396-.35-.763-.002.001.352.762Zm-5.288.032.334-.769-.334.77Zm-1.723-1.356-.686.483.002.002.684-.485Zm-.688-2.097v-.838h-.885l.047.884.838-.046Zm2.031 0 .836-.068-.062-.77h-.774V22Zm.472 1.212-.639.544.008.01.63-.553Zm1.068.715-.287.788.01.003.277-.791Zm2.962-.04.313.779.003-.002-.316-.777Zm1.061-.76.656.523.003-.004-.659-.519Zm.046-2.123-.63.554.005.006.625-.56Zm-.91-.629-.337.769.004.001.332-.77Zm-1.292-.439-.22.81.007.001.213-.81Zm-1.585-.432.22-.81-.22.81Zm-2.556-1.291-.564.62.002.003.562-.623Zm-.308-4.279-.678-.493.678.493Zm1.704-1.343.341.766.004-.002-.345-.764Zm4.83-.007-.35.763.35-.763Zm1.65 1.317-.68.49.001.003.68-.492Zm.63 1.914v.838h.859l-.021-.858-.839.02Zm-4.476 11.571V10.613h-1.677v16.774h1.677Zm-.839-15.935h1.075V9.774H49.12v1.678Zm.236-.839v16.774h1.678V10.613h-1.678Zm.839 15.936H49.12v1.677h1.075V26.55Zm3.12-10.827c-.097-.859-.514-1.562-1.23-2.044l-.936 1.392c.297.2.456.458.5.84l1.666-.188Zm-1.226-2.04c-.678-.462-1.491-.664-2.386-.664v1.677c.644 0 1.106.144 1.442.373l.944-1.387Zm-2.386-.664c-.637 0-1.232.1-1.762.332l.668 1.538c.273-.119.63-.193 1.094-.193v-1.677Zm-1.755.329c-.517.219-.959.54-1.284.98l1.349.998c.12-.162.303-.313.59-.434l-.655-1.544Zm-1.286.982a2.51 2.51 0 0 0-.49 1.513h1.677c0-.207.056-.37.165-.519l-1.352-.994Zm-.49 1.513c0 .453.107.891.355 1.278l1.412-.905a.664.664 0 0 1-.09-.373h-1.677Zm.361 1.288c.22.333.505.609.843.826l.907-1.41a1.162 1.162 0 0 1-.35-.34l-1.4.924Zm.858.835c.297.183.614.336.947.46l.581-1.574a3.668 3.668 0 0 1-.65-.315l-.878 1.43Zm.958.463c.306.108.605.2.896.272l.406-1.627a8.18 8.18 0 0 1-.742-.226l-.56 1.581Zm.888.27 1.31.34.422-1.623-1.31-.34-.422 1.623Zm1.322.344c.387.095.789.224 1.206.39l.62-1.558a10.817 10.817 0 0 0-1.427-.461l-.4 1.629Zm1.206.39c.38.151.73.35 1.054.596l1.016-1.335a6.118 6.118 0 0 0-1.45-.82l-.62 1.56Zm1.054.596c.288.22.522.491.702.822l1.473-.803a4.228 4.228 0 0 0-1.159-1.354l-1.016 1.335Zm.705.828c.158.283.255.654.255 1.145h1.677c0-.714-.142-1.378-.465-1.96l-1.467.815ZM53.78 22c0 .607-.154 1.118-.449 1.56l1.396.93c.492-.737.73-1.577.73-2.49H53.78Zm-.451 1.563c-.29.44-.724.81-1.347 1.095l.7 1.525c.862-.396 1.56-.956 2.047-1.696l-1.4-.924Zm-1.349 1.096c-.6.277-1.367.434-2.328.434v1.677c1.136 0 2.156-.184 3.031-.588l-.703-1.523Zm-2.328.434c-.918 0-1.668-.146-2.274-.409l-.668 1.539c.863.375 1.85.547 2.942.547v-1.677Zm-2.274-.409c-.61-.265-1.056-.625-1.373-1.072l-1.368.97c.513.724 1.215 1.268 2.073 1.64l.668-1.538Zm-1.371-1.07c-.314-.445-.5-.988-.537-1.659l-1.675.09c.052.946.324 1.801.84 2.535l1.372-.966Zm-1.374-.775h2.031v-1.677h-2.031v1.677Zm1.195-.77c.052.633.264 1.211.67 1.687l1.276-1.087c-.144-.17-.247-.4-.274-.737l-1.672.136Zm.677 1.696c.38.434.859.749 1.412.95l.574-1.576a1.712 1.712 0 0 1-.724-.48l-1.262 1.106Zm1.422.953c.536.188 1.11.277 1.712.277v-1.678c-.437 0-.82-.064-1.158-.182l-.554 1.583Zm1.712.277c.66 0 1.277-.104 1.84-.33l-.626-1.556c-.33.132-.729.208-1.214.208v1.678Zm1.843-.331c.56-.228 1.04-.56 1.4-1.014l-1.31-1.046c-.154.193-.383.368-.723.507l.633 1.553Zm1.404-1.018c.38-.483.567-1.05.567-1.665h-1.678a.964.964 0 0 1-.207.628l1.318 1.037Zm.567-1.665c0-.568-.168-1.104-.555-1.537l-1.25 1.12c.067.074.127.189.127.417h1.678Zm-.55-1.53c-.322-.367-.737-.642-1.208-.846l-.665 1.54c.297.129.49.273.613.413l1.26-1.108Zm-1.205-.844a9.737 9.737 0 0 0-1.413-.482l-.427 1.622c.446.118.835.251 1.169.397l.67-1.537Zm-1.406-.48-1.586-.432-.441 1.618 1.586.432.441-1.618Zm-1.586-.432c-.986-.269-1.708-.648-2.214-1.105l-1.124 1.245c.753.68 1.734 1.161 2.897 1.478l.441-1.618Zm-2.212-1.103c-.43-.39-.662-.906-.662-1.633h-1.677c0 1.143.392 2.13 1.211 2.875l1.128-1.242Zm-.662-1.633c0-.612.162-1.11.469-1.531l-1.357-.987c-.532.732-.79 1.583-.79 2.518h1.678Zm.469-1.531c.324-.446.77-.806 1.366-1.07l-.682-1.533c-.837.372-1.527.909-2.041 1.616l1.357.987Zm1.37-1.072c.593-.268 1.281-.411 2.08-.411v-1.678c-1.002 0-1.93.18-2.77.56l.69 1.529Zm2.08-.411c.81 0 1.488.142 2.054.402l.7-1.525c-.823-.378-1.748-.555-2.755-.555v1.678Zm2.056.402c.582.266 1.011.617 1.318 1.044l1.362-.979c-.496-.691-1.168-1.218-1.984-1.59l-.696 1.525Zm1.32 1.046c.297.41.456.882.47 1.442l1.677-.04a4.158 4.158 0 0 0-.789-2.385l-1.358.984Zm1.308.583h-1.952v1.677h1.952v-1.677Z\" fill=\"#000\" mask=\"url(#e)\"/><path d=\"M1.333 54.097h43.613v13.838a3.774 3.774 0 0 1-3.774 3.775H5.108a3.774 3.774 0 0 1-3.775-3.775V54.097Zm43.613-.839H1.333V51.58h43.613v1.678Zm0-2.516H1.333v-1.678h43.613v1.678Zm0-2.516H1.333v-.42a3.774 3.774 0 0 1 3.775-3.774h36.064a3.774 3.774 0 0 1 3.774 3.774v.42ZM5.108 63.322H9.72v-.838H5.108v.838Zm0 3.775h18.451v-.839H5.108v.839Zm7.548-3.774h2.935v-.84h-2.935v.84Zm6.29 0h3.774v-.84h-3.774v.84Zm5.871 0h4.613v-.84h-4.613v.84Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".839\"/><defs><linearGradient id=\"a\" x1=\"82.085\" y1=\"1.787\" x2=\"61.467\" y2=\"55.543\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#43BBFF\"/><stop offset=\"1\" stop-color=\"#0E50EB\"/></linearGradient><linearGradient id=\"b\" x1=\"67.285\" y1=\"3.977\" x2=\"34.942\" y2=\"31.795\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FF9A67\"/><stop offset=\"1\" stop-color=\"#FC691F\"/></linearGradient><linearGradient id=\"c\" x1=\"92.298\" y1=\"78.317\" x2=\"76.342\" y2=\"80.995\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#43BBFF\"/><stop offset=\"1\" stop-color=\"#0E50EB\"/></linearGradient><linearGradient id=\"d\" x1=\"90.787\" y1=\"81.787\" x2=\"85.063\" y2=\"82.104\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FF9A67\"/><stop offset=\"1\" stop-color=\"#FC691F\"/></linearGradient></defs></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rrjlnw\",\"data-framer-name\":\"Frame 427318524\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Employee score\"})}),className:\"framer-1qu920e\",\"data-framer-name\":\"Employee score\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ny8ab4\",\"data-framer-name\":\"Line 72\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:358,svg:'<svg width=\"358\" height=\"4\" viewBox=\"-1 -1 358 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.2\" y1=\"0.818359\" x2=\"356\" y2=\"0.818359\" stroke=\"#525F7E\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"An in-depth assessment of an individual's professional background, including work experience, skill sets, qualifications, and reference verifications. This score assists in identifying the best candidates for your organization, enhancing workforce quality.\"})}),className:\"framer-15hbb5d\",\"data-framer-name\":\"An in-depth assessment of an individual's professional background, including work experience, skill sets, qualifications, and reference verifications. This score assists in identifying the best candidates for your organization, enhancing workforce quality.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fb63e\",\"data-framer-name\":\"Frame_427318518\",fill:\"black\",intrinsicHeight:72,intrinsicWidth:87,svg:'<svg width=\"87\" height=\"72\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"9.872\" y=\".358\" width=\"65.933\" height=\"55.183\" rx=\"8.242\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".717\"/><rect x=\"5.572\" y=\"7.525\" width=\"75.25\" height=\"55.183\" rx=\"8.242\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".717\"/><rect x=\".914\" y=\"15.767\" width=\"86\" height=\"55.9\" rx=\"8.6\" fill=\"#D9D9D9\"/><rect x=\".914\" y=\"15.767\" width=\"86\" height=\"55.9\" rx=\"8.6\" fill=\"url(#a)\"/><rect x=\".914\" y=\"15.767\" width=\"86\" height=\"55.9\" rx=\"8.6\" fill=\"url(#b)\"/><path d=\"M6.29 65.217h75.607M47.856 40.133h34.041m-12.541 6.45h-21.5\" stroke=\"#000\" stroke-width=\"1.433\"/><mask id=\"c\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"5\" y=\"22\" width=\"39\" height=\"39\"><circle cx=\"24.564\" cy=\"41.567\" r=\"19.35\" fill=\"#D9D9D9\"/></mask><g mask=\"url(#c)\"><circle cx=\"24.564\" cy=\"41.567\" r=\"19.35\" fill=\"#fff\"/><path d=\"M32.252 36.856c-.257 1.796-1.818 2.886-2.566 3.207-.428.214-1.283-.064-1.283-2.887 0-3.528.962-6.094-2.887-6.094-.534 0-1.796.193-2.566.963-.214-.321-.898-.963-1.924-.963-1.283 0-3.208.963-3.528 2.566.107-2.138 1.667-6.415 7.056-6.415s7.377 3.422 7.698 5.132v4.49Z\" fill=\"#000\"/><path d=\"M3.064 64.5c.717-3.583 8.242-12.248 15.396-12.248a2.527 2.527 0 0 0 1.283-.66c-1.39 3.106-4.106 7.52-3.849 12.908H3.064Z\" fill=\"#fff\"/><path d=\"M29.686 40.063c.748-.32 2.31-1.411 2.566-3.207.32-.428 1.09-.898 1.603.641.642 1.925 0 3.529-1.282 4.49-1.027.77-2.139.535-2.566.322v7.056c0 .39.084.937.32 1.451.129.279.302.547.531.776.358 1.93 1.073 4.697 1.073 12.908H15.894c-.257-5.389 2.459-9.802 3.849-12.908.362-.355.641-.868.641-1.586 0-1.924 0-2.566-.641-3.207-.642-.642-2.245-.962-2.245-4.49v-8.66c.32-1.604 2.245-2.567 3.528-2.567 1.026 0 1.71.642 1.924.963.77-.77 2.032-.963 2.566-.963 3.85 0 2.887 2.566 2.887 6.094 0 2.823.855 3.101 1.283 2.887Z\" fill=\"#fff\"/><path d=\"M32.572 52.252c2.567 0 16.359 1.856 16.359 12.248h-17c0-8.211-.715-10.978-1.073-12.908.391.389.944.66 1.714.66Z\" fill=\"#fff\"/><path d=\"M32.252 36.856c-.257 1.796-1.818 2.886-2.566 3.207-.428.214-1.283-.064-1.283-2.887 0-3.528.962-6.094-2.887-6.094-.534 0-1.796.193-2.566.963-.214-.321-.898-.963-1.924-.963-1.283 0-3.208.963-3.528 2.566m14.754 3.208c.32-.428 1.09-.898 1.603.641.642 1.925 0 3.529-1.282 4.49-1.027.77-2.139.535-2.566.322v7.056c0 .39.084.937.32 1.451m1.925-13.96v-4.49c-.321-1.711-2.31-5.133-7.698-5.133-5.389 0-6.95 4.277-7.056 6.415m2.245 13.15c.641.642.641 1.284.641 3.208 0 .718-.279 1.231-.641 1.586m0-4.793c-.642-.642-2.245-.962-2.245-4.49m2.245 4.49c.962.962 3.913 2.31 8.018 0m-10.263-4.49v-8.66m0 8.66v-8.66m12.83 17.167-6.736 6.567-3.208-6.094m9.943-.473c.129.279.302.547.531.776m-11.115 0c-.415.405-.94.602-1.283.66-7.154 0-14.68 8.665-15.396 12.248h12.83m3.849-12.908c-1.39 3.106-4.106 7.52-3.849 12.908m0 0h16.037m-1.073-12.908c.391.389.944.66 1.714.66 2.567 0 16.359 1.856 16.359 12.248h-17m-1.073-12.908c.358 1.93 1.073 4.697 1.073 12.908\" stroke=\"#000\" stroke-width=\".641\"/><circle cx=\"24.564\" cy=\"41.567\" r=\"18.992\" stroke=\"#000\" stroke-width=\".717\"/></g><path d=\"m52.514 23.376.947 2.913.08.248h3.323l-2.478 1.8-.21.153.08.248.947 2.912-2.478-1.8-.21-.153-.212.153-2.477 1.8.946-2.912.08-.248-.21-.153-2.478-1.8h3.323l.08-.248.947-2.913Zm12.183 0 .947 2.913.08.248h3.323l-2.477 1.8-.211.153.08.248.947 2.912-2.478-1.8-.21-.153-.211.153-2.478 1.8.947-2.912.08-.248-.21-.153-2.478-1.8h3.322l.081-.248.946-2.913Zm12.183 0 .947 2.913.08.248h3.324l-2.478 1.8-.21.153.08.248.946 2.912-2.478-1.8-.21-.153-.211.153-2.478 1.8.947-2.912.08-.248-.21-.153-2.478-1.8h3.323l.08-.248.947-2.913Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".717\"/><defs><linearGradient id=\"a\" x1=\"77.946\" y1=\"18.014\" x2=\"48.464\" y2=\"81.968\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#43BBFF\"/><stop offset=\"1\" stop-color=\"#0E50EB\"/></linearGradient><linearGradient id=\"b\" x1=\".914\" y1=\"24.627\" x2=\"30.106\" y2=\"90.492\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient></defs></svg>',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4gclvw\",\"data-framer-name\":\"Frame 427318526\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-usnvqs\",\"data-framer-name\":\"Frame 427318522\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Drug score\"})}),className:\"framer-1i9en5t\",\"data-framer-name\":\"Drug score\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-10m0oum\",\"data-framer-name\":\"Line 72\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:358,svg:'<svg width=\"358\" height=\"3\" viewBox=\"-1 -1 358 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.2\" y1=\"0.5\" x2=\"356\" y2=\"0.5\" stroke=\"#525F7E\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"An examination of an individual\u2019s history with substance use, detailing past drug interactions and related behaviors. This critical insight helps maintain a drug-free and safe working environment.\"})}),className:\"framer-jjrd0i\",\"data-framer-name\":\"An examination of an individual\u2019s history with substance use, detailing past drug interactions and related behaviors. This critical insight helps maintain a drug-free and safe working environment.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tg8aui\",\"data-framer-name\":\"Frame_427318515\",fill:\"black\",intrinsicHeight:83,intrinsicWidth:98,svg:'<svg width=\"98\" height=\"83\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M35.626.405V56.18h-6.42a6.87 6.87 0 0 1-6.871-6.871V7.275a6.87 6.87 0 0 1 6.87-6.87h6.421Zm.809 0h11.767V56.18H36.435V.405ZM49.01 56.18V.405h11.386V56.18H49.01Zm12.194 0V.405h6.802a6.87 6.87 0 0 1 6.87 6.87V49.31a6.87 6.87 0 0 1-6.87 6.87h-6.802Z\" stroke=\"#000\" stroke-width=\".808\"/><rect x=\"18.697\" y=\"18.592\" width=\"59.817\" height=\"56.583\" rx=\"7.275\" fill=\"#D9D9D9\"/><rect x=\"18.697\" y=\"18.592\" width=\"59.817\" height=\"56.583\" rx=\"7.275\" fill=\"url(#a)\"/><rect x=\"18.697\" y=\"18.592\" width=\"59.817\" height=\"56.583\" rx=\"7.275\" fill=\"url(#b)\"/><rect x=\"25.568\" y=\"35.163\" width=\"45.267\" height=\"25.867\" rx=\"4.446\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".808\"/><path fill=\"#fff\" stroke=\"#000\" stroke-width=\".808\" d=\"m29.256 72.346 4.9-2.829 4.85 8.4-4.9 2.83z\"/><path fill=\"#fff\" stroke=\"#000\" stroke-width=\".808\" d=\"m30.91 79.366 8.498-4.907 1.397 2.42-8.499 4.907z\"/><path d=\"m1.773 29.504 4.85-2.8 4.25-2.454 3.5 6.063 2.354 4.076 2.02 3.5 2.393 4.144 2.334 4.042 2.144 3.715 2.523 4.368 2.333 4.042 2.8 4.85 3.466 6.003-9.1 5.254L1.772 29.504Z\" fill=\"#fff\"/><path d=\"m6.623 26.704-4.85 2.8 25.866 44.803 9.1-5.254-3.465-6.003M6.623 26.704l4.25-2.454 3.5 6.063m-7.75-3.609-4.85-8.516m12.6 12.125h-3.5m3.5 0 2.354 4.076m0 0h-3.234m3.234 0 2.02 3.5m0 0h-2.829m2.83 0 2.392 4.144m0 0h-3.2m3.2 0 2.334 4.042m0 0h-3.11m3.11 0 2.144 3.715m0 0H22.79m2.83 0 2.522 4.368m0 0h-2.523m2.523 0 2.333 4.042m0 0H27.64m2.835 0 2.8 4.85m0 0h-2.8m21.912-17.865 3.715 3.716a4.446 4.446 0 0 1-6.287 6.287L46.1 51.473l6.287-6.288Zm-.572-.571L45.528 50.9l-3.715-3.715a4.446 4.446 0 0 1 6.287-6.287l3.715 3.715Z\" stroke=\"#000\" stroke-width=\".808\"/><path d=\"M80.535 70.325c0 .399-.217.829-.72 1.27-.502.439-1.251.853-2.213 1.209-1.919.71-4.597 1.159-7.576 1.159a28.56 28.56 0 0 1-2.463-.105l5.474-7.012c2.203.237 4.093.727 5.432 1.364.693.33 1.22.69 1.568 1.059.346.366.498.721.498 1.056Zm-13.92 3.433c-2.099-.26-3.886-.75-5.15-1.375-.655-.324-1.151-.675-1.478-1.033-.326-.356-.469-.7-.469-1.025 0-.399.217-.829.72-1.269.502-.44 1.251-.854 2.213-1.21 1.919-.71 4.597-1.158 7.575-1.158.702 0 1.388.025 2.052.072l-5.463 6.998Zm13.733-1.556c.065-.056.127-.114.187-.174v2.339c0 .399-.217.829-.72 1.269-.502.44-1.251.854-2.213 1.21-1.919.71-4.597 1.158-7.576 1.158-2.978 0-5.656-.448-7.575-1.158-.962-.356-1.711-.77-2.213-1.21-.503-.44-.72-.87-.72-1.27v-2.338c.407.403.949.763 1.588 1.08 1.42.701 3.388 1.221 5.641 1.48 1.037.119 2.139.183 3.28.183 3.048 0 5.826-.457 7.856-1.209 1.014-.375 1.862-.832 2.465-1.36Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".808\"/><path d=\"M94.526 74.588c-.282.283-.74.433-1.406.389-.666-.044-1.489-.281-2.42-.71-1.86-.854-4.07-2.431-6.176-4.537-.6-.6-1.158-1.209-1.668-1.816l8.829-1.088c1.39 1.726 2.38 3.409 2.877 4.806.256.723.374 1.35.36 1.857-.015.504-.159.862-.396 1.1Zm-12.27-7.415c-1.3-1.667-2.218-3.278-2.67-4.614-.233-.692-.335-1.291-.314-1.776.022-.481.163-.825.393-1.056.282-.282.74-.432 1.407-.388.665.044 1.488.281 2.42.71 1.86.854 4.07 2.43 6.176 4.537.496.496.964.999 1.4 1.502l-8.812 1.085Zm10.81 8.61c.087.006.172.01.256.01l-1.654 1.653c-.282.282-.739.433-1.406.389-.665-.044-1.488-.281-2.42-.71-1.86-.854-4.07-2.431-6.176-4.537s-3.683-4.317-4.538-6.176c-.428-.932-.665-1.755-.709-2.42-.044-.667.106-1.125.389-1.407l1.653-1.653c.003.572.132 1.21.36 1.886.507 1.5 1.532 3.26 2.942 5.035a28.86 28.86 0 0 0 2.19 2.449c2.155 2.155 4.442 3.796 6.41 4.7.982.452 1.905.729 2.704.782Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".808\"/><defs><linearGradient id=\"a\" x1=\"72.276\" y1=\"20.867\" x2=\"35.962\" y2=\"74.997\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#43BBFF\"/><stop offset=\"1\" stop-color=\"#0E50EB\"/></linearGradient><linearGradient id=\"b\" x1=\"61.505\" y1=\"23.654\" x2=\"28.529\" y2=\"39.87\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FF9A67\"/><stop offset=\"1\" stop-color=\"#FC691F\"/></linearGradient></defs></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o4imu6\",\"data-framer-name\":\"Frame 427318523\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Medical professional score\"})}),className:\"framer-161s0b8\",\"data-framer-name\":\"Medical score\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-129inhr\",\"data-framer-name\":\"Line 72\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:358,svg:'<svg width=\"358\" height=\"4\" viewBox=\"-1 -1 358 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.2\" y1=\"1.45508\" x2=\"356\" y2=\"1.45508\" stroke=\"#525F7E\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"A verification of an individual's status against medical sanction lists and regulatory compliance checks. This ensures that medical personnel meet industry standards and regulatory requirements, safeguarding the integrity and reputation of your healthcare organization.\"})}),className:\"framer-a0ez0g\",\"data-framer-name\":\"A verification of an individual's status against medical sanction lists and regulatory compliance checks. This ensures that medical personnel meet industry standards and regulatory requirements, safeguarding the integrity and reputation of your healthcare organization.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-a18tot\",\"data-framer-name\":\"Frame_427318520\",fill:\"black\",intrinsicHeight:87,intrinsicWidth:90,svg:'<svg width=\"90\" height=\"87\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path opacity=\".4\" stroke=\"#000\" stroke-width=\".771\" d=\"M27.095 5.01h62.434v80.932H27.095z\"/><path fill=\"#D9D9D9\" d=\"M22.856 0H86.06v81.703H22.856z\"/><path fill=\"url(#a)\" d=\"M22.856 0H86.06v81.703H22.856z\"/><path fill=\"url(#b)\" d=\"M22.856 0H86.06v81.703H22.856z\"/><path d=\"M31.72 47.789h8.864m6.166 0h30.832M31.72 53.955h8.864m6.166 0h30.832M31.72 60.122h8.864m6.166 0h30.832M31.72 66.288h8.864m6.166 0h30.832M31.72 72.454h8.864m6.166 0h30.832\" stroke=\"#000\" stroke-width=\"1.542\"/><path d=\"M1.274 22.738c2.775-11.099 13.489-6.937 18.499-3.468 5.01-3.469 15.724-7.63 18.499 3.468.756 3.025.27 6.023-.985 8.864C33.935 39.19 25.1 45.662 19.773 48.56c-4.777-2.597-12.375-8.071-16.31-14.644-2.097-3.503-3.154-7.318-2.189-11.177Z\" fill=\"#fff\"/><path d=\"M3.463 33.915C1.366 30.412.309 26.597 1.274 22.738c2.775-11.099 13.489-6.937 18.499-3.468 5.01-3.469 15.724-7.63 18.499 3.468.756 3.025.27 6.023-.985 8.864M3.463 33.915c3.935 6.573 11.533 12.047 16.31 14.645 5.327-2.898 14.162-9.371 17.514-16.958M3.463 33.915l8.216-7.708 8.094 10.79 5.395-5.395h12.119\" stroke=\"#000\" stroke-width=\".771\"/><path d=\"M51.76 20.04V9.636h5.396v10.791h10.791v5.395H57.156v10.79H51.76V25.821H40.97v-5.395h10.79v-.385Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".771\"/><defs><linearGradient id=\"a\" x1=\"79.469\" y1=\"3.285\" x2=\"23.013\" y2=\"64.865\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#43BBFF\"/><stop offset=\"1\" stop-color=\"#0E50EB\"/></linearGradient><linearGradient id=\"b\" x1=\"22.856\" y1=\"12.951\" x2=\"79.99\" y2=\"77.769\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient></defs></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zybry4\",\"data-framer-name\":\"Frame 427318524\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Peers score\"})}),className:\"framer-1xmbdx6\",\"data-framer-name\":\"Peers score\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ei4j5y\",\"data-framer-name\":\"Line 72\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:358,svg:'<svg width=\"358\" height=\"3\" viewBox=\"-1 -1 358 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.2\" y1=\"0.5\" x2=\"356\" y2=\"0.5\" stroke=\"#525F7E\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"A nuanced measurement of an individual's social network, relationships, and interactions. This provides valuable context on their social influence and reliability, helping to build a trustworthy and cohesive team.\"})}),className:\"framer-ye7chi\",\"data-framer-name\":\"A nuanced measurement of an individual's social network, relationships, and interactions. This provides valuable context on their social influence and reliability, helping to build a trustworthy and cohesive team.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12fvq0q\",\"data-framer-name\":\"Frame_427318521\",fill:\"black\",intrinsicHeight:65,intrinsicWidth:122,svg:'<svg width=\"122\" height=\"65\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M81.58 4.25h40.334m-40.333 7.09h40.333m-40.333 5.32h25.263\" stroke=\"#000\" stroke-width=\"1.773\"/><rect x=\"58.976\" y=\"21.535\" width=\"9.751\" height=\"13.297\" rx=\"4.875\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".886\"/><path d=\"M51.441 45.429c0-5.608 4.546-10.154 10.154-10.154h4.513c5.608 0 10.154 4.546 10.154 10.154a2.256 2.256 0 0 1-2.257 2.256H53.698a2.256 2.256 0 0 1-2.257-2.256Z\" fill=\"#0546F0\"/><path d=\"M51.441 45.429c0-5.608 4.546-10.154 10.154-10.154h4.513c5.608 0 10.154 4.546 10.154 10.154a2.256 2.256 0 0 1-2.257 2.256H53.698a2.256 2.256 0 0 1-2.257-2.256Z\" fill=\"url(#a)\"/><rect x=\"8.449\" y=\"21.535\" width=\"9.751\" height=\"13.297\" rx=\"4.875\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".886\"/><path d=\"M.914 45.429c0-5.608 4.546-10.154 10.154-10.154h4.513c5.608 0 10.154 4.546 10.154 10.154a2.256 2.256 0 0 1-2.257 2.256H3.17A2.256 2.256 0 0 1 .914 45.43Z\" fill=\"#0546F0\"/><path d=\"M.914 45.429c0-5.608 4.546-10.154 10.154-10.154h4.513c5.608 0 10.154 4.546 10.154 10.154a2.256 2.256 0 0 1-2.257 2.256H3.17A2.256 2.256 0 0 1 .914 45.43Z\" fill=\"url(#b)\"/><path d=\"M29.28 16.955c.437 3.033 3.092 4.875 4.365 5.417.727.36 2.182-.109 2.182-4.876 0-5.958-1.637-10.292 4.91-10.292.908 0 3.054.325 4.363 1.625.364-.541 1.528-1.625 3.273-1.625 2.182 0 5.455 1.625 6 4.334-.181-3.612-2.836-10.834-12-10.834-9.165 0-12.547 5.778-13.092 8.667v7.584Z\" fill=\"#000\"/><path d=\"M78.921 63.642c-1.219-6.052-14.017-20.686-26.184-20.686a4.31 4.31 0 0 1-2.182-1.115c2.364 5.247 6.983 12.7 6.546 21.8h21.82Z\" fill=\"#fff\"/><path d=\"M33.645 22.372c-1.273-.542-3.928-2.384-4.364-5.417-.546-.723-1.855-1.517-2.728 1.083-1.09 3.25 0 5.959 2.182 7.584 1.746 1.3 3.637.902 4.364.541v11.918c0 .658-.143 1.583-.545 2.45a4.485 4.485 0 0 1-.903 1.31c-.608 3.26-1.825 7.933-1.825 21.8H57.1c.437-9.1-4.182-16.553-6.546-21.8-.617-.598-1.09-1.465-1.09-2.677 0-3.25 0-4.334 1.09-5.417 1.091-1.083 3.819-1.625 3.819-7.584V11.538c-.546-2.709-3.819-4.334-6-4.334-1.746 0-2.91 1.084-3.274 1.625-1.309-1.3-3.455-1.625-4.364-1.625-6.546 0-4.91 4.334-4.91 10.292 0 4.767-1.454 5.237-2.181 4.876Z\" fill=\"#fff\"/><path d=\"M28.735 42.956c-4.364 0-27.82 3.136-27.82 20.686h28.91c0-13.868 1.218-18.54 1.826-21.8-.665.657-1.606 1.114-2.916 1.114Z\" fill=\"#fff\"/><path d=\"M29.28 16.955c.437 3.033 3.092 4.875 4.365 5.417.727.36 2.182-.109 2.182-4.876 0-5.958-1.637-10.292 4.91-10.292.908 0 3.054.325 4.363 1.625.364-.541 1.528-1.625 3.273-1.625 2.182 0 5.455 1.625 6 4.334m-25.092 5.417c-.546-.723-1.855-1.517-2.728 1.083-1.09 3.25 0 5.959 2.182 7.584 1.746 1.3 3.637.902 4.364.541v11.918c0 .658-.143 1.583-.545 2.45M29.28 16.955V9.37C29.826 6.48 33.208.704 42.373.704c9.164 0 11.819 7.222 12 10.834m-3.818 22.209c-1.09 1.083-1.09 2.167-1.09 5.417 0 1.212.473 2.079 1.09 2.677m0-8.094c1.091-1.083 3.819-1.625 3.819-7.584m-3.819 7.584c-1.636 1.625-6.655 3.9-13.637 0m17.456-7.584V11.538m0 14.625V11.538M32.554 40.53l11.455 11.092 5.455-10.292m-16.91-.8a4.485 4.485 0 0 1-.903 1.31m18.904 0a4.31 4.31 0 0 0 2.182 1.115c12.167 0 24.965 14.634 26.184 20.686h-21.82m-6.546-21.8c2.364 5.246 6.983 12.7 6.546 21.8m0 0H29.826m1.825-21.8c-.665.657-1.606 1.114-2.916 1.114-4.364 0-27.82 3.136-27.82 20.686h28.91m1.826-21.8c-.608 3.26-1.825 7.932-1.825 21.8\" stroke=\"#000\" stroke-width=\".886\"/><mask id=\"d\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"82\" y=\"24\" width=\"40\" height=\"40\"><circle cx=\"101.969\" cy=\"44.139\" r=\"19.502\" fill=\"#D9D9D9\"/><circle cx=\"101.969\" cy=\"44.139\" r=\"19.502\" fill=\"url(#c)\"/></mask><g mask=\"url(#d)\"><circle cx=\"101.969\" cy=\"44.139\" r=\"19.502\" fill=\"#D9D9D9\"/><circle cx=\"101.969\" cy=\"44.139\" r=\"19.502\" fill=\"url(#e)\"/><circle cx=\"101.969\" cy=\"44.139\" r=\"19.502\" fill=\"url(#f)\"/><path d=\"M101.082 24.637V44.14l.043.073m10.152 17.213-10.152-17.213m19.016 7.462-19.016-7.462\" stroke=\"#000\" stroke-width=\".886\"/></g><defs><linearGradient id=\"a\" x1=\"69.204\" y1=\"36.385\" x2=\"60.096\" y2=\"44.859\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FF9A67\"/><stop offset=\"1\" stop-color=\"#FC691F\"/></linearGradient><linearGradient id=\"b\" x1=\"18.677\" y1=\"36.385\" x2=\"9.568\" y2=\"44.859\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FF9A67\"/><stop offset=\"1\" stop-color=\"#FC691F\"/></linearGradient><linearGradient id=\"c\" x1=\"117.404\" y1=\"26.206\" x2=\"91.872\" y2=\"62.205\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#43BBFF\"/><stop offset=\"1\" stop-color=\"#0E50EB\"/></linearGradient><linearGradient id=\"e\" x1=\"117.404\" y1=\"26.206\" x2=\"91.872\" y2=\"62.205\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#43BBFF\"/><stop offset=\"1\" stop-color=\"#0E50EB\"/></linearGradient><linearGradient id=\"f\" x1=\"110.38\" y1=\"28.127\" x2=\"88.428\" y2=\"38.338\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FF9A67\"/><stop offset=\"1\" stop-color=\"#FC691F\"/></linearGradient></defs></svg>',withExternalLayout:true})]})]})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hqygcv hidden-tf1r54 hidden-l241wy\",\"data-framer-name\":\"Frame 427318476\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ci4q21\",\"data-framer-name\":\"Frame 427318695\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sb6soe\",\"data-framer-name\":\"Frame 427318492\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\"},children:\"How it works?\"})}),className:\"framer-1jen0xy\",\"data-framer-name\":\"How it works?\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Transform your hiring journey: seamless access to vital data at your fingertips. PROFID is on the forefront of reshaping the employment landscape, and we're excited to join forces with employers and candidates to cultivate a job market that exudes transparency and trustworthiness.\"})}),className:\"framer-kxsvue\",\"data-framer-name\":\"Transform Your Hiring Journey: Seamless Access to Vital Data at Your Fingertips. EPASS is on the forefront of reshaping the employment landscape, and we're excited to join forces with employers and candidates to cultivate a job market that exudes transparency and trustworthiness.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tpzpyq\",\"data-framer-name\":\"Group 331\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay5=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+4200+60.3184+64.6816+0+263+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-15az58e-container\",id:\"15az58e\",nodeId:\"LIn8VBShJ\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(UserComponent,{height:\"100%\",id:\"LIn8VBShJ\",k9W7gMjUi:k9W7gMjUi3bnx0g({overlay:overlay5}),layoutId:\"LIn8VBShJ\",MY6MPKVVr:\"Get in touch\",uv92xjzJ4:\"0px 2px 5px 0px rgba(0, 0, 0, 0.16)\",variant:\"JS4ai7u1v\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay5.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-z8hqg2\"),\"data-framer-portal-id\":\"15az58e\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay5.hide()},\"uNWaMzHW1\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"474px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-awrifr-container\"),\"data-framer-portal-id\":\"15az58e\",inComponentSlot:true,nodeId:\"dq1O2NgJa\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Form,{height:\"100%\",id:\"dq1O2NgJa\",layoutId:\"dq1O2NgJa\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+4200+60.3184+64.6816+0+263+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-aveqp-container\",nodeId:\"Z_EcNeTTJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(UserComponent,{height:\"100%\",id:\"Z_EcNeTTJ\",layoutId:\"Z_EcNeTTJ\",MY6MPKVVr:\"Start simulation\",OyPYrAwsq:\"demo.theprofid.com\",uv92xjzJ4:\"0px 2px 5px 0px rgba(0, 0, 0, 0.16)\",variant:\"JIRZ4RyUy\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pndfjh\",\"data-framer-name\":\"Macbook Pro\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1wp91ax\",\"data-framer-name\":\"Shadow\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:845,svg:'<svg width=\"845\" height=\"3\" viewBox=\"0 0 845 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_299_4756)\">\\n<path d=\"M0.90332 1.76649C0.90332 1.16735 77.5522 0.681641 79.0723 0.681641H772.684C774.204 0.681641 844.247 1.16735 844.247 1.76649C844.247 2.36564 774.204 2.85135 772.684 2.85135H79.0723C77.5522 2.85135 0.90332 2.36564 0.90332 1.76649Z\" fill=\"black\" fill-opacity=\"0.75\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_299_4756\" x=\"0.189896\" y=\"-0.0317832\" width=\"844.771\" height=\"3.59677\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.356712\" result=\"effect1_foregroundBlur_299_4756\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nz6k52\",\"data-framer-name\":\"Screen Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:460,intrinsicWidth:689,svg:'<svg width=\"689\" height=\"460\" viewBox=\"0 0 689 460\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.579834 14.9501C0.579834 7.06986 6.96805 0.681641 14.8483 0.681641H674.302C682.183 0.681641 688.571 7.06986 688.571 14.9501V459.578H0.579834V14.9501Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-cmbe28\",\"data-framer-name\":\"Body\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:822,svg:'<svg width=\"822\" height=\"26\" viewBox=\"0 0 822 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.10966 0.729736C0.496813 0.729736 0 1.21545 0 1.8146V15.9178C0 19.4683 44.3865 25.6816 77.6764 25.6816H752.352C785.642 25.6816 821.151 19.4683 821.151 15.9178V1.8146C821.151 1.21545 820.654 0.729736 820.041 0.729736H1.10966Z\" fill=\"#777777\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-e1hg5p\",\"data-framer-name\":\"Bottom\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:11,intrinsicWidth:822,svg:'<svg width=\"822\" height=\"11\" viewBox=\"0 0 822 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g style=\"mix-blend-mode:multiply\">\\n<path d=\"M0 0.917969H821.151C821.151 4.46843 785.642 10.6817 752.352 10.6817H77.6764C44.3865 10.6817 0 4.46843 0 0.917969Z\" fill=\"url(#paint0_linear_299_4759)\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_299_4759\" x1=\"410.575\" y1=\"0.917969\" x2=\"410.575\" y2=\"10.6817\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#8A8A8A\"/>\\n<stop offset=\"1\" stop-color=\"#C4C4C4\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-178sq7d\",\"data-framer-name\":\"Bevel\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:121,svg:'<svg width=\"121\" height=\"10\" viewBox=\"0 0 121 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g style=\"mix-blend-mode:hard-light\" opacity=\"0.8\">\\n<path d=\"M0.653564 0.729736H120.497C120.497 6.15406 113.839 9.40865 109.401 9.40865H11.7502C7.31154 9.40865 0.653564 6.15406 0.653564 0.729736Z\" fill=\"#E1E2E3\"/>\\n<path d=\"M0.653564 0.729736H120.497C120.497 6.15406 113.839 9.40865 109.401 9.40865H11.7502C7.31154 9.40865 0.653564 6.15406 0.653564 0.729736Z\" fill=\"url(#paint0_linear_299_4760)\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_299_4760\" x1=\"120.497\" y1=\"9.40856\" x2=\"0.653564\" y2=\"9.40856\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#8A8A8A\"/>\\n<stop offset=\"0.203125\" stop-color=\"#AAAAAA\" stop-opacity=\"0\"/>\\n<stop offset=\"0.8125\" stop-color=\"#AAAAAA\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"#8A8A8A\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-cs3qac\",\"data-framer-name\":\"Bevel\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:121,svg:'<svg width=\"121\" height=\"10\" viewBox=\"0 0 121 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g style=\"mix-blend-mode:multiply\">\\n<path d=\"M0.653564 0.729736H120.497C120.497 6.15406 113.839 9.40865 109.401 9.40865H11.7502C7.31154 9.40865 0.653564 6.15406 0.653564 0.729736Z\" fill=\"#E1E2E3\"/>\\n<path d=\"M0.653564 0.729736H120.497C120.497 6.15406 113.839 9.40865 109.401 9.40865H11.7502C7.31154 9.40865 0.653564 6.15406 0.653564 0.729736Z\" fill=\"url(#paint0_linear_299_4761)\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_299_4761\" x1=\"120.497\" y1=\"9.40856\" x2=\"0.653564\" y2=\"9.40856\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#8A8A8A\"/>\\n<stop offset=\"0.203125\" stop-color=\"#AAAAAA\" stop-opacity=\"0\"/>\\n<stop offset=\"0.8125\" stop-color=\"#AAAAAA\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"#8A8A8A\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d8ihmf\",\"data-framer-name\":\"Display bottom\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13dxcb1-container\",id:\"13dxcb1\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"KjYjk9xlj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed1,{height:\"100%\",html:'<div style=\"position: relative; padding-top: 56.25%; width: 100%\"> <https://kinescope.io/pwQNCYzfZXvA1KiVhe5wP7\" allow=\"autoplay; fullscreen; picture-in-picture; encrypted-media; gyroscope; accelerometer; clipboard-write;\" frameborder=\"0\" allowfullscreen style=\"position: absolute; width: 100%; height: 100%; top: 0; left: 0;\"></iframe></div>',id:\"KjYjk9xlj\",layoutId:\"KjYjk9xlj\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://kinescope.io/pwQNCYzfZXvA1KiVhe5wP7\",width:\"100%\"})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1paim2d hidden-tf1r54 hidden-l241wy\",\"data-border\":true,\"data-framer-name\":\"Frame 427318478\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bufuka\",\"data-framer-name\":\"Frame 427318696\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p6f3sl\",\"data-framer-name\":\"Frame 427318502\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"uppercase\"},children:\"Revolution digital reputation\"})}),className:\"framer-hug7ms\",\"data-framer-name\":\"Revolution digital reputation\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\"},children:\"The innovative background check system and unique preventive protection technology deliver double the productivity and effectiveness.\"})}),className:\"framer-s75hjf\",\"data-framer-name\":\"\u2018The Innovative Background check system and unique preventive protection technology ae twice as productive and twice as effective protection.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17u98vb\",\"data-framer-name\":\"Frame 427318507\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lhd3xg\",\"data-framer-name\":\"Frame 427318503\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\"},children:\"Compare for yourself:\"})}),className:\"framer-15urr4d\",\"data-framer-name\":\"Compare for yourself:\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rqe5n3\",\"data-framer-name\":\"Frame 427318506\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ckghh1\",\"data-framer-name\":\"Frame 427318705\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-transform\":\"uppercase\"},children:\"\u0421ompetitor 3\"})}),className:\"framer-1y538nm\",\"data-framer-name\":\"\u0421ompetitor 3\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-awvwgk\",\"data-framer-name\":\"Frame 427318706\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-transform\":\"uppercase\"},children:\"\u0421ompetitor 2\"})}),className:\"framer-kurxvk\",\"data-framer-name\":\"\u0421ompetitor 2\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tv7jix\",\"data-framer-name\":\"Frame 427318707\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-transform\":\"uppercase\"},children:\"\u0421ompetitor 1\"})}),className:\"framer-1nhc9wt\",\"data-framer-name\":\"\u0421ompetitor 1\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9bc54c\",\"data-framer-name\":\"Frame 427318707\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-transform\":\"uppercase\"},children:\"PROFID\"})}),className:\"framer-1ncp5br\",\"data-framer-name\":\"Epass\",fonts:[\"Inter-Medium\"],transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-68rri6\",\"data-border\":true,\"data-framer-name\":\"Frame 427318504\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Extra fraud protection from hired employees\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"(future fraud prevention) \"})]}),className:\"framer-kvoawu\",\"data-framer-name\":\"Extra fraud protection from hired employees (future fraud prevention)\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mdrwan\",\"data-framer-name\":\"Frame 427318506\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:111,intrinsicWidth:700,svg:'<svg width=\"700\" height=\"111\" viewBox=\"0 0 700 111\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"167.5\" height=\"110\" transform=\"translate(0 0.681641)\" fill=\"#E1F3F3\"/>\\n<rect x=\"67.75\" y=\"39.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M78.25 55.6816L82.1391 59.5707L89.9173 51.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"110\" transform=\"translate(177.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"245.25\" y=\"39.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M265.583 60.0148L256.917 51.3481\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M265.583 51.3481L256.917 60.0148\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"110\" transform=\"translate(355 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"422.75\" y=\"39.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M443.083 60.0148L434.417 51.3481\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M443.083 51.3481L434.417 60.0148\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"110\" transform=\"translate(532.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"600.25\" y=\"39.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M620.583 60.0148L611.917 51.3481\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M620.583 51.3481L611.917 60.0148\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5r316o\",\"data-border\":true,\"data-framer-name\":\"Frame 427318515\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Protection against resume falsification \"})}),className:\"framer-c1st5d\",\"data-framer-name\":\"Protection against resume falsification\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-d7p4ev\",\"data-framer-name\":\"Frame 427318506\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:81,intrinsicWidth:700,svg:'<svg width=\"700\" height=\"81\" viewBox=\"0 0 700 81\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(0 0.681641)\" fill=\"#E1F3F3\"/>\\n<rect x=\"67.75\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M78.25 40.6816L82.1391 44.5707L89.9173 36.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(177.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"245.25\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M265.583 45.0148L256.917 36.3481\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M265.583 36.3481L256.917 45.0148\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(355 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"422.75\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M443.083 45.0148L434.417 36.3481\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M443.083 36.3481L434.417 45.0148\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(532.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"600.25\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M620.583 45.0148L611.917 36.3481\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M620.583 36.3481L611.917 45.0148\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-180dl1m\",\"data-border\":true,\"data-framer-name\":\"Frame 427318516\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Candidate verification before starting \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"the background check (KYC, biometric ID) \"})]}),className:\"framer-1tcrcr5\",\"data-framer-name\":\"Candidate verification before starting the background check (KYC, biometric ID)\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qhvqoz\",\"data-framer-name\":\"Frame 427318506\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:111,intrinsicWidth:700,svg:'<svg width=\"700\" height=\"111\" viewBox=\"0 0 700 111\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"167.5\" height=\"110\" transform=\"translate(0 0.681641)\" fill=\"#E1F3F3\"/>\\n<rect x=\"67.75\" y=\"39.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M78.25 55.6816L82.1391 59.5707L89.9173 51.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"110\" transform=\"translate(177.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"245.25\" y=\"39.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M265.583 60.0148L256.917 51.3481\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M265.583 51.3481L256.917 60.0148\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"110\" transform=\"translate(355 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"422.75\" y=\"39.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M443.083 60.0148L434.417 51.3481\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M443.083 51.3481L434.417 60.0148\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"110\" transform=\"translate(532.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"600.25\" y=\"39.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M610.75 55.6816L614.639 59.5707L622.417 51.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u3i5c\",\"data-border\":true,\"data-framer-name\":\"Frame 427318517\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Medical professional score\"})}),className:\"framer-zdcvoy\",\"data-framer-name\":\"Medical Check\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-euo3m5\",\"data-framer-name\":\"Frame 427318506\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:81,intrinsicWidth:700,svg:'<svg width=\"700\" height=\"81\" viewBox=\"0 0 700 81\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(0 0.681641)\" fill=\"#E1F3F3\"/>\\n<rect x=\"67.75\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M78.25 40.6816L82.1391 44.5707L89.9173 36.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(177.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"245.25\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M255.75 40.6816L259.639 44.5707L267.417 36.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(355 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"422.75\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M443.083 45.0148L434.417 36.3481\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M443.083 36.3481L434.417 45.0148\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(532.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"600.25\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M620.583 45.0148L611.917 36.3481\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M620.583 36.3481L611.917 45.0148\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2ikotd\",\"data-border\":true,\"data-framer-name\":\"Frame 427318518\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Credit Check \"})}),className:\"framer-11jemyg\",\"data-framer-name\":\"Credit Check\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-b4j4z4\",\"data-framer-name\":\"Frame 427318506\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:81,intrinsicWidth:700,svg:'<svg width=\"700\" height=\"81\" viewBox=\"0 0 700 81\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(0 0.681641)\" fill=\"#E1F3F3\"/>\\n<rect x=\"67.75\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M78.25 40.6816L82.1391 44.5707L89.9173 36.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(177.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"245.25\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M255.75 40.6816L259.639 44.5707L267.417 36.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(355 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"422.75\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M433.25 40.6816L437.139 44.5707L444.917 36.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(532.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"600.25\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M610.75 40.6816L614.639 44.5707L622.417 36.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13rgx4a\",\"data-border\":true,\"data-framer-name\":\"Frame 427318519\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Federal Criminal Search \"})}),className:\"framer-dwqaqj\",\"data-framer-name\":\"Federal Criminal Search\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-iibadv\",\"data-framer-name\":\"Frame 427318506\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:81,intrinsicWidth:700,svg:'<svg width=\"700\" height=\"81\" viewBox=\"0 0 700 81\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(0 0.681641)\" fill=\"#E1F3F3\"/>\\n<rect x=\"67.75\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M78.25 40.6816L82.1391 44.5707L89.9173 36.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(177.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"245.25\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M255.75 40.6816L259.639 44.5707L267.417 36.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(355 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"422.75\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M443.083 45.0148L434.417 36.3481\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M443.083 36.3481L434.417 45.0148\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(532.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"600.25\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M620.583 45.0148L611.917 36.3481\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M620.583 36.3481L611.917 45.0148\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m275zr\",\"data-border\":true,\"data-framer-name\":\"Frame 427318520\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"County criminal search \"})}),className:\"framer-148u1wb\",\"data-framer-name\":\"County criminal search\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qy7fh8\",\"data-framer-name\":\"Frame 427318506\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:81,intrinsicWidth:700,svg:'<svg width=\"700\" height=\"81\" viewBox=\"0 0 700 81\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(0 0.681641)\" fill=\"#E1F3F3\"/>\\n<rect x=\"67.75\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M78.25 40.6816L82.1391 44.5707L89.9173 36.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(177.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"245.25\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M255.75 40.6816L259.639 44.5707L267.417 36.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(355 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"422.75\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M433.25 40.6816L437.139 44.5707L444.917 36.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(532.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"600.25\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M610.75 40.6816L614.639 44.5707L622.417 36.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ka3sei\",\"data-border\":true,\"data-framer-name\":\"Frame 427318521\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"SSN trace \"})}),className:\"framer-b7cowa\",\"data-framer-name\":\"SSN trace\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ks3grz\",\"data-framer-name\":\"Frame 427318506\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:81,intrinsicWidth:700,svg:'<svg width=\"700\" height=\"81\" viewBox=\"0 0 700 81\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(0 0.681641)\" fill=\"#E1F3F3\"/>\\n<rect x=\"67.75\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M78.25 40.6816L82.1391 44.5707L89.9173 36.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(177.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"245.25\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M255.75 40.6816L259.639 44.5707L267.417 36.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(355 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"422.75\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M433.25 40.6816L437.139 44.5707L444.917 36.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(532.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"600.25\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M610.75 40.6816L614.639 44.5707L622.417 36.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7umn1c\",\"data-border\":true,\"data-framer-name\":\"Frame 427318522\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Sex offender registry \"})}),className:\"framer-1bdkbph\",\"data-framer-name\":\"Sex offenser registry\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-94cqbn\",\"data-framer-name\":\"Frame 427318506\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:81,intrinsicWidth:700,svg:'<svg width=\"700\" height=\"81\" viewBox=\"0 0 700 81\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(0 0.681641)\" fill=\"#E1F3F3\"/>\\n<rect x=\"67.75\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M78.25 40.6816L82.1391 44.5707L89.9173 36.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(177.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"245.25\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M255.75 40.6816L259.639 44.5707L267.417 36.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(355 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"422.75\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M433.25 40.6816L437.139 44.5707L444.917 36.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(532.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"600.25\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M610.75 40.6816L614.639 44.5707L622.417 36.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t2sg9u\",\"data-border\":true,\"data-framer-name\":\"Frame 427318523\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Recommendations ONLY  from verified employees \"})}),className:\"framer-2fyjyj\",\"data-framer-name\":\"Recommendations ONLY from verified employees\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fu3bb6\",\"data-framer-name\":\"Frame 427318506\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:81,intrinsicWidth:700,svg:'<svg width=\"700\" height=\"81\" viewBox=\"0 0 700 81\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(0 0.681641)\" fill=\"#E1F3F3\"/>\\n<rect x=\"67.75\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M78.25 40.6816L82.1391 44.5707L89.9173 36.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(177.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"245.25\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M265.583 45.0148L256.917 36.3481\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M265.583 36.3481L256.917 45.0148\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(355 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"422.75\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M443.083 45.0148L434.417 36.3481\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M443.083 36.3481L434.417 45.0148\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"80\" transform=\"translate(532.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"600.25\" y=\"24.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M620.583 45.0148L611.917 36.3481\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M620.583 36.3481L611.917 45.0148\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1elb1pi\",\"data-border\":true,\"data-framer-name\":\"Frame 427318524\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"24/7 online access to up-to-date information \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"and dashboard with deep dive analytics \"})]}),className:\"framer-n13v5w\",\"data-framer-name\":\"24/7 online access to up-to-date information and dashboard with deep dive analytics\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1izlkin\",\"data-framer-name\":\"Frame 427318506\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:111,intrinsicWidth:700,svg:'<svg width=\"700\" height=\"111\" viewBox=\"0 0 700 111\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"167.5\" height=\"110\" transform=\"translate(0 0.681641)\" fill=\"#E1F3F3\"/>\\n<rect x=\"67.75\" y=\"39.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M78.25 55.6816L82.1391 59.5707L89.9173 51.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"110\" transform=\"translate(177.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"245.25\" y=\"39.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M265.583 60.0148L256.917 51.3481\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M265.583 51.3481L256.917 60.0148\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"110\" transform=\"translate(355 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"422.75\" y=\"39.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M443.083 60.0148L434.417 51.3481\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M443.083 51.3481L434.417 60.0148\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"110\" transform=\"translate(532.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"600.25\" y=\"39.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M620.583 60.0148L611.917 51.3481\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M620.583 51.3481L611.917 60.0148\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4scdeg\",\"data-border\":true,\"data-framer-name\":\"Frame 427318525\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Possibility of issue resolution with an employee \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"without fear of being biased by the employer \"})]}),className:\"framer-jfddof\",\"data-framer-name\":\"Possibility of issue resolution with an employee without fear of being biased by the employer\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1kxstjb\",\"data-framer-name\":\"Frame 427318506\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:111,intrinsicWidth:700,svg:'<svg width=\"700\" height=\"111\" viewBox=\"0 0 700 111\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"167.5\" height=\"110\" transform=\"translate(0 0.681641)\" fill=\"#E1F3F3\"/>\\n<rect x=\"67.75\" y=\"39.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M78.25 55.6816L82.1391 59.5707L89.9173 51.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"110\" transform=\"translate(177.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"245.25\" y=\"39.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M265.583 60.0148L256.917 51.3481\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M265.583 51.3481L256.917 60.0148\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"110\" transform=\"translate(355 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"422.75\" y=\"39.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M443.083 60.0148L434.417 51.3481\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M443.083 51.3481L434.417 60.0148\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"110\" transform=\"translate(532.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"600.25\" y=\"39.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M620.583 60.0148L611.917 51.3481\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M620.583 51.3481L611.917 60.0148\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tnkuq5\",\"data-border\":true,\"data-framer-name\":\"Frame 427318526\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Online monitoring and real time \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"alerts for existing employees\"})]}),className:\"framer-1tgi0el\",\"data-framer-name\":\"Online monitoring and real time alerts for existing employees\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bwnymg\",\"data-framer-name\":\"Frame 427318506\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:111,intrinsicWidth:700,svg:'<svg width=\"700\" height=\"111\" viewBox=\"0 0 700 111\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"167.5\" height=\"110\" transform=\"translate(0 0.681641)\" fill=\"#E1F3F3\"/>\\n<rect x=\"67.75\" y=\"39.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M78.25 55.6816L82.1391 59.5707L89.9173 51.7925\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"110\" transform=\"translate(177.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"245.25\" y=\"39.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M265.583 60.0148L256.917 51.3481\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M265.583 51.3481L256.917 60.0148\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"110\" transform=\"translate(355 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"422.75\" y=\"39.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M443.083 60.0148L434.417 51.3481\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M443.083 51.3481L434.417 60.0148\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"167.5\" height=\"110\" transform=\"translate(532.5 0.681641)\" fill=\"#F4E6E6\"/>\\n<rect x=\"600.25\" y=\"39.6816\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M620.583 60.0148L611.917 51.3481\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M620.583 51.3481L611.917 60.0148\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay6=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+4832+97+1826-54,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-pjpa02-container\",id:\"pjpa02\",nodeId:\"qAp30jBYC\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(UserComponent,{height:\"100%\",id:\"qAp30jBYC\",k9W7gMjUi:k9W7gMjUi3bnx0g({overlay:overlay6}),layoutId:\"qAp30jBYC\",MY6MPKVVr:\"Get in touch\",uv92xjzJ4:\"0px 2px 5px 0px rgba(0, 0, 0, 0.16)\",variant:\"JS4ai7u1v\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay6.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1tdmc0k\"),\"data-framer-portal-id\":\"pjpa02\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay6.hide()},\"RNehVYW4H\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"474px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1xswfr0-container\"),\"data-framer-portal-id\":\"pjpa02\",inComponentSlot:true,nodeId:\"be9AcBqI2\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Form,{height:\"100%\",id:\"be9AcBqI2\",layoutId:\"be9AcBqI2\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rjtei1\",\"data-framer-name\":\"\u0422\u0440\u0435\u0442\u0438\u0439\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bbnx3n\",\"data-framer-name\":\"Frame 427318698\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f6ozvk\",\"data-framer-name\":\"Frame 427318531\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T0lvaDWzn:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\"},children:\"Reducing theft by\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\"},children:\"90% and increasing employee \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\"},children:\"engagement and efficiency \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\"},children:\"by at least 18%\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\"},children:\"Reducing theft by 90% \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\"},children:\"and increasing employee \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\"},children:\"engagement and efficiency \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\"},children:\"by at least 18%\"})]}),className:\"framer-qwq333\",\"data-framer-name\":\"Reducing theft by 90% and increasing employee engagement and efficiency by at least 18%.\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-164v92q\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay7=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{y:(componentViewport?.y||0)+0+8643.6815+20+0+-316+0+1010+0},T0lvaDWzn:{width:\"170.5px\",y:(componentViewport?.y||0)+0+12526+70+0+0+0+818+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+6835+90+0+168+0+242+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1ioapyi-container\",id:\"1ioapyi\",nodeId:\"gK9bJOKhr\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T0lvaDWzn:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(UserComponent,{height:\"100%\",id:\"gK9bJOKhr\",k9W7gMjUi:k9W7gMjUi3bnx0g({overlay:overlay7}),layoutId:\"gK9bJOKhr\",MY6MPKVVr:\"Get in touch\",uv92xjzJ4:\"0px 2px 5px 0px rgba(0, 0, 0, 0.16)\",variant:\"JS4ai7u1v\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay7.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-vbiq52\"),\"data-framer-portal-id\":\"1ioapyi\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay7.hide()},\"wxh4DN50m\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T0lvaDWzn:{width:\"350px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"474px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-cio608-container\"),\"data-framer-portal-id\":\"1ioapyi\",inComponentSlot:true,nodeId:\"k2RSmMvaE\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Form,{height:\"100%\",id:\"k2RSmMvaE\",layoutId:\"k2RSmMvaE\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{y:(componentViewport?.y||0)+0+8643.6815+20+0+-316+0+1010+0},T0lvaDWzn:{width:\"170.5px\",y:(componentViewport?.y||0)+0+12526+70+0+0+0+818+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+6835+90+0+168+0+242+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mz7yyc-container\",nodeId:\"KanAJLMs6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T0lvaDWzn:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(UserComponent,{height:\"100%\",id:\"KanAJLMs6\",layoutId:\"KanAJLMs6\",MY6MPKVVr:\"Contact us\",OyPYrAwsq:\"https://calendly.com/profid-theprofid/30min\",uv92xjzJ4:\"0px 2px 5px 0px rgba(0, 0, 0, 0.16)\",variant:\"Pz37dXdKS\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8643.6815+20+0+0),pixelHeight:634,pixelWidth:629,positionX:\"center\",positionY:\"center\",sizes:\"331px\",src:\"https://framerusercontent.com/images/FzRnsqhGb5LvQALZYIiYI7koEw.webp\",srcSet:\"https://framerusercontent.com/images/FzRnsqhGb5LvQALZYIiYI7koEw.webp 629w\"}},T0lvaDWzn:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12526+70+0+745-377),pixelHeight:634,pixelWidth:629,positionX:\"center\",positionY:\"center\",sizes:\"350px\",src:\"https://framerusercontent.com/images/FzRnsqhGb5LvQALZYIiYI7koEw.webp\",srcSet:\"https://framerusercontent.com/images/FzRnsqhGb5LvQALZYIiYI7koEw.webp 629w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6835+90+0+0),pixelHeight:634,pixelWidth:629,positionX:\"center\",positionY:\"center\",sizes:\"627px\",src:\"https://framerusercontent.com/images/FzRnsqhGb5LvQALZYIiYI7koEw.webp\",srcSet:\"https://framerusercontent.com/images/FzRnsqhGb5LvQALZYIiYI7koEw.webp 629w\"},className:\"framer-6wndr7\"})})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bbxtg0 hidden-tf1r54 hidden-l241wy\",\"data-framer-name\":\"Frame 427318311\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y1pgfd\",\"data-framer-name\":\"Frame 427318704\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wc02hg\",\"data-framer-name\":\"Frame 427318350\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\"},children:\"Pricing\"})}),className:\"framer-19eprnc\",\"data-framer-name\":\"Tariffs\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19nio1t\",\"data-framer-name\":\"Frame 427318412\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qmvr02\",\"data-framer-name\":\"Frame 427318426\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wy7len\",\"data-framer-name\":\"Frame 427318427\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\"},children:\"One-time verification\"})}),className:\"framer-1pj0i7m\",\"data-framer-name\":\"One-time verification\",fonts:[\"Inter-SemiBold\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16n8maa\",\"data-framer-name\":\"Frame 427318579\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/profid-theprofid/30min\",motionChild:true,nodeId:\"hnskf7xhI\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-r286k5 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Frame 427318414\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, rgb(86, 63, 255))\"},children:\"Talk to Sales\"})}),className:\"framer-13zd3e7\",\"data-framer-name\":\"Talk to Sales\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay8=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jdwhhq\",\"data-framer-name\":\"Frame 427318415\",id:\"1jdwhhq\",onTap:onTap3bnx0g({overlay:overlay8}),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get in touch\"})}),className:\"framer-tc6jnd\",\"data-framer-name\":\"Get Started\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay8.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-18xxb2u\"),\"data-framer-portal-id\":\"1jdwhhq\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay8.hide()},\"OmOmPhvck\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"474px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-m1g7jf-container\"),\"data-framer-portal-id\":\"1jdwhhq\",nodeId:\"zCTLe95qD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Form,{height:\"100%\",id:\"zCTLe95qD\",layoutId:\"zCTLe95qD\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f8i54m\",\"data-framer-name\":\"Frame 427318403\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yh419u\",\"data-border\":true,\"data-framer-name\":\"Frame 427318346\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cjfmjd\",\"data-framer-name\":\"Frame 427318348\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11vny2y\",\"data-framer-name\":\"Frame 427318302\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11wdgjn\",\"data-framer-name\":\"Frame 427318300\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d7b7np\",\"data-framer-name\":\"Media / Play\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1um66og\",\"data-framer-name\":\"Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 17\"><path d=\"M 11.752 9.514 C 12.346 9.118 12.346 8.245 11.752 7.849 L 2.555 1.718 C 1.89 1.275 1 1.751 1 2.55 L 1 14.813 C 1 15.612 1.89 16.088 2.555 15.645 Z\" fill=\"transparent\" stroke-width=\"1.87\" stroke=\"var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, rgb(86, 63, 255)) /* {&quot;name&quot;:&quot;blue&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11987776452,withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\"},children:\"Basic\"})}),className:\"framer-187iv0\",\"data-framer-name\":\"Basic\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q1upn2\",\"data-framer-name\":\"Frame 427318376\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Sex Offender Registry\"})}),className:\"framer-9meyqd\",\"data-framer-name\":\"Sex Offender Registry\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Global Watchlist Records\"})}),className:\"framer-1eql1ch\",\"data-framer-name\":\"Global Watchlist Records\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"National Criminal Records\"})}),className:\"framer-1m8g9s\",\"data-framer-name\":\"National Criminal Records\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uivn38\",\"data-border\":true,\"data-framer-name\":\"Frame 427318350\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rmckk1\",\"data-framer-name\":\"Frame 427318424\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rbb0sf\",\"data-framer-name\":\"Frame 427318425\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\"},children:\"$ 19.99 \"})}),className:\"framer-134kww8\",\"data-framer-name\":\"$ 9.9\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Price\"})}),className:\"framer-171xebk\",\"data-framer-name\":\"Price\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ltb8ck\",\"data-border\":true,\"data-framer-name\":\"Frame 427318408\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s10l0t\",\"data-framer-name\":\"Frame 427318348\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1796ocz\",\"data-framer-name\":\"Frame 427318302\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hkah5\",\"data-framer-name\":\"Frame 427318300\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b7uzh1\",\"data-framer-name\":\"Basic / Lightning\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-flwzbp\",\"data-framer-name\":\"Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21 23\"><path d=\"M 11.667 1.682 L 1.667 13.682 L 10.667 13.682 L 9.667 21.682 L 19.667 9.682 L 10.667 9.682 Z\" fill=\"transparent\" stroke-width=\"1.87\" stroke=\"var(--token-655c4d75-f6f5-49e7-9be1-38155d2821e9, rgb(252, 105, 31)) /* {&quot;name&quot;:&quot;Orange&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10030667707,withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-655c4d75-f6f5-49e7-9be1-38155d2821e9, rgb(252, 105, 31))\"},children:\"Essential\"})}),className:\"framer-vj3d64\",\"data-framer-name\":\"Essential\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-akcki1\",\"data-framer-name\":\"Frame 427318376\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Sex Offender Registry\"})}),className:\"framer-1qwy636\",\"data-framer-name\":\"Sex Offender Registry\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Global Watchlist Records\"})}),className:\"framer-19oa03s\",\"data-framer-name\":\"Global Watchlist Records\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"National Criminal Records\"})}),className:\"framer-dofyiu\",\"data-framer-name\":\"National Criminal Records\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"County Criminal Search (1)\"})}),className:\"framer-1vbhj6d\",\"data-framer-name\":\"Country Criminal Search (1)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Education Verification (Highest level)\"})}),className:\"framer-18yzvjg\",\"data-framer-name\":\"Education Verification (Highest level)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Employment Verification (Current)\"})}),className:\"framer-ec9seo\",\"data-framer-name\":\"Employment Verification (Current)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"EPASS Score (limited)\"})}),className:\"framer-pn3rlm\",\"data-framer-name\":\"EPASS Score (limited)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pz1swh\",\"data-border\":true,\"data-framer-name\":\"Frame 427318350\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nx2nam\",\"data-framer-name\":\"Frame 427318424\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8glfvn\",\"data-framer-name\":\"Frame 427318425\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-655c4d75-f6f5-49e7-9be1-38155d2821e9, rgb(252, 105, 31))\"},children:\"$ 44.99\"})}),className:\"framer-19g44aq\",\"data-framer-name\":\"$ 39.9\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--token-655c4d75-f6f5-49e7-9be1-38155d2821e9, rgb(252, 105, 31))\"},children:\"Price\"})}),className:\"framer-1177dlg\",\"data-framer-name\":\"Price\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i6yhkk\",\"data-border\":true,\"data-framer-name\":\"Frame 427318410\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-151nfwp\",\"data-framer-name\":\"Frame 427318348\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9iol3j\",\"data-framer-name\":\"Frame 427318302\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5sxm3l\",\"data-framer-name\":\"Frame 427318300\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-3l6jz3\",\"data-framer-name\":\"Basic / Star\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gwsx53\",\"data-framer-name\":\"Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21 20\"><path d=\"M 13.069 6.425 L 10.749 1.445 C 10.586 1.094 10.081 1.094 9.918 1.445 L 7.598 6.425 C 7.532 6.568 7.395 6.667 7.237 6.686 L 1.738 7.331 C 1.35 7.377 1.194 7.852 1.481 8.115 L 5.546 11.838 C 5.663 11.945 5.716 12.105 5.685 12.259 L 4.605 17.639 C 4.529 18.018 4.937 18.312 5.278 18.123 L 10.11 15.444 C 10.249 15.367 10.418 15.367 10.557 15.444 L 15.389 18.123 C 15.73 18.312 16.138 18.018 16.062 17.639 L 14.982 12.259 C 14.951 12.105 15.004 11.945 15.121 11.838 L 19.186 8.115 C 19.473 7.852 19.317 7.377 18.929 7.331 L 13.43 6.686 C 13.272 6.667 13.135 6.568 13.069 6.425 Z\" fill=\"transparent\" stroke-width=\"1.87\" stroke=\"var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, rgb(86, 63, 255)) /* {&quot;name&quot;:&quot;blue&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:8755544193,withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\"},children:\"Pro\"})}),className:\"framer-1nntu2u\",\"data-framer-name\":\"Pro\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aqfn78\",\"data-framer-name\":\"Frame 427318376\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Sex Offender Registry\"})}),className:\"framer-zr42lz\",\"data-framer-name\":\"Sex Offender Registry\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Global Watchlist Records\"})}),className:\"framer-1fvv42g\",\"data-framer-name\":\"Global Watchlist Records\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"National Criminal Records\"})}),className:\"framer-1fu4pli\",\"data-framer-name\":\"National Criminal Records\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"County Criminal Search (1)\"})}),className:\"framer-4tqwdm\",\"data-framer-name\":\"Country Criminal Search (1)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Education Verification (Highest level)\"})}),className:\"framer-1tthiob\",\"data-framer-name\":\"Education Verification (Highest level)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Employment Verification (Current)\"})}),className:\"framer-orrecb\",\"data-framer-name\":\"Employment Verification (Current)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Medical professional score\"})}),className:\"framer-11eaehs\",\"data-framer-name\":\"Medical Check\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Federal Criminal Search\"})}),className:\"framer-t17aul\",\"data-framer-name\":\"Federal Criminal Search\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Credit Check\"})}),className:\"framer-w2inwm\",\"data-framer-name\":\"Credit Check\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"EPASS Score (limited)\"})}),className:\"framer-12hh36t\",\"data-framer-name\":\"EPASS Score (limited)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1szdqcf\",\"data-border\":true,\"data-framer-name\":\"Frame 427318350\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e9ofco\",\"data-framer-name\":\"Frame 427318424\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1z0z8hq\",\"data-framer-name\":\"Frame 427318425\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\"},children:\"$ 64.99\"})}),className:\"framer-1ymhgh7\",\"data-framer-name\":\"$ 59.9\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Price\"})}),className:\"framer-1cdkfqr\",\"data-framer-name\":\"Price\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]})]})]})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tazws0-container\",isModuleExternal:true,nodeId:\"W7hE0czzG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div style=\"font-size:20px;gap:15px;display:flex\">Additional third-party fees may apply.   <a style=\"text-decoration:none;\" href=\"/fees\">Learn more about passthrough fees.</a></div>',id:\"W7hE0czzG\",layoutId:\"W7hE0czzG\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7b6nrq\",\"data-framer-name\":\"Frame 427318412\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ch42ze\",\"data-framer-name\":\"Frame 427318411\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w3lli4\",\"data-framer-name\":\"Frame 427318413\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-oid0w7\",\"data-framer-name\":\"Frame 427318302\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Additional options\"})}),className:\"framer-1m3mv5r\",\"data-framer-name\":\"Additional options\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12l1aft\",\"data-framer-name\":\"Line 44\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:53,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"53\" viewBox=\"-1 -1 3 53\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"0.181641\" x2=\"0.499998\" y2=\"50.1816\" stroke=\"#E5E7EC\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" If you require a more customized solution, we can offer one. Just contact us.\"})}),className:\"framer-1mvczh9\",\"data-framer-name\":\"We suggest choosing an option that will give you a complete picture of the candidate or client\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nvdbey\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+7648+80+1052+0+0+30+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kdbq3o-container\",nodeId:\"hgd1RfkMj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(UserComponent,{height:\"100%\",id:\"hgd1RfkMj\",layoutId:\"hgd1RfkMj\",MY6MPKVVr:\"Contact us\",OyPYrAwsq:\"https://calendly.com/profid-theprofid/30min\",uv92xjzJ4:\"0px 2px 5px 0px rgba(0, 0, 0, 0.16)\",variant:\"QMML8bdTa\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay9=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+7648+80+1052+0+0+30+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-ztdej4-container\",id:\"ztdej4\",nodeId:\"yfDIhVXpk\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(UserComponent,{height:\"100%\",id:\"yfDIhVXpk\",k9W7gMjUi:k9W7gMjUi3bnx0g({overlay:overlay9}),layoutId:\"yfDIhVXpk\",MY6MPKVVr:\"Get in touch\",uv92xjzJ4:\"0px 2px 5px 0px rgba(0, 0, 0, 0.16)\",variant:\"nx1rwbQGT\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay9.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-yy1f5i\"),\"data-framer-portal-id\":\"ztdej4\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay9.hide()},\"XgQkw6Y7b\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"474px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1vhxp9t-container\"),\"data-framer-portal-id\":\"ztdej4\",inComponentSlot:true,nodeId:\"HYDEoTTyu\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Form,{height:\"100%\",id:\"HYDEoTTyu\",layoutId:\"HYDEoTTyu\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})})})]})]})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qeenns hidden-tf1r54 hidden-l241wy\",\"data-framer-name\":\"Frame 427318477\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3uq7bq\",\"data-framer-name\":\"Frame 427318697\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19kr644\",\"data-framer-name\":\"Frame 427318501\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\"},children:\"Classical Background Check \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\"},children:\"is outdated and does not work\"})]}),className:\"framer-1ej32c8\",\"data-framer-name\":\"Classical Background Check is outdated and does not work\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Those who have passed background checks are responsible for stealing $4.7 trillion globally, with approximately $1.5 trillion of that occurring in the US.\"})}),className:\"framer-1dmask2\",\"data-framer-name\":\"Those who passed the background check steal 4.7 trillion dollars, of which about 1.5 trillion are in the US.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\"},children:\"is the GPD of India and Canada \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\"},children:\"combined\"})]}),className:\"framer-vvhgxx\",\"data-framer-name\":\"is the GPD of India and Canada combined\",fonts:[\"Inter-SemiBold\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1177,intrinsicWidth:2449,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8963+110+0+1015-740),pixelHeight:1177,pixelWidth:2449,sizes:\"1201px\",src:\"https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg\",srcSet:\"https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg 2449w\"},className:\"framer-o36wk4\",\"data-framer-name\":\"Group_310\",transformTemplate:transformTemplate1})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mtiw4g hidden-tf1r54 hidden-l241wy\",\"data-framer-name\":\"Frame 427318477\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8yaezi\",\"data-framer-name\":\"Frame 427318493\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lv2ahh\",\"data-framer-name\":\"Frame 427318500\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17bd5hr\",\"data-framer-name\":\"Frame 427318499\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-q57oas\",\"data-framer-name\":\"Group 306\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:66,intrinsicWidth:65,svg:'<svg width=\"65\" height=\"66\" viewBox=\"0 0 65 66\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M54.3636 41.5453C53.9703 42.4364 53.853 43.4249 54.0268 44.3834C54.2006 45.3418 54.6575 46.2262 55.3386 46.9225L55.5159 47.0998C56.0653 47.6486 56.5012 48.3003 56.7985 49.0177C57.0959 49.735 57.249 50.504 57.249 51.2805C57.249 52.057 57.0959 52.826 56.7985 53.5433C56.5012 54.2607 56.0653 54.9124 55.5159 55.4612C54.9671 56.0106 54.3154 56.4464 53.5981 56.7438C52.8807 57.0412 52.1118 57.1942 51.3352 57.1942C50.5587 57.1942 49.7897 57.0412 49.0724 56.7438C48.355 56.4464 47.7033 56.0106 47.1545 55.4612L46.9773 55.2839C46.2809 54.6028 45.3965 54.1459 44.4381 53.9721C43.4797 53.7983 42.4911 53.9156 41.6 54.3089C40.7261 54.6834 39.9809 55.3053 39.4559 56.098C38.931 56.8907 38.6492 57.8195 38.6455 58.7703V59.2725C38.6455 60.8397 38.0229 62.3427 36.9147 63.4509C35.8065 64.5591 34.3035 65.1816 32.7364 65.1816C31.1692 65.1816 29.6662 64.5591 28.558 63.4509C27.4498 62.3427 26.8273 60.8397 26.8273 59.2725V59.0066C26.8044 58.0287 26.4878 57.0803 25.9188 56.2846C25.3497 55.489 24.5544 54.8829 23.6364 54.5453C22.7452 54.152 21.7567 54.0347 20.7983 54.2084C19.8398 54.3822 18.9554 54.8391 18.2591 55.5203L18.0818 55.6975C17.533 56.247 16.8813 56.6828 16.164 56.9802C15.4466 57.2775 14.6777 57.4306 13.9011 57.4306C13.1246 57.4306 12.3557 57.2775 11.6383 56.9802C10.921 56.6828 10.2692 56.247 9.72045 55.6975C9.17105 55.1488 8.7352 54.497 8.43783 53.7797C8.14046 53.0623 7.9874 52.2934 7.9874 51.5169C7.9874 50.7403 8.14046 49.9714 8.43783 49.254C8.7352 48.5367 9.17105 47.885 9.72045 47.3362L9.89773 47.1589C10.5789 46.4626 11.0358 45.5782 11.2096 44.6197C11.3833 43.6613 11.266 42.6728 10.8727 41.7816C10.4982 40.9078 9.87632 40.1625 9.08365 39.6375C8.29097 39.1126 7.3621 38.8309 6.41136 38.8271H5.90909C4.3419 38.8271 2.8389 38.2045 1.73073 37.0964C0.622563 35.9882 0 34.4852 0 32.918C0 31.3508 0.622563 29.8478 1.73073 28.7396C2.8389 27.6315 4.3419 27.0089 5.90909 27.0089H6.175C7.15294 26.986 8.10138 26.6695 8.89702 26.1004C9.69266 25.5314 10.2987 24.7361 10.6364 23.818C11.0297 22.9269 11.147 21.9383 10.9732 20.9799C10.7994 20.0215 10.3425 19.1371 9.66136 18.4407L9.48409 18.2635C8.93468 17.7147 8.49884 17.063 8.20146 16.3456C7.90409 15.6283 7.75103 14.8593 7.75103 14.0828C7.75103 13.3062 7.90409 12.5373 8.20146 11.8199C8.49884 11.1026 8.93468 10.4509 9.48409 9.90209C10.0329 9.35269 10.6846 8.91684 11.4019 8.61947C12.1193 8.3221 12.8882 8.16904 13.6648 8.16904C14.4413 8.16904 15.2102 8.3221 15.9276 8.61947C16.645 8.91684 17.2967 9.35269 17.8455 9.90209L18.0227 10.0794C18.719 10.7605 19.6035 11.2174 20.5619 11.3912C21.5203 11.565 22.5089 11.4477 23.4 11.0544H23.6364C24.5102 10.6798 25.2555 10.058 25.7805 9.26529C26.3054 8.47261 26.5871 7.54374 26.5909 6.593V6.09073C26.5909 4.52354 27.2135 3.02054 28.3216 1.91237C29.4298 0.804204 30.9328 0.181641 32.5 0.181641C34.0672 0.181641 35.5702 0.804204 36.6784 1.91237C37.7865 3.02054 38.4091 4.52354 38.4091 6.09073V6.35664C38.4129 7.30737 38.6946 8.23625 39.2195 9.02892C39.7445 9.8216 40.4898 10.4435 41.3636 10.818C42.2548 11.2113 43.2433 11.3286 44.2017 11.1548C45.1602 10.9811 46.0446 10.5241 46.7409 9.843L46.9182 9.66573C47.467 9.11632 48.1187 8.68048 48.836 8.38311C49.5534 8.08573 50.3223 7.93267 51.0989 7.93267C51.8754 7.93267 52.6443 8.08573 53.3617 8.38311C54.079 8.68048 54.7307 9.11632 55.2795 9.66573C55.8289 10.2145 56.2648 10.8662 56.5622 11.5836C56.8595 12.3009 57.0126 13.0699 57.0126 13.8464C57.0126 14.623 56.8595 15.3919 56.5622 16.1092C56.2648 16.8266 55.8289 17.4783 55.2795 18.0271L55.1023 18.2044C54.4211 18.9007 53.9642 19.7851 53.7904 20.7435C53.6166 21.702 53.734 22.6905 54.1273 23.5816V23.818C54.5018 24.6919 55.1237 25.4371 55.9163 25.9621C56.709 26.487 57.6379 26.7688 58.5886 26.7725H59.0909C60.6581 26.7725 62.1611 27.3951 63.2693 28.5033C64.3774 29.6114 65 31.1144 65 32.6816C65 34.2488 64.3774 35.7518 63.2693 36.86C62.1611 37.9682 60.6581 38.5907 59.0909 38.5907H58.825C57.8743 38.5945 56.9454 38.8762 56.1527 39.4012C55.36 39.9261 54.7382 40.6714 54.3636 41.5453Z\" fill=\"white\" stroke=\"#14181F\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 33.1816C14 29.1816 20.9 21.1816 32.5 21.1816C44.1 21.1816 51 29.1816 53 33.1816C50.1667 37.515 42.1 46.1816 32.5 46.1816C22.9 46.1816 14.8333 37.515 12 33.1816ZM32.5 39.6816C36.366 39.6816 39.5 36.5476 39.5 32.6816C39.5 28.8156 36.366 25.6816 32.5 25.6816C28.634 25.6816 25.5 28.8156 25.5 32.6816C25.5 36.5476 28.634 39.6816 32.5 39.6816Z\" fill=\"url(#paint0_linear_299_5138)\"/>\\n<path d=\"M39.5 32.6816C39.5 36.5476 36.366 39.6816 32.5 39.6816C28.634 39.6816 25.5 36.5476 25.5 32.6816C25.5 28.8156 28.634 25.6816 32.5 25.6816C36.366 25.6816 39.5 28.8156 39.5 32.6816Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 33.1816C14 29.1816 20.9 21.1816 32.5 21.1816C44.1 21.1816 51 29.1816 53 33.1816C50.1667 37.515 42.1 46.1816 32.5 46.1816C22.9 46.1816 14.8333 37.515 12 33.1816ZM32.5 39.6816C36.366 39.6816 39.5 36.5476 39.5 32.6816C39.5 28.8156 36.366 25.6816 32.5 25.6816C28.634 25.6816 25.5 28.8156 25.5 32.6816C25.5 36.5476 28.634 39.6816 32.5 39.6816Z\" stroke=\"#14181F\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M39.5 32.6816C39.5 36.5476 36.366 39.6816 32.5 39.6816C28.634 39.6816 25.5 36.5476 25.5 32.6816C25.5 28.8156 28.634 25.6816 32.5 25.6816C36.366 25.6816 39.5 28.8156 39.5 32.6816Z\" stroke=\"#14181F\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_299_5138\" x1=\"12.3154\" y1=\"23.7646\" x2=\"34.8534\" y2=\"56.7553\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1E61ED\"/>\\n<stop offset=\"1\" stop-color=\"#67ACF2\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Government Scoring Systems\"})}),className:\"framer-3emh00\",\"data-framer-name\":\"Government social scoring systems\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-89h6hi\",\"data-framer-name\":\"Frame 427318498\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-fp0xui\",\"data-framer-name\":\"Frame 427318494\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:75,intrinsicWidth:69,svg:'<svg width=\"69\" height=\"75\" viewBox=\"0 0 69 75\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M30.0154 0.889648L13.0186 17.8336V74.8896H68.5186V0.889648H30.0154Z\" fill=\"white\"/>\\n<path d=\"M30.4908 0.889648V18.3619H13.0186\" stroke=\"black\" stroke-width=\"1.11597\"/>\\n<path d=\"M28.918 68.3955L23.4365 65.2972L3.74641 36.5195L1.16795 32.7509C0.368571 31.9516 -0.819083 29.9417 0.825362 28.2972L3.9087 26.2417C5.55314 25.1454 7.56302 27.1553 8.3624 28.2972L10.6704 31.7232L30.2883 60.8435L30.9867 66.896L31.3161 69.7509L28.918 68.3955Z\" fill=\"white\"/>\\n<path d=\"M28.918 48.8899H53.9272M32.6865 56.4269H50.1587M1.16795 32.7509C0.368571 31.9516 -0.819083 29.9417 0.825362 28.2972C1.16796 28.0688 2.26426 27.338 3.9087 26.2417C5.55315 25.1454 7.56302 27.1553 8.3624 28.2972M1.16795 32.7509L8.3624 28.2972M1.16795 32.7509L3.74641 36.5195M23.4365 65.2972L30.2883 60.8435M23.4365 65.2972L28.918 68.3955M23.4365 65.2972L3.74641 36.5195M30.2883 60.8435L30.9867 66.896M30.2883 60.8435L10.6704 31.7232M28.918 68.3955L31.3161 69.7509L30.9867 66.896M28.918 68.3955C29.0409 67.8576 29.6269 66.8046 30.9867 66.896M8.3624 28.2972L10.6704 31.7232M3.74641 36.5195L10.6704 31.7232M10.6704 38.9176L25.1494 60.1584\" stroke=\"black\" stroke-width=\"1.11597\"/>\\n<mask id=\"mask0_299_5143\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"32\" y=\"21\" width=\"20\" height=\"21\">\\n<circle cx=\"41.7645\" cy=\"31.6542\" r=\"9.37392\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</mask>\\n<g mask=\"url(#mask0_299_5143)\">\\n<circle cx=\"41.7645\" cy=\"31.6542\" r=\"9.37392\" fill=\"white\"/>\\n<circle cx=\"41.7645\" cy=\"31.6542\" r=\"9.37392\" fill=\"url(#paint0_linear_299_5143)\"/>\\n<circle cx=\"41.7645\" cy=\"31.6542\" r=\"9.37392\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M38.6398 28.1393C38.6398 26.6293 39.8639 25.4052 41.3739 25.4052C42.8839 25.4052 44.108 26.6293 44.108 28.1393V30.4828C44.108 31.9927 42.8839 33.2168 41.3739 33.2168C39.8639 33.2168 38.6398 31.9928 38.6398 30.4828V28.1393Z\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M41.374 33.6074C35.1247 33.6074 33.5624 38.8152 33.5624 41.419H48.795C48.9252 38.8152 47.6233 33.6074 41.374 33.6074Z\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<circle cx=\"41.7645\" cy=\"31.6542\" r=\"9.37392\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_299_5143\" x1=\"32\" y1=\"24.9851\" x2=\"44.8142\" y2=\"43.7779\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#0B4DEB\"/>\\n<stop offset=\"1\" stop-color=\"#76BCF3\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Social media \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"recommendations\"})]}),className:\"framer-1m9jsz7\",\"data-framer-name\":\"Social media reccomendations\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1812n9f\",\"data-framer-name\":\"Frame 427318497\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Fraud prevention \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"software\"})]}),className:\"framer-74hlbi\",\"data-framer-name\":\"Fraud prevention software\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-198mrxk\",\"data-framer-name\":\"Group 302\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:69,intrinsicWidth:81,svg:'<svg width=\"81\" height=\"69\" viewBox=\"0 0 81 69\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M23.2731 25.3162C23.6311 27.8225 25.8092 29.3442 26.8535 29.7917C27.4502 30.0901 28.6435 29.7022 28.6435 25.7638C28.6435 20.8407 27.3009 17.2603 32.6715 17.2603C33.4174 17.2603 35.1778 17.5288 36.2519 18.6029C36.5503 18.1554 37.5051 17.2603 38.9372 17.2603C40.7275 17.2603 43.4128 18.6029 43.8603 20.8407C43.7111 17.857 41.5331 11.8896 34.0142 11.8896C26.4953 11.8896 23.7206 16.6635 23.2731 19.0505V25.3162Z\" fill=\"black\"/>\\n<path d=\"M64 63.8896C63 58.8896 52.5 46.7987 42.5177 46.7987C42.0398 46.7191 41.3069 46.4439 40.7275 45.8778C42.6668 50.2128 46.4559 56.3708 46.0979 63.8896H64Z\" fill=\"white\"/>\\n<path d=\"M26.8535 29.7917C25.8092 29.3442 23.6311 27.8225 23.2731 25.3162C22.8256 24.7195 21.7514 24.0631 21.0353 26.2113C20.1402 28.8966 21.0353 31.1344 22.8256 32.4771C24.2577 33.5512 25.8091 33.223 26.4058 32.9246V42.7708C26.4058 43.3147 26.2884 44.0789 25.9582 44.7957C25.7791 45.1846 25.5373 45.5596 25.2176 45.8778C24.7186 48.5718 23.7203 52.4323 23.7203 63.8896H46.0979C46.4559 56.3708 42.6668 50.2128 40.7275 45.8778C40.2214 45.3835 39.8324 44.6673 39.8324 43.6659C39.8324 40.9806 39.8324 40.0855 40.7275 39.1903C41.6226 38.2952 43.8603 37.8477 43.8603 32.9246V20.8407C43.4128 18.6029 40.7275 17.2603 38.9372 17.2603C37.5051 17.2603 36.5503 18.1554 36.2519 18.6029C35.1778 17.5288 33.4174 17.2603 32.6715 17.2603C27.3009 17.2603 28.6435 20.8407 28.6435 25.7638C28.6435 29.7022 27.4502 30.0901 26.8535 29.7917Z\" fill=\"white\"/>\\n<path d=\"M22.8256 46.7987C19.2449 46.7987 0 49.3896 0 63.8896H23.7203C23.7203 52.4323 24.7186 48.5718 25.2176 45.8778C24.6722 46.4209 23.9 46.7987 22.8256 46.7987Z\" fill=\"white\"/>\\n<path d=\"M23.2731 25.3162C23.6311 27.8225 25.8092 29.3442 26.8535 29.7917C27.4502 30.0901 28.6435 29.7022 28.6435 25.7638C28.6435 20.8407 27.3009 17.2603 32.6715 17.2603C33.4174 17.2603 35.1778 17.5288 36.2519 18.6029C36.5503 18.1554 37.5051 17.2603 38.9372 17.2603C40.7275 17.2603 43.4128 18.6029 43.8603 20.8407M23.2731 25.3162C22.8256 24.7195 21.7514 24.0631 21.0353 26.2113C20.1402 28.8966 21.0353 31.1344 22.8256 32.4771C24.2577 33.5512 25.8091 33.223 26.4058 32.9246V42.7708C26.4058 43.3147 26.2884 44.0789 25.9582 44.7957M23.2731 25.3162V19.0505C23.7206 16.6635 26.4953 11.8896 34.0142 11.8896C41.533 11.8896 43.7111 17.857 43.8603 20.8407M40.7275 39.1903C39.8324 40.0855 39.8324 40.9806 39.8324 43.6659C39.8324 44.6673 40.2214 45.3835 40.7275 45.8778M40.7275 39.1903C41.6226 38.2952 43.8603 37.8477 43.8603 32.9246M40.7275 39.1903C39.3848 40.533 35.2673 42.4127 29.5386 39.1903M43.8603 32.9246C43.8603 28.9862 43.8603 23.2276 43.8603 20.8407M43.8603 32.9246V20.8407M25.9582 44.7957L35.3568 53.9596L39.8324 45.4561M25.9582 44.7957C25.7791 45.1846 25.5373 45.5596 25.2176 45.8778M40.7275 45.8778C41.3069 46.4439 42.0398 46.7191 42.5177 46.7987C52.5 46.7987 63 58.8896 64 63.8896H46.0979M40.7275 45.8778C42.6668 50.2128 46.4559 56.3708 46.0979 63.8896M46.0979 63.8896H23.7203M25.2176 45.8778C24.6722 46.4209 23.9 46.7987 22.8256 46.7987C19.2449 46.7987 0 49.3896 0 63.8896H23.7203M25.2176 45.8778C24.7186 48.5718 23.7203 52.4323 23.7203 63.8896\" stroke=\"black\" stroke-width=\"0.895105\"/>\\n<rect x=\"58.5\" y=\"39.3896\" width=\"5\" height=\"7\" stroke=\"black\"/>\\n<rect x=\"55.5\" y=\"46.3896\" width=\"11\" height=\"22\" rx=\"1.5\" fill=\"white\" stroke=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M27 24.8896V27.8896C27.1667 29.3896 28.8 32.3896 34 32.3896C39.2 32.3896 41.1667 30.0563 41.5 28.8896C41.8088 29.9704 43.6907 32.0522 48.7357 32.3531C49.3794 32.3915 49.8585 31.7883 49.7108 31.1606L48.1814 24.6606C48.0751 24.2089 47.672 23.8896 47.208 23.8896H28C27.4477 23.8896 27 24.3374 27 24.8896ZM35.5 29.3896C33.1 29.3896 32.5 27.223 32.5 25.8896L35.5 26.3896C37.2649 26.3896 37.7319 27.0386 37.9319 27.6492C37.9829 27.8052 37.9804 27.9732 37.9457 28.1336C37.8141 28.7433 37.6137 29.3896 35.5 29.3896Z\" fill=\"url(#paint0_linear_299_5157)\"/>\\n<circle cx=\"61\" cy=\"20.8896\" r=\"19.5\" fill=\"white\" stroke=\"black\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_299_5157\" x1=\"30\" y1=\"23.8896\" x2=\"45.5\" y2=\"31.8896\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1058EC\"/>\\n<stop offset=\"1\" stop-color=\"#1050EB\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o4fe77\",\"data-framer-name\":\"Frame 427318496\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Background checks\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"services\"})]}),className:\"framer-1m2va2j\",\"data-framer-name\":\"Background checks services\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-is37k4\",\"data-framer-name\":\"Group 304\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:78,intrinsicWidth:93,svg:'<svg width=\"93\" height=\"78\" viewBox=\"0 0 93 78\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"4.5\" y=\"4.38965\" width=\"44\" height=\"59\" stroke=\"black\"/>\\n<rect y=\"0.889648\" width=\"45\" height=\"60\" fill=\"white\"/>\\n<rect x=\"49.335\" y=\"50.4874\" width=\"5\" height=\"7\" transform=\"rotate(45 49.335 50.4874)\" fill=\"white\" stroke=\"black\"/>\\n<rect x=\"42.2637\" y=\"53.3165\" width=\"11\" height=\"22\" rx=\"1.5\" transform=\"rotate(45 42.2637 53.3165)\" fill=\"white\" stroke=\"black\"/>\\n<circle cx=\"64.1841\" cy=\"39.1739\" r=\"19.5\" transform=\"rotate(45 64.1841 39.1739)\" fill=\"white\" stroke=\"black\"/>\\n<path d=\"M7 9.38965H13M17.5 9.38965H39\" stroke=\"black\"/>\\n<path d=\"M7 13.8896H13M17.5 13.8896H39\" stroke=\"black\"/>\\n<path d=\"M7 17.8896H13M17.5 17.8896H39\" stroke=\"black\"/>\\n<path d=\"M7 21.8896H13M17.5 21.8896H39\" stroke=\"black\"/>\\n<path d=\"M7 25.8896H13M17.5 25.8896H39\" stroke=\"black\"/>\\n<path d=\"M57 38.3896L62 43.3896L71.5 33.8896\" stroke=\"#0546F0\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15cpxbw\",\"data-framer-name\":\"Frame 427318495\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Professional \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Networks\"})]}),className:\"framer-uy99kz\",\"data-framer-name\":\"Professional Networks\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-189uzvi\",\"data-framer-name\":\"Group 305\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:69,intrinsicWidth:69,svg:'<svg width=\"69\" height=\"69\" viewBox=\"0 0 69 69\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M15.8301 17.8232L21.5 23.4932M53.2854 17.8232L46.012 25.0966M52.0255 52.6439L42.9194 43.5378M15.8301 52.6439L25.738 42.7359\" stroke=\"black\"/>\\n<mask id=\"mask0_299_5181\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"20\" height=\"21\">\\n<circle cx=\"9.7645\" cy=\"10.6542\" r=\"9.37392\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</mask>\\n<g mask=\"url(#mask0_299_5181)\">\\n<circle cx=\"9.7645\" cy=\"10.6542\" r=\"9.37392\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M7.22139 7.13929C7.22139 5.62931 8.44547 4.40523 9.95545 4.40523C11.4654 4.40523 12.6895 5.62931 12.6895 7.13929V9.48277C12.6895 10.9927 11.4654 12.2168 9.95545 12.2168C8.44547 12.2168 7.22139 10.9928 7.22139 9.48277V7.13929Z\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M2.1438 20.419C2.1438 17.8152 3.70612 12.6074 9.9554 12.6074C16.2047 12.6074 17.5066 17.8152 17.3764 20.419\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</g>\\n<mask id=\"mask1_299_5181\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"48\" width=\"20\" height=\"21\">\\n<circle cx=\"9.7645\" cy=\"58.4227\" r=\"9.37392\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</mask>\\n<g mask=\"url(#mask1_299_5181)\">\\n<circle cx=\"9.7645\" cy=\"58.4227\" r=\"9.37392\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M7.22139 54.9078C7.22139 53.3979 8.44547 52.1738 9.95545 52.1738C11.4654 52.1738 12.6895 53.3979 12.6895 54.9078V57.2513C12.6895 58.7613 11.4654 59.9854 9.95545 59.9854C8.44547 59.9854 7.22139 58.7613 7.22139 57.2513V54.9078Z\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M2.1438 68.1876C2.1438 65.5837 3.70612 60.376 9.9554 60.376C16.2047 60.376 17.5066 65.5837 17.3764 68.1876\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</g>\\n<mask id=\"mask2_299_5181\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"48\" y=\"0\" width=\"21\" height=\"21\">\\n<circle cx=\"58.7167\" cy=\"10.6542\" r=\"9.37392\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</mask>\\n<g mask=\"url(#mask2_299_5181)\">\\n<circle cx=\"58.7167\" cy=\"10.6542\" r=\"9.37392\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M56.1735 7.13929C56.1735 5.62931 57.3976 4.40523 58.9076 4.40523C60.4176 4.40523 61.6417 5.62931 61.6417 7.13929V9.48277C61.6417 10.9927 60.4176 12.2168 58.9076 12.2168C57.3976 12.2168 56.1735 10.9928 56.1735 9.48277V7.13929Z\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M51.0959 20.419C51.0959 17.8152 52.6583 12.6074 58.9075 12.6074C65.1568 12.6074 66.4588 17.8152 66.3286 20.419\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</g>\\n<mask id=\"mask3_299_5181\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"16\" y=\"15\" width=\"37\" height=\"37\">\\n<circle cx=\"34.1769\" cy=\"33.8015\" r=\"17.7087\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</mask>\\n<g mask=\"url(#mask3_299_5181)\">\\n<circle cx=\"34.1769\" cy=\"33.8015\" r=\"17.7087\" fill=\"url(#paint0_linear_299_5181)\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M29.1303 27.2859C29.1303 24.3029 31.5485 21.8847 34.5315 21.8847C37.5145 21.8847 39.9327 24.3029 39.9327 27.2859V31.6298C39.9327 34.6128 37.5145 37.031 34.5315 37.031C31.5485 37.031 29.1303 34.6128 29.1303 31.6298V27.2859Z\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M34.5313 37.4209C22.9477 37.4209 20.5605 47.5826 20.5605 52.4091H48.7955C49.0368 47.5826 46.1148 37.4209 34.5313 37.4209Z\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<circle cx=\"34.1769\" cy=\"33.8015\" r=\"17.7087\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</g>\\n<mask id=\"mask4_299_5181\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"48\" y=\"48\" width=\"21\" height=\"21\">\\n<circle cx=\"58.7167\" cy=\"58.4227\" r=\"9.37392\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</mask>\\n<g mask=\"url(#mask4_299_5181)\">\\n<circle cx=\"58.7167\" cy=\"58.4227\" r=\"9.37392\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M56.1735 54.9078C56.1735 53.3979 57.3976 52.1738 58.9076 52.1738C60.4176 52.1738 61.6417 53.3979 61.6417 54.9078V57.2513C61.6417 58.7613 60.4176 59.9854 58.9076 59.9854C57.3976 59.9854 56.1735 58.7613 56.1735 57.2513V54.9078Z\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M51.0959 68.1876C51.0959 65.5837 52.6583 60.376 58.9075 60.376C65.1568 60.376 66.4588 65.5837 66.3286 68.1876\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_299_5181\" x1=\"48.5016\" y1=\"17.1574\" x2=\"24.8065\" y2=\"50.5675\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#43BBFF\"/>\\n<stop offset=\"1\" stop-color=\"#0E50EB\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"PROFID is the best \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"practices combination of:\"})]}),className:\"framer-1fwsore\",\"data-framer-name\":\"EPASS is the best practices combination of:\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qc8b0g hidden-tf1r54 hidden-l241wy\",\"data-framer-name\":\"Frame 427318537\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ihgc0a\",\"data-framer-name\":\"Frame 427318699\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ege29c\",\"data-framer-name\":\"Group_323\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 686 639\"><path d=\"M 372.822 335.399 C 370.927 356.203 374.188 381.054 377.533 396.698 L 403.483 389.362 L 428.941 382.165 L 454.398 374.968 C 444.009 346.078 416.824 290.539 391.19 299.504 C 384.891 301.707 380.493 306.966 377.533 314.072 C 377.481 314.194 377.431 314.318 377.38 314.442 C 374.962 320.399 373.531 327.616 372.822 335.399 Z\" fill=\"rgb(7,11,14)\"></path><path d=\"M 403.483 389.362 C 404.872 393.669 409.82 401.582 418.504 398.781 C 427.189 395.979 429.081 386.536 428.941 382.165 Z\" fill=\"rgb(252,105,31)\"></path><path d=\"M 132.14 287 C 125.552 298.615 114.167 328.163 121.34 353.432 C 129.388 360.95 145.901 379.232 147.574 392.219 C 149.256 395.057 153.624 398.126 157.555 400.423 C 159.273 401.43 161.035 402.359 162.836 403.209 L 162.836 287 Z M 162.836 403.209 L 168.453 399.928 C 183.238 391.493 208.108 358.886 189.302 295.939 L 185.531 287 L 162.836 287 Z M 174.872 408.134 C 180.254 413.867 198.734 424.085 229.597 419.097 C 247.133 412.018 281.076 392.481 276.555 370.97 C 272.035 349.459 252.07 353.304 242.652 357.915 C 230.719 363.661 200.458 381.749 174.872 408.134 Z\" fill=\"rgb(5,119,98)\"></path><path d=\"M 270.905 427.326 C 267.203 421.84 253.758 412.514 229.597 419.097 C 199.396 427.326 184.467 424.554 168.453 456.943 C 183.4 460.512 213.795 465.23 236.055 461.379 C 241.439 460.448 246.347 459.015 250.446 456.943 C 252.085 456.118 253.688 455.224 255.251 454.264 C 271.691 444.133 272.693 432.319 270.905 427.326 Z\" fill=\"rgb(5,119,98)\"></path><path d=\"M 255.251 454.264 C 253.688 455.224 252.085 456.118 250.446 456.943 C 246.347 459.015 241.439 460.448 236.055 461.379 C 225.232 467.464 201.674 482.631 194.025 494.614 C 200.248 495.342 206.455 496.197 212.643 497.179 C 228.658 499.727 244.854 503.238 258.741 507.865 C 279.536 489.105 307.95 452.121 255.251 454.264 Z\" fill=\"rgb(5,119,98)\"></path><path d=\"M 168.453 492.314 C 189.331 536.451 242.652 612.131 289.425 557.362 C 309.267 534.127 289.771 518.206 258.741 507.865 C 244.854 503.238 228.658 499.727 212.643 497.179 C 206.359 496.179 200.103 495.327 194.025 494.614 C 185.524 493.613 176.997 492.846 168.453 492.314 Z M 48.587 507.129 C 81.123 508.325 123.705 483.851 140.929 471.464 C 142.048 471.392 143.149 471.323 144.228 471.258 C 138.545 466.389 132.754 462.538 126.938 459.546 C 108.298 449.957 89.393 449.187 72.898 451.994 C 49.443 455.985 30.86 467.208 24.838 470.594 C 13.261 477.103 7.918 505.635 48.588 507.129 Z\" fill=\"rgb(5,119,98)\"></path><path d=\"M 157.555 455.304 C 152.968 447.46 141.793 430.883 133.789 427.326 C 132.677 427.326 110.258 422.323 99.882 414.726 C 81.662 412.935 46.52 413.503 51.708 430.105 C 56.896 446.706 67.996 451.615 72.898 451.994 C 89.393 449.187 108.298 449.957 126.938 459.546 C 133.104 459.235 147.86 457.952 157.555 455.304 Z M 118.409 513.917 C 93.749 510.165 38.731 511.004 15.932 544.378 C 11.359 556.237 12.277 578.56 52.532 572.982 C 66.02 543.081 94.122 524.191 118.409 513.917 Z\" fill=\"rgb(5,119,98)\"></path><path d=\"M 86.224 566.01 L 86.224 544.378 L 115.543 544.378 C 120.909 535.358 133.404 519.135 144.228 505.635 C 136.969 507.154 127.986 509.865 118.409 513.917 C 94.123 524.191 66.019 543.081 52.531 572.982 C 48.235 582.506 45.421 593.147 44.686 604.983 C 44.513 608.773 45.653 617.309 51.596 621.131 C 56.87 618.01 67.305 612.459 76.543 609.146 C 77.984 602.532 83.343 593.333 86.223 589.034 L 86.223 566.01 Z M 194.025 572.982 L 215.836 572.982 L 215.836 602.835 C 220.386 607.142 230.03 616.83 232.199 621.131 L 282.256 621.131 C 250.693 583.294 210.284 566.866 194.025 563.382 Z M 164.349 544.378 L 168.453 544.378 L 168.453 399.928 L 162.836 403.209 C 161.035 402.359 159.273 401.43 157.555 400.423 L 157.555 544.378 Z\" fill=\"rgb(5,119,98)\"></path><path d=\"M 115.543 544.378 L 140.929 544.378 C 144.736 535.066 144.715 514.669 144.228 505.635 C 133.404 519.135 120.909 535.358 115.543 544.378 Z\" fill=\"rgb(5,119,98)\"></path><path d=\"M 86.224 544.378 L 86.224 566.01 L 194.025 566.01 L 194.025 544.378 Z\" fill=\"rgb(252,105,31)\"></path><path d=\"M 182.047 572.982 L 194.025 572.982 L 194.025 566.01 L 86.224 566.01 L 86.224 621.131 L 182.047 621.131 L 182.047 604.983 C 177.22 605.34 167.567 603.588 167.567 593.72 C 167.567 583.851 177.22 581.503 182.047 581.563 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 182.047 581.563 C 177.22 581.503 167.567 583.851 167.567 593.72 C 167.567 603.588 177.22 605.34 182.047 604.983 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 194.025 572.982 L 182.047 572.982 L 182.047 621.131 L 215.836 621.131 L 215.836 572.982 Z\" fill=\"rgb(208,198,193)\"></path><path d=\"M 1 621.131 L 1 637.5 L 685 637.5 L 685 621.131 Z\" fill=\"rgb(86,63,255)\"></path><path d=\"M 304.241 621.131 L 374.926 621.131 C 374.888 620.397 374.805 619.666 374.677 618.943 C 374.377 617.23 373.809 615.311 372.899 613.336 C 369.761 606.53 362.556 599.068 348.255 597.115 C 345.753 596.781 343.232 596.617 340.708 596.625 C 337.996 596.625 335.469 596.797 333.116 597.115 C 312.532 599.891 305.266 613.8 304.241 621.131 Z\" fill=\"rgb(7,11,14)\"></path><path d=\"M 333.116 597.115 C 335.469 596.797 337.996 596.625 340.708 596.625 C 343.42 596.625 345.931 596.797 348.255 597.115 L 324.9 362.602 L 372.822 335.399 C 373.531 327.616 374.962 320.399 377.38 314.442 C 377.431 314.318 377.481 314.194 377.533 314.072 L 308.68 356.313 Z\" fill=\"rgb(208,198,193)\"></path><path d=\"M 435.175 554.782 L 435.175 500.003 C 430.519 476.856 415.492 428.107 392.631 418.278 C 387.022 421.661 374.897 435.585 371.265 464.215 L 395.389 475.165 L 371.265 475.165 C 370.998 483.889 373.989 508.389 388.09 536.591 C 399.668 541.579 422.592 560.221 421.67 594.887 L 437.926 594.887 C 439.314 584.697 441.674 562.409 440.008 554.782 Z\" fill=\"rgb(5,119,98)\"></path><path d=\"M 388.09 536.591 C 379.074 531.891 366.173 529.648 360.849 529.113 C 352.516 552.402 370.993 568.761 381.272 574.029 C 382.37 571.615 388.242 569.619 391.041 568.923 L 391.041 579.367 C 398.857 580.853 409.024 590.333 413.131 594.887 L 421.67 594.887 C 422.592 560.221 399.668 541.579 388.09 536.591 Z M 452.78 554.782 C 448.91 558.324 441.265 582.995 437.926 594.887 L 450.923 594.887 C 465.114 586 494.915 567.762 500.593 565.906 L 497.807 554.782 Z\" fill=\"rgb(5,119,98)\"></path><path d=\"M 453.844 613.336 L 459.369 613.336 L 459.369 594.887 L 408.828 594.887 L 408.828 613.336 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 516.447 618.943 L 516.447 613.336 L 372.899 613.336 C 373.809 615.311 374.377 617.23 374.677 618.943 Z M 520.622 618.943 L 374.677 618.943 C 374.813 619.719 374.893 620.453 374.926 621.131 L 520.622 621.131 Z\" fill=\"rgb(173,165,161)\"></path><path d=\"M 516.447 613.336 L 516.447 618.943 L 520.622 618.943 L 520.622 621.131 L 596.844 621.131 L 596.844 609.44 L 465.495 609.44 L 465.495 613.336 Z\" fill=\"rgb(145,130,255)\"></path><path d=\"M 585.573 554.782 L 609.641 621.131 L 631.488 621.131 C 631.488 610.036 640.575 607.02 649.263 607.008 C 653.058 607.002 656.777 607.57 659.63 608.288 L 680.18 543.859 L 626.119 543.859 L 626.119 554.782 Z\" fill=\"rgb(252,105,31)\"></path><path d=\"M 626.119 543.859 L 635.749 543.859 L 638.413 541.905 L 626.119 531.993 Z M 626.119 520.126 L 626.119 531.993 L 638.413 541.905 L 644.085 537.746 L 641.617 535.325 Z M 626.119 520.126 L 641.617 535.325 L 637.742 525.085 L 633.868 514.844 L 626.119 494.363 Z\" fill=\"rgb(5,119,98)\"></path><path d=\"M 652.551 482.265 L 633.868 514.844 L 637.742 525.085 L 650.737 510.497 Z M 641.617 535.325 L 644.085 537.746 L 665.19 522.269 L 670.698 488.09 L 650.737 510.497 L 637.742 525.085 Z\" fill=\"rgb(5,119,98)\"></path><path d=\"M 635.749 543.859 L 663.977 543.859 L 683.692 508.701 L 665.19 522.269 L 644.085 537.746 L 638.413 541.905 Z\" fill=\"rgb(5,119,98)\"></path><path d=\"M 649.263 607.008 C 640.575 607.02 631.488 610.036 631.488 621.131 L 649.263 621.131 Z M 649.263 621.131 L 666.11 621.131 C 666.21 616.331 664.203 612.738 662.21 610.51 L 649.263 610.51 Z M 659.63 608.288 C 656.777 607.57 653.058 607.002 649.263 607.008 L 649.263 610.51 L 662.21 610.51 C 661.273 609.463 660.34 608.717 659.63 608.288 Z\" fill=\"rgb(208,198,193)\"></path><path d=\"M 443.686 407.946 L 443.686 543.859 L 619.042 543.859 L 619.042 407.946 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 585.573 554.782 L 626.119 554.782 L 626.119 398.781 L 435.175 398.781 L 435.175 554.782 Z M 443.686 543.859 L 443.686 407.946 L 619.042 407.946 L 619.042 543.859 Z\" fill=\"rgb(145,130,255)\"></path><path d=\"M 516.447 554.782 L 516.447 609.44 L 545.864 609.44 L 545.864 554.782 Z\" fill=\"rgb(145,130,255)\"></path><path d=\"M 147.574 392.219 C 145.901 379.232 129.388 360.95 121.34 353.432 C 105.651 341.525 68.114 319.262 43.475 325.462 C 41.293 345.493 49.519 391.389 99.882 414.726 C 110.258 422.323 132.677 427.326 133.789 427.326 C 138.079 427.844 148.838 428.354 157.555 426.249 C 155.344 417.46 150.251 398.35 147.574 392.219 Z\" fill=\"rgb(5,119,98)\"></path><path d=\"M 374.926 621.131 L 304.241 621.131 M 374.926 621.131 L 520.622 621.131 M 374.926 621.131 C 374.888 620.397 374.805 619.666 374.677 618.943 M 304.241 621.131 C 305.266 613.8 312.532 599.891 333.116 597.115 M 304.241 621.131 L 282.256 621.131 M 333.116 597.115 C 335.469 596.797 337.996 596.625 340.708 596.625 C 343.42 596.625 345.931 596.797 348.255 597.115 M 333.116 597.115 L 308.68 356.313 L 377.533 314.072 M 377.533 314.072 C 380.493 306.966 384.891 301.707 391.19 299.504 M 377.533 314.072 C 377.481 314.194 377.431 314.318 377.38 314.442 M 372.822 335.399 L 324.9 362.602 L 348.255 597.115 M 372.822 335.399 C 370.927 356.203 374.188 381.054 377.533 396.698 M 372.822 335.399 C 373.531 327.616 374.962 320.399 377.38 314.442 M 348.255 597.115 C 362.556 599.068 369.761 606.53 372.899 613.336 M 377.533 396.698 L 403.483 389.362 M 377.533 396.698 C 372.937 375.201 368.498 336.32 377.38 314.442 M 391.19 299.504 C 416.824 290.539 444.009 346.078 454.398 374.968 L 428.941 382.165 M 391.19 299.504 C 384.782 301.745 380.341 307.149 377.38 314.442 M 403.483 389.362 C 404.872 393.669 409.82 401.582 418.504 398.781 C 427.189 395.979 429.081 386.536 428.941 382.165 M 403.483 389.362 L 428.941 382.165 M 372.899 613.336 L 377.086 613.336 M 372.899 613.336 C 373.809 615.311 374.377 617.23 374.677 618.943 M 516.447 618.943 L 516.447 613.336 L 511.735 613.336 M 516.447 618.943 L 520.622 618.943 L 520.622 621.131 M 516.447 618.943 L 374.677 618.943 M 520.622 621.131 L 596.844 621.131 M 511.735 613.336 L 511.735 616.859 M 511.735 613.336 L 507.69 613.336 M 507.69 613.336 L 507.69 616.859 M 507.69 613.336 L 502.837 613.336 M 502.837 613.336 L 502.837 616.859 M 502.837 613.336 L 498.661 613.336 M 480.89 616.859 L 480.89 613.336 M 480.89 613.336 L 485.355 613.336 M 480.89 613.336 L 475.425 613.336 M 485.355 616.859 L 485.355 613.336 M 485.355 613.336 L 489.526 613.336 M 489.526 616.859 L 489.526 613.336 M 489.526 613.336 L 493.63 613.336 M 493.63 616.859 L 493.63 613.336 M 493.63 613.336 L 498.661 613.336 M 498.661 616.859 L 498.661 613.336 M 475.425 616.859 L 475.425 613.336 M 475.425 613.336 L 471.585 613.336 M 471.585 616.859 L 471.585 613.336 M 471.585 613.336 L 467.15 613.336 M 467.15 616.859 L 467.15 613.336 M 467.15 613.336 L 465.495 613.336 M 462.384 616.859 L 462.384 613.336 M 462.384 613.336 L 459.369 613.336 M 462.384 613.336 L 465.495 613.336 M 457.617 616.859 L 457.617 613.336 M 457.617 613.336 L 453.844 613.336 M 457.617 613.336 L 459.369 613.336 M 453.844 616.859 L 453.844 613.336 M 453.844 613.336 L 448.812 613.336 M 448.812 616.859 L 448.812 613.336 M 448.812 613.336 L 444.112 613.336 M 444.112 616.859 L 444.112 613.336 M 444.112 613.336 L 440.008 613.336 M 440.008 616.859 L 440.008 613.336 M 440.008 613.336 L 435.175 613.336 M 435.175 616.859 L 435.175 613.336 M 435.175 613.336 L 430.938 613.336 M 430.938 616.859 L 430.938 613.336 M 430.938 613.336 L 426.371 613.336 M 426.371 616.859 L 426.371 613.336 M 426.371 613.336 L 421.67 613.336 M 421.67 616.859 L 421.67 613.336 M 421.67 613.336 L 417.103 613.336 M 417.103 616.859 L 417.103 613.336 M 417.103 613.336 L 413.131 613.336 M 413.131 616.859 L 413.131 613.336 M 413.131 613.336 L 408.828 613.336 M 408.828 616.859 L 408.828 613.336 M 408.828 613.336 L 403.796 613.336 M 408.828 613.336 L 408.828 594.887 L 413.131 594.887 M 403.796 616.859 L 403.796 613.336 M 403.796 613.336 L 399.361 613.336 M 399.361 616.859 L 399.361 613.336 M 399.361 613.336 L 395.389 613.336 M 395.389 616.859 L 395.389 613.336 M 395.389 613.336 L 389.828 613.336 M 389.828 616.859 L 389.828 613.336 M 389.828 613.336 L 385.901 613.336 M 385.901 613.336 L 385.901 616.859 M 385.901 613.336 L 381.272 613.336 M 381.272 613.336 L 381.272 616.859 M 381.272 613.336 L 377.086 613.336 M 377.086 613.336 L 377.086 616.859 M 459.369 613.336 L 459.369 594.887 L 450.923 594.887 M 465.495 613.336 L 465.495 609.44 L 516.447 609.44 M 596.844 621.131 L 596.844 609.44 L 545.864 609.44 M 596.844 621.131 L 609.641 621.131 M 609.641 621.131 L 585.573 554.782 M 609.641 621.131 L 631.488 621.131 M 585.573 554.782 L 626.119 554.782 L 626.119 543.859 M 585.573 554.782 L 545.864 554.782 M 626.119 543.859 L 635.749 543.859 M 626.119 543.859 L 626.119 531.993 M 659.63 608.288 L 680.18 543.859 L 663.977 543.859 M 659.63 608.288 C 656.777 607.57 653.058 607.002 649.263 607.008 M 659.63 608.288 C 660.34 608.717 661.273 609.463 662.21 610.51 M 666.11 621.131 L 685 621.131 L 685 637.5 L 1 637.5 L 1 621.131 L 51.596 621.131 M 666.11 621.131 L 649.263 621.131 M 666.11 621.131 C 666.21 616.331 664.203 612.738 662.21 610.51 M 631.488 621.131 C 631.488 610.036 640.575 607.02 649.263 607.008 M 631.488 621.131 L 649.263 621.131 M 649.263 607.008 L 649.263 610.51 M 649.263 621.131 L 649.263 610.51 M 649.263 610.51 L 662.21 610.51 M 635.749 543.859 L 663.977 543.859 M 635.749 543.859 L 638.413 541.905 M 663.977 543.859 L 683.692 508.701 L 665.19 522.269 M 644.085 537.746 L 638.413 541.905 M 644.085 537.746 L 641.617 535.325 M 644.085 537.746 L 665.19 522.269 M 626.119 520.126 L 626.119 531.993 M 626.119 520.126 L 641.617 535.325 M 626.119 520.126 L 626.119 494.363 M 626.119 531.993 L 638.413 541.905 M 641.617 535.325 L 637.742 525.085 M 626.119 494.363 L 626.119 398.781 L 435.175 398.781 L 435.175 500.003 M 626.119 494.363 L 633.868 514.844 M 633.868 514.844 L 652.551 482.265 L 650.737 510.497 M 633.868 514.844 L 637.742 525.085 M 650.737 510.497 L 637.742 525.085 M 650.737 510.497 L 670.698 488.09 M 637.742 525.085 L 670.698 488.09 M 670.698 488.09 L 665.19 522.269 M 86.224 621.131 L 182.047 621.131 M 86.224 621.131 L 51.596 621.131 M 86.224 621.131 L 86.224 606.593 M 194.025 572.982 L 182.047 572.982 L 182.047 581.563 M 194.025 572.982 L 215.836 572.982 L 215.836 602.835 M 194.025 572.982 L 194.025 566.01 M 182.047 621.131 L 215.836 621.131 M 182.047 621.131 L 182.047 604.983 M 215.836 621.131 L 215.836 602.835 M 215.836 621.131 L 232.199 621.131 M 182.047 581.563 C 177.22 581.503 167.567 583.851 167.567 593.72 C 167.567 603.588 177.22 605.34 182.047 604.983 M 182.047 581.563 L 182.047 604.983 M 194.025 566.01 L 86.224 566.01 M 194.025 566.01 L 194.025 563.382 M 86.224 566.01 L 86.224 544.378 L 90.872 544.378 M 86.224 566.01 L 86.224 589.034 M 90.872 544.378 L 90.872 537.942 M 90.872 544.378 L 102.85 544.378 M 102.85 544.378 L 102.85 537.942 M 102.85 544.378 L 115.543 544.378 M 115.543 544.378 L 115.543 537.942 M 115.543 544.378 L 127.521 544.378 M 115.543 544.378 C 120.909 535.358 133.404 519.135 144.228 505.635 M 127.521 544.378 L 127.521 537.942 M 127.521 544.378 L 140.929 544.378 M 140.929 544.378 L 140.929 537.942 M 140.929 544.378 L 152.013 544.378 M 140.929 544.378 C 144.736 535.066 144.715 514.669 144.228 505.635 M 152.013 544.378 L 152.013 537.942 M 152.013 544.378 L 157.555 544.378 M 164.349 544.378 L 164.349 537.942 M 164.349 544.378 L 168.453 544.378 M 164.349 544.378 L 157.555 544.378 M 176.863 544.378 L 176.863 537.942 M 176.863 544.378 L 189.377 544.378 M 176.863 544.378 L 168.453 544.378 M 189.377 544.378 L 194.025 544.378 L 194.025 563.382 M 189.377 544.378 L 189.377 537.942 M 435.175 500.003 L 435.175 554.782 L 440.008 554.782 M 435.175 500.003 C 430.519 476.856 415.492 428.107 392.631 418.278 C 387.022 421.661 374.897 435.585 371.265 464.215 L 395.389 475.165 L 371.265 475.165 C 370.998 483.889 373.989 508.389 388.09 536.591 M 388.09 536.591 C 379.074 531.891 366.173 529.648 360.849 529.113 C 352.516 552.402 370.993 568.761 381.272 574.029 C 382.37 571.615 388.242 569.619 391.041 568.923 L 391.041 579.367 C 398.857 580.853 409.024 590.333 413.131 594.887 M 388.09 536.591 C 399.668 541.579 422.592 560.221 421.67 594.887 M 421.67 594.887 L 437.926 594.887 M 421.67 594.887 L 413.131 594.887 M 437.926 594.887 C 439.314 584.697 441.674 562.409 440.008 554.782 M 437.926 594.887 C 441.265 582.995 448.91 558.324 452.78 554.782 M 437.926 594.887 L 450.923 594.887 M 440.008 554.782 L 452.78 554.782 M 452.78 554.782 L 497.807 554.782 M 450.923 594.887 C 465.114 586 494.915 567.762 500.593 565.906 L 497.807 554.782 M 497.807 554.782 L 516.447 554.782 M 168.453 544.378 L 168.453 492.314 M 168.453 399.928 L 162.836 403.209 M 168.453 399.928 C 183.238 391.493 208.108 358.886 189.302 295.939 L 185.531 287 L 162.836 287 M 168.453 399.928 L 168.453 409.237 M 162.836 403.209 L 162.836 287 M 162.836 403.209 C 161.035 402.359 159.273 401.43 157.555 400.423 M 147.574 392.219 C 145.901 379.232 129.388 360.95 121.34 353.432 M 147.574 392.219 C 149.256 395.057 153.624 398.126 157.555 400.423 M 147.574 392.219 C 150.251 398.35 155.344 417.46 157.555 426.249 M 121.34 353.432 C 114.167 328.163 125.552 298.615 132.14 287 L 162.836 287 M 121.34 353.432 C 105.651 341.525 68.114 319.262 43.475 325.462 C 41.293 345.493 49.519 391.389 99.882 414.726 M 157.555 400.423 L 157.555 426.249 M 157.555 544.378 L 157.555 489.333 M 168.453 409.237 L 168.453 456.943 M 168.453 409.237 C 170.604 408.937 172.744 408.569 174.872 408.134 M 258.741 364.314 C 233.013 391.186 195.447 403.981 174.872 408.134 M 157.555 426.249 C 131.299 407.662 73.043 363.033 50.077 333.214 M 157.555 426.249 L 157.555 455.304 M 157.555 426.249 C 148.838 428.354 138.079 427.844 133.789 427.326 M 157.555 470.594 L 157.555 489.333 M 157.555 470.594 C 153.659 470.742 149.158 470.961 144.228 471.258 M 157.555 470.594 L 157.555 455.304 M 39.744 489.333 C 58.658 479.016 107.95 473.6 140.929 471.464 M 168.453 492.314 C 199.37 505.226 264.185 534.547 276.11 548.531 M 168.453 492.314 L 168.453 456.943 M 168.453 492.314 C 189.331 536.451 242.652 612.131 289.425 557.362 C 309.267 534.127 289.771 518.206 258.741 507.865 M 168.453 492.314 C 176.997 492.846 185.524 493.613 194.025 494.614 M 157.555 489.333 C 153.059 494.723 148.617 500.157 144.228 505.635 M 144.228 505.635 C 136.969 507.154 127.986 509.865 118.409 513.917 M 51.596 621.131 C 45.653 617.309 44.513 608.773 44.686 604.983 C 45.421 593.147 48.235 582.506 52.531 572.982 M 51.596 621.131 C 56.87 618.01 67.305 612.459 76.543 609.146 M 86.223 606.593 L 86.223 589.034 M 86.223 606.593 C 83.404 606.948 80.061 607.885 76.543 609.146 M 86.223 589.034 C 83.343 593.333 77.984 602.532 76.543 609.146 M 76.179 612.131 C 76.179 611.226 76.309 610.22 76.543 609.146 M 118.409 513.917 C 93.749 510.165 38.731 511.004 15.932 544.378 C 11.359 556.237 12.277 578.56 52.532 572.982 M 118.409 513.917 C 94.123 524.191 66.019 543.081 52.531 572.982 M 140.929 471.464 C 123.705 483.851 81.123 508.325 48.587 507.129 C 7.917 505.635 13.261 477.103 24.838 470.594 C 30.86 467.208 49.443 455.985 72.898 451.994 M 140.929 471.464 C 142.048 471.392 143.149 471.323 144.228 471.258 M 144.228 471.258 C 138.545 466.389 132.754 462.538 126.938 459.546 M 157.555 455.304 C 152.968 447.46 141.793 430.883 133.789 427.326 M 157.555 455.304 C 147.86 457.952 133.104 459.235 126.938 459.546 M 133.789 427.326 C 132.677 427.326 110.258 422.323 99.882 414.726 M 99.882 414.726 C 81.662 412.935 46.52 413.503 51.708 430.105 C 56.896 446.706 67.996 451.615 72.898 451.994 M 72.898 451.994 C 89.393 449.187 108.298 449.957 126.938 459.546 M 168.453 456.943 C 184.467 424.554 199.396 427.326 229.597 419.097 M 168.453 456.943 C 183.4 460.512 213.795 465.23 236.055 461.379 M 229.597 419.097 C 253.758 412.514 267.203 421.84 270.905 427.326 C 272.693 432.319 271.691 444.133 255.251 454.264 M 229.597 419.097 C 198.734 424.085 180.254 413.867 174.872 408.134 M 229.597 419.097 C 247.133 412.018 281.076 392.481 276.555 370.97 C 272.035 349.459 252.07 353.304 242.652 357.915 C 230.719 363.661 200.458 381.749 174.872 408.134 M 258.741 507.865 C 279.536 489.105 307.95 452.121 255.251 454.264 M 258.741 507.865 C 244.854 503.238 228.658 499.727 212.643 497.179 M 255.251 454.264 C 253.688 455.224 252.085 456.118 250.446 456.943 C 246.347 459.015 241.439 460.448 236.055 461.379 M 236.055 461.379 C 225.232 467.464 201.674 482.631 194.025 494.614 M 194.025 494.614 C 200.248 495.342 206.455 496.197 212.643 497.179 M 212.643 497.179 C 226.083 495.582 257.681 488.163 276.555 471.258 M 194.025 563.382 C 210.284 566.866 250.693 583.294 282.256 621.131 M 282.256 621.131 L 232.199 621.131 M 215.836 602.835 C 220.386 607.142 230.03 616.83 232.199 621.131 M 516.447 609.44 L 516.447 554.782 M 516.447 609.44 L 545.864 609.44 M 516.447 554.782 L 545.864 554.782 M 545.864 554.782 L 545.864 609.44 M 443.686 407.946 L 443.686 543.859 L 619.042 543.859 L 619.042 407.946 Z\" fill=\"transparent\" stroke-width=\"1.15\" stroke=\"rgb(7,11,14)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 504.688 373.943 C 498.348 377.277 484.52 385.06 479.929 389.52 C 484.083 401.708 495.505 428.38 507.967 437.562 C 512.995 433.408 524.265 424.937 529.119 424.281 C 521.522 410.18 505.999 380.371 504.688 373.943 Z M 501.408 400.834 C 505.212 397.161 510.426 400.178 512.558 402.146 C 515.05 408.311 511.52 412.475 509.443 413.787 C 506.546 415.809 500.129 418.641 497.637 413.787 C 494.522 407.72 496.653 405.425 501.408 400.834 Z\" fill=\"rgb(5,119,98)\"></path><path d=\"M 512.558 402.146 C 510.426 400.178 505.212 397.161 501.408 400.834 C 496.653 405.425 494.522 407.72 497.637 413.787 C 500.129 418.641 506.546 415.809 509.443 413.787 C 511.52 412.475 515.05 408.311 512.558 402.146 Z\" fill=\"rgb(5,119,98)\"></path><path d=\"M 509.443 406.774 C 508.431 404.918 506.064 402.319 504.688 406.774 C 502.968 412.342 500.763 413.258 499.603 407.702 M 504.688 373.943 C 498.348 377.277 484.52 385.06 479.929 389.52 C 484.083 401.708 495.505 428.38 507.967 437.562 C 512.995 433.408 524.265 424.937 529.119 424.281 C 521.522 410.18 505.999 380.371 504.688 373.943 Z M 486.979 389.52 C 490.259 387.279 498.26 382.568 501.408 381.65 L 505.999 383.453 L 523.872 419.854 L 522.396 425.593 L 511.082 432.643 L 504.688 432.643 C 498.551 423.745 486.056 403.974 485.176 396.079 Z M 512.558 402.146 C 510.426 400.178 505.212 397.161 501.408 400.834 C 496.653 405.425 494.522 407.72 497.637 413.787 C 500.129 418.641 506.546 415.809 509.443 413.787 C 511.52 412.475 515.05 408.311 512.558 402.146 Z\" fill=\"transparent\" stroke-width=\"1.15\" stroke=\"rgb(7,11,14)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 548.851 483.602 L 616.097 483.602 L 616.097 532.599 L 548.851 532.599 Z M 568.993 440.121 L 588.525 440.121 L 588.525 447.331 L 568.993 447.331 Z M 595.174 440.121 L 614.706 440.121 L 614.706 447.331 L 595.174 447.331 Z M 456.676 440.121 L 513.702 440.121 L 513.702 444.218 L 456.676 444.218 Z M 456.676 448.698 L 490.322 448.698 L 490.322 452.795 L 456.676 452.795 Z M 449.483 418.954 L 468.189 418.954 L 468.189 424.296 L 449.483 424.296 Z M 536.5 418.954 L 549.948 418.954 L 549.948 422.498 L 536.5 422.498 Z M 555.544 418.954 L 568.992 418.954 L 568.992 422.498 L 555.544 422.498 Z M 575.922 418.954 L 589.37 418.954 L 589.37 422.498 L 575.922 422.498 Z M 595.174 418.954 L 608.622 418.954 L 608.622 422.498 L 595.174 422.498 Z\" fill=\"rgb(145,130,255)\"></path><path d=\"M 456.676 461.092 L 515.641 461.092 L 515.641 463.503 L 456.676 463.503 Z M 456.676 485.976 L 515.641 485.976 L 515.641 488.387 L 456.676 488.387 Z M 456.676 520.063 L 515.641 520.063 L 515.641 522.474 L 456.676 522.474 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 456.676 465.143 L 515.641 465.143 L 515.641 466.879 L 456.676 466.879 Z M 456.676 490.025 L 515.641 490.025 L 515.641 491.761 L 456.676 491.761 Z M 456.676 524.113 L 515.641 524.113 L 515.641 525.849 L 456.676 525.849 Z M 456.676 468.471 L 515.641 468.471 L 515.641 470.207 L 456.676 470.207 Z M 456.676 493.354 L 515.641 493.354 L 515.641 495.09 L 456.676 495.09 Z M 456.676 527.442 L 515.641 527.442 L 515.641 529.178 L 456.676 529.178 Z\" fill=\"rgb(123,123,123)\"></path><path d=\"M 456.676 471.8 L 515.641 471.8 L 515.641 473.629 L 456.676 473.629 Z M 456.676 496.684 L 515.641 496.684 L 515.641 498.513 L 456.676 498.513 Z M 456.676 530.771 L 515.641 530.771 L 515.641 532.6 L 456.676 532.6 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 655.65 202.133 L 639.238 225.529 C 637.318 224.947 632.499 224.726 628.588 228.497 C 641.298 231.71 647.037 240.079 648.317 243.862 C 649.889 242 652.089 236.773 648.317 230.767 L 663.507 206.847 Z\" fill=\"rgb(86,63,255)\"></path><path d=\"M 628.588 228.497 C 628.122 235.248 631.416 247.773 648.317 243.862 C 647.037 240.079 641.298 231.71 628.588 228.497 Z\" fill=\"rgb(252,105,31)\"></path><path d=\"M 628.588 228.497 C 632.499 224.726 637.318 224.947 639.238 225.529 L 655.65 202.133 L 663.507 206.847 L 648.317 230.767 C 652.089 236.773 649.889 242 648.317 243.862 M 628.588 228.497 C 628.122 235.248 631.416 247.773 648.317 243.862 M 628.588 228.497 C 641.298 231.71 647.037 240.079 648.317 243.862\" fill=\"transparent\" stroke-width=\"1.121\" stroke=\"rgb(7,11,14)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 520.723 120.36 L 526.479 101.75 L 543.298 102.045 L 549.498 102.154 C 559.472 90.505 554.556 73.709 550.851 66.767 L 549.498 66.794 C 538.601 67.007 527.704 67.202 516.807 67.378 C 514.078 67.421 511.364 67.463 508.671 67.502 C 499.282 67.641 490.16 67.754 481.6 67.834 C 478.961 67.859 476.322 67.88 473.683 67.899 C 464.535 67.992 455.401 68.662 446.465 69.749 C 443.866 70.064 441.285 70.416 438.724 70.799 C 429.716 72.145 420.972 73.88 412.693 75.832 C 409.558 76.572 406.433 77.356 403.319 78.182 C 394.362 80.557 385.504 83.291 376.766 86.376 C 373.802 87.425 370.855 88.52 367.925 89.662 C 362.758 91.68 358.411 93.562 355.063 95.156 C 351.267 132.432 362.056 174.028 367.925 190.166 C 368.227 190.158 368.533 190.148 368.843 190.135 C 371.266 190.036 373.924 189.801 376.766 189.451 C 384.569 188.491 393.765 186.664 403.319 184.402 C 406.451 183.659 409.576 182.884 412.693 182.079 C 421.621 179.774 430.568 177.218 438.724 174.75 C 441.399 173.94 443.989 173.14 446.465 172.361 C 451.704 170.719 456.922 169.007 462.116 167.226 C 465.888 168.321 470.124 169.296 473.683 170.036 C 476.437 170.608 478.785 171.039 480.198 171.274 C 480.644 171.282 481.112 171.286 481.6 171.286 C 488.231 171.296 498.536 170.656 508.671 168.63 C 511.41 168.088 514.124 167.431 516.807 166.66 C 522.848 164.906 528.425 162.545 532.626 159.402 C 533.024 150.384 533.386 139.838 533.386 131.872 Z\" fill=\"rgb(252,105,31)\"></path><path d=\"M 524.815 202.502 C 524.683 193.566 529.467 179.918 531.876 174.211 C 532.077 170.775 532.36 165.43 532.626 159.402 C 528.425 162.545 522.848 164.906 516.807 166.66 C 514.124 167.431 511.41 168.088 508.671 168.63 C 498.536 170.656 488.231 171.296 481.6 171.286 C 481.112 171.286 480.644 171.282 480.198 171.274 L 482.627 201.798 C 486.88 205.163 496.55 209.55 508.671 207.999 C 511.44 207.641 514.165 207.006 516.807 206.103 C 519.582 205.153 522.263 203.947 524.815 202.502 Z\" fill=\"rgb(252,105,31)\"></path><path d=\"M 515.945 252.274 C 519.23 238.87 523.227 213.508 524.815 202.502 C 522.263 203.947 519.582 205.153 516.807 206.103 C 514.165 207.006 511.44 207.641 508.671 207.999 C 496.55 209.55 486.88 205.163 482.627 201.798 C 480.684 225.569 489.464 287.514 494.098 315.515 L 519.394 311.08 C 518.474 302.013 516.711 268.098 515.945 252.274 Z\" fill=\"rgb(240,171,161)\"></path><path d=\"M 519.394 311.08 L 494.098 315.515 C 495.359 323.161 498.612 340.021 501.533 346.295 C 498.198 353.101 494.069 367.551 504.237 370.904 C 506.355 370.904 510.078 369.47 508.023 363.737 C 505.968 358.004 509.781 356.211 511.944 356.03 C 518.242 357.542 526.514 362.58 509.215 370.634 C 507.93 372.074 506.816 375.145 512.634 375.915 C 514.344 375.942 518.499 375.299 521.435 372.511 C 521.249 375.887 521.696 382.463 524.967 381.757 C 528.238 381.051 528.405 374.047 528.08 370.634 C 529.71 372.514 533.362 376.05 534.933 375.157 C 536.898 374.041 536.362 364.98 530.827 358.329 C 526.399 353.008 523.622 347.301 522.787 345.113 Z M 673.159 185.604 C 674.837 167.619 670.061 152.331 667.463 146.936 C 662.882 148.881 651.408 153.364 642.163 155.729 C 645.209 161.596 651.461 175.884 652.106 182.871 C 648.604 190.508 644.187 206.398 654.532 208.858 C 655.632 208.592 657.606 206.808 656.695 201.798 C 655.557 195.535 659.087 191.321 663.869 195.535 C 668.652 199.748 667.513 203.961 663.869 205.214 C 661.856 205.906 660.452 208.701 659.625 211.214 C 659.078 212.876 660.191 214.526 661.935 214.397 C 663.862 214.249 665.741 213.72 667.463 212.843 C 667.29 215.842 668.037 221.839 672.41 221.839 C 676.782 221.839 676.661 215.842 676.053 212.843 C 677.382 214.437 680.745 217.421 683.569 216.601 C 687.099 215.576 684.27 195.601 673.159 185.604 Z\" fill=\"rgb(7,11,14)\"></path><path d=\"M 667.463 146.936 C 664.585 100.653 641.631 72.977 630.513 64.925 C 613.409 65.387 583.072 66.132 550.851 66.767 C 554.556 73.709 559.472 90.505 549.498 102.154 L 613.584 103.279 C 621.15 105.614 635.789 139.219 642.163 155.729 C 651.408 153.364 662.882 148.881 667.463 146.936 Z\" fill=\"rgb(240,171,161)\"></path><path d=\"M 667.463 146.936 C 664.585 100.653 641.631 72.977 630.513 64.925 C 613.409 65.387 583.072 66.132 550.851 66.767 M 667.463 146.936 C 670.061 152.331 674.837 167.619 673.159 185.604 C 684.27 195.601 687.099 215.576 683.569 216.601 C 680.745 217.421 677.382 214.437 676.053 212.843 C 676.661 215.842 676.782 221.839 672.41 221.839 C 668.037 221.839 667.29 215.842 667.463 212.843 C 665.741 213.72 663.862 214.249 661.935 214.397 C 660.191 214.526 659.078 212.876 659.625 211.214 C 660.452 208.701 661.856 205.906 663.869 205.214 C 667.513 203.961 668.652 199.748 663.869 195.535 C 659.087 191.321 655.557 195.535 656.695 201.798 C 657.606 206.808 655.632 208.592 654.532 208.858 C 644.187 206.398 648.604 190.508 652.106 182.871 C 651.461 175.884 645.209 161.596 642.163 155.729 M 667.463 146.936 C 662.882 148.881 651.408 153.364 642.163 155.729 M 642.163 155.729 C 635.789 139.219 621.15 105.614 613.584 103.279 L 549.498 102.154 M 550.851 66.767 C 554.556 73.709 559.472 90.505 549.498 102.154 M 550.851 66.767 L 549.498 66.794 C 538.601 67.007 527.704 67.202 516.807 67.378 C 514.078 67.421 511.364 67.463 508.671 67.502 C 499.282 67.641 490.16 67.754 481.6 67.834 C 478.961 67.859 476.322 67.88 473.683 67.899 C 464.535 67.992 455.401 68.662 446.465 69.749 C 443.866 70.064 441.285 70.416 438.724 70.799 C 429.716 72.145 420.972 73.88 412.693 75.832 C 409.558 76.572 406.433 77.356 403.319 78.182 C 394.362 80.557 385.504 83.291 376.766 86.376 C 373.802 87.425 370.855 88.52 367.925 89.662 C 362.758 91.68 358.411 93.562 355.063 95.156 C 351.267 132.432 362.056 174.028 367.925 190.166 C 368.227 190.158 368.533 190.148 368.843 190.135 C 371.266 190.036 373.924 189.801 376.766 189.451 C 384.569 188.491 393.765 186.664 403.319 184.402 C 406.451 183.659 409.576 182.884 412.693 182.079 C 421.621 179.774 430.568 177.218 438.724 174.75 C 441.399 173.94 443.989 173.14 446.465 172.361 C 451.704 170.719 456.922 169.007 462.116 167.226 C 465.888 168.321 470.124 169.296 473.683 170.036 C 476.437 170.608 478.785 171.039 480.198 171.274 M 549.498 102.154 L 543.298 102.045 L 526.479 101.75 L 520.723 120.36 L 533.386 131.872 C 533.386 139.838 533.024 150.384 532.626 159.402 M 524.815 202.502 C 524.683 193.566 529.467 179.918 531.876 174.211 C 532.077 170.775 532.36 165.43 532.626 159.402 M 524.815 202.502 C 523.227 213.508 519.23 238.87 515.945 252.274 C 516.711 268.098 518.474 302.013 519.394 311.08 M 524.815 202.502 C 522.263 203.947 519.582 205.153 516.807 206.103 C 514.165 207.006 511.44 207.641 508.671 207.999 C 496.55 209.55 486.88 205.163 482.627 201.798 M 519.394 311.08 L 494.098 315.515 M 519.394 311.08 L 522.787 345.113 C 523.622 347.301 526.399 353.008 530.827 358.329 C 536.362 364.98 536.898 374.041 534.933 375.157 C 533.362 376.05 529.71 372.514 528.08 370.634 C 528.405 374.047 528.238 381.051 524.967 381.757 C 521.696 382.463 521.249 375.887 521.435 372.511 C 518.499 375.299 514.344 375.942 512.634 375.915 C 506.816 375.145 507.93 372.074 509.215 370.634 C 526.514 362.58 518.242 357.542 511.944 356.03 C 509.781 356.211 505.968 358.004 508.023 363.737 C 510.078 369.47 506.355 370.904 504.237 370.904 C 494.069 367.551 498.198 353.101 501.533 346.295 C 498.612 340.021 495.359 323.161 494.098 315.515 M 494.098 315.515 C 489.464 287.514 480.684 225.569 482.627 201.798 M 482.627 201.798 L 480.198 171.274 M 480.198 171.274 C 480.644 171.282 481.112 171.286 481.6 171.286 C 488.231 171.296 498.536 170.656 508.671 168.63 C 511.41 168.088 514.124 167.431 516.807 166.66 C 522.848 164.906 528.425 162.545 532.626 159.402\" fill=\"transparent\" stroke-width=\"1.121\" stroke=\"rgb(0,0,0)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 556.462 102.951 L 553.557 107.052 L 562.955 111.324 L 567.91 102.951 Z M 585.852 123.114 L 595.42 133.537 C 593.249 138.937 590.653 150.891 597.177 156.405 C 597.327 156.532 597.482 156.655 597.642 156.775 C 598.895 146.067 600.649 120.311 597.642 102.951 L 588.927 102.951 C 588.438 104.992 587.548 108.329 586.296 112.505 Z\" fill=\"rgb(145,130,255)\"></path><path d=\"M 597.642 102.951 C 600.649 120.311 598.895 146.067 597.642 156.775 C 598.507 158.936 601.607 161.461 607.089 154.273 C 609.122 140.007 611.632 109.77 605.414 102.951 Z\" fill=\"rgb(252,105,31)\"></path><path d=\"M 605.414 102.951 C 611.632 109.77 609.122 140.007 607.089 154.273 C 631.051 141.238 621.438 114.627 613.637 102.951 Z\" fill=\"rgb(252,105,31)\"></path><path d=\"M 577.137 138.492 C 571.326 152.642 575.867 156.497 579.512 156.775 L 580.384 156.775 C 583.004 156.091 588.175 153.016 587.902 146.181 C 587.788 144.302 586.945 140.337 584.485 139.517 L 585.852 123.114 L 586.296 112.505 C 584.196 119.517 581.078 128.897 577.137 138.492 Z M 576.197 148.326 C 575.445 144.527 578.675 142.588 580.384 142.093 C 581.751 142.093 584.485 143.201 584.485 147.633 C 584.485 152.066 581.751 153.174 580.384 153.174 C 579.302 153.141 576.949 152.125 576.197 148.326 Z\" fill=\"rgb(7,11,14)\"></path><path d=\"M 553.557 107.052 L 556.462 102.951 L 525.877 102.951 L 520.409 121.063 L 533.566 132.341 C 539.317 131.595 550.803 132.111 550.73 140.137 L 550.73 146.181 C 552.234 148.866 556.508 153.856 561.576 152.338 C 561.952 152.195 562.443 151.974 562.955 151.693 C 562.706 153.141 562.895 156.109 565.643 156.405 L 565.643 162.461 L 574.591 156.775 L 579.512 156.775 C 575.867 156.497 571.326 152.642 577.137 138.492 C 581.078 128.897 584.196 119.517 586.296 112.505 C 587.548 108.329 588.438 104.992 588.927 102.951 L 567.91 102.951 L 562.955 111.324 Z M 587.902 146.181 C 588.175 153.016 583.004 156.091 580.384 156.775 L 597.177 156.405 C 590.653 150.891 593.249 138.937 595.42 133.537 L 585.852 123.114 L 584.485 139.517 C 586.945 140.337 587.788 144.302 587.902 146.181 Z\" fill=\"rgb(240,171,161)\"></path><path d=\"M 580.384 142.093 C 578.675 142.588 575.445 144.527 576.197 148.326 C 576.949 152.125 579.302 153.141 580.384 153.174 C 581.751 153.174 584.485 152.066 584.485 147.633 C 584.485 143.201 581.751 142.093 580.384 142.093 Z\" fill=\"rgb(240,171,161)\"></path><path d=\"M 556.462 102.951 L 553.557 107.052 L 562.955 111.324 L 567.91 102.951 M 556.462 102.951 L 567.91 102.951 M 556.462 102.951 L 525.877 102.951 L 520.409 121.063 L 533.566 132.341 C 539.317 131.595 550.803 132.111 550.73 140.137 L 550.73 146.181 C 552.234 148.866 556.508 153.856 561.576 152.338 C 561.952 152.195 562.443 151.974 562.955 151.693 M 567.91 102.951 L 588.927 102.951 M 588.927 102.951 L 597.642 102.951 M 588.927 102.951 C 588.438 104.992 587.548 108.329 586.296 112.505 M 580.384 156.775 C 583.004 156.091 588.175 153.016 587.902 146.181 C 587.788 144.302 586.945 140.337 584.485 139.517 L 585.852 123.114 M 580.384 156.775 L 597.177 156.405 M 580.384 156.775 L 579.512 156.775 M 580.384 156.775 C 580.094 156.798 579.802 156.798 579.512 156.775 M 585.852 123.114 L 595.42 133.537 C 593.249 138.937 590.653 150.891 597.177 156.405 M 585.852 123.114 L 586.296 112.505 M 597.642 156.775 C 598.895 146.067 600.649 120.311 597.642 102.951 M 597.642 156.775 C 597.483 156.656 597.328 156.533 597.177 156.405 M 597.642 156.775 C 598.507 158.936 601.607 161.461 607.089 154.273 M 597.642 102.951 L 605.414 102.951 M 565.643 148.904 C 565.49 150.022 564.167 151.027 562.955 151.693 M 562.955 151.693 C 562.706 153.141 562.895 156.109 565.643 156.405 L 565.643 162.461 L 574.591 156.775 L 579.512 156.775 M 571.078 109.203 C 571.332 107.448 573.549 104.25 580.384 105.495 M 607.089 154.273 C 609.122 140.007 611.632 109.77 605.414 102.951 M 607.089 154.273 C 631.051 141.238 621.438 114.627 613.637 102.951 L 605.414 102.951 M 586.296 112.505 C 584.196 119.517 581.078 128.897 577.137 138.492 C 571.326 152.642 575.867 156.497 579.512 156.775 M 580.384 142.093 C 578.675 142.588 575.445 144.527 576.197 148.326 C 576.949 152.125 579.302 153.141 580.384 153.174 C 581.751 153.174 584.485 152.066 584.485 147.633 C 584.485 143.201 581.751 142.093 580.384 142.093 Z\" fill=\"transparent\" stroke-width=\"1.121\" stroke=\"rgb(9,9,9)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 366.607 89.52 L 365.691 89.875 L 365.691 190.157 C 365.993 190.149 366.298 190.139 366.607 190.126 C 369.024 190.027 371.676 189.793 374.513 189.444 L 374.513 86.597 C 371.864 87.534 369.228 88.508 366.607 89.52 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 506.126 207.951 C 508.888 207.593 511.608 206.959 514.244 206.059 L 514.244 166.703 C 511.567 167.473 508.859 168.128 506.126 168.669 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 514.244 67.64 L 514.244 166.703 C 511.567 167.473 508.859 168.128 506.126 168.669 L 506.126 67.765 C 508.812 67.725 511.52 67.684 514.244 67.641 Z M 479.114 171.319 C 478.627 171.319 478.161 171.314 477.715 171.307 C 475.76 170.974 473.812 170.607 471.87 170.206 L 471.87 68.155 C 474.233 68.138 476.65 68.118 479.114 68.095 L 479.114 171.32 Z M 436.334 71.054 C 438.888 70.672 441.464 70.321 444.057 70.006 L 444.057 172.392 C 441.487 173.2 438.913 173.994 436.334 174.775 Z M 410.36 182.088 C 407.25 182.892 404.132 183.664 401.007 184.406 L 401.007 78.421 C 404.114 77.596 407.232 76.814 410.36 76.076 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 540.676 102.231 L 546.862 102.34 L 546.862 67.058 L 540.676 67.178 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 403.002 0 L 403.002 79.042 M 474.753 0 L 474.753 67.899\" fill=\"transparent\" stroke-width=\"1.121\" stroke=\"rgb(0,0,0)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 5.477 347.508 L 5.477 261.003 L 2.202 261.003 L 1 347.508 Z\" fill=\"rgb(9,9,9)\"></path><path d=\"M 49.46 300.252 C 59.443 283.531 51.956 266.145 46.964 259.542 C 34.51 258.373 14.117 260.029 5.477 261.003 L 5.477 347.508 C 19.023 346.771 22.041 340.82 21.857 337.937 C 20.974 310.108 39.891 301.218 49.46 300.252 Z\" fill=\"rgb(252,105,31)\"></path><path d=\"M 68.348 258.269 L 46.964 259.542 C 51.956 266.145 59.443 283.531 49.46 300.252 L 71.724 299.391 C 68.675 289.155 65.742 273.141 68.348 258.269 Z\" fill=\"rgb(240,171,161)\"></path><path d=\"M 355.36 95.75 C 347.47 92.232 319.055 93.003 268.521 124.232 C 217.987 155.461 203.414 164.737 202.444 165.472 L 206.8 158.054 L 204.416 157.486 L 162.902 140.906 L 160.351 139.888 C 145.717 165.019 121.896 221.026 143.686 244.007 C 147.949 247.93 159.58 253.096 176.878 249.169 C 159.465 253.3 97.913 253.979 69.314 253.803 C 68.932 255.278 68.61 256.768 68.348 258.269 C 65.742 273.141 68.676 289.155 71.724 299.391 C 72.526 302.083 73.336 304.375 74.054 306.142 C 104.902 301.717 171.607 292.071 191.65 288.886 C 211.692 285.7 231.882 274.246 239.471 268.917 L 367.924 190.194 C 361.521 170.422 350.044 123.853 355.36 95.75 Z\" fill=\"rgb(86,63,255)\"></path><path d=\"M 204.416 157.486 L 209.717 144.276 C 188.807 141.338 176.055 132.193 172.292 127.988 L 162.902 140.906 Z\" fill=\"rgb(240,171,161)\"></path><path d=\"M 174.371 117.591 C 172.196 123.222 172.079 126.868 172.292 127.988 C 176.055 132.193 188.807 141.338 209.717 144.276 L 212.76 142.864 C 217.329 137.338 223.17 122.754 226.729 112.776 L 153.258 71.046 C 145.542 83.714 166.038 97.118 177.251 102.236 C 181.217 108.122 176.984 114.925 174.371 117.591 Z\" fill=\"rgb(252,105,31)\"></path><path d=\"M 156.297 67.047 L 153.258 71.046 L 226.729 112.776 C 227.373 110.976 227.995 109.169 228.595 107.354 Z\" fill=\"rgb(8,8,8)\"></path><path d=\"M 202.444 165.472 C 203.414 164.737 217.987 155.461 268.521 124.232 C 319.055 93.003 347.47 92.232 355.36 95.75 C 350.044 123.853 361.521 170.422 367.924 190.194 L 239.471 268.917 C 231.882 274.246 211.692 285.7 191.65 288.886 C 171.607 292.071 104.902 301.717 74.055 306.142 C 73.335 304.375 72.525 302.083 71.725 299.391 M 202.444 165.472 L 185.007 206.254 M 202.444 165.472 L 206.8 158.054 L 204.416 157.486 M 204.416 157.486 L 209.717 144.276 M 204.416 157.486 L 162.902 140.906 M 209.717 144.276 L 212.76 142.864 C 217.329 137.338 223.17 122.754 226.729 112.776 M 209.717 144.276 C 188.807 141.338 176.055 132.193 172.292 127.988 M 324.502 168.314 C 290.823 188.591 217.101 232.118 191.65 244.007 C 186.355 246.48 181.421 248.138 176.878 249.169 M 176.878 249.169 C 159.58 253.096 147.949 247.93 143.686 244.007 C 121.896 221.026 145.717 165.019 160.351 139.888 L 162.902 140.906 M 176.878 249.169 C 159.465 253.3 97.913 253.979 69.314 253.803 C 68.932 255.278 68.61 256.768 68.348 258.269 M 68.348 258.269 L 46.964 259.542 M 68.348 258.269 C 65.742 273.141 68.676 289.155 71.724 299.391 M 46.964 259.542 C 51.956 266.145 59.443 283.531 49.46 300.252 M 46.964 259.542 C 34.51 258.373 14.117 260.029 5.477 261.003 M 49.46 300.252 L 71.724 299.391 M 49.46 300.252 C 39.891 301.218 20.974 310.108 21.857 337.937 C 22.041 340.82 19.023 346.771 5.477 347.508 M 5.477 347.508 L 5.477 261.003 M 5.477 347.508 L 1 347.508 L 2.202 261.003 L 5.477 261.003 M 162.902 140.906 L 172.292 127.988 M 172.292 127.988 C 172.079 126.868 172.196 123.222 174.371 117.591 C 176.984 114.925 181.217 108.122 177.251 102.236 C 166.038 97.118 145.542 83.714 153.258 71.046 M 153.258 71.046 L 156.297 67.046 L 228.595 107.354 C 227.995 109.169 227.373 110.976 226.729 112.776 M 153.258 71.046 L 226.729 112.776\" fill=\"transparent\" stroke-width=\"1.121\" stroke=\"rgb(9,9,9)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 524.815 202.502 C 524.683 193.566 529.467 179.918 531.876 174.211 C 532.077 170.775 532.36 165.43 532.626 159.402 C 528.425 162.546 522.848 164.906 516.807 166.66 C 514.124 167.431 511.41 168.088 508.671 168.63 C 498.536 170.656 488.231 171.296 481.6 171.286 C 481.112 171.286 480.644 171.282 480.198 171.274 L 482.627 201.798 C 486.88 205.163 496.55 209.55 508.671 207.999 C 511.44 207.641 514.165 207.006 516.807 206.103 C 519.582 205.153 522.263 203.947 524.815 202.502 Z\" fill=\"rgb(252,105,31)\"></path><path d=\"M 515.945 252.274 C 519.23 238.87 523.227 213.508 524.815 202.502 C 522.263 203.947 519.582 205.153 516.807 206.103 C 514.165 207.006 511.44 207.641 508.671 207.999 C 496.55 209.55 486.88 205.163 482.627 201.798 C 480.684 225.569 489.464 287.514 494.098 315.515 L 519.394 311.08 C 518.474 302.013 516.711 268.098 515.945 252.274 Z\" fill=\"rgb(240,171,161)\"></path><path d=\"M 519.394 311.08 L 494.098 315.515 C 495.359 323.161 498.612 340.021 501.533 346.295 C 498.198 353.101 494.069 367.551 504.237 370.904 C 506.355 370.904 510.078 369.47 508.023 363.737 C 505.968 358.004 509.781 356.211 511.944 356.03 C 518.242 357.542 526.514 362.58 509.215 370.634 C 507.93 372.074 506.816 375.145 512.634 375.915 C 514.344 375.942 518.499 375.299 521.435 372.511 C 521.249 375.887 521.696 382.463 524.967 381.757 C 528.238 381.051 528.405 374.048 528.08 370.634 C 529.71 372.514 533.362 376.05 534.933 375.157 C 536.898 374.041 536.362 364.98 530.827 358.329 C 526.399 353.008 523.622 347.301 522.787 345.113 Z M 673.159 185.604 C 674.837 167.619 670.061 152.331 667.463 146.936 C 662.882 148.881 651.408 153.364 642.163 155.729 C 645.209 161.596 651.461 175.884 652.106 182.871 C 648.604 190.508 644.187 206.398 654.532 208.858 C 655.632 208.592 657.606 206.808 656.695 201.798 C 655.557 195.535 659.087 191.322 663.869 195.535 C 668.652 199.748 667.513 203.961 663.869 205.214 C 661.856 205.906 660.452 208.701 659.625 211.214 C 659.078 212.876 660.191 214.526 661.935 214.397 C 663.862 214.249 665.741 213.72 667.463 212.843 C 667.29 215.842 668.037 221.839 672.41 221.839 C 676.782 221.839 676.661 215.842 676.053 212.843 C 677.382 214.437 680.745 217.421 683.569 216.601 C 687.099 215.576 684.27 195.601 673.159 185.604 Z\" fill=\"rgb(7,11,14)\"></path><path d=\"M 667.463 146.936 C 664.585 100.653 641.631 72.977 630.513 64.925 C 613.409 65.387 583.072 66.132 550.851 66.767 C 554.556 73.709 559.472 90.505 549.498 102.154 L 613.584 103.279 C 621.15 105.614 635.789 139.219 642.163 155.729 C 651.408 153.364 662.882 148.881 667.463 146.936 Z\" fill=\"rgb(240,171,161)\"></path><path d=\"M 667.463 146.936 C 664.585 100.653 641.631 72.977 630.513 64.925 C 613.409 65.387 583.072 66.132 550.851 66.767 M 667.463 146.936 C 670.061 152.331 674.837 167.619 673.159 185.604 C 684.27 195.601 687.099 215.576 683.569 216.601 C 680.745 217.421 677.382 214.437 676.053 212.843 C 676.661 215.842 676.782 221.839 672.41 221.839 C 668.037 221.839 667.29 215.842 667.463 212.843 C 665.741 213.72 663.862 214.249 661.935 214.397 C 660.191 214.526 659.078 212.876 659.625 211.214 C 660.452 208.701 661.856 205.906 663.869 205.214 C 667.513 203.961 668.652 199.748 663.869 195.535 C 659.087 191.322 655.557 195.535 656.695 201.798 C 657.606 206.808 655.632 208.592 654.532 208.858 C 644.187 206.398 648.604 190.508 652.106 182.871 C 651.461 175.884 645.209 161.596 642.163 155.729 M 667.463 146.936 C 662.882 148.881 651.408 153.364 642.163 155.729 M 642.163 155.729 C 635.789 139.219 621.15 105.614 613.584 103.279 L 549.498 102.154 M 550.851 66.767 C 554.556 73.709 559.472 90.505 549.498 102.154 M 550.851 66.767 L 549.498 66.794 C 538.601 67.007 527.704 67.202 516.807 67.378 C 514.078 67.421 511.364 67.463 508.671 67.502 C 499.282 67.641 490.16 67.754 481.6 67.834 C 478.961 67.859 476.322 67.88 473.683 67.899 C 464.535 67.992 455.401 68.662 446.465 69.749 C 443.866 70.064 441.285 70.416 438.725 70.799 C 429.716 72.145 420.972 73.88 412.693 75.832 C 409.558 76.572 406.433 77.356 403.319 78.182 C 394.362 80.557 385.504 83.291 376.766 86.376 C 373.802 87.425 370.855 88.52 367.925 89.662 C 362.758 91.68 358.411 93.562 355.063 95.156 C 351.267 132.432 362.056 174.028 367.925 190.166 C 368.227 190.158 368.533 190.148 368.843 190.135 C 371.266 190.036 373.924 189.801 376.766 189.451 C 384.569 188.491 393.765 186.664 403.319 184.402 C 406.451 183.659 409.576 182.884 412.693 182.079 C 421.621 179.774 430.568 177.218 438.725 174.75 C 441.399 173.94 443.989 173.14 446.465 172.361 C 451.704 170.719 456.922 169.007 462.116 167.226 C 465.888 168.321 470.124 169.296 473.683 170.036 C 476.437 170.608 478.785 171.039 480.198 171.274 M 549.498 102.154 L 543.298 102.045 L 526.479 101.75 L 520.723 120.36 L 533.386 131.872 C 533.386 139.838 533.024 150.384 532.626 159.402 M 524.815 202.502 C 524.683 193.566 529.467 179.918 531.876 174.211 C 532.077 170.775 532.36 165.43 532.626 159.402 M 524.815 202.502 C 523.227 213.508 519.23 238.87 515.945 252.274 C 516.711 268.098 518.474 302.013 519.394 311.08 M 524.815 202.502 C 522.263 203.947 519.582 205.153 516.807 206.103 C 514.165 207.006 511.44 207.641 508.671 207.999 C 496.55 209.55 486.88 205.163 482.627 201.798 M 519.394 311.08 L 494.098 315.515 M 519.394 311.08 L 522.787 345.113 C 523.622 347.301 526.399 353.008 530.827 358.329 C 536.362 364.98 536.898 374.041 534.933 375.157 C 533.362 376.05 529.71 372.514 528.08 370.634 C 528.405 374.048 528.238 381.051 524.967 381.757 C 521.696 382.463 521.249 375.887 521.435 372.511 C 518.499 375.299 514.344 375.942 512.634 375.915 C 506.816 375.145 507.93 372.074 509.215 370.634 C 526.514 362.58 518.242 357.542 511.944 356.03 C 509.781 356.211 505.968 358.004 508.023 363.737 C 510.078 369.47 506.355 370.904 504.237 370.904 C 494.069 367.551 498.198 353.101 501.533 346.295 C 498.612 340.021 495.359 323.161 494.098 315.515 M 494.098 315.515 C 489.464 287.514 480.684 225.569 482.627 201.798 M 482.627 201.798 L 480.198 171.274 M 480.198 171.274 C 480.644 171.282 481.112 171.286 481.6 171.286 C 488.231 171.296 498.536 170.656 508.671 168.63 C 511.41 168.088 514.124 167.431 516.807 166.66 C 522.848 164.906 528.425 162.546 532.626 159.402\" fill=\"transparent\" stroke-width=\"1.121\" stroke=\"rgb(0,0,0)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 578.872 148.011 C 578.872 147.147 579.573 146.446 580.437 146.446 C 581.301 146.446 582.002 147.147 582.002 148.011 C 582.002 148.875 581.301 149.576 580.437 149.576 C 579.573 149.576 578.872 148.875 578.872 148.011 Z\" fill=\"rgb(9,9,9)\"></path><path d=\"M 175.828 149.809 L 140.19 242.846 M 135.775 254.2 L 117.168 301.823 M 90.991 304.346 L 110.86 254.2 M 67.653 300.246 L 85.629 254.2 M 143.029 298.354 L 196.959 157.378 M 171.098 292.677 L 224.712 152.963 M 196.959 287.315 L 257.537 132.507 M 225.954 275.792 L 289.136 113.403 M 258.355 255.948 L 318.376 100.802 M 343.952 96.392 L 289.711 236.093 M 322.657 215.033 L 351.327 140.044 M 353.283 198.295 L 359.679 183.399\" fill=\"transparent\" stroke-width=\"1.121\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\" opacity=\"0.1\"></path></svg>',svgContentId:10528478267,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vtyn8r\",\"data-framer-name\":\"Frame 427318539\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\"},children:\"We don't know how to rid \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\"},children:\"the world of theft and \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\"},children:\"fraud, we can make them \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\"},children:\"unprofitable!\"})]}),className:\"framer-h4dftn\",\"data-framer-name\":\"We don't know how to rid the world of theft and fraud, we make them Unprofitable!\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sqwxai\",\"data-framer-name\":\"Frame 427318541\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xy752l\",\"data-framer-name\":\"Frame 427318538\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Experience PROFID: unleashing a minimum 2X reduction in theft and fraud, surpassing 90% in certain sectors. How? We've harnessed the revolutionary \u2018data openness\u2019 technology from credit bureaus and adapted it to the entire market.\"})}),className:\"framer-1mtb0y3\",\"data-framer-name\":\"Experience EPASS: Unleashing a Minimum 2X Reduction in Theft and Fraud, Surpassing 90% in Certain Sectors. How? We've hamessed the revolutionary \u2018data openness\u2019 technology from credit bureaus and\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-a98wuy hidden-tf1r54 hidden-l241wy\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ksvm23\",\"data-framer-name\":\"Frame 427318493\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i7tf8b\",\"data-framer-name\":\"Frame 427318542\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ready to get started?\"})}),className:\"framer-1sg1phg\",\"data-framer-name\":\"Ready to get started?\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"PROFID offers the fastest, easiest, \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"and fairest way to run background checks.\"})]}),className:\"framer-1xb3djs\",\"data-framer-name\":\"Epass offers the fastest, easiest, and fairest way to run background checks.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay10=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+11337+0+0+413-144,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-uvbszi-container\",id:\"uvbszi\",nodeId:\"rnvoBqbsW\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(UserComponent,{height:\"100%\",id:\"rnvoBqbsW\",k9W7gMjUi:k9W7gMjUi3bnx0g({overlay:overlay10}),layoutId:\"rnvoBqbsW\",MY6MPKVVr:\"Get in touch\",uv92xjzJ4:\"0px 2px 5px 0px rgba(0, 0, 0, 0.16)\",variant:\"qrKjm5NNJ\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay10.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1r5pyni\"),\"data-framer-portal-id\":\"uvbszi\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay10.hide()},\"wiLs_kkcS\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"474px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-jq6p3j-container\"),\"data-framer-portal-id\":\"uvbszi\",inComponentSlot:true,nodeId:\"FCd_NSBae\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Form,{height:\"100%\",id:\"FCd_NSBae\",layoutId:\"FCd_NSBae\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+11337+0+0+413-144,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5ddts6-container\",nodeId:\"nkked07z0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(UserComponent,{height:\"100%\",id:\"nkked07z0\",layoutId:\"nkked07z0\",MY6MPKVVr:\"Contact us\",OyPYrAwsq:\"https://calendly.com/profid-theprofid/30min\",uv92xjzJ4:\"0px 2px 5px 0px rgba(0, 0, 0, 0.25)\",variant:\"CKvTc6SUc\",width:\"100%\"})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1a4g9t5 hidden-tf1r54 hidden-l241wy\",id:elementId7,ref:ref8,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ad3k7v\",\"data-framer-name\":\"Frame 427318546\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pb5hnr\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h0nnc6\",\"data-framer-name\":\"Frame 427318545\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l6eb7u\",\"data-framer-name\":\"Frame 427318544\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\"},children:\"FAQ\"})}),className:\"framer-jya8nm\",\"data-framer-name\":\"FAQ\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Do you have any questions? \"})}),className:\"framer-nkw9ka\",\"data-framer-name\":\"Do you have any questions? Leave your Email for contact.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+11750+80+0+0+0+0+0+256.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14pqaef-container\",nodeId:\"xQguCkhyj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(UserComponent,{height:\"100%\",id:\"xQguCkhyj\",layoutId:\"xQguCkhyj\",MY6MPKVVr:\"Contact us\",OyPYrAwsq:\"https://calendly.com/profid-theprofid/30min\",uv92xjzJ4:\"0px 2px 5px 0px rgba(0, 0, 0, 0.16)\",variant:\"nUWe0wlTF\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-viyvh0\",\"data-framer-name\":\"Frame 427318321\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"620px\",y:(componentViewport?.y||0)+0+11750+80+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m10ow1-container\",nodeId:\"UZ2N9iiHs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQ,{CfLzN1UUV:20,dBt7YcPaI:\"A background check is a process where an employer verifies the information provided by a job seeker and investigates their criminal record, education, employment history, and other relevant details. It is required during the job search process to ensure the accuracy of the information provided and to assess the suitability of the candidate for the position\",height:\"100%\",id:\"UZ2N9iiHs\",KGoNZtYVS:\"What is a background check and why is it required during the job search process?\",layoutId:\"UZ2N9iiHs\",style:{width:\"100%\"},variant:\"wKf4r4d6H\",width:\"100%\"})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1de00cd\",\"data-framer-name\":\"Line 35\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:622,svg:'<svg width=\"622\" height=\"4\" viewBox=\"-1 -1 622 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"1.18164\" x2=\"620\" y2=\"1.18164\" stroke=\"#525F7E\" stroke-opacity=\"0.13\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"620px\",y:(componentViewport?.y||0)+0+11750+80+0+0+0+100,children:/*#__PURE__*/_jsx(Container,{className:\"framer-t6p301-container\",nodeId:\"i0ylXhiqw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQ,{CfLzN1UUV:20,dBt7YcPaI:\"During a background check, an employer may check a variety of data and information, including but not limited to: criminal history, education history, employment history, credit history, driving record, and social media presence. The specific information checked may vary depending on the employer and the position being applied for.\",height:\"100%\",id:\"i0ylXhiqw\",KGoNZtYVS:\"What data and information can be checked during a background check?\",layoutId:\"i0ylXhiqw\",style:{width:\"100%\"},variant:\"wKf4r4d6H\",width:\"100%\"})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-oyzpwr\",\"data-framer-name\":\"Line 42\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:622,svg:'<svg width=\"622\" height=\"4\" viewBox=\"-1 -1 622 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"1.18164\" x2=\"620\" y2=\"1.18164\" stroke=\"#525F7E\" stroke-opacity=\"0.13\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"620px\",y:(componentViewport?.y||0)+0+11750+80+0+0+0+200,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19zsamu-container\",nodeId:\"BgEIdVGdg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQ,{CfLzN1UUV:20,dBt7YcPaI:\"The procedure for conducting a background check varies depending on the employer and the type of check being conducted. Typically, the process involves obtaining consent from the job seeker, gathering relevant information, and verifying the accuracy of that information. The length of time it takes to conduct a background check can also vary depending on the complexity of the check and the availability of information.\",height:\"100%\",id:\"BgEIdVGdg\",KGoNZtYVS:\"What is the procedure for conducting a background check and how long does it take?\",layoutId:\"BgEIdVGdg\",style:{width:\"100%\"},variant:\"wKf4r4d6H\",width:\"100%\"})})})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-173ca2x hidden-tf1r54 hidden-l241wy\",\"data-framer-name\":\"Frame 427318559\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vwv6ik\",\"data-framer-name\":\"Frame 427318700\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cxdr97\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"San Diego, California\"})})}),className:\"framer-1gmmcme\",\"data-framer-name\":\"San Diego Spaces Makers Quarter 845 15th StreetCalifornia, 92101\",fonts:[\"Inter-Medium\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"profid@theprofid.com\"})}),className:\"framer-aaixww\",\"data-framer-name\":\"Partners@epasscheck.com\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"(650) 446-7717\"})}),className:\"framer-1wc7ywa\",\"data-framer-name\":\"(747)2857444\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g8f1ah\",\"data-framer-name\":\"Frame 427318563\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Background check\"})}),className:\"framer-1nx9qap\",\"data-framer-name\":\"Background check\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gkr7wy\",\"data-framer-name\":\"Frame 427318562\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"#perfect-solution\",motionChild:true,nodeId:\"N1FN72tdn\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"Perfect solution\"})})})}),className:\"framer-1mvj48\",\"data-framer-name\":\"Perfect solution\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"#benefits\",motionChild:true,nodeId:\"KsPN2P8q5\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"Benefits\"})})})}),className:\"framer-1o69ey7\",\"data-framer-name\":\"Benefits\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"#how-it-works\",motionChild:true,nodeId:\"FqF8gfkNo\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"How it works\"})})})}),className:\"framer-xek373\",\"data-framer-name\":\"How it works\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13prxio\",\"data-framer-name\":\"Group 334\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"#tariffs\",motionChild:true,nodeId:\"k_kvvwY3J\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"Pricing\"})})})}),className:\"framer-1q6lk81\",\"data-framer-name\":\"Tariffs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"#faq\",motionChild:true,nodeId:\"ZO3mZfjhb\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"FAQ\"})})})}),className:\"framer-xzzlba\",\"data-framer-name\":\"FAQ\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-umayun\",\"data-framer-name\":\"Group 333\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oqjqux\",\"data-framer-name\":\"Mask group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hus0ab\",\"data-framer-name\":\"image 4\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:45,intrinsicWidth:64,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12220.5+49+385+0+0+44.052-42),pixelHeight:45,pixelWidth:64,src:\"https://framerusercontent.com/images/8CgifXXPTnl2IQYIbhN4vsrfoPg.png\"},className:\"framer-37irij\",\"data-framer-name\":\"Mask_group\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uiqv6m\",\"data-framer-name\":\"Frame 427318561\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/1NIXalueY9-25VK8XK1XZ-tUak49XF34V/view?usp=sharing\",motionChild:true,nodeId:\"GohG5Iqdd\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"Privacy Policy\"})})})}),className:\"framer-stfuro\",\"data-framer-name\":\"Privacy Policy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/1T3tSN5TqyT0MxYNNwWnCs37DmG_lh6Ib/view?usp=sharing\",motionChild:true,nodeId:\"swO9MWqu9\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"Terms of service\"})})})}),className:\"framer-v10bvo\",\"data-framer-name\":\"Terms of service\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/1rKDaHrdhdzf-L4307GWxkLjGD-DxA1SN/view?usp=sharing\",motionChild:true,nodeId:\"fAEAIy5ZQ\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"Customer agreement\"})})})}),className:\"framer-18xqg7w\",\"data-framer-name\":\"Customer agreement\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/1o8hYOF-fyg-zfwOz-IRrQKoNH741RI5D/view?usp=sharing\",motionChild:true,nodeId:\"VUiqAWysM\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"Cookie Policy\"})})})}),className:\"framer-1ayndok\",\"data-framer-name\":\"Customer agreement\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\\xa9 2025 PROFID. All rights reserved.\"})}),className:\"framer-10vzz7m\",\"data-framer-name\":\"\\xa9 2024 EPASS. Allrights reserved.\",fonts:[\"Inter\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/people/EPASS/100087441582953/\",motionChild:true,nodeId:\"v4pZkotqp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-5o87z9 framer-lux5qc\",\"data-framer-name\":\"Frame_427318582\",fill:\"black\",intrinsicHeight:39,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M38.003 19.932c0 9.598-7.114 17.532-16.356 18.82a19.267 19.267 0 0 1-5.69-.06C6.91 37.235 0 29.39 0 19.932 0 9.437 8.508.93 19.003.93c10.494 0 19.002 8.508 19.002 19.003h-.002Z\" fill=\"#fff\"/><path d=\"M21.647 16.189v4.14h5.12l-.81 5.576h-4.31v12.847a19.267 19.267 0 0 1-5.69-.06V25.906h-4.722v-5.577h4.723v-5.065a5.69 5.69 0 0 1 5.69-5.69v.002c.01 0 .018-.003.027-.003h5.094v4.823H23.44c-.989 0-1.792.803-1.792 1.792l-.001.002Z\" fill=\"#000\"/></svg>',transformTemplate:transformTemplate2,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/theprofid/\",motionChild:true,nodeId:\"Cz884GyxU\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-znhheu framer-lux5qc\",\"data-framer-name\":\"Frame_427318583\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 39 39\"><path d=\"M 19.051 0.929 L 18.965 0.929 C 8.494 0.929 0.005 9.417 0.005 19.889 L 0.005 19.975 C 0.005 30.445 8.494 38.935 18.965 38.935 L 19.051 38.935 C 29.522 38.935 38.011 30.445 38.011 19.975 L 38.011 19.888 C 38.011 9.418 29.522 0.928 19.051 0.928 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 9.07 13.562 C 8.581 13.123 8.307 12.494 8.32 11.837 C 8.32 11.153 8.57 10.552 9.07 10.087 C 9.57 9.622 10.214 9.389 11.004 9.389 C 11.794 9.389 12.413 9.622 12.912 10.086 C 13.412 10.551 13.662 11.136 13.662 11.837 C 13.662 12.539 13.412 13.097 12.912 13.562 C 12.412 14.026 11.776 14.259 11.004 14.259 C 10.232 14.259 9.57 14.026 9.069 13.562 Z M 13.24 16.227 L 13.24 30.474 L 8.74 30.474 L 8.74 16.227 L 13.242 16.227 Z M 28.227 17.635 C 29.209 18.7 29.698 20.162 29.698 22.024 L 29.698 30.224 L 25.423 30.224 L 25.423 22.602 C 25.423 21.662 25.179 20.933 24.693 20.414 C 24.207 19.894 23.553 19.634 22.732 19.634 C 21.912 19.634 21.257 19.894 20.771 20.414 C 20.285 20.934 20.041 21.663 20.041 22.602 L 20.041 30.223 L 15.741 30.223 L 15.741 16.188 L 20.041 16.188 L 20.041 18.049 C 20.476 17.429 21.064 16.939 21.801 16.578 C 22.539 16.217 23.369 16.038 24.291 16.038 C 25.934 16.038 27.247 16.57 28.227 17.634 Z\" fill=\"rgb(7,11,14)\"></path></svg>',svgContentId:10636859272,withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1d15jp6\",\"data-framer-name\":\"Line 75\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:1282,svg:'<svg width=\"1282\" height=\"4\" viewBox=\"-1 -1 1282 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.1\" y1=\"1.18164\" x2=\"1280\" y2=\"1.18164\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-htje1i\",\"data-framer-name\":\"Line 76\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:1282,svg:'<svg width=\"1282\" height=\"4\" viewBox=\"-1 -1 1282 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.1\" y1=\"1.18164\" x2=\"1280\" y2=\"1.18164\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jid9h4\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+12220.5+49+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-620fx-container\",nodeId:\"KopeD_j46\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(UserComponent,{height:\"100%\",id:\"KopeD_j46\",layoutId:\"KopeD_j46\",MY6MPKVVr:\"Contact us\",OyPYrAwsq:\"https://calendly.com/profid-theprofid/30min\",uv92xjzJ4:\"0px 2px 5px 0px rgba(0, 0, 0, 0.16)\",variant:\"nx1rwbQGT\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+12220.5+49+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cmtmn8-container\",nodeId:\"SkVQMQaZR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(UserComponent,{height:\"100%\",id:\"SkVQMQaZR\",layoutId:\"SkVQMQaZR\",MY6MPKVVr:\"Customer login\",OyPYrAwsq:\"https://dashboard.theprofid.com/\",uv92xjzJ4:\"0px 2px 5px 0px rgba(0, 0, 0, 0.16)\",variant:\"JS4ai7u1v\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-wca6zj\",\"data-framer-name\":\"PROFID_2\",fill:\"black\",intrinsicHeight:430,intrinsicWidth:2039,svg:'<svg width=\"2039\" height=\"430\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><mask id=\"a\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"2039\" height=\"430\"><path d=\"M.627 0H2038.42v429.992H.627V0Z\" fill=\"#fff\"/></mask><g mask=\"url(#a)\" fill=\"#fff\"><path d=\"M227.173 357.527a4.96 4.96 0 0 0-1.262-.558c.43.124.848.306 1.243.552l73.627 46.188a53.524 53.524 0 0 0 6.016 3.066 53.54 53.54 0 0 1-6.011-3.066l-73.613-46.182Zm-113.937 29.008c7.349 2.696 15.388 1.934 22.6-2.351l54.539-34.219c-.003-.001-.01-.002-.012-.004l-54.54 34.216c-7.203 4.279-15.242 5.04-22.587 2.358Zm55.095-327.022c8.268-24.668 30.352-40.608 56.257-40.608 8.088 0 15.807 1.556 22.846 4.444-7.046-2.893-14.767-4.45-22.864-4.45-25.899 0-47.976 15.94-56.251 40.607l-28.008 83.543.012.004 28.008-83.54Zm-94.977 283.31 24.243-72.312-.012-.01-24.243 72.316c-6.921 20.63-.628 42.185 15.821 55.953-16.44-13.779-22.726-35.328-15.809-55.947Zm269.631 39.87c-6.721 4.989-14.599 6.566-22.1 4.677 7.508 1.892 15.391.316 22.112-4.677 7.809-5.778 15.145-17.842 10.127-32.819l-20.575-61.372-.016.012 20.572 61.36c5.019 14.971-2.312 27.035-10.12 32.819ZM94.252 402.567c14.085 9.218 31.066 10.941 46.557 4.784-15.481 6.141-32.465 4.421-46.557-4.784ZM238.954 44.876c7.98 3.504 15.36 10.305 19.173 21.681l27.94 83.344.012-.005-27.939-83.332c-3.817-11.384-11.201-18.185-19.186-21.688Zm-76.021 287.219c6.377 6.012 13.443 11.01 20.988 14.909-7.541-3.899-14.601-8.895-20.976-14.903l-46.301-43.646-.004.006 46.293 43.634Z\"/><path d=\"m97.6 270.503-61.773-58.228c-.171-.16-.311-.338-.479-.501.165.16.299.343.467.501l61.769 58.226.013.01.003-.008Zm183.239-210.99c-5.687-16.964-17.907-29.8-33.405-36.164-7.039-2.888-14.758-4.444-22.846-4.444-25.904 0-47.989 15.94-56.257 40.608l-28.007 83.54 4.572 1.373 13.626 4.098 4.573 1.372 27.936-83.332c6.105-18.208 21.339-24.699 33.557-24.699 4.579 0 9.579.912 14.366 3.01 7.985 3.503 15.369 10.305 19.186 21.689l27.939 83.332 4.569-1.372 13.63-4.098 4.569-1.373-28.008-83.54Zm-65.945 296.846c-6.457-.718-12.774-2.193-18.894-4.294-1.895-.651-3.776-1.322-5.624-2.099l-54.54 34.217c-7.212 4.287-15.251 5.048-22.6 2.352-2.451-.898-4.823-2.18-7.063-3.842-7.81-5.778-15.139-17.835-10.12-32.819l20.587-61.413.004-.007-3.824-3.603-11.399-10.745-3.821-3.603-.003.008-24.243 72.312c-6.917 20.618-.63 42.168 15.81 55.947.833.697 1.565 1.469 2.448 2.124.85.631 1.764 1.101 2.64 1.672 14.092 9.205 31.076 10.927 46.557 4.784 2.655-1.053 5.271-2.279 7.811-3.791l73.384-46.032c.532-.332 1.112-.512 1.702-.621a88.141 88.141 0 0 1-8.812-.547Zm160.928-13.536-24.23-72.274-3.823 3.604-11.4 10.745-3.82 3.604 20.575 61.372c5.018 14.977-2.318 27.041-10.127 32.819-6.721 4.993-14.604 6.569-22.112 4.677-.227-.056-.447-.157-.671-.221-1.018-.287-2.034-.594-3.034-1.008a28.746 28.746 0 0 1-3.603-1.808l-54.748-34.35c-1.851.776-3.736 1.446-5.631 2.096-6.125 2.1-12.442 3.572-18.904 4.288a88.077 88.077 0 0 1-8.808.54c.139.027.286.02.426.062.434.124.86.309 1.261.558l73.613 46.182a53.455 53.455 0 0 0 6.011 3.066c6.488 2.828 13.417 4.319 20.365 4.319 10.878 0 21.383-3.528 30.396-10.2 18.358-13.611 25.527-36.403 18.264-58.071Z\"/><path d=\"M41.69 133.009c12.712-8.598 28.39-10.996 42.97-6.628l139.959 42.068 139.96-42.068c14.604-4.368 30.259-1.97 42.975 6.628 6.753 4.565 12.145 10.481 15.918 17.278-3.773-6.825-9.178-12.765-15.956-17.346-12.716-8.598-28.382-11.015-42.974-6.63l-55.695 16.743-4.569 1.372-13.63 4.097-4.569 1.374-.012.004-61.479 18.48-61.493-18.484-4.572-1.374-13.627-4.097-4.572-1.372-.013-.005-55.681-16.738c-14.594-4.385-30.247-1.968-42.976 6.63-13.524 9.144-21.594 23.693-22.128 39.912-.012.381.056.746.05 1.125.006-.352-.032-.696-.018-1.051.54-16.225 8.609-30.774 22.133-39.918Zm-20.13 56.188a50.708 50.708 0 0 0 1.814 5.136 50.368 50.368 0 0 1-1.907-5.588c.04.148.05.304.094.452Z\"/><path d=\"M179.631 315.701 52.512 195.876c-6.156-5.808-9.398-13.699-9.113-22.215.299-8.94 4.672-16.904 12.001-21.86 4.436-3.001 9.55-4.585 14.779-4.585 2.492 0 4.976.366 7.368 1.086l146.383 43.995.689.205 147.079-44.2c7.454-2.266 15.524-.981 22.14 3.499 7.33 4.956 11.704 12.92 12.001 21.867.285 8.516-2.957 16.405-9.113 22.208L269.607 315.701c-25.637 24.165-64.313 24.165-89.976 0Zm243.841-165.413c-3.773-6.798-9.165-12.714-15.918-17.279-12.716-8.597-28.371-10.996-42.976-6.628l-139.959 42.068L84.66 126.381c-14.58-4.368-30.26-1.969-42.969 6.628-13.524 9.144-21.593 23.693-22.133 39.919-.014.354.024.698.018 1.049a52.913 52.913 0 0 0 .562 8.363c.32 2.17.74 4.316 1.329 6.405a50.178 50.178 0 0 0 1.908 5.588c.083.204.195.393.283.595.297.689.645 1.357.972 2.034a51.15 51.15 0 0 0 1.86 3.526c.41.704.838 1.396 1.282 2.081a51.854 51.854 0 0 0 2.339 3.284c.467.608.91 1.225 1.408 1.815a53.505 53.505 0 0 0 3.83 4.106c.167.163.307.342.478.502L97.6 270.504l3.82 3.602 11.399 10.746 3.824 3.602 46.303 43.647c6.373 6.009 13.433 11.005 20.974 14.903 2.107 1.089 4.268 2.041 6.443 2.957l.012.004c1.848.779 3.731 1.449 5.625 2.1 6.119 2.101 12.436 3.575 18.894 4.295 2.917.324 5.856.514 8.812.546.305.003.609.043.913.043.292 0 .577-.039.867-.041a88.696 88.696 0 0 0 8.809-.54c6.46-.716 12.777-2.19 18.903-4.288 1.894-.651 3.78-1.32 5.632-2.098a91.86 91.86 0 0 0 27.464-17.881l46.24-43.588.014-.012 3.822-3.603 11.398-10.745 3.824-3.605 61.82-58.272c10.995-10.356 16.772-24.334 16.27-39.348-.268-8.123-2.427-15.826-6.21-22.64Zm291.963 78.932H589.106v-62.584h126.329v62.584ZM539.432 124.185v232.526h49.674v-85.039h140.356l35.637-34.241v-79.006l-35.637-34.24h-190.03Zm456.451 103.683H869.554v-61.232h126.329v61.232Zm14.027 42.443 35.65-34.24v-77.646l-35.65-34.24H819.88v232.526h49.674v-86.4h84.821l46.905 86.4h52.2l-47.26-86.4h3.69Zm287.23 42.597h-141.49V167.999h141.49v144.909Zm-155.51-188.723-35.65 34.24v164.046l35.65 34.24h169.54l35.65-34.24V158.425l-35.65-34.24h-169.54Zm444.01 97.578h-125.56v-55.462h159.77v-42.116h-209.44v232.526h49.67v-93.178h125.56v-41.77Zm79.11 134.948h49.68V124.185h-49.68v232.526Zm305.1-43.803h-139.02V167.999h139.02v144.909Zm-188.69-188.723v232.526h202.72l35.64-34.24V158.425l-35.64-34.24h-202.72Z\"/></g></svg>',withExternalLayout:true})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-mj0cog hidden-72rtr7 hidden-l241wy\",\"data-border\":true,\"data-framer-name\":\"Frame 427318589\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lfwxd2\",\"data-framer-name\":\"Frame 427318593\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b438i8\",\"data-framer-name\":\"Frame 427318281\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":YhPtoV1ee\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"q_cE5SVXc\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5q339h\",\"data-styles-preset\":\"UvcmRHRwk\",children:\"Perfect solution\"})})})}),className:\"framer-3k42aw\",\"data-framer-name\":\"Perfect solution\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":wdXWECiAd\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"Il13vyE6E\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5q339h\",\"data-styles-preset\":\"UvcmRHRwk\",children:\"Benefits\"})})})}),className:\"framer-1cwamio\",\"data-framer-name\":\"Benefits\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":oHw1YIphq\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"oMUjjgl7Q\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5q339h\",\"data-styles-preset\":\"UvcmRHRwk\",children:\"How it works\"})})})}),className:\"framer-1faw1ix\",\"data-framer-name\":\"How it works\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":wqn01CcdP\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"lf3v76Wbh\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5q339h\",\"data-styles-preset\":\"UvcmRHRwk\",children:\"Pricing\"})})})}),className:\"framer-nq4j84\",\"data-framer-name\":\"Tariffs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":fOp1kutjh\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"XoXeESMnB\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5q339h\",\"data-styles-preset\":\"UvcmRHRwk\",children:\"FAQ\"})})})}),className:\"framer-2rpik3\",\"data-framer-name\":\"FAQ\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:\"https://dashboard.theprofid.com\",motionChild:true,nodeId:\"E1ERM4qb7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1mvfuuh framer-lux5qc\",\"data-framer-name\":\"Frame 427318279\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Customer login\"})}),className:\"framer-19d4017\",\"data-framer-name\":\"Customer login\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":o3pJr7HUI\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"IjyZungMv\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-18xx7ky framer-lux5qc\",\"data-framer-name\":\"g10\",fill:\"black\",intrinsicHeight:430,intrinsicWidth:2039,svg:'<svg width=\"2039\" height=\"430\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><mask id=\"a\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"2039\" height=\"430\"><path d=\"M.627 0H2038.42v429.992H.627V0Z\" fill=\"#fff\"/></mask><g mask=\"url(#a)\" fill=\"#563FFF\"><path d=\"M227.173 357.527a4.96 4.96 0 0 0-1.262-.558c.43.124.848.306 1.243.552l73.627 46.188a53.524 53.524 0 0 0 6.016 3.066 53.54 53.54 0 0 1-6.011-3.066l-73.613-46.182Zm-113.937 29.008c7.349 2.696 15.388 1.934 22.6-2.351l54.539-34.219c-.003-.001-.01-.002-.012-.004l-54.54 34.216c-7.203 4.279-15.242 5.04-22.587 2.358Zm55.095-327.022c8.268-24.668 30.352-40.608 56.257-40.608 8.088 0 15.807 1.556 22.846 4.444-7.046-2.893-14.767-4.45-22.864-4.45-25.899 0-47.976 15.94-56.251 40.607l-28.008 83.543.012.004 28.008-83.54Zm-94.977 283.31 24.243-72.312-.012-.01-24.243 72.316c-6.921 20.63-.628 42.185 15.821 55.953-16.44-13.779-22.726-35.328-15.809-55.947Zm269.631 39.87c-6.721 4.989-14.599 6.566-22.1 4.677 7.508 1.892 15.391.316 22.112-4.677 7.809-5.778 15.145-17.842 10.127-32.819l-20.575-61.372-.016.012 20.572 61.36c5.019 14.971-2.312 27.035-10.12 32.819ZM94.252 402.567c14.085 9.218 31.066 10.941 46.557 4.784-15.481 6.141-32.465 4.421-46.557-4.784ZM238.954 44.876c7.98 3.504 15.36 10.305 19.173 21.681l27.94 83.344.012-.005-27.939-83.332c-3.817-11.384-11.201-18.186-19.186-21.688Zm-76.021 287.219c6.377 6.012 13.443 11.01 20.988 14.909-7.541-3.899-14.601-8.895-20.976-14.903l-46.301-43.646-.004.006 46.293 43.634Z\"/><path d=\"m97.6 270.503-61.773-58.228c-.171-.16-.311-.338-.479-.501.165.16.299.343.467.501l61.769 58.226.013.01.003-.008Zm183.239-210.99c-5.687-16.964-17.907-29.8-33.405-36.164-7.039-2.888-14.758-4.444-22.846-4.444-25.904 0-47.989 15.94-56.257 40.608l-28.007 83.54 4.572 1.373 13.626 4.098 4.573 1.372 27.936-83.332c6.105-18.208 21.339-24.699 33.557-24.699 4.579 0 9.579.912 14.366 3.01 7.985 3.503 15.369 10.305 19.186 21.689l27.939 83.332 4.569-1.372 13.63-4.098 4.569-1.373-28.008-83.54Zm-65.945 296.846c-6.457-.718-12.774-2.193-18.894-4.294-1.895-.651-3.776-1.322-5.624-2.099l-54.54 34.217c-7.212 4.287-15.251 5.048-22.6 2.352-2.451-.898-4.823-2.18-7.063-3.842-7.81-5.778-15.139-17.835-10.12-32.819l20.587-61.413.004-.007-3.824-3.603-11.399-10.745-3.821-3.603-.003.008-24.243 72.312c-6.917 20.618-.63 42.168 15.81 55.947.833.697 1.565 1.469 2.448 2.124.85.631 1.764 1.101 2.64 1.672 14.092 9.205 31.076 10.927 46.557 4.784 2.655-1.053 5.271-2.279 7.811-3.791l73.384-46.032c.532-.332 1.112-.512 1.702-.621a88.141 88.141 0 0 1-8.812-.547Zm160.928-13.536-24.23-72.274-3.823 3.604-11.4 10.745-3.82 3.604 20.575 61.372c5.018 14.977-2.318 27.041-10.127 32.819-6.721 4.993-14.604 6.569-22.112 4.677-.227-.056-.447-.157-.671-.221-1.018-.287-2.034-.594-3.034-1.008a28.746 28.746 0 0 1-3.603-1.808l-54.748-34.35c-1.851.776-3.736 1.446-5.631 2.096-6.125 2.1-12.442 3.572-18.904 4.288a88.077 88.077 0 0 1-8.808.54c.139.027.286.02.426.062.434.124.86.309 1.261.558l73.613 46.182a53.455 53.455 0 0 0 6.011 3.066c6.488 2.828 13.417 4.319 20.365 4.319 10.878 0 21.383-3.528 30.396-10.2 18.358-13.611 25.527-36.403 18.264-58.071Z\"/><path d=\"M41.69 133.009c12.712-8.598 28.39-10.996 42.97-6.628l139.959 42.068 139.96-42.068c14.604-4.368 30.259-1.97 42.975 6.628 6.753 4.565 12.145 10.481 15.918 17.278-3.773-6.825-9.178-12.765-15.956-17.346-12.716-8.598-28.382-11.015-42.974-6.63l-55.695 16.743-4.569 1.372-13.63 4.097-4.569 1.374-.012.004-61.479 18.48-61.493-18.484-4.572-1.374-13.627-4.097-4.572-1.372-.013-.005-55.681-16.738c-14.594-4.385-30.247-1.968-42.976 6.63-13.524 9.144-21.594 23.693-22.128 39.912-.012.381.056.746.05 1.125.006-.352-.032-.696-.018-1.051.54-16.225 8.609-30.774 22.133-39.918Zm-20.13 56.188a50.708 50.708 0 0 0 1.814 5.136 50.368 50.368 0 0 1-1.907-5.588c.04.148.05.304.094.452Z\"/><path d=\"M179.631 315.701 52.512 195.876c-6.156-5.808-9.398-13.699-9.113-22.215.299-8.94 4.672-16.904 12.001-21.86 4.436-3.001 9.55-4.585 14.779-4.585 2.492 0 4.976.366 7.368 1.086l146.383 43.995.689.205 147.079-44.2c7.454-2.266 15.524-.981 22.14 3.499 7.33 4.956 11.704 12.92 12.001 21.867.285 8.516-2.957 16.405-9.113 22.208L269.607 315.701c-25.637 24.165-64.313 24.165-89.976 0Zm243.841-165.413c-3.773-6.798-9.165-12.714-15.918-17.279-12.716-8.597-28.371-10.996-42.976-6.628l-139.959 42.068L84.66 126.381c-14.58-4.368-30.26-1.969-42.969 6.628-13.524 9.144-21.593 23.693-22.133 39.919-.014.354.024.698.018 1.049a52.913 52.913 0 0 0 .562 8.363c.32 2.17.74 4.316 1.329 6.405a50.178 50.178 0 0 0 1.908 5.588c.083.204.195.393.283.595.297.689.645 1.357.972 2.034a51.15 51.15 0 0 0 1.86 3.526c.41.704.838 1.396 1.282 2.081a51.854 51.854 0 0 0 2.339 3.284c.467.608.91 1.225 1.408 1.815a53.505 53.505 0 0 0 3.83 4.106c.167.163.307.342.478.502L97.6 270.504l3.82 3.602 11.399 10.746 3.824 3.602 46.303 43.647c6.373 6.009 13.433 11.005 20.974 14.903 2.107 1.089 4.268 2.041 6.443 2.957l.012.004c1.848.779 3.731 1.449 5.625 2.1 6.119 2.101 12.436 3.575 18.894 4.295 2.917.324 5.856.514 8.812.546.305.003.609.043.913.043.292 0 .577-.039.867-.041a88.696 88.696 0 0 0 8.809-.54c6.46-.716 12.777-2.19 18.903-4.288 1.894-.651 3.78-1.32 5.632-2.098a91.86 91.86 0 0 0 27.464-17.881l46.24-43.588.014-.012 3.822-3.603 11.398-10.745 3.824-3.605 61.82-58.272c10.995-10.356 16.772-24.334 16.27-39.348-.268-8.123-2.427-15.826-6.21-22.64Zm291.963 78.932H589.106v-62.584h126.329v62.584ZM539.432 124.185v232.526h49.674v-85.039h140.356l35.637-34.241v-79.006l-35.637-34.24h-190.03Zm456.451 103.683H869.554v-61.232h126.329v61.232Zm14.027 42.443 35.65-34.24v-77.646l-35.65-34.24H819.88v232.526h49.674v-86.4h84.821l46.905 86.4h52.2l-47.26-86.4h3.69Zm287.23 42.597h-141.49V167.999h141.49v144.909Zm-155.51-188.723-35.65 34.24v164.046l35.65 34.24h169.54l35.65-34.24V158.425l-35.65-34.24h-169.54Zm444.01 97.578h-125.56v-55.462h159.77v-42.116h-209.44v232.526h49.67v-93.178h125.56v-41.77Zm79.11 134.948h49.68V124.185h-49.68v232.526Zm305.1-43.803h-139.02V167.999h139.02v144.909Zm-188.69-188.723v232.526h202.72l35.64-34.24V158.425l-35.64-34.24h-202.72Z\"/></g></svg>',withExternalLayout:true})})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-uksadh hidden-72rtr7 hidden-l241wy\",\"data-framer-name\":\"Frame 427318662\",id:elementId8,ref:ref9,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13q14pk\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-f7yo45\",\"data-framer-name\":\"Frame 427318594\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cspqo\",\"data-framer-name\":\"Frame 427318665\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-upziw3\",\"data-framer-name\":\"Frame 427318664\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\"},children:\"The perfect solution for different industries \"})}),className:\"framer-mj4c2t\",\"data-framer-name\":\"Perfect solution for different industries\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q5ftks\",\"data-framer-name\":\"Frame 427318663\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Hire highly-qualified employees faster than the competition with PROFID\u2019s modern background check platform.\"})}),className:\"framer-14qptu\",\"data-framer-name\":\"Hire highly-qualified employees faster than the competition with EPASS\u2019s modern background check platform.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"It offers an aggregated database encompassing all pertinent information, enabling companies across all industries to effectively assess candidates.\"})}),className:\"framer-1lgkkgc\",\"data-framer-name\":\"It offers an aggregated database encompassing all pertinent information, enabling companies across all industries to effectively assess candidates.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ir2472\",\"data-framer-name\":\"Frame 427318592\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay11=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jotco3\",\"data-framer-name\":\"Frame 427318279\",id:\"1jotco3\",onTap:onTap3bnx0g({overlay:overlay11}),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get in touch\"})}),className:\"framer-1s17p9f\",\"data-framer-name\":\"Get started\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay11.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-13nxtmz\"),\"data-framer-portal-id\":\"1jotco3\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay11.hide()},\"pq80M3Uo_\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"474px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1rct67q-container\"),\"data-framer-portal-id\":\"1jotco3\",nodeId:\"hBAN5oYhH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Form,{height:\"100%\",id:\"hBAN5oYhH\",layoutId:\"hBAN5oYhH\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/profid-theprofid/30min\",motionChild:true,nodeId:\"nLKmL6ll8\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-89mp7y framer-lux5qc\",\"data-framer-name\":\"Frame 427318591\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Contact us\"})}),className:\"framer-xum6qu\",\"data-framer-name\":\"Talk to sales\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vay50y\",\"data-framer-name\":\"Frame 427318672\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sfh4lq\",\"data-framer-name\":\"Frame 427318668\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18ogrdk\",\"data-framer-name\":\"Frame 427318666\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Staffing\"})}),className:\"framer-ys6yxv\",\"data-framer-name\":\"Staffing\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Avoid background check delays.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Detect risks: criminal history, data falsification.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Improve hiring quality.\"})]}),className:\"framer-am2g3e\",\"data-framer-name\":\"Avoid background check delays Detect risks: criminal history, data falsification Improve hiring quality\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-o1dyr3\",\"data-framer-name\":\"Frame_427318486\",fill:\"black\",intrinsicHeight:149,intrinsicWidth:120,svg:'<svg width=\"120\" height=\"149\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"20.753\" y=\"19.876\" width=\"98.371\" height=\"118.549\" rx=\"11.35\" fill=\"url(#a)\"/><path d=\"M61.74 9.787a6.24 6.24 0 0 0-6.1 4.933l-2.727 12.723h35.312l-3.832-13.412a5.852 5.852 0 0 0-5.627-4.244H61.741Z\" fill=\"#fff\"/><path d=\"M69.938 1.59c-6.053 0-7.987 5.464-8.197 8.197h17.025c-.42-2.733-2.774-8.198-8.828-8.198Z\" fill=\"#fff\"/><path d=\"M52.913 27.443H38.409c-6.268 0-11.35 5.082-11.35 11.35v80.715c0 6.269 5.082 11.35 11.35 11.35h63.058c6.269 0 11.351-5.081 11.351-11.35V38.794c0-6.269-5.082-11.35-11.351-11.35H88.225m-35.312 0 2.726-12.724a6.24 6.24 0 0 1 6.102-4.933m-8.828 17.656h35.312m0 0-3.832-13.412a5.852 5.852 0 0 0-5.627-4.244m-17.025 0c.21-2.733 2.144-8.198 8.197-8.198 6.054 0 8.408 5.465 8.828 8.198m-17.025 0h17.025\" stroke=\"#000\" stroke-width=\"1.261\"/><path fill=\"#000\" d=\"M37.148 43.838h32.79v2.522h-32.79zm0 10.09h32.79v2.522h-32.79zm0 10.089H61.11v2.522H37.148z\"/><mask id=\"b\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"76\" y=\"36\" width=\"32\" height=\"32\"><circle cx=\"92.205\" cy=\"52.036\" r=\"15.134\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.261\"/></mask><g mask=\"url(#b)\" stroke=\"#000\" stroke-width=\"1.261\"><circle cx=\"92.205\" cy=\"52.036\" r=\"15.134\" fill=\"#fff\"/><path d=\"M95.989 46.36v3.784a4.414 4.414 0 0 1-8.829 0v-3.783a4.414 4.414 0 0 1 8.829 0ZM78.963 67.8c0-4.203 2.522-12.611 12.611-12.611 10.09 0 12.192 8.407 11.981 12.611\"/></g><rect x=\"84.638\" y=\"75.998\" width=\"15.134\" height=\"15.134\" rx=\"3.153\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.261\"/><rect x=\"84.638\" y=\"103.113\" width=\"15.134\" height=\"15.134\" rx=\"3.153\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.261\"/><path d=\"m88.422 81.043 5.675 5.675 11.981-11.981m-17.656 33.42 5.675 5.676 11.981-11.981\" stroke=\"#000\" stroke-width=\"1.261\"/><circle cx=\"53.739\" cy=\"95.546\" r=\"20.809\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.261\"/><rect x=\"51.217\" y=\"82.934\" width=\"5.045\" height=\"5.045\" rx=\"1.261\" fill=\"#000\"/><path d=\"M43.28 88.654a1.261 1.261 0 0 1 0-1.783l1.785-1.784a1.261 1.261 0 0 1 1.783 0l2.675 2.675-3.567 3.568-2.675-2.676Zm20.486 0a1.261 1.261 0 0 0 0-1.783l-1.784-1.784a1.261 1.261 0 0 0-1.784 0l-2.675 2.675 3.567 3.568 2.675-2.676Zm0 13.351a1.26 1.26 0 0 1 0 1.783l-1.784 1.784a1.262 1.262 0 0 1-1.784 0l-2.675-2.676 3.567-3.567 2.675 2.676Zm-20.486 0a1.26 1.26 0 0 0 0 1.783l1.785 1.784a1.262 1.262 0 0 0 1.783 0l2.675-2.676-3.567-3.567-2.675 2.676Z\" fill=\"#000\"/><rect x=\"51.217\" y=\"103.113\" width=\"5.045\" height=\"5.045\" rx=\"1.261\" fill=\"#000\"/><rect x=\"61.307\" y=\"93.024\" width=\"5.045\" height=\"5.045\" rx=\"1.261\" fill=\"#000\"/><rect x=\"41.128\" y=\"93.024\" width=\"5.045\" height=\"5.045\" rx=\"1.261\" fill=\"#000\"/><circle cx=\"53.74\" cy=\"95.546\" r=\"8.198\" stroke=\"#000\" stroke-width=\"1.261\"/><circle cx=\"53.74\" cy=\"95.546\" r=\"2.522\" fill=\"#000\"/><path fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.261\" d=\"m36.345 108.483 4.7 4.7-6.242 6.243-4.7-4.7z\"/><rect x=\"26.822\" y=\"111.572\" width=\"15.255\" height=\"35.859\" rx=\"3.153\" transform=\"rotate(45 26.822 111.572)\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.261\"/><defs><linearGradient id=\"a\" x1=\"20.753\" y1=\"38.667\" x2=\"102.729\" y2=\"138.425\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient></defs></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1frfsrt\",\"data-framer-name\":\"Frame 427318667\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Freelance\"})}),className:\"framer-4vfgwt\",\"data-framer-name\":\"Freelance\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Enhance client satisfaction by working with verified freelancers. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Reduce fraud by identifying fraudulent indicators.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Quick account activation.\"})]}),className:\"framer-1qtavf2\",\"data-framer-name\":\"Enhance client satisfaction by working with verified freelancers. Reduce fraud Detecting fraudulent signs Quick account activation\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bnl8mb\",\"data-framer-name\":\"Frame_427318716\",fill:\"black\",intrinsicHeight:142,intrinsicWidth:172,svg:'<svg width=\"172\" height=\"142\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M80.225 34.208v23.135h14.289V34.208c1.134-5.896 7.348-17.69 23.134-17.69 15.786 0 21.547 12.7 22.454 19.051v21.774h14.289V34.208c-1.134-10.886-10.07-32.66-36.743-32.66-26.672 0-36.062 21.774-37.423 32.66Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.361\"/><rect x=\"55.73\" y=\"55.982\" width=\"115.671\" height=\"85.107\" rx=\"11.35\" fill=\"url(#a)\"/><path d=\"M36.679 75.033c.544 3.81 3.856 6.124 5.443 6.805.907.453 2.722-.136 2.722-6.124 0-7.485-2.042-12.928 6.123-12.928 1.134 0 3.81.408 5.444 2.041.453-.68 1.905-2.041 4.082-2.041 2.722 0 6.804 2.041 7.485 5.443-.227-4.536-3.538-13.608-14.97-13.608-11.43 0-15.649 7.258-16.33 10.887v9.525Z\" fill=\"#000\"/><path d=\"M98.597 140.353c-1.815-10.886-10.887-32.66-32.66-32.66a5.357 5.357 0 0 1-2.722-1.4c2.948 6.591 8.71 22.629 8.165 34.06h27.217Z\" fill=\"#fff\"/><path d=\"M42.122 81.838c-1.587-.68-4.899-2.994-5.443-6.805-.68-.907-2.314-1.905-3.402 1.361-1.361 4.083 0 7.485 2.721 9.526 2.178 1.633 4.536 1.134 5.444.68v14.97c0 .827-.179 1.988-.68 3.078a5.628 5.628 0 0 1-1.127 1.645c-.759 4.096-2.276 16.642-2.276 34.06h34.02c.545-11.431-5.216-27.469-8.164-34.06-.77-.751-1.361-1.84-1.361-3.362 0-4.083 0-5.444 1.36-6.805 1.362-1.36 4.764-2.04 4.764-9.526V68.23c-.68-3.403-4.763-5.444-7.485-5.444-2.177 0-3.629 1.36-4.082 2.041-1.633-1.633-4.31-2.041-5.444-2.041-8.165 0-6.123 5.443-6.123 12.928 0 5.987-1.815 6.577-2.722 6.124Z\" fill=\"#fff\"/><path d=\"M35.998 107.693c-5.443 0-34.701-2.041-34.701 32.66h36.062c0-17.418 1.517-29.964 2.276-34.06-.83.826-2.003 1.4-3.637 1.4Z\" fill=\"#fff\"/><path d=\"M36.679 75.033c.544 3.81 3.856 6.124 5.443 6.805.907.453 2.722-.136 2.722-6.124 0-7.485-2.042-12.928 6.123-12.928 1.134 0 3.81.408 5.444 2.041.453-.68 1.905-2.041 4.082-2.041 2.722 0 6.804 2.041 7.485 5.443m-31.3 6.804c-.68-.907-2.313-1.905-3.401 1.361-1.361 4.083 0 7.485 2.721 9.526 2.178 1.633 4.536 1.134 5.444.68v14.97c0 .827-.179 1.988-.68 3.078m-4.083-29.615v-9.525c.68-3.63 4.899-10.887 16.33-10.887 11.43 0 14.742 9.072 14.969 13.608m-4.763 27.897c-1.361 1.361-1.361 2.722-1.361 6.805 0 1.522.592 2.611 1.36 3.362m0-10.167c1.362-1.36 4.764-2.04 4.764-9.526m-4.763 9.526c-2.041 2.042-8.301 4.899-17.01 0M67.977 86.6V68.23m0 18.37V68.23M40.76 104.647l14.29 13.933 6.804-12.928m-21.093-1.004a5.628 5.628 0 0 1-1.126 1.645m23.58 0a5.357 5.357 0 0 0 2.721 1.4c21.774 0 30.846 21.774 32.66 32.66H71.38m-8.165-34.06c2.948 6.591 8.71 22.629 8.165 34.06m0 0H37.359m2.276-34.06c-.83.826-2.003 1.4-3.637 1.4-5.443 0-34.701-2.041-34.701 32.66h36.062m2.276-34.06c-.759 4.096-2.276 16.642-2.276 34.06\" stroke=\"#000\" stroke-width=\"1.361\"/><circle cx=\"116.968\" cy=\"98.168\" r=\"17.01\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"1.361\"/><path d=\"m109.483 98.848 7.485 7.485 21.093-21.093\" stroke=\"#000\" stroke-width=\"1.361\"/><rect x=\"73.421\" y=\"69.59\" width=\"8.165\" height=\"5.443\" rx=\"1.361\" fill=\"#000\"/><rect x=\"85.669\" y=\"69.59\" width=\"8.165\" height=\"5.443\" rx=\"1.361\" fill=\"#000\"/><rect x=\"97.916\" y=\"69.59\" width=\"8.165\" height=\"5.443\" rx=\"1.361\" fill=\"#000\"/><path d=\"M95.875 130.147h54.433m21.093-57.835h-51.712\" stroke=\"#000\" stroke-width=\"1.361\"/><defs><linearGradient id=\"a\" x1=\"55.73\" y1=\"69.472\" x2=\"103.818\" y2=\"165.323\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient></defs></svg>',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16hz0zh\",\"data-framer-name\":\"Frame 427318669\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2v7hmf\",\"data-framer-name\":\"Frame 427318671\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8bv0ka\",\"data-framer-name\":\"Frame 427318669\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Real Estate\"})}),className:\"framer-1y9n408\",\"data-framer-name\":\"Real Estate\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Increase Tenant reliability.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Verify tenants\u2019 financial capabilities to pay. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Attract more tenants by providing a secure and trustworthy rental environment.\"})]}),className:\"framer-1xz465b\",\"data-framer-name\":\"Increase Tenant reliability Verify tenants\u2019 financial capabilities to pay Attract more tenants by providing a secure and trustworthy rental environment\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12hfwy0\",\"data-framer-name\":\"Frame_427318719\",fill:\"black\",intrinsicHeight:122,intrinsicWidth:154,svg:'<svg width=\"154\" height=\"122\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M49.886.764 22.203 28.36v92.928h90.394V.764h-62.71Z\" fill=\"url(#a)\"/><path d=\"M50.66.764V29.22H22.204\" stroke=\"#000\" stroke-width=\"1.116\"/><path d=\"M62.607 112.361V98.969h11.16v-9.486h11.717v-9.486h11.718V67.722h11.159v44.639H62.606Zm40.174-69.191v12.276l12.276-12.275h31.247c5.357 0 6.696-4.464 6.696-6.696V17.503c0-5.356-4.464-6.696-6.696-6.696h-49.66c-5.803 0-7.626 4.464-7.812 6.696v18.972c0 4.91 4.092 6.51 6.138 6.696h7.811Zm-54.682 67.541-8.928-5.046-32.07-46.87-4.199-6.139c-1.302-1.302-3.236-4.575-.558-7.253l5.022-3.348c2.678-1.786 5.952 1.488 7.254 3.348l3.759 5.58L50.331 98.41l1.137 9.858.537 4.65-3.906-2.208Z\" fill=\"#fff\"/><path d=\"M48.099 46.519h40.733M54.237 58.794h28.457m14.508 53.567h11.159v-44.64h-11.16v12.276m0 32.364H85.485m11.718 0V79.997m-11.718 32.364V89.483m0 22.878H73.766m23.436-32.364H85.484v9.486m0 0H73.766v9.486m0 13.392h-11.16V98.969h11.16m0 13.392V98.969M2.902 52.656c-1.302-1.302-3.236-4.575-.558-7.253l5.022-3.348c2.678-1.786 5.952 1.488 7.254 3.348M2.902 52.656l11.718-7.253M2.902 52.656l4.2 6.138m32.07 46.871 11.159-7.254m-11.16 7.254 8.928 5.046m-8.928-5.046-32.07-46.87m43.23 39.616 1.137 9.858m-1.137-9.858L18.379 50.982m29.72 59.729 3.906 2.208-.537-4.65m-3.369 2.442c.2-.876 1.155-2.591 3.37-2.442m-36.85-62.867 3.76 5.58M7.102 58.794l11.277-7.812m0 11.718 23.582 34.595m60.82-41.849V43.171H94.97c-2.046-.186-6.138-1.786-6.138-6.696V17.503c.186-2.232 2.009-6.696 7.812-6.696h49.66c2.232 0 6.696 1.34 6.696 6.696v18.972c0 2.232-1.339 6.696-6.696 6.696h-31.247l-12.276 12.275Z\" stroke=\"#000\" stroke-width=\"1.116\"/><path stroke=\"#000\" d=\"M115.5 24.264h13v13h-13z\"/><path d=\"M112.75 25.514 122 15.5l9.25 10.013h-18.5Z\" fill=\"#000\" stroke=\"#000\"/><defs><linearGradient id=\"a\" x1=\"22.203\" y1=\"19.868\" x2=\"106.772\" y2=\"112.887\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient></defs></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kkpl48\",\"data-framer-name\":\"Frame 427318670\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Automotive\"})}),className:\"framer-11atd82\",\"data-framer-name\":\"Automative\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Fast screening of customers and staff.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Identify fraudulent applications and. reduces the risk of vehicle theft\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Build streamlined, efficient workflows.\"})]}),className:\"framer-1rpxdk4\",\"data-framer-name\":\"Fast screening of customers and staff Identify fraudulent applications and reduces the risk of vehicle theft. Build streamlined, efficient workflows\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6du9l3\",\"data-framer-name\":\"Frame_427318718\",fill:\"black\",intrinsicHeight:123,intrinsicWidth:157,svg:'<svg width=\"157\" height=\"123\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.01 93.475c-.863-12.301 15.123-14.89 26.1-14.635 2.52.058 4.939-1.125 6.347-3.217 8.14-12.093 14.041-15.931 16.099-16.305h41.21c4.108 0 11.902 13.094 15.285 19.64h5.87c6.261 0 9.049 8.296 9.66 12.443.718 4.898.389 8.68-.446 11.538-1.306 4.461-5.733 2.259-7.727-1.94-2.303-4.85-6.854-9.232-15.183-9.232-9.983 0-14.748 6.295-16.702 12.147-1.148 3.436-4.051 6.395-7.674 6.395h-24.74c-3.624 0-6.526-2.956-7.648-6.401-1.904-5.85-6.54-12.14-16.24-12.14-10.15 0-14.89 6.886-16.743 12.95-.958 3.134-3.492 4.807-4.838 1.819-1.153-2.559-2.183-6.67-2.63-13.062Zm51.603-29.033h14.185v14.639H39.773c2.12-3.335 7.655-10.93 12.84-14.639Zm21.033 14.639V64.442h12.35c2.74 0 4.484 1.627 5.014 2.44l7.704 12.198H73.646Z\" fill=\"url(#a)\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.01 93.475c-.863-12.301 15.123-14.89 26.1-14.635 2.52.058 4.939-1.125 6.347-3.217 8.14-12.093 14.041-15.931 16.099-16.305h41.21c4.108 0 11.902 13.094 15.285 19.64h5.87c6.261 0 9.049 8.296 9.66 12.443.718 4.898.389 8.68-.446 11.538-1.306 4.461-5.733 2.259-7.727-1.94-2.303-4.85-6.854-9.232-15.183-9.232-9.983 0-14.748 6.295-16.702 12.147-1.148 3.436-4.051 6.395-7.674 6.395h-24.74c-3.624 0-6.526-2.956-7.648-6.401-1.904-5.85-6.54-12.14-16.24-12.14-10.15 0-14.89 6.886-16.743 12.95-.958 3.134-3.492 4.807-4.838 1.819-1.153-2.559-2.183-6.67-2.63-13.062Zm51.603-29.033h14.185v14.639H39.773c2.12-3.335 7.655-10.93 12.84-14.639Zm21.033 14.639V64.442h12.35c2.74 0 4.484 1.627 5.014 2.44l7.704 12.198H73.646Z\" fill=\"url(#b)\"/><path d=\"M73.646 64.442v14.639h25.068l-7.704-12.2c-.53-.813-2.274-2.439-5.014-2.439h-12.35Z\" fill=\"url(#c)\"/><path d=\"M73.646 64.442v14.639h25.068l-7.704-12.2c-.53-.813-2.274-2.439-5.014-2.439h-12.35Z\" fill=\"#fff\"/><path d=\"M52.613 64.442h14.185v14.639H39.773c2.12-3.335 7.655-10.93 12.84-14.639Z\" fill=\"url(#d)\"/><path d=\"M52.613 64.442h14.185v14.639H39.773c2.12-3.335 7.655-10.93 12.84-14.639Z\" fill=\"#fff\"/><circle cx=\"24.976\" cy=\"110.318\" r=\"11\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"2\"/><circle cx=\"97.976\" cy=\"110.318\" r=\"11\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"2\"/><rect x=\"124.999\" y=\".318\" width=\"10.511\" height=\"10.511\" rx=\"2.628\" fill=\"#000\"/><path d=\"M108.463 12.237a2.628 2.628 0 0 1 0-3.716l3.716-3.717a2.629 2.629 0 0 1 3.717 0l5.574 5.575-7.433 7.432-5.574-5.574Zm42.681 0a2.628 2.628 0 0 0 0-3.716l-3.717-3.717a2.627 2.627 0 0 0-3.716 0l-5.574 5.575 7.432 7.432 5.575-5.574Zm0 27.817a2.628 2.628 0 0 1 0 3.716l-3.717 3.716a2.627 2.627 0 0 1-3.716 0l-5.574-5.574 7.432-7.432 5.575 5.574Zm-42.681 0a2.628 2.628 0 0 0 0 3.716l3.716 3.716a2.629 2.629 0 0 0 3.717 0l5.574-5.574-7.433-7.432-5.574 5.574Z\" fill=\"#000\"/><rect x=\"124.999\" y=\"42.363\" width=\"10.511\" height=\"10.511\" rx=\"2.628\" fill=\"#000\"/><rect x=\"146.021\" y=\"21.341\" width=\"10.511\" height=\"10.511\" rx=\"2.628\" fill=\"#000\"/><rect x=\"103.976\" y=\"21.341\" width=\"10.511\" height=\"10.511\" rx=\"2.628\" fill=\"#000\"/><circle cx=\"130.255\" cy=\"26.596\" r=\"17.081\" fill=\"#fff\" stroke=\"#000\" stroke-width=\"2.628\"/><circle cx=\"130.255\" cy=\"26.596\" r=\"5.256\" fill=\"#000\"/><circle cx=\"24.976\" cy=\"110.318\" r=\"6\" fill=\"#000\"/><circle cx=\"97.976\" cy=\"110.318\" r=\"6\" fill=\"#000\"/><defs><linearGradient id=\"a\" x1=\".976\" y1=\"67.402\" x2=\"20.062\" y2=\"133.813\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#0B4DEB\"/><stop offset=\"1\" stop-color=\"#76BCF3\"/></linearGradient><linearGradient id=\"b\" x1=\".976\" y1=\"67.402\" x2=\"20.062\" y2=\"133.813\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient><linearGradient id=\"c\" x1=\".976\" y1=\"67.402\" x2=\"20.062\" y2=\"133.813\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#0B4DEB\"/><stop offset=\"1\" stop-color=\"#76BCF3\"/></linearGradient><linearGradient id=\"d\" x1=\".976\" y1=\"67.402\" x2=\"20.062\" y2=\"133.813\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#0B4DEB\"/><stop offset=\"1\" stop-color=\"#76BCF3\"/></linearGradient></defs></svg>',withExternalLayout:true})]})]})})]})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-fzf1qd hidden-72rtr7 hidden-l241wy\",\"data-framer-name\":\"Frame 427318664\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19n3ci1\",\"data-framer-name\":\"Frame 427318703\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1craefd\",\"data-framer-name\":\"Frame 427318594\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kcx3n3\",\"data-framer-name\":\"Frame 427318665\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1an7xb8\",\"data-framer-name\":\"Frame 427318664\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\"},children:\"360\\xb0 User information in one score\"})}),className:\"framer-118al79\",\"data-framer-name\":\"360\\xb0 User information in one score\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-192lywy\",\"data-framer-name\":\"Frame 427318672\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i6kq6y\",\"data-framer-name\":\"Frame 427318668\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iux7jr\",\"data-framer-name\":\"Frame 427318612\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-prf2qu\",\"data-framer-name\":\"Frame_427318516\",fill:\"black\",intrinsicHeight:93,intrinsicWidth:73,svg:'<svg width=\"73\" height=\"93\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"#D9D9D9\" d=\"M15.905.51h49.97v89.112h-49.97z\"/><path fill=\"#563FFF\" d=\"M15.905.51h49.97v89.112h-49.97z\"/><path fill=\"url(#a)\" d=\"M15.905.51h49.97v89.112h-49.97z\"/><path d=\"M32.562 9.165c4.025-1.388 13.325-2.665 18.322 3.332M37.142 48.308c-4.303-1.527-12.909-7.412-12.909-18.738 0-14.158 12.909-17.073 17.49-17.073 4.58 0 14.574 4.164 14.574 12.909-.139 1.665-1.332 4.997-4.997 4.997.267-4.72-1.36-14.159-9.994-14.159-10.793 0-12.076 9.162-12.076 14.991 0 5.83 7.08 14.991 10.827 15.824m4.997-.833c3.748-1.11 11.243-5.496 11.243-14.158m-6.246 3.748c-2.221.555-6.663.833-6.663-2.499 0-4.164-.416-7.912-2.498-7.912-2.082 0-2.499 2.499-2.499 3.748 0 1.25-.416 12.076 4.997 12.076m4.58-10.826c0-2.777-1.249-8.329-6.245-8.329-6.247 0-7.912 3.748-7.912 7.08 0 3.33.833 8.744 4.58 12.075\" stroke=\"#fff\" stroke-width=\".833\"/><path d=\"m9.837 85.169 33.134-19.13 3.331 5.77-33.134 19.13a2.915 2.915 0 0 1-3.982-1.067l-.416-.721a2.915 2.915 0 0 1 1.067-3.982Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".833\"/><path d=\"m39.964 61.042 15.146-8.744 9.683 16.772-15.048 8.914-9.781-16.942Zm14.73-9.466-15.147 8.745-1.251-2.168a2.915 2.915 0 0 1 1.067-3.981l10.097-5.83a2.915 2.915 0 0 1 3.982 1.067l1.252 2.167ZM50.16 78.705l15.05-8.915 1.14 1.976a2.915 2.915 0 0 1-1.066 3.982l-10.098 5.83a2.915 2.915 0 0 1-3.981-1.067l-1.044-1.807Zm-5.562 5.505H68.75a3.748 3.748 0 0 1 3.748 3.747v2.915H40.85v-2.915a3.748 3.748 0 0 1 3.748-3.748ZM12.574 43.4c1.998 0 3.053-1.942 3.33-2.914.279.972 1.333 2.915 3.332 2.915 1.999 0 3.887-1.944 4.58-2.915.695 1.666 2.749 4.997 5.414 4.997-.971.833-2.915 2.915-2.915 4.58 0 2.082 4.58 2.499 4.58 12.076 0 7.662-7.772 9.578-11.659 9.578-1.11.139-3.331.916-3.331 2.915 0-2-2.221-2.776-3.331-2.915-3.887 0-11.66-1.916-11.66-9.578 0-9.577 4.58-9.994 4.58-12.076 0-1.665-1.943-3.747-2.914-4.58 2.665 0 4.719-3.331 5.413-4.997.694.972 2.582 2.915 4.58 2.915Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".833\"/><path d=\"m15.905 50.994 1.66 5.112.094.287h5.677l-4.348 3.16-.245.177.094.288 1.66 5.111-4.347-3.159-.245-.178-.245.178-4.348 3.16 1.66-5.112.094-.288-.244-.178-4.348-3.159h5.676l.094-.287 1.66-5.112Z\" stroke=\"#000\" stroke-width=\".833\"/><defs><linearGradient id=\"a\" x1=\"15.905\" y1=\"14.635\" x2=\"77.534\" y2=\"65.317\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-swtid0\",\"data-framer-name\":\"Frame 427318615\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Criminal score\"})}),className:\"framer-96oj43\",\"data-framer-name\":\"Criminal score\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ht5li5\",\"data-framer-name\":\"Line 72\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:321,svg:'<svg width=\"321\" height=\"4\" viewBox=\"-1 -1 321 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.2\" y1=\"0.511719\" x2=\"319\" y2=\"0.511719\" stroke=\"#525F7E\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"A detailed numerical summary of an individual's criminal background, providing essential insights into their legal history. This helps ensure the safety and integrity of your business by thoroughly understanding the candidate's past.\"})}),className:\"framer-1gif7aa\",\"data-framer-name\":\"A detailed numerical summary of an individual's criminal background, providing essential insights into their legal history. This helps ensure the safety and integrity of your business by thoroughly understanding the candidate's past.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x5gcq1\",\"data-framer-name\":\"Frame 427318613\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-qgxqzt\",\"data-framer-name\":\"Frame_427318517\",fill:\"black\",intrinsicHeight:84,intrinsicWidth:105,svg:'<svg width=\"105\" height=\"84\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"#fff\" stroke=\"#000\" stroke-width=\".839\" d=\"M23.978 32.29h7.548v45.29h-7.548zm21.807 0h7.548v45.29h-7.548zm21.806 0h7.548v45.29h-7.548z\"/><path d=\"m49.56 0 35.59 33.34H13.968L49.56 0Z\" fill=\"#D9D9D9\"/><path d=\"m49.56 0 35.59 33.34H13.968L49.56 0Z\" fill=\"url(#a)\"/><path d=\"m49.56 0 35.59 33.34H13.968L49.56 0Z\" fill=\"url(#b)\"/><path fill=\"#fff\" d=\"M84.786 75.484v8.387H14.334v-8.387z\"/><path transform=\"rotate(90 84.785 75.484)\" fill=\"url(#c)\" d=\"M84.785 75.484h8.387v70.452h-8.387z\"/><path transform=\"rotate(90 84.785 75.484)\" fill=\"url(#d)\" d=\"M84.785 75.484h8.387v70.452h-8.387z\"/><path d=\"m83.107 38.26 1.108 3.409.094.29h3.889l-2.9 2.106-.246.18.094.29 1.108 3.408-2.9-2.107-.247-.179-.246.18-2.9 2.106 1.108-3.409.094-.29-.247-.178-2.9-2.107h3.89l.094-.29 1.107-3.409Zm15.097 0 1.108 3.409.094.29h3.889l-2.9 2.106-.246.18.094.29 1.107 3.408-2.9-2.107-.246-.179-.246.18-2.9 2.106 1.108-3.409.094-.29-.247-.178-2.9-2.107h3.889l.095-.29 1.107-3.409Zm-7.548 10.903 1.108 3.41.094.289h3.889l-2.9 2.107-.247.179.095.29 1.107 3.408-2.9-2.106-.246-.18-.247.18-2.9 2.106 1.108-3.408.094-.29-.246-.18-2.9-2.106h3.889l.094-.29 1.108-3.409Z\" stroke=\"#000\" stroke-width=\".839\"/><mask id=\"e\" maskUnits=\"userSpaceOnUse\" x=\"43.688\" y=\"9.71\" width=\"12\" height=\"19\" fill=\"#000\"><path fill=\"#fff\" d=\"M43.688 9.71h12v19h-12z\"/><path d=\"M49.12 27.387V10.613h1.075v16.774H49.12Zm3.362-11.571c-.07-.62-.358-1.101-.865-1.442-.507-.345-1.145-.517-1.913-.517-.55 0-1.027.087-1.429.262-.402.17-.714.406-.937.707a1.67 1.67 0 0 0-.328 1.016c0 .319.075.594.223.826a2 2 0 0 0 .597.583c.248.153.515.281.799.386.284.1.557.184.819.25l1.31.34c.428.105.867.247 1.317.426.45.18.868.415 1.252.708.384.292.695.655.93 1.087.24.433.36.95.36 1.553 0 .76-.196 1.435-.589 2.025-.389.59-.954 1.055-1.697 1.396-.738.34-1.632.51-2.68.51-1.005 0-1.874-.159-2.608-.478-.734-.319-1.308-.77-1.723-1.356-.415-.59-.644-1.289-.688-2.097h2.031c.04.485.197.89.472 1.212.28.32.636.557 1.068.715.437.153.915.229 1.435.229.572 0 1.081-.09 1.527-.269.45-.183.803-.436 1.061-.76a1.8 1.8 0 0 0 .387-1.146c0-.398-.114-.723-.341-.977-.223-.253-.526-.463-.91-.629a8.902 8.902 0 0 0-1.292-.439l-1.585-.432c-1.075-.293-1.927-.723-2.556-1.291-.624-.568-.937-1.32-.937-2.254 0-.773.21-1.448.63-2.025.419-.576.986-1.024 1.703-1.343.716-.323 1.524-.485 2.424-.485.909 0 1.71.16 2.405.479.699.318 1.25.757 1.651 1.316a3.32 3.32 0 0 1 .63 1.914h-1.953Z\"/></mask><path d=\"M49.12 27.387V10.613h1.075v16.774H49.12Zm3.362-11.571c-.07-.62-.358-1.101-.865-1.442-.507-.345-1.145-.517-1.913-.517-.55 0-1.027.087-1.429.262-.402.17-.714.406-.937.707a1.67 1.67 0 0 0-.328 1.016c0 .319.075.594.223.826a2 2 0 0 0 .597.583c.248.153.515.281.799.386.284.1.557.184.819.25l1.31.34c.428.105.867.247 1.317.426.45.18.868.415 1.252.708.384.292.695.655.93 1.087.24.433.36.95.36 1.553 0 .76-.196 1.435-.589 2.025-.389.59-.954 1.055-1.697 1.396-.738.34-1.632.51-2.68.51-1.005 0-1.874-.159-2.608-.478-.734-.319-1.308-.77-1.723-1.356-.415-.59-.644-1.289-.688-2.097h2.031c.04.485.197.89.472 1.212.28.32.636.557 1.068.715.437.153.915.229 1.435.229.572 0 1.081-.09 1.527-.269.45-.183.803-.436 1.061-.76a1.8 1.8 0 0 0 .387-1.146c0-.398-.114-.723-.341-.977-.223-.253-.526-.463-.91-.629a8.902 8.902 0 0 0-1.292-.439l-1.585-.432c-1.075-.293-1.927-.723-2.556-1.291-.624-.568-.937-1.32-.937-2.254 0-.773.21-1.448.63-2.025.419-.576.986-1.024 1.703-1.343.716-.323 1.524-.485 2.424-.485.909 0 1.71.16 2.405.479.699.318 1.25.757 1.651 1.316a3.32 3.32 0 0 1 .63 1.914h-1.953Z\" fill=\"#fff\"/><path d=\"M49.12 27.387h-.838v.84h.838v-.84Zm0-16.774v-.839h-.838v.84h.838Zm1.075 0h.839v-.839h-.84v.84Zm0 16.774v.84h.839v-.84h-.84Zm2.287-11.571-.834.094.084.744h.75v-.838Zm-.865-1.442-.472.694.004.002.468-.696Zm-3.342-.255.327.772.008-.003-.335-.77Zm-.937.707-.674-.498-.002.002.676.496Zm-.105 1.842-.706.453.006.009.7-.462Zm.597.583-.454.705.007.005.008.005.439-.715Zm.799.386-.29.787.01.004.28-.79Zm.819.25.211-.812-.008-.002-.203.813Zm1.31.34-.21.812.01.003.2-.815Zm3.5 2.221-.737.402.003.006.733-.408Zm-.23 3.578-.698-.465-.002.003.7.462Zm-1.697 1.396-.35-.763-.002.001.352.762Zm-5.288.032.334-.769-.334.77Zm-1.723-1.356-.686.483.002.002.684-.485Zm-.688-2.097v-.838h-.885l.047.884.838-.046Zm2.031 0 .836-.068-.062-.77h-.774V22Zm.472 1.212-.639.544.008.01.63-.553Zm1.068.715-.287.788.01.003.277-.791Zm2.962-.04.313.779.003-.002-.316-.777Zm1.061-.76.656.523.003-.004-.659-.519Zm.046-2.123-.63.554.005.006.625-.56Zm-.91-.629-.337.769.004.001.332-.77Zm-1.292-.439-.22.81.007.001.213-.81Zm-1.585-.432.22-.81-.22.81Zm-2.556-1.291-.564.62.002.003.562-.623Zm-.308-4.279-.678-.493.678.493Zm1.704-1.343.341.766.004-.002-.345-.764Zm4.83-.007-.35.763.35-.763Zm1.65 1.317-.68.49.001.003.68-.492Zm.63 1.914v.838h.859l-.021-.858-.839.02Zm-4.476 11.571V10.613h-1.677v16.774h1.677Zm-.839-15.935h1.075V9.774H49.12v1.678Zm.236-.839v16.774h1.678V10.613h-1.678Zm.839 15.936H49.12v1.677h1.075V26.55Zm3.12-10.827c-.097-.859-.514-1.562-1.23-2.044l-.936 1.392c.297.2.456.458.5.84l1.666-.188Zm-1.226-2.04c-.678-.462-1.491-.664-2.386-.664v1.677c.644 0 1.106.144 1.442.373l.944-1.387Zm-2.386-.664c-.637 0-1.232.1-1.762.332l.668 1.538c.273-.119.63-.193 1.094-.193v-1.677Zm-1.755.329c-.517.219-.959.54-1.284.98l1.349.998c.12-.162.303-.313.59-.434l-.655-1.544Zm-1.286.982a2.51 2.51 0 0 0-.49 1.513h1.677c0-.207.056-.37.165-.519l-1.352-.994Zm-.49 1.513c0 .453.107.891.355 1.278l1.412-.905a.664.664 0 0 1-.09-.373h-1.677Zm.361 1.288c.22.333.505.609.843.826l.907-1.41a1.162 1.162 0 0 1-.35-.34l-1.4.924Zm.858.835c.297.183.614.336.947.46l.581-1.574a3.668 3.668 0 0 1-.65-.315l-.878 1.43Zm.958.463c.306.108.605.2.896.272l.406-1.627a8.18 8.18 0 0 1-.742-.226l-.56 1.581Zm.888.27 1.31.34.422-1.623-1.31-.34-.422 1.623Zm1.322.344c.387.095.789.224 1.206.39l.62-1.558a10.817 10.817 0 0 0-1.427-.461l-.4 1.629Zm1.206.39c.38.151.73.35 1.054.596l1.016-1.335a6.118 6.118 0 0 0-1.45-.82l-.62 1.56Zm1.054.596c.288.22.522.491.702.822l1.473-.803a4.228 4.228 0 0 0-1.159-1.354l-1.016 1.335Zm.705.828c.158.283.255.654.255 1.145h1.677c0-.714-.142-1.378-.465-1.96l-1.467.815ZM53.78 22c0 .607-.154 1.118-.449 1.56l1.396.93c.492-.737.73-1.577.73-2.49H53.78Zm-.451 1.563c-.29.44-.724.81-1.347 1.095l.7 1.525c.862-.396 1.56-.956 2.047-1.696l-1.4-.924Zm-1.349 1.096c-.6.277-1.367.434-2.328.434v1.677c1.136 0 2.156-.184 3.031-.588l-.703-1.523Zm-2.328.434c-.918 0-1.668-.146-2.274-.409l-.668 1.539c.863.375 1.85.547 2.942.547v-1.677Zm-2.274-.409c-.61-.265-1.056-.625-1.373-1.072l-1.368.97c.513.724 1.215 1.268 2.073 1.64l.668-1.538Zm-1.371-1.07c-.314-.445-.5-.988-.537-1.659l-1.675.09c.052.946.324 1.801.84 2.535l1.372-.966Zm-1.374-.775h2.031v-1.677h-2.031v1.677Zm1.195-.77c.052.633.264 1.211.67 1.687l1.276-1.087c-.144-.17-.247-.4-.274-.737l-1.672.136Zm.677 1.696c.38.434.859.749 1.412.95l.574-1.576a1.712 1.712 0 0 1-.724-.48l-1.262 1.106Zm1.422.953c.536.188 1.11.277 1.712.277v-1.678c-.437 0-.82-.064-1.158-.182l-.554 1.583Zm1.712.277c.66 0 1.277-.104 1.84-.33l-.626-1.556c-.33.132-.729.208-1.214.208v1.678Zm1.843-.331c.56-.228 1.04-.56 1.4-1.014l-1.31-1.046c-.154.193-.383.368-.723.507l.633 1.553Zm1.404-1.018c.38-.483.567-1.05.567-1.665h-1.678a.964.964 0 0 1-.207.628l1.318 1.037Zm.567-1.665c0-.568-.168-1.104-.555-1.537l-1.25 1.12c.067.074.127.189.127.417h1.678Zm-.55-1.53c-.322-.367-.737-.642-1.208-.846l-.665 1.54c.297.129.49.273.613.413l1.26-1.108Zm-1.205-.844a9.737 9.737 0 0 0-1.413-.482l-.427 1.622c.446.118.835.251 1.169.397l.67-1.537Zm-1.406-.48-1.586-.432-.441 1.618 1.586.432.441-1.618Zm-1.586-.432c-.986-.269-1.708-.648-2.214-1.105l-1.124 1.245c.753.68 1.734 1.161 2.897 1.478l.441-1.618Zm-2.212-1.103c-.43-.39-.662-.906-.662-1.633h-1.677c0 1.143.392 2.13 1.211 2.875l1.128-1.242Zm-.662-1.633c0-.612.162-1.11.469-1.531l-1.357-.987c-.532.732-.79 1.583-.79 2.518h1.678Zm.469-1.531c.324-.446.77-.806 1.366-1.07l-.682-1.533c-.837.372-1.527.909-2.041 1.616l1.357.987Zm1.37-1.072c.593-.268 1.281-.411 2.08-.411v-1.678c-1.002 0-1.93.18-2.77.56l.69 1.529Zm2.08-.411c.81 0 1.488.142 2.054.402l.7-1.525c-.823-.378-1.748-.555-2.755-.555v1.678Zm2.056.402c.582.266 1.011.617 1.318 1.044l1.362-.979c-.496-.691-1.168-1.218-1.984-1.59l-.696 1.525Zm1.32 1.046c.297.41.456.882.47 1.442l1.677-.04a4.158 4.158 0 0 0-.789-2.385l-1.358.984Zm1.308.583h-1.952v1.677h1.952v-1.677Z\" fill=\"#000\" mask=\"url(#e)\"/><path d=\"M1.333 54.097h43.613v13.838a3.774 3.774 0 0 1-3.774 3.775H5.108a3.774 3.774 0 0 1-3.775-3.775V54.097Zm43.613-.839H1.333V51.58h43.613v1.678Zm0-2.516H1.333v-1.678h43.613v1.678Zm0-2.516H1.333v-.42a3.774 3.774 0 0 1 3.775-3.774h36.064a3.774 3.774 0 0 1 3.774 3.774v.42ZM5.108 63.322H9.72v-.838H5.108v.838Zm0 3.775h18.451v-.839H5.108v.839Zm7.548-3.774h2.935v-.84h-2.935v.84Zm6.29 0h3.774v-.84h-3.774v.84Zm5.871 0h4.613v-.84h-4.613v.84Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".839\"/><defs><linearGradient id=\"a\" x1=\"82.085\" y1=\"1.787\" x2=\"61.467\" y2=\"55.543\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#43BBFF\"/><stop offset=\"1\" stop-color=\"#0E50EB\"/></linearGradient><linearGradient id=\"b\" x1=\"67.285\" y1=\"3.977\" x2=\"34.942\" y2=\"31.795\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FF9A67\"/><stop offset=\"1\" stop-color=\"#FC691F\"/></linearGradient><linearGradient id=\"c\" x1=\"92.298\" y1=\"78.317\" x2=\"76.342\" y2=\"80.995\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#43BBFF\"/><stop offset=\"1\" stop-color=\"#0E50EB\"/></linearGradient><linearGradient id=\"d\" x1=\"90.787\" y1=\"81.787\" x2=\"85.063\" y2=\"82.104\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FF9A67\"/><stop offset=\"1\" stop-color=\"#FC691F\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yrnafi\",\"data-framer-name\":\"Frame 427318615\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Credit score\"})}),className:\"framer-18z7veb\",\"data-framer-name\":\"Credit score\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ei4cz9\",\"data-framer-name\":\"Line 72\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:321,svg:'<svg width=\"321\" height=\"4\" viewBox=\"-1 -1 321 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.2\" y1=\"1.18164\" x2=\"319\" y2=\"1.18164\" stroke=\"#525F7E\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"A comprehensive evaluation of an individual's financial background, encompassing payment habits, debt management, and credit usage. This allows you to make informed decisions about financial reliability and trustworthiness.\"})}),className:\"framer-1b5el51\",\"data-framer-name\":\"A comprehensive evaluation of an individual's financial background, encompassing payment habits, debt management, and credit usage. This allows for informed decisions about financial reliability and trustworthiness.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3nb9w8\",\"data-framer-name\":\"Frame 427318669\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-732itd\",\"data-framer-name\":\"Frame 427318612\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-pg4su3\",\"data-framer-name\":\"Frame_427318518\",fill:\"black\",intrinsicHeight:72,intrinsicWidth:87,svg:'<svg width=\"87\" height=\"72\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"9.872\" y=\".358\" width=\"65.933\" height=\"55.183\" rx=\"8.242\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".717\"/><rect x=\"5.572\" y=\"7.525\" width=\"75.25\" height=\"55.183\" rx=\"8.242\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".717\"/><rect x=\".914\" y=\"15.767\" width=\"86\" height=\"55.9\" rx=\"8.6\" fill=\"#D9D9D9\"/><rect x=\".914\" y=\"15.767\" width=\"86\" height=\"55.9\" rx=\"8.6\" fill=\"url(#a)\"/><rect x=\".914\" y=\"15.767\" width=\"86\" height=\"55.9\" rx=\"8.6\" fill=\"url(#b)\"/><path d=\"M6.29 65.217h75.607M47.856 40.133h34.041m-12.541 6.45h-21.5\" stroke=\"#000\" stroke-width=\"1.433\"/><mask id=\"c\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"5\" y=\"22\" width=\"39\" height=\"39\"><circle cx=\"24.564\" cy=\"41.567\" r=\"19.35\" fill=\"#D9D9D9\"/></mask><g mask=\"url(#c)\"><circle cx=\"24.564\" cy=\"41.567\" r=\"19.35\" fill=\"#fff\"/><path d=\"M32.252 36.856c-.257 1.796-1.818 2.886-2.566 3.207-.428.214-1.283-.064-1.283-2.887 0-3.528.962-6.094-2.887-6.094-.534 0-1.796.193-2.566.963-.214-.321-.898-.963-1.924-.963-1.283 0-3.208.963-3.528 2.566.107-2.138 1.667-6.415 7.056-6.415s7.377 3.422 7.698 5.132v4.49Z\" fill=\"#000\"/><path d=\"M3.064 64.5c.717-3.583 8.242-12.248 15.396-12.248a2.527 2.527 0 0 0 1.283-.66c-1.39 3.106-4.106 7.52-3.849 12.908H3.064Z\" fill=\"#fff\"/><path d=\"M29.686 40.063c.748-.32 2.31-1.411 2.566-3.207.32-.428 1.09-.898 1.603.641.642 1.925 0 3.529-1.282 4.49-1.027.77-2.139.535-2.566.322v7.056c0 .39.084.937.32 1.451.129.279.302.547.531.776.358 1.93 1.073 4.697 1.073 12.908H15.894c-.257-5.389 2.459-9.802 3.849-12.908.362-.355.641-.868.641-1.586 0-1.924 0-2.566-.641-3.207-.642-.642-2.245-.962-2.245-4.49v-8.66c.32-1.604 2.245-2.567 3.528-2.567 1.026 0 1.71.642 1.924.963.77-.77 2.032-.963 2.566-.963 3.85 0 2.887 2.566 2.887 6.094 0 2.823.855 3.101 1.283 2.887Z\" fill=\"#fff\"/><path d=\"M32.572 52.252c2.567 0 16.359 1.856 16.359 12.248h-17c0-8.211-.715-10.978-1.073-12.908.391.389.944.66 1.714.66Z\" fill=\"#fff\"/><path d=\"M32.252 36.856c-.257 1.796-1.818 2.886-2.566 3.207-.428.214-1.283-.064-1.283-2.887 0-3.528.962-6.094-2.887-6.094-.534 0-1.796.193-2.566.963-.214-.321-.898-.963-1.924-.963-1.283 0-3.208.963-3.528 2.566m14.754 3.208c.32-.428 1.09-.898 1.603.641.642 1.925 0 3.529-1.282 4.49-1.027.77-2.139.535-2.566.322v7.056c0 .39.084.937.32 1.451m1.925-13.96v-4.49c-.321-1.711-2.31-5.133-7.698-5.133-5.389 0-6.95 4.277-7.056 6.415m2.245 13.15c.641.642.641 1.284.641 3.208 0 .718-.279 1.231-.641 1.586m0-4.793c-.642-.642-2.245-.962-2.245-4.49m2.245 4.49c.962.962 3.913 2.31 8.018 0m-10.263-4.49v-8.66m0 8.66v-8.66m12.83 17.167-6.736 6.567-3.208-6.094m9.943-.473c.129.279.302.547.531.776m-11.115 0c-.415.405-.94.602-1.283.66-7.154 0-14.68 8.665-15.396 12.248h12.83m3.849-12.908c-1.39 3.106-4.106 7.52-3.849 12.908m0 0h16.037m-1.073-12.908c.391.389.944.66 1.714.66 2.567 0 16.359 1.856 16.359 12.248h-17m-1.073-12.908c.358 1.93 1.073 4.697 1.073 12.908\" stroke=\"#000\" stroke-width=\".641\"/><circle cx=\"24.564\" cy=\"41.567\" r=\"18.992\" stroke=\"#000\" stroke-width=\".717\"/></g><path d=\"m52.514 23.376.947 2.913.08.248h3.323l-2.478 1.8-.21.153.08.248.947 2.912-2.478-1.8-.21-.153-.212.153-2.477 1.8.946-2.912.08-.248-.21-.153-2.478-1.8h3.323l.08-.248.947-2.913Zm12.183 0 .947 2.913.08.248h3.323l-2.477 1.8-.211.153.08.248.947 2.912-2.478-1.8-.21-.153-.211.153-2.478 1.8.947-2.912.08-.248-.21-.153-2.478-1.8h3.322l.081-.248.946-2.913Zm12.183 0 .947 2.913.08.248h3.324l-2.478 1.8-.21.153.08.248.946 2.912-2.478-1.8-.21-.153-.211.153-2.478 1.8.947-2.912.08-.248-.21-.153-2.478-1.8h3.323l.08-.248.947-2.913Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".717\"/><defs><linearGradient id=\"a\" x1=\"77.946\" y1=\"18.014\" x2=\"48.464\" y2=\"81.968\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#43BBFF\"/><stop offset=\"1\" stop-color=\"#0E50EB\"/></linearGradient><linearGradient id=\"b\" x1=\".914\" y1=\"24.627\" x2=\"30.106\" y2=\"90.492\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bwwhys\",\"data-framer-name\":\"Frame 427318615\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Employee score\"})}),className:\"framer-9krptt\",\"data-framer-name\":\"Employee score\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9i69kz\",\"data-framer-name\":\"Line 72\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:321,svg:'<svg width=\"321\" height=\"4\" viewBox=\"-1 -1 321 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.2\" y1=\"0.511719\" x2=\"319\" y2=\"0.511719\" stroke=\"#525F7E\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"An in-depth assessment of an individual's professional background, including work experience, skill sets, qualifications, and reference verifications. This score assists in identifying the best candidates for your organization, enhancing workforce quality.\"})}),className:\"framer-sxjd4d\",\"data-framer-name\":\"An in-depth assessment of an individual's professional background, including work experience, skill sets, qualifications, and reference verifications. This score assists in identifying the best candidates for your organization, enhancing workforce quality.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nz97\",\"data-framer-name\":\"Frame 427318613\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-vmmcl4\",\"data-framer-name\":\"Frame_427318515\",fill:\"black\",intrinsicHeight:83,intrinsicWidth:98,svg:'<svg width=\"98\" height=\"83\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M35.626.405V56.18h-6.42a6.87 6.87 0 0 1-6.871-6.871V7.275a6.87 6.87 0 0 1 6.87-6.87h6.421Zm.809 0h11.767V56.18H36.435V.405ZM49.01 56.18V.405h11.386V56.18H49.01Zm12.194 0V.405h6.802a6.87 6.87 0 0 1 6.87 6.87V49.31a6.87 6.87 0 0 1-6.87 6.87h-6.802Z\" stroke=\"#000\" stroke-width=\".808\"/><rect x=\"18.697\" y=\"18.592\" width=\"59.817\" height=\"56.583\" rx=\"7.275\" fill=\"#D9D9D9\"/><rect x=\"18.697\" y=\"18.592\" width=\"59.817\" height=\"56.583\" rx=\"7.275\" fill=\"url(#a)\"/><rect x=\"18.697\" y=\"18.592\" width=\"59.817\" height=\"56.583\" rx=\"7.275\" fill=\"url(#b)\"/><rect x=\"25.568\" y=\"35.163\" width=\"45.267\" height=\"25.867\" rx=\"4.446\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".808\"/><path fill=\"#fff\" stroke=\"#000\" stroke-width=\".808\" d=\"m29.256 72.346 4.9-2.829 4.85 8.4-4.9 2.83z\"/><path fill=\"#fff\" stroke=\"#000\" stroke-width=\".808\" d=\"m30.91 79.366 8.498-4.907 1.397 2.42-8.499 4.907z\"/><path d=\"m1.773 29.504 4.85-2.8 4.25-2.454 3.5 6.063 2.354 4.076 2.02 3.5 2.393 4.144 2.334 4.042 2.144 3.715 2.523 4.368 2.333 4.042 2.8 4.85 3.466 6.003-9.1 5.254L1.772 29.504Z\" fill=\"#fff\"/><path d=\"m6.623 26.704-4.85 2.8 25.866 44.803 9.1-5.254-3.465-6.003M6.623 26.704l4.25-2.454 3.5 6.063m-7.75-3.609-4.85-8.516m12.6 12.125h-3.5m3.5 0 2.354 4.076m0 0h-3.234m3.234 0 2.02 3.5m0 0h-2.829m2.83 0 2.392 4.144m0 0h-3.2m3.2 0 2.334 4.042m0 0h-3.11m3.11 0 2.144 3.715m0 0H22.79m2.83 0 2.522 4.368m0 0h-2.523m2.523 0 2.333 4.042m0 0H27.64m2.835 0 2.8 4.85m0 0h-2.8m21.912-17.865 3.715 3.716a4.446 4.446 0 0 1-6.287 6.287L46.1 51.473l6.287-6.288Zm-.572-.571L45.528 50.9l-3.715-3.715a4.446 4.446 0 0 1 6.287-6.287l3.715 3.715Z\" stroke=\"#000\" stroke-width=\".808\"/><path d=\"M80.535 70.325c0 .399-.217.829-.72 1.27-.502.439-1.251.853-2.213 1.209-1.919.71-4.597 1.159-7.576 1.159a28.56 28.56 0 0 1-2.463-.105l5.474-7.012c2.203.237 4.093.727 5.432 1.364.693.33 1.22.69 1.568 1.059.346.366.498.721.498 1.056Zm-13.92 3.433c-2.099-.26-3.886-.75-5.15-1.375-.655-.324-1.151-.675-1.478-1.033-.326-.356-.469-.7-.469-1.025 0-.399.217-.829.72-1.269.502-.44 1.251-.854 2.213-1.21 1.919-.71 4.597-1.158 7.575-1.158.702 0 1.388.025 2.052.072l-5.463 6.998Zm13.733-1.556c.065-.056.127-.114.187-.174v2.339c0 .399-.217.829-.72 1.269-.502.44-1.251.854-2.213 1.21-1.919.71-4.597 1.158-7.576 1.158-2.978 0-5.656-.448-7.575-1.158-.962-.356-1.711-.77-2.213-1.21-.503-.44-.72-.87-.72-1.27v-2.338c.407.403.949.763 1.588 1.08 1.42.701 3.388 1.221 5.641 1.48 1.037.119 2.139.183 3.28.183 3.048 0 5.826-.457 7.856-1.209 1.014-.375 1.862-.832 2.465-1.36Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".808\"/><path d=\"M94.526 74.588c-.282.283-.74.433-1.406.389-.666-.044-1.489-.281-2.42-.71-1.86-.854-4.07-2.431-6.176-4.537-.6-.6-1.158-1.209-1.668-1.816l8.829-1.088c1.39 1.726 2.38 3.409 2.877 4.806.256.723.374 1.35.36 1.857-.015.504-.159.862-.396 1.1Zm-12.27-7.415c-1.3-1.667-2.218-3.278-2.67-4.614-.233-.692-.335-1.291-.314-1.776.022-.481.163-.825.393-1.056.282-.282.74-.432 1.407-.388.665.044 1.488.281 2.42.71 1.86.854 4.07 2.43 6.176 4.537.496.496.964.999 1.4 1.502l-8.812 1.085Zm10.81 8.61c.087.006.172.01.256.01l-1.654 1.653c-.282.282-.739.433-1.406.389-.665-.044-1.488-.281-2.42-.71-1.86-.854-4.07-2.431-6.176-4.537s-3.683-4.317-4.538-6.176c-.428-.932-.665-1.755-.709-2.42-.044-.667.106-1.125.389-1.407l1.653-1.653c.003.572.132 1.21.36 1.886.507 1.5 1.532 3.26 2.942 5.035a28.86 28.86 0 0 0 2.19 2.449c2.155 2.155 4.442 3.796 6.41 4.7.982.452 1.905.729 2.704.782Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".808\"/><defs><linearGradient id=\"a\" x1=\"72.276\" y1=\"20.867\" x2=\"35.962\" y2=\"74.997\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#43BBFF\"/><stop offset=\"1\" stop-color=\"#0E50EB\"/></linearGradient><linearGradient id=\"b\" x1=\"61.505\" y1=\"23.654\" x2=\"28.529\" y2=\"39.87\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FF9A67\"/><stop offset=\"1\" stop-color=\"#FC691F\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xh2m9z\",\"data-framer-name\":\"Frame 427318615\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Drug score\"})}),className:\"framer-4sm1gr\",\"data-framer-name\":\"Drug score\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gw3hwn\",\"data-framer-name\":\"Line 72\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:321,svg:'<svg width=\"321\" height=\"4\" viewBox=\"-1 -1 321 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.2\" y1=\"0.511719\" x2=\"319\" y2=\"0.511719\" stroke=\"#525F7E\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"An examination of an individual\u2019s history with substance use, detailing past drug interactions and related behaviors. This critical insight helps maintain a drug-free and safe working environment.\"})}),className:\"framer-1tzmgul\",\"data-framer-name\":\"An examination of an individual\u2019s history with substance use, detailing past drug interactions and related behaviors. This critical insight helps maintain a drug-free and safe working environment.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1udhkb5\",\"data-framer-name\":\"Frame 427318670\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1im63ni\",\"data-framer-name\":\"Frame 427318612\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-17mhlm\",\"data-framer-name\":\"Frame_427318520\",fill:\"black\",intrinsicHeight:87,intrinsicWidth:90,svg:'<svg width=\"90\" height=\"87\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path opacity=\".4\" stroke=\"#000\" stroke-width=\".771\" d=\"M27.095 5.01h62.434v80.932H27.095z\"/><path fill=\"#D9D9D9\" d=\"M22.856 0H86.06v81.703H22.856z\"/><path fill=\"url(#a)\" d=\"M22.856 0H86.06v81.703H22.856z\"/><path fill=\"url(#b)\" d=\"M22.856 0H86.06v81.703H22.856z\"/><path d=\"M31.72 47.789h8.864m6.166 0h30.832M31.72 53.955h8.864m6.166 0h30.832M31.72 60.122h8.864m6.166 0h30.832M31.72 66.288h8.864m6.166 0h30.832M31.72 72.454h8.864m6.166 0h30.832\" stroke=\"#000\" stroke-width=\"1.542\"/><path d=\"M1.274 22.738c2.775-11.099 13.489-6.937 18.499-3.468 5.01-3.469 15.724-7.63 18.499 3.468.756 3.025.27 6.023-.985 8.864C33.935 39.19 25.1 45.662 19.773 48.56c-4.777-2.597-12.375-8.071-16.31-14.644-2.097-3.503-3.154-7.318-2.189-11.177Z\" fill=\"#fff\"/><path d=\"M3.463 33.915C1.366 30.412.309 26.597 1.274 22.738c2.775-11.099 13.489-6.937 18.499-3.468 5.01-3.469 15.724-7.63 18.499 3.468.756 3.025.27 6.023-.985 8.864M3.463 33.915c3.935 6.573 11.533 12.047 16.31 14.645 5.327-2.898 14.162-9.371 17.514-16.958M3.463 33.915l8.216-7.708 8.094 10.79 5.395-5.395h12.119\" stroke=\"#000\" stroke-width=\".771\"/><path d=\"M51.76 20.04V9.636h5.396v10.791h10.791v5.395H57.156v10.79H51.76V25.821H40.97v-5.395h10.79v-.385Z\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".771\"/><defs><linearGradient id=\"a\" x1=\"79.469\" y1=\"3.285\" x2=\"23.013\" y2=\"64.865\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#43BBFF\"/><stop offset=\"1\" stop-color=\"#0E50EB\"/></linearGradient><linearGradient id=\"b\" x1=\"22.856\" y1=\"12.951\" x2=\"79.99\" y2=\"77.769\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#563FFF\"/><stop offset=\"1\" stop-color=\"#9182FF\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nz4hp3\",\"data-framer-name\":\"Frame 427318615\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Medical professional score\"})}),className:\"framer-951i4g\",\"data-framer-name\":\"Medical score\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-k1p0ox\",\"data-framer-name\":\"Line 72\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:321,svg:'<svg width=\"321\" height=\"4\" viewBox=\"-1 -1 321 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.2\" y1=\"0.511719\" x2=\"319\" y2=\"0.511719\" stroke=\"#525F7E\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"A verification of an individual's status against medical sanction lists and regulatory compliance checks. This ensures that medical personnel meet industry standards and regulatory requirements, safeguarding the integrity and reputation of your healthcare organization.\"})}),className:\"framer-i2x14r\",\"data-framer-name\":\"A verification of an individual's status against medical sanction lists and regulatory compliance checks. This ensures that medical personnel meet industry standards and regulatory requirements, safeguarding the integrity and reputation of your healthcare organization.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oj877e\",\"data-framer-name\":\"Frame 427318613\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-rwbrh2\",\"data-framer-name\":\"Frame_427318521\",fill:\"black\",intrinsicHeight:65,intrinsicWidth:122,svg:'<svg width=\"122\" height=\"65\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M81.58 4.25h40.334m-40.333 7.09h40.333m-40.333 5.32h25.263\" stroke=\"#000\" stroke-width=\"1.773\"/><rect x=\"58.976\" y=\"21.535\" width=\"9.751\" height=\"13.297\" rx=\"4.875\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".886\"/><path d=\"M51.441 45.429c0-5.608 4.546-10.154 10.154-10.154h4.513c5.608 0 10.154 4.546 10.154 10.154a2.256 2.256 0 0 1-2.257 2.256H53.698a2.256 2.256 0 0 1-2.257-2.256Z\" fill=\"#0546F0\"/><path d=\"M51.441 45.429c0-5.608 4.546-10.154 10.154-10.154h4.513c5.608 0 10.154 4.546 10.154 10.154a2.256 2.256 0 0 1-2.257 2.256H53.698a2.256 2.256 0 0 1-2.257-2.256Z\" fill=\"url(#a)\"/><rect x=\"8.449\" y=\"21.535\" width=\"9.751\" height=\"13.297\" rx=\"4.875\" fill=\"#fff\" stroke=\"#000\" stroke-width=\".886\"/><path d=\"M.914 45.429c0-5.608 4.546-10.154 10.154-10.154h4.513c5.608 0 10.154 4.546 10.154 10.154a2.256 2.256 0 0 1-2.257 2.256H3.17A2.256 2.256 0 0 1 .914 45.43Z\" fill=\"#0546F0\"/><path d=\"M.914 45.429c0-5.608 4.546-10.154 10.154-10.154h4.513c5.608 0 10.154 4.546 10.154 10.154a2.256 2.256 0 0 1-2.257 2.256H3.17A2.256 2.256 0 0 1 .914 45.43Z\" fill=\"url(#b)\"/><path d=\"M29.28 16.955c.437 3.033 3.092 4.875 4.365 5.417.727.36 2.182-.109 2.182-4.876 0-5.958-1.637-10.292 4.91-10.292.908 0 3.054.325 4.363 1.625.364-.541 1.528-1.625 3.273-1.625 2.182 0 5.455 1.625 6 4.334-.181-3.612-2.836-10.834-12-10.834-9.165 0-12.547 5.778-13.092 8.667v7.584Z\" fill=\"#000\"/><path d=\"M78.921 63.642c-1.219-6.052-14.017-20.686-26.184-20.686a4.31 4.31 0 0 1-2.182-1.115c2.364 5.247 6.983 12.7 6.546 21.8h21.82Z\" fill=\"#fff\"/><path d=\"M33.645 22.372c-1.273-.542-3.928-2.384-4.364-5.417-.546-.723-1.855-1.517-2.728 1.083-1.09 3.25 0 5.959 2.182 7.584 1.746 1.3 3.637.902 4.364.541v11.918c0 .658-.143 1.583-.545 2.45a4.485 4.485 0 0 1-.903 1.31c-.608 3.26-1.825 7.933-1.825 21.8H57.1c.437-9.1-4.182-16.553-6.546-21.8-.617-.598-1.09-1.465-1.09-2.677 0-3.25 0-4.334 1.09-5.417 1.091-1.083 3.819-1.625 3.819-7.584V11.538c-.546-2.709-3.819-4.334-6-4.334-1.746 0-2.91 1.084-3.274 1.625-1.309-1.3-3.455-1.625-4.364-1.625-6.546 0-4.91 4.334-4.91 10.292 0 4.767-1.454 5.237-2.181 4.876Z\" fill=\"#fff\"/><path d=\"M28.735 42.956c-4.364 0-27.82 3.136-27.82 20.686h28.91c0-13.868 1.218-18.54 1.826-21.8-.665.657-1.606 1.114-2.916 1.114Z\" fill=\"#fff\"/><path d=\"M29.28 16.955c.437 3.033 3.092 4.875 4.365 5.417.727.36 2.182-.109 2.182-4.876 0-5.958-1.637-10.292 4.91-10.292.908 0 3.054.325 4.363 1.625.364-.541 1.528-1.625 3.273-1.625 2.182 0 5.455 1.625 6 4.334m-25.092 5.417c-.546-.723-1.855-1.517-2.728 1.083-1.09 3.25 0 5.959 2.182 7.584 1.746 1.3 3.637.902 4.364.541v11.918c0 .658-.143 1.583-.545 2.45M29.28 16.955V9.37C29.826 6.48 33.208.704 42.373.704c9.164 0 11.819 7.222 12 10.834m-3.818 22.209c-1.09 1.083-1.09 2.167-1.09 5.417 0 1.212.473 2.079 1.09 2.677m0-8.094c1.091-1.083 3.819-1.625 3.819-7.584m-3.819 7.584c-1.636 1.625-6.655 3.9-13.637 0m17.456-7.584V11.538m0 14.625V11.538M32.554 40.53l11.455 11.092 5.455-10.292m-16.91-.8a4.485 4.485 0 0 1-.903 1.31m18.904 0a4.31 4.31 0 0 0 2.182 1.115c12.167 0 24.965 14.634 26.184 20.686h-21.82m-6.546-21.8c2.364 5.246 6.983 12.7 6.546 21.8m0 0H29.826m1.825-21.8c-.665.657-1.606 1.114-2.916 1.114-4.364 0-27.82 3.136-27.82 20.686h28.91m1.826-21.8c-.608 3.26-1.825 7.932-1.825 21.8\" stroke=\"#000\" stroke-width=\".886\"/><mask id=\"d\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"82\" y=\"24\" width=\"40\" height=\"40\"><circle cx=\"101.969\" cy=\"44.139\" r=\"19.502\" fill=\"#D9D9D9\"/><circle cx=\"101.969\" cy=\"44.139\" r=\"19.502\" fill=\"url(#c)\"/></mask><g mask=\"url(#d)\"><circle cx=\"101.969\" cy=\"44.139\" r=\"19.502\" fill=\"#D9D9D9\"/><circle cx=\"101.969\" cy=\"44.139\" r=\"19.502\" fill=\"url(#e)\"/><circle cx=\"101.969\" cy=\"44.139\" r=\"19.502\" fill=\"url(#f)\"/><path d=\"M101.082 24.637V44.14l.043.073m10.152 17.213-10.152-17.213m19.016 7.462-19.016-7.462\" stroke=\"#000\" stroke-width=\".886\"/></g><defs><linearGradient id=\"a\" x1=\"69.204\" y1=\"36.385\" x2=\"60.096\" y2=\"44.859\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FF9A67\"/><stop offset=\"1\" stop-color=\"#FC691F\"/></linearGradient><linearGradient id=\"b\" x1=\"18.677\" y1=\"36.385\" x2=\"9.568\" y2=\"44.859\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FF9A67\"/><stop offset=\"1\" stop-color=\"#FC691F\"/></linearGradient><linearGradient id=\"c\" x1=\"117.404\" y1=\"26.206\" x2=\"91.872\" y2=\"62.205\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#43BBFF\"/><stop offset=\"1\" stop-color=\"#0E50EB\"/></linearGradient><linearGradient id=\"e\" x1=\"117.404\" y1=\"26.206\" x2=\"91.872\" y2=\"62.205\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#43BBFF\"/><stop offset=\"1\" stop-color=\"#0E50EB\"/></linearGradient><linearGradient id=\"f\" x1=\"110.38\" y1=\"28.127\" x2=\"88.428\" y2=\"38.338\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FF9A67\"/><stop offset=\"1\" stop-color=\"#FC691F\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lnnf6y\",\"data-framer-name\":\"Frame 427318615\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Peers score\"})}),className:\"framer-4jp0yb\",\"data-framer-name\":\"Peers score\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mcguzb\",\"data-framer-name\":\"Line 72\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:321,svg:'<svg width=\"321\" height=\"4\" viewBox=\"-1 -1 321 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.2\" y1=\"0.511719\" x2=\"319\" y2=\"0.511719\" stroke=\"#525F7E\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"A nuanced measurement of an individual's social network, relationships, and interactions. This provides valuable context on their social influence and reliability, helping to build a trustworthy and cohesive team.\"})}),className:\"framer-1g54rns\",\"data-framer-name\":\"A nuanced measurement of an individual's social network, relationships, and interactions. This provides valuable context on their social influence and reliability, helping to build a trustworthy and cohesive team.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l94jsx hidden-72rtr7\",\"data-framer-name\":\"Par\",id:elementId9,ref:ref10,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4mapne\",\"data-framer-name\":\"Frame 427318674\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e5g7z1 hidden-72rtr7 hidden-l241wy\",\"data-framer-name\":\"Rectangle_5186\"}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9sb18x hidden-tf1r54 hidden-l241wy\",\"data-framer-name\":\"Macbook Pro\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-96ttwy\",\"data-framer-name\":\"Shadow\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:2,intrinsicWidth:556,svg:'<svg width=\"556\" height=\"2\" viewBox=\"0 0 556 2\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_299_6857)\">\\n<path d=\"M0.748047 0.725016C0.748047 0.331073 51.1451 0.0117188 52.1446 0.0117188H508.198C509.198 0.0117188 555.251 0.331073 555.251 0.725016C555.251 1.11896 509.198 1.43831 508.198 1.43831H52.1446C51.1451 1.43831 0.748047 1.11896 0.748047 0.725016Z\" fill=\"black\" fill-opacity=\"0.75\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_299_6857\" x=\"0.278967\" y=\"-0.457361\" width=\"555.442\" height=\"2.36492\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.23454\" result=\"effect1_foregroundBlur_299_6857\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wya9t5\",\"data-framer-name\":\"Screen Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:302,intrinsicWidth:454,svg:'<svg width=\"454\" height=\"302\" viewBox=\"0 0 454 302\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.820557 9.3933C0.820557 4.21199 5.02084 0.0117188 10.2022 0.0117188H443.797C448.978 0.0117188 453.178 4.212 453.178 9.39332V301.739H0.820557V9.3933Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1d3iyr0\",\"data-framer-name\":\"Body\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:540,svg:'<svg width=\"540\" height=\"18\" viewBox=\"0 0 540 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.773799 0.605957C0.370847 0.605957 0.0441895 0.925314 0.0441895 1.31926V10.5922C0.0441895 12.9266 29.2286 17.0119 51.1169 17.0119H494.719C516.608 17.0119 539.955 12.9266 539.955 10.5922V1.31926C539.955 0.925314 539.629 0.605957 539.226 0.605957H0.773799Z\" fill=\"#777777\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1q3ivx0\",\"data-framer-name\":\"Bottom\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:540,svg:'<svg width=\"540\" height=\"8\" viewBox=\"0 0 540 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g style=\"mix-blend-mode:multiply\">\\n<path d=\"M0.0441895 0.591797H539.955C539.955 2.92624 516.608 7.01153 494.719 7.01153H51.1169C29.2286 7.01153 0.0441895 2.92624 0.0441895 0.591797Z\" fill=\"url(#paint0_linear_299_6860)\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_299_6860\" x1=\"270\" y1=\"0.591797\" x2=\"270\" y2=\"7.01153\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#8A8A8A\"/>\\n<stop offset=\"1\" stop-color=\"#C4C4C4\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1229m2v\",\"data-framer-name\":\"Bevel\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"7\" viewBox=\"0 0 80 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g style=\"mix-blend-mode:hard-light\" opacity=\"0.8\">\\n<path d=\"M0.600586 0.605957H79.3984C79.3984 4.17248 75.0207 6.31239 72.1023 6.31239H7.89668C4.97824 6.31239 0.600586 4.17248 0.600586 0.605957Z\" fill=\"#E1E2E3\"/>\\n<path d=\"M0.600586 0.605957H79.3984C79.3984 4.17248 75.0207 6.31239 72.1023 6.31239H7.89668C4.97824 6.31239 0.600586 4.17248 0.600586 0.605957Z\" fill=\"url(#paint0_linear_299_6861)\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_299_6861\" x1=\"79.3984\" y1=\"6.31233\" x2=\"0.600586\" y2=\"6.31233\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#8A8A8A\"/>\\n<stop offset=\"0.203125\" stop-color=\"#AAAAAA\" stop-opacity=\"0\"/>\\n<stop offset=\"0.8125\" stop-color=\"#AAAAAA\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"#8A8A8A\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-p0j9bd\",\"data-framer-name\":\"Bevel\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"7\" viewBox=\"0 0 80 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g style=\"mix-blend-mode:multiply\">\\n<path d=\"M0.600586 0.605957H79.3984C79.3984 4.17248 75.0207 6.31239 72.1023 6.31239H7.89668C4.97824 6.31239 0.600586 4.17248 0.600586 0.605957Z\" fill=\"#E1E2E3\"/>\\n<path d=\"M0.600586 0.605957H79.3984C79.3984 4.17248 75.0207 6.31239 72.1023 6.31239H7.89668C4.97824 6.31239 0.600586 4.17248 0.600586 0.605957Z\" fill=\"url(#paint0_linear_299_6862)\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_299_6862\" x1=\"79.3984\" y1=\"6.31233\" x2=\"0.600586\" y2=\"6.31233\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#8A8A8A\"/>\\n<stop offset=\"0.203125\" stop-color=\"#AAAAAA\" stop-opacity=\"0\"/>\\n<stop offset=\"0.8125\" stop-color=\"#AAAAAA\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"#8A8A8A\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:1056,pixelWidth:1728,positionX:\"center\",positionY:\"center\",sizes:\"431.9288px\",src:\"https://framerusercontent.com/images/mlaKPzB8vALU9FEVMzOasKHFGc.png\",srcSet:\"https://framerusercontent.com/images/mlaKPzB8vALU9FEVMzOasKHFGc.png?scale-down-to=512 512w,https://framerusercontent.com/images/mlaKPzB8vALU9FEVMzOasKHFGc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mlaKPzB8vALU9FEVMzOasKHFGc.png 1728w\"},className:\"framer-1qbm35\",\"data-framer-name\":\"Paste your design here\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nnb08t\",\"data-framer-name\":\"Display bottom\"})]}),isDisplayed4()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T0lvaDWzn:{href:\"https://www.youtube.com/watch?v=8fHpbi8jpw8\"}},children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"meDebXcqY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1wrkjoc hidden-72rtr7 framer-lux5qc\",children:isDisplayed4()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:313,intrinsicWidth:556,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5654.1815+60+0+0+0+0),pixelHeight:313,pixelWidth:556,sizes:\"556px\",src:\"https://framerusercontent.com/images/2bTUbIX6VDeWTKR15lF2AMfpEG8.png\",srcSet:\"https://framerusercontent.com/images/2bTUbIX6VDeWTKR15lF2AMfpEG8.png?scale-down-to=512 512w,https://framerusercontent.com/images/2bTUbIX6VDeWTKR15lF2AMfpEG8.png 556w\"}},T0lvaDWzn:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:313,intrinsicWidth:556,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9850.5+60+0+0+0+0+0),pixelHeight:476,pixelWidth:845,sizes:\"350px\",src:\"https://framerusercontent.com/images/YGfjPnWeTkndXEZjs6lYgz3arGk.png\",srcSet:\"https://framerusercontent.com/images/YGfjPnWeTkndXEZjs6lYgz3arGk.png?scale-down-to=512 512w,https://framerusercontent.com/images/YGfjPnWeTkndXEZjs6lYgz3arGk.png 845w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:313,intrinsicWidth:556,pixelHeight:313,pixelWidth:556,src:\"https://framerusercontent.com/images/2bTUbIX6VDeWTKR15lF2AMfpEG8.png\",srcSet:\"https://framerusercontent.com/images/2bTUbIX6VDeWTKR15lF2AMfpEG8.png?scale-down-to=512 512w,https://framerusercontent.com/images/2bTUbIX6VDeWTKR15lF2AMfpEG8.png 556w\"},className:\"framer-1zzt63 hidden-72rtr7\",\"data-framer-name\":\"Macbook_Pro\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ommm04-container hidden-72rtr7 hidden-l241wy\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BIIiVohno\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed1,{height:\"100%\",html:'<div style=\"position: relative; padding-top: 56.25%; width: 100%\"><iframe src=\"https://kinescope.io/embed/2J2y9PzPX6G8ydz8H6yVWm\" allow=\"autoplay; fullscreen; picture-in-picture; encrypted-media; gyroscope; accelerometer; clipboard-write;\" frameborder=\"0\" allowfullscreen style=\"position: absolute; width: 100%; height: 100%; top: 0; left: 0;\"></iframe></div>',id:\"BIIiVohno\",layoutId:\"BIIiVohno\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://kinescope.io/pwQNCYzfZXvA1KiVhe5wP7\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mudiff-container hidden-72rtr7 hidden-tf1r54\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Mm5WhCilV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed1,{height:\"100%\",html:'<div style=\"position: relative; padding-top: 56.25%; width: 100%\"><iframe src=\"https://kinescope.io/pwQNCYzfZXvA1KiVhe5wP7\" allow=\"autoplay; fullscreen; picture-in-picture; encrypted-media; gyroscope; accelerometer; clipboard-write;\" frameborder=\"0\" allowfullscreen style=\"position: absolute; width: 100%; height: 100%; top: 0; left: 0;\"></iframe></div>',id:\"Mm5WhCilV\",layoutId:\"Mm5WhCilV\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://kinescope.io/pwQNCYzfZXvA1KiVhe5wP7\",width:\"100%\"})})})]})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15nir0i\",\"data-framer-name\":\"Frame 427318594\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v9i177\",\"data-framer-name\":\"Frame 427318665\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3gbud4\",\"data-framer-name\":\"Frame 427318664\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\"},children:\"How it works?\"})}),className:\"framer-16hje3c\",\"data-framer-name\":\"How it works?\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Transform Your Hiring Journey: Seamless Access to Vital Data at Your Fingertips. PROFID is on the forefront of reshaping the employment landscape, and we're excited to join forces with employers and candidates to cultivate a job market that exudes transparency and trustworthiness.\"})})},T0lvaDWzn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Transform Your Hiring Journey: Seamless Access to Vital Data at Your Fingertips. PROFID is on the forefront of reshaping the employment landscape, and we're excited to join forces with employers and candidates to cultivate a job market that exudes transparency and trustworthiness.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Transform Your Hiring Journey: Seamless Access to Vital Data at Your Fingertips. EPASS is on the forefront of reshaping the employment landscape, and we're excited to join forces with employers and candidates to cultivate a job market that exudes transparency and trustworthiness.\"})}),className:\"framer-bvw8io\",\"data-framer-name\":\"Transform Your Hiring Journey: Seamless Access to Vital Data at Your Fingertips. EPASS is on the forefront of reshaping the employment landscape, and we're excited to join forces with employers and candidates to cultivate a job market that exudes transparency and trustworthiness.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-umj7zg\",\"data-framer-name\":\"Frame 427318665\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay12=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19a39ja\",\"data-framer-name\":\"Frame 427318279\",id:\"19a39ja\",onTap:onTap3bnx0g({overlay:overlay12}),children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get in touch\"})})},T0lvaDWzn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get in touch\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get started\"})}),className:\"framer-tm7uvr\",\"data-framer-name\":\"Get started\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay12.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1jshth0\"),\"data-framer-portal-id\":\"19a39ja\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay12.hide()},\"p808QRQnH\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T0lvaDWzn:{width:\"352px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"474px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-17hg1m0-container\"),\"data-framer-portal-id\":\"19a39ja\",nodeId:\"bwMHMAqw0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Form,{height:\"100%\",id:\"bwMHMAqw0\",layoutId:\"bwMHMAqw0\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),getContainer())})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gxf1i3\",\"data-framer-name\":\"Frame 427318591\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Start simulation\"})}),className:\"framer-12nrl3n\",\"data-framer-name\":\"Start simulation\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rybvz hidden-72rtr7 hidden-l241wy\",\"data-framer-name\":\"Rectangle_5186\"})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-dt2hds hidden-72rtr7 hidden-l241wy\",\"data-framer-name\":\"Frame 427318666\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-jvu3cv\",\"data-framer-name\":\"Frame 427318674\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16695la\",\"data-framer-name\":\"Frame 427318594\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-d6ozxh\",\"data-framer-name\":\"Frame 427318665\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zjb1sb\",\"data-framer-name\":\"Frame 427318664\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"125%\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"uppercase\"},children:\"Revolution digital reputation\"})}),className:\"framer-fkagu9\",\"data-framer-name\":\"Revolution digital reputation\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\"},children:\"The innovative background check system and unique preventive protection technology deliver double the productivity and effectiveness.\"})}),className:\"framer-qm9bhz\",\"data-framer-name\":\"\u2018The Innovative Background check system and unique preventive protection technology ae twice as productive and twice as effective protection.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1422p1c hidden-72rtr7 hidden-l241wy\",\"data-framer-name\":\"Frame 427318623\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fatsp1\",\"data-framer-name\":\"Frame 427318634\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11cwx09\",\"data-framer-name\":\"Frame 427318624\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4zjah2\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dmezr1\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"125%\"},children:\"Compare for yourself:\"})}),className:\"framer-7eq65x\",\"data-framer-name\":\"Compare for yourself:\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vhalcw\",\"data-framer-name\":\"Frame_427318629\",fill:\"black\",intrinsicHeight:78,intrinsicWidth:256,svg:'<svg width=\"256\" height=\"78\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path fill=\"#E1F3F3\" d=\"M0 0h64v78H0z\"/><path d=\"M32.226 51.36a.412.412 0 0 0-.002 0l6.463 4.004-6.461-4.003v-.001Zm-5.164-25.838c.726-2.137 2.663-3.52 4.937-3.52a5.352 5.352 0 0 1-.002-.002c-2.273 0-4.21 1.382-4.936 3.521l.001.001Zm-8.338 24.564c-.608 1.788-.054 3.658 1.389 4.852-1.443-1.196-1.995-3.064-1.389-4.85v-.002Zm23.667 3.457c-.59.433-1.28.57-1.94.405.66.165 1.352.028 1.94-.405ZM20.56 55.266Zm6.028-6.111a8.096 8.096 0 0 0 .002 0l-4.065-3.785 4.063 3.783v.002Z\" fill=\"#563FFF\"/><path d=\"M36.937 25.522a5.118 5.118 0 0 0-2.932-3.134A5.325 5.325 0 0 0 32 22c-2.274 0-4.211 1.383-4.937 3.521l-2.458 7.244.401.119 1.197.356.401.12 2.452-7.226c.536-1.579 1.873-2.141 2.945-2.141a3.2 3.2 0 0 1 1.262.26c.7.304 1.348.894 1.683 1.88l2.452 7.226.402-.12 1.196-.355.402-.12-2.459-7.243ZM31.149 51.26a7.853 7.853 0 0 1-1.658-.372 8.413 8.413 0 0 1-.495-.183l-4.787 2.968c-.633.371-1.339.437-1.983.203a2.437 2.437 0 0 1-.62-.333c-.686-.502-1.33-1.547-.888-2.845l1.807-5.325-.335-.313-1-.932-.335-.312-2.128 6.27c-.608 1.788-.056 3.656 1.389 4.85.074.06.137.127.215.184.075.055.155.096.232.145a4.46 4.46 0 0 0 4.087.416 4.79 4.79 0 0 0 .686-.33l6.442-3.99a.438.438 0 0 1 .149-.054 7.576 7.576 0 0 1-.774-.048h-.004Zm14.125-1.174-2.126-6.267-.335.312-1 .931-.335.312 1.806 5.321c.441 1.299-.204 2.345-.888 2.845-.59.433-1.282.57-1.94.405-.02-.004-.04-.013-.06-.019a2.274 2.274 0 0 1-.582-.245l-4.806-2.979a8.413 8.413 0 0 1-.494.183 7.753 7.753 0 0 1-2.433.418c.012.003.025.001.037.006a.41.41 0 0 1 .11.048l6.462 4.003c.17.1.348.188.528.265a4.53 4.53 0 0 0 1.788.375c.955 0 1.877-.306 2.667-.885 1.612-1.18 2.242-3.156 1.604-5.035l-.003.006Z\" fill=\"#563FFF\"/><path d=\"M15.946 31.896a4.484 4.484 0 0 1 3.771-.575l12.285 3.648 12.284-3.648a4.487 4.487 0 0 1 3.773.575 4.386 4.386 0 0 1 1.397 1.498 4.4 4.4 0 0 0-1.4-1.504 4.483 4.483 0 0 0-3.773-.574l-4.888 1.451-.401.12-1.197.355-.401.12L32 34.965l-5.397-1.603-.401-.12-1.197-.355-.401-.12-4.888-1.451a4.484 4.484 0 0 0-3.773.574c-1.188.793-1.896 2.053-1.943 3.46 0 .033.004.064.004.097 0-.03-.002-.06-.001-.09.047-1.407.755-2.669 1.943-3.461Zm-1.767 4.87c.044.151.099.3.16.446a3.982 3.982 0 0 1-.168-.484c.003.013.005.026.01.04l-.002-.002Z\" fill=\"#563FFF\"/><path d=\"M49.456 33.394a4.4 4.4 0 0 0-1.397-1.498 4.487 4.487 0 0 0-3.773-.575L32.002 34.97l-12.285-3.65a4.484 4.484 0 0 0-3.77.575c-1.189.794-1.897 2.055-1.944 3.461l.001.09c-.002.177.006.35.024.522.007.069.016.136.025.204a4.349 4.349 0 0 0 .283 1.04c.008.017.018.033.025.05.027.06.056.118.086.177.05.103.105.205.164.306.035.061.074.12.112.18.063.098.133.193.205.285.041.052.08.106.124.157.105.124.217.242.336.356.015.014.027.029.042.044l5.422 5.048.335.312 1 .93.335.313 4.065 3.785a8.14 8.14 0 0 0 1.841 1.292 8.137 8.137 0 0 0 1.06.439 7.754 7.754 0 0 0 2.431.42c.026 0 .053.004.08.004.026 0 .05-.003.076-.003a7.874 7.874 0 0 0 2.433-.418c.167-.057.332-.115.495-.182a8.09 8.09 0 0 0 2.41-1.551l4.06-3.779.334-.313 1-.932.335-.311 5.427-5.053a4.4 4.4 0 0 0 1.428-3.412 4.29 4.29 0 0 0-.544-1.963l.003.002Zm-21.403 14.34L16.895 37.346a2.485 2.485 0 0 1-.8-1.927 2.35 2.35 0 0 1 1.053-1.896 2.287 2.287 0 0 1 1.944-.303l12.848 3.814.06.018 12.91-3.832a2.3 2.3 0 0 1 1.943.303 2.35 2.35 0 0 1 1.054 1.896 2.48 2.48 0 0 1-.8 1.925L35.95 47.734c-2.25 2.096-5.645 2.096-7.898 0h.001Z\" fill=\"#563FFF\"/><path fill=\"#F4E6E6\" d=\"M64 0h64v78H64z\"/><path d=\"M79.615 28.62h-1.44a2.203 2.203 0 0 0-.864-1.408 2.386 2.386 0 0 0-.734-.37 2.865 2.865 0 0 0-.854-.124 2.67 2.67 0 0 0-1.463.41c-.428.275-.767.677-1.016 1.206-.246.53-.37 1.175-.37 1.939 0 .77.124 1.419.37 1.948.25.53.59.93 1.02 1.2.431.271.916.406 1.455.406.298 0 .581-.04.85-.12.27-.083.515-.204.733-.364a2.209 2.209 0 0 0 .873-1.39l1.44.005a3.857 3.857 0 0 1-.448 1.283 3.54 3.54 0 0 1-.845 1.007 3.82 3.82 0 0 1-1.172.65c-.44.154-.92.231-1.44.231-.82 0-1.549-.194-2.189-.581-.64-.391-1.145-.95-1.514-1.676-.366-.727-.55-1.593-.55-2.6 0-1.009.185-1.875.555-2.598.369-.727.874-1.284 1.514-1.671.64-.391 1.368-.587 2.183-.587.502 0 .97.072 1.404.217a3.7 3.7 0 0 1 1.177.628c.348.274.636.61.863 1.006.228.394.382.845.462 1.353Zm4.583 6.523c-.665 0-1.245-.152-1.74-.457a3.083 3.083 0 0 1-1.155-1.279c-.273-.547-.41-1.188-.41-1.92 0-.736.136-1.379.41-1.93.274-.55.66-.979 1.155-1.283.495-.305 1.075-.457 1.74-.457s1.245.152 1.74.457c.496.304.88.732 1.154 1.283.274.551.411 1.194.411 1.93 0 .732-.137 1.372-.41 1.92a3.082 3.082 0 0 1-1.155 1.28c-.495.304-1.075.456-1.74.456Zm.005-1.159c.43 0 .787-.114 1.07-.341.284-.228.493-.531.629-.91.138-.378.207-.795.207-1.25 0-.453-.069-.869-.207-1.247a2.031 2.031 0 0 0-.628-.919c-.284-.23-.64-.346-1.071-.346-.434 0-.794.115-1.08.346-.284.23-.495.537-.633.919a3.677 3.677 0 0 0-.203 1.246c0 .456.067.873.203 1.251.138.379.35.682.632.91.287.227.647.341 1.08.341ZM89.044 35v-7.09h1.325v1.153h.088c.148-.39.39-.695.725-.914.335-.221.737-.332 1.204-.332.474 0 .871.11 1.192.332.323.222.561.526.715.914h.074a2 2 0 0 1 .808-.905c.37-.227.81-.341 1.32-.341.643 0 1.168.201 1.574.605.41.403.614 1.01.614 1.823V35h-1.38v-4.626c0-.48-.13-.828-.392-1.043a1.427 1.427 0 0 0-.938-.323c-.449 0-.798.138-1.047.415-.25.274-.374.627-.374 1.058V35h-1.376v-4.713c0-.385-.12-.694-.36-.928-.24-.234-.553-.351-.937-.351-.262 0-.504.07-.725.208a1.523 1.523 0 0 0-.531.567 1.739 1.739 0 0 0-.199.845V35h-1.38Zm11.489 2.66v-9.75h1.348v1.149h.116c.08-.148.195-.319.346-.513.151-.194.36-.363.628-.508.268-.147.622-.221 1.062-.221.572 0 1.083.144 1.532.434.45.289.802.706 1.058 1.25.258.546.387 1.201.387 1.967 0 .767-.127 1.424-.383 1.972-.255.544-.606.965-1.052 1.26a2.728 2.728 0 0 1-1.528.438c-.431 0-.784-.072-1.058-.216a2.01 2.01 0 0 1-.637-.508 3.816 3.816 0 0 1-.355-.517h-.083v3.762h-1.381Zm1.353-6.205c0 .498.072.935.217 1.31.145.376.354.67.628.882.274.21.609.314 1.006.314.413 0 .757-.109 1.034-.328a2.03 2.03 0 0 0 .628-.9c.145-.378.217-.804.217-1.278 0-.468-.071-.888-.212-1.26a1.934 1.934 0 0 0-.628-.883c-.277-.215-.623-.323-1.039-.323-.4 0-.738.103-1.015.31a1.903 1.903 0 0 0-.624.863c-.141.37-.212.8-.212 1.293Zm9.727 3.688c-.699 0-1.3-.15-1.805-.448a3.029 3.029 0 0 1-1.163-1.27c-.271-.547-.407-1.189-.407-1.924 0-.727.136-1.367.407-1.92a3.15 3.15 0 0 1 1.144-1.298c.493-.31 1.068-.466 1.727-.466.4 0 .788.066 1.163.198.376.133.713.34 1.011.623.299.284.534.651.707 1.104.172.45.258.995.258 1.639v.489h-5.637v-1.034h4.285c0-.363-.074-.685-.222-.965a1.682 1.682 0 0 0-.623-.67 1.744 1.744 0 0 0-.933-.244c-.388 0-.726.095-1.015.286a1.915 1.915 0 0 0-.665.739 2.13 2.13 0 0 0-.231.983v.808c0 .474.083.877.249 1.21.17.332.405.586.707.761.301.173.654.259 1.057.259.261 0 .5-.037.715-.111a1.482 1.482 0 0 0 .919-.9l1.306.235a2.357 2.357 0 0 1-.563 1.011c-.267.287-.604.51-1.011.67a3.783 3.783 0 0 1-1.38.235Zm8.752-4.736v1.195h-4.192v-1.195h4.192ZM82.617 45.909v1.108h-3.873v-1.108h3.873Zm-2.835-1.699h1.38v6.708c0 .268.04.47.12.605.08.132.184.223.31.272.13.046.27.07.42.07.11 0 .208-.008.29-.024.084-.015.149-.027.195-.037l.25 1.14c-.08.031-.195.062-.343.093a2.696 2.696 0 0 1-.553.055 2.428 2.428 0 0 1-1.016-.194 1.742 1.742 0 0 1-.762-.627c-.194-.284-.29-.639-.29-1.067V44.21ZM84.144 53v-7.09h1.38V53h-1.38Zm.697-8.185a.877.877 0 0 1-.619-.24.78.78 0 0 1-.254-.582.77.77 0 0 1 .254-.581.869.869 0 0 1 .619-.245c.24 0 .445.081.614.245.172.16.258.354.258.581a.774.774 0 0 1-.258.582.861.861 0 0 1-.614.24Zm5.85 1.094v1.108h-3.873v-1.108h3.873Zm-2.835-1.699h1.38v6.708c0 .268.04.47.12.605.08.132.184.223.31.272.13.046.27.07.42.07.111 0 .208-.008.291-.024.083-.015.148-.027.194-.037l.25 1.14a2.695 2.695 0 0 1-.896.148 2.428 2.428 0 0 1-1.016-.194 1.742 1.742 0 0 1-.762-.627c-.194-.284-.29-.639-.29-1.067V44.21Zm7.273 8.933c-.665 0-1.245-.152-1.74-.457a3.082 3.082 0 0 1-1.155-1.279c-.274-.547-.41-1.188-.41-1.92 0-.736.136-1.379.41-1.93a3.08 3.08 0 0 1 1.154-1.283c.496-.305 1.076-.457 1.74-.457.665 0 1.246.152 1.741.457.496.304.88.732 1.154 1.283.274.551.411 1.194.411 1.93 0 .732-.137 1.372-.41 1.92a3.082 3.082 0 0 1-1.155 1.28c-.495.304-1.076.456-1.74.456Zm.004-1.159c.431 0 .788-.114 1.071-.341a2 2 0 0 0 .628-.91c.139-.378.208-.795.208-1.25 0-.453-.07-.869-.208-1.247a2.03 2.03 0 0 0-.628-.919c-.283-.23-.64-.346-1.07-.346-.435 0-.795.115-1.081.346-.283.23-.494.537-.632.919a3.677 3.677 0 0 0-.204 1.246c0 .456.068.873.204 1.251.138.379.349.682.632.91.286.227.646.341 1.08.341ZM99.975 53v-7.09h1.334v1.126h.074a1.71 1.71 0 0 1 .683-.9 1.955 1.955 0 0 1 1.117-.333 5.978 5.978 0 0 1 .587.032v1.32a2.506 2.506 0 0 0-.296-.05 2.806 2.806 0 0 0-.425-.033c-.326 0-.617.07-.872.208a1.534 1.534 0 0 0-.6.568c-.148.24-.222.514-.222.822V53h-1.38Zm11.998-9.455V53h-1.431v-8.023h-.055l-2.263 1.477v-1.367l2.359-1.542h1.39Z\" fill=\"#000\"/><path fill=\"#F4E6E6\" d=\"M128 0h64v78h-64z\"/><path d=\"M143.615 28.62h-1.44a2.21 2.21 0 0 0-.864-1.408 2.38 2.38 0 0 0-.734-.37 2.86 2.86 0 0 0-.854-.124 2.67 2.67 0 0 0-1.463.41c-.428.275-.766.677-1.016 1.206-.246.53-.369 1.175-.369 1.939 0 .77.123 1.419.369 1.948.25.53.59.93 1.02 1.2.431.271.916.406 1.455.406.298 0 .581-.04.849-.12.271-.083.516-.204.734-.364a2.232 2.232 0 0 0 .873-1.39l1.44.005a3.849 3.849 0 0 1-.448 1.283 3.54 3.54 0 0 1-.845 1.007 3.81 3.81 0 0 1-1.172.65c-.44.154-.92.231-1.441.231-.818 0-1.548-.194-2.188-.581-.64-.391-1.145-.95-1.514-1.676-.366-.727-.549-1.593-.549-2.6 0-1.009.184-1.875.554-2.598.369-.727.874-1.284 1.514-1.671.64-.391 1.368-.587 2.183-.587.502 0 .97.072 1.404.217.437.142.829.351 1.177.628.348.274.636.61.863 1.006.228.394.382.845.462 1.353Zm4.583 6.523c-.665 0-1.245-.152-1.74-.457a3.081 3.081 0 0 1-1.155-1.279c-.273-.547-.41-1.188-.41-1.92 0-.736.137-1.379.41-1.93.274-.55.659-.979 1.155-1.283.495-.305 1.075-.457 1.74-.457s1.245.152 1.74.457a3.07 3.07 0 0 1 1.155 1.283c.273.551.41 1.194.41 1.93 0 .732-.137 1.372-.41 1.92a3.081 3.081 0 0 1-1.155 1.28c-.495.304-1.075.456-1.74.456Zm.005-1.159c.43 0 .787-.114 1.071-.341.283-.228.492-.531.627-.91.139-.378.208-.795.208-1.25a3.59 3.59 0 0 0-.208-1.247 2.027 2.027 0 0 0-.627-.919c-.284-.23-.641-.346-1.071-.346-.434 0-.794.115-1.081.346a2.06 2.06 0 0 0-.632.919 3.662 3.662 0 0 0-.203 1.246c0 .456.067.873.203 1.251.138.379.349.682.632.91.287.227.647.341 1.081.341ZM153.044 35v-7.09h1.325v1.153h.088c.147-.39.389-.695.725-.914.335-.221.737-.332 1.204-.332.474 0 .871.11 1.192.332.323.222.561.526.715.914h.074a1.99 1.99 0 0 1 .808-.905c.369-.227.809-.341 1.32-.341.643 0 1.168.201 1.574.605.41.403.614 1.01.614 1.823V35h-1.38v-4.626c0-.48-.131-.828-.392-1.043a1.428 1.428 0 0 0-.938-.323c-.449 0-.798.138-1.047.415-.25.274-.374.627-.374 1.058V35h-1.376v-4.713c0-.385-.12-.694-.36-.928-.24-.234-.553-.351-.937-.351-.262 0-.504.07-.725.208a1.517 1.517 0 0 0-.531.567 1.743 1.743 0 0 0-.199.845V35h-1.38Zm11.489 2.66v-9.75h1.348v1.149h.116c.08-.148.195-.319.346-.513.151-.194.36-.363.628-.508.268-.147.622-.221 1.062-.221.572 0 1.083.144 1.532.434.45.289.802.706 1.058 1.25.258.546.387 1.201.387 1.967 0 .767-.127 1.424-.383 1.972-.255.544-.606.965-1.052 1.26a2.728 2.728 0 0 1-1.528.438c-.431 0-.784-.072-1.058-.216a2.01 2.01 0 0 1-.637-.508 3.816 3.816 0 0 1-.355-.517h-.083v3.762h-1.381Zm1.353-6.205c0 .498.072.935.217 1.31.145.376.354.67.628.882.274.21.609.314 1.006.314.413 0 .757-.109 1.034-.328a2.03 2.03 0 0 0 .628-.9c.145-.378.217-.804.217-1.278 0-.468-.071-.888-.212-1.26a1.934 1.934 0 0 0-.628-.883c-.277-.215-.623-.323-1.039-.323-.4 0-.738.103-1.015.31a1.903 1.903 0 0 0-.624.863c-.141.37-.212.8-.212 1.293Zm9.727 3.688c-.699 0-1.3-.15-1.805-.448a3.029 3.029 0 0 1-1.163-1.27c-.271-.547-.407-1.189-.407-1.924 0-.727.136-1.367.407-1.92a3.15 3.15 0 0 1 1.144-1.298c.493-.31 1.068-.466 1.727-.466.4 0 .788.066 1.163.198.376.133.713.34 1.011.623.299.284.534.651.707 1.104.172.45.258.995.258 1.639v.489h-5.637v-1.034h4.285c0-.363-.074-.685-.222-.965a1.682 1.682 0 0 0-.623-.67 1.744 1.744 0 0 0-.933-.244c-.388 0-.726.095-1.015.286a1.915 1.915 0 0 0-.665.739 2.13 2.13 0 0 0-.231.983v.808c0 .474.083.877.249 1.21.17.332.405.586.707.761.301.173.654.259 1.057.259.261 0 .5-.037.715-.111a1.482 1.482 0 0 0 .919-.9l1.306.235a2.357 2.357 0 0 1-.563 1.011c-.267.287-.604.51-1.011.67a3.783 3.783 0 0 1-1.38.235Zm8.752-4.736v1.195h-4.192v-1.195h4.192Zm-38.662 15.502v1.108h-3.873v-1.108h3.873Zm-2.835-1.699h1.381v6.708c0 .268.04.47.12.605.08.132.183.223.309.272.129.046.269.07.42.07.111 0 .208-.008.291-.024.083-.015.148-.027.194-.037l.249 1.14a2.686 2.686 0 0 1-.896.148 2.426 2.426 0 0 1-1.015-.194 1.743 1.743 0 0 1-.762-.627c-.194-.284-.291-.639-.291-1.067V44.21ZM147.23 53v-7.09h1.38V53h-1.38Zm.697-8.185a.878.878 0 0 1-.619-.24.782.782 0 0 1-.254-.582c0-.227.085-.421.254-.581a.869.869 0 0 1 .619-.245.85.85 0 0 1 .614.245c.172.16.258.354.258.581a.775.775 0 0 1-.258.582.862.862 0 0 1-.614.24Zm5.85 1.094v1.108h-3.873v-1.108h3.873Zm-2.835-1.699h1.381v6.708c0 .268.04.47.12.605.08.132.183.223.309.272.129.046.269.07.42.07.111 0 .208-.008.291-.024.083-.015.148-.027.194-.037l.249 1.14a2.702 2.702 0 0 1-.895.148 2.428 2.428 0 0 1-1.016-.194 1.743 1.743 0 0 1-.762-.627c-.194-.284-.291-.639-.291-1.067V44.21Zm7.273 8.933c-.665 0-1.245-.152-1.741-.457a3.086 3.086 0 0 1-1.154-1.279c-.274-.547-.411-1.188-.411-1.92 0-.736.137-1.379.411-1.93a3.08 3.08 0 0 1 1.154-1.283c.496-.305 1.076-.457 1.741-.457.664 0 1.244.152 1.74.457.495.304.88.732 1.154 1.283.274.551.411 1.194.411 1.93 0 .732-.137 1.372-.411 1.92a3.086 3.086 0 0 1-1.154 1.28c-.496.304-1.076.456-1.74.456Zm.004-1.159c.431 0 .788-.114 1.071-.341a2 2 0 0 0 .628-.91c.139-.378.208-.795.208-1.25a3.59 3.59 0 0 0-.208-1.247 2.029 2.029 0 0 0-.628-.919c-.283-.23-.64-.346-1.071-.346-.434 0-.794.115-1.08.346a2.07 2.07 0 0 0-.633.919 3.687 3.687 0 0 0-.203 1.246c0 .456.068.873.203 1.251.139.379.35.682.633.91.286.227.646.341 1.08.341ZM163.061 53v-7.09h1.334v1.126h.074a1.71 1.71 0 0 1 .683-.9 1.955 1.955 0 0 1 1.117-.333 5.978 5.978 0 0 1 .586.032v1.32a2.44 2.44 0 0 0-.295-.05 2.816 2.816 0 0 0-.425-.033c-.326 0-.617.07-.872.208a1.534 1.534 0 0 0-.6.568c-.148.24-.222.514-.222.822V53h-1.38Zm8.411 0v-1.034l3.199-3.315c.342-.36.623-.675.845-.946a3.56 3.56 0 0 0 .503-.78c.111-.246.166-.508.166-.785a1.46 1.46 0 0 0-.221-.813 1.454 1.454 0 0 0-.605-.53 1.92 1.92 0 0 0-.863-.19c-.339 0-.634.07-.887.208a1.421 1.421 0 0 0-.581.586 1.84 1.84 0 0 0-.203.887h-1.362c0-.576.132-1.08.397-1.51.264-.43.628-.765 1.089-1.002.462-.24.987-.36 1.574-.36.594 0 1.118.119 1.57.356.456.234.811.554 1.066.96.256.403.384.859.384 1.366 0 .351-.067.694-.199 1.03-.129.335-.355.71-.679 1.122-.323.409-.772.906-1.348 1.49l-1.878 1.967v.07h4.256V53h-6.223Z\" fill=\"#000\"/><path fill=\"#F4E6E6\" d=\"M192 0h64v78h-64z\"/><path d=\"M207.615 28.62h-1.44a2.21 2.21 0 0 0-.864-1.408 2.38 2.38 0 0 0-.734-.37 2.86 2.86 0 0 0-.854-.124 2.67 2.67 0 0 0-1.463.41c-.428.275-.766.677-1.016 1.206-.246.53-.369 1.175-.369 1.939 0 .77.123 1.419.369 1.948.25.53.59.93 1.02 1.2.431.271.916.406 1.455.406.298 0 .581-.04.849-.12.271-.083.516-.204.734-.364a2.232 2.232 0 0 0 .873-1.39l1.44.005a3.849 3.849 0 0 1-.448 1.283 3.54 3.54 0 0 1-.845 1.007 3.81 3.81 0 0 1-1.172.65c-.44.154-.92.231-1.441.231-.818 0-1.548-.194-2.188-.581-.64-.391-1.145-.95-1.514-1.676-.366-.727-.549-1.593-.549-2.6 0-1.009.184-1.875.554-2.598.369-.727.874-1.284 1.514-1.671.64-.391 1.368-.587 2.183-.587.502 0 .97.072 1.404.217.437.142.829.351 1.177.628.348.274.636.61.863 1.006.228.394.382.845.462 1.353Zm4.583 6.523c-.665 0-1.245-.152-1.74-.457a3.081 3.081 0 0 1-1.155-1.279c-.273-.547-.41-1.188-.41-1.92 0-.736.137-1.379.41-1.93.274-.55.659-.979 1.155-1.283.495-.305 1.075-.457 1.74-.457s1.245.152 1.74.457a3.07 3.07 0 0 1 1.155 1.283c.273.551.41 1.194.41 1.93 0 .732-.137 1.372-.41 1.92a3.081 3.081 0 0 1-1.155 1.28c-.495.304-1.075.456-1.74.456Zm.005-1.159c.43 0 .787-.114 1.071-.341.283-.228.492-.531.627-.91.139-.378.208-.795.208-1.25a3.59 3.59 0 0 0-.208-1.247 2.027 2.027 0 0 0-.627-.919c-.284-.23-.641-.346-1.071-.346-.434 0-.794.115-1.081.346a2.06 2.06 0 0 0-.632.919 3.662 3.662 0 0 0-.203 1.246c0 .456.067.873.203 1.251.138.379.349.682.632.91.287.227.647.341 1.081.341ZM217.044 35v-7.09h1.325v1.153h.088c.147-.39.389-.695.725-.914.335-.221.737-.332 1.204-.332.474 0 .871.11 1.192.332.323.222.561.526.715.914h.074a1.99 1.99 0 0 1 .808-.905c.369-.227.809-.341 1.32-.341.643 0 1.168.201 1.574.605.41.403.614 1.01.614 1.823V35h-1.38v-4.626c0-.48-.131-.828-.392-1.043a1.428 1.428 0 0 0-.938-.323c-.449 0-.798.138-1.047.415-.25.274-.374.627-.374 1.058V35h-1.376v-4.713c0-.385-.12-.694-.36-.928-.24-.234-.553-.351-.937-.351-.262 0-.504.07-.725.208a1.517 1.517 0 0 0-.531.567 1.743 1.743 0 0 0-.199.845V35h-1.38Zm11.489 2.66v-9.75h1.348v1.149h.116c.08-.148.195-.319.346-.513.151-.194.36-.363.628-.508.268-.147.622-.221 1.062-.221.572 0 1.083.144 1.532.434.45.289.802.706 1.058 1.25.258.546.387 1.201.387 1.967 0 .767-.127 1.424-.383 1.972-.255.544-.606.965-1.052 1.26a2.728 2.728 0 0 1-1.528.438c-.431 0-.784-.072-1.058-.216a2.01 2.01 0 0 1-.637-.508 3.816 3.816 0 0 1-.355-.517h-.083v3.762h-1.381Zm1.353-6.205c0 .498.072.935.217 1.31.145.376.354.67.628.882.274.21.609.314 1.006.314.413 0 .757-.109 1.034-.328a2.03 2.03 0 0 0 .628-.9c.145-.378.217-.804.217-1.278 0-.468-.071-.888-.212-1.26a1.934 1.934 0 0 0-.628-.883c-.277-.215-.623-.323-1.039-.323-.4 0-.738.103-1.015.31a1.903 1.903 0 0 0-.624.863c-.141.37-.212.8-.212 1.293Zm9.727 3.688c-.699 0-1.3-.15-1.805-.448a3.029 3.029 0 0 1-1.163-1.27c-.271-.547-.407-1.189-.407-1.924 0-.727.136-1.367.407-1.92a3.15 3.15 0 0 1 1.144-1.298c.493-.31 1.068-.466 1.727-.466.4 0 .788.066 1.163.198.376.133.713.34 1.011.623.299.284.534.651.707 1.104.172.45.258.995.258 1.639v.489h-5.637v-1.034h4.285c0-.363-.074-.685-.222-.965a1.682 1.682 0 0 0-.623-.67 1.744 1.744 0 0 0-.933-.244c-.388 0-.726.095-1.015.286a1.915 1.915 0 0 0-.665.739 2.13 2.13 0 0 0-.231.983v.808c0 .474.083.877.249 1.21.17.332.405.586.707.761.301.173.654.259 1.057.259.261 0 .5-.037.715-.111a1.482 1.482 0 0 0 .919-.9l1.306.235a2.357 2.357 0 0 1-.563 1.011c-.267.287-.604.51-1.011.67a3.783 3.783 0 0 1-1.38.235Zm8.752-4.736v1.195h-4.192v-1.195h4.192ZM209.5 45.909v1.108h-3.874v-1.108h3.874Zm-2.835-1.699h1.38v6.708c0 .268.04.47.12.605a.632.632 0 0 0 .31.272c.129.046.269.07.42.07.111 0 .208-.008.291-.024.083-.015.147-.027.194-.037l.249 1.14a2.686 2.686 0 0 1-.896.148 2.426 2.426 0 0 1-1.015-.194 1.743 1.743 0 0 1-.762-.627c-.194-.284-.291-.639-.291-1.067V44.21Zm4.362 8.79v-7.09h1.38V53h-1.38Zm.697-8.185a.878.878 0 0 1-.619-.24.782.782 0 0 1-.254-.582c0-.227.085-.421.254-.581a.869.869 0 0 1 .619-.245.85.85 0 0 1 .614.245c.172.16.258.354.258.581a.775.775 0 0 1-.258.582.862.862 0 0 1-.614.24Zm5.85 1.094v1.108h-3.873v-1.108h3.873Zm-2.835-1.699h1.381v6.708c0 .268.04.47.12.605.08.132.183.223.309.272.129.046.269.07.42.07.111 0 .208-.008.291-.024.083-.015.148-.027.194-.037l.249 1.14a2.702 2.702 0 0 1-.895.148 2.428 2.428 0 0 1-1.016-.194 1.743 1.743 0 0 1-.762-.627c-.194-.284-.291-.639-.291-1.067V44.21Zm7.272 8.933c-.664 0-1.244-.152-1.74-.457a3.086 3.086 0 0 1-1.154-1.279c-.274-.547-.411-1.188-.411-1.92 0-.736.137-1.379.411-1.93a3.08 3.08 0 0 1 1.154-1.283c.496-.305 1.076-.457 1.74-.457.665 0 1.245.152 1.741.457.495.304.88.732 1.154 1.283.274.551.411 1.194.411 1.93 0 .732-.137 1.372-.411 1.92a3.086 3.086 0 0 1-1.154 1.28c-.496.304-1.076.456-1.741.456Zm.005-1.159c.431 0 .788-.114 1.071-.341a2 2 0 0 0 .628-.91c.138-.378.208-.795.208-1.25 0-.453-.07-.869-.208-1.247a2.029 2.029 0 0 0-.628-.919c-.283-.23-.64-.346-1.071-.346-.434 0-.794.115-1.08.346a2.07 2.07 0 0 0-.633.919 3.687 3.687 0 0 0-.203 1.246c0 .456.068.873.203 1.251.139.379.35.682.633.91.286.227.646.341 1.08.341ZM226.858 53v-7.09h1.334v1.126h.074a1.71 1.71 0 0 1 .683-.9 1.955 1.955 0 0 1 1.117-.333 5.978 5.978 0 0 1 .586.032v1.32a2.478 2.478 0 0 0-.295-.05 2.816 2.816 0 0 0-.425-.033c-.326 0-.617.07-.872.208a1.534 1.534 0 0 0-.6.568c-.148.24-.222.514-.222.822V53h-1.38Zm11.702.13c-.634 0-1.2-.11-1.698-.329a2.887 2.887 0 0 1-1.178-.909 2.411 2.411 0 0 1-.461-1.357h1.449c.019.28.113.523.282.73.172.202.397.36.674.47.277.11.585.166.923.166.373 0 .702-.064.988-.194.289-.129.516-.309.679-.54.163-.234.244-.503.244-.808a1.45 1.45 0 0 0-.244-.835 1.595 1.595 0 0 0-.707-.573c-.307-.138-.68-.207-1.117-.207h-.798V47.58h.798c.351 0 .659-.063.923-.189a1.51 1.51 0 0 0 .628-.526c.151-.228.227-.494.227-.799a1.43 1.43 0 0 0-.199-.762 1.332 1.332 0 0 0-.554-.512 1.8 1.8 0 0 0-.84-.185c-.308 0-.596.057-.863.171-.265.11-.481.27-.647.48a1.24 1.24 0 0 0-.268.743h-1.38c.016-.51.166-.96.453-1.348.289-.387.671-.69 1.144-.909a3.728 3.728 0 0 1 1.579-.328c.607 0 1.13.119 1.57.356.443.234.785.546 1.025.937.243.39.363.819.36 1.283.003.53-.145.979-.443 1.348-.296.37-.69.617-1.182.743v.074c.628.096 1.114.345 1.459.748.347.403.52.904.517 1.5.003.52-.142.987-.434 1.4a2.96 2.96 0 0 1-1.187.973c-.501.234-1.075.351-1.722.351Z\" fill=\"#000\"/></g><defs><clipPath id=\"a\"><path d=\"M0 15C0 6.716 6.716 0 15 0h226c8.284 0 15 6.716 15 15v63H0V15Z\" fill=\"#fff\"/></clipPath></defs></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mqjthp\",\"data-border\":true,\"data-framer-name\":\"Frame 427318637\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12nl445\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n0ng9y\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Extra fraud protection from hired employees (future fraud prevention) \"})}),className:\"framer-1ehlo7r\",\"data-framer-name\":\"Extra fraud protection from hired employees (future fraud prevention)\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-pw248t\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:52,intrinsicWidth:256,svg:'<svg width=\"256\" height=\"52\" viewBox=\"0 0 256 52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"51\" transform=\"translate(0 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 25.5116L30.3891 29.4007L38.1673 21.6226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(64 0.0117188)\" fill=\"#F4E6E6\"/>\\n<rect x=\"80\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M100.333 29.8449L91.6665 21.1782\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M100.333 21.1782L91.6665 29.8449\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(128 0.0117188)\" fill=\"#F4E6E6\"/>\\n<rect x=\"144\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M164.333 29.8449L155.667 21.1782\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M164.333 21.1782L155.667 29.8449\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(192 0.0117188)\" fill=\"#F4E6E6\"/>\\n<rect x=\"208\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M228.333 29.8449L219.667 21.1782\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M228.333 21.1782L219.667 29.8449\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11p2xq1\",\"data-border\":true,\"data-framer-name\":\"Frame 427318625\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nfb74b\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-oq6dj5\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Protection against resume falsification \"})}),className:\"framer-18danab\",\"data-framer-name\":\"Protection against resume falsification\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1h129gh\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:52,intrinsicWidth:256,svg:'<svg width=\"256\" height=\"52\" viewBox=\"0 0 256 52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"51\" transform=\"translate(0 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 25.5116L30.3891 29.4007L38.1673 21.6226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(64 0.0117188)\" fill=\"#F4E6E6\"/>\\n<rect x=\"80\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M100.333 29.8449L91.6665 21.1782\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M100.333 21.1782L91.6665 29.8449\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(128 0.0117188)\" fill=\"#F4E6E6\"/>\\n<rect x=\"144\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M164.333 29.8449L155.667 21.1782\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M164.333 21.1782L155.667 29.8449\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(192 0.0117188)\" fill=\"#F4E6E6\"/>\\n<rect x=\"208\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M228.333 29.8449L219.667 21.1782\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M228.333 21.1782L219.667 29.8449\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e52gwj\",\"data-border\":true,\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-81e0n6\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mhyhso\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Candidate verification before starting the background check\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"(KYC, biometric ID) \"})]}),className:\"framer-i6hxwf\",\"data-framer-name\":\"Candidate verification before starting the background check (KYC, biometric ID)\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-43zn6s\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:71,intrinsicWidth:256,svg:'<svg width=\"256\" height=\"71\" viewBox=\"0 0 256 71\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"70\" transform=\"translate(0 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"19.0117\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 35.0116L30.3891 38.9007L38.1673 31.1226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"70\" transform=\"translate(64 0.0117188)\" fill=\"#F4E6E6\"/>\\n<rect x=\"80\" y=\"19.0117\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M100.333 39.3449L91.6665 30.6782\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M100.333 30.6782L91.6665 39.3449\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"70\" transform=\"translate(128 0.0117188)\" fill=\"#F4E6E6\"/>\\n<rect x=\"144\" y=\"19.0117\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M164.333 39.3449L155.667 30.6782\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M164.333 30.6782L155.667 39.3449\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"70\" transform=\"translate(192 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"208\" y=\"19.0117\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M218.5 35.0116L222.389 38.9007L230.167 31.1226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r639jx\",\"data-border\":true,\"data-framer-name\":\"Frame 427318627\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fdm8bb\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u2xxwa\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Medical professional score\"})}),className:\"framer-1ni8vkz\",\"data-framer-name\":\"Medical Check\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11u3ag6\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:52,intrinsicWidth:256,svg:'<svg width=\"256\" height=\"52\" viewBox=\"0 0 256 52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"51\" transform=\"translate(0 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 25.5116L30.3891 29.4007L38.1673 21.6226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(64 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"80\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M90.5 25.5116L94.3891 29.4007L102.167 21.6226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"80\" transform=\"translate(128 -14.4883)\" fill=\"#F4E6E6\"/>\\n<rect x=\"144\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M164.333 29.8449L155.667 21.1782\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M164.333 21.1782L155.667 29.8449\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"80\" transform=\"translate(192 -14.4883)\" fill=\"#F4E6E6\"/>\\n<rect x=\"208\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M228.333 29.8449L219.667 21.1782\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M228.333 21.1782L219.667 29.8449\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hzo8uy\",\"data-border\":true,\"data-framer-name\":\"Frame 427318628\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wubwzl\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-oqjnhu\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Credit Check \"})}),className:\"framer-odwtkw\",\"data-framer-name\":\"Credit Check\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11m593q\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:52,intrinsicWidth:256,svg:'<svg width=\"256\" height=\"52\" viewBox=\"0 0 256 52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"51\" transform=\"translate(0 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 25.5116L30.3891 29.4007L38.1673 21.6226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(64 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"80\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M90.5 25.5116L94.3891 29.4007L102.167 21.6226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(128 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"144\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M154.5 25.5116L158.389 29.4007L166.167 21.6226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(192 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"208\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M218.5 25.5116L222.389 29.4007L230.167 21.6226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qazho8\",\"data-border\":true,\"data-framer-name\":\"Frame 427318629\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17w65j8\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9tg2et\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Federal Criminal Search \"})}),className:\"framer-1p91ofz\",\"data-framer-name\":\"Federal Criminal Search\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11cudku\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:52,intrinsicWidth:256,svg:'<svg width=\"256\" height=\"52\" viewBox=\"0 0 256 52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"51\" transform=\"translate(0 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 25.5116L30.3891 29.4007L38.1673 21.6226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(64 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"80\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M90.5 25.5116L94.3891 29.4007L102.167 21.6226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"80\" transform=\"translate(128 -14.4883)\" fill=\"#F4E6E6\"/>\\n<rect x=\"144\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M164.333 29.8449L155.667 21.1782\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M164.333 21.1782L155.667 29.8449\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"80\" transform=\"translate(192 -14.4883)\" fill=\"#F4E6E6\"/>\\n<rect x=\"208\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M228.333 29.8449L219.667 21.1782\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M228.333 21.1782L219.667 29.8449\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h5e3iy\",\"data-border\":true,\"data-framer-name\":\"Frame 427318630\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12cgsf\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ow0wgx\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"County criminal search \"})}),className:\"framer-151v61r\",\"data-framer-name\":\"County criminal search\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-q5fhpf\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:52,intrinsicWidth:256,svg:'<svg width=\"256\" height=\"52\" viewBox=\"0 0 256 52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"51\" transform=\"translate(0 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 25.5116L30.3891 29.4007L38.1673 21.6226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(64 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"80\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M90.5 25.5116L94.3891 29.4007L102.167 21.6226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(128 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"144\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M154.5 25.5116L158.389 29.4007L166.167 21.6226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(192 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"208\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M218.5 25.5116L222.389 29.4007L230.167 21.6226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vul9ts\",\"data-border\":true,\"data-framer-name\":\"Frame 427318631\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s7ife8\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16s9333\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"SSN trace \"})}),className:\"framer-1f0znls\",\"data-framer-name\":\"SSN trace\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-o14azg\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:52,intrinsicWidth:256,svg:'<svg width=\"256\" height=\"52\" viewBox=\"0 0 256 52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"51\" transform=\"translate(0 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 25.5116L30.3891 29.4007L38.1673 21.6226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(64 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"80\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M90.5 25.5116L94.3891 29.4007L102.167 21.6226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(128 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"144\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M154.5 25.5116L158.389 29.4007L166.167 21.6226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(192 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"208\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M218.5 25.5116L222.389 29.4007L230.167 21.6226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-59gr7a\",\"data-border\":true,\"data-framer-name\":\"Frame 427318636\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-euzmy7\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nhwn19\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Sex offender registry \"})}),className:\"framer-w6zthg\",\"data-framer-name\":\"Sex offenser registry\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vpbnry\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:52,intrinsicWidth:256,svg:'<svg width=\"256\" height=\"52\" viewBox=\"0 0 256 52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"51\" transform=\"translate(0 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 25.5116L30.3891 29.4007L38.1673 21.6226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(64 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"80\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M90.5 25.5116L94.3891 29.4007L102.167 21.6226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(128 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"144\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M154.5 25.5116L158.389 29.4007L166.167 21.6226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(192 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"208\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M218.5 25.5116L222.389 29.4007L230.167 21.6226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ol69d0\",\"data-border\":true,\"data-framer-name\":\"Frame 427318632\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rmy21j\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5685fr\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Recommendations ONLY  from verified employees \"})}),className:\"framer-1jqj4nr\",\"data-framer-name\":\"Recommendations ONLY from verified employees\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-il553a\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:52,intrinsicWidth:256,svg:'<svg width=\"256\" height=\"52\" viewBox=\"0 0 256 52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"51\" transform=\"translate(0 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 25.5116L30.3891 29.4007L38.1673 21.6226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(64 0.0117188)\" fill=\"#F4E6E6\"/>\\n<rect x=\"80\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M100.333 29.8449L91.6665 21.1782\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M100.333 21.1782L91.6665 29.8449\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(128 0.0117188)\" fill=\"#F4E6E6\"/>\\n<rect x=\"144\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M164.333 29.8449L155.667 21.1782\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M164.333 21.1782L155.667 29.8449\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(192 0.0117188)\" fill=\"#F4E6E6\"/>\\n<rect x=\"208\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M228.333 29.8449L219.667 21.1782\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M228.333 21.1782L219.667 29.8449\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mi2ijk\",\"data-border\":true,\"data-framer-name\":\"Frame 427318633\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a5dxq3\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u0x343\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"24/7 online access to up-to-date information and dashboard with\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"deep dive analytics \"})]}),className:\"framer-9tboz8\",\"data-framer-name\":\"24/7 online access to up-to-date information and dashboard with deep dive analytics\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-p7j15y\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:71,intrinsicWidth:256,svg:'<svg width=\"256\" height=\"71\" viewBox=\"0 0 256 71\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"70\" transform=\"translate(0 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"19.0117\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 35.0116L30.3891 38.9007L38.1673 31.1226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"70\" transform=\"translate(64 0.0117188)\" fill=\"#F4E6E6\"/>\\n<rect x=\"80\" y=\"19.0117\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M100.333 39.3449L91.6665 30.6782\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M100.333 30.6782L91.6665 39.3449\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"70\" transform=\"translate(128 0.0117188)\" fill=\"#F4E6E6\"/>\\n<rect x=\"144\" y=\"19.0117\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M164.333 39.3449L155.667 30.6782\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M164.333 30.6782L155.667 39.3449\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"70\" transform=\"translate(192 0.0117188)\" fill=\"#F4E6E6\"/>\\n<rect x=\"208\" y=\"19.0117\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M228.333 39.3449L219.667 30.6782\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M228.333 30.6782L219.667 39.3449\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1czo0md\",\"data-border\":true,\"data-framer-name\":\"Frame 427318634\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4rspp1\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-t8f3mq\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Possibility of issue resolution with an employee without fear\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"of being biased by the employer \"})]}),className:\"framer-ksgmq5\",\"data-framer-name\":\"Possibility of issue resolution with an employee without fear of being biased by the employer\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-zwcnbj\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:71,intrinsicWidth:256,svg:'<svg width=\"256\" height=\"71\" viewBox=\"0 0 256 71\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"70\" transform=\"translate(0 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"19.0117\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 35.0116L30.3891 38.9007L38.1673 31.1226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"70\" transform=\"translate(64 0.0117188)\" fill=\"#F4E6E6\"/>\\n<rect x=\"80\" y=\"19.0117\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M100.333 39.3449L91.6665 30.6782\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M100.333 30.6782L91.6665 39.3449\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"70\" transform=\"translate(128 0.0117188)\" fill=\"#F4E6E6\"/>\\n<rect x=\"144\" y=\"19.0117\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M164.333 39.3449L155.667 30.6782\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M164.333 30.6782L155.667 39.3449\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"70\" transform=\"translate(192 0.0117188)\" fill=\"#F4E6E6\"/>\\n<rect x=\"208\" y=\"19.0117\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M228.333 39.3449L219.667 30.6782\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M228.333 30.6782L219.667 39.3449\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-egff2n\",\"data-border\":true,\"data-framer-name\":\"Frame 427318635\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15oq7rk\",\"data-framer-name\":\"Frame 427318633\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wp97ok\",\"data-framer-name\":\"Frame 427318626\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Online monitoring and real time alerts for existing employees\"})}),className:\"framer-j33bue\",\"data-framer-name\":\"Online monitoring and real time alerts for existing employees\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18tuybm\",\"data-framer-name\":\"Frame 427318629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:52,intrinsicWidth:256,svg:'<svg width=\"256\" height=\"52\" viewBox=\"0 0 256 52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"51\" transform=\"translate(0 0.0117188)\" fill=\"#E1F3F3\"/>\\n<rect x=\"16\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#007863\"/>\\n<path d=\"M26.5 25.5116L30.3891 29.4007L38.1673 21.6226\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(64 0.0117188)\" fill=\"#F4E6E6\"/>\\n<rect x=\"80\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M100.333 29.8449L91.6665 21.1782\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M100.333 21.1782L91.6665 29.8449\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(128 0.0117188)\" fill=\"#F4E6E6\"/>\\n<rect x=\"144\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M164.333 29.8449L155.667 21.1782\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M164.333 21.1782L155.667 29.8449\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<rect width=\"64\" height=\"51\" transform=\"translate(192 0.0117188)\" fill=\"#F4E6E6\"/>\\n<rect x=\"208\" y=\"9.51172\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DB634B\"/>\\n<path d=\"M228.333 29.8449L219.667 21.1782\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M228.333 21.1782L219.667 29.8449\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1233dag hidden-72rtr7 hidden-l241wy\",\"data-framer-name\":\"Frame 427318667\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay13=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s48pci\",\"data-framer-name\":\"Frame 427318279\",id:\"s48pci\",onTap:onTap3bnx0g({overlay:overlay13}),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get in touch\"})}),className:\"framer-1fzgbk\",\"data-framer-name\":\"Get started\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay13.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-ufs3a7\"),\"data-framer-portal-id\":\"s48pci\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay13.hide()},\"IxCkrI1qa\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"474px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-zlhfqt-container\"),\"data-framer-portal-id\":\"s48pci\",nodeId:\"ZFdZvR0Zo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Form,{height:\"100%\",id:\"ZFdZvR0Zo\",layoutId:\"ZFdZvR0Zo\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-x8l9fp hidden-72rtr7 hidden-l241wy\",\"data-framer-name\":\"Frame 427318311\",id:elementId10,ref:ref11,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-srjm39\",\"data-framer-name\":\"Frame 427318704\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-w3t4z4\",\"data-framer-name\":\"Frame 427318350\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\"},children:\"Pricing\"})}),className:\"framer-eewlzs\",\"data-framer-name\":\"Tariffs\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yjogcz\",\"data-framer-name\":\"Frame 427318412\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-phfuwg-container\",isModuleExternal:true,nodeId:\"ECFPkK2Hk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div style=\"font-size:20px;gap:15px;display:flex\">Additional third-party fees may apply.   <a style=\"text-decoration:none;\" href=\"/fees\">Learn more about passthrough fees.</a></div>',id:\"ECFPkK2Hk\",layoutId:\"ECFPkK2Hk\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v34ton\",\"data-framer-name\":\"Frame 427318426\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jz9q28\",\"data-framer-name\":\"Frame 427318427\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\"},children:\"One-time verification\"})}),className:\"framer-6xoh1a\",\"data-framer-name\":\"One-time verification\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a1wmxu\",\"data-framer-name\":\"Frame 427318579\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/profid-theprofid/30min\",motionChild:true,nodeId:\"i2vqFnqjn\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-oi8kh framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Frame 427318414\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, rgb(86, 63, 255))\"},children:\"Talk to Sales\"})}),className:\"framer-cf5q1q\",\"data-framer-name\":\"Talk to Sales\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay14=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12i1gxs\",\"data-framer-name\":\"Frame 427318415\",id:\"12i1gxs\",onTap:onTap3bnx0g({overlay:overlay14}),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get in touch\"})}),className:\"framer-uai4uj\",\"data-framer-name\":\"Get Started\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay14.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-ihhhfe\"),\"data-framer-portal-id\":\"12i1gxs\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay14.hide()},\"KefL12Eia\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"474px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-ci77lm-container\"),\"data-framer-portal-id\":\"12i1gxs\",nodeId:\"UJ40GduM1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Form,{height:\"100%\",id:\"UJ40GduM1\",layoutId:\"UJ40GduM1\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5ugpae\",\"data-framer-name\":\"Frame 427318403\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cnjaie\",\"data-border\":true,\"data-framer-name\":\"Frame 427318346\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lwg56l\",\"data-framer-name\":\"Frame 427318348\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qvh46a\",\"data-framer-name\":\"Frame 427318302\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yc7krx\",\"data-framer-name\":\"Frame 427318300\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-qnqlbh\",\"data-framer-name\":\"Media / Play\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-vhelci\",\"data-framer-name\":\"Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 17\"><path d=\"M 11.752 9.514 C 12.346 9.118 12.346 8.245 11.752 7.849 L 2.555 1.718 C 1.89 1.275 1 1.751 1 2.55 L 1 14.813 C 1 15.612 1.89 16.088 2.555 15.645 Z\" fill=\"transparent\" stroke-width=\"1.87\" stroke=\"var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, rgb(86, 63, 255)) /* {&quot;name&quot;:&quot;blue&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11987776452,withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\"},children:\"Basic\"})}),className:\"framer-62r9pp\",\"data-framer-name\":\"Basic\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iejc7y\",\"data-framer-name\":\"Frame 427318376\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Sex Offender Registry\"})}),className:\"framer-1bu2641\",\"data-framer-name\":\"Sex Offender Registry\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Global Watchlist Records\"})}),className:\"framer-10pundw\",\"data-framer-name\":\"Global Watchlist Records\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"National Criminal Records\"})}),className:\"framer-10458eh\",\"data-framer-name\":\"National Criminal Records\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wwk02j\",\"data-border\":true,\"data-framer-name\":\"Frame 427318350\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-12xqof\",\"data-framer-name\":\"Frame 427318424\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d2xd1o\",\"data-framer-name\":\"Frame 427318425\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\"},children:\"$ 19.99 \"})}),className:\"framer-oi8dcn\",\"data-framer-name\":\"$ 9.9\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Price\"})}),className:\"framer-1mxtkpw\",\"data-framer-name\":\"Price\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e58jso\",\"data-border\":true,\"data-framer-name\":\"Frame 427318408\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fu82pz\",\"data-framer-name\":\"Frame 427318348\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tmzfrj\",\"data-framer-name\":\"Frame 427318302\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ok3la3\",\"data-framer-name\":\"Frame 427318300\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tuisnj\",\"data-framer-name\":\"Basic / Lightning\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-13dxx7j\",\"data-framer-name\":\"Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21 23\"><path d=\"M 11.667 1.682 L 1.667 13.682 L 10.667 13.682 L 9.667 21.682 L 19.667 9.682 L 10.667 9.682 Z\" fill=\"transparent\" stroke-width=\"1.87\" stroke=\"var(--token-655c4d75-f6f5-49e7-9be1-38155d2821e9, rgb(252, 105, 31)) /* {&quot;name&quot;:&quot;Orange&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10030667707,withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-655c4d75-f6f5-49e7-9be1-38155d2821e9, rgb(252, 105, 31))\"},children:\"Essential\"})}),className:\"framer-1e13x21\",\"data-framer-name\":\"Essential\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-opsyxd\",\"data-framer-name\":\"Frame 427318376\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Sex Offender Registry\"})}),className:\"framer-17cywry\",\"data-framer-name\":\"Sex Offender Registry\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Global Watchlist Records\"})}),className:\"framer-fyt0du\",\"data-framer-name\":\"Global Watchlist Records\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"National Criminal Records\"})}),className:\"framer-1mxxda1\",\"data-framer-name\":\"National Criminal Records\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"County Criminal Search (1)\"})}),className:\"framer-gjxfwo\",\"data-framer-name\":\"Country Criminal Search (1)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Education Verification (Highest level)\"})}),className:\"framer-griye5\",\"data-framer-name\":\"Education Verification (Highest level)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Employment Verification (Current)\"})}),className:\"framer-e6jamx\",\"data-framer-name\":\"Employment Verification (Current)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"EPASS Score (limited)\"})}),className:\"framer-1cbcd4\",\"data-framer-name\":\"EPASS Score (limited)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sjoo9h\",\"data-border\":true,\"data-framer-name\":\"Frame 427318350\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ai24np\",\"data-framer-name\":\"Frame 427318424\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6123zw\",\"data-framer-name\":\"Frame 427318425\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-655c4d75-f6f5-49e7-9be1-38155d2821e9, rgb(252, 105, 31))\"},children:\"$ 44.99\"})}),className:\"framer-1gaxo23\",\"data-framer-name\":\"$ 39.9\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--token-655c4d75-f6f5-49e7-9be1-38155d2821e9, rgb(252, 105, 31))\"},children:\"Price\"})}),className:\"framer-155wvkv\",\"data-framer-name\":\"Price\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15ou37x\",\"data-border\":true,\"data-framer-name\":\"Frame 427318410\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sn141x\",\"data-framer-name\":\"Frame 427318348\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dbah2u\",\"data-framer-name\":\"Frame 427318302\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-r5z9ny\",\"data-framer-name\":\"Frame 427318300\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jgwfmd\",\"data-framer-name\":\"Basic / Star\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1dcaneu\",\"data-framer-name\":\"Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21 20\"><path d=\"M 13.069 6.425 L 10.749 1.445 C 10.586 1.094 10.081 1.094 9.918 1.445 L 7.598 6.425 C 7.532 6.568 7.395 6.667 7.237 6.686 L 1.738 7.331 C 1.35 7.377 1.194 7.852 1.481 8.115 L 5.546 11.838 C 5.663 11.945 5.716 12.105 5.685 12.259 L 4.605 17.639 C 4.529 18.018 4.937 18.312 5.278 18.123 L 10.11 15.444 C 10.249 15.367 10.418 15.367 10.557 15.444 L 15.389 18.123 C 15.73 18.312 16.138 18.018 16.062 17.639 L 14.982 12.259 C 14.951 12.105 15.004 11.945 15.121 11.838 L 19.186 8.115 C 19.473 7.852 19.317 7.377 18.929 7.331 L 13.43 6.686 C 13.272 6.667 13.135 6.568 13.069 6.425 Z\" fill=\"transparent\" stroke-width=\"1.87\" stroke=\"var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, rgb(86, 63, 255)) /* {&quot;name&quot;:&quot;blue&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:8755544193,withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\"},children:\"Pro\"})}),className:\"framer-yjfx3k\",\"data-framer-name\":\"Pro\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l0y9t2\",\"data-framer-name\":\"Frame 427318376\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Sex Offender Registry\"})}),className:\"framer-6u129\",\"data-framer-name\":\"Sex Offender Registry\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Global Watchlist Records\"})}),className:\"framer-1qwg72e\",\"data-framer-name\":\"Global Watchlist Records\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"National Criminal Records\"})}),className:\"framer-1fjxg0m\",\"data-framer-name\":\"National Criminal Records\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"County Criminal Search (1)\"})}),className:\"framer-120onpk\",\"data-framer-name\":\"Country Criminal Search (1)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Education Verification (Highest level)\"})}),className:\"framer-wgvxdu\",\"data-framer-name\":\"Education Verification (Highest level)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Employment Verification (Current)\"})}),className:\"framer-153qg0b\",\"data-framer-name\":\"Employment Verification (Current)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Medical professional score\"})}),className:\"framer-98flcs\",\"data-framer-name\":\"Medical Check\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Federal Criminal Search\"})}),className:\"framer-l938m2\",\"data-framer-name\":\"Federal Criminal Search\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Credit Check\"})}),className:\"framer-1gakdr8\",\"data-framer-name\":\"Credit Check\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"EPASS Score (limited)\"})}),className:\"framer-nywsw3\",\"data-framer-name\":\"EPASS Score (limited)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b6bc8r\",\"data-border\":true,\"data-framer-name\":\"Frame 427318350\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10cpo7j\",\"data-framer-name\":\"Frame 427318424\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hz13ce\",\"data-framer-name\":\"Frame 427318425\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\"},children:\"$ 64.99\"})}),className:\"framer-38e3wr\",\"data-framer-name\":\"$ 59.9\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"Price\"})}),className:\"framer-1r6by13\",\"data-framer-name\":\"Price\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]})]})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dzy8qa hidden-tf1r54\",\"data-framer-name\":\"Frame 427318427\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t3m91c\",\"data-framer-name\":\"Frame 427318427\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\"},children:\"Subscription\"})}),className:\"framer-13lla12\",\"data-framer-name\":\"Subscription\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18yt1mz\",\"data-framer-name\":\"Frame 427318579\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/po-epasscheck/30min?month=2024-06\",motionChild:true,nodeId:\"NcsFtc_gS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1szdfac framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Frame 427318414\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(5, 70, 240)\"},children:\"Talk to Sales\"})}),className:\"framer-1j3c6gx\",\"data-framer-name\":\"Talk to Sales\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16tamux\",\"data-framer-name\":\"Frame 427318415\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get Started\"})}),className:\"framer-5sljxc\",\"data-framer-name\":\"Get Started\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dbd3dc\",\"data-framer-name\":\"Frame 427318431\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wyhf15\",\"data-framer-name\":\"Frame 427318302\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1km5800\",\"data-framer-name\":\"Frame 427318428\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jw35mh\",\"data-framer-name\":\"Frame 427318300\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7rmyn6\",\"data-framer-name\":\"Media / Play\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1kholoo\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"18\" viewBox=\"-1 -1 14 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.7519 8.84363C11.3457 8.44781 11.3457 7.57536 10.7519 7.17953L1.5547 1.04805C0.890145 0.605013 0 1.0814 0 1.8801V14.1431C0 14.9418 0.890145 15.4182 1.5547 14.9751L10.7519 8.84363Z\" stroke=\"#0546F0\" stroke-width=\"1.87\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\"},children:\"Basic\"})}),className:\"framer-rmsc30\",\"data-framer-name\":\"Basic\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tltvyg\",\"data-framer-name\":\"Frame 427318429\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g0bauu\",\"data-framer-name\":\"Frame 427318425\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\"},children:\"$ 34.9\"})}),className:\"framer-7wg1qf\",\"data-framer-name\":\"$ 34.9\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\"},children:\"Save 14%\"})}),className:\"framer-oys5g9\",\"data-framer-name\":\"Save 14%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"1 Check per quarter (4 annual)\"})}),className:\"framer-f4lk1e\",\"data-framer-name\":\"1 Check per quarter (4 annual)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-72lmgx\",\"data-framer-name\":\"Frame 427318430\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oahkhv\",\"data-framer-name\":\"Frame 427318425\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\"},children:\"$ 99.9\"})}),className:\"framer-14tykkb\",\"data-framer-name\":\"$ 99.9\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\"},children:\"Save 17%\"})}),className:\"framer-1gh3pa0\",\"data-framer-name\":\"Save 17%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"1 Monthly check (12 annual)\"})}),className:\"framer-132oa1a\",\"data-framer-name\":\"1 Monthly check (12 annual)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x40tf4\",\"data-border\":true,\"data-framer-name\":\"Frame 427318428\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-465khb\",\"data-framer-name\":\"Frame 427318428\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-s04dhx\",\"data-framer-name\":\"Frame 427318301\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o9zjgb\",\"data-framer-name\":\"Basic / Lightning\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ieq0f8\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"23\" viewBox=\"-1 -1 20 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10 0.0117188L0 12.0117H9L8 20.0117L18 8.01172H9L10 0.0117188Z\" stroke=\"#0546F0\" stroke-width=\"1.87\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, rgb(4, 70, 242))\"},children:\"Essential\"})}),className:\"framer-1cnmo8h\",\"data-framer-name\":\"Essential\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6drhb8\",\"data-framer-name\":\"Frame 427318429\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b1rhvl\",\"data-framer-name\":\"Frame 427318425\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, rgb(4, 70, 242))\"},children:\"$ 96.9\"})}),className:\"framer-tmcd7j\",\"data-framer-name\":\"$ 96.9\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, rgb(4, 70, 242))\"},children:\"Save 38%\"})}),className:\"framer-1vlv1ul\",\"data-framer-name\":\"Save 38%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"1 Check per quarter (4 annual)\"})}),className:\"framer-llr5e1\",\"data-framer-name\":\"1 Check per quarter (4 annual)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12idpq1\",\"data-framer-name\":\"Frame 427318430\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tszmdh\",\"data-framer-name\":\"Frame 427318425\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(5, 70, 240)\"},children:\"$ 248.9\"})}),className:\"framer-z04uj1\",\"data-framer-name\":\"$ 248.9\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(5, 70, 240)\"},children:\"Save 47%\"})}),className:\"framer-4e96h4\",\"data-framer-name\":\"Save 47%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"1 Monthly check (12 annual)\"})}),className:\"framer-1wc3hs3\",\"data-framer-name\":\"1 Monthly check (12 annual)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11i8k4d\",\"data-framer-name\":\"Frame 427318429\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sz8ua4\",\"data-framer-name\":\"Frame 427318428\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jy3eya\",\"data-framer-name\":\"Frame 427318301\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1um3gjj\",\"data-framer-name\":\"Basic / Star\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1hs0nfa\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"-1 -1 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.735 5.75523L9.41582 0.775302C9.25215 0.423857 8.74785 0.423858 8.58418 0.775303L6.26501 5.75523C6.1983 5.89846 6.06125 5.99709 5.9031 6.01566L0.404567 6.66137C0.0165227 6.70694 -0.139317 7.18198 0.147574 7.44476L4.21278 11.1682C4.3297 11.2753 4.38205 11.4349 4.35102 11.5896L3.27191 16.9686C3.19575 17.3482 3.60375 17.6418 3.94472 17.4528L8.77633 14.7741C8.9153 14.697 9.0847 14.697 9.22367 14.7741L14.0553 17.4528C14.3963 17.6418 14.8042 17.3482 14.7281 16.9686L13.649 11.5896C13.6179 11.4349 13.6703 11.2753 13.7872 11.1682L17.8524 7.44476C18.1393 7.18198 17.9835 6.70694 17.5954 6.66137L12.0969 6.01566C11.9388 5.99709 11.8017 5.89846 11.735 5.75523Z\" stroke=\"#0546F0\" stroke-width=\"1.87\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\"},children:\"Pro\"})}),className:\"framer-3360v3\",\"data-framer-name\":\"Pro\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ihslgc\",\"data-framer-name\":\"Frame 427318429\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zxukm6\",\"data-framer-name\":\"Frame 427318425\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\"},children:\"$ 146.9\"})}),className:\"framer-q2u1je\",\"data-framer-name\":\"$ 146.9\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\"},children:\"Save 38%\"})}),className:\"framer-1xo49wp\",\"data-framer-name\":\"Save 38%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"1 Check per quarter (4 annual)\"})}),className:\"framer-uzok28\",\"data-framer-name\":\"1 Check per quarter (4 annual)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pczzvp\",\"data-framer-name\":\"Frame 427318430\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pa2l76\",\"data-framer-name\":\"Frame 427318425\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\"},children:\"$ 378.9\"})}),className:\"framer-151gx3s\",\"data-framer-name\":\"$ 378.9\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\"},children:\"Save 47%\"})}),className:\"framer-dtff9o\",\"data-framer-name\":\"Save 47%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(111, 119, 128)\"},children:\"1 Monthly check (12 annual)\"})}),className:\"framer-5ccq1s\",\"data-framer-name\":\"1 Monthly check (12 annual)\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ym9vgg\",\"data-framer-name\":\"Frame 427318411\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fp7xpj\",\"data-framer-name\":\"Frame 427318675\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-elr923\",\"data-framer-name\":\"Frame 427318413\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dgbndt\",\"data-framer-name\":\"Frame 427318676\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tc4nwp\",\"data-framer-name\":\"Frame 427318677\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Additional options\"})}),className:\"framer-1ssl7o6\",\"data-framer-name\":\"Additional options\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"If you require a more customized solution, we can offer one. Just contact us.\"})}),className:\"framer-1mapfug\",\"data-framer-name\":\"We suggest choosing an option that will give you a complete picture of the candidate or client\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-opqgua\",\"data-framer-name\":\"Frame 427318579\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/profid-theprofid/30min\",motionChild:true,nodeId:\"uZ97XcP1r\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1bslid4 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Frame 427318414\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Talk to Sales\"})}),className:\"framer-1yyfttr\",\"data-framer-name\":\"Talk to Sales\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay15=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jwz122\",\"data-framer-name\":\"Frame 427318415\",id:\"1jwz122\",onTap:onTap3bnx0g({overlay:overlay15}),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, rgb(86, 63, 255))\"},children:\"Get in touch\"})}),className:\"framer-9pdjnu\",\"data-framer-name\":\"Get Started\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay15.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1wofr7y\"),\"data-framer-portal-id\":\"1jwz122\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay15.hide()},\"AssqKaxeO\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"474px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1kg48ky-container\"),\"data-framer-portal-id\":\"1jwz122\",nodeId:\"LpV2MVHV_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Form,{height:\"100%\",id:\"LpV2MVHV_\",layoutId:\"LpV2MVHV_\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})})]})]})})})})]})]})}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tvkrir hidden-72rtr7\",\"data-framer-name\":\"Pev\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ajifi5\",\"data-framer-name\":\"Frame 427318674\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-2i9zun\",\"data-framer-name\":\"Frame 427318594\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nlijr4\",\"data-framer-name\":\"Frame 427318665\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xqlr02\",\"data-framer-name\":\"Frame 427318664\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T0lvaDWzn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\"},children:\"Classical Background Check is outdated and does not work\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\"},children:\"Classical Background Check is outdated and does not work\"})}),className:\"framer-147jonn\",\"data-framer-name\":\"Classical Background Check is outdated and does not work\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Those who have passed background checks are responsible for stealing $4.7 trillion globally, with approximately $1.5 trillion of that occurring in the US.\"})})},T0lvaDWzn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Those who have passed background checks are responsible for stealing $4.7 trillion globally, with approximately $1.5 trillion of that occurring in the US.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Those who passed the background \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"check steal 4.7 trillion dollars, of which \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"about 1.5 trillion are in the US.\"})]}),className:\"framer-18kmayb\",\"data-framer-name\":\"Those who passed the background check steal 4.7 trillion dollars, of which about 1.5 trillion are in the US.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed5()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T0lvaDWzn:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1177,intrinsicWidth:2449,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17941.3+80+0+0+0+0+0+0+373.5),pixelHeight:1177,pixelWidth:2449,sizes:\"354px\",src:\"https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg\",srcSet:\"https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg 2449w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1177,intrinsicWidth:2449,pixelHeight:1177,pixelWidth:2449,sizes:\"354px\",src:\"https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg\",srcSet:\"https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg 2449w\"},className:\"framer-1yq52e0 hidden-tf1r54\",\"data-framer-name\":\"Group_310\"})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1177,intrinsicWidth:2449,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10984.4815+80+0+0+0+0+0+0+421.5),pixelHeight:1177,pixelWidth:2449,sizes:\"694px\",src:\"https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg\",srcSet:\"https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg 2449w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1177,intrinsicWidth:2449,pixelHeight:1177,pixelWidth:2449,src:\"https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg\",srcSet:\"https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/V5qJkhaJwFmvytlTtHDLlShFVgk.jpg 2449w\"},className:\"framer-1i85sch hidden-72rtr7 hidden-l241wy\",\"data-framer-name\":\"Group_310\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\"},children:\"is the GPD of India and Canada combined\"})}),className:\"framer-4s83j6\",\"data-framer-name\":\"is the GPD of India and Canada combined\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-6s0p59 hidden-72rtr7 hidden-l241wy\",\"data-framer-name\":\"Frame 427318477\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d4l9of\",\"data-framer-name\":\"Frame 427318493\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"PROFID is the best \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"practices combination of:\"})]}),className:\"framer-1bkngai\",\"data-framer-name\":\"EPASS is the best practices combination of:\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yx7iq6\",\"data-framer-name\":\"Frame 427318499\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-6ayw62\",\"data-framer-name\":\"Group 306\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:66,intrinsicWidth:65,svg:'<svg width=\"65\" height=\"66\" viewBox=\"0 0 65 66\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M54.3636 41.8754C53.9703 42.7665 53.853 43.755 54.0268 44.7135C54.2006 45.6719 54.6575 46.5563 55.3386 47.2526L55.5159 47.4299C56.0653 47.9787 56.5012 48.6304 56.7985 49.3477C57.0959 50.0651 57.249 50.834 57.249 51.6106C57.249 52.3871 57.0959 53.1561 56.7985 53.8734C56.5012 54.5908 56.0653 55.2425 55.5159 55.7913C54.9671 56.3407 54.3154 56.7765 53.5981 57.0739C52.8807 57.3713 52.1118 57.5243 51.3352 57.5243C50.5587 57.5243 49.7897 57.3713 49.0724 57.0739C48.355 56.7765 47.7033 56.3407 47.1545 55.7913L46.9773 55.614C46.2809 54.9329 45.3965 54.4759 44.4381 54.3022C43.4797 54.1284 42.4911 54.2457 41.6 54.639C40.7261 55.0135 39.9809 55.6354 39.4559 56.4281C38.931 57.2207 38.6492 58.1496 38.6455 59.1003V59.6026C38.6455 61.1698 38.0229 62.6728 36.9147 63.781C35.8065 64.8891 34.3035 65.5117 32.7364 65.5117C31.1692 65.5117 29.6662 64.8891 28.558 63.781C27.4498 62.6728 26.8273 61.1698 26.8273 59.6026V59.3367C26.8044 58.3588 26.4878 57.4103 25.9188 56.6147C25.3497 55.819 24.5544 55.213 23.6364 54.8753C22.7452 54.4821 21.7567 54.3647 20.7983 54.5385C19.8398 54.7123 18.9554 55.1692 18.2591 55.8503L18.0818 56.0276C17.533 56.577 16.8813 57.0129 16.164 57.3102C15.4466 57.6076 14.6777 57.7607 13.9011 57.7607C13.1246 57.7607 12.3557 57.6076 11.6383 57.3102C10.921 57.0129 10.2692 56.577 9.72045 56.0276C9.17105 55.4788 8.7352 54.8271 8.43783 54.1098C8.14046 53.3924 7.9874 52.6235 7.9874 51.8469C7.9874 51.0704 8.14046 50.3015 8.43783 49.5841C8.7352 48.8668 9.17105 48.215 9.72045 47.6663L9.89773 47.489C10.5789 46.7927 11.0358 45.9083 11.2096 44.9498C11.3833 43.9914 11.266 43.0029 10.8727 42.1117C10.4982 41.2379 9.87632 40.4926 9.08365 39.9676C8.29097 39.4427 7.3621 39.161 6.41136 39.1572H5.90909C4.3419 39.1572 2.8389 38.5346 1.73073 37.4264C0.622563 36.3183 0 34.8153 0 33.2481C0 31.6809 0.622563 30.1779 1.73073 29.0697C2.8389 27.9616 4.3419 27.339 5.90909 27.339H6.175C7.15294 27.3161 8.10138 26.9996 8.89702 26.4305C9.69266 25.8614 10.2987 25.0662 10.6364 24.1481C11.0297 23.2569 11.147 22.2684 10.9732 21.31C10.7994 20.3515 10.3425 19.4671 9.66136 18.7708L9.48409 18.5935C8.93468 18.0447 8.49884 17.393 8.20146 16.6757C7.90409 15.9583 7.75103 15.1894 7.75103 14.4129C7.75103 13.6363 7.90409 12.8674 8.20146 12.15C8.49884 11.4327 8.93468 10.781 9.48409 10.2322C10.0329 9.68277 10.6846 9.24692 11.4019 8.94955C12.1193 8.65218 12.8882 8.49911 13.6648 8.49911C14.4413 8.49911 15.2102 8.65218 15.9276 8.94955C16.645 9.24692 17.2967 9.68277 17.8455 10.2322L18.0227 10.4094C18.719 11.0906 19.6035 11.5475 20.5619 11.7213C21.5203 11.8951 22.5089 11.7777 23.4 11.3844H23.6364C24.5102 11.0099 25.2555 10.388 25.7805 9.59537C26.3054 8.80269 26.5871 7.87382 26.5909 6.92308V6.42081C26.5909 4.85362 27.2135 3.35062 28.3216 2.24245C29.4298 1.13428 30.9328 0.511719 32.5 0.511719C34.0672 0.511719 35.5702 1.13428 36.6784 2.24245C37.7865 3.35062 38.4091 4.85362 38.4091 6.42081V6.68672C38.4129 7.63745 38.6946 8.56633 39.2195 9.359C39.7445 10.1517 40.4898 10.7736 41.3636 11.1481C42.2548 11.5414 43.2433 11.6587 44.2017 11.4849C45.1602 11.3111 46.0446 10.8542 46.7409 10.1731L46.9182 9.99581C47.467 9.4464 48.1187 9.01055 48.836 8.71318C49.5534 8.41581 50.3223 8.26275 51.0989 8.26275C51.8754 8.26275 52.6443 8.41581 53.3617 8.71318C54.079 9.01055 54.7307 9.4464 55.2795 9.99581C55.8289 10.5446 56.2648 11.1963 56.5622 11.9137C56.8595 12.631 57.0126 13.3999 57.0126 14.1765C57.0126 14.953 56.8595 15.722 56.5622 16.4393C56.2648 17.1567 55.8289 17.8084 55.2795 18.3572L55.1023 18.5344C54.4211 19.2308 53.9642 20.1152 53.7904 21.0736C53.6166 22.0321 53.734 23.0206 54.1273 23.9117V24.1481C54.5018 25.0219 55.1237 25.7672 55.9163 26.2922C56.709 26.8171 57.6379 27.0988 58.5886 27.1026H59.0909C60.6581 27.1026 62.1611 27.7252 63.2693 28.8334C64.3774 29.9415 65 31.4445 65 33.0117C65 34.5789 64.3774 36.0819 63.2693 37.1901C62.1611 38.2982 60.6581 38.9208 59.0909 38.9208H58.825C57.8743 38.9246 56.9454 39.2063 56.1527 39.7313C55.36 40.2562 54.7382 41.0015 54.3636 41.8754Z\" fill=\"white\" stroke=\"#14181F\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 33.5117C14 29.5117 20.9 21.5117 32.5 21.5117C44.1 21.5117 51 29.5117 53 33.5117C50.1667 37.8451 42.1 46.5117 32.5 46.5117C22.9 46.5117 14.8333 37.8451 12 33.5117ZM32.5 40.0117C36.366 40.0117 39.5 36.8777 39.5 33.0117C39.5 29.1457 36.366 26.0117 32.5 26.0117C28.634 26.0117 25.5 29.1457 25.5 33.0117C25.5 36.8777 28.634 40.0117 32.5 40.0117Z\" fill=\"url(#paint0_linear_299_6966)\"/>\\n<path d=\"M39.5 33.0117C39.5 36.8777 36.366 40.0117 32.5 40.0117C28.634 40.0117 25.5 36.8777 25.5 33.0117C25.5 29.1457 28.634 26.0117 32.5 26.0117C36.366 26.0117 39.5 29.1457 39.5 33.0117Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 33.5117C14 29.5117 20.9 21.5117 32.5 21.5117C44.1 21.5117 51 29.5117 53 33.5117C50.1667 37.8451 42.1 46.5117 32.5 46.5117C22.9 46.5117 14.8333 37.8451 12 33.5117ZM32.5 40.0117C36.366 40.0117 39.5 36.8777 39.5 33.0117C39.5 29.1457 36.366 26.0117 32.5 26.0117C28.634 26.0117 25.5 29.1457 25.5 33.0117C25.5 36.8777 28.634 40.0117 32.5 40.0117Z\" stroke=\"#14181F\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M39.5 33.0117C39.5 36.8777 36.366 40.0117 32.5 40.0117C28.634 40.0117 25.5 36.8777 25.5 33.0117C25.5 29.1457 28.634 26.0117 32.5 26.0117C36.366 26.0117 39.5 29.1457 39.5 33.0117Z\" stroke=\"#14181F\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_299_6966\" x1=\"12.3154\" y1=\"24.0946\" x2=\"34.8534\" y2=\"57.0854\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1E61ED\"/>\\n<stop offset=\"1\" stop-color=\"#67ACF2\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Government Scoring Systems\"})}),className:\"framer-xjvxjz\",\"data-framer-name\":\"Government social scoring systems\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fcvnqe\",\"data-framer-name\":\"Frame 427318498\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-8qyet6\",\"data-framer-name\":\"Frame 427318494\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:75,intrinsicWidth:69,svg:'<svg width=\"69\" height=\"75\" viewBox=\"0 0 69 75\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M30.0154 0.219727L13.0186 17.1637V74.2197H68.5186V0.219727H30.0154Z\" fill=\"white\"/>\\n<path d=\"M30.4908 0.219727V17.6919H13.0186\" stroke=\"black\" stroke-width=\"1.11597\"/>\\n<path d=\"M28.918 67.7255L23.4365 64.6273L3.74641 35.8495L1.16795 32.081C0.368571 31.2816 -0.819083 29.2718 0.825362 27.6273L3.9087 25.5718C5.55314 24.4755 7.56302 26.4853 8.3624 27.6273L10.6704 31.0532L30.2883 60.1736L30.9867 66.2261L31.3161 69.081L28.918 67.7255Z\" fill=\"white\"/>\\n<path d=\"M28.918 48.22H53.9272M32.6865 55.757H50.1587M1.16795 32.081C0.368571 31.2816 -0.819083 29.2718 0.825362 27.6273C1.16796 27.3989 2.26426 26.6681 3.9087 25.5718C5.55315 24.4755 7.56302 26.4853 8.3624 27.6273M1.16795 32.081L8.3624 27.6273M1.16795 32.081L3.74641 35.8495M23.4365 64.6273L30.2883 60.1736M23.4365 64.6273L28.918 67.7255M23.4365 64.6273L3.74641 35.8495M30.2883 60.1736L30.9867 66.2261M30.2883 60.1736L10.6704 31.0532M28.918 67.7255L31.3161 69.081L30.9867 66.2261M28.918 67.7255C29.0409 67.1876 29.6269 66.1347 30.9867 66.2261M8.3624 27.6273L10.6704 31.0532M3.74641 35.8495L10.6704 31.0532M10.6704 38.2477L25.1494 59.4884\" stroke=\"black\" stroke-width=\"1.11597\"/>\\n<mask id=\"mask0_299_6971\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"32\" y=\"21\" width=\"20\" height=\"20\">\\n<circle cx=\"41.7645\" cy=\"30.9842\" r=\"9.37392\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</mask>\\n<g mask=\"url(#mask0_299_6971)\">\\n<circle cx=\"41.7645\" cy=\"30.9842\" r=\"9.37392\" fill=\"white\"/>\\n<circle cx=\"41.7645\" cy=\"30.9842\" r=\"9.37392\" fill=\"url(#paint0_linear_299_6971)\"/>\\n<circle cx=\"41.7645\" cy=\"30.9842\" r=\"9.37392\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M38.6396 27.4694C38.6396 25.9594 39.8637 24.7353 41.3737 24.7353C42.8836 24.7353 44.1077 25.9594 44.1077 27.4694V29.8128C44.1077 31.3228 42.8836 32.5469 41.3737 32.5469C39.8637 32.5469 38.6396 31.3228 38.6396 29.8128V27.4694Z\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M41.3741 32.9375C35.1248 32.9375 33.5625 38.1452 33.5625 40.7491H48.7951C48.9253 38.1452 47.6234 32.9375 41.3741 32.9375Z\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<circle cx=\"41.7645\" cy=\"30.9842\" r=\"9.37392\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_299_6971\" x1=\"32\" y1=\"24.3152\" x2=\"44.8142\" y2=\"43.108\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#0B4DEB\"/>\\n<stop offset=\"1\" stop-color=\"#76BCF3\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Social media \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"recommendations\"})]}),className:\"framer-1utpc89\",\"data-framer-name\":\"Social media reccomendations\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1waqlcf\",\"data-framer-name\":\"Frame 427318497\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Fraud prevention \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"software\"})]}),className:\"framer-2jwwpu\",\"data-framer-name\":\"Fraud prevention software\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1aw92vd\",\"data-framer-name\":\"Group 302\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:69,intrinsicWidth:81,svg:'<svg width=\"81\" height=\"69\" viewBox=\"0 0 81 69\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M23.2731 24.6463C23.6311 27.1526 25.8092 28.6743 26.8535 29.1218C27.4502 29.4202 28.6435 29.0323 28.6435 25.0939C28.6435 20.1708 27.3009 16.5904 32.6715 16.5904C33.4174 16.5904 35.1778 16.8589 36.2519 17.933C36.5503 17.4855 37.5051 16.5904 38.9372 16.5904C40.7275 16.5904 43.4128 17.933 43.8603 20.1708C43.7111 17.1871 41.5331 11.2197 34.0142 11.2197C26.4953 11.2197 23.7206 15.9936 23.2731 18.3806V24.6463Z\" fill=\"black\"/>\\n<path d=\"M64 63.2197C63 58.2197 52.5 46.1288 42.5177 46.1288C42.0398 46.0492 41.3069 45.774 40.7275 45.2079C42.6668 49.5429 46.4559 55.7008 46.0979 63.2197H64Z\" fill=\"white\"/>\\n<path d=\"M26.8535 29.1218C25.8092 28.6743 23.6311 27.1526 23.2731 24.6463C22.8256 24.0496 21.7514 23.3932 21.0353 25.5414C20.1402 28.2267 21.0353 30.4645 22.8256 31.8071C24.2577 32.8813 25.8091 32.5531 26.4058 32.2547V42.1008C26.4058 42.6447 26.2884 43.409 25.9582 44.1258C25.7791 44.5147 25.5373 44.8897 25.2176 45.2079C24.7186 47.9018 23.7203 51.7624 23.7203 63.2197H46.0979C46.4559 55.7008 42.6668 49.5429 40.7275 45.2079C40.2214 44.7136 39.8324 43.9974 39.8324 42.996C39.8324 40.3106 39.8324 39.4155 40.7275 38.5204C41.6226 37.6253 43.8603 37.1778 43.8603 32.2547V20.1708C43.4128 17.933 40.7275 16.5904 38.9372 16.5904C37.5051 16.5904 36.5503 17.4855 36.2519 17.933C35.1778 16.8589 33.4174 16.5904 32.6715 16.5904C27.3009 16.5904 28.6435 20.1708 28.6435 25.0939C28.6435 29.0323 27.4502 29.4202 26.8535 29.1218Z\" fill=\"white\"/>\\n<path d=\"M22.8256 46.1288C19.2449 46.1288 0 48.7197 0 63.2197H23.7203C23.7203 51.7624 24.7186 47.9018 25.2176 45.2079C24.6722 45.751 23.9 46.1288 22.8256 46.1288Z\" fill=\"white\"/>\\n<path d=\"M23.2731 24.6463C23.6311 27.1526 25.8092 28.6743 26.8535 29.1218C27.4502 29.4202 28.6435 29.0323 28.6435 25.0939C28.6435 20.1708 27.3009 16.5904 32.6715 16.5904C33.4174 16.5904 35.1778 16.8589 36.2519 17.933C36.5503 17.4855 37.5051 16.5904 38.9372 16.5904C40.7275 16.5904 43.4128 17.933 43.8603 20.1708M23.2731 24.6463C22.8256 24.0496 21.7514 23.3932 21.0353 25.5414C20.1402 28.2267 21.0353 30.4645 22.8256 31.8071C24.2577 32.8813 25.8091 32.5531 26.4058 32.2547V42.1008C26.4058 42.6447 26.2884 43.409 25.9582 44.1258M23.2731 24.6463V18.3806C23.7206 15.9936 26.4953 11.2197 34.0142 11.2197C41.533 11.2197 43.7111 17.1871 43.8603 20.1708M40.7275 38.5204C39.8324 39.4155 39.8324 40.3106 39.8324 42.996C39.8324 43.9974 40.2214 44.7136 40.7275 45.2079M40.7275 38.5204C41.6226 37.6253 43.8603 37.1778 43.8603 32.2547M40.7275 38.5204C39.3848 39.8631 35.2673 41.7428 29.5386 38.5204M43.8603 32.2547C43.8603 28.3162 43.8603 22.5577 43.8603 20.1708M43.8603 32.2547V20.1708M25.9582 44.1258L35.3568 53.2897L39.8324 44.7862M25.9582 44.1258C25.7791 44.5147 25.5373 44.8897 25.2176 45.2079M40.7275 45.2079C41.3069 45.774 42.0398 46.0492 42.5177 46.1288C52.5 46.1288 63 58.2197 64 63.2197H46.0979M40.7275 45.2079C42.6668 49.5429 46.4559 55.7008 46.0979 63.2197M46.0979 63.2197H23.7203M25.2176 45.2079C24.6722 45.751 23.9 46.1288 22.8256 46.1288C19.2449 46.1288 0 48.7197 0 63.2197H23.7203M25.2176 45.2079C24.7186 47.9018 23.7203 51.7624 23.7203 63.2197\" stroke=\"black\" stroke-width=\"0.895105\"/>\\n<rect x=\"58.5\" y=\"38.7197\" width=\"5\" height=\"7\" stroke=\"black\"/>\\n<rect x=\"55.5\" y=\"45.7197\" width=\"11\" height=\"22\" rx=\"1.5\" fill=\"white\" stroke=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M27 24.2197V27.2197C27.1667 28.7197 28.8 31.7197 34 31.7197C39.2 31.7197 41.1667 29.3864 41.5 28.2197C41.8088 29.3005 43.6907 31.3823 48.7357 31.6831C49.3794 31.7215 49.8585 31.1184 49.7108 30.4907L48.1814 23.9907C48.0751 23.539 47.672 23.2197 47.208 23.2197H28C27.4477 23.2197 27 23.6674 27 24.2197ZM35.5 28.7197C33.1 28.7197 32.5 26.5531 32.5 25.2197L35.5 25.7197C37.2649 25.7197 37.7319 26.3686 37.9319 26.9793C37.9829 27.1353 37.9804 27.3033 37.9457 27.4637C37.8141 28.0734 37.6137 28.7197 35.5 28.7197Z\" fill=\"url(#paint0_linear_299_6985)\"/>\\n<circle cx=\"61\" cy=\"20.2197\" r=\"19.5\" fill=\"white\" stroke=\"black\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_299_6985\" x1=\"30\" y1=\"23.2197\" x2=\"45.5\" y2=\"31.2197\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1058EC\"/>\\n<stop offset=\"1\" stop-color=\"#1050EB\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vybhfe\",\"data-framer-name\":\"Frame 427318496\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Background checks\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"services\"})]}),className:\"framer-3j1u0x\",\"data-framer-name\":\"Background checks services\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-gmwck9\",\"data-framer-name\":\"Group 304\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:77,intrinsicWidth:93,svg:'<svg width=\"93\" height=\"77\" viewBox=\"0 0 93 77\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"4.5\" y=\"3.71973\" width=\"44\" height=\"59\" stroke=\"black\"/>\\n<rect y=\"0.219727\" width=\"45\" height=\"60\" fill=\"white\"/>\\n<rect x=\"49.335\" y=\"49.8175\" width=\"5\" height=\"7\" transform=\"rotate(45 49.335 49.8175)\" fill=\"white\" stroke=\"black\"/>\\n<rect x=\"42.2637\" y=\"52.6466\" width=\"11\" height=\"22\" rx=\"1.5\" transform=\"rotate(45 42.2637 52.6466)\" fill=\"white\" stroke=\"black\"/>\\n<circle cx=\"64.1841\" cy=\"38.504\" r=\"19.5\" transform=\"rotate(45 64.1841 38.504)\" fill=\"white\" stroke=\"black\"/>\\n<path d=\"M7 8.71973H13M17.5 8.71973H39\" stroke=\"black\"/>\\n<path d=\"M7 13.2197H13M17.5 13.2197H39\" stroke=\"black\"/>\\n<path d=\"M7 17.2197H13M17.5 17.2197H39\" stroke=\"black\"/>\\n<path d=\"M7 21.2197H13M17.5 21.2197H39\" stroke=\"black\"/>\\n<path d=\"M7 25.2197H13M17.5 25.2197H39\" stroke=\"black\"/>\\n<path d=\"M57 37.7197L62 42.7197L71.5 33.2197\" stroke=\"#0546F0\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16hocus\",\"data-framer-name\":\"Frame 427318495\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Professional \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Networks\"})]}),className:\"framer-55qpr8\",\"data-framer-name\":\"Professional Networks\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1rrt07t\",\"data-framer-name\":\"Group 305\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:68,intrinsicWidth:69,svg:'<svg width=\"69\" height=\"68\" viewBox=\"0 0 69 68\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M15.8301 17.1533L21.5 22.8232M53.2854 17.1533L46.012 24.4267M52.0255 51.974L42.9194 42.8679M15.8301 51.974L25.738 42.066\" stroke=\"black\"/>\\n<mask id=\"mask0_299_7009\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"20\" height=\"20\">\\n<circle cx=\"9.7645\" cy=\"9.98423\" r=\"9.37392\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</mask>\\n<g mask=\"url(#mask0_299_7009)\">\\n<circle cx=\"9.7645\" cy=\"9.98423\" r=\"9.37392\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M7.22163 6.46937C7.22163 4.95939 8.44572 3.73531 9.9557 3.73531C11.4657 3.73531 12.6898 4.95939 12.6898 6.46937V8.81285C12.6898 10.3228 11.4657 11.5469 9.9557 11.5469C8.44572 11.5469 7.22163 10.3228 7.22163 8.81285V6.46937Z\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M2.14355 19.7491C2.14355 17.1452 3.70588 11.9375 9.95516 11.9375C16.2044 11.9375 17.5064 17.1452 17.3762 19.7491\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</g>\\n<mask id=\"mask1_299_7009\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"47\" width=\"20\" height=\"21\">\\n<circle cx=\"9.7645\" cy=\"57.7528\" r=\"9.37392\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</mask>\\n<g mask=\"url(#mask1_299_7009)\">\\n<circle cx=\"9.7645\" cy=\"57.7528\" r=\"9.37392\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M7.22163 54.2379C7.22163 52.7279 8.44572 51.5039 9.9557 51.5039C11.4657 51.5039 12.6898 52.7279 12.6898 54.2379V56.5814C12.6898 58.0914 11.4657 59.3155 9.9557 59.3155C8.44572 59.3155 7.22163 58.0914 7.22163 56.5814V54.2379Z\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M2.14355 67.5177C2.14355 64.9138 3.70588 59.7061 9.95516 59.7061C16.2044 59.7061 17.5064 64.9138 17.3762 67.5177\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</g>\\n<mask id=\"mask2_299_7009\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"48\" y=\"0\" width=\"21\" height=\"20\">\\n<circle cx=\"58.7167\" cy=\"9.98423\" r=\"9.37392\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</mask>\\n<g mask=\"url(#mask2_299_7009)\">\\n<circle cx=\"58.7167\" cy=\"9.98423\" r=\"9.37392\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M56.1738 6.46937C56.1738 4.95939 57.3979 3.73531 58.9078 3.73531C60.4178 3.73531 61.6419 4.95939 61.6419 6.46937V8.81285C61.6419 10.3228 60.4178 11.5469 58.9078 11.5469C57.3979 11.5469 56.1738 10.3228 56.1738 8.81285V6.46937Z\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M51.0957 19.7491C51.0957 17.1452 52.658 11.9375 58.9073 11.9375C65.1566 11.9375 66.4585 17.1452 66.3283 19.7491\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</g>\\n<mask id=\"mask3_299_7009\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"16\" y=\"15\" width=\"37\" height=\"37\">\\n<circle cx=\"34.1769\" cy=\"33.1315\" r=\"17.7087\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</mask>\\n<g mask=\"url(#mask3_299_7009)\">\\n<circle cx=\"34.1769\" cy=\"33.1315\" r=\"17.7087\" fill=\"url(#paint0_linear_299_7009)\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M29.1303 26.616C29.1303 23.633 31.5485 21.2148 34.5315 21.2148C37.5145 21.2148 39.9327 23.633 39.9327 26.616V30.9598C39.9327 33.9428 37.5145 36.361 34.5315 36.361C31.5485 36.361 29.1303 33.9428 29.1303 30.9598V26.616Z\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M34.5313 36.751C22.9477 36.751 20.5605 46.9127 20.5605 51.7392H48.7955C49.0368 46.9127 46.1148 36.751 34.5313 36.751Z\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<circle cx=\"34.1769\" cy=\"33.1315\" r=\"17.7087\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</g>\\n<mask id=\"mask4_299_7009\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"48\" y=\"47\" width=\"21\" height=\"21\">\\n<circle cx=\"58.7167\" cy=\"57.7528\" r=\"9.37392\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</mask>\\n<g mask=\"url(#mask4_299_7009)\">\\n<circle cx=\"58.7167\" cy=\"57.7528\" r=\"9.37392\" fill=\"white\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M56.1738 54.2379C56.1738 52.7279 57.3979 51.5039 58.9078 51.5039C60.4178 51.5039 61.6419 52.7279 61.6419 54.2379V56.5814C61.6419 58.0914 60.4178 59.3155 58.9078 59.3155C57.3979 59.3155 56.1738 58.0914 56.1738 56.5814V54.2379Z\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n<path d=\"M51.0957 67.5177C51.0957 64.9138 52.658 59.7061 58.9073 59.7061C65.1566 59.7061 66.4585 64.9138 66.3283 67.5177\" stroke=\"black\" stroke-width=\"0.78116\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_299_7009\" x1=\"48.5016\" y1=\"16.4875\" x2=\"24.8065\" y2=\"49.8976\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#43BBFF\"/>\\n<stop offset=\"1\" stop-color=\"#0E50EB\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]})}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aelyzo hidden-72rtr7\",\"data-framer-name\":\"Frame 2\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c1i9i\",\"data-framer-name\":\"Frame 427318684\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1auz2yn\",\"data-framer-name\":\"Frame 427318664\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\"},children:\"We don't know how to rid the world of theft and fraud, we can make them unprofitable!\"})})},T0lvaDWzn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\"},children:\"We don't know how to rid the world of theft and fraud, we can make them unprofitable!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\"},children:\"We don't know how to rid the world of theft and fraud, we make them Unprofitable!\"})}),className:\"framer-3ctbil\",\"data-framer-name\":\"We don't know how to rid the world of theft and fraud, we make them Unprofitable!\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Experience PROFID: unleashing a minimum 2X reduction in theft and fraud, surpassing 90% in certain sectors. How? We've harnessed the revolutionary \u2018data openness\u2019 technology from credit bureaus and adapted it to the entire market.\"})})},T0lvaDWzn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Experience PROFID: unleashing a minimum 2X reduction in theft and fraud, surpassing 90% in certain sectors. How? We've harnessed the revolutionary \u2018data openness\u2019 technology from credit bureaus and adapted it to the entire market.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(111, 119, 127)\"},children:\"Experience EPASS: Unleashing a Minimum 2X Reduction in Theft and Fraud, Surpassing 90% in Certain Sectors. How? We've hamessed the revolutionary \u2018data openness\u2019 technology from credit bureaus and \"})}),className:\"framer-1nkw06c\",\"data-framer-name\":\"Experience EPASS: Unleashing a Minimum 2X Reduction in Theft and Fraud, Surpassing 90% in Certain Sectors. How? We've hamessed the revolutionary \u2018data openness\u2019 technology from credit bureaus and\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-19cgutq hidden-72rtr7\",\"data-framer-name\":\"Frame 2\\\\\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13golvl\",\"data-framer-name\":\"Frame 427318493\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ygid7k\",\"data-framer-name\":\"Frame 427318685\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ready to get started?\"})}),className:\"framer-o5apij\",\"data-framer-name\":\"Ready to get started?\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"PROFID offers the fastest, easiest, \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"and fairest way to run background checks.\"})]})},T0lvaDWzn:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Epass offers the fastest, easiest, \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"and fairest way to run\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"background checks.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Epass offers the fastest, easiest, \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"and fairest way to run background checks.\"})]}),className:\"framer-1uoktz5\",\"data-framer-name\":\"Epass offers the fastest, easiest, and fairest way to run background checks.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f5v0bq\",\"data-framer-name\":\"Frame 427318483\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay16=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iwyw2w\",\"data-framer-name\":\"Frame 427318279\",id:\"1iwyw2w\",onTap:onTap3bnx0g({overlay:overlay16}),children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get in touch\"})})},T0lvaDWzn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get in touch\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get sarted\"})}),className:\"framer-1syviq9\",\"data-framer-name\":\"Get sarted\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay16.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1xbyyk9\"),\"data-framer-portal-id\":\"1iwyw2w\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay16.hide()},\"LYNaltZB4\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T0lvaDWzn:{width:\"350px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"474px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-cz58t7-container\"),\"data-framer-portal-id\":\"1iwyw2w\",nodeId:\"cf0XvSuDv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Form,{height:\"100%\",id:\"cf0XvSuDv\",layoutId:\"cf0XvSuDv\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),getContainer())})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{href:\"https://calendly.com/profid-theprofid/30min\",openInNewTab:true},T0lvaDWzn:{href:\"https://calendly.com/profid-theprofid/30min\",openInNewTab:true}},children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"NnF418nJh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-19d8wmi framer-lux5qc\",\"data-framer-name\":\"Frame 427318482\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, rgb(86, 63, 255))\"},children:\"Talk to sales\"})})},T0lvaDWzn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, rgb(86, 63, 255))\"},children:\"Contact us\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\"},children:\"Talk to sales\"})}),className:\"framer-1ozn35a\",\"data-framer-name\":\"Talk to sales\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})]})]})}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wo50em hidden-72rtr7\",\"data-framer-name\":\"Frame 1\",id:elementId11,ref:ref12,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bpk9vt\",\"data-framer-name\":\"Frame 427318684\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s6trfg\",\"data-framer-name\":\"Frame 427318680\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tn7c8z\",\"data-framer-name\":\"Frame 427318686\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\"},children:\"FAQ\"})}),className:\"framer-jhqoe5\",\"data-framer-name\":\"FAQ\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Do you have any questions? \"})})},T0lvaDWzn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Do you have any questions? \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Do you have any questions? \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\"},children:\"Leave your Email for contact.\"})]}),className:\"framer-1fw3vdj\",\"data-framer-name\":\"Do you have any questions? Leave your Email for contact.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{href:\"https://calendly.com/profid-theprofid/30min\",openInNewTab:true},T0lvaDWzn:{href:\"https://calendly.com/profid-theprofid/30min\",openInNewTab:true}},children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"kD88y2b75\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-14ubbgy framer-lux5qc\",\"data-framer-name\":\"Frame 427318279\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Talk to Sales\"})})},T0lvaDWzn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Talk to Sales\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book a demo\"})}),className:\"framer-nylcs2\",\"data-framer-name\":\"Book a demo\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kfu3ra\",\"data-framer-name\":\"Frame 427318321\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{width:\"391px\",y:(componentViewport?.y||0)+0+13519.9815+10+0+0+0+0},T0lvaDWzn:{width:\"350px\",y:(componentViewport?.y||0)+0+20543.8+60+0+0+568.5+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"384px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-65cqcg-container\",nodeId:\"IQifzqrQd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{CfLzN1UUV:20,dBt7YcPaI:\"A background check is a process where an employer verifies the information provided by a job seeker and investigates their criminal record, education, employment history, and other relevant details. It is required during the job search process to ensure the accuracy of the information provided and to assess the suitability of the candidate for the position\",KGoNZtYVS:\"What is a background check and why is it required during the job search process?\"},T0lvaDWzn:{CfLzN1UUV:20,dBt7YcPaI:\"A background check is a process where an employer verifies the information provided by a job seeker and investigates their criminal record, education, employment history, and other relevant details. It is required during the job search process to ensure the accuracy of the information provided and to assess the suitability of the candidate for the position\",KGoNZtYVS:\"What is a background check and why is it required during the job search process?\"}},children:/*#__PURE__*/_jsx(FAQ,{CfLzN1UUV:16,dBt7YcPaI:\"A background check is a comprehensive review of an individual's criminal, financial, and professional history. It is essential during the job search process to ensure a candidate's qualifications, honesty, and suitability for a specific role, promoting a safe and trustworthy work environment.\",height:\"100%\",id:\"IQifzqrQd\",KGoNZtYVS:\"What is the procedure for conducting a background check and how long does it take?\",layoutId:\"IQifzqrQd\",style:{width:\"100%\"},variant:\"wKf4r4d6H\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{width:\"391px\",y:(componentViewport?.y||0)+0+13519.9815+10+0+0+0+100},T0lvaDWzn:{width:\"350px\",y:(componentViewport?.y||0)+0+20543.8+60+0+0+568.5+0+100}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"384px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-46qp4z-container\",nodeId:\"fPLUkc0JE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{CfLzN1UUV:20,dBt7YcPaI:\"During a background check, an employer may check a variety of data and information, including but not limited to: criminal history, education history, employment history, credit history, driving record, and social media presence. The specific information checked may vary depending on the employer and the position being applied for.\",KGoNZtYVS:\"What data and information can be checked during a background check?\"},T0lvaDWzn:{CfLzN1UUV:20,dBt7YcPaI:\"During a background check, an employer may check a variety of data and information, including but not limited to: criminal history, education history, employment history, credit history, driving record, and social media presence. The specific information checked may vary depending on the employer and the position being applied for.\",KGoNZtYVS:\"What data and information can be checked during a background check?\"}},children:/*#__PURE__*/_jsx(FAQ,{CfLzN1UUV:16,dBt7YcPaI:\"A background check is a comprehensive review of an individual's criminal, financial, and professional history. It is essential during the job search process to ensure a candidate's qualifications, honesty, and suitability for a specific role, promoting a safe and trustworthy work environment.\",height:\"100%\",id:\"fPLUkc0JE\",KGoNZtYVS:\"What is the procedure for conducting a background check and how long does it take?\",layoutId:\"fPLUkc0JE\",style:{width:\"100%\"},variant:\"wKf4r4d6H\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bdamit\",\"data-framer-name\":\"Line 35\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:386,svg:'<svg width=\"386\" height=\"4\" viewBox=\"-1 -1 386 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.511719\" x2=\"384\" y2=\"0.511719\" stroke=\"#525F7E\" stroke-opacity=\"0.13\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{width:\"391px\",y:(componentViewport?.y||0)+0+13519.9815+10+0+0+0+200},T0lvaDWzn:{width:\"350px\",y:(componentViewport?.y||0)+0+20543.8+60+0+0+568.5+0+200}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"384px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-xm640s-container\",nodeId:\"eBZ7Hit4d\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{CfLzN1UUV:20,dBt7YcPaI:\"The procedure for conducting a background check varies depending on the employer and the type of check being conducted. Typically, the process involves obtaining consent from the job seeker, gathering relevant information, and verifying the accuracy of that information. The length of time it takes to conduct a background check can also vary depending on the complexity of the check and the availability of information.\"},T0lvaDWzn:{CfLzN1UUV:20,dBt7YcPaI:\"The procedure for conducting a background check varies depending on the employer and the type of check being conducted. Typically, the process involves obtaining consent from the job seeker, gathering relevant information, and verifying the accuracy of that information. The length of time it takes to conduct a background check can also vary depending on the complexity of the check and the availability of information.\"}},children:/*#__PURE__*/_jsx(FAQ,{CfLzN1UUV:16,dBt7YcPaI:\"A background check is a comprehensive review of an individual's criminal, financial, and professional history. It is essential during the job search process to ensure a candidate's qualifications, honesty, and suitability for a specific role, promoting a safe and trustworthy work environment.\",height:\"100%\",id:\"eBZ7Hit4d\",KGoNZtYVS:\"What is the procedure for conducting a background check and how long does it take?\",layoutId:\"eBZ7Hit4d\",style:{width:\"100%\"},variant:\"wKf4r4d6H\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-kpg5jl\",\"data-framer-name\":\"Line 42\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:386,svg:'<svg width=\"386\" height=\"4\" viewBox=\"-1 -1 386 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.511719\" x2=\"384\" y2=\"0.511719\" stroke=\"#525F7E\" stroke-opacity=\"0.13\"/>\\n</svg>\\n',withExternalLayout:true})]})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-18mkam8 hidden-72rtr7 hidden-l241wy\",\"data-framer-name\":\"Frame 427318559\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bl24iq\",\"data-framer-name\":\"Frame 427318691\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-155exv4\",\"data-framer-name\":\"Group 341\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-3d2a7e\",\"data-framer-name\":\"PROFID_2\",fill:\"black\",intrinsicHeight:430,intrinsicWidth:2039,svg:'<svg width=\"2039\" height=\"430\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><mask id=\"a\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"2039\" height=\"430\"><path d=\"M.627 0H2038.42v429.992H.627V0Z\" fill=\"#fff\"/></mask><g mask=\"url(#a)\" fill=\"#fff\"><path d=\"M227.173 357.527a4.96 4.96 0 0 0-1.262-.558c.43.124.848.306 1.243.552l73.627 46.188a53.524 53.524 0 0 0 6.016 3.066 53.54 53.54 0 0 1-6.011-3.066l-73.613-46.182Zm-113.937 29.008c7.349 2.696 15.388 1.934 22.6-2.351l54.539-34.219c-.003-.001-.01-.002-.012-.004l-54.54 34.216c-7.203 4.279-15.242 5.04-22.587 2.358Zm55.095-327.022c8.268-24.668 30.352-40.608 56.257-40.608 8.088 0 15.807 1.556 22.846 4.444-7.046-2.893-14.767-4.45-22.864-4.45-25.899 0-47.976 15.94-56.251 40.607l-28.008 83.543.012.004 28.008-83.54Zm-94.977 283.31 24.243-72.312-.012-.01-24.243 72.316c-6.921 20.63-.628 42.185 15.821 55.953-16.44-13.779-22.726-35.328-15.809-55.947Zm269.631 39.87c-6.721 4.989-14.599 6.566-22.1 4.677 7.508 1.892 15.391.316 22.112-4.677 7.809-5.778 15.145-17.842 10.127-32.819l-20.575-61.372-.016.012 20.572 61.36c5.019 14.971-2.312 27.035-10.12 32.819ZM94.252 402.567c14.085 9.218 31.066 10.941 46.557 4.784-15.481 6.141-32.465 4.421-46.557-4.784ZM238.954 44.876c7.98 3.504 15.36 10.305 19.173 21.681l27.94 83.344.012-.005-27.939-83.332c-3.817-11.384-11.201-18.185-19.186-21.688Zm-76.021 287.219c6.377 6.012 13.443 11.01 20.988 14.909-7.541-3.899-14.601-8.895-20.976-14.903l-46.301-43.646-.004.006 46.293 43.634Z\"/><path d=\"m97.6 270.503-61.773-58.228c-.171-.16-.311-.338-.479-.501.165.16.299.343.467.501l61.769 58.226.013.01.003-.008Zm183.239-210.99c-5.687-16.964-17.907-29.8-33.405-36.164-7.039-2.888-14.758-4.444-22.846-4.444-25.904 0-47.989 15.94-56.257 40.608l-28.007 83.54 4.572 1.373 13.626 4.098 4.573 1.372 27.936-83.332c6.105-18.208 21.339-24.699 33.557-24.699 4.579 0 9.579.912 14.366 3.01 7.985 3.503 15.369 10.305 19.186 21.689l27.939 83.332 4.569-1.372 13.63-4.098 4.569-1.373-28.008-83.54Zm-65.945 296.846c-6.457-.718-12.774-2.193-18.894-4.294-1.895-.651-3.776-1.322-5.624-2.099l-54.54 34.217c-7.212 4.287-15.251 5.048-22.6 2.352-2.451-.898-4.823-2.18-7.063-3.842-7.81-5.778-15.139-17.835-10.12-32.819l20.587-61.413.004-.007-3.824-3.603-11.399-10.745-3.821-3.603-.003.008-24.243 72.312c-6.917 20.618-.63 42.168 15.81 55.947.833.697 1.565 1.469 2.448 2.124.85.631 1.764 1.101 2.64 1.672 14.092 9.205 31.076 10.927 46.557 4.784 2.655-1.053 5.271-2.279 7.811-3.791l73.384-46.032c.532-.332 1.112-.512 1.702-.621a88.141 88.141 0 0 1-8.812-.547Zm160.928-13.536-24.23-72.274-3.823 3.604-11.4 10.745-3.82 3.604 20.575 61.372c5.018 14.977-2.318 27.041-10.127 32.819-6.721 4.993-14.604 6.569-22.112 4.677-.227-.056-.447-.157-.671-.221-1.018-.287-2.034-.594-3.034-1.008a28.746 28.746 0 0 1-3.603-1.808l-54.748-34.35c-1.851.776-3.736 1.446-5.631 2.096-6.125 2.1-12.442 3.572-18.904 4.288a88.077 88.077 0 0 1-8.808.54c.139.027.286.02.426.062.434.124.86.309 1.261.558l73.613 46.182a53.455 53.455 0 0 0 6.011 3.066c6.488 2.828 13.417 4.319 20.365 4.319 10.878 0 21.383-3.528 30.396-10.2 18.358-13.611 25.527-36.403 18.264-58.071Z\"/><path d=\"M41.69 133.009c12.712-8.598 28.39-10.996 42.97-6.628l139.959 42.068 139.96-42.068c14.604-4.368 30.259-1.97 42.975 6.628 6.753 4.565 12.145 10.481 15.918 17.278-3.773-6.825-9.178-12.765-15.956-17.346-12.716-8.598-28.382-11.015-42.974-6.63l-55.695 16.743-4.569 1.372-13.63 4.097-4.569 1.374-.012.004-61.479 18.48-61.493-18.484-4.572-1.374-13.627-4.097-4.572-1.372-.013-.005-55.681-16.738c-14.594-4.385-30.247-1.968-42.976 6.63-13.524 9.144-21.594 23.693-22.128 39.912-.012.381.056.746.05 1.125.006-.352-.032-.696-.018-1.051.54-16.225 8.609-30.774 22.133-39.918Zm-20.13 56.188a50.708 50.708 0 0 0 1.814 5.136 50.368 50.368 0 0 1-1.907-5.588c.04.148.05.304.094.452Z\"/><path d=\"M179.631 315.701 52.512 195.876c-6.156-5.808-9.398-13.699-9.113-22.215.299-8.94 4.672-16.904 12.001-21.86 4.436-3.001 9.55-4.585 14.779-4.585 2.492 0 4.976.366 7.368 1.086l146.383 43.995.689.205 147.079-44.2c7.454-2.266 15.524-.981 22.14 3.499 7.33 4.956 11.704 12.92 12.001 21.867.285 8.516-2.957 16.405-9.113 22.208L269.607 315.701c-25.637 24.165-64.313 24.165-89.976 0Zm243.841-165.413c-3.773-6.798-9.165-12.714-15.918-17.279-12.716-8.597-28.371-10.996-42.976-6.628l-139.959 42.068L84.66 126.381c-14.58-4.368-30.26-1.969-42.969 6.628-13.524 9.144-21.593 23.693-22.133 39.919-.014.354.024.698.018 1.049a52.913 52.913 0 0 0 .562 8.363c.32 2.17.74 4.316 1.329 6.405a50.178 50.178 0 0 0 1.908 5.588c.083.204.195.393.283.595.297.689.645 1.357.972 2.034a51.15 51.15 0 0 0 1.86 3.526c.41.704.838 1.396 1.282 2.081a51.854 51.854 0 0 0 2.339 3.284c.467.608.91 1.225 1.408 1.815a53.505 53.505 0 0 0 3.83 4.106c.167.163.307.342.478.502L97.6 270.504l3.82 3.602 11.399 10.746 3.824 3.602 46.303 43.647c6.373 6.009 13.433 11.005 20.974 14.903 2.107 1.089 4.268 2.041 6.443 2.957l.012.004c1.848.779 3.731 1.449 5.625 2.1 6.119 2.101 12.436 3.575 18.894 4.295 2.917.324 5.856.514 8.812.546.305.003.609.043.913.043.292 0 .577-.039.867-.041a88.696 88.696 0 0 0 8.809-.54c6.46-.716 12.777-2.19 18.903-4.288 1.894-.651 3.78-1.32 5.632-2.098a91.86 91.86 0 0 0 27.464-17.881l46.24-43.588.014-.012 3.822-3.603 11.398-10.745 3.824-3.605 61.82-58.272c10.995-10.356 16.772-24.334 16.27-39.348-.268-8.123-2.427-15.826-6.21-22.64Zm291.963 78.932H589.106v-62.584h126.329v62.584ZM539.432 124.185v232.526h49.674v-85.039h140.356l35.637-34.241v-79.006l-35.637-34.24h-190.03Zm456.451 103.683H869.554v-61.232h126.329v61.232Zm14.027 42.443 35.65-34.24v-77.646l-35.65-34.24H819.88v232.526h49.674v-86.4h84.821l46.905 86.4h52.2l-47.26-86.4h3.69Zm287.23 42.597h-141.49V167.999h141.49v144.909Zm-155.51-188.723-35.65 34.24v164.046l35.65 34.24h169.54l35.65-34.24V158.425l-35.65-34.24h-169.54Zm444.01 97.578h-125.56v-55.462h159.77v-42.116h-209.44v232.526h49.67v-93.178h125.56v-41.77Zm79.11 134.948h49.68V124.185h-49.68v232.526Zm305.1-43.803h-139.02V167.999h139.02v144.909Zm-188.69-188.723v232.526h202.72l35.64-34.24V158.425l-35.64-34.24h-202.72Z\"/></g></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wjc418\",\"data-framer-name\":\"Frame 427318585\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/profid-theprofid/30min\",motionChild:true,nodeId:\"HkSkXxV31\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-103si5y framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Frame 427318414\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, rgb(86, 63, 255))\"},children:\"Contact us\"})}),className:\"framer-140i3hl\",\"data-framer-name\":\"Talk to Sales\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://dashboard.theprofid.com/\",motionChild:true,nodeId:\"roJa3VXTr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1qd2x9a framer-lux5qc\",\"data-framer-name\":\"Frame 427318415\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Customer login\"})}),className:\"framer-8xfjzb\",\"data-framer-name\":\"Customer login\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1heuqzs\",\"data-framer-name\":\"Line 76\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:772,svg:'<svg width=\"772\" height=\"4\" viewBox=\"-1 -1 772 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.1\" y1=\"0.511719\" x2=\"770\" y2=\"0.511719\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14pps8f\",\"data-framer-name\":\"Frame 427318687\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2osx88\",\"data-framer-name\":\"Frame 427318563\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Background check\"})}),className:\"framer-sqj20e\",\"data-framer-name\":\"Background check\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7azy15\",\"data-framer-name\":\"Frame 427318562\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"#Perfect-solution1\",motionChild:true,nodeId:\"P7_z421Tr\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"Perfect solution\"})})})}),className:\"framer-mk35ij\",\"data-framer-name\":\"Perfect solution\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"#Benefits1\",motionChild:true,nodeId:\"JUsy06GDt\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"Benefits\"})})})}),className:\"framer-ueis43\",\"data-framer-name\":\"Benefits\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"#How-it-works1\",motionChild:true,nodeId:\"bZ6lNZqYW\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"How it works\"})})})}),className:\"framer-fkqxm7\",\"data-framer-name\":\"How it works\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kyo166\",\"data-framer-name\":\"Frame 427318688\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"San Diego, California\"})})}),className:\"framer-1gn4na8\",\"data-framer-name\":\"San Diego Spaces Makers Quarter 845 15th StreetCalifornia, 92101\",fonts:[\"Inter-Medium\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"profid@theprofid.com\"})}),className:\"framer-5a7nlm\",\"data-framer-name\":\"Partners@epasscheck.com\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"(650) 446-7717\"})}),className:\"framer-1r313jh\",\"data-framer-name\":\"(747)2857444\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wp00sa\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/people/EPASS/100087441582953/\",motionChild:true,nodeId:\"goBOgFojX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1zmjef framer-lux5qc\",\"data-framer-name\":\"Frame_427318582\",fill:\"black\",intrinsicHeight:39,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M38.003 19.932c0 9.598-7.114 17.532-16.356 18.82a19.267 19.267 0 0 1-5.69-.06C6.91 37.235 0 29.39 0 19.932 0 9.437 8.508.93 19.003.93c10.494 0 19.002 8.508 19.002 19.003h-.002Z\" fill=\"#fff\"/><path d=\"M21.647 16.189v4.14h5.12l-.81 5.576h-4.31v12.847a19.267 19.267 0 0 1-5.69-.06V25.906h-4.722v-5.577h4.723v-5.065a5.69 5.69 0 0 1 5.69-5.69v.002c.01 0 .018-.003.027-.003h5.094v4.823H23.44c-.989 0-1.792.803-1.792 1.792l-.001.002Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/theprofid/\",motionChild:true,nodeId:\"SoVPSJAyQ\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1o2akrf framer-lux5qc\",\"data-framer-name\":\"Frame_427318583\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 34 34\"><path d=\"M 16.609 0.81 L 16.534 0.81 C 7.405 0.81 0.004 8.21 0.004 17.339 L 0.004 17.414 C 0.004 26.542 7.405 33.943 16.534 33.943 L 16.609 33.943 C 25.737 33.943 33.138 26.542 33.138 17.414 L 33.138 17.338 C 33.138 8.211 25.737 0.809 16.609 0.809 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 7.907 11.823 C 7.481 11.441 7.242 10.892 7.253 10.319 C 7.253 9.723 7.471 9.199 7.907 8.794 C 8.343 8.388 8.905 8.185 9.593 8.185 C 10.282 8.185 10.822 8.388 11.257 8.793 C 11.693 9.198 11.91 9.708 11.91 10.319 C 11.91 10.931 11.693 11.418 11.257 11.823 C 10.821 12.228 10.266 12.431 9.593 12.431 C 8.92 12.431 8.343 12.228 7.906 11.823 Z M 11.543 14.147 L 11.543 26.567 L 7.619 26.567 L 7.619 14.147 L 11.544 14.147 Z M 24.608 15.374 C 25.464 16.303 25.891 17.577 25.891 19.2 L 25.891 26.349 L 22.164 26.349 L 22.164 19.704 C 22.164 18.885 21.951 18.249 21.527 17.797 C 21.104 17.343 20.533 17.117 19.818 17.117 C 19.103 17.117 18.532 17.343 18.108 17.797 C 17.684 18.25 17.472 18.886 17.472 19.704 L 17.472 26.348 L 13.723 26.348 L 13.723 14.113 L 17.472 14.113 L 17.472 15.735 C 17.851 15.195 18.363 14.767 19.006 14.453 C 19.649 14.138 20.373 13.982 21.177 13.982 C 22.609 13.982 23.754 14.446 24.608 15.373 Z\" fill=\"rgb(7,11,14)\"></path></svg>',svgContentId:9222533552,withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rdz2ob\",\"data-framer-name\":\"Group 334\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"#tariffs\",motionChild:true,nodeId:\"DPsGSB2MJ\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"Pricing\"})})})}),className:\"framer-1hi5co6\",\"data-framer-name\":\"Tariffs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"#faq1\",motionChild:true,nodeId:\"myw9HG5Yk\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"FAQ\"})})})}),className:\"framer-f0cbgz\",\"data-framer-name\":\"FAQ\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-dkflbp\",\"data-framer-name\":\"Line 75\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:772,svg:'<svg width=\"772\" height=\"4\" viewBox=\"-1 -1 772 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.1\" y1=\"0.511719\" x2=\"770\" y2=\"0.511719\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x7h0wb\",\"data-framer-name\":\"Group 333\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oecpzy\",\"data-framer-name\":\"Frame 427318690\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fpngll\",\"data-framer-name\":\"Frame 427318689\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l7_FvOud7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:45,intrinsicWidth:64,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14098.4815+34+0+0+378+0+0+0),pixelHeight:45,pixelWidth:64,src:\"https://framerusercontent.com/images/8CgifXXPTnl2IQYIbhN4vsrfoPg.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:45,intrinsicWidth:64,pixelHeight:45,pixelWidth:64,src:\"https://framerusercontent.com/images/8CgifXXPTnl2IQYIbhN4vsrfoPg.png\"},className:\"framer-1whm373\",\"data-framer-name\":\"Mask_group\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\\xa9 2025 PROFID.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"All rights reserved.\"})]}),className:\"framer-1d3g9cs\",\"data-framer-name\":\"\\xa9 2024 EPASS. Allrights reserved.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wpjroc\",\"data-framer-name\":\"Frame 427318561\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/1NIXalueY9-25VK8XK1XZ-tUak49XF34V/view?usp=sharing\",motionChild:true,nodeId:\"mCbyNwJDg\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"Privacy Policy\"})})})}),className:\"framer-62r3bx\",\"data-framer-name\":\"Privacy Policy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Terms of service\"})}),className:\"framer-zhb7fg\",\"data-framer-name\":\"Privacy Policy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Agreement\"})}),className:\"framer-1co0ijq\",\"data-framer-name\":\"Terms of service\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/1o8hYOF-fyg-zfwOz-IRrQKoNH741RI5D/view?usp=sharing\",motionChild:true,nodeId:\"NBRfzX0xk\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dwp916\",\"data-styles-preset\":\"GTg_GqQaV\",children:\"Cookie Policy\"})})})}),className:\"framer-1qbqxnp\",\"data-framer-name\":\"Customer agreement\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-E16C1.framer-lux5qc, .framer-E16C1 .framer-lux5qc { display: block; }\",\".framer-E16C1.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-E16C1 .framer-ecrxbb { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 810px; justify-content: center; overflow: visible; padding: 60px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-1qo8zzk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 42%; }\",\".framer-E16C1 .framer-1xgpon { flex: none; height: 48px; overflow: visible; position: relative; width: 454px; }\",\".framer-E16C1 .framer-1unfupn { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 620px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-19dm4lv { flex: none; height: 23px; left: 9px; position: absolute; top: 19px; width: 436px; }\",\".framer-E16C1 .framer-1n0zp7j { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 620px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1h6kr1i { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 587px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1ss4wur { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-1hr8uex-container, .framer-E16C1 .framer-16ex76i-container, .framer-E16C1 .framer-1ioapyi-container, .framer-E16C1 .framer-1mz7yyc-container, .framer-E16C1 .framer-kdbq3o-container, .framer-E16C1 .framer-ztdej4-container, .framer-E16C1 .framer-14pqaef-container, .framer-E16C1 .framer-620fx-container, .framer-E16C1 .framer-1cmtmn8-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-E16C1 .framer-51va3p { aspect-ratio: 1.1322463768115942 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 552px); overflow: visible; position: relative; width: 625px; }\",\".framer-E16C1 .framer-14bb3wk-container { bottom: 19px; flex: none; height: auto; position: fixed; right: 22px; width: auto; z-index: 1; }\",\".framer-E16C1 .framer-1mjiyyl { --border-bottom-width: 1px; --border-color: rgba(82, 95, 126, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-9fj9wa, .framer-E16C1 .framer-1dgbndt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-1gtlfp3, .framer-E16C1 .framer-1mvfuuh { align-content: center; align-items: center; background-color: var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, #563fff); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 43px; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-E16C1 .framer-1ip6qgs, .framer-E16C1 .framer-1m39zw7, .framer-E16C1 .framer-jzfw18, .framer-E16C1 .framer-1ihfatz, .framer-E16C1 .framer-1lvukvu, .framer-E16C1 .framer-1a8lpex, .framer-E16C1 .framer-xc2ab8, .framer-E16C1 .framer-1u8hsj, .framer-E16C1 .framer-p4x6dg, .framer-E16C1 .framer-n88ggn, .framer-E16C1 .framer-1dbmkxr, .framer-E16C1 .framer-112cckp, .framer-E16C1 .framer-1u43yuw, .framer-E16C1 .framer-1dyizzj, .framer-E16C1 .framer-tc9723, .framer-E16C1 .framer-1l83g29, .framer-E16C1 .framer-1jkoddx, .framer-E16C1 .framer-127en8n, .framer-E16C1 .framer-savbe1, .framer-E16C1 .framer-8rgozd, .framer-E16C1 .framer-16s1p31, .framer-E16C1 .framer-14k2kut, .framer-E16C1 .framer-1gfc89x, .framer-E16C1 .framer-bn7ex6, .framer-E16C1 .framer-8dgsw1, .framer-E16C1 .framer-2xeoko, .framer-E16C1 .framer-2nct56, .framer-E16C1 .framer-80jbqf, .framer-E16C1 .framer-1jen0xy, .framer-E16C1 .framer-15urr4d, .framer-E16C1 .framer-kvoawu, .framer-E16C1 .framer-c1st5d, .framer-E16C1 .framer-1tcrcr5, .framer-E16C1 .framer-zdcvoy, .framer-E16C1 .framer-11jemyg, .framer-E16C1 .framer-dwqaqj, .framer-E16C1 .framer-148u1wb, .framer-E16C1 .framer-b7cowa, .framer-E16C1 .framer-1bdkbph, .framer-E16C1 .framer-2fyjyj, .framer-E16C1 .framer-n13v5w, .framer-E16C1 .framer-jfddof, .framer-E16C1 .framer-1tgi0el, .framer-E16C1 .framer-qwq333, .framer-E16C1 .framer-13zd3e7, .framer-E16C1 .framer-tc6jnd, .framer-E16C1 .framer-134kww8, .framer-E16C1 .framer-171xebk, .framer-E16C1 .framer-19g44aq, .framer-E16C1 .framer-1177dlg, .framer-E16C1 .framer-1ymhgh7, .framer-E16C1 .framer-1cdkfqr, .framer-E16C1 .framer-1m3mv5r, .framer-E16C1 .framer-1ej32c8, .framer-E16C1 .framer-h4dftn, .framer-E16C1 .framer-1sg1phg, .framer-E16C1 .framer-jya8nm, .framer-E16C1 .framer-aaixww, .framer-E16C1 .framer-1wc7ywa, .framer-E16C1 .framer-1mvj48, .framer-E16C1 .framer-1o69ey7, .framer-E16C1 .framer-xek373, .framer-E16C1 .framer-3k42aw, .framer-E16C1 .framer-1cwamio, .framer-E16C1 .framer-1faw1ix, .framer-E16C1 .framer-nq4j84, .framer-E16C1 .framer-2rpik3, .framer-E16C1 .framer-19d4017, .framer-E16C1 .framer-1s17p9f, .framer-E16C1 .framer-xum6qu, .framer-E16C1 .framer-tm7uvr, .framer-E16C1 .framer-12nrl3n, .framer-E16C1 .framer-7eq65x, .framer-E16C1 .framer-1fzgbk, .framer-E16C1 .framer-cf5q1q, .framer-E16C1 .framer-uai4uj, .framer-E16C1 .framer-oi8dcn, .framer-E16C1 .framer-1mxtkpw, .framer-E16C1 .framer-1gaxo23, .framer-E16C1 .framer-155wvkv, .framer-E16C1 .framer-38e3wr, .framer-E16C1 .framer-1r6by13, .framer-E16C1 .framer-1j3c6gx, .framer-E16C1 .framer-5sljxc, .framer-E16C1 .framer-7wg1qf, .framer-E16C1 .framer-oys5g9, .framer-E16C1 .framer-14tykkb, .framer-E16C1 .framer-1gh3pa0, .framer-E16C1 .framer-tmcd7j, .framer-E16C1 .framer-1vlv1ul, .framer-E16C1 .framer-z04uj1, .framer-E16C1 .framer-4e96h4, .framer-E16C1 .framer-q2u1je, .framer-E16C1 .framer-1xo49wp, .framer-E16C1 .framer-151gx3s, .framer-E16C1 .framer-dtff9o, .framer-E16C1 .framer-1ssl7o6, .framer-E16C1 .framer-1yyfttr, .framer-E16C1 .framer-9pdjnu, .framer-E16C1 .framer-o5apij, .framer-E16C1 .framer-1syviq9, .framer-E16C1 .framer-1ozn35a, .framer-E16C1 .framer-nylcs2, .framer-E16C1 .framer-140i3hl, .framer-E16C1 .framer-8xfjzb, .framer-E16C1 .framer-mk35ij, .framer-E16C1 .framer-ueis43, .framer-E16C1 .framer-fkqxm7, .framer-E16C1 .framer-5a7nlm, .framer-E16C1 .framer-1r313jh { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-E16C1 .framer-1wal6g { aspect-ratio: 4.741860465116279 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); position: relative; text-decoration: none; width: 151px; }\",\".framer-E16C1 .framer-qrgemf { align-content: flex-start; align-items: flex-start; background-color: rgba(86, 64, 255, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 60px 20px 70px 20px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-loeezu, .framer-E16C1 .framer-1vhfamx, .framer-E16C1 .framer-u2gb7p, .framer-E16C1 .framer-y25fqk, .framer-E16C1 .framer-7wwvin, .framer-E16C1 .framer-1craefd, .framer-E16C1 .framer-swtid0, .framer-E16C1 .framer-yrnafi, .framer-E16C1 .framer-bwwhys, .framer-E16C1 .framer-1xh2m9z, .framer-E16C1 .framer-nz4hp3, .framer-E16C1 .framer-lnnf6y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-uhuq5h, .framer-E16C1 .framer-1mhxxnd, .framer-E16C1 .framer-u420we, .framer-E16C1 .framer-8dcjls, .framer-E16C1 .framer-16gu2yb, .framer-E16C1 .framer-zb91w, .framer-E16C1 .framer-1eqlena, .framer-E16C1 .framer-15q5xa2, .framer-E16C1 .framer-jxg4fl, .framer-E16C1 .framer-1ut11c6, .framer-E16C1 .framer-2518gu, .framer-E16C1 .framer-rw3ov8, .framer-E16C1 .framer-qr5ucv { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 350px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1lo58uk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-f87t8y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-51dl1e, .framer-E16C1 .framer-5yxkjn, .framer-E16C1 .framer-1840b2t, .framer-E16C1 .framer-1s20kag { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-1wzt2m0, .framer-E16C1 .framer-a70izw, .framer-E16C1 .framer-1oiaxzs, .framer-E16C1 .framer-1ag5n6a, .framer-E16C1 .framer-v92o1c, .framer-E16C1 .framer-cao9r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-10h9de, .framer-E16C1 .framer-bsjt5l, .framer-E16C1 .framer-1oaewuk, .framer-E16C1 .framer-19iehhj, .framer-E16C1 .framer-o5fzqx, .framer-E16C1 .framer-1b41agf, .framer-E16C1 .framer-j3rqq4, .framer-E16C1 .framer-1p1naxs, .framer-E16C1 .framer-q5dxkk, .framer-E16C1 .framer-8s9cnr, .framer-E16C1 .framer-db0auv { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 226px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1wnhfrj { aspect-ratio: 0.8053691275167785 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 117px); position: relative; width: 94px; }\",\".framer-E16C1 .framer-1jk3nt5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-wn8a0e { aspect-ratio: 1.2112676056338028 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 81px); position: relative; width: 98px; }\",\".framer-E16C1 .framer-18a91xp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-157o1tb { aspect-ratio: 1.2622950819672132 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 90px); position: relative; width: 114px; }\",\".framer-E16C1 .framer-2g4im5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-15df5wm { aspect-ratio: 1.2764227642276422 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 83px); position: relative; width: 106px; }\",\".framer-E16C1 .framer-1r26ssp, .framer-E16C1 .framer-cjsb6h, .framer-E16C1 .framer-1kv19mv, .framer-E16C1 .framer-1io2r8s, .framer-E16C1 .framer-1p6xdc, .framer-E16C1 .framer-127owvb, .framer-E16C1 .framer-o48ktx, .framer-E16C1 .framer-q1upn2, .framer-E16C1 .framer-akcki1, .framer-E16C1 .framer-aqfn78, .framer-E16C1 .framer-iejc7y, .framer-E16C1 .framer-opsyxd, .framer-E16C1 .framer-1l0y9t2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-1h0mchb, .framer-E16C1 .framer-vfc38r, .framer-E16C1 .framer-1p83mm { align-content: center; align-items: center; background-color: var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, #563fff); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 56px; justify-content: center; overflow: visible; padding: 16px 30px 16px 30px; position: relative; width: 100%; }\",\".framer-E16C1.framer-17eqooe, .framer-E16C1.framer-imy9qq, .framer-E16C1.framer-1gzyjmo, .framer-E16C1.framer-vivh8d, .framer-E16C1.framer-la24q6, .framer-E16C1.framer-z8hqg2, .framer-E16C1.framer-1tdmc0k, .framer-E16C1.framer-vbiq52, .framer-E16C1.framer-18xxb2u, .framer-E16C1.framer-yy1f5i, .framer-E16C1.framer-1r5pyni, .framer-E16C1.framer-13nxtmz, .framer-E16C1.framer-1jshth0, .framer-E16C1.framer-ufs3a7, .framer-E16C1.framer-ihhhfe, .framer-E16C1.framer-1wofr7y, .framer-E16C1.framer-1xbyyk9 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 3; }\",\".framer-E16C1.framer-hghlwk-container, .framer-E16C1.framer-cd8zk2-container, .framer-E16C1.framer-awrifr-container, .framer-E16C1.framer-1xswfr0-container, .framer-E16C1.framer-cio608-container, .framer-E16C1.framer-m1g7jf-container, .framer-E16C1.framer-1vhxp9t-container, .framer-E16C1.framer-jq6p3j-container, .framer-E16C1.framer-1rct67q-container, .framer-E16C1.framer-17hg1m0-container, .framer-E16C1.framer-zlhfqt-container, .framer-E16C1.framer-ci77lm-container, .framer-E16C1.framer-1kg48ky-container, .framer-E16C1.framer-cz58t7-container { flex: none; height: 382px; left: calc(50.00000000000002% - 474px / 2); position: fixed; top: calc(50.054884742041736% - 382px / 2); width: 474px; z-index: 3; }\",\".framer-E16C1 .framer-p915uu { align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 56px; justify-content: center; overflow: visible; padding: 16px 30px 16px 30px; position: relative; text-decoration: none; width: 100%; }\",\".framer-E16C1 .framer-2sujw0 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px 20px 60px 20px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-14ulikg, .framer-E16C1 .framer-sv6k3u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-1pn0vxy, .framer-E16C1 .framer-cdyfk6, .framer-E16C1 .framer-o7gjz, .framer-E16C1 .framer-1uebuoq, .framer-E16C1 .framer-12sfwr7, .framer-E16C1 .framer-7pdtis { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: 0px 9px 50.79999923706055px 0px rgba(0, 0, 0, 0.15); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 28px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-11veszk, .framer-E16C1 .framer-prf2qu { aspect-ratio: 0.7849462365591398 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 74px); position: relative; width: 58px; }\",\".framer-E16C1 .framer-1npl3vy, .framer-E16C1 .framer-n1pjl3, .framer-E16C1 .framer-awtr9a, .framer-E16C1 .framer-137bqgk, .framer-E16C1 .framer-w2s40y, .framer-E16C1 .framer-1oitrl1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 294px; }\",\".framer-E16C1 .framer-vyk2mz, .framer-E16C1 .framer-1k6nhro, .framer-E16C1 .framer-1tomn7r, .framer-E16C1 .framer-1hxs11r, .framer-E16C1 .framer-14nbzjn, .framer-E16C1 .framer-bj1l2u, .framer-E16C1 .framer-sjcpsh, .framer-E16C1 .framer-wfaib1, .framer-E16C1 .framer-15929kl, .framer-E16C1 .framer-1nixm2, .framer-E16C1 .framer-17iclwz, .framer-E16C1 .framer-1eki03h { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 294px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1ktymjx, .framer-E16C1 .framer-jf8sc8, .framer-E16C1 .framer-msporo, .framer-E16C1 .framer-12mk93c, .framer-E16C1 .framer-hv8y31 { flex: none; height: 4px; position: relative; width: 296px; }\",\".framer-E16C1 .framer-1l83rnt, .framer-E16C1 .framer-qgxqzt { aspect-ratio: 1.25 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 74px); position: relative; width: 93px; }\",\".framer-E16C1 .framer-5rjij7, .framer-E16C1 .framer-pg4su3 { aspect-ratio: 1.2083333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 72px); position: relative; width: 87px; }\",\".framer-E16C1 .framer-1xehunv, .framer-E16C1 .framer-vmmcl4 { aspect-ratio: 1.180722891566265 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 72px); position: relative; width: 85px; }\",\".framer-E16C1 .framer-1bzw838, .framer-E16C1 .framer-17mhlm { aspect-ratio: 1.0344827586206897 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); position: relative; width: 83px; }\",\".framer-E16C1 .framer-8se24f { aspect-ratio: 1.876923076923077 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 67px); position: relative; width: 126px; }\",\".framer-E16C1 .framer-1wtel2a { flex: none; height: 3px; position: relative; width: 296px; }\",\".framer-E16C1 .framer-1lf8an8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 60px 20px 40px 20px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-r19vjc { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 390px; }\",\".framer-E16C1 .framer-18hqhz3, .framer-E16C1 .framer-fatsp1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-1080qq6, .framer-E16C1 .framer-11cwx09 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-dmhxc7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 122px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 350px; }\",\".framer-E16C1 .framer-1mubt00, .framer-E16C1 .framer-1nbi808, .framer-E16C1 .framer-kl4vwe, .framer-E16C1 .framer-10s9w7m, .framer-E16C1 .framer-1f632az, .framer-E16C1 .framer-6poj54, .framer-E16C1 .framer-q33nyw, .framer-E16C1 .framer-1uqpcri, .framer-E16C1 .framer-9v3byj, .framer-E16C1 .framer-1a6jur8, .framer-E16C1 .framer-1yq7txp, .framer-E16C1 .framer-1pndpy9, .framer-E16C1 .framer-1u2xxwa, .framer-E16C1 .framer-oqjnhu, .framer-E16C1 .framer-9tg2et, .framer-E16C1 .framer-ow0wgx, .framer-E16C1 .framer-16s9333, .framer-E16C1 .framer-1nhwn19 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 16px 0px 16px 0px; position: relative; width: 179px; }\",\".framer-E16C1 .framer-if7b6h, .framer-E16C1 .framer-geoh6k, .framer-E16C1 .framer-77glio, .framer-E16C1 .framer-gude4z, .framer-E16C1 .framer-st7t9c, .framer-E16C1 .framer-gc84do, .framer-E16C1 .framer-1y49ofe, .framer-E16C1 .framer-bnkwml, .framer-E16C1 .framer-zgvvur, .framer-E16C1 .framer-1nfay1g, .framer-E16C1 .framer-1hzkg34, .framer-E16C1 .framer-txpkhv, .framer-E16C1 .framer-1gngf7u, .framer-E16C1 .framer-7cl3jy, .framer-E16C1 .framer-1ni8vkz, .framer-E16C1 .framer-odwtkw, .framer-E16C1 .framer-1p91ofz, .framer-E16C1 .framer-151v61r, .framer-E16C1 .framer-1f0znls, .framer-E16C1 .framer-w6zthg { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 179px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-13exo1n { aspect-ratio: 1.0491803278688525 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 122px); position: relative; width: 128px; }\",\".framer-E16C1 .framer-5b254a, .framer-E16C1 .framer-1s3giis, .framer-E16C1 .framer-137jdh6, .framer-E16C1 .framer-g7667b, .framer-E16C1 .framer-1fdi095, .framer-E16C1 .framer-101y8lk, .framer-E16C1 .framer-1i0qp86, .framer-E16C1 .framer-1eq0v85, .framer-E16C1 .framer-nd13rf, .framer-E16C1 .framer-1jtce63, .framer-E16C1 .framer-1j5cxqv, .framer-E16C1 .framer-wtqn0d, .framer-E16C1 .framer-mqjthp, .framer-E16C1 .framer-11p2xq1, .framer-E16C1 .framer-1e52gwj, .framer-E16C1 .framer-r639jx, .framer-E16C1 .framer-hzo8uy, .framer-E16C1 .framer-qazho8, .framer-E16C1 .framer-h5e3iy, .framer-E16C1 .framer-1vul9ts, .framer-E16C1 .framer-59gr7a, .framer-E16C1 .framer-1ol69d0, .framer-E16C1 .framer-mi2ijk, .framer-E16C1 .framer-1czo0md { --border-bottom-width: 0px; --border-color: #000000; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-gymulg, .framer-E16C1 .framer-7a5uiz, .framer-E16C1 .framer-lubo1, .framer-E16C1 .framer-1mhprw4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 350px; }\",\".framer-E16C1 .framer-z9dbmd, .framer-E16C1 .framer-r0j5dh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 179px; }\",\".framer-E16C1 .framer-ot1tio, .framer-E16C1 .framer-feg81j { flex: none; height: 89px; position: relative; width: 128px; }\",\".framer-E16C1 .framer-qqqndf, .framer-E16C1 .framer-vsu7k2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 70px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 350px; }\",\".framer-E16C1 .framer-84sbkm, .framer-E16C1 .framer-1i0qbqc { flex: none; height: 70px; position: relative; width: 128px; }\",\".framer-E16C1 .framer-zmz6dv, .framer-E16C1 .framer-enlvr5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 108px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 350px; }\",\".framer-E16C1 .framer-llsxqr, .framer-E16C1 .framer-1t03gzu { flex: none; height: 108px; position: relative; width: 128px; }\",\".framer-E16C1 .framer-1tazz1g, .framer-E16C1 .framer-p84hq1, .framer-E16C1 .framer-10ryqmq, .framer-E16C1 .framer-m1c506 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 51px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 350px; }\",\".framer-E16C1 .framer-k4qfur, .framer-E16C1 .framer-ssgz1p, .framer-E16C1 .framer-lhjw0z, .framer-E16C1 .framer-dqyo0s, .framer-E16C1 .framer-1qpit9m, .framer-E16C1 .framer-19hlf6h { flex: none; height: 51px; position: relative; width: 128px; }\",\".framer-E16C1 .framer-1xd6r5c, .framer-E16C1 .framer-1gfg609 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 50px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 350px; }\",\".framer-E16C1 .framer-1azwfqs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 127px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 350px; }\",\".framer-E16C1 .framer-gwe6zt { flex: none; height: 127px; position: relative; width: 128px; }\",\".framer-E16C1 .framer-1ssyqd1, .framer-E16C1 .framer-egff2n { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-1mwl8h6 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: 120px; justify-content: flex-start; overflow: visible; padding: 60px 20px 60px 20px; position: relative; width: 390px; }\",\".framer-E16C1.framer-1y5l9i1-container, .framer-E16C1.framer-juluez-container, .framer-E16C1.framer-zoajkf-container { flex: none; height: 382px; left: calc(50.00000000000002% - 352px / 2); position: fixed; top: calc(50.00000000000002% - 382px / 2); width: 352px; z-index: 3; }\",\".framer-E16C1 .framer-1jwfna7 { align-content: flex-start; align-items: flex-start; background-color: #f6f7f9; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px 20px 60px 20px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-jtpj54, .framer-E16C1 .framer-9vaf2i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-1e8sipa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-1743j4d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-pbrsxg, .framer-E16C1 .framer-ty1i1o { --border-bottom-width: 1px; --border-color: #e5e7ec; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; 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: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-pjihew, .framer-E16C1 .framer-ol2fbv, .framer-E16C1 .framer-117xqud, .framer-E16C1 .framer-1cjfmjd, .framer-E16C1 .framer-1s10l0t, .framer-E16C1 .framer-151nfwp, .framer-E16C1 .framer-1lwg56l, .framer-E16C1 .framer-1fu82pz, .framer-E16C1 .framer-1sn141x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: visible; padding: 35px 27px 32px 27px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-1qdcoix, .framer-E16C1 .framer-1lnpx5i, .framer-E16C1 .framer-gtxgc8, .framer-E16C1 .framer-ulq3gx, .framer-E16C1 .framer-1u4so59, .framer-E16C1 .framer-1vhcy0a, .framer-E16C1 .framer-11vny2y, .framer-E16C1 .framer-1rmckk1, .framer-E16C1 .framer-1796ocz, .framer-E16C1 .framer-1nx2nam, .framer-E16C1 .framer-9iol3j, .framer-E16C1 .framer-1e9ofco, .framer-E16C1 .framer-1qvh46a, .framer-E16C1 .framer-12xqof, .framer-E16C1 .framer-tmzfrj, .framer-E16C1 .framer-1ai24np, .framer-E16C1 .framer-1dbah2u, .framer-E16C1 .framer-10cpo7j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-1icv0ci, .framer-E16C1 .framer-oa4szl, .framer-E16C1 .framer-11wdgjn, .framer-E16C1 .framer-5sxm3l, .framer-E16C1 .framer-1yc7krx, .framer-E16C1 .framer-r5z9ny { aspect-ratio: 1 / 1; background-color: rgba(86, 64, 255, 0.1); border-bottom-left-radius: 125px; border-bottom-right-radius: 125px; border-top-left-radius: 125px; border-top-right-radius: 125px; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-8n2snh, .framer-E16C1 .framer-1d7b7np, .framer-E16C1 .framer-qnqlbh, .framer-E16C1 .framer-7rmyn6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 13px; overflow: hidden; position: absolute; top: 13px; width: 24px; }\",\".framer-E16C1 .framer-1c6tz2d { flex: none; height: 17px; left: calc(50.00000000000002% - 14px / 2); position: absolute; top: calc(50.00000000000002% - 17px / 2); width: 14px; }\",\".framer-E16C1 .framer-1et43it, .framer-E16C1 .framer-1ucfoy3, .framer-E16C1 .framer-16lz4vm, .framer-E16C1 .framer-bldfw5, .framer-E16C1 .framer-1mzk44h, .framer-E16C1 .framer-1eqnr92, .framer-E16C1 .framer-1icccoe, .framer-E16C1 .framer-113kmwq, .framer-E16C1 .framer-93yetk, .framer-E16C1 .framer-1bh4tb0, .framer-E16C1 .framer-ocgj90, .framer-E16C1 .framer-1g3jmgu, .framer-E16C1 .framer-1xn03j8, .framer-E16C1 .framer-wmqmca, .framer-E16C1 .framer-wf036c, .framer-E16C1 .framer-1snvpjb, .framer-E16C1 .framer-nx3nn3, .framer-E16C1 .framer-1cxpe13, .framer-E16C1 .framer-21qvza, .framer-E16C1 .framer-1yt3qbc { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 296px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-ihda5q, .framer-E16C1 .framer-1hz1zmi, .framer-E16C1 .framer-dynkvh { --border-bottom-width: 0px; --border-color: #e5e7ec; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px 27px 30px 27px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-utyyol, .framer-E16C1 .framer-1rkjzjy, .framer-E16C1 .framer-1eacqc4, .framer-E16C1 .framer-rbb0sf, .framer-E16C1 .framer-8glfvn, .framer-E16C1 .framer-1z0z8hq, .framer-E16C1 .framer-1d2xd1o, .framer-E16C1 .framer-6123zw, .framer-E16C1 .framer-hz13ce { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-1exi1d7 { --border-bottom-width: 2px; --border-color: var(--token-655c4d75-f6f5-49e7-9be1-38155d2821e9, #fc691f); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; 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: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-cxugwk, .framer-E16C1 .framer-1hkah5, .framer-E16C1 .framer-ok3la3 { aspect-ratio: 1 / 1; background-color: rgba(252, 104, 30, 0.1); border-bottom-left-radius: 125px; border-bottom-right-radius: 125px; border-top-left-radius: 125px; border-top-right-radius: 125px; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-zjrm5d, .framer-E16C1 .framer-1b7uzh1, .framer-E16C1 .framer-1tuisnj, .framer-E16C1 .framer-1o9zjgb { flex: none; height: 24px; left: calc(50% - 24px / 2); overflow: hidden; position: absolute; top: 13px; width: 24px; }\",\".framer-E16C1 .framer-15rbbtn, .framer-E16C1 .framer-flwzbp, .framer-E16C1 .framer-13dxx7j { flex: none; height: 23px; left: calc(50.00000000000002% - 21px / 2); position: absolute; top: 0px; width: 21px; }\",\".framer-E16C1 .framer-1diemj2, .framer-E16C1 .framer-3l6jz3, .framer-E16C1 .framer-1jgwfmd, .framer-E16C1 .framer-1um3gjj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 50%; overflow: hidden; position: absolute; top: 13px; transform: translateX(-50%); width: 24px; }\",\".framer-E16C1 .framer-s91bdy, .framer-E16C1 .framer-1gwsx53, .framer-E16C1 .framer-1dcaneu { flex: none; height: 20px; left: calc(50.00000000000002% - 21px / 2); position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 21px; }\",\".framer-E16C1 .framer-145s2w { --border-bottom-width: 1px; --border-color: var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, #563fff); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 56px; justify-content: center; overflow: visible; padding: 16px 30px 16px 30px; position: relative; text-decoration: none; width: 100%; }\",\".framer-E16C1 .framer-7kuqow-container { flex: none; height: 60px; position: relative; width: 355px; }\",\".framer-E16C1 .framer-1png45u { align-content: flex-start; align-items: flex-start; background-color: var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, #563fff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px 20px 50px 20px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-re98nl, .framer-E16C1 .framer-1v9i177, .framer-E16C1 .framer-d6ozxh, .framer-E16C1 .framer-nlijr4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-5t920d { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 56px; justify-content: center; overflow: visible; padding: 16px 30px 16px 30px; position: relative; text-decoration: none; width: 100%; }\",\".framer-E16C1 .framer-8ecn5k { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 56px; justify-content: center; overflow: visible; padding: 16px 30px 16px 30px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-16ue1bx { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 20px 52px 20px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-1tckv12 { background-color: var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, #563fff); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: 851px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-1xmqyax { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 28px; position: absolute; top: 42px; white-space: pre-wrap; width: 277px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-f8voih { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 197px; width: 350px; }\",\".framer-E16C1 .framer-134grb2, .framer-E16C1 .framer-1expy98, .framer-E16C1 .framer-3htk8f, .framer-E16C1 .framer-1p3ddqg, .framer-E16C1 .framer-s22g8, .framer-E16C1 .framer-rjvd2z, .framer-E16C1 .framer-bzrz3j, .framer-E16C1 .framer-3au4in { flex: none; height: 4px; position: relative; width: 352px; }\",\".framer-E16C1 .framer-1pa3ezi, .framer-E16C1 .framer-1wu6t43, .framer-E16C1 .framer-1u9pigk, .framer-E16C1 .framer-ksuicj, .framer-E16C1 .framer-1czz425 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 294px; }\",\".framer-E16C1 .framer-kh08nt, .framer-E16C1 .framer-p0h0mt, .framer-E16C1 .framer-1k0bzr5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 185px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1gzabbo { flex: none; height: 66px; position: relative; width: 65px; }\",\".framer-E16C1 .framer-zvnqjs { flex: none; height: 66px; position: relative; width: 82px; }\",\".framer-E16C1 .framer-f8tm66 { flex: none; height: 61px; position: relative; width: 72px; }\",\".framer-E16C1 .framer-jh13ov, .framer-E16C1 .framer-kcqlu6 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 201px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1q9qoir { flex: none; height: 59px; position: relative; width: 70px; }\",\".framer-E16C1 .framer-1gdqrrz { flex: none; height: 59px; position: relative; width: 77px; }\",\".framer-E16C1 .framer-arv6e3 { align-content: center; align-items: center; background-color: #070b0e; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 20px 40px 20px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-d9g5sm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 350px; }\",\".framer-E16C1 .framer-40fx5i { flex: none; height: 200px; overflow: hidden; position: relative; width: 100%; }\",\".framer-E16C1 .framer-6m5rx2 { flex: none; height: 28px; overflow: hidden; position: absolute; right: 0px; top: calc(51.06382978723406% - 28px / 2); width: 68px; }\",\".framer-E16C1 .framer-1x39w5e { aspect-ratio: 0.9743589743589743 / 1; bottom: 0px; flex: none; left: 0px; position: absolute; text-decoration: none; top: 0px; width: var(--framer-aspect-ratio-supported, 27px); }\",\".framer-E16C1 .framer-1cmxcnt { flex: none; height: 28px; position: absolute; right: 0px; text-decoration: none; top: calc(50.00000000000002% - 28px / 2); width: 28px; }\",\".framer-E16C1 .framer-1uq6mwi, .framer-E16C1 .framer-3d2a7e { aspect-ratio: 4.741860465116279 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); left: 0px; position: absolute; top: 51%; transform: translateY(-50%); width: 160px; }\",\".framer-E16C1 .framer-16etfwe, .framer-E16C1 .framer-1i6kq6y, .framer-E16C1 .framer-3nb9w8, .framer-E16C1 .framer-1udhkb5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-2zbkt4 { --border-bottom-width: 1px; --border-color: var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, #563fff); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 43px; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: 1px; }\",\".framer-E16C1 .framer-1o5h1lm { align-content: center; align-items: center; background-color: var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, #563fff); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 43px; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: 1px; }\",\".framer-E16C1 .framer-axqyob { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-ie2hou, .framer-E16C1 .framer-1nx9qap, .framer-E16C1 .framer-sqj20e { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.4; position: relative; white-space: pre; width: auto; }\",\".framer-E16C1 .framer-1qf2gla { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 58px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-1e2i5vh, .framer-E16C1 .framer-d1bpj8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 127px; }\",\".framer-E16C1 .framer-xo0ef, .framer-E16C1 .framer-1tc4nwp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-cbtfmv, .framer-E16C1 .framer-1l6eb7u, .framer-E16C1 .framer-upziw3, .framer-E16C1 .framer-1q5ftks, .framer-E16C1 .framer-1an7xb8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-ciskgh, .framer-E16C1 .framer-xwge6p, .framer-E16C1 .framer-23ij5w, .framer-E16C1 .framer-1jg0wcs, .framer-E16C1 .framer-1e52ohg, .framer-E16C1 .framer-stfuro, .framer-E16C1 .framer-v10bvo, .framer-E16C1 .framer-18xqg7w, .framer-E16C1 .framer-1ayndok, .framer-E16C1 .framer-1d3g9cs, .framer-E16C1 .framer-62r3bx, .framer-E16C1 .framer-zhb7fg, .framer-E16C1 .framer-1co0ijq, .framer-E16C1 .framer-1qbqxnp { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.3; position: relative; white-space: pre; width: auto; }\",\".framer-E16C1 .framer-1menv9k { flex: none; height: 33px; overflow: visible; position: relative; width: 48px; }\",\".framer-E16C1 .framer-ajpxsq { flex: none; height: 33px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 48px; }\",\".framer-E16C1 .framer-6gd7b5, .framer-E16C1 .framer-1whm373 { aspect-ratio: 1.4222222222222223 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); overflow: visible; position: relative; width: 51px; }\",\".framer-E16C1 .framer-1qdj8fk { --border-bottom-width: 1px; --border-color: rgba(82, 95, 126, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1048px; height: 84px; justify-content: flex-start; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: fixed; top: 0px; width: 100%; z-index: 2; }\",\".framer-E16C1 .framer-1pvq070 { --border-bottom-width: 1px; --border-color: rgba(81, 94, 125, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background-color: #ffffff; flex: none; height: 84px; overflow: visible; position: relative; width: 100%; }\",\".framer-E16C1 .framer-1dggplw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 43px; justify-content: space-between; left: 0px; overflow: visible; padding: 0px 80px 0px 80px; position: absolute; right: 0px; top: calc(48.837209302325604% - 43px / 2); }\",\".framer-E16C1 .framer-n1aigx { aspect-ratio: 4.741860465116279 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; text-decoration: none; width: 142px; }\",\".framer-E16C1 .framer-1q9e3hx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-on9lgk-container { flex: none; height: 43px; position: relative; width: auto; }\",\".framer-E16C1 .framer-1dz6m35 { align-content: center; align-items: center; background-color: #070b0e; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100px; justify-content: center; overflow: hidden; padding: 32px 80px 32px 80px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-vu4k7y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 108px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-E16C1 .framer-162nl6t { flex: none; height: 36px; position: relative; width: 1038px; }\",\".framer-E16C1 .framer-ulmqoa { align-content: center; align-items: center; background-color: rgba(86, 64, 255, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 70px 80px 70px 80px; position: relative; scroll-margin-top: 120px; width: 100%; z-index: 0; }\",\".framer-E16C1 .framer-17gooop { flex: none; height: 696px; overflow: hidden; position: relative; width: 1280px; z-index: 1; }\",\".framer-E16C1 .framer-109q8yq { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 542px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1gvzla4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 126px; width: min-content; }\",\".framer-E16C1 .framer-1ihqh29, .framer-E16C1 .framer-1crbn1l { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 383px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-crfqn9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 51%; position: absolute; top: 177px; transform: translateX(-50%); white-space: pre-wrap; width: 301px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1iwdthj { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 214px; transform: translateX(-50%); white-space: pre-wrap; width: 281px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-18bmbdu { --framer-paragraph-spacing: 0px; bottom: 131px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); white-space: pre-wrap; width: 280px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-d6fhk9 { --framer-paragraph-spacing: 0px; bottom: 5px; flex: none; height: auto; left: 53%; position: absolute; transform: translateX(-50%); white-space: pre-wrap; width: 368px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-jqa3z0 { --framer-paragraph-spacing: 0px; bottom: 131px; flex: none; height: auto; left: 910px; position: absolute; white-space: pre-wrap; width: 280px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-m087cq { --framer-paragraph-spacing: 0px; bottom: 5px; flex: none; height: auto; position: absolute; right: 0px; white-space: pre-wrap; width: 370px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1sq6laf { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 910px; position: absolute; top: 177px; white-space: pre-wrap; width: 280px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-j1ltwu { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: absolute; right: 0px; top: 214px; white-space: pre-wrap; width: 370px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-5kmhnx-container { bottom: 260px; flex: none; height: auto; left: 0px; position: absolute; width: auto; }\",\".framer-E16C1 .framer-4u5ldw-container { bottom: 260px; flex: none; height: auto; left: 175px; position: absolute; width: auto; }\",\".framer-E16C1 .framer-zin0fj { aspect-ratio: 1.2112676056338028 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 145px); left: 910px; position: absolute; top: 2px; width: 176px; z-index: 1; }\",\".framer-E16C1 .framer-8m2v8a { aspect-ratio: 0.8053691275167785 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 149px); left: 498px; position: absolute; top: 0px; width: 120px; }\",\".framer-E16C1 .framer-c2o4be { aspect-ratio: 1.2764227642276422 / 1; bottom: 192px; flex: none; height: var(--framer-aspect-ratio-supported, 123px); left: 910px; position: absolute; width: 157px; }\",\".framer-E16C1 .framer-12m7wup { aspect-ratio: 1.2622950819672132 / 1; bottom: 192px; flex: none; height: var(--framer-aspect-ratio-supported, 121px); left: 498px; position: absolute; width: 153px; }\",\".framer-E16C1 .framer-11b8uf0 { background-color: #ffffff; flex: none; height: 1306px; overflow: visible; position: relative; scroll-margin-top: 80px; width: 100%; }\",\".framer-E16C1 .framer-hfik95 { flex: none; height: 1126px; left: calc(50% - 1280px / 2); overflow: visible; position: absolute; top: calc(50.61255742725881% - 1126px / 2); width: 1280px; }\",\".framer-E16C1 .framer-7qh5pf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 189px; width: 100%; }\",\".framer-E16C1 .framer-z9mgxz { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-1yumae0 { background-color: #ffffff; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: 0px 9px 50.79999923706055px 0px rgba(0, 0, 0, 0.15); flex: none; height: 448px; overflow: hidden; position: relative; width: 620px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-1cx2dyo { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 56px; position: absolute; top: 53px; white-space: pre-wrap; width: 239px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-tpmdlm { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 56px; position: absolute; top: 294px; white-space: pre-wrap; width: 429px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1bprvfx { aspect-ratio: 1.5279503105590062 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 161px); position: absolute; right: 0px; top: 0px; width: 246px; }\",\".framer-E16C1 .framer-1ozo82u { background-color: #9a6cfe; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: 0px 9px 50.79999923706055px 0px rgba(0, 0, 0, 0.15); flex: none; height: 448px; overflow: hidden; position: relative; width: 620px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-41eibo { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 56px; position: absolute; top: 53px; white-space: pre-wrap; width: 275px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-cftrdw { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 56px; position: absolute; top: 294px; white-space: pre-wrap; width: 386px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1nrpvda { flex: none; height: 162px; left: 426px; position: absolute; top: 52px; width: 138px; }\",\".framer-E16C1 .framer-1pgi3nh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 41px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-zsnzqg { background-color: #e0d1ff; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: 0px 9px 50.79999923706055px 0px rgba(0, 0, 0, 0.15); flex: none; height: 285px; overflow: hidden; position: relative; width: 620px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-tiqm0y { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 56px; position: absolute; top: 53px; white-space: pre-wrap; width: 268px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1egc8e4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 56px; position: absolute; top: 158px; white-space: pre-wrap; width: 378px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1imjizw { aspect-ratio: 1.789855072463768 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 138px); position: absolute; right: 0px; top: 0px; width: 247px; }\",\".framer-E16C1 .framer-ld3bfn { background-color: #563fff; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: 0px 9px 50.79999923706055px 0px rgba(0, 0, 0, 0.15); flex: none; height: 285px; overflow: hidden; position: relative; width: 620px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-16itqi8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 56px; position: absolute; top: 53px; white-space: pre-wrap; width: 363px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-4u5xum { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 56px; position: absolute; top: 158px; white-space: pre-wrap; width: 398px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1nrnusk { aspect-ratio: 1.2533333333333334 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 150px); position: absolute; right: -1px; top: -7px; width: 188px; }\",\".framer-E16C1 .framer-oltf1q { background-color: #ffffff; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: 0px 9px 50.79999923706055px 0px rgba(0, 0, 0, 0.15); flex: none; height: 285px; overflow: hidden; position: relative; width: 620px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-18w904s { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 56px; position: absolute; top: 53px; white-space: pre-wrap; width: 319px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-rwh6tx { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 56px; position: absolute; top: 158px; white-space: pre-wrap; width: 372px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-vl8jku { aspect-ratio: 1.3227848101265822 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 158px); position: absolute; right: 0px; top: 0px; width: 209px; }\",\".framer-E16C1 .framer-sr3h1d { --framer-paragraph-spacing: 0px; bottom: 34px; flex: none; height: auto; left: 48%; position: absolute; transform: translateX(-50%); white-space: pre-wrap; width: 276px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-o7xel { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; left: 317px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: min-content; }\",\".framer-E16C1 .framer-zwuyzr { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 542px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-f3e0tu { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 643px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1xxt622 { background-color: #ffffff; flex: none; height: 1148px; overflow: visible; position: relative; width: 100%; }\",\".framer-E16C1 .framer-1ui34n4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 47%; transform: translate(-50%, -50%); width: 1280px; }\",\".framer-E16C1 .framer-tgzcou { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-14c6ey1, .framer-E16C1 .framer-4gclvw { 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; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-kvovpj, .framer-E16C1 .framer-18cpfds, .framer-E16C1 .framer-rrjlnw { background-color: #ffffff; border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; border-top-left-radius: 22px; border-top-right-radius: 22px; box-shadow: 0px 9px 50.79999923706055px 0px rgba(0, 0, 0, 0.15); flex: none; height: 436px; overflow: hidden; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-e0nqt1, .framer-E16C1 .framer-1x6f2hw, .framer-E16C1 .framer-1qu920e, .framer-E16C1 .framer-1i9en5t, .framer-E16C1 .framer-1xmbdx6 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 22px; position: absolute; top: 163px; white-space: pre-wrap; width: 353px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1bp1afj, .framer-E16C1 .framer-18f4ob1, .framer-E16C1 .framer-ny8ab4 { flex: none; height: 4px; left: 21px; position: absolute; top: 207px; width: 358px; }\",\".framer-E16C1 .framer-f0xko2, .framer-E16C1 .framer-15hbb5d, .framer-E16C1 .framer-jjrd0i { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 22px; position: absolute; top: 231px; white-space: pre-wrap; width: 356px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1wfk8nu { aspect-ratio: 0.7849462365591398 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 93px); left: 22px; position: absolute; top: 36px; width: 73px; }\",\".framer-E16C1 .framer-q4by27 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 22px; position: absolute; top: 231px; white-space: pre-wrap; width: 361px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1vf1awq { flex: none; height: 84px; left: 22px; overflow: visible; position: absolute; top: 42px; width: 104px; }\",\".framer-E16C1 .framer-xycsaf { aspect-ratio: 1.25 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 84px); left: 21px; position: absolute; top: 40px; width: 105px; }\",\".framer-E16C1 .framer-fb63e { aspect-ratio: 1.2083333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 72px); left: 22px; position: absolute; top: 48px; width: 87px; }\",\".framer-E16C1 .framer-usnvqs, .framer-E16C1 .framer-1o4imu6, .framer-E16C1 .framer-zybry4 { background-color: #ffffff; border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; border-top-left-radius: 22px; border-top-right-radius: 22px; box-shadow: 0px 9px 50.79999923706055px 0px rgba(0, 0, 0, 0.15); flex: none; height: 460px; overflow: hidden; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-10m0oum, .framer-E16C1 .framer-1ei4j5y { flex: none; height: 3px; left: 21px; position: absolute; top: 208px; width: 358px; }\",\".framer-E16C1 .framer-1tg8aui { aspect-ratio: 1.180722891566265 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 83px); left: 22px; position: absolute; top: 43px; width: 98px; }\",\".framer-E16C1 .framer-161s0b8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 22px; position: absolute; top: 164px; white-space: pre-wrap; width: 353px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-129inhr { flex: none; height: 4px; left: 21px; position: absolute; top: 208px; width: 358px; }\",\".framer-E16C1 .framer-a0ez0g { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 22px; position: absolute; top: 232px; white-space: pre-wrap; width: 356px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-a18tot { aspect-ratio: 1.0344827586206897 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 87px); left: 22px; position: absolute; top: 40px; width: 90px; }\",\".framer-E16C1 .framer-ye7chi { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 22px; position: absolute; top: 231px; white-space: pre-wrap; width: 345px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-12fvq0q { aspect-ratio: 1.876923076923077 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 65px); left: 22px; position: absolute; top: 51px; width: 122px; }\",\".framer-E16C1 .framer-hqygcv { background-color: rgba(86, 64, 255, 0.1); flex: none; height: 632px; overflow: visible; position: relative; scroll-margin-top: 140px; width: 100%; }\",\".framer-E16C1 .framer-1ci4q21 { flex: none; height: 473px; left: calc(50% - 1280px / 2); overflow: visible; position: absolute; top: calc(46.964930280854425% - 473px / 2); width: 1280px; }\",\".framer-E16C1 .framer-sb6soe { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 65px; width: min-content; }\",\".framer-E16C1 .framer-kxsvue { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 518px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-tpzpyq { flex: none; height: 54px; overflow: visible; position: relative; width: 371px; }\",\".framer-E16C1 .framer-15az58e-container { flex: none; height: auto; left: 0px; position: absolute; top: 50%; transform: translateY(-50%); width: auto; }\",\".framer-E16C1 .framer-aveqp-container { flex: none; height: auto; left: 175px; position: absolute; top: 50%; transform: translateY(-50%); width: auto; }\",\".framer-E16C1 .framer-pndfjh { bottom: 0px; flex: none; left: 653px; overflow: visible; position: absolute; right: -194px; top: 0px; }\",\".framer-E16C1 .framer-1wp91ax { bottom: -2px; flex: none; left: -12px; position: absolute; right: -10px; top: 473px; }\",\".framer-E16C1 .framer-nz6k52 { bottom: 15px; flex: none; left: 66px; position: absolute; right: 67px; top: -1px; }\",\".framer-E16C1 .framer-cmbe28 { bottom: 1px; flex: none; left: 0px; position: absolute; right: 0px; top: 448px; }\",\".framer-E16C1 .framer-e1hg5p { bottom: 1px; flex: none; left: 0px; position: absolute; right: 0px; top: 463px; }\",\".framer-E16C1 .framer-178sq7d, .framer-E16C1 .framer-cs3qac { bottom: 17px; flex: none; left: 350px; position: absolute; right: 351px; top: 447px; }\",\".framer-E16C1 .framer-1d8ihmf { background-color: #1b1b1b; bottom: 25px; flex: none; left: 67px; position: absolute; right: 67px; top: 434px; }\",\".framer-E16C1 .framer-13dxcb1-container { flex: none; height: 400px; position: absolute; right: -110px; top: calc(45.87737843551799% - 400px / 2); width: 654px; }\",\".framer-E16C1 .framer-1paim2d { --border-bottom-width: 1px; --border-color: rgba(81, 93, 125, 0.3); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 97px 80px 80px 80px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-1bufuka { flex: none; height: 1826px; overflow: visible; position: relative; width: 1280px; }\",\".framer-E16C1 .framer-1p6f3sl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; left: 212px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: min-content; }\",\".framer-E16C1 .framer-hug7ms { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 855px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-s75hjf { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 609px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-17u98vb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 379px; width: min-content; }\",\".framer-E16C1 .framer-1lhd3xg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 133px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-E16C1 .framer-rqe5n3 { flex: none; height: 100%; overflow: visible; position: relative; width: 700px; }\",\".framer-E16C1 .framer-1ckghh1 { background-color: #f4e6e6; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 133px; left: 533px; overflow: visible; position: absolute; top: 0px; width: 168px; }\",\".framer-E16C1 .framer-1y538nm, .framer-E16C1 .framer-kurxvk, .framer-E16C1 .framer-1nhc9wt { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 12px; position: absolute; top: 54px; white-space: pre; width: auto; }\",\".framer-E16C1 .framer-awvwgk { background-color: #f4e6e6; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 133px; left: 355px; overflow: visible; position: absolute; top: 0px; width: 168px; }\",\".framer-E16C1 .framer-tv7jix { background-color: #f4e6e6; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 133px; left: 178px; overflow: visible; position: absolute; top: 0px; width: 168px; }\",\".framer-E16C1 .framer-9bc54c { background-color: #e1f3f3; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 133px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 168px; }\",\".framer-E16C1 .framer-1ncp5br { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-E16C1 .framer-68rri6 { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 109px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-E16C1 .framer-1mdrwan, .framer-E16C1 .framer-1qhvqoz, .framer-E16C1 .framer-1izlkin, .framer-E16C1 .framer-1kxstjb, .framer-E16C1 .framer-1bwnymg { flex: none; height: 111px; position: relative; width: 700px; }\",\".framer-E16C1 .framer-5r316o, .framer-E16C1 .framer-1u3i5c, .framer-E16C1 .framer-2ikotd, .framer-E16C1 .framer-13rgx4a, .framer-E16C1 .framer-m275zr, .framer-E16C1 .framer-ka3sei, .framer-E16C1 .framer-7umn1c, .framer-E16C1 .framer-t2sg9u { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 80px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-E16C1 .framer-d7p4ev, .framer-E16C1 .framer-euo3m5, .framer-E16C1 .framer-b4j4z4, .framer-E16C1 .framer-iibadv, .framer-E16C1 .framer-qy7fh8, .framer-E16C1 .framer-ks3grz, .framer-E16C1 .framer-94cqbn, .framer-E16C1 .framer-fu3bb6 { flex: none; height: 81px; position: relative; width: 700px; }\",\".framer-E16C1 .framer-180dl1m, .framer-E16C1 .framer-1elb1pi, .framer-E16C1 .framer-4scdeg, .framer-E16C1 .framer-1tnkuq5 { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 110px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-E16C1 .framer-pjpa02-container { bottom: 0px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); width: auto; }\",\".framer-E16C1 .framer-rjtei1 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 90px 80px 90px 80px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-bbnx3n { flex: none; height: 633px; overflow: visible; position: relative; width: 1280px; }\",\".framer-E16C1 .framer-f6ozvk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 168px; width: min-content; }\",\".framer-E16C1 .framer-164v92q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-6wndr7 { bottom: 0px; flex: none; position: absolute; right: -4px; top: 0px; width: 627px; }\",\".framer-E16C1 .framer-1bbxtg0, .framer-E16C1 .framer-x8l9fp { align-content: center; align-items: center; background-color: #f6f7f9; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 20px 70px 20px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-1y1pgfd, .framer-E16C1 .framer-srjm39 { 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: visible; padding: 0px; position: relative; width: 770px; }\",\".framer-E16C1 .framer-wc02hg, .framer-E16C1 .framer-w3t4z4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-19eprnc, .framer-E16C1 .framer-16hje3c, .framer-E16C1 .framer-eewlzs, .framer-E16C1 .framer-147jonn, .framer-E16C1 .framer-4s83j6 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 770px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-19nio1t, .framer-E16C1 .framer-1yjogcz { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-qmvr02 { align-content: center; align-items: center; background-color: #ffffff; 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: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 181%; }\",\".framer-E16C1 .framer-wy7len { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 54px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-1pj0i7m { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 50%; transform: translateY(-50%); white-space: pre-wrap; width: 375px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-E16C1 .framer-16n8maa { bottom: 0px; flex: none; overflow: visible; position: absolute; right: 0px; top: 0px; width: 349px; z-index: 1; }\",\".framer-E16C1 .framer-r286k5, .framer-E16C1 .framer-oi8kh { --border-bottom-width: 1px; --border-color: var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, #563fff); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 16px 30px 16px 30px; position: absolute; text-decoration: none; top: 0px; width: min-content; }\",\".framer-E16C1 .framer-1jdwhhq, .framer-E16C1 .framer-12i1gxs { align-content: center; align-items: center; background-color: var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, #563fff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 185px; overflow: visible; padding: 16px 30px 16px 30px; position: absolute; top: 0px; width: min-content; }\",\".framer-E16C1 .framer-1f8i54m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: 600px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-1yh419u { --border-bottom-width: 1px; --border-color: #e5e7ec; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 600px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-1um66og, .framer-E16C1 .framer-vhelci { flex: none; height: 17px; left: calc(54.166666666666686% - 14px / 2); position: absolute; top: calc(50.00000000000002% - 17px / 2); width: 14px; }\",\".framer-E16C1 .framer-187iv0, .framer-E16C1 .framer-vj3d64, .framer-E16C1 .framer-1nntu2u, .framer-E16C1 .framer-62r9pp, .framer-E16C1 .framer-1e13x21, .framer-E16C1 .framer-yjfx3k { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 103px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-9meyqd, .framer-E16C1 .framer-1eql1ch, .framer-E16C1 .framer-1m8g9s, .framer-E16C1 .framer-1qwy636, .framer-E16C1 .framer-19oa03s, .framer-E16C1 .framer-dofyiu, .framer-E16C1 .framer-1vbhj6d, .framer-E16C1 .framer-18yzvjg, .framer-E16C1 .framer-ec9seo, .framer-E16C1 .framer-pn3rlm, .framer-E16C1 .framer-zr42lz, .framer-E16C1 .framer-1fvv42g, .framer-E16C1 .framer-1fu4pli, .framer-E16C1 .framer-4tqwdm, .framer-E16C1 .framer-1tthiob, .framer-E16C1 .framer-orrecb, .framer-E16C1 .framer-11eaehs, .framer-E16C1 .framer-t17aul, .framer-E16C1 .framer-w2inwm, .framer-E16C1 .framer-12hh36t, .framer-E16C1 .framer-1gmmcme { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-uivn38, .framer-E16C1 .framer-pz1swh, .framer-E16C1 .framer-1szdqcf, .framer-E16C1 .framer-1wwk02j, .framer-E16C1 .framer-sjoo9h, .framer-E16C1 .framer-b6bc8r { --border-bottom-width: 0px; --border-color: #e5e7ec; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px 27px 30px 27px; position: relative; width: 410px; }\",\".framer-E16C1 .framer-ltb8ck { --border-bottom-width: 2px; --border-color: var(--token-655c4d75-f6f5-49e7-9be1-38155d2821e9, #fc691f); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 600px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-i6yhkk, .framer-E16C1 .framer-15ou37x { --border-bottom-width: 1px; --border-color: #e5e7ec; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-tazws0-container, .framer-E16C1 .framer-phfuwg-container { flex: none; height: 32px; position: relative; width: 1364px; }\",\".framer-E16C1 .framer-7b6nrq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-E16C1 .framer-ch42ze { background-color: #563fff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 113px; overflow: hidden; position: relative; width: 101%; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-w3lli4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; left: 27px; overflow: visible; padding: 0px; position: absolute; top: 31px; width: min-content; }\",\".framer-E16C1 .framer-oid0w7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-12l1aft { flex: none; height: 53px; position: relative; width: 3px; }\",\".framer-E16C1 .framer-1mvczh9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 556px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-nvdbey { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; left: 916px; overflow: hidden; padding: 0px; position: absolute; top: 30px; width: min-content; }\",\".framer-E16C1 .framer-1qeenns { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 110px 80px 110px 80px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-3uq7bq { flex: none; height: 1015px; overflow: visible; position: relative; width: 1280px; }\",\".framer-E16C1 .framer-19kr644 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; left: 347px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: min-content; }\",\".framer-E16C1 .framer-1dmask2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 382px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-vvhgxx { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 919px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-E16C1 .framer-o36wk4 { aspect-ratio: 2.08071367884452 / 1; bottom: 163px; flex: none; height: var(--framer-aspect-ratio-supported, 577px); left: 50%; overflow: visible; position: absolute; transform: translateX(-50%); width: 1201px; }\",\".framer-E16C1 .framer-mtiw4g { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 50px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-8yaezi { background-color: #563fff; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: 452px; overflow: hidden; position: relative; width: 1280px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-lv2ahh { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; left: 79px; overflow: visible; padding: 0px; position: absolute; top: 216px; width: min-content; }\",\".framer-E16C1 .framer-17bd5hr, .framer-E16C1 .framer-89h6hi, .framer-E16C1 .framer-1812n9f, .framer-E16C1 .framer-1o4fe77, .framer-E16C1 .framer-15cpxbw { flex: none; height: 159px; overflow: visible; position: relative; width: 185px; }\",\".framer-E16C1 .framer-q57oas, .framer-E16C1 .framer-6ayw62 { flex: none; height: 66px; left: 0px; position: absolute; top: 8px; width: 65px; }\",\".framer-E16C1 .framer-3emh00, .framer-E16C1 .framer-1m9jsz7, .framer-E16C1 .framer-74hlbi, .framer-E16C1 .framer-uy99kz, .framer-E16C1 .framer-xjvxjz, .framer-E16C1 .framer-1utpc89, .framer-E16C1 .framer-2jwwpu, .framer-E16C1 .framer-55qpr8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 111px; white-space: pre-wrap; width: 185px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-fp0xui, .framer-E16C1 .framer-8qyet6 { flex: none; height: 75px; left: 0px; position: absolute; top: 5px; width: 69px; }\",\".framer-E16C1 .framer-198mrxk, .framer-E16C1 .framer-1aw92vd { flex: none; height: 69px; left: 0px; position: absolute; top: 10px; width: 81px; }\",\".framer-E16C1 .framer-1m2va2j, .framer-E16C1 .framer-3j1u0x { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 111px; white-space: pre-wrap; width: 203px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-is37k4 { flex: none; height: 78px; left: 0px; position: absolute; top: 4px; width: 93px; }\",\".framer-E16C1 .framer-189uzvi { flex: none; height: 69px; left: 0px; position: absolute; top: 11px; width: 69px; }\",\".framer-E16C1 .framer-1fwsore { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 79px; position: absolute; top: 79px; white-space: pre; width: auto; }\",\".framer-E16C1 .framer-qc8b0g { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-ihgc0a { flex: none; height: 637px; overflow: visible; position: relative; width: 1280px; }\",\".framer-E16C1 .framer-ege29c { flex: none; height: 639px; left: 551px; position: absolute; top: 0px; width: 686px; }\",\".framer-E16C1 .framer-vtyn8r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 54%; transform: translateY(-50%); width: min-content; }\",\".framer-E16C1 .framer-sqwxai, .framer-E16C1 .framer-1tn7c8z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-1xy752l { flex: none; height: 132px; overflow: visible; position: relative; width: 477px; }\",\".framer-E16C1 .framer-1mtb0y3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 477px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-a98wuy, .framer-E16C1 .framer-13q14pk { 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: 100%; }\",\".framer-E16C1 .framer-ksvm23 { background: linear-gradient(135deg, var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, #563fff) 0%, rgb(46, 26, 199) 114.00000000000001%); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: 413px; overflow: hidden; position: relative; width: 1280px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-i7tf8b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 82px; transform: translateX(-50%); width: min-content; }\",\".framer-E16C1 .framer-1xb3djs { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 494px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-uvbszi-container { bottom: 90px; flex: none; height: auto; left: 469px; position: absolute; width: auto; }\",\".framer-E16C1 .framer-5ddts6-container { bottom: 90px; flex: none; height: auto; left: 642px; position: absolute; width: auto; }\",\".framer-E16C1 .framer-1a4g9t5 { 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: 80px 0px 80px 0px; position: relative; scroll-margin-top: 120px; width: 100%; }\",\".framer-E16C1 .framer-1ad3k7v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-E16C1 .framer-1pb5hnr { align-content: flex-start; align-items: flex-start; 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: 52%; }\",\".framer-E16C1 .framer-h0nnc6, .framer-E16C1 .framer-cspqo, .framer-E16C1 .framer-1kcx3n3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-nkw9ka, .framer-E16C1 .framer-1fw3vdj { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 314px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-viyvh0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 29px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-m10ow1-container, .framer-E16C1 .framer-t6p301-container, .framer-E16C1 .framer-19zsamu-container { flex: none; height: auto; position: relative; width: 620px; }\",\".framer-E16C1 .framer-1de00cd, .framer-E16C1 .framer-oyzpwr { flex: none; height: 4px; position: relative; width: 622px; }\",\".framer-E16C1 .framer-173ca2x { background-color: #070b0e; flex: none; height: 527px; overflow: hidden; position: relative; width: 100%; }\",\".framer-E16C1 .framer-vwv6ik { flex: none; height: 429px; left: calc(50.000559488932296% - 1280.01611328125px / 2); overflow: visible; position: absolute; top: calc(50.00492798083195% - 429.05194091796875px / 2); width: 1280px; }\",\".framer-E16C1 .framer-cxdr97 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 169px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: calc(49.650349650349675% - 169px / 2); width: 32%; }\",\".framer-E16C1 .framer-1g8f1ah { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: flex-start; left: 609px; overflow: visible; padding: 0px; position: absolute; top: 143px; width: min-content; }\",\".framer-E16C1 .framer-1gkr7wy, .framer-E16C1 .framer-7azy15 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 127px; }\",\".framer-E16C1 .framer-13prxio { flex: none; height: 99px; left: 966px; overflow: visible; position: absolute; top: 188px; width: 63px; }\",\".framer-E16C1 .framer-1q6lk81, .framer-E16C1 .framer-1hi5co6 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-E16C1 .framer-xzzlba, .framer-E16C1 .framer-f0cbgz { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 40px; white-space: pre; width: auto; }\",\".framer-E16C1 .framer-umayun { flex: none; height: 44px; left: 0px; overflow: visible; position: absolute; top: 385px; width: 1280px; }\",\".framer-E16C1 .framer-1oqjqux { flex: none; height: 44px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 64px; }\",\".framer-E16C1 .framer-1hus0ab { flex: none; height: 44px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 64px; }\",\".framer-E16C1 .framer-37irij { aspect-ratio: 1.4222222222222223 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 43px); left: 48%; overflow: visible; position: absolute; transform: translateX(-50%); width: 61px; }\",\".framer-E16C1 .framer-uiqv6m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-end; left: 465px; overflow: visible; padding: 0px; position: absolute; top: 50%; transform: translateY(-50%); width: min-content; }\",\".framer-E16C1 .framer-10vzz7m { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 83px; opacity: 0.3; position: absolute; top: 50%; transform: translateY(-50%); white-space: pre; width: auto; }\",\".framer-E16C1 .framer-5o87z9 { aspect-ratio: 0.9743589743589743 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 39px); left: 1185px; position: absolute; text-decoration: none; top: 50%; transform: translateY(-50%); width: 38px; }\",\".framer-E16C1 .framer-znhheu { flex: none; height: 39px; left: 1241px; position: absolute; text-decoration: none; top: calc(49.941032849539184% - 39px / 2); width: 39px; }\",\".framer-E16C1 .framer-1d15jp6 { flex: none; height: 4px; left: -1px; position: absolute; top: 333px; width: 1282px; }\",\".framer-E16C1 .framer-htje1i { flex: none; height: 4px; left: -1px; position: absolute; top: 93px; width: 1282px; }\",\".framer-E16C1 .framer-1jid9h4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; width: min-content; }\",\".framer-E16C1 .framer-wca6zj { aspect-ratio: 4.741860465116279 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); left: 0px; position: absolute; top: 10px; width: 160px; }\",\".framer-E16C1 .framer-mj0cog { --border-bottom-width: 1px; --border-color: rgba(82, 95, 126, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; 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: 20px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-lfwxd2, .framer-E16C1 .framer-12nl445, .framer-E16C1 .framer-81e0n6, .framer-E16C1 .framer-rmy21j, .framer-E16C1 .framer-a5dxq3, .framer-E16C1 .framer-4rspp1, .framer-E16C1 .framer-15oq7rk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 770px; }\",\".framer-E16C1 .framer-1b438i8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-E16C1 .framer-18xx7ky { aspect-ratio: 4.741860465116279 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); position: relative; text-decoration: none; width: 127px; }\",\".framer-E16C1 .framer-uksadh { align-content: center; align-items: center; background-color: rgba(86, 64, 255, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 60px 20px 60px 20px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-f7yo45 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 770px; }\",\".framer-E16C1 .framer-mj4c2t { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 511px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-14qptu { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 674px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1lgkkgc { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 640px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-ir2472, .framer-E16C1 .framer-opqgua { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-1jotco3, .framer-E16C1 .framer-s48pci { align-content: center; align-items: center; background-color: var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, #563fff); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 56px; justify-content: center; overflow: visible; padding: 16px 46px 16px 46px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-89mp7y { align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 56px; justify-content: center; overflow: visible; padding: 16px 46px 16px 46px; position: relative; text-decoration: none; width: min-content; }\",\".framer-E16C1 .framer-vay50y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 770px; }\",\".framer-E16C1 .framer-sfh4lq, .framer-E16C1 .framer-16hz0zh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-18ogrdk { flex: 1 0 0px; height: 362px; overflow: visible; position: relative; width: 1px; }\",\".framer-E16C1 .framer-ys6yxv { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 181px; white-space: pre-wrap; width: 301px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-am2g3e { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 218px; white-space: pre-wrap; width: 357px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-o1dyr3 { aspect-ratio: 0.8053691275167785 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 149px); left: 0px; position: absolute; top: 0px; width: 120px; }\",\".framer-E16C1 .framer-1frfsrt { flex: 1 0 0px; height: 358px; overflow: visible; position: relative; width: 1px; }\",\".framer-E16C1 .framer-4vfgwt { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 177px; white-space: pre-wrap; width: 280px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1qtavf2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 214px; white-space: pre-wrap; width: 366px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1bnl8mb { aspect-ratio: 1.2112676056338028 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 142px); left: 0px; position: absolute; top: 0px; width: 172px; }\",\".framer-E16C1 .framer-2v7hmf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 770px; }\",\".framer-E16C1 .framer-8bv0ka { flex: 1 0 0px; height: 343px; overflow: visible; position: relative; width: 1px; }\",\".framer-E16C1 .framer-1y9n408, .framer-E16C1 .framer-11atd82 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 162px; white-space: pre-wrap; width: 280px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1xz465b { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 199px; white-space: pre-wrap; width: 320px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-12hfwy0 { aspect-ratio: 1.2622950819672132 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 121px); left: 1px; position: absolute; top: 3px; width: 153px; }\",\".framer-E16C1 .framer-kkpl48 { flex: 1 0 0px; height: 368px; overflow: visible; position: relative; width: 1px; }\",\".framer-E16C1 .framer-1rpxdk4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 200px; white-space: pre-wrap; width: 344px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-6du9l3 { aspect-ratio: 1.2764227642276422 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 123px); left: 0px; position: absolute; top: 0px; width: 157px; }\",\".framer-E16C1 .framer-fzf1qd, .framer-E16C1 .framer-1l94jsx, .framer-E16C1 .framer-dt2hds { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 60px 20px 60px 20px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-19n3ci1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 770px; }\",\".framer-E16C1 .framer-118al79 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 685px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-192lywy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-iux7jr, .framer-E16C1 .framer-1x5gcq1 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: 0px 9px 50.79999923706055px 0px rgba(0, 0, 0, 0.15); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 28px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-96oj43, .framer-E16C1 .framer-1gif7aa, .framer-E16C1 .framer-18z7veb, .framer-E16C1 .framer-1b5el51, .framer-E16C1 .framer-9krptt, .framer-E16C1 .framer-sxjd4d, .framer-E16C1 .framer-4sm1gr, .framer-E16C1 .framer-1tzmgul, .framer-E16C1 .framer-951i4g, .framer-E16C1 .framer-i2x14r, .framer-E16C1 .framer-4jp0yb, .framer-E16C1 .framer-1g54rns { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 319px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1ht5li5, .framer-E16C1 .framer-ei4cz9, .framer-E16C1 .framer-9i69kz, .framer-E16C1 .framer-1gw3hwn, .framer-E16C1 .framer-k1p0ox, .framer-E16C1 .framer-mcguzb { flex: none; height: 4px; position: relative; width: 321px; }\",\".framer-E16C1 .framer-732itd, .framer-E16C1 .framer-1im63ni { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: 0px 9px 50.79999923706055px 0px rgba(0, 0, 0, 0.15); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 28px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-nz97 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: 0px 9px 50.79999923706055px 0px rgba(0, 0, 0, 0.15); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: 383px; justify-content: flex-start; overflow: hidden; padding: 28px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-oj877e { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: 0px 9px 50.79999923706055px 0px rgba(0, 0, 0, 0.15); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: 405px; justify-content: flex-start; overflow: hidden; padding: 28px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-rwbrh2 { aspect-ratio: 1.876923076923077 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); position: relative; width: 150px; }\",\".framer-E16C1 .framer-4mapne, .framer-E16C1 .framer-jvu3cv, .framer-E16C1 .framer-1ajifi5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 770px; }\",\".framer-E16C1 .framer-1e5g7z1 { aspect-ratio: 0.109375 / 1; background-color: #e9f0ff; flex: none; height: var(--framer-aspect-ratio-supported, 294px); left: 127px; overflow: visible; position: absolute; top: 0px; width: 32px; z-index: 1; }\",\".framer-E16C1 .framer-9sb18x { flex: none; height: 311px; overflow: visible; position: relative; width: 540px; }\",\".framer-E16C1 .framer-96ttwy { bottom: -1px; flex: none; left: -8px; position: absolute; right: -7px; top: 311px; }\",\".framer-E16C1 .framer-1wya9t5 { bottom: 9px; flex: none; left: 43px; position: absolute; right: 45px; top: 0px; }\",\".framer-E16C1 .framer-1d3iyr0 { bottom: 1px; flex: none; left: 0px; position: absolute; right: 0px; top: 294px; }\",\".framer-E16C1 .framer-1q3ivx0 { bottom: 1px; flex: none; left: 0px; position: absolute; right: 0px; top: 304px; }\",\".framer-E16C1 .framer-1229m2v, .framer-E16C1 .framer-p0j9bd { bottom: 11px; flex: none; left: 230px; position: absolute; right: 231px; top: 294px; }\",\".framer-E16C1 .framer-1qbm35 { aspect-ratio: 1.636577427641854 / 1; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; bottom: var(--framer-aspect-ratio-supported, 31px); flex: none; height: 264px; left: 54px; overflow: hidden; position: absolute; right: 54px; top: 16px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-nnb08t { background-color: #1b1b1b; bottom: 16px; flex: none; left: 44px; position: absolute; right: 44px; top: 285px; }\",\".framer-E16C1 .framer-1wrkjoc { flex: none; height: 313px; overflow: hidden; position: relative; width: 556px; }\",\".framer-E16C1 .framer-1zzt63 { aspect-ratio: 1.7763578274760383 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 313px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-E16C1 .framer-1ommm04-container { flex: none; height: 279px; left: calc(50.00000000000002% - 437px / 2); position: absolute; top: calc(46.325878594249225% - 279px / 2); width: 437px; }\",\".framer-E16C1 .framer-mudiff-container { flex: none; height: 152px; left: calc(50.00000000000002% - 271px / 2); position: absolute; top: 9px; width: 271px; }\",\".framer-E16C1 .framer-15nir0i, .framer-E16C1 .framer-3gbud4, .framer-E16C1 .framer-16695la, .framer-E16C1 .framer-zjb1sb, .framer-E16C1 .framer-2i9zun, .framer-E16C1 .framer-xqlr02 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-bvw8io, .framer-E16C1 .framer-qm9bhz, .framer-E16C1 .framer-18kmayb { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 728px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-umj7zg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-19a39ja { align-content: center; align-items: center; background-color: #0446f2; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 56px; justify-content: center; overflow: visible; padding: 16px 46px 16px 46px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-gxf1i3 { align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 56px; justify-content: center; overflow: visible; padding: 16px 46px 16px 46px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-1rybvz { aspect-ratio: 0.109375 / 1; background-color: #e9f0ff; flex: none; height: var(--framer-aspect-ratio-supported, 294px); left: 611px; overflow: visible; position: absolute; top: 0px; width: 32px; z-index: 1; }\",\".framer-E16C1 .framer-fkagu9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 582px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1422p1c { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 60px 0px; position: relative; width: 810px; }\",\".framer-E16C1 .framer-4zjah2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 78px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 770px; }\",\".framer-E16C1 .framer-dmezr1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 0px 16px 0px; position: relative; width: 1px; }\",\".framer-E16C1 .framer-1vhalcw { aspect-ratio: 3.282051282051282 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 78px); position: relative; width: 256px; }\",\".framer-E16C1 .framer-1n0ng9y, .framer-E16C1 .framer-1mhyhso, .framer-E16C1 .framer-5685fr, .framer-E16C1 .framer-1u0x343, .framer-E16C1 .framer-t8f3mq, .framer-E16C1 .framer-wp97ok { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-E16C1 .framer-1ehlo7r, .framer-E16C1 .framer-18danab, .framer-E16C1 .framer-i6hxwf, .framer-E16C1 .framer-1jqj4nr, .framer-E16C1 .framer-9tboz8, .framer-E16C1 .framer-ksgmq5, .framer-E16C1 .framer-j33bue { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 514px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-pw248t, .framer-E16C1 .framer-1h129gh, .framer-E16C1 .framer-11u3ag6, .framer-E16C1 .framer-11m593q, .framer-E16C1 .framer-11cudku, .framer-E16C1 .framer-q5fhpf, .framer-E16C1 .framer-o14azg, .framer-E16C1 .framer-1vpbnry, .framer-E16C1 .framer-il553a, .framer-E16C1 .framer-18tuybm { flex: none; height: 52px; position: relative; width: 256px; }\",\".framer-E16C1 .framer-1nfb74b, .framer-E16C1 .framer-fdm8bb, .framer-E16C1 .framer-wubwzl, .framer-E16C1 .framer-17w65j8, .framer-E16C1 .framer-12cgsf, .framer-E16C1 .framer-1s7ife8, .framer-E16C1 .framer-euzmy7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 52px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 770px; }\",\".framer-E16C1 .framer-oq6dj5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 16px 0px 16px 0px; position: relative; width: 1px; }\",\".framer-E16C1 .framer-43zn6s, .framer-E16C1 .framer-p7j15y, .framer-E16C1 .framer-zwcnbj { flex: none; height: 71px; position: relative; width: 256px; }\",\".framer-E16C1 .framer-1233dag { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 70px 20px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-1v34ton { align-content: center; align-items: center; background-color: #ffffff; 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: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-jz9q28, .framer-E16C1 .framer-t3m91c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-6xoh1a, .framer-E16C1 .framer-13lla12 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 375px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-a1wmxu { flex: none; height: 54px; overflow: visible; position: relative; width: 349px; }\",\".framer-E16C1 .framer-5ugpae { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: 838px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-1cnjaie { --border-bottom-width: 1px; --border-color: #e5e7ec; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-1bu2641, .framer-E16C1 .framer-10pundw, .framer-E16C1 .framer-10458eh, .framer-E16C1 .framer-17cywry, .framer-E16C1 .framer-fyt0du, .framer-E16C1 .framer-1mxxda1, .framer-E16C1 .framer-gjxfwo, .framer-E16C1 .framer-griye5, .framer-E16C1 .framer-e6jamx, .framer-E16C1 .framer-1cbcd4, .framer-E16C1 .framer-6u129, .framer-E16C1 .framer-1qwg72e, .framer-E16C1 .framer-1fjxg0m, .framer-E16C1 .framer-120onpk, .framer-E16C1 .framer-wgvxdu, .framer-E16C1 .framer-153qg0b, .framer-E16C1 .framer-98flcs, .framer-E16C1 .framer-l938m2, .framer-E16C1 .framer-1gakdr8, .framer-E16C1 .framer-nywsw3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 173px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-e58jso { --border-bottom-width: 2px; --border-color: var(--token-655c4d75-f6f5-49e7-9be1-38155d2821e9, #fc691f); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-dzy8qa { align-content: center; align-items: center; background-color: #e8eeff; 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: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-18yt1mz { flex: none; height: 54px; overflow: visible; position: relative; width: 345px; }\",\".framer-E16C1 .framer-1szdfac { --border-bottom-width: 1px; --border-color: #0546f0; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 16px 30px 16px 30px; position: absolute; text-decoration: none; top: 0px; width: min-content; }\",\".framer-E16C1 .framer-16tamux { align-content: center; align-items: center; background-color: #0546f0; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 185px; overflow: visible; padding: 16px 30px 16px 30px; position: absolute; top: 0px; width: min-content; }\",\".framer-E16C1 .framer-1dbd3dc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-wyhf15, .framer-E16C1 .framer-11i8k4d { align-content: center; align-items: center; background-color: #ffffff; 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: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px 20px 24px 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-1km5800, .framer-E16C1 .framer-465khb, .framer-E16C1 .framer-sz8ua4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-E16C1 .framer-1jw35mh, .framer-E16C1 .framer-s04dhx, .framer-E16C1 .framer-1jy3eya { aspect-ratio: 1 / 1; background-color: #e6edfe; border-bottom-left-radius: 125px; border-bottom-right-radius: 125px; border-top-left-radius: 125px; border-top-right-radius: 125px; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-1kholoo { flex: none; height: 18px; left: calc(50.00000000000002% - 14px / 2); position: absolute; top: calc(50.00000000000002% - 18px / 2); width: 14px; }\",\".framer-E16C1 .framer-rmsc30, .framer-E16C1 .framer-1cnmo8h, .framer-E16C1 .framer-3360v3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 147px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-tltvyg, .framer-E16C1 .framer-72lmgx, .framer-E16C1 .framer-6drhb8, .framer-E16C1 .framer-12idpq1, .framer-E16C1 .framer-ihslgc, .framer-E16C1 .framer-pczzvp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-E16C1 .framer-1g0bauu, .framer-E16C1 .framer-1oahkhv, .framer-E16C1 .framer-1b1rhvl, .framer-E16C1 .framer-tszmdh, .framer-E16C1 .framer-zxukm6, .framer-E16C1 .framer-1pa2l76 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-f4lk1e, .framer-E16C1 .framer-132oa1a, .framer-E16C1 .framer-llr5e1, .framer-E16C1 .framer-1wc3hs3, .framer-E16C1 .framer-uzok28, .framer-E16C1 .framer-5ccq1s { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 217px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1x40tf4 { --border-bottom-width: 2px; --border-color: var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, #0446f2); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: #ffffff; 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: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px 20px 24px 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-1ieq0f8 { flex: none; height: 23px; left: calc(45.83333333333336% - 20px / 2); position: absolute; top: calc(50.00000000000002% - 23px / 2); width: 20px; }\",\".framer-E16C1 .framer-1hs0nfa { flex: none; height: 20px; left: calc(50.00000000000002% - 20px / 2); position: absolute; top: calc(54.166666666666686% - 20px / 2); width: 20px; }\",\".framer-E16C1 .framer-1ym9vgg { align-content: center; align-items: center; background-color: var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, #563fff); 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: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 29px 20px 29px 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-1fp7xpj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-elr923 { 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: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-1mapfug, .framer-E16C1 .framer-1gn4na8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 308px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1bslid4 { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 16px 30px 16px 30px; position: relative; text-decoration: none; width: min-content; }\",\".framer-E16C1 .framer-1jwz122 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 16px 30px 16px 30px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-1tvkrir { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 80px 20px 70px 20px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-1yq52e0 { aspect-ratio: 2.08071367884452 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 170px); overflow: visible; position: relative; width: 354px; }\",\".framer-E16C1 .framer-1i85sch { aspect-ratio: 2.08071367884452 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 333px); overflow: visible; position: relative; width: 694px; }\",\".framer-E16C1 .framer-6s0p59 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 50px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-1d4l9of { background-color: var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, #563fff); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: 595px; overflow: hidden; position: relative; width: 770px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-1bkngai { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 52px; position: absolute; top: 45px; white-space: pre; width: auto; }\",\".framer-E16C1 .framer-1yx7iq6 { flex: none; height: 159px; left: 52px; overflow: visible; position: absolute; top: 171px; width: 185px; }\",\".framer-E16C1 .framer-1fcvnqe { flex: none; height: 159px; left: 287px; overflow: visible; position: absolute; top: 171px; width: 185px; }\",\".framer-E16C1 .framer-1waqlcf { flex: none; height: 159px; left: 522px; overflow: visible; position: absolute; top: 171px; width: 185px; }\",\".framer-E16C1 .framer-vybhfe { flex: none; height: 159px; left: 52px; overflow: visible; position: absolute; top: 382px; width: 185px; }\",\".framer-E16C1 .framer-gmwck9 { flex: none; height: 77px; left: 0px; position: absolute; top: 5px; width: 93px; }\",\".framer-E16C1 .framer-16hocus { flex: none; height: 159px; left: 287px; overflow: visible; position: absolute; top: 382px; width: 185px; }\",\".framer-E16C1 .framer-1rrt07t { flex: none; height: 68px; left: 0px; position: absolute; top: 12px; width: 69px; }\",\".framer-E16C1 .framer-1aelyzo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-1c1i9i { flex: none; height: 500px; overflow: visible; position: relative; width: 770px; }\",\".framer-E16C1 .framer-1auz2yn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 49%; transform: translateY(-50%); width: 439px; }\",\".framer-E16C1 .framer-3ctbil { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 426px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-1nkw06c, .framer-E16C1 .framer-1uoktz5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 381px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-19cgutq { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 60px 20px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-13golvl { background: linear-gradient(135deg, #0446f2 0%, rgb(13, 59, 179) 100%); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: 318px; overflow: hidden; position: relative; width: 770px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E16C1 .framer-1ygid7k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; left: 195px; overflow: visible; padding: 0px; position: absolute; top: 55px; width: min-content; }\",\".framer-E16C1 .framer-f5v0bq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; left: 216px; overflow: visible; padding: 0px; position: absolute; top: 207px; width: min-content; }\",\".framer-E16C1 .framer-1iwyw2w { align-content: center; align-items: center; background-color: #0446f2; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 9px 20px 0px rgba(0, 0, 0, 0.19); cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 56px; justify-content: center; overflow: visible; padding: 16px 30px 16px 30px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-19d8wmi { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 9px 20px 0px rgba(0, 0, 0, 0.19); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 56px; justify-content: center; overflow: visible; padding: 16px 30px 16px 30px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-1wo50em { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 10px 20px 60px 20px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-1bpk9vt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 770px; }\",\".framer-E16C1 .framer-s6trfg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 384px; }\",\".framer-E16C1 .framer-jhqoe5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 384px; word-break: break-word; word-wrap: break-word; }\",\".framer-E16C1 .framer-14ubbgy { align-content: center; align-items: center; background-color: #0446f2; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 56px; justify-content: center; overflow: visible; padding: 16px 46px 16px 46px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-1kfu3ra { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 29px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 384px; }\",\".framer-E16C1 .framer-65cqcg-container, .framer-E16C1 .framer-46qp4z-container, .framer-E16C1 .framer-xm640s-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-E16C1 .framer-bdamit, .framer-E16C1 .framer-kpg5jl { flex: none; height: 4px; position: relative; width: 386px; }\",\".framer-E16C1 .framer-18mkam8 { align-content: center; align-items: center; background-color: #070b0e; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 34px 20px 34px 20px; position: relative; width: 100%; }\",\".framer-E16C1 .framer-bl24iq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 770px; }\",\".framer-E16C1 .framer-155exv4 { flex: none; height: 47px; overflow: visible; position: relative; width: 770px; }\",\".framer-E16C1 .framer-wjc418 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; width: min-content; }\",\".framer-E16C1 .framer-103si5y { --border-bottom-width: 1px; --border-color: var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, #563fff); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 14px 22px 14px 22px; position: relative; text-decoration: none; width: min-content; }\",\".framer-E16C1 .framer-1qd2x9a { align-content: center; align-items: center; background-color: var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, #563fff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 14px 22px 14px 22px; position: relative; text-decoration: none; width: min-content; }\",\".framer-E16C1 .framer-1heuqzs, .framer-E16C1 .framer-dkflbp { flex: none; height: 4px; position: relative; width: 772px; }\",\".framer-E16C1 .framer-14pps8f { flex: none; height: 187px; overflow: visible; position: relative; width: 770px; }\",\".framer-E16C1 .framer-2osx88 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 131px; justify-content: space-between; left: 358px; overflow: visible; padding: 0px; position: absolute; top: 5px; width: min-content; }\",\".framer-E16C1 .framer-kyo166 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: min-content; }\",\".framer-E16C1 .framer-wp00sa { flex: none; height: 34px; overflow: hidden; position: relative; width: 84px; }\",\".framer-E16C1 .framer-1zmjef { aspect-ratio: 0.9743589743589743 / 1; bottom: 0px; flex: none; left: 0px; position: absolute; text-decoration: none; top: 0px; width: var(--framer-aspect-ratio-supported, 33px); }\",\".framer-E16C1 .framer-1o2akrf { flex: none; height: 34px; position: absolute; right: 0px; text-decoration: none; top: calc(50.00000000000002% - 34px / 2); width: 34px; }\",\".framer-E16C1 .framer-rdz2ob { flex: none; height: 99px; left: 609px; overflow: visible; position: absolute; top: 37px; width: 63px; }\",\".framer-E16C1 .framer-x7h0wb { flex: none; height: 36px; overflow: visible; position: relative; width: 770px; }\",\".framer-E16C1 .framer-1oecpzy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 770px; }\",\".framer-E16C1 .framer-1fpngll { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E16C1 .framer-1wpjroc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-E16C1.framer-72rtr7, .framer-E16C1 .framer-ecrxbb, .framer-E16C1 .framer-1qo8zzk, .framer-E16C1 .framer-1ss4wur, .framer-E16C1 .framer-1mjiyyl, .framer-E16C1 .framer-1gtlfp3, .framer-E16C1 .framer-qrgemf, .framer-E16C1 .framer-loeezu, .framer-E16C1 .framer-1lo58uk, .framer-E16C1 .framer-f87t8y, .framer-E16C1 .framer-51dl1e, .framer-E16C1 .framer-1wzt2m0, .framer-E16C1 .framer-1jk3nt5, .framer-E16C1 .framer-5yxkjn, .framer-E16C1 .framer-a70izw, .framer-E16C1 .framer-18a91xp, .framer-E16C1 .framer-1840b2t, .framer-E16C1 .framer-1oiaxzs, .framer-E16C1 .framer-2g4im5, .framer-E16C1 .framer-1s20kag, .framer-E16C1 .framer-1ag5n6a, .framer-E16C1 .framer-1r26ssp, .framer-E16C1 .framer-1h0mchb, .framer-E16C1 .framer-p915uu, .framer-E16C1 .framer-2sujw0, .framer-E16C1 .framer-1vhfamx, .framer-E16C1 .framer-14ulikg, .framer-E16C1 .framer-v92o1c, .framer-E16C1 .framer-1pn0vxy, .framer-E16C1 .framer-1npl3vy, .framer-E16C1 .framer-cdyfk6, .framer-E16C1 .framer-n1pjl3, .framer-E16C1 .framer-o7gjz, .framer-E16C1 .framer-awtr9a, .framer-E16C1 .framer-1uebuoq, .framer-E16C1 .framer-137bqgk, .framer-E16C1 .framer-12sfwr7, .framer-E16C1 .framer-w2s40y, .framer-E16C1 .framer-7pdtis, .framer-E16C1 .framer-1oitrl1, .framer-E16C1 .framer-1lf8an8, .framer-E16C1 .framer-u2gb7p, .framer-E16C1 .framer-r19vjc, .framer-E16C1 .framer-18hqhz3, .framer-E16C1 .framer-1mwl8h6, .framer-E16C1 .framer-cjsb6h, .framer-E16C1 .framer-vfc38r, .framer-E16C1 .framer-1jwfna7, .framer-E16C1 .framer-y25fqk, .framer-E16C1 .framer-jtpj54, .framer-E16C1 .framer-sv6k3u, .framer-E16C1 .framer-cao9r, .framer-E16C1 .framer-1e8sipa, .framer-E16C1 .framer-1743j4d, .framer-E16C1 .framer-pbrsxg, .framer-E16C1 .framer-pjihew, .framer-E16C1 .framer-1qdcoix, .framer-E16C1 .framer-1kv19mv, .framer-E16C1 .framer-ihda5q, .framer-E16C1 .framer-1lnpx5i, .framer-E16C1 .framer-utyyol, .framer-E16C1 .framer-1exi1d7, .framer-E16C1 .framer-ol2fbv, .framer-E16C1 .framer-gtxgc8, .framer-E16C1 .framer-1io2r8s, .framer-E16C1 .framer-1hz1zmi, .framer-E16C1 .framer-ulq3gx, .framer-E16C1 .framer-1rkjzjy, .framer-E16C1 .framer-ty1i1o, .framer-E16C1 .framer-117xqud, .framer-E16C1 .framer-1u4so59, .framer-E16C1 .framer-1p6xdc, .framer-E16C1 .framer-dynkvh, .framer-E16C1 .framer-1vhcy0a, .framer-E16C1 .framer-1eacqc4, .framer-E16C1 .framer-127owvb, .framer-E16C1 .framer-145s2w, .framer-E16C1 .framer-1p83mm, .framer-E16C1 .framer-1png45u, .framer-E16C1 .framer-9vaf2i, .framer-E16C1 .framer-re98nl, .framer-E16C1 .framer-7wwvin, .framer-E16C1 .framer-o48ktx, .framer-E16C1 .framer-5t920d, .framer-E16C1 .framer-8ecn5k, .framer-E16C1 .framer-16ue1bx, .framer-E16C1 .framer-f8voih, .framer-E16C1 .framer-arv6e3, .framer-E16C1 .framer-d9g5sm, .framer-E16C1 .framer-16etfwe, .framer-E16C1 .framer-2zbkt4, .framer-E16C1 .framer-1o5h1lm, .framer-E16C1 .framer-axqyob, .framer-E16C1 .framer-1qf2gla, .framer-E16C1 .framer-1e2i5vh, .framer-E16C1 .framer-d1bpj8, .framer-E16C1 .framer-xo0ef, .framer-E16C1 .framer-cbtfmv, .framer-E16C1 .framer-1qdj8fk, .framer-E16C1 .framer-1q9e3hx, .framer-E16C1 .framer-1dz6m35, .framer-E16C1 .framer-vu4k7y, .framer-E16C1 .framer-ulmqoa, .framer-E16C1 .framer-1gvzla4, .framer-E16C1 .framer-7qh5pf, .framer-E16C1 .framer-z9mgxz, .framer-E16C1 .framer-1pgi3nh, .framer-E16C1 .framer-o7xel, .framer-E16C1 .framer-1ui34n4, .framer-E16C1 .framer-tgzcou, .framer-E16C1 .framer-14c6ey1, .framer-E16C1 .framer-4gclvw, .framer-E16C1 .framer-sb6soe, .framer-E16C1 .framer-1paim2d, .framer-E16C1 .framer-1p6f3sl, .framer-E16C1 .framer-17u98vb, .framer-E16C1 .framer-rjtei1, .framer-E16C1 .framer-f6ozvk, .framer-E16C1 .framer-164v92q, .framer-E16C1 .framer-1bbxtg0, .framer-E16C1 .framer-1y1pgfd, .framer-E16C1 .framer-wc02hg, .framer-E16C1 .framer-19nio1t, .framer-E16C1 .framer-qmvr02, .framer-E16C1 .framer-wy7len, .framer-E16C1 .framer-r286k5, .framer-E16C1 .framer-1jdwhhq, .framer-E16C1 .framer-1f8i54m, .framer-E16C1 .framer-1cjfmjd, .framer-E16C1 .framer-11vny2y, .framer-E16C1 .framer-q1upn2, .framer-E16C1 .framer-uivn38, .framer-E16C1 .framer-1rmckk1, .framer-E16C1 .framer-rbb0sf, .framer-E16C1 .framer-1s10l0t, .framer-E16C1 .framer-1796ocz, .framer-E16C1 .framer-akcki1, .framer-E16C1 .framer-pz1swh, .framer-E16C1 .framer-1nx2nam, .framer-E16C1 .framer-8glfvn, .framer-E16C1 .framer-i6yhkk, .framer-E16C1 .framer-151nfwp, .framer-E16C1 .framer-9iol3j, .framer-E16C1 .framer-aqfn78, .framer-E16C1 .framer-1szdqcf, .framer-E16C1 .framer-1e9ofco, .framer-E16C1 .framer-1z0z8hq, .framer-E16C1 .framer-7b6nrq, .framer-E16C1 .framer-w3lli4, .framer-E16C1 .framer-oid0w7, .framer-E16C1 .framer-nvdbey, .framer-E16C1 .framer-1qeenns, .framer-E16C1 .framer-19kr644, .framer-E16C1 .framer-mtiw4g, .framer-E16C1 .framer-lv2ahh, .framer-E16C1 .framer-qc8b0g, .framer-E16C1 .framer-vtyn8r, .framer-E16C1 .framer-sqwxai, .framer-E16C1 .framer-a98wuy, .framer-E16C1 .framer-i7tf8b, .framer-E16C1 .framer-1a4g9t5, .framer-E16C1 .framer-1ad3k7v, .framer-E16C1 .framer-1pb5hnr, .framer-E16C1 .framer-h0nnc6, .framer-E16C1 .framer-1l6eb7u, .framer-E16C1 .framer-viyvh0, .framer-E16C1 .framer-cxdr97, .framer-E16C1 .framer-1g8f1ah, .framer-E16C1 .framer-1gkr7wy, .framer-E16C1 .framer-uiqv6m, .framer-E16C1 .framer-1jid9h4, .framer-E16C1 .framer-mj0cog, .framer-E16C1 .framer-1b438i8, .framer-E16C1 .framer-1mvfuuh, .framer-E16C1 .framer-uksadh, .framer-E16C1 .framer-13q14pk, .framer-E16C1 .framer-f7yo45, .framer-E16C1 .framer-cspqo, .framer-E16C1 .framer-upziw3, .framer-E16C1 .framer-1q5ftks, .framer-E16C1 .framer-ir2472, .framer-E16C1 .framer-1jotco3, .framer-E16C1 .framer-89mp7y, .framer-E16C1 .framer-vay50y, .framer-E16C1 .framer-2v7hmf, .framer-E16C1 .framer-fzf1qd, .framer-E16C1 .framer-19n3ci1, .framer-E16C1 .framer-1craefd, .framer-E16C1 .framer-1kcx3n3, .framer-E16C1 .framer-1an7xb8, .framer-E16C1 .framer-192lywy, .framer-E16C1 .framer-1i6kq6y, .framer-E16C1 .framer-iux7jr, .framer-E16C1 .framer-swtid0, .framer-E16C1 .framer-1x5gcq1, .framer-E16C1 .framer-yrnafi, .framer-E16C1 .framer-3nb9w8, .framer-E16C1 .framer-732itd, .framer-E16C1 .framer-bwwhys, .framer-E16C1 .framer-nz97, .framer-E16C1 .framer-1xh2m9z, .framer-E16C1 .framer-1udhkb5, .framer-E16C1 .framer-1im63ni, .framer-E16C1 .framer-nz4hp3, .framer-E16C1 .framer-oj877e, .framer-E16C1 .framer-lnnf6y, .framer-E16C1 .framer-1l94jsx, .framer-E16C1 .framer-4mapne, .framer-E16C1 .framer-15nir0i, .framer-E16C1 .framer-1v9i177, .framer-E16C1 .framer-3gbud4, .framer-E16C1 .framer-umj7zg, .framer-E16C1 .framer-19a39ja, .framer-E16C1 .framer-gxf1i3, .framer-E16C1 .framer-dt2hds, .framer-E16C1 .framer-jvu3cv, .framer-E16C1 .framer-16695la, .framer-E16C1 .framer-d6ozxh, .framer-E16C1 .framer-zjb1sb, .framer-E16C1 .framer-1422p1c, .framer-E16C1 .framer-fatsp1, .framer-E16C1 .framer-dmezr1, .framer-E16C1 .framer-1233dag, .framer-E16C1 .framer-s48pci, .framer-E16C1 .framer-x8l9fp, .framer-E16C1 .framer-srjm39, .framer-E16C1 .framer-w3t4z4, .framer-E16C1 .framer-1yjogcz, .framer-E16C1 .framer-1v34ton, .framer-E16C1 .framer-jz9q28, .framer-E16C1 .framer-oi8kh, .framer-E16C1 .framer-12i1gxs, .framer-E16C1 .framer-5ugpae, .framer-E16C1 .framer-1lwg56l, .framer-E16C1 .framer-1qvh46a, .framer-E16C1 .framer-iejc7y, .framer-E16C1 .framer-1wwk02j, .framer-E16C1 .framer-12xqof, .framer-E16C1 .framer-1d2xd1o, .framer-E16C1 .framer-1fu82pz, .framer-E16C1 .framer-tmzfrj, .framer-E16C1 .framer-opsyxd, .framer-E16C1 .framer-sjoo9h, .framer-E16C1 .framer-1ai24np, .framer-E16C1 .framer-6123zw, .framer-E16C1 .framer-15ou37x, .framer-E16C1 .framer-1sn141x, .framer-E16C1 .framer-1dbah2u, .framer-E16C1 .framer-1l0y9t2, .framer-E16C1 .framer-b6bc8r, .framer-E16C1 .framer-10cpo7j, .framer-E16C1 .framer-hz13ce, .framer-E16C1 .framer-dzy8qa, .framer-E16C1 .framer-t3m91c, .framer-E16C1 .framer-1szdfac, .framer-E16C1 .framer-16tamux, .framer-E16C1 .framer-1dbd3dc, .framer-E16C1 .framer-wyhf15, .framer-E16C1 .framer-1km5800, .framer-E16C1 .framer-tltvyg, .framer-E16C1 .framer-1g0bauu, .framer-E16C1 .framer-72lmgx, .framer-E16C1 .framer-1oahkhv, .framer-E16C1 .framer-1x40tf4, .framer-E16C1 .framer-465khb, .framer-E16C1 .framer-6drhb8, .framer-E16C1 .framer-1b1rhvl, .framer-E16C1 .framer-12idpq1, .framer-E16C1 .framer-tszmdh, .framer-E16C1 .framer-11i8k4d, .framer-E16C1 .framer-sz8ua4, .framer-E16C1 .framer-ihslgc, .framer-E16C1 .framer-zxukm6, .framer-E16C1 .framer-pczzvp, .framer-E16C1 .framer-1pa2l76, .framer-E16C1 .framer-1ym9vgg, .framer-E16C1 .framer-1fp7xpj, .framer-E16C1 .framer-elr923, .framer-E16C1 .framer-1tc4nwp, .framer-E16C1 .framer-opqgua, .framer-E16C1 .framer-1bslid4, .framer-E16C1 .framer-1jwz122, .framer-E16C1 .framer-1tvkrir, .framer-E16C1 .framer-1ajifi5, .framer-E16C1 .framer-2i9zun, .framer-E16C1 .framer-nlijr4, .framer-E16C1 .framer-xqlr02, .framer-E16C1 .framer-6s0p59, .framer-E16C1 .framer-1aelyzo, .framer-E16C1 .framer-1auz2yn, .framer-E16C1 .framer-19cgutq, .framer-E16C1 .framer-1ygid7k, .framer-E16C1 .framer-f5v0bq, .framer-E16C1 .framer-1iwyw2w, .framer-E16C1 .framer-19d8wmi, .framer-E16C1 .framer-1wo50em, .framer-E16C1 .framer-1bpk9vt, .framer-E16C1 .framer-s6trfg, .framer-E16C1 .framer-1tn7c8z, .framer-E16C1 .framer-14ubbgy, .framer-E16C1 .framer-1kfu3ra, .framer-E16C1 .framer-18mkam8, .framer-E16C1 .framer-bl24iq, .framer-E16C1 .framer-wjc418, .framer-E16C1 .framer-103si5y, .framer-E16C1 .framer-1qd2x9a, .framer-E16C1 .framer-7azy15, .framer-E16C1 .framer-kyo166, .framer-E16C1 .framer-1oecpzy, .framer-E16C1 .framer-1fpngll, .framer-E16C1 .framer-1wpjroc { gap: 0px; } .framer-E16C1.framer-72rtr7 > *, .framer-E16C1 .framer-18hqhz3 > *, .framer-E16C1 .framer-17u98vb > *, .framer-E16C1 .framer-i6yhkk > *, .framer-E16C1 .framer-fatsp1 > *, .framer-E16C1 .framer-15ou37x > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-E16C1.framer-72rtr7 > :first-child, .framer-E16C1 .framer-1qo8zzk > :first-child, .framer-E16C1 .framer-1mjiyyl > :first-child, .framer-E16C1 .framer-qrgemf > :first-child, .framer-E16C1 .framer-loeezu > :first-child, .framer-E16C1 .framer-1lo58uk > :first-child, .framer-E16C1 .framer-51dl1e > :first-child, .framer-E16C1 .framer-1wzt2m0 > :first-child, .framer-E16C1 .framer-5yxkjn > :first-child, .framer-E16C1 .framer-a70izw > :first-child, .framer-E16C1 .framer-1840b2t > :first-child, .framer-E16C1 .framer-1oiaxzs > :first-child, .framer-E16C1 .framer-1s20kag > :first-child, .framer-E16C1 .framer-1ag5n6a > :first-child, .framer-E16C1 .framer-1r26ssp > :first-child, .framer-E16C1 .framer-2sujw0 > :first-child, .framer-E16C1 .framer-1vhfamx > :first-child, .framer-E16C1 .framer-14ulikg > :first-child, .framer-E16C1 .framer-v92o1c > :first-child, .framer-E16C1 .framer-1pn0vxy > :first-child, .framer-E16C1 .framer-1npl3vy > :first-child, .framer-E16C1 .framer-cdyfk6 > :first-child, .framer-E16C1 .framer-n1pjl3 > :first-child, .framer-E16C1 .framer-o7gjz > :first-child, .framer-E16C1 .framer-awtr9a > :first-child, .framer-E16C1 .framer-1uebuoq > :first-child, .framer-E16C1 .framer-137bqgk > :first-child, .framer-E16C1 .framer-12sfwr7 > :first-child, .framer-E16C1 .framer-w2s40y > :first-child, .framer-E16C1 .framer-7pdtis > :first-child, .framer-E16C1 .framer-1oitrl1 > :first-child, .framer-E16C1 .framer-1lf8an8 > :first-child, .framer-E16C1 .framer-u2gb7p > :first-child, .framer-E16C1 .framer-r19vjc > :first-child, .framer-E16C1 .framer-18hqhz3 > :first-child, .framer-E16C1 .framer-1mwl8h6 > :first-child, .framer-E16C1 .framer-cjsb6h > :first-child, .framer-E16C1 .framer-1jwfna7 > :first-child, .framer-E16C1 .framer-y25fqk > :first-child, .framer-E16C1 .framer-jtpj54 > :first-child, .framer-E16C1 .framer-sv6k3u > :first-child, .framer-E16C1 .framer-cao9r > :first-child, .framer-E16C1 .framer-1e8sipa > :first-child, .framer-E16C1 .framer-1743j4d > :first-child, .framer-E16C1 .framer-pbrsxg > :first-child, .framer-E16C1 .framer-pjihew > :first-child, .framer-E16C1 .framer-1kv19mv > :first-child, .framer-E16C1 .framer-ihda5q > :first-child, .framer-E16C1 .framer-1exi1d7 > :first-child, .framer-E16C1 .framer-ol2fbv > :first-child, .framer-E16C1 .framer-1io2r8s > :first-child, .framer-E16C1 .framer-1hz1zmi > :first-child, .framer-E16C1 .framer-ty1i1o > :first-child, .framer-E16C1 .framer-117xqud > :first-child, .framer-E16C1 .framer-1p6xdc > :first-child, .framer-E16C1 .framer-dynkvh > :first-child, .framer-E16C1 .framer-127owvb > :first-child, .framer-E16C1 .framer-1png45u > :first-child, .framer-E16C1 .framer-9vaf2i > :first-child, .framer-E16C1 .framer-re98nl > :first-child, .framer-E16C1 .framer-7wwvin > :first-child, .framer-E16C1 .framer-o48ktx > :first-child, .framer-E16C1 .framer-16ue1bx > :first-child, .framer-E16C1 .framer-f8voih > :first-child, .framer-E16C1 .framer-arv6e3 > :first-child, .framer-E16C1 .framer-d9g5sm > :first-child, .framer-E16C1 .framer-axqyob > :first-child, .framer-E16C1 .framer-1e2i5vh > :first-child, .framer-E16C1 .framer-d1bpj8 > :first-child, .framer-E16C1 .framer-xo0ef > :first-child, .framer-E16C1 .framer-cbtfmv > :first-child, .framer-E16C1 .framer-1qdj8fk > :first-child, .framer-E16C1 .framer-1dz6m35 > :first-child, .framer-E16C1 .framer-ulmqoa > :first-child, .framer-E16C1 .framer-1gvzla4 > :first-child, .framer-E16C1 .framer-z9mgxz > :first-child, .framer-E16C1 .framer-1pgi3nh > :first-child, .framer-E16C1 .framer-o7xel > :first-child, .framer-E16C1 .framer-1ui34n4 > :first-child, .framer-E16C1 .framer-tgzcou > :first-child, .framer-E16C1 .framer-sb6soe > :first-child, .framer-E16C1 .framer-1p6f3sl > :first-child, .framer-E16C1 .framer-17u98vb > :first-child, .framer-E16C1 .framer-rjtei1 > :first-child, .framer-E16C1 .framer-f6ozvk > :first-child, .framer-E16C1 .framer-1bbxtg0 > :first-child, .framer-E16C1 .framer-1y1pgfd > :first-child, .framer-E16C1 .framer-wc02hg > :first-child, .framer-E16C1 .framer-19nio1t > :first-child, .framer-E16C1 .framer-qmvr02 > :first-child, .framer-E16C1 .framer-1cjfmjd > :first-child, .framer-E16C1 .framer-q1upn2 > :first-child, .framer-E16C1 .framer-uivn38 > :first-child, .framer-E16C1 .framer-1s10l0t > :first-child, .framer-E16C1 .framer-akcki1 > :first-child, .framer-E16C1 .framer-pz1swh > :first-child, .framer-E16C1 .framer-i6yhkk > :first-child, .framer-E16C1 .framer-151nfwp > :first-child, .framer-E16C1 .framer-aqfn78 > :first-child, .framer-E16C1 .framer-1szdqcf > :first-child, .framer-E16C1 .framer-7b6nrq > :first-child, .framer-E16C1 .framer-1qeenns > :first-child, .framer-E16C1 .framer-19kr644 > :first-child, .framer-E16C1 .framer-mtiw4g > :first-child, .framer-E16C1 .framer-qc8b0g > :first-child, .framer-E16C1 .framer-vtyn8r > :first-child, .framer-E16C1 .framer-sqwxai > :first-child, .framer-E16C1 .framer-a98wuy > :first-child, .framer-E16C1 .framer-i7tf8b > :first-child, .framer-E16C1 .framer-1a4g9t5 > :first-child, .framer-E16C1 .framer-1pb5hnr > :first-child, .framer-E16C1 .framer-h0nnc6 > :first-child, .framer-E16C1 .framer-1l6eb7u > :first-child, .framer-E16C1 .framer-viyvh0 > :first-child, .framer-E16C1 .framer-cxdr97 > :first-child, .framer-E16C1 .framer-1g8f1ah > :first-child, .framer-E16C1 .framer-1gkr7wy > :first-child, .framer-E16C1 .framer-mj0cog > :first-child, .framer-E16C1 .framer-uksadh > :first-child, .framer-E16C1 .framer-13q14pk > :first-child, .framer-E16C1 .framer-f7yo45 > :first-child, .framer-E16C1 .framer-cspqo > :first-child, .framer-E16C1 .framer-upziw3 > :first-child, .framer-E16C1 .framer-1q5ftks > :first-child, .framer-E16C1 .framer-vay50y > :first-child, .framer-E16C1 .framer-fzf1qd > :first-child, .framer-E16C1 .framer-19n3ci1 > :first-child, .framer-E16C1 .framer-1craefd > :first-child, .framer-E16C1 .framer-1kcx3n3 > :first-child, .framer-E16C1 .framer-1an7xb8 > :first-child, .framer-E16C1 .framer-192lywy > :first-child, .framer-E16C1 .framer-iux7jr > :first-child, .framer-E16C1 .framer-swtid0 > :first-child, .framer-E16C1 .framer-1x5gcq1 > :first-child, .framer-E16C1 .framer-yrnafi > :first-child, .framer-E16C1 .framer-732itd > :first-child, .framer-E16C1 .framer-bwwhys > :first-child, .framer-E16C1 .framer-nz97 > :first-child, .framer-E16C1 .framer-1xh2m9z > :first-child, .framer-E16C1 .framer-1im63ni > :first-child, .framer-E16C1 .framer-nz4hp3 > :first-child, .framer-E16C1 .framer-oj877e > :first-child, .framer-E16C1 .framer-lnnf6y > :first-child, .framer-E16C1 .framer-1l94jsx > :first-child, .framer-E16C1 .framer-4mapne > :first-child, .framer-E16C1 .framer-15nir0i > :first-child, .framer-E16C1 .framer-1v9i177 > :first-child, .framer-E16C1 .framer-3gbud4 > :first-child, .framer-E16C1 .framer-dt2hds > :first-child, .framer-E16C1 .framer-jvu3cv > :first-child, .framer-E16C1 .framer-16695la > :first-child, .framer-E16C1 .framer-d6ozxh > :first-child, .framer-E16C1 .framer-zjb1sb > :first-child, .framer-E16C1 .framer-1422p1c > :first-child, .framer-E16C1 .framer-fatsp1 > :first-child, .framer-E16C1 .framer-1233dag > :first-child, .framer-E16C1 .framer-x8l9fp > :first-child, .framer-E16C1 .framer-srjm39 > :first-child, .framer-E16C1 .framer-w3t4z4 > :first-child, .framer-E16C1 .framer-1yjogcz > :first-child, .framer-E16C1 .framer-1v34ton > :first-child, .framer-E16C1 .framer-1lwg56l > :first-child, .framer-E16C1 .framer-iejc7y > :first-child, .framer-E16C1 .framer-1wwk02j > :first-child, .framer-E16C1 .framer-1fu82pz > :first-child, .framer-E16C1 .framer-opsyxd > :first-child, .framer-E16C1 .framer-sjoo9h > :first-child, .framer-E16C1 .framer-15ou37x > :first-child, .framer-E16C1 .framer-1sn141x > :first-child, .framer-E16C1 .framer-1l0y9t2 > :first-child, .framer-E16C1 .framer-b6bc8r > :first-child, .framer-E16C1 .framer-dzy8qa > :first-child, .framer-E16C1 .framer-1dbd3dc > :first-child, .framer-E16C1 .framer-tltvyg > :first-child, .framer-E16C1 .framer-72lmgx > :first-child, .framer-E16C1 .framer-6drhb8 > :first-child, .framer-E16C1 .framer-12idpq1 > :first-child, .framer-E16C1 .framer-ihslgc > :first-child, .framer-E16C1 .framer-pczzvp > :first-child, .framer-E16C1 .framer-1ym9vgg > :first-child, .framer-E16C1 .framer-1fp7xpj > :first-child, .framer-E16C1 .framer-elr923 > :first-child, .framer-E16C1 .framer-1tc4nwp > :first-child, .framer-E16C1 .framer-1tvkrir > :first-child, .framer-E16C1 .framer-1ajifi5 > :first-child, .framer-E16C1 .framer-2i9zun > :first-child, .framer-E16C1 .framer-nlijr4 > :first-child, .framer-E16C1 .framer-xqlr02 > :first-child, .framer-E16C1 .framer-6s0p59 > :first-child, .framer-E16C1 .framer-1aelyzo > :first-child, .framer-E16C1 .framer-1auz2yn > :first-child, .framer-E16C1 .framer-19cgutq > :first-child, .framer-E16C1 .framer-1ygid7k > :first-child, .framer-E16C1 .framer-1wo50em > :first-child, .framer-E16C1 .framer-s6trfg > :first-child, .framer-E16C1 .framer-1tn7c8z > :first-child, .framer-E16C1 .framer-1kfu3ra > :first-child, .framer-E16C1 .framer-18mkam8 > :first-child, .framer-E16C1 .framer-bl24iq > :first-child, .framer-E16C1 .framer-7azy15 > :first-child, .framer-E16C1 .framer-kyo166 > :first-child { margin-top: 0px; } .framer-E16C1.framer-72rtr7 > :last-child, .framer-E16C1 .framer-1qo8zzk > :last-child, .framer-E16C1 .framer-1mjiyyl > :last-child, .framer-E16C1 .framer-qrgemf > :last-child, .framer-E16C1 .framer-loeezu > :last-child, .framer-E16C1 .framer-1lo58uk > :last-child, .framer-E16C1 .framer-51dl1e > :last-child, .framer-E16C1 .framer-1wzt2m0 > :last-child, .framer-E16C1 .framer-5yxkjn > :last-child, .framer-E16C1 .framer-a70izw > :last-child, .framer-E16C1 .framer-1840b2t > :last-child, .framer-E16C1 .framer-1oiaxzs > :last-child, .framer-E16C1 .framer-1s20kag > :last-child, .framer-E16C1 .framer-1ag5n6a > :last-child, .framer-E16C1 .framer-1r26ssp > :last-child, .framer-E16C1 .framer-2sujw0 > :last-child, .framer-E16C1 .framer-1vhfamx > :last-child, .framer-E16C1 .framer-14ulikg > :last-child, .framer-E16C1 .framer-v92o1c > :last-child, .framer-E16C1 .framer-1pn0vxy > :last-child, .framer-E16C1 .framer-1npl3vy > :last-child, .framer-E16C1 .framer-cdyfk6 > :last-child, .framer-E16C1 .framer-n1pjl3 > :last-child, .framer-E16C1 .framer-o7gjz > :last-child, .framer-E16C1 .framer-awtr9a > :last-child, .framer-E16C1 .framer-1uebuoq > :last-child, .framer-E16C1 .framer-137bqgk > :last-child, .framer-E16C1 .framer-12sfwr7 > :last-child, .framer-E16C1 .framer-w2s40y > :last-child, .framer-E16C1 .framer-7pdtis > :last-child, .framer-E16C1 .framer-1oitrl1 > :last-child, .framer-E16C1 .framer-1lf8an8 > :last-child, .framer-E16C1 .framer-u2gb7p > :last-child, .framer-E16C1 .framer-r19vjc > :last-child, .framer-E16C1 .framer-18hqhz3 > :last-child, .framer-E16C1 .framer-1mwl8h6 > :last-child, .framer-E16C1 .framer-cjsb6h > :last-child, .framer-E16C1 .framer-1jwfna7 > :last-child, .framer-E16C1 .framer-y25fqk > :last-child, .framer-E16C1 .framer-jtpj54 > :last-child, .framer-E16C1 .framer-sv6k3u > :last-child, .framer-E16C1 .framer-cao9r > :last-child, .framer-E16C1 .framer-1e8sipa > :last-child, .framer-E16C1 .framer-1743j4d > :last-child, .framer-E16C1 .framer-pbrsxg > :last-child, .framer-E16C1 .framer-pjihew > :last-child, .framer-E16C1 .framer-1kv19mv > :last-child, .framer-E16C1 .framer-ihda5q > :last-child, .framer-E16C1 .framer-1exi1d7 > :last-child, .framer-E16C1 .framer-ol2fbv > :last-child, .framer-E16C1 .framer-1io2r8s > :last-child, .framer-E16C1 .framer-1hz1zmi > :last-child, .framer-E16C1 .framer-ty1i1o > :last-child, .framer-E16C1 .framer-117xqud > :last-child, .framer-E16C1 .framer-1p6xdc > :last-child, .framer-E16C1 .framer-dynkvh > :last-child, .framer-E16C1 .framer-127owvb > :last-child, .framer-E16C1 .framer-1png45u > :last-child, .framer-E16C1 .framer-9vaf2i > :last-child, .framer-E16C1 .framer-re98nl > :last-child, .framer-E16C1 .framer-7wwvin > :last-child, .framer-E16C1 .framer-o48ktx > :last-child, .framer-E16C1 .framer-16ue1bx > :last-child, .framer-E16C1 .framer-f8voih > :last-child, .framer-E16C1 .framer-arv6e3 > :last-child, .framer-E16C1 .framer-d9g5sm > :last-child, .framer-E16C1 .framer-axqyob > :last-child, .framer-E16C1 .framer-1e2i5vh > :last-child, .framer-E16C1 .framer-d1bpj8 > :last-child, .framer-E16C1 .framer-xo0ef > :last-child, .framer-E16C1 .framer-cbtfmv > :last-child, .framer-E16C1 .framer-1qdj8fk > :last-child, .framer-E16C1 .framer-1dz6m35 > :last-child, .framer-E16C1 .framer-ulmqoa > :last-child, .framer-E16C1 .framer-1gvzla4 > :last-child, .framer-E16C1 .framer-z9mgxz > :last-child, .framer-E16C1 .framer-1pgi3nh > :last-child, .framer-E16C1 .framer-o7xel > :last-child, .framer-E16C1 .framer-1ui34n4 > :last-child, .framer-E16C1 .framer-tgzcou > :last-child, .framer-E16C1 .framer-sb6soe > :last-child, .framer-E16C1 .framer-1p6f3sl > :last-child, .framer-E16C1 .framer-17u98vb > :last-child, .framer-E16C1 .framer-rjtei1 > :last-child, .framer-E16C1 .framer-f6ozvk > :last-child, .framer-E16C1 .framer-1bbxtg0 > :last-child, .framer-E16C1 .framer-1y1pgfd > :last-child, .framer-E16C1 .framer-wc02hg > :last-child, .framer-E16C1 .framer-19nio1t > :last-child, .framer-E16C1 .framer-qmvr02 > :last-child, .framer-E16C1 .framer-1cjfmjd > :last-child, .framer-E16C1 .framer-q1upn2 > :last-child, .framer-E16C1 .framer-uivn38 > :last-child, .framer-E16C1 .framer-1s10l0t > :last-child, .framer-E16C1 .framer-akcki1 > :last-child, .framer-E16C1 .framer-pz1swh > :last-child, .framer-E16C1 .framer-i6yhkk > :last-child, .framer-E16C1 .framer-151nfwp > :last-child, .framer-E16C1 .framer-aqfn78 > :last-child, .framer-E16C1 .framer-1szdqcf > :last-child, .framer-E16C1 .framer-7b6nrq > :last-child, .framer-E16C1 .framer-1qeenns > :last-child, .framer-E16C1 .framer-19kr644 > :last-child, .framer-E16C1 .framer-mtiw4g > :last-child, .framer-E16C1 .framer-qc8b0g > :last-child, .framer-E16C1 .framer-vtyn8r > :last-child, .framer-E16C1 .framer-sqwxai > :last-child, .framer-E16C1 .framer-a98wuy > :last-child, .framer-E16C1 .framer-i7tf8b > :last-child, .framer-E16C1 .framer-1a4g9t5 > :last-child, .framer-E16C1 .framer-1pb5hnr > :last-child, .framer-E16C1 .framer-h0nnc6 > :last-child, .framer-E16C1 .framer-1l6eb7u > :last-child, .framer-E16C1 .framer-viyvh0 > :last-child, .framer-E16C1 .framer-cxdr97 > :last-child, .framer-E16C1 .framer-1g8f1ah > :last-child, .framer-E16C1 .framer-1gkr7wy > :last-child, .framer-E16C1 .framer-mj0cog > :last-child, .framer-E16C1 .framer-uksadh > :last-child, .framer-E16C1 .framer-13q14pk > :last-child, .framer-E16C1 .framer-f7yo45 > :last-child, .framer-E16C1 .framer-cspqo > :last-child, .framer-E16C1 .framer-upziw3 > :last-child, .framer-E16C1 .framer-1q5ftks > :last-child, .framer-E16C1 .framer-vay50y > :last-child, .framer-E16C1 .framer-fzf1qd > :last-child, .framer-E16C1 .framer-19n3ci1 > :last-child, .framer-E16C1 .framer-1craefd > :last-child, .framer-E16C1 .framer-1kcx3n3 > :last-child, .framer-E16C1 .framer-1an7xb8 > :last-child, .framer-E16C1 .framer-192lywy > :last-child, .framer-E16C1 .framer-iux7jr > :last-child, .framer-E16C1 .framer-swtid0 > :last-child, .framer-E16C1 .framer-1x5gcq1 > :last-child, .framer-E16C1 .framer-yrnafi > :last-child, .framer-E16C1 .framer-732itd > :last-child, .framer-E16C1 .framer-bwwhys > :last-child, .framer-E16C1 .framer-nz97 > :last-child, .framer-E16C1 .framer-1xh2m9z > :last-child, .framer-E16C1 .framer-1im63ni > :last-child, .framer-E16C1 .framer-nz4hp3 > :last-child, .framer-E16C1 .framer-oj877e > :last-child, .framer-E16C1 .framer-lnnf6y > :last-child, .framer-E16C1 .framer-1l94jsx > :last-child, .framer-E16C1 .framer-4mapne > :last-child, .framer-E16C1 .framer-15nir0i > :last-child, .framer-E16C1 .framer-1v9i177 > :last-child, .framer-E16C1 .framer-3gbud4 > :last-child, .framer-E16C1 .framer-dt2hds > :last-child, .framer-E16C1 .framer-jvu3cv > :last-child, .framer-E16C1 .framer-16695la > :last-child, .framer-E16C1 .framer-d6ozxh > :last-child, .framer-E16C1 .framer-zjb1sb > :last-child, .framer-E16C1 .framer-1422p1c > :last-child, .framer-E16C1 .framer-fatsp1 > :last-child, .framer-E16C1 .framer-1233dag > :last-child, .framer-E16C1 .framer-x8l9fp > :last-child, .framer-E16C1 .framer-srjm39 > :last-child, .framer-E16C1 .framer-w3t4z4 > :last-child, .framer-E16C1 .framer-1yjogcz > :last-child, .framer-E16C1 .framer-1v34ton > :last-child, .framer-E16C1 .framer-1lwg56l > :last-child, .framer-E16C1 .framer-iejc7y > :last-child, .framer-E16C1 .framer-1wwk02j > :last-child, .framer-E16C1 .framer-1fu82pz > :last-child, .framer-E16C1 .framer-opsyxd > :last-child, .framer-E16C1 .framer-sjoo9h > :last-child, .framer-E16C1 .framer-15ou37x > :last-child, .framer-E16C1 .framer-1sn141x > :last-child, .framer-E16C1 .framer-1l0y9t2 > :last-child, .framer-E16C1 .framer-b6bc8r > :last-child, .framer-E16C1 .framer-dzy8qa > :last-child, .framer-E16C1 .framer-1dbd3dc > :last-child, .framer-E16C1 .framer-tltvyg > :last-child, .framer-E16C1 .framer-72lmgx > :last-child, .framer-E16C1 .framer-6drhb8 > :last-child, .framer-E16C1 .framer-12idpq1 > :last-child, .framer-E16C1 .framer-ihslgc > :last-child, .framer-E16C1 .framer-pczzvp > :last-child, .framer-E16C1 .framer-1ym9vgg > :last-child, .framer-E16C1 .framer-1fp7xpj > :last-child, .framer-E16C1 .framer-elr923 > :last-child, .framer-E16C1 .framer-1tc4nwp > :last-child, .framer-E16C1 .framer-1tvkrir > :last-child, .framer-E16C1 .framer-1ajifi5 > :last-child, .framer-E16C1 .framer-2i9zun > :last-child, .framer-E16C1 .framer-nlijr4 > :last-child, .framer-E16C1 .framer-xqlr02 > :last-child, .framer-E16C1 .framer-6s0p59 > :last-child, .framer-E16C1 .framer-1aelyzo > :last-child, .framer-E16C1 .framer-1auz2yn > :last-child, .framer-E16C1 .framer-19cgutq > :last-child, .framer-E16C1 .framer-1ygid7k > :last-child, .framer-E16C1 .framer-1wo50em > :last-child, .framer-E16C1 .framer-s6trfg > :last-child, .framer-E16C1 .framer-1tn7c8z > :last-child, .framer-E16C1 .framer-1kfu3ra > :last-child, .framer-E16C1 .framer-18mkam8 > :last-child, .framer-E16C1 .framer-bl24iq > :last-child, .framer-E16C1 .framer-7azy15 > :last-child, .framer-E16C1 .framer-kyo166 > :last-child { margin-bottom: 0px; } .framer-E16C1 .framer-ecrxbb > *, .framer-E16C1 .framer-7qh5pf > *, .framer-E16C1 .framer-14c6ey1 > *, .framer-E16C1 .framer-4gclvw > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-E16C1 .framer-ecrxbb > :first-child, .framer-E16C1 .framer-1ss4wur > :first-child, .framer-E16C1 .framer-1gtlfp3 > :first-child, .framer-E16C1 .framer-f87t8y > :first-child, .framer-E16C1 .framer-1jk3nt5 > :first-child, .framer-E16C1 .framer-18a91xp > :first-child, .framer-E16C1 .framer-2g4im5 > :first-child, .framer-E16C1 .framer-1h0mchb > :first-child, .framer-E16C1 .framer-p915uu > :first-child, .framer-E16C1 .framer-vfc38r > :first-child, .framer-E16C1 .framer-1qdcoix > :first-child, .framer-E16C1 .framer-1lnpx5i > :first-child, .framer-E16C1 .framer-utyyol > :first-child, .framer-E16C1 .framer-gtxgc8 > :first-child, .framer-E16C1 .framer-ulq3gx > :first-child, .framer-E16C1 .framer-1rkjzjy > :first-child, .framer-E16C1 .framer-1u4so59 > :first-child, .framer-E16C1 .framer-1vhcy0a > :first-child, .framer-E16C1 .framer-1eacqc4 > :first-child, .framer-E16C1 .framer-145s2w > :first-child, .framer-E16C1 .framer-1p83mm > :first-child, .framer-E16C1 .framer-5t920d > :first-child, .framer-E16C1 .framer-8ecn5k > :first-child, .framer-E16C1 .framer-16etfwe > :first-child, .framer-E16C1 .framer-2zbkt4 > :first-child, .framer-E16C1 .framer-1o5h1lm > :first-child, .framer-E16C1 .framer-1qf2gla > :first-child, .framer-E16C1 .framer-1q9e3hx > :first-child, .framer-E16C1 .framer-vu4k7y > :first-child, .framer-E16C1 .framer-7qh5pf > :first-child, .framer-E16C1 .framer-14c6ey1 > :first-child, .framer-E16C1 .framer-4gclvw > :first-child, .framer-E16C1 .framer-1paim2d > :first-child, .framer-E16C1 .framer-164v92q > :first-child, .framer-E16C1 .framer-wy7len > :first-child, .framer-E16C1 .framer-r286k5 > :first-child, .framer-E16C1 .framer-1jdwhhq > :first-child, .framer-E16C1 .framer-1f8i54m > :first-child, .framer-E16C1 .framer-11vny2y > :first-child, .framer-E16C1 .framer-1rmckk1 > :first-child, .framer-E16C1 .framer-rbb0sf > :first-child, .framer-E16C1 .framer-1796ocz > :first-child, .framer-E16C1 .framer-1nx2nam > :first-child, .framer-E16C1 .framer-8glfvn > :first-child, .framer-E16C1 .framer-9iol3j > :first-child, .framer-E16C1 .framer-1e9ofco > :first-child, .framer-E16C1 .framer-1z0z8hq > :first-child, .framer-E16C1 .framer-w3lli4 > :first-child, .framer-E16C1 .framer-oid0w7 > :first-child, .framer-E16C1 .framer-nvdbey > :first-child, .framer-E16C1 .framer-lv2ahh > :first-child, .framer-E16C1 .framer-1ad3k7v > :first-child, .framer-E16C1 .framer-uiqv6m > :first-child, .framer-E16C1 .framer-1jid9h4 > :first-child, .framer-E16C1 .framer-1b438i8 > :first-child, .framer-E16C1 .framer-1mvfuuh > :first-child, .framer-E16C1 .framer-ir2472 > :first-child, .framer-E16C1 .framer-1jotco3 > :first-child, .framer-E16C1 .framer-89mp7y > :first-child, .framer-E16C1 .framer-2v7hmf > :first-child, .framer-E16C1 .framer-1i6kq6y > :first-child, .framer-E16C1 .framer-3nb9w8 > :first-child, .framer-E16C1 .framer-1udhkb5 > :first-child, .framer-E16C1 .framer-umj7zg > :first-child, .framer-E16C1 .framer-19a39ja > :first-child, .framer-E16C1 .framer-gxf1i3 > :first-child, .framer-E16C1 .framer-dmezr1 > :first-child, .framer-E16C1 .framer-s48pci > :first-child, .framer-E16C1 .framer-jz9q28 > :first-child, .framer-E16C1 .framer-oi8kh > :first-child, .framer-E16C1 .framer-12i1gxs > :first-child, .framer-E16C1 .framer-5ugpae > :first-child, .framer-E16C1 .framer-1qvh46a > :first-child, .framer-E16C1 .framer-12xqof > :first-child, .framer-E16C1 .framer-1d2xd1o > :first-child, .framer-E16C1 .framer-tmzfrj > :first-child, .framer-E16C1 .framer-1ai24np > :first-child, .framer-E16C1 .framer-6123zw > :first-child, .framer-E16C1 .framer-1dbah2u > :first-child, .framer-E16C1 .framer-10cpo7j > :first-child, .framer-E16C1 .framer-hz13ce > :first-child, .framer-E16C1 .framer-t3m91c > :first-child, .framer-E16C1 .framer-1szdfac > :first-child, .framer-E16C1 .framer-16tamux > :first-child, .framer-E16C1 .framer-wyhf15 > :first-child, .framer-E16C1 .framer-1km5800 > :first-child, .framer-E16C1 .framer-1g0bauu > :first-child, .framer-E16C1 .framer-1oahkhv > :first-child, .framer-E16C1 .framer-1x40tf4 > :first-child, .framer-E16C1 .framer-465khb > :first-child, .framer-E16C1 .framer-1b1rhvl > :first-child, .framer-E16C1 .framer-tszmdh > :first-child, .framer-E16C1 .framer-11i8k4d > :first-child, .framer-E16C1 .framer-sz8ua4 > :first-child, .framer-E16C1 .framer-zxukm6 > :first-child, .framer-E16C1 .framer-1pa2l76 > :first-child, .framer-E16C1 .framer-opqgua > :first-child, .framer-E16C1 .framer-1bslid4 > :first-child, .framer-E16C1 .framer-1jwz122 > :first-child, .framer-E16C1 .framer-f5v0bq > :first-child, .framer-E16C1 .framer-1iwyw2w > :first-child, .framer-E16C1 .framer-19d8wmi > :first-child, .framer-E16C1 .framer-1bpk9vt > :first-child, .framer-E16C1 .framer-14ubbgy > :first-child, .framer-E16C1 .framer-wjc418 > :first-child, .framer-E16C1 .framer-103si5y > :first-child, .framer-E16C1 .framer-1qd2x9a > :first-child, .framer-E16C1 .framer-1oecpzy > :first-child, .framer-E16C1 .framer-1fpngll > :first-child, .framer-E16C1 .framer-1wpjroc > :first-child { margin-left: 0px; } .framer-E16C1 .framer-ecrxbb > :last-child, .framer-E16C1 .framer-1ss4wur > :last-child, .framer-E16C1 .framer-1gtlfp3 > :last-child, .framer-E16C1 .framer-f87t8y > :last-child, .framer-E16C1 .framer-1jk3nt5 > :last-child, .framer-E16C1 .framer-18a91xp > :last-child, .framer-E16C1 .framer-2g4im5 > :last-child, .framer-E16C1 .framer-1h0mchb > :last-child, .framer-E16C1 .framer-p915uu > :last-child, .framer-E16C1 .framer-vfc38r > :last-child, .framer-E16C1 .framer-1qdcoix > :last-child, .framer-E16C1 .framer-1lnpx5i > :last-child, .framer-E16C1 .framer-utyyol > :last-child, .framer-E16C1 .framer-gtxgc8 > :last-child, .framer-E16C1 .framer-ulq3gx > :last-child, .framer-E16C1 .framer-1rkjzjy > :last-child, .framer-E16C1 .framer-1u4so59 > :last-child, .framer-E16C1 .framer-1vhcy0a > :last-child, .framer-E16C1 .framer-1eacqc4 > :last-child, .framer-E16C1 .framer-145s2w > :last-child, .framer-E16C1 .framer-1p83mm > :last-child, .framer-E16C1 .framer-5t920d > :last-child, .framer-E16C1 .framer-8ecn5k > :last-child, .framer-E16C1 .framer-16etfwe > :last-child, .framer-E16C1 .framer-2zbkt4 > :last-child, .framer-E16C1 .framer-1o5h1lm > :last-child, .framer-E16C1 .framer-1qf2gla > :last-child, .framer-E16C1 .framer-1q9e3hx > :last-child, .framer-E16C1 .framer-vu4k7y > :last-child, .framer-E16C1 .framer-7qh5pf > :last-child, .framer-E16C1 .framer-14c6ey1 > :last-child, .framer-E16C1 .framer-4gclvw > :last-child, .framer-E16C1 .framer-1paim2d > :last-child, .framer-E16C1 .framer-164v92q > :last-child, .framer-E16C1 .framer-wy7len > :last-child, .framer-E16C1 .framer-r286k5 > :last-child, .framer-E16C1 .framer-1jdwhhq > :last-child, .framer-E16C1 .framer-1f8i54m > :last-child, .framer-E16C1 .framer-11vny2y > :last-child, .framer-E16C1 .framer-1rmckk1 > :last-child, .framer-E16C1 .framer-rbb0sf > :last-child, .framer-E16C1 .framer-1796ocz > :last-child, .framer-E16C1 .framer-1nx2nam > :last-child, .framer-E16C1 .framer-8glfvn > :last-child, .framer-E16C1 .framer-9iol3j > :last-child, .framer-E16C1 .framer-1e9ofco > :last-child, .framer-E16C1 .framer-1z0z8hq > :last-child, .framer-E16C1 .framer-w3lli4 > :last-child, .framer-E16C1 .framer-oid0w7 > :last-child, .framer-E16C1 .framer-nvdbey > :last-child, .framer-E16C1 .framer-lv2ahh > :last-child, .framer-E16C1 .framer-1ad3k7v > :last-child, .framer-E16C1 .framer-uiqv6m > :last-child, .framer-E16C1 .framer-1jid9h4 > :last-child, .framer-E16C1 .framer-1b438i8 > :last-child, .framer-E16C1 .framer-1mvfuuh > :last-child, .framer-E16C1 .framer-ir2472 > :last-child, .framer-E16C1 .framer-1jotco3 > :last-child, .framer-E16C1 .framer-89mp7y > :last-child, .framer-E16C1 .framer-2v7hmf > :last-child, .framer-E16C1 .framer-1i6kq6y > :last-child, .framer-E16C1 .framer-3nb9w8 > :last-child, .framer-E16C1 .framer-1udhkb5 > :last-child, .framer-E16C1 .framer-umj7zg > :last-child, .framer-E16C1 .framer-19a39ja > :last-child, .framer-E16C1 .framer-gxf1i3 > :last-child, .framer-E16C1 .framer-dmezr1 > :last-child, .framer-E16C1 .framer-s48pci > :last-child, .framer-E16C1 .framer-jz9q28 > :last-child, .framer-E16C1 .framer-oi8kh > :last-child, .framer-E16C1 .framer-12i1gxs > :last-child, .framer-E16C1 .framer-5ugpae > :last-child, .framer-E16C1 .framer-1qvh46a > :last-child, .framer-E16C1 .framer-12xqof > :last-child, .framer-E16C1 .framer-1d2xd1o > :last-child, .framer-E16C1 .framer-tmzfrj > :last-child, .framer-E16C1 .framer-1ai24np > :last-child, .framer-E16C1 .framer-6123zw > :last-child, .framer-E16C1 .framer-1dbah2u > :last-child, .framer-E16C1 .framer-10cpo7j > :last-child, .framer-E16C1 .framer-hz13ce > :last-child, .framer-E16C1 .framer-t3m91c > :last-child, .framer-E16C1 .framer-1szdfac > :last-child, .framer-E16C1 .framer-16tamux > :last-child, .framer-E16C1 .framer-wyhf15 > :last-child, .framer-E16C1 .framer-1km5800 > :last-child, .framer-E16C1 .framer-1g0bauu > :last-child, .framer-E16C1 .framer-1oahkhv > :last-child, .framer-E16C1 .framer-1x40tf4 > :last-child, .framer-E16C1 .framer-465khb > :last-child, .framer-E16C1 .framer-1b1rhvl > :last-child, .framer-E16C1 .framer-tszmdh > :last-child, .framer-E16C1 .framer-11i8k4d > :last-child, .framer-E16C1 .framer-sz8ua4 > :last-child, .framer-E16C1 .framer-zxukm6 > :last-child, .framer-E16C1 .framer-1pa2l76 > :last-child, .framer-E16C1 .framer-opqgua > :last-child, .framer-E16C1 .framer-1bslid4 > :last-child, .framer-E16C1 .framer-1jwz122 > :last-child, .framer-E16C1 .framer-f5v0bq > :last-child, .framer-E16C1 .framer-1iwyw2w > :last-child, .framer-E16C1 .framer-19d8wmi > :last-child, .framer-E16C1 .framer-1bpk9vt > :last-child, .framer-E16C1 .framer-14ubbgy > :last-child, .framer-E16C1 .framer-wjc418 > :last-child, .framer-E16C1 .framer-103si5y > :last-child, .framer-E16C1 .framer-1qd2x9a > :last-child, .framer-E16C1 .framer-1oecpzy > :last-child, .framer-E16C1 .framer-1fpngll > :last-child, .framer-E16C1 .framer-1wpjroc > :last-child { margin-right: 0px; } .framer-E16C1 .framer-1qo8zzk > *, .framer-E16C1 .framer-qrgemf > *, .framer-E16C1 .framer-51dl1e > *, .framer-E16C1 .framer-5yxkjn > *, .framer-E16C1 .framer-1840b2t > *, .framer-E16C1 .framer-1s20kag > *, .framer-E16C1 .framer-2sujw0 > *, .framer-E16C1 .framer-1lf8an8 > *, .framer-E16C1 .framer-1jwfna7 > *, .framer-E16C1 .framer-1png45u > *, .framer-E16C1 .framer-re98nl > *, .framer-E16C1 .framer-16ue1bx > *, .framer-E16C1 .framer-d9g5sm > *, .framer-E16C1 .framer-z9mgxz > *, .framer-E16C1 .framer-sb6soe > *, .framer-E16C1 .framer-1bbxtg0 > *, .framer-E16C1 .framer-1y1pgfd > *, .framer-E16C1 .framer-19nio1t > *, .framer-E16C1 .framer-vtyn8r > *, .framer-E16C1 .framer-h0nnc6 > *, .framer-E16C1 .framer-cspqo > *, .framer-E16C1 .framer-1kcx3n3 > *, .framer-E16C1 .framer-1v9i177 > *, .framer-E16C1 .framer-d6ozxh > *, .framer-E16C1 .framer-x8l9fp > *, .framer-E16C1 .framer-srjm39 > *, .framer-E16C1 .framer-1yjogcz > *, .framer-E16C1 .framer-nlijr4 > *, .framer-E16C1 .framer-s6trfg > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-E16C1 .framer-1ss4wur > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-E16C1 .framer-1mjiyyl > *, .framer-E16C1 .framer-r19vjc > *, .framer-E16C1 .framer-1743j4d > *, .framer-E16C1 .framer-pbrsxg > *, .framer-E16C1 .framer-1exi1d7 > *, .framer-E16C1 .framer-ty1i1o > *, .framer-E16C1 .framer-1dz6m35 > *, .framer-E16C1 .framer-ulmqoa > *, .framer-E16C1 .framer-rjtei1 > *, .framer-E16C1 .framer-1qeenns > *, .framer-E16C1 .framer-mtiw4g > *, .framer-E16C1 .framer-qc8b0g > *, .framer-E16C1 .framer-a98wuy > *, .framer-E16C1 .framer-1a4g9t5 > *, .framer-E16C1 .framer-1pb5hnr > *, .framer-E16C1 .framer-cxdr97 > *, .framer-E16C1 .framer-mj0cog > *, .framer-E16C1 .framer-13q14pk > *, .framer-E16C1 .framer-1422p1c > *, .framer-E16C1 .framer-1ym9vgg > *, .framer-E16C1 .framer-6s0p59 > *, .framer-E16C1 .framer-19cgutq > *, .framer-E16C1 .framer-18mkam8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-E16C1 .framer-1gtlfp3 > *, .framer-E16C1 .framer-18a91xp > *, .framer-E16C1 .framer-1h0mchb > *, .framer-E16C1 .framer-p915uu > *, .framer-E16C1 .framer-vfc38r > *, .framer-E16C1 .framer-145s2w > *, .framer-E16C1 .framer-1p83mm > *, .framer-E16C1 .framer-5t920d > *, .framer-E16C1 .framer-8ecn5k > *, .framer-E16C1 .framer-2zbkt4 > *, .framer-E16C1 .framer-1o5h1lm > *, .framer-E16C1 .framer-1paim2d > *, .framer-E16C1 .framer-164v92q > *, .framer-E16C1 .framer-wy7len > *, .framer-E16C1 .framer-r286k5 > *, .framer-E16C1 .framer-1jdwhhq > *, .framer-E16C1 .framer-1mvfuuh > *, .framer-E16C1 .framer-1jotco3 > *, .framer-E16C1 .framer-89mp7y > *, .framer-E16C1 .framer-19a39ja > *, .framer-E16C1 .framer-gxf1i3 > *, .framer-E16C1 .framer-dmezr1 > *, .framer-E16C1 .framer-s48pci > *, .framer-E16C1 .framer-jz9q28 > *, .framer-E16C1 .framer-oi8kh > *, .framer-E16C1 .framer-12i1gxs > *, .framer-E16C1 .framer-t3m91c > *, .framer-E16C1 .framer-1szdfac > *, .framer-E16C1 .framer-16tamux > *, .framer-E16C1 .framer-1bslid4 > *, .framer-E16C1 .framer-1jwz122 > *, .framer-E16C1 .framer-1iwyw2w > *, .framer-E16C1 .framer-19d8wmi > *, .framer-E16C1 .framer-14ubbgy > *, .framer-E16C1 .framer-103si5y > *, .framer-E16C1 .framer-1qd2x9a > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-E16C1 .framer-loeezu > *, .framer-E16C1 .framer-1vhfamx > *, .framer-E16C1 .framer-1npl3vy > *, .framer-E16C1 .framer-n1pjl3 > *, .framer-E16C1 .framer-awtr9a > *, .framer-E16C1 .framer-137bqgk > *, .framer-E16C1 .framer-w2s40y > *, .framer-E16C1 .framer-1oitrl1 > *, .framer-E16C1 .framer-u2gb7p > *, .framer-E16C1 .framer-y25fqk > *, .framer-E16C1 .framer-ihda5q > *, .framer-E16C1 .framer-1hz1zmi > *, .framer-E16C1 .framer-dynkvh > *, .framer-E16C1 .framer-7wwvin > *, .framer-E16C1 .framer-cbtfmv > *, .framer-E16C1 .framer-1gvzla4 > *, .framer-E16C1 .framer-qmvr02 > *, .framer-E16C1 .framer-uivn38 > *, .framer-E16C1 .framer-pz1swh > *, .framer-E16C1 .framer-1szdqcf > *, .framer-E16C1 .framer-1l6eb7u > *, .framer-E16C1 .framer-f7yo45 > *, .framer-E16C1 .framer-upziw3 > *, .framer-E16C1 .framer-1q5ftks > *, .framer-E16C1 .framer-1craefd > *, .framer-E16C1 .framer-1an7xb8 > *, .framer-E16C1 .framer-swtid0 > *, .framer-E16C1 .framer-yrnafi > *, .framer-E16C1 .framer-bwwhys > *, .framer-E16C1 .framer-1xh2m9z > *, .framer-E16C1 .framer-nz4hp3 > *, .framer-E16C1 .framer-lnnf6y > *, .framer-E16C1 .framer-15nir0i > *, .framer-E16C1 .framer-3gbud4 > *, .framer-E16C1 .framer-16695la > *, .framer-E16C1 .framer-zjb1sb > *, .framer-E16C1 .framer-1v34ton > *, .framer-E16C1 .framer-1wwk02j > *, .framer-E16C1 .framer-sjoo9h > *, .framer-E16C1 .framer-b6bc8r > *, .framer-E16C1 .framer-dzy8qa > *, .framer-E16C1 .framer-2i9zun > *, .framer-E16C1 .framer-xqlr02 > *, .framer-E16C1 .framer-1auz2yn > *, .framer-E16C1 .framer-kyo166 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-E16C1 .framer-1lo58uk > *, .framer-E16C1 .framer-14ulikg > *, .framer-E16C1 .framer-1mwl8h6 > *, .framer-E16C1 .framer-sv6k3u > *, .framer-E16C1 .framer-f6ozvk > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-E16C1 .framer-f87t8y > * { margin: 0px; margin-left: calc(31px / 2); margin-right: calc(31px / 2); } .framer-E16C1 .framer-1wzt2m0 > *, .framer-E16C1 .framer-a70izw > *, .framer-E16C1 .framer-1oiaxzs > *, .framer-E16C1 .framer-1ag5n6a > *, .framer-E16C1 .framer-v92o1c > *, .framer-E16C1 .framer-cao9r > *, .framer-E16C1 .framer-o7xel > *, .framer-E16C1 .framer-sqwxai > *, .framer-E16C1 .framer-vay50y > *, .framer-E16C1 .framer-192lywy > *, .framer-E16C1 .framer-1ygid7k > *, .framer-E16C1 .framer-1tn7c8z > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-E16C1 .framer-1jk3nt5 > * { margin: 0px; margin-left: calc(27px / 2); margin-right: calc(27px / 2); } .framer-E16C1 .framer-2g4im5 > * { margin: 0px; margin-left: calc(21px / 2); margin-right: calc(21px / 2); } .framer-E16C1 .framer-1r26ssp > *, .framer-E16C1 .framer-cjsb6h > *, .framer-E16C1 .framer-1kv19mv > *, .framer-E16C1 .framer-1io2r8s > *, .framer-E16C1 .framer-1p6xdc > *, .framer-E16C1 .framer-127owvb > *, .framer-E16C1 .framer-o48ktx > *, .framer-E16C1 .framer-xo0ef > *, .framer-E16C1 .framer-q1upn2 > *, .framer-E16C1 .framer-akcki1 > *, .framer-E16C1 .framer-aqfn78 > *, .framer-E16C1 .framer-iejc7y > *, .framer-E16C1 .framer-opsyxd > *, .framer-E16C1 .framer-1l0y9t2 > *, .framer-E16C1 .framer-1tc4nwp > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-E16C1 .framer-1pn0vxy > *, .framer-E16C1 .framer-cdyfk6 > *, .framer-E16C1 .framer-o7gjz > *, .framer-E16C1 .framer-1uebuoq > *, .framer-E16C1 .framer-12sfwr7 > *, .framer-E16C1 .framer-7pdtis > *, .framer-E16C1 .framer-iux7jr > *, .framer-E16C1 .framer-1x5gcq1 > *, .framer-E16C1 .framer-732itd > *, .framer-E16C1 .framer-nz97 > *, .framer-E16C1 .framer-1im63ni > *, .framer-E16C1 .framer-oj877e > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-E16C1 .framer-jtpj54 > *, .framer-E16C1 .framer-9vaf2i > *, .framer-E16C1 .framer-axqyob > *, .framer-E16C1 .framer-1g8f1ah > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-E16C1 .framer-1e8sipa > *, .framer-E16C1 .framer-pjihew > *, .framer-E16C1 .framer-ol2fbv > *, .framer-E16C1 .framer-117xqud > *, .framer-E16C1 .framer-1cjfmjd > *, .framer-E16C1 .framer-1s10l0t > *, .framer-E16C1 .framer-151nfwp > *, .framer-E16C1 .framer-7b6nrq > *, .framer-E16C1 .framer-1lwg56l > *, .framer-E16C1 .framer-1fu82pz > *, .framer-E16C1 .framer-1sn141x > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-E16C1 .framer-1qdcoix > *, .framer-E16C1 .framer-1lnpx5i > *, .framer-E16C1 .framer-gtxgc8 > *, .framer-E16C1 .framer-ulq3gx > *, .framer-E16C1 .framer-1u4so59 > *, .framer-E16C1 .framer-1vhcy0a > *, .framer-E16C1 .framer-16etfwe > *, .framer-E16C1 .framer-11vny2y > *, .framer-E16C1 .framer-1rmckk1 > *, .framer-E16C1 .framer-1796ocz > *, .framer-E16C1 .framer-1nx2nam > *, .framer-E16C1 .framer-9iol3j > *, .framer-E16C1 .framer-1e9ofco > *, .framer-E16C1 .framer-oid0w7 > *, .framer-E16C1 .framer-1i6kq6y > *, .framer-E16C1 .framer-3nb9w8 > *, .framer-E16C1 .framer-1udhkb5 > *, .framer-E16C1 .framer-1qvh46a > *, .framer-E16C1 .framer-12xqof > *, .framer-E16C1 .framer-tmzfrj > *, .framer-E16C1 .framer-1ai24np > *, .framer-E16C1 .framer-1dbah2u > *, .framer-E16C1 .framer-10cpo7j > *, .framer-E16C1 .framer-wyhf15 > *, .framer-E16C1 .framer-1km5800 > *, .framer-E16C1 .framer-1x40tf4 > *, .framer-E16C1 .framer-465khb > *, .framer-E16C1 .framer-11i8k4d > *, .framer-E16C1 .framer-sz8ua4 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-E16C1 .framer-utyyol > *, .framer-E16C1 .framer-1rkjzjy > *, .framer-E16C1 .framer-1eacqc4 > *, .framer-E16C1 .framer-rbb0sf > *, .framer-E16C1 .framer-8glfvn > *, .framer-E16C1 .framer-1z0z8hq > *, .framer-E16C1 .framer-nvdbey > *, .framer-E16C1 .framer-1jid9h4 > *, .framer-E16C1 .framer-1d2xd1o > *, .framer-E16C1 .framer-6123zw > *, .framer-E16C1 .framer-hz13ce > *, .framer-E16C1 .framer-1g0bauu > *, .framer-E16C1 .framer-1oahkhv > *, .framer-E16C1 .framer-1b1rhvl > *, .framer-E16C1 .framer-tszmdh > *, .framer-E16C1 .framer-zxukm6 > *, .framer-E16C1 .framer-1pa2l76 > *, .framer-E16C1 .framer-wjc418 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-E16C1 .framer-f8voih > *, .framer-E16C1 .framer-wc02hg > *, .framer-E16C1 .framer-w3t4z4 > *, .framer-E16C1 .framer-elr923 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-E16C1 .framer-arv6e3 > *, .framer-E16C1 .framer-1ui34n4 > *, .framer-E16C1 .framer-1p6f3sl > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-E16C1 .framer-1qf2gla > * { margin: 0px; margin-left: calc(58px / 2); margin-right: calc(58px / 2); } .framer-E16C1 .framer-1e2i5vh > *, .framer-E16C1 .framer-d1bpj8 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-E16C1 .framer-1qdj8fk > * { margin: 0px; margin-bottom: calc(1048px / 2); margin-top: calc(1048px / 2); } .framer-E16C1 .framer-1q9e3hx > *, .framer-E16C1 .framer-w3lli4 > *, .framer-E16C1 .framer-uiqv6m > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-E16C1 .framer-vu4k7y > * { margin: 0px; margin-left: calc(108px / 2); margin-right: calc(108px / 2); } .framer-E16C1 .framer-1pgi3nh > * { margin: 0px; margin-bottom: calc(41px / 2); margin-top: calc(41px / 2); } .framer-E16C1 .framer-tgzcou > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-E16C1 .framer-1f8i54m > *, .framer-E16C1 .framer-1b438i8 > *, .framer-E16C1 .framer-5ugpae > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-E16C1 .framer-19kr644 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-E16C1 .framer-lv2ahh > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-E16C1 .framer-i7tf8b > *, .framer-E16C1 .framer-1fp7xpj > *, .framer-E16C1 .framer-bl24iq > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-E16C1 .framer-1ad3k7v > *, .framer-E16C1 .framer-2v7hmf > *, .framer-E16C1 .framer-1bpk9vt > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-E16C1 .framer-viyvh0 > *, .framer-E16C1 .framer-1kfu3ra > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-E16C1 .framer-1gkr7wy > *, .framer-E16C1 .framer-7azy15 > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-E16C1 .framer-uksadh > *, .framer-E16C1 .framer-fzf1qd > *, .framer-E16C1 .framer-19n3ci1 > *, .framer-E16C1 .framer-1l94jsx > *, .framer-E16C1 .framer-4mapne > *, .framer-E16C1 .framer-dt2hds > *, .framer-E16C1 .framer-jvu3cv > *, .framer-E16C1 .framer-1233dag > *, .framer-E16C1 .framer-1tvkrir > *, .framer-E16C1 .framer-1ajifi5 > *, .framer-E16C1 .framer-1aelyzo > *, .framer-E16C1 .framer-1wo50em > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-E16C1 .framer-ir2472 > *, .framer-E16C1 .framer-umj7zg > *, .framer-E16C1 .framer-opqgua > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-E16C1 .framer-1dbd3dc > *, .framer-E16C1 .framer-tltvyg > *, .framer-E16C1 .framer-72lmgx > *, .framer-E16C1 .framer-6drhb8 > *, .framer-E16C1 .framer-12idpq1 > *, .framer-E16C1 .framer-ihslgc > *, .framer-E16C1 .framer-pczzvp > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-E16C1 .framer-f5v0bq > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-E16C1 .framer-1oecpzy > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-E16C1 .framer-1fpngll > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-E16C1 .framer-1wpjroc > * { margin: 0px; margin-left: calc(37px / 2); margin-right: calc(37px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-E16C1[data-border=\"true\"]::after, .framer-E16C1 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1439px) { .framer-E16C1.framer-72rtr7 { width: 810px; } .framer-E16C1 .framer-ecrxbb { height: min-content; order: 26; padding: 50px 0px 60px 20px; } .framer-E16C1 .framer-1qo8zzk { gap: 24px; width: min-content; } .framer-E16C1 .framer-1xgpon { height: 28px; width: 293px; } .framer-E16C1 .framer-1unfupn { width: 287px; } .framer-E16C1 .framer-19dm4lv { height: 17px; left: 5px; top: 11px; width: 322px; } .framer-E16C1 .framer-1n0zp7j { width: 361px; } .framer-E16C1 .framer-1h6kr1i { width: 347px; } .framer-E16C1 .framer-1ss4wur { align-self: stretch; flex-direction: column; width: auto; } .framer-E16C1 .framer-1hr8uex-container, .framer-E16C1 .framer-16ex76i-container, .framer-E16C1 .framer-f7yo45, .framer-E16C1 .framer-vay50y { width: 100%; } .framer-E16C1 .framer-51va3p { height: var(--framer-aspect-ratio-supported, 344px); width: 389px; } .framer-E16C1 .framer-14bb3wk-container, .framer-E16C1 .framer-1b438i8, .framer-E16C1 .framer-1frfsrt, .framer-E16C1 .framer-1vhalcw, .framer-E16C1 .framer-phfuwg-container, .framer-E16C1 .framer-a1wmxu, .framer-E16C1 .framer-bdamit, .framer-E16C1 .framer-1heuqzs, .framer-E16C1 .framer-1wpjroc, .framer-E16C1 .framer-zhb7fg { order: 1; } .framer-E16C1 .framer-1dz6m35 { order: 27; padding: 32px 20px 32px 20px; } .framer-E16C1 .framer-vu4k7y { gap: 59px; height: 26px; justify-content: flex-start; width: 100%; } .framer-E16C1 .framer-2nct56, .framer-E16C1 .framer-18xx7ky, .framer-E16C1 .framer-18ogrdk, .framer-E16C1 .framer-dmezr1, .framer-E16C1 .framer-1v34ton, .framer-E16C1 .framer-6xoh1a, .framer-E16C1 .framer-65cqcg-container, .framer-E16C1 .framer-155exv4, .framer-E16C1 .framer-1fpngll, .framer-E16C1 .framer-62r3bx { order: 0; } .framer-E16C1 .framer-162nl6t { height: 40px; order: 1; width: 577px; } .framer-E16C1 .framer-11b8uf0 { height: 1302px; order: 31; } .framer-E16C1 .framer-hfik95 { left: -235px; right: -235px; top: calc(50.76804915514595% - 1126px / 2); width: unset; } .framer-E16C1 .framer-7qh5pf { align-content: flex-start; align-items: flex-start; bottom: -47px; left: 50%; top: unset; transform: translateX(-50%); width: 60%; } .framer-E16C1 .framer-z9mgxz { align-self: stretch; flex: 1 0 0px; height: auto; justify-content: flex-start; width: 1px; } .framer-E16C1 .framer-1yumae0 { height: 482px; width: 100%; } .framer-E16C1 .framer-1cx2dyo { left: 30px; top: 49%; transform: translateY(-50%); } .framer-E16C1 .framer-tpmdlm { bottom: 36px; left: 50%; top: unset; transform: translateX(-50%); width: 307px; } .framer-E16C1 .framer-1bprvfx { height: var(--framer-aspect-ratio-supported, 101px); left: 30px; right: unset; top: 40px; width: 154px; } .framer-E16C1 .framer-1ozo82u { height: 472px; width: 100%; } .framer-E16C1 .framer-41eibo { left: 28px; top: 48%; transform: translateY(-50%); width: 179px; } .framer-E16C1 .framer-cftrdw { bottom: 35px; left: 50%; top: unset; transform: translateX(-50%); width: 308px; } .framer-E16C1 .framer-1nrpvda { height: 115px; left: 29px; top: 32px; width: 98px; } .framer-E16C1 .framer-1pgi3nh { flex: 1 0 0px; width: 1px; } .framer-E16C1 .framer-zsnzqg { height: 272px; width: 100%; } .framer-E16C1 .framer-tiqm0y { left: 30px; top: 40px; width: 233px; } .framer-E16C1 .framer-1egc8e4 { bottom: 37px; left: 50%; top: unset; transform: translateX(-50%); width: 306px; } .framer-E16C1 .framer-1imjizw { height: var(--framer-aspect-ratio-supported, 73px); width: 131px; } .framer-E16C1 .framer-ld3bfn { height: 328px; width: 100%; } .framer-E16C1 .framer-16itqi8 { left: 30px; top: 34px; width: 230px; } .framer-E16C1 .framer-4u5xum { bottom: 36px; left: 51%; top: unset; transform: translateX(-50%); width: 313px; } .framer-E16C1 .framer-1nrnusk { height: var(--framer-aspect-ratio-supported, 82px); right: 0px; top: 6px; width: 102px; } .framer-E16C1 .framer-oltf1q { height: 313px; width: 100%; } .framer-E16C1 .framer-18w904s { left: 46%; top: 27px; transform: translateX(-50%); width: 280px; } .framer-E16C1 .framer-rwh6tx { bottom: 31px; left: 50%; top: unset; transform: translateX(-50%); width: 306px; } .framer-E16C1 .framer-vl8jku { height: var(--framer-aspect-ratio-supported, 77px); top: 79px; width: 102px; } .framer-E16C1 .framer-rjtei1 { order: 37; padding: 20px 80px 90px 80px; } .framer-E16C1 .framer-bbnx3n { height: 436px; width: 770px; } .framer-E16C1 .framer-f6ozvk { top: 50%; transform: translateY(-50%); } .framer-E16C1 .framer-qwq333 { white-space: pre-wrap; width: 443px; word-break: break-word; word-wrap: break-word; } .framer-E16C1 .framer-6wndr7 { width: 331px; } .framer-E16C1 .framer-mj0cog { order: 25; } .framer-E16C1 .framer-1mvfuuh, .framer-E16C1 .framer-1wrkjoc, .framer-E16C1 .framer-46qp4z-container, .framer-E16C1 .framer-14pps8f, .framer-E16C1 .framer-1co0ijq { order: 2; } .framer-E16C1 .framer-uksadh { order: 29; } .framer-E16C1 .framer-13q14pk { gap: 77px; width: 770px; } .framer-E16C1 .framer-fzf1qd { order: 32; } .framer-E16C1 .framer-1l94jsx { background-color: rgba(86, 64, 255, 0.1); order: 33; } .framer-E16C1 .framer-1e5g7z1 { height: var(--framer-aspect-ratio-supported, 293px); order: 0; } .framer-E16C1 .framer-15nir0i, .framer-E16C1 .framer-1ym9vgg, .framer-E16C1 .framer-kpg5jl, .framer-E16C1 .framer-dkflbp, .framer-E16C1 .framer-1qbqxnp { order: 3; } .framer-E16C1 .framer-19a39ja, .framer-E16C1 .framer-1iwyw2w { background-color: var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, #563fff); } .framer-E16C1 .framer-1rybvz { height: var(--framer-aspect-ratio-supported, 293px); order: 4; } .framer-E16C1 .framer-dt2hds { order: 34; } .framer-E16C1 .framer-zjb1sb { width: 770px; } .framer-E16C1 .framer-1422p1c { order: 35; } .framer-E16C1 .framer-1233dag { order: 36; } .framer-E16C1 .framer-x8l9fp { order: 38; } .framer-E16C1 .framer-1tvkrir { order: 40; } .framer-E16C1 .framer-nlijr4 { align-content: center; align-items: center; } .framer-E16C1 .framer-1i85sch { height: var(--framer-aspect-ratio-supported, 334px); } .framer-E16C1 .framer-6s0p59 { order: 41; } .framer-E16C1 .framer-1aelyzo { order: 42; } .framer-E16C1 .framer-1c1i9i { height: 406px; } .framer-E16C1 .framer-1auz2yn { right: -1px; width: unset; } .framer-E16C1 .framer-3ctbil { order: 0; width: 708px; } .framer-E16C1 .framer-1nkw06c { order: 1; width: 729px; } .framer-E16C1 .framer-19cgutq { order: 43; } .framer-E16C1 .framer-13golvl { background: linear-gradient(135deg, var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, #563fff) 0%, rgb(58, 38, 209) 100%); } .framer-E16C1 .framer-f5v0bq { bottom: 55px; left: 50%; top: unset; transform: translateX(-50%); } .framer-E16C1 .framer-19d8wmi { text-decoration: none; } .framer-E16C1 .framer-1wo50em { order: 44; } .framer-E16C1 .framer-s6trfg { width: 381px; } .framer-E16C1 .framer-14ubbgy { background-color: var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, #563fff); text-decoration: none; } .framer-E16C1 .framer-1kfu3ra { width: 391px; } .framer-E16C1 .framer-xm640s-container, .framer-E16C1 .framer-x7h0wb { order: 4; } .framer-E16C1 .framer-18mkam8 { order: 45; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-E16C1 .framer-1qo8zzk, .framer-E16C1 .framer-1ss4wur, .framer-E16C1 .framer-vu4k7y, .framer-E16C1 .framer-13q14pk { gap: 0px; } .framer-E16C1 .framer-1qo8zzk > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-E16C1 .framer-1qo8zzk > :first-child, .framer-E16C1 .framer-1ss4wur > :first-child, .framer-E16C1 .framer-13q14pk > :first-child { margin-top: 0px; } .framer-E16C1 .framer-1qo8zzk > :last-child, .framer-E16C1 .framer-1ss4wur > :last-child, .framer-E16C1 .framer-13q14pk > :last-child { margin-bottom: 0px; } .framer-E16C1 .framer-1ss4wur > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-E16C1 .framer-vu4k7y > * { margin: 0px; margin-left: calc(59px / 2); margin-right: calc(59px / 2); } .framer-E16C1 .framer-vu4k7y > :first-child { margin-left: 0px; } .framer-E16C1 .framer-vu4k7y > :last-child { margin-right: 0px; } .framer-E16C1 .framer-13q14pk > * { margin: 0px; margin-bottom: calc(77px / 2); margin-top: calc(77px / 2); } }}\",\"@media (max-width: 809px) { .framer-E16C1.framer-72rtr7 { width: 390px; } .framer-E16C1 .framer-ecrxbb { align-content: flex-start; align-items: flex-start; flex-direction: column; height: min-content; order: 2; padding: 30px 20px 37px 20px; } .framer-E16C1 .framer-1qo8zzk { gap: 20px; width: min-content; } .framer-E16C1 .framer-1xgpon { height: 29px; width: 289px; } .framer-E16C1 .framer-19dm4lv { height: 15px; left: 3px; top: 10px; width: 280px; } .framer-E16C1 .framer-1n0zp7j { width: 346px; } .framer-E16C1 .framer-1h6kr1i { width: 348px; } .framer-E16C1 .framer-1ss4wur { align-self: stretch; flex-direction: column; width: auto; } .framer-E16C1 .framer-1hr8uex-container, .framer-E16C1 .framer-16ex76i-container, .framer-E16C1 .framer-164v92q, .framer-E16C1 .framer-16hje3c, .framer-E16C1 .framer-bvw8io, .framer-E16C1 .framer-147jonn, .framer-E16C1 .framer-18kmayb, .framer-E16C1 .framer-4s83j6, .framer-E16C1 .framer-s6trfg, .framer-E16C1 .framer-1tn7c8z, .framer-E16C1 .framer-jhqoe5, .framer-E16C1 .framer-1fw3vdj, .framer-E16C1 .framer-1kfu3ra { width: 100%; } .framer-E16C1 .framer-51va3p { height: 304px; width: var(--framer-aspect-ratio-supported, 344px); } .framer-E16C1 .framer-14bb3wk-container { left: 50%; order: 1; right: unset; transform: translateX(-50%); } .framer-E16C1 .framer-1mjiyyl, .framer-E16C1 .framer-1wal6g, .framer-E16C1 .framer-5yxkjn, .framer-E16C1 .framer-6gd7b5, .framer-E16C1 .framer-65cqcg-container { order: 0; } .framer-E16C1 .framer-1gtlfp3, .framer-E16C1 .framer-wn8a0e, .framer-E16C1 .framer-rjvd2z, .framer-E16C1 .framer-1menv9k { order: 1; } .framer-E16C1 .framer-qrgemf, .framer-E16C1 .framer-xo0ef { order: 5; } .framer-E16C1.framer-hghlwk-container, .framer-E16C1.framer-cio608-container, .framer-E16C1.framer-cz58t7-container { left: calc(50.00000000000002% - 350px / 2); top: calc(50.00000000000002% - 382px / 2); width: 350px; } .framer-E16C1 .framer-2sujw0, .framer-E16C1 .framer-cbtfmv { order: 7; } .framer-E16C1 .framer-1lf8an8 { order: 10; } .framer-E16C1 .framer-r19vjc { order: 11; } .framer-E16C1 .framer-1mwl8h6 { order: 12; } .framer-E16C1 .framer-1jwfna7 { order: 14; } .framer-E16C1 .framer-1png45u { order: 15; } .framer-E16C1 .framer-16ue1bx { order: 18; } .framer-E16C1 .framer-arv6e3 { order: 23; } .framer-E16C1 .framer-40fx5i { height: 47px; order: 0; } .framer-E16C1 .framer-16etfwe, .framer-E16C1 .framer-1e52ohg, .framer-E16C1 .framer-46qp4z-container { order: 2; } .framer-E16C1 .framer-axqyob, .framer-E16C1 .framer-1dz6m35 { order: 3; } .framer-E16C1 .framer-bzrz3j, .framer-E16C1 .framer-xm640s-container { order: 4; } .framer-E16C1 .framer-3au4in { order: 6; } .framer-E16C1 .framer-vu4k7y { flex-direction: column; gap: 10px; } .framer-E16C1 .framer-162nl6t { height: 25px; width: 358px; } .framer-E16C1 .framer-11b8uf0 { height: 1936px; order: 6; } .framer-E16C1 .framer-hfik95 { height: 1834px; left: -445px; right: -445px; top: calc(50.61983471074383% - 1834px / 2); width: unset; } .framer-E16C1 .framer-7qh5pf { bottom: 17px; flex-direction: column; left: 50%; top: unset; transform: translateX(-50%); } .framer-E16C1 .framer-1yumae0 { height: 322px; width: 350px; } .framer-E16C1 .framer-1cx2dyo { left: 30px; top: 33px; } .framer-E16C1 .framer-tpmdlm { bottom: 37px; left: 50%; top: unset; transform: translateX(-50%); width: 295px; } .framer-E16C1 .framer-1bprvfx { height: var(--framer-aspect-ratio-supported, 74px); right: -5px; top: 24px; width: 113px; } .framer-E16C1 .framer-1ozo82u { height: 269px; width: 350px; } .framer-E16C1 .framer-41eibo { left: 48%; top: 39px; transform: translateX(-50%); width: 275px; } .framer-E16C1 .framer-cftrdw { bottom: 38px; left: 51%; top: unset; transform: translateX(-50%); width: 301px; } .framer-E16C1 .framer-1nrpvda { height: 79px; left: 266px; top: 12px; width: 67px; } .framer-E16C1 .framer-zsnzqg { height: 238px; width: 350px; } .framer-E16C1 .framer-tiqm0y { left: 47%; top: 30px; transform: translateX(-50%); } .framer-E16C1 .framer-1egc8e4 { bottom: 38px; left: 52%; top: unset; transform: translateX(-50%); width: 303px; } .framer-E16C1 .framer-1imjizw { height: var(--framer-aspect-ratio-supported, 60px); width: 107px; } .framer-E16C1 .framer-ld3bfn { height: 298px; width: 350px; } .framer-E16C1 .framer-16itqi8 { left: 30px; top: 35px; width: 173px; } .framer-E16C1 .framer-4u5xum { bottom: 34px; left: 49%; top: unset; transform: translateX(-50%); width: 281px; } .framer-E16C1 .framer-1nrnusk { height: var(--framer-aspect-ratio-supported, 97px); right: 0px; top: -5px; width: 122px; } .framer-E16C1 .framer-oltf1q { height: 299px; width: 350px; } .framer-E16C1 .framer-18w904s { left: 29px; top: 37px; width: 193px; } .framer-E16C1 .framer-vl8jku { height: var(--framer-aspect-ratio-supported, 87px); top: 47px; width: 115px; } .framer-E16C1 .framer-o7xel { align-content: flex-start; align-items: flex-start; left: 50%; padding: 0px 0px 50px 0px; transform: translateX(-50%); } .framer-E16C1 .framer-zwuyzr { width: 351px; } .framer-E16C1 .framer-f3e0tu { width: 356px; } .framer-E16C1 .framer-rjtei1 { height: 895px; order: 13; padding: 70px 80px 60px 80px; } .framer-E16C1 .framer-bbnx3n { height: 745px; width: 350px; } .framer-E16C1 .framer-f6ozvk { left: -1px; right: 0px; top: 0px; width: unset; } .framer-E16C1 .framer-qwq333 { white-space: pre-wrap; width: 357px; word-break: break-word; word-wrap: break-word; } .framer-E16C1 .framer-1ioapyi-container, .framer-E16C1 .framer-1mz7yyc-container, .framer-E16C1 .framer-gxf1i3 { flex: 1 0 0px; width: 1px; } .framer-E16C1 .framer-6wndr7 { bottom: -2px; height: 379px; left: 0px; right: 0px; top: unset; width: unset; } .framer-E16C1 .framer-1l94jsx { background-color: rgba(86, 64, 255, 0.1); order: 9; } .framer-E16C1 .framer-4mapne { gap: 50px; width: 100%; } .framer-E16C1 .framer-1wrkjoc { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; text-decoration: none; width: 100%; } .framer-E16C1 .framer-1zzt63 { height: var(--framer-aspect-ratio-supported, 197px); left: unset; position: relative; right: unset; top: unset; width: 350px; } .framer-E16C1 .framer-19a39ja { background-color: var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, #563fff); flex: 1 0 0px; width: 1px; } .framer-E16C1.framer-17hg1m0-container { left: calc(50.00000000000002% - 352px / 2); top: calc(50.00000000000002% - 382px / 2); width: 352px; } .framer-E16C1 .framer-1tvkrir { order: 17; padding: 80px 20px 48px 20px; } .framer-E16C1 .framer-1ajifi5 { order: 0; width: 100%; } .framer-E16C1 .framer-1yq52e0 { height: var(--framer-aspect-ratio-supported, 171px); } .framer-E16C1 .framer-1aelyzo { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 450px; order: 19; } .framer-E16C1 .framer-1c1i9i { align-self: start; height: 100%; justify-self: start; width: 100%; } .framer-E16C1 .framer-1auz2yn { bottom: -199px; right: -199px; top: unset; transform: unset; width: unset; } .framer-E16C1 .framer-3ctbil { order: 0; width: 345px; } .framer-E16C1 .framer-1nkw06c { order: 1; width: 345px; } .framer-E16C1 .framer-19cgutq { gap: 0px; order: 20; padding: 0px 20px 0px 20px; } .framer-E16C1 .framer-13golvl { background: linear-gradient(135deg, var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, #563fff) 0%, rgb(54, 34, 201) 100%); height: 336px; order: 1; } .framer-E16C1 .framer-f5v0bq { bottom: 59px; left: 50%; top: unset; transform: translateX(-50%); } .framer-E16C1 .framer-1iwyw2w { background-color: var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, #563fff); } .framer-E16C1 .framer-19d8wmi { text-decoration: none; } .framer-E16C1 .framer-1wo50em { order: 22; padding: 60px 20px 60px 20px; } .framer-E16C1 .framer-1bpk9vt { flex-direction: column; gap: 60px; width: 350px; } .framer-E16C1 .framer-14ubbgy { background-color: var(--token-5e81d158-faf8-4ba3-be83-446285e3c0d9, #563fff); text-decoration: none; width: 100%; } .framer-E16C1 .framer-bdamit { order: 1; width: 100%; } .framer-E16C1 .framer-kpg5jl { order: 3; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-E16C1 .framer-ecrxbb, .framer-E16C1 .framer-1qo8zzk, .framer-E16C1 .framer-1ss4wur, .framer-E16C1 .framer-vu4k7y, .framer-E16C1 .framer-7qh5pf, .framer-E16C1 .framer-4mapne, .framer-E16C1 .framer-1wrkjoc, .framer-E16C1 .framer-1aelyzo, .framer-E16C1 .framer-19cgutq, .framer-E16C1 .framer-1bpk9vt { gap: 0px; } .framer-E16C1 .framer-ecrxbb > *, .framer-E16C1 .framer-7qh5pf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-E16C1 .framer-ecrxbb > :first-child, .framer-E16C1 .framer-1qo8zzk > :first-child, .framer-E16C1 .framer-1ss4wur > :first-child, .framer-E16C1 .framer-vu4k7y > :first-child, .framer-E16C1 .framer-7qh5pf > :first-child, .framer-E16C1 .framer-4mapne > :first-child, .framer-E16C1 .framer-1wrkjoc > :first-child, .framer-E16C1 .framer-19cgutq > :first-child, .framer-E16C1 .framer-1bpk9vt > :first-child { margin-top: 0px; } .framer-E16C1 .framer-ecrxbb > :last-child, .framer-E16C1 .framer-1qo8zzk > :last-child, .framer-E16C1 .framer-1ss4wur > :last-child, .framer-E16C1 .framer-vu4k7y > :last-child, .framer-E16C1 .framer-7qh5pf > :last-child, .framer-E16C1 .framer-4mapne > :last-child, .framer-E16C1 .framer-1wrkjoc > :last-child, .framer-E16C1 .framer-19cgutq > :last-child, .framer-E16C1 .framer-1bpk9vt > :last-child { margin-bottom: 0px; } .framer-E16C1 .framer-1qo8zzk > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-E16C1 .framer-1ss4wur > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-E16C1 .framer-vu4k7y > *, .framer-E16C1 .framer-1wrkjoc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-E16C1 .framer-4mapne > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-E16C1 .framer-1aelyzo > *, .framer-E16C1 .framer-1aelyzo > :first-child, .framer-E16C1 .framer-1aelyzo > :last-child { margin: 0px; } .framer-E16C1 .framer-19cgutq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-E16C1 .framer-1bpk9vt > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12567\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"l7_FvOud7\":{\"layout\":[\"fixed\",\"auto\"]},\"T0lvaDWzn\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"o3pJr7HUI\":{\"pattern\":\":o3pJr7HUI\",\"name\":\"1\"},\"JUa6jgaTl\":{\"pattern\":\":JUa6jgaTl\",\"name\":\"perfect\"},\"RCvjL1Daj\":{\"pattern\":\":RCvjL1Daj\",\"name\":\"tariffs1\"},\"YPHru_BKr\":{\"pattern\":\":YPHru_BKr\",\"name\":\"perfect-solution\"},\"R8Y0GVRUg\":{\"pattern\":\":R8Y0GVRUg\",\"name\":\"benefits\"},\"KXu9yEgf8\":{\"pattern\":\":KXu9yEgf8\",\"name\":\"how-it-works\"},\"bsifScbPT\":{\"pattern\":\":bsifScbPT\",\"name\":\"tariffs1\"},\"WTaM0kHGD\":{\"pattern\":\":WTaM0kHGD\",\"name\":\"faq\"},\"YhPtoV1ee\":{\"pattern\":\":YhPtoV1ee\",\"name\":\"perfect-solution1\"},\"oHw1YIphq\":{\"pattern\":\":oHw1YIphq\",\"name\":\"how-it-works1\"},\"wqn01CcdP\":{\"pattern\":\":wqn01CcdP\",\"name\":\"tariffs1\"},\"fOp1kutjh\":{\"pattern\":\":fOp1kutjh\",\"name\":\"faq1\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-E16C1\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:12567,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{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:\"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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...UserComponentFonts,...CookieBannerFonts,...FormFonts,...EmbedFonts,...UserComponent1Fonts,...Embed1Fonts,...FAQFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"l7_FvOud7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"T0lvaDWzn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"{\\\"o3pJr7HUI\\\":{\\\"pattern\\\":\\\":o3pJr7HUI\\\",\\\"name\\\":\\\"1\\\"},\\\"JUa6jgaTl\\\":{\\\"pattern\\\":\\\":JUa6jgaTl\\\",\\\"name\\\":\\\"perfect\\\"},\\\"RCvjL1Daj\\\":{\\\"pattern\\\":\\\":RCvjL1Daj\\\",\\\"name\\\":\\\"tariffs1\\\"},\\\"YPHru_BKr\\\":{\\\"pattern\\\":\\\":YPHru_BKr\\\",\\\"name\\\":\\\"perfect-solution\\\"},\\\"R8Y0GVRUg\\\":{\\\"pattern\\\":\\\":R8Y0GVRUg\\\",\\\"name\\\":\\\"benefits\\\"},\\\"KXu9yEgf8\\\":{\\\"pattern\\\":\\\":KXu9yEgf8\\\",\\\"name\\\":\\\"how-it-works\\\"},\\\"bsifScbPT\\\":{\\\"pattern\\\":\\\":bsifScbPT\\\",\\\"name\\\":\\\"tariffs1\\\"},\\\"WTaM0kHGD\\\":{\\\"pattern\\\":\\\":WTaM0kHGD\\\",\\\"name\\\":\\\"faq\\\"},\\\"YhPtoV1ee\\\":{\\\"pattern\\\":\\\":YhPtoV1ee\\\",\\\"name\\\":\\\"perfect-solution1\\\"},\\\"oHw1YIphq\\\":{\\\"pattern\\\":\\\":oHw1YIphq\\\",\\\"name\\\":\\\"how-it-works1\\\"},\\\"wqn01CcdP\\\":{\\\"pattern\\\":\\\":wqn01CcdP\\\",\\\"name\\\":\\\"tariffs1\\\"},\\\"fOp1kutjh\\\":{\\\"pattern\\\":\\\":fOp1kutjh\\\",\\\"name\\\":\\\"faq1\\\"}}\",\"framerIntrinsicHeight\":\"12567\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "iframeHeight", "setIframeHeight", "hasScript", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "htmlStyle", "containerStyles", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerKV2Llfkw4", "withCSS", "KV2Llfkw4_default", "addPropertyControls", "ControlType", "addFonts", "ButtonFonts", "getFonts", "KV2Llfkw4_default", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "formVariants", "form", "variants", "currentVariant", "_variants_success", "_variants_pending", "_variants_error", "_variants_incomplete", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "FormContainer", "formState", "u", "l", "RichText2", "FormPlainTextInput2", "ComponentViewportProvider", "KV2Llfkw4_default", "css", "FramertzbfaH6lq", "withCSS", "tzbfaH6lq_default", "addFonts", "ButtonFonts", "UserComponentFonts", "getFonts", "oj0hAZC82_default", "CookieBannerFonts", "CookieBanner", "FormFonts", "tzbfaH6lq_default", "EmbedFonts", "Embed", "UserComponent1Fonts", "MDcEcW54z_default", "MotionDivWithFX", "withFX", "motion", "Embed1Fonts", "FAQFonts", "gWoShLv2R_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation", "transition1", "animation1", "transformTemplate1", "_", "t", "transformTemplate2", "transformTemplate3", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "k9W7gMjUi3bnx0g", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "elementId1", "ref2", "elementId2", "ref3", "isDisplayed1", "elementId3", "ref4", "elementId4", "ref5", "isDisplayed2", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "isDisplayed3", "elementId8", "ref9", "isDisplayed4", "elementId9", "ref10", "elementId10", "ref11", "isDisplayed5", "elementId11", "ref12", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "x", "RichText2", "SVG", "ComponentViewportProvider", "Container", "getLoadingLazyAtYPosition", "Image2", "Link", "l", "AnimatePresence", "Ga", "overlay1", "overlay2", "overlay3", "overlay4", "overlay5", "overlay6", "overlay7", "overlay8", "overlay9", "overlay10", "overlay11", "overlay12", "overlay13", "overlay14", "overlay15", "overlay16", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
