{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/jBKl3Zqt1D0oqdDVLgep/TftyX3VXaIRK29IDRXdV/pgdcHbAya.js", "ssg:https://framerusercontent.com/modules/gorMdZvRGVDsSTSyTdTW/ydeoe4IfQg31FUk8VKLA/Z3KrlLnp0.js", "ssg:https://framerusercontent.com/modules/9gEzF6F3tvOsk0jFADPQ/JbnBqzarSbqce9wkWOOj/c38PXSriH.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,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{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);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </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>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,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\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (575e68f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Poppins-bold\",\"FS;Poppins-black\",\"FS;Poppins-black italic\",\"FS;Poppins-bold italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/EOHGWBZYYKO6R4PWP4S2B3FFWHHBEZN6/UWQLMF4AFWLXCJQCFV3WRVYC77KZXPRB/FYG6OCH7XOLUUSZTIZE65ATBZWF623O4.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/22GWRXQXMICIWABQXFWKIWZIILKO5JDJ/2BBKMSVLV5CSDOZ7HEEECOTKPOVVJOC3/RNFY4UJD36462ZMGEIC5I7KNE73BPOAU.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2PWH5ACYHQEXIHGDLY5OWYMAC3F65AK5/OD6JOLYDRZZOKZGAPOMF7QEWPC5DTZS6/F5IVXJVPQ2DIFNG5HQZ7NI5VG7P7VDLV.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/JQL34MORONR7D7BXOVTX3KBGJGEJQ5BJ/CKUZVY5SFANCFAT7FS3MP6ZL4BMEWCJE/NOLRWF3JBJ434MILPG5RB6R2B4HGRSZB.woff2\",weight:\"700\"}]}];export const css=['.framer-U73ey .framer-styles-preset-1trqdya:not(.rich-text-wrapper), .framer-U73ey .framer-styles-preset-1trqdya.rich-text-wrapper h1 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 50px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-eabec031-63c1-4476-be70-c38687909315, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1349px) and (min-width: 720px) { .framer-U73ey .framer-styles-preset-1trqdya:not(.rich-text-wrapper), .framer-U73ey .framer-styles-preset-1trqdya.rich-text-wrapper h1 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-eabec031-63c1-4476-be70-c38687909315, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 719px) and (min-width: 0px) { .framer-U73ey .framer-styles-preset-1trqdya:not(.rich-text-wrapper), .framer-U73ey .framer-styles-preset-1trqdya.rich-text-wrapper h1 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 30px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-eabec031-63c1-4476-be70-c38687909315, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-U73ey\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (18f6785)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/2ecaVC1jEOISzSyBt439/YrkdJpIR1lmGJtvR3rjE/J2o0w94ro.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/jBKl3Zqt1D0oqdDVLgep/TftyX3VXaIRK29IDRXdV/pgdcHbAya.js\";const cycleOrder=[\"urmRe1yHe\",\"eRgZld4qG\"];const serializationHash=\"framer-FCJcm\";const variantClassNames={eRgZld4qG:\"framer-v-1xfurwf\",urmRe1yHe:\"framer-v-h1xg8j\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"urmRe1yHe\",\"Variant 2\":\"eRgZld4qG\"};const getProps=({amount,height,id,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,kxHlOGL6R:(_ref=text!==null&&text!==void 0?text:props.kxHlOGL6R)!==null&&_ref!==void 0?_ref:\"Year's Operation\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"urmRe1yHe\",ylDMWmlC9:(_ref2=amount!==null&&amount!==void 0?amount:props.ylDMWmlC9)!==null&&_ref2!==void 0?_ref2:\"11\"};};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,ylDMWmlC9,kxHlOGL6R,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"urmRe1yHe\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-h1xg8j\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"urmRe1yHe\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({eRgZld4qG:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1trqdya\",\"data-styles-preset\":\"pgdcHbAya\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233)))\"},children:\"11\"})}),className:\"framer-1hoa1or\",\"data-framer-name\":\"Amount\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jo6flrKjc\",style:{\"--extracted-gdpscs\":\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\",\"--framer-paragraph-spacing\":\"0px\"},text:ylDMWmlC9,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-cs8fwb\",\"data-styles-preset\":\"J2o0w94ro\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2930fc96-2a19-4c51-bdb3-fa6e89c47e8a, rgb(11, 33, 70)))\"},children:\"Year's Operation\"})}),className:\"framer-i5tjdg\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZRMVOWdkp\",style:{\"--extracted-r6o4lv\":\"var(--token-2930fc96-2a19-4c51-bdb3-fa6e89c47e8a, rgb(11, 33, 70))\",\"--framer-paragraph-spacing\":\"0px\"},text:kxHlOGL6R,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FCJcm.framer-10zzuoz, .framer-FCJcm .framer-10zzuoz { display: block; }\",\".framer-FCJcm.framer-h1xg8j { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 156px; }\",\".framer-FCJcm .framer-1hoa1or, .framer-FCJcm .framer-i5tjdg { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FCJcm.framer-h1xg8j { gap: 0px; } .framer-FCJcm.framer-h1xg8j > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-FCJcm.framer-h1xg8j > :first-child { margin-top: 0px; } .framer-FCJcm.framer-h1xg8j > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 95\n * @framerIntrinsicWidth 156\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"eRgZld4qG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ylDMWmlC9\":\"amount\",\"kxHlOGL6R\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZ3KrlLnp0=withCSS(Component,css,\"framer-FCJcm\");export default FramerZ3KrlLnp0;FramerZ3KrlLnp0.displayName=\"Cards/Stats\";FramerZ3KrlLnp0.defaultProps={height:95,width:156};addPropertyControls(FramerZ3KrlLnp0,{variant:{options:[\"urmRe1yHe\",\"eRgZld4qG\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},ylDMWmlC9:{defaultValue:\"11\",displayTextArea:false,title:\"Amount\",type:ControlType.String},kxHlOGL6R:{defaultValue:\"Year's Operation\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramerZ3KrlLnp0,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZ3KrlLnp0\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"ylDMWmlC9\\\":\\\"amount\\\",\\\"kxHlOGL6R\\\":\\\"text\\\"}\",\"framerIntrinsicWidth\":\"156\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eRgZld4qG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"95\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Z3KrlLnp0.map", "// Generated by Framer (6b58135)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import ButtonPrimary from\"#framer/local/canvasComponent/fAUFEbuKV/fAUFEbuKV.js\";import NavBar from\"#framer/local/canvasComponent/LxOz_aaN8/LxOz_aaN8.js\";import CardsTestimonial from\"#framer/local/canvasComponent/ps32H39sp/ps32H39sp.js\";import GlobalFooter from\"#framer/local/canvasComponent/w0QUTtTnv/w0QUTtTnv.js\";import CardsStats from\"#framer/local/canvasComponent/Z3KrlLnp0/Z3KrlLnp0.js\";import*as sharedStyle2 from\"#framer/local/css/Dvd2QnffQ/Dvd2QnffQ.js\";import*as sharedStyle3 from\"#framer/local/css/J2o0w94ro/J2o0w94ro.js\";import*as sharedStyle from\"#framer/local/css/pgdcHbAya/pgdcHbAya.js\";import*as sharedStyle1 from\"#framer/local/css/w8q5QJlSV/w8q5QJlSV.js\";import*as sharedStyle4 from\"#framer/local/css/wVndMwZwq/wVndMwZwq.js\";import metadataProvider from\"#framer/local/webPageMetadata/c38PXSriH/c38PXSriH.js\";const NavBarFonts=getFonts(NavBar);const ContainerWithFX=withFX(Container);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonPrimaryFonts=getFonts(ButtonPrimary);const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const CardsStatsFonts=getFonts(CardsStats);const MotionAWithFX=withFX(motion.a);const ImageWithFX=withFX(Image);const EmbedFonts=getFonts(Embed);const CardsTestimonialFonts=getFonts(CardsTestimonial);const SlideshowFonts=getFonts(Slideshow);const GlobalFooterFonts=getFonts(GlobalFooter);const breakpoints={i2XIy198f:\"(min-width: 1350px) and (max-width: 1599px)\",LzXNUiI6T:\"(max-width: 719px)\",mPSypq2CF:\"(min-width: 1280px) and (max-width: 1349px)\",OPTJieC8W:\"(min-width: 720px) and (max-width: 1279px)\",wMec0WY7P:\"(min-width: 1600px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Efyk0\";const variantClassNames={i2XIy198f:\"framer-v-ejgiep\",LzXNUiI6T:\"framer-v-1l2arl5\",mPSypq2CF:\"framer-v-10rpncf\",OPTJieC8W:\"framer-v-n1n9xo\",wMec0WY7P:\"framer-v-1pzpqa3\"};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:.1,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={delay:.25,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition4={damping:60,delay:.4,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition5={damping:30,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:70};const transition6={damping:30,delay:0,mass:1,stiffness:140,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:90};const transition7={damping:30,delay:0,mass:1,stiffness:130,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-50,y:0};const transition8={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"macbook air 15\":\"mPSypq2CF\",Breakpoint:\"wMec0WY7P\",Desktop:\"i2XIy198f\",Phone:\"LzXNUiI6T\",Tablet:\"OPTJieC8W\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"i2XIy198f\"};};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 sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"Lk2T1IRKr\");const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if([\"wMec0WY7P\",\"mPSypq2CF\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"wMec0WY7P\",\"mPSypq2CF\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"LzXNUiI6T\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"LzXNUiI6T\")return false;return true;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"mPSypq2CF\")return false;return true;};const isDisplayed5=()=>{if(!isBrowser())return true;if(baseVariant===\"mPSypq2CF\")return true;return false;};const elementId1=useRouteElementId(\"W7wbs2YjO\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"qt45UWjf0\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"U5AKZVTyo\");const ref4=React.useRef(null);const isDisplayed6=()=>{if(!isBrowser())return true;if(baseVariant===\"wMec0WY7P\")return true;return false;};const isDisplayed7=()=>{if(!isBrowser())return true;if(baseVariant===\"OPTJieC8W\")return true;return false;};const isDisplayed8=()=>{if(!isBrowser())return true;if(baseVariant===\"OPTJieC8W\")return false;return true;};const isDisplayed9=()=>{if(!isBrowser())return true;if([\"LzXNUiI6T\",\"wMec0WY7P\",\"mPSypq2CF\"].includes(baseVariant))return false;return true;};const elementId4=useRouteElementId(\"k2m8uEueZ\");const ref5=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"i2XIy198f\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: none; }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-ejgiep\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:223,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wMec0WY7P:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3alteo-container\",id:\"3alteo\",nodeId:\"QlKWjG0nW\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{variant:\"JYJDHiUkW\"},OPTJieC8W:{variant:\"aqbp9_rCP\"}},children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"QlKWjG0nW\",layoutId:\"QlKWjG0nW\",style:{width:\"100%\"},variant:\"G8MLxzXsP\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1jytkn\",\"data-framer-name\":\"Hero Section\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kdmoqy\",\"data-framer-name\":\"header info \",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-tssug1\",\"data-framer-name\":\"Hero Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cae65x\",\"data-framer-name\":\"Hero Content\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-1ljohf0\",\"data-framer-appear-id\":\"1ljohf0\",\"data-framer-name\":\"Preheading\",initial:animation2,optimized:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wMec0WY7P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1trqdya\",\"data-styles-preset\":\"pgdcHbAya\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2930fc96-2a19-4c51-bdb3-fa6e89c47e8a, rgb(11, 33, 70))\"},children:[\"Proven Mid-Management to Exec Board \",/*#__PURE__*/_jsx(\"br\",{}),\"Search and Selection Specialists.\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1trqdya\",\"data-styles-preset\":\"pgdcHbAya\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2930fc96-2a19-4c51-bdb3-fa6e89c47e8a, rgb(11, 33, 70))\"},children:\"Mid-Management to Exec Board Search and Selection Specialists.\"})}),className:\"framer-1t5czg\",\"data-framer-appear-id\":\"1t5czg\",\"data-framer-name\":\"Elevate your place with custom-made furniture\",fonts:[\"Inter\"],initial:animation2,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"y8T3Mz6_d\"},implicitPathVariables:undefined},{href:{webPageId:\"y8T3Mz6_d\"},implicitPathVariables:undefined},{href:{webPageId:\"y8T3Mz6_d\"},implicitPathVariables:undefined},{href:{webPageId:\"y8T3Mz6_d\"},implicitPathVariables:undefined},{href:{webPageId:\"y8T3Mz6_d\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{y:(componentViewport?.y||0)+0+223+0+2+0+0+178.1666},mPSypq2CF:{y:(componentViewport?.y||0)+0+223+-3.5+2+0+0+312},wMec0WY7P:{y:(componentViewport?.y||0)+0+223+0+2+0+0+213.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+223+0+2+0+0+208.5,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1psae6v-container\",nodeId:\"CEAjXcHch\",rendersWithMotion:true,scopeId:\"c38PXSriH\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{GwflIu3yC:resolvedLinks[2]},mPSypq2CF:{GwflIu3yC:resolvedLinks[4]},OPTJieC8W:{GwflIu3yC:resolvedLinks[1]},wMec0WY7P:{GwflIu3yC:resolvedLinks[3],ooodzduO6:\"Our Curent Opportunities\"}},children:/*#__PURE__*/_jsx(ButtonPrimary,{GwflIu3yC:resolvedLinks[0],height:\"100%\",id:\"CEAjXcHch\",layoutId:\"CEAjXcHch\",nUVaAj_iQ:true,ooodzduO6:\"Our Latest Opportunities\",Qf6DGomur:2,variant:\"BvbyD3rVu\",width:\"100%\",xL3FqAHZw:\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"})})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-izsnzt\",\"data-framer-name\":\"Column Right\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3avb6b\",\"data-framer-name\":\"Client Review\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+223+0+2+0+0+270.1666+0+0+0+0),pixelHeight:128,pixelWidth:480,src:\"https://framerusercontent.com/images/uUaMpRvfxU3rNnN03iCw675EvE.png\"}},mPSypq2CF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+223+-3.5+2+0+0+404+0+0+41.1666),pixelHeight:128,pixelWidth:480,src:\"https://framerusercontent.com/images/uUaMpRvfxU3rNnN03iCw675EvE.png\"}},wMec0WY7P:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+223+0+2+0+0+305.5+0+0+41.1666),pixelHeight:128,pixelWidth:480,src:\"https://framerusercontent.com/images/uUaMpRvfxU3rNnN03iCw675EvE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+223+0+2+0+0+300.5+0+0+41.1666),pixelHeight:128,pixelWidth:480,src:\"https://framerusercontent.com/images/uUaMpRvfxU3rNnN03iCw675EvE.png\"},className:\"framer-1uqfpjf\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtNjAw\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"25px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2930fc96-2a19-4c51-bdb3-fa6e89c47e8a, rgb(11, 33, 70))\"},children:\"Over 1500+ Candidate & Companies Trust Us.\"})})},mPSypq2CF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtNjAw\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"var(--token-2930fc96-2a19-4c51-bdb3-fa6e89c47e8a, rgb(11, 33, 70))\"},children:\"Over 1500+ Candidate Have Trusted Us With Their Career To Date.\"})})},wMec0WY7P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtNjAw\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"var(--token-2930fc96-2a19-4c51-bdb3-fa6e89c47e8a, rgb(11, 33, 70))\"},children:\"Over 1500+ Candidate Have Trusted Us With Their Career To Date.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtNjAw\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"var(--token-2930fc96-2a19-4c51-bdb3-fa6e89c47e8a, rgb(11, 33, 70))\"},children:\"Over 1500+ Candidate & Companies Trust Us.\"})}),className:\"framer-1jp9da0\",\"data-framer-name\":\"Text\",fonts:[\"GF;Urbanist-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b7mmra-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IOVWOFSY2\",scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"IOVWOFSY2\",isMixedBorderRadius:true,layoutId:\"IOVWOFSY2\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/867FqZNglWQ1TTgJ4CLPqG7PDI0.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ugqoxj hidden-ejgiep hidden-n1n9xo hidden-1l2arl5\",\"data-framer-name\":\"stats\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-h1hi6r\",\"data-framer-name\":\"Candidates clients\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jgjb5g\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-137w0jz\",\"data-framer-name\":\"for candidates\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wMec0WY7P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kq3yif\",\"data-styles-preset\":\"w8q5QJlSV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"For Candidates & Clients\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kq3yif\",\"data-styles-preset\":\"w8q5QJlSV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"For Clients\"})}),className:\"framer-bxapq8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mPSypq2CF:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+923+50+0+0+30+40.8),pixelHeight:273,pixelWidth:1384,positionX:\"center\",positionY:\"center\",sizes:`calc(max((max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), (${componentViewport?.width||\"100vw\"} - 100px) * 0.9), 1px) - 60px) / 4, 1px) - 60px)`,src:\"https://framerusercontent.com/images/WqgzcGSTHf4LyRUdos1ezmSJw.png\",srcSet:\"https://framerusercontent.com/images/WqgzcGSTHf4LyRUdos1ezmSJw.png?scale-down-to=512 512w,https://framerusercontent.com/images/WqgzcGSTHf4LyRUdos1ezmSJw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WqgzcGSTHf4LyRUdos1ezmSJw.png 1384w\"}},wMec0WY7P:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+723+50+0+0+30+40.8),pixelHeight:273,pixelWidth:1384,positionX:\"center\",positionY:\"center\",sizes:\"262.5px\",src:\"https://framerusercontent.com/images/WqgzcGSTHf4LyRUdos1ezmSJw.png\",srcSet:\"https://framerusercontent.com/images/WqgzcGSTHf4LyRUdos1ezmSJw.png?scale-down-to=512 512w,https://framerusercontent.com/images/WqgzcGSTHf4LyRUdos1ezmSJw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WqgzcGSTHf4LyRUdos1ezmSJw.png 1384w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:607,pixelWidth:1709,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/y7hdnbjpf7VQMjnj0NImyBPk5Zw.png\",srcSet:\"https://framerusercontent.com/images/y7hdnbjpf7VQMjnj0NImyBPk5Zw.png?scale-down-to=512 512w,https://framerusercontent.com/images/y7hdnbjpf7VQMjnj0NImyBPk5Zw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/y7hdnbjpf7VQMjnj0NImyBPk5Zw.png 1709w\"},className:\"framer-twk8wl\"})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i9pi7ibzE\"},implicitPathVariables:undefined},{href:{webPageId:\"u0jpQab0b\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mPSypq2CF:{y:(componentViewport?.y||0)+0+923+50+0+0+30+208.8},wMec0WY7P:{y:(componentViewport?.y||0)+0+723+50+0+0+30+208.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2nytqf-container\",nodeId:\"em218Ja5v\",rendersWithMotion:true,scopeId:\"c38PXSriH\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mPSypq2CF:{GwflIu3yC:resolvedLinks1[1]},wMec0WY7P:{GwflIu3yC:resolvedLinks1[0],ooodzduO6:\"Find Out More\"}},children:/*#__PURE__*/_jsx(ButtonPrimary,{height:\"100%\",id:\"em218Ja5v\",layoutId:\"em218Ja5v\",nUVaAj_iQ:true,ooodzduO6:\"Talk With Us\",Qf6DGomur:2,variant:\"BvbyD3rVu\",width:\"100%\",xL3FqAHZw:\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-68m6s4\",\"data-framer-name\":\"for candidates\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kq3yif\",\"data-styles-preset\":\"w8q5QJlSV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"For Candidates\"})}),className:\"framer-mzimkv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mPSypq2CF:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+923+50+0+0+30+40.8),pixelHeight:607,pixelWidth:1953,positionX:\"center\",positionY:\"center\",sizes:`calc(max((max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), (${componentViewport?.width||\"100vw\"} - 100px) * 0.9), 1px) - 60px) / 4, 1px) - 60px)`,src:\"https://framerusercontent.com/images/2JjhyshaWTPKaC9dZpddqHw5OE4.png\",srcSet:\"https://framerusercontent.com/images/2JjhyshaWTPKaC9dZpddqHw5OE4.png?scale-down-to=512 512w,https://framerusercontent.com/images/2JjhyshaWTPKaC9dZpddqHw5OE4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2JjhyshaWTPKaC9dZpddqHw5OE4.png 1953w\"}},wMec0WY7P:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+723+50+0+0+30+40.8),pixelHeight:458,pixelWidth:1080,sizes:\"262.5px\",src:\"https://framerusercontent.com/images/XBHr1Mn5eut49eIA1lLHD41hrc.jpg\",srcSet:\"https://framerusercontent.com/images/XBHr1Mn5eut49eIA1lLHD41hrc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XBHr1Mn5eut49eIA1lLHD41hrc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XBHr1Mn5eut49eIA1lLHD41hrc.jpg 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:607,pixelWidth:1953,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2JjhyshaWTPKaC9dZpddqHw5OE4.png\",srcSet:\"https://framerusercontent.com/images/2JjhyshaWTPKaC9dZpddqHw5OE4.png?scale-down-to=512 512w,https://framerusercontent.com/images/2JjhyshaWTPKaC9dZpddqHw5OE4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2JjhyshaWTPKaC9dZpddqHw5OE4.png 1953w\"},className:\"framer-3amdg4\"})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gJ_EjCGXx\"},implicitPathVariables:undefined},{href:{webPageId:\"gJ_EjCGXx\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mPSypq2CF:{y:(componentViewport?.y||0)+0+923+50+0+0+30+208.8},wMec0WY7P:{y:(componentViewport?.y||0)+0+723+50+0+0+30+208.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13eqnf9-container\",nodeId:\"V8CJUNmRi\",rendersWithMotion:true,scopeId:\"c38PXSriH\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mPSypq2CF:{GwflIu3yC:resolvedLinks2[1]},wMec0WY7P:{GwflIu3yC:resolvedLinks2[0],ooodzduO6:\"Find Out More\"}},children:/*#__PURE__*/_jsx(ButtonPrimary,{height:\"100%\",id:\"V8CJUNmRi\",layoutId:\"V8CJUNmRi\",nUVaAj_iQ:true,ooodzduO6:\"Talk With Us\",Qf6DGomur:2,variant:\"BvbyD3rVu\",width:\"100%\",xL3FqAHZw:\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-157dqfc\",\"data-framer-name\":\"for candidates\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wMec0WY7P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kq3yif\",\"data-styles-preset\":\"w8q5QJlSV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"For Candidates & Clients\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kq3yif\",\"data-styles-preset\":\"w8q5QJlSV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"For Candidates\"})}),className:\"framer-1q9ax37\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mPSypq2CF:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+923+50+0+0+30+40.8),pixelHeight:322,pixelWidth:1382,positionX:\"center\",positionY:\"center\",sizes:`calc(max((max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), (${componentViewport?.width||\"100vw\"} - 100px) * 0.9), 1px) - 60px) / 4, 1px) - 60px)`,src:\"https://framerusercontent.com/images/a0yl1ft9Azos7G5v3raQvRTcuRE.png\",srcSet:\"https://framerusercontent.com/images/a0yl1ft9Azos7G5v3raQvRTcuRE.png?scale-down-to=512 512w,https://framerusercontent.com/images/a0yl1ft9Azos7G5v3raQvRTcuRE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a0yl1ft9Azos7G5v3raQvRTcuRE.png 1382w\"}},wMec0WY7P:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+723+50+0+0+30+40.8),pixelHeight:324,pixelWidth:1378,positionX:\"center\",positionY:\"center\",sizes:\"262.5px\",src:\"https://framerusercontent.com/images/fVN65zDDZwEmgDx6FPUEDM5bNzM.png\",srcSet:\"https://framerusercontent.com/images/fVN65zDDZwEmgDx6FPUEDM5bNzM.png?scale-down-to=512 512w,https://framerusercontent.com/images/fVN65zDDZwEmgDx6FPUEDM5bNzM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fVN65zDDZwEmgDx6FPUEDM5bNzM.png 1378w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:138,pixelWidth:665,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Vs0hUBiLrHwkVyGF5NcKKJRH4.png\",srcSet:\"https://framerusercontent.com/images/Vs0hUBiLrHwkVyGF5NcKKJRH4.png?scale-down-to=512 512w,https://framerusercontent.com/images/Vs0hUBiLrHwkVyGF5NcKKJRH4.png 665w\"},className:\"framer-1ps9y1p\"})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sIuGAiylw\"},implicitPathVariables:undefined},{href:{webPageId:\"sIuGAiylw\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mPSypq2CF:{y:(componentViewport?.y||0)+0+923+50+0+0+30+208.8},wMec0WY7P:{y:(componentViewport?.y||0)+0+723+50+0+0+30+208.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ygd0i5-container\",nodeId:\"loL3IEVUU\",rendersWithMotion:true,scopeId:\"c38PXSriH\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mPSypq2CF:{GwflIu3yC:resolvedLinks3[1]},wMec0WY7P:{GwflIu3yC:resolvedLinks3[0],ooodzduO6:\"Find Out More\"}},children:/*#__PURE__*/_jsx(ButtonPrimary,{height:\"100%\",id:\"loL3IEVUU\",layoutId:\"loL3IEVUU\",nUVaAj_iQ:true,ooodzduO6:\"Talk With Us\",Qf6DGomur:2,variant:\"BvbyD3rVu\",width:\"100%\",xL3FqAHZw:\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-106y1ay\",\"data-framer-name\":\"for candidates\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kq3yif\",\"data-styles-preset\":\"w8q5QJlSV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"For Clients\"})}),className:\"framer-16tkyz6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mPSypq2CF:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+923+50+0+0+30+40.8),pixelHeight:608,pixelWidth:1953,positionX:\"center\",positionY:\"center\",sizes:`calc(max((max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), (${componentViewport?.width||\"100vw\"} - 100px) * 0.9), 1px) - 60px) / 4, 1px) - 60px)`,src:\"https://framerusercontent.com/images/IC3MPiGQlwfn347ROPlZpXBRNMI.png\",srcSet:\"https://framerusercontent.com/images/IC3MPiGQlwfn347ROPlZpXBRNMI.png?scale-down-to=512 512w,https://framerusercontent.com/images/IC3MPiGQlwfn347ROPlZpXBRNMI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IC3MPiGQlwfn347ROPlZpXBRNMI.png 1953w\"}},wMec0WY7P:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+723+50+0+0+30+40.8),pixelHeight:550,pixelWidth:1080,sizes:\"262.5px\",src:\"https://framerusercontent.com/images/ibFTMYLOJEsTQMlx0sSg1WU3L8.jpg\",srcSet:\"https://framerusercontent.com/images/ibFTMYLOJEsTQMlx0sSg1WU3L8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ibFTMYLOJEsTQMlx0sSg1WU3L8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ibFTMYLOJEsTQMlx0sSg1WU3L8.jpg 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:608,pixelWidth:1953,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IC3MPiGQlwfn347ROPlZpXBRNMI.png\",srcSet:\"https://framerusercontent.com/images/IC3MPiGQlwfn347ROPlZpXBRNMI.png?scale-down-to=512 512w,https://framerusercontent.com/images/IC3MPiGQlwfn347ROPlZpXBRNMI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IC3MPiGQlwfn347ROPlZpXBRNMI.png 1953w\"},className:\"framer-1wj6woi\"})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"xo9x9uVj5\"},implicitPathVariables:undefined},{href:{webPageId:\"xo9x9uVj5\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mPSypq2CF:{y:(componentViewport?.y||0)+0+923+50+0+0+30+208.8},wMec0WY7P:{y:(componentViewport?.y||0)+0+723+50+0+0+30+208.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17gqwob-container\",nodeId:\"maEY5ANgx\",rendersWithMotion:true,scopeId:\"c38PXSriH\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mPSypq2CF:{GwflIu3yC:resolvedLinks4[1]},wMec0WY7P:{GwflIu3yC:resolvedLinks4[0],ooodzduO6:\"Find Out More\"}},children:/*#__PURE__*/_jsx(ButtonPrimary,{height:\"100%\",id:\"maEY5ANgx\",layoutId:\"maEY5ANgx\",nUVaAj_iQ:true,ooodzduO6:\"Talk With Us\",Qf6DGomur:2,variant:\"BvbyD3rVu\",width:\"100%\",xL3FqAHZw:\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"})})})})})})]})]})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5k4g1 hidden-1pzpqa3 hidden-10rpncf\",\"data-framer-name\":\"for clients and candidates\",children:[isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1722lfb hidden-ejgiep hidden-n1n9xo\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e49sfb\",\"data-framer-name\":\"for candidates\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kq3yif\",\"data-styles-preset\":\"w8q5QJlSV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"For Clients\"})}),className:\"framer-g5iu69\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+723+0+0+0+0+30+40.8),pixelHeight:273,pixelWidth:1384,positionX:\"center\",positionY:\"center\",sizes:`calc(max(min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.7), 50px) - 60px)`,src:\"https://framerusercontent.com/images/WqgzcGSTHf4LyRUdos1ezmSJw.png\",srcSet:\"https://framerusercontent.com/images/WqgzcGSTHf4LyRUdos1ezmSJw.png?scale-down-to=512 512w,https://framerusercontent.com/images/WqgzcGSTHf4LyRUdos1ezmSJw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WqgzcGSTHf4LyRUdos1ezmSJw.png 1384w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:273,pixelWidth:1384,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WqgzcGSTHf4LyRUdos1ezmSJw.png\",srcSet:\"https://framerusercontent.com/images/WqgzcGSTHf4LyRUdos1ezmSJw.png?scale-down-to=512 512w,https://framerusercontent.com/images/WqgzcGSTHf4LyRUdos1ezmSJw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WqgzcGSTHf4LyRUdos1ezmSJw.png 1384w\"},className:\"framer-18qqmg2\"})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"u0jpQab0b\"},implicitPathVariables:undefined},{href:{webPageId:\"u0jpQab0b\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{y:(componentViewport?.y||0)+0+723+0+0+0+0+30+208.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2tjjim-container\",nodeId:\"QjLVYCLgR\",rendersWithMotion:true,scopeId:\"c38PXSriH\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{GwflIu3yC:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{GwflIu3yC:resolvedLinks5[0],height:\"100%\",id:\"QjLVYCLgR\",layoutId:\"QjLVYCLgR\",nUVaAj_iQ:true,ooodzduO6:\"Talk With Us\",Qf6DGomur:2,variant:\"BvbyD3rVu\",width:\"100%\",xL3FqAHZw:\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qs19ic\",\"data-framer-name\":\"for candidates\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kq3yif\",\"data-styles-preset\":\"w8q5QJlSV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"Candidates & Clients\"})}),className:\"framer-j9iyry\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+723+0+0+0+348.8+30+40.8),pixelHeight:325,pixelWidth:1375,positionX:\"center\",positionY:\"center\",sizes:`calc(max(min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.7), 50px) - 60px)`,src:\"https://framerusercontent.com/images/tHm5Phkblc7V1uM0Jpt5sl14nC0.png\",srcSet:\"https://framerusercontent.com/images/tHm5Phkblc7V1uM0Jpt5sl14nC0.png?scale-down-to=512 512w,https://framerusercontent.com/images/tHm5Phkblc7V1uM0Jpt5sl14nC0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tHm5Phkblc7V1uM0Jpt5sl14nC0.png 1375w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:325,pixelWidth:1375,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tHm5Phkblc7V1uM0Jpt5sl14nC0.png\",srcSet:\"https://framerusercontent.com/images/tHm5Phkblc7V1uM0Jpt5sl14nC0.png?scale-down-to=512 512w,https://framerusercontent.com/images/tHm5Phkblc7V1uM0Jpt5sl14nC0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tHm5Phkblc7V1uM0Jpt5sl14nC0.png 1375w\"},className:\"framer-1dh0mje\"})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sIuGAiylw\"},implicitPathVariables:undefined},{href:{webPageId:\"sIuGAiylw\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{y:(componentViewport?.y||0)+0+723+0+0+0+348.8+30+208.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3m5vqs-container\",nodeId:\"jhS0iiS5w\",rendersWithMotion:true,scopeId:\"c38PXSriH\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{GwflIu3yC:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{GwflIu3yC:resolvedLinks6[0],height:\"100%\",id:\"jhS0iiS5w\",layoutId:\"jhS0iiS5w\",nUVaAj_iQ:true,ooodzduO6:\"Talk With Us\",Qf6DGomur:2,variant:\"BvbyD3rVu\",width:\"100%\",xL3FqAHZw:\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18qaff3\",\"data-framer-name\":\"for candidates\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kq3yif\",\"data-styles-preset\":\"w8q5QJlSV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"For Candidates\"})}),className:\"framer-1n4zsb6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+723+0+0+0+697.6+30+40.8),pixelHeight:607,pixelWidth:1953,positionX:\"center\",positionY:\"center\",sizes:`calc(max(min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.7), 50px) - 60px)`,src:\"https://framerusercontent.com/images/2JjhyshaWTPKaC9dZpddqHw5OE4.png\",srcSet:\"https://framerusercontent.com/images/2JjhyshaWTPKaC9dZpddqHw5OE4.png?scale-down-to=512 512w,https://framerusercontent.com/images/2JjhyshaWTPKaC9dZpddqHw5OE4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2JjhyshaWTPKaC9dZpddqHw5OE4.png 1953w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:607,pixelWidth:1953,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2JjhyshaWTPKaC9dZpddqHw5OE4.png\",srcSet:\"https://framerusercontent.com/images/2JjhyshaWTPKaC9dZpddqHw5OE4.png?scale-down-to=512 512w,https://framerusercontent.com/images/2JjhyshaWTPKaC9dZpddqHw5OE4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2JjhyshaWTPKaC9dZpddqHw5OE4.png 1953w\"},className:\"framer-weicte\"})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gJ_EjCGXx\"},implicitPathVariables:undefined},{href:{webPageId:\"gJ_EjCGXx\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{y:(componentViewport?.y||0)+0+723+0+0+0+697.6+30+208.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dzince-container\",nodeId:\"j6USVF2UX\",rendersWithMotion:true,scopeId:\"c38PXSriH\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{GwflIu3yC:resolvedLinks7[1]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{GwflIu3yC:resolvedLinks7[0],height:\"100%\",id:\"j6USVF2UX\",layoutId:\"j6USVF2UX\",nUVaAj_iQ:true,ooodzduO6:\"Talk With Us\",Qf6DGomur:2,variant:\"BvbyD3rVu\",width:\"100%\",xL3FqAHZw:\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lpa3kh\",\"data-framer-name\":\"for candidates\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kq3yif\",\"data-styles-preset\":\"w8q5QJlSV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"For Clients\"})}),className:\"framer-19wboyg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+723+0+0+0+1046.4+30+40.8),pixelHeight:608,pixelWidth:1953,positionX:\"center\",positionY:\"center\",sizes:`calc(max(min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.7), 50px) - 60px)`,src:\"https://framerusercontent.com/images/IC3MPiGQlwfn347ROPlZpXBRNMI.png\",srcSet:\"https://framerusercontent.com/images/IC3MPiGQlwfn347ROPlZpXBRNMI.png?scale-down-to=512 512w,https://framerusercontent.com/images/IC3MPiGQlwfn347ROPlZpXBRNMI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IC3MPiGQlwfn347ROPlZpXBRNMI.png 1953w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:608,pixelWidth:1953,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IC3MPiGQlwfn347ROPlZpXBRNMI.png\",srcSet:\"https://framerusercontent.com/images/IC3MPiGQlwfn347ROPlZpXBRNMI.png?scale-down-to=512 512w,https://framerusercontent.com/images/IC3MPiGQlwfn347ROPlZpXBRNMI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IC3MPiGQlwfn347ROPlZpXBRNMI.png 1953w\"},className:\"framer-rwx5wl\"})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sIuGAiylw\"},implicitPathVariables:undefined},{href:{webPageId:\"sIuGAiylw\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{y:(componentViewport?.y||0)+0+723+0+0+0+1046.4+30+208.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yl5l7-container\",nodeId:\"KIB1_4ZaW\",rendersWithMotion:true,scopeId:\"c38PXSriH\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{GwflIu3yC:resolvedLinks8[1]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{GwflIu3yC:resolvedLinks8[0],height:\"100%\",id:\"KIB1_4ZaW\",layoutId:\"KIB1_4ZaW\",nUVaAj_iQ:true,ooodzduO6:\"Talk With Us\",Qf6DGomur:2,variant:\"BvbyD3rVu\",width:\"100%\",xL3FqAHZw:\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"})})})})})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-bex31t hidden-1l2arl5\",\"data-framer-name\":\"stats\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-118y805\",\"data-framer-name\":\"Candidates clients\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fmtro9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hcv82m\",\"data-framer-name\":\"for candidates\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kq3yif\",\"data-styles-preset\":\"w8q5QJlSV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"For Clients\"})}),className:\"framer-gmhy6y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OPTJieC8W:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+723+0+0+50+0+0+0+30+40.8),pixelHeight:273,pixelWidth:1384,positionX:\"center\",positionY:\"center\",sizes:`calc(max((max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), (${componentViewport?.width||\"100vw\"} - 100px) * 0.9), 1px) - 20px) / 2, 50px) - 60px)`,src:\"https://framerusercontent.com/images/WqgzcGSTHf4LyRUdos1ezmSJw.png\",srcSet:\"https://framerusercontent.com/images/WqgzcGSTHf4LyRUdos1ezmSJw.png?scale-down-to=512 512w,https://framerusercontent.com/images/WqgzcGSTHf4LyRUdos1ezmSJw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WqgzcGSTHf4LyRUdos1ezmSJw.png 1384w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+723+0+0+50+0+0+30+40.8),pixelHeight:273,pixelWidth:1384,positionX:\"center\",positionY:\"center\",sizes:`calc(max((max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), (${componentViewport?.width||\"100vw\"} - 100px) * 0.9), 1px) - 60px) / 4, 1px) - 60px)`,src:\"https://framerusercontent.com/images/WqgzcGSTHf4LyRUdos1ezmSJw.png\",srcSet:\"https://framerusercontent.com/images/WqgzcGSTHf4LyRUdos1ezmSJw.png?scale-down-to=512 512w,https://framerusercontent.com/images/WqgzcGSTHf4LyRUdos1ezmSJw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WqgzcGSTHf4LyRUdos1ezmSJw.png 1384w\"},className:\"framer-1ckvhzw\"})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"u0jpQab0b\"},implicitPathVariables:undefined},{href:{webPageId:\"u0jpQab0b\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OPTJieC8W:{y:(componentViewport?.y||0)+0+723+0+0+50+0+0+0+30+208.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+723+0+0+50+0+0+30+208.8,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17rkcmw-container\",nodeId:\"pVcE0bTu7\",rendersWithMotion:true,scopeId:\"c38PXSriH\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OPTJieC8W:{GwflIu3yC:resolvedLinks9[1]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{GwflIu3yC:resolvedLinks9[0],height:\"100%\",id:\"pVcE0bTu7\",layoutId:\"pVcE0bTu7\",nUVaAj_iQ:true,ooodzduO6:\"Talk With Us\",Qf6DGomur:2,variant:\"BvbyD3rVu\",width:\"100%\",xL3FqAHZw:\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qwavm3\",\"data-framer-name\":\"for candidates\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kq3yif\",\"data-styles-preset\":\"w8q5QJlSV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"Candidates & Clients\"})}),className:\"framer-1xu0k3p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OPTJieC8W:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+723+0+0+50+0+0+0+30+40.8),pixelHeight:322,pixelWidth:1379,positionX:\"center\",positionY:\"center\",sizes:`calc(max((max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), (${componentViewport?.width||\"100vw\"} - 100px) * 0.9), 1px) - 20px) / 2, 50px) - 60px)`,src:\"https://framerusercontent.com/images/TqjFIXlxiyPidydldOns6GQY.png\",srcSet:\"https://framerusercontent.com/images/TqjFIXlxiyPidydldOns6GQY.png?scale-down-to=512 512w,https://framerusercontent.com/images/TqjFIXlxiyPidydldOns6GQY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TqjFIXlxiyPidydldOns6GQY.png 1379w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+723+0+0+50+0+0+30+40.8),pixelHeight:322,pixelWidth:1379,positionX:\"center\",positionY:\"center\",sizes:`calc(max((max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), (${componentViewport?.width||\"100vw\"} - 100px) * 0.9), 1px) - 60px) / 4, 1px) - 60px)`,src:\"https://framerusercontent.com/images/TqjFIXlxiyPidydldOns6GQY.png\",srcSet:\"https://framerusercontent.com/images/TqjFIXlxiyPidydldOns6GQY.png?scale-down-to=512 512w,https://framerusercontent.com/images/TqjFIXlxiyPidydldOns6GQY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TqjFIXlxiyPidydldOns6GQY.png 1379w\"},className:\"framer-8dm2ou\"})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sIuGAiylw\"},implicitPathVariables:undefined},{href:{webPageId:\"sIuGAiylw\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OPTJieC8W:{y:(componentViewport?.y||0)+0+723+0+0+50+0+0+0+30+208.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+723+0+0+50+0+0+30+208.8,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-h17rc6-container\",nodeId:\"SkddpgsoE\",rendersWithMotion:true,scopeId:\"c38PXSriH\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OPTJieC8W:{GwflIu3yC:resolvedLinks10[1]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{GwflIu3yC:resolvedLinks10[0],height:\"100%\",id:\"SkddpgsoE\",layoutId:\"SkddpgsoE\",nUVaAj_iQ:true,ooodzduO6:\"Talk With Us\",Qf6DGomur:2,variant:\"BvbyD3rVu\",width:\"100%\",xL3FqAHZw:\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sc2jsr\",\"data-framer-name\":\"for candidates\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kq3yif\",\"data-styles-preset\":\"w8q5QJlSV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"For Candidates\"})}),className:\"framer-m8wjtb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OPTJieC8W:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+723+0+0+50+0+0+348.8+30+40.8),pixelHeight:607,pixelWidth:1953,positionX:\"center\",positionY:\"center\",sizes:`calc(max((max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), (${componentViewport?.width||\"100vw\"} - 100px) * 0.9), 1px) - 20px) / 2, 50px) - 60px)`,src:\"https://framerusercontent.com/images/2JjhyshaWTPKaC9dZpddqHw5OE4.png\",srcSet:\"https://framerusercontent.com/images/2JjhyshaWTPKaC9dZpddqHw5OE4.png?scale-down-to=512 512w,https://framerusercontent.com/images/2JjhyshaWTPKaC9dZpddqHw5OE4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2JjhyshaWTPKaC9dZpddqHw5OE4.png 1953w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+723+0+0+50+0+0+30+40.8),pixelHeight:607,pixelWidth:1953,positionX:\"center\",positionY:\"center\",sizes:`calc(max((max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), (${componentViewport?.width||\"100vw\"} - 100px) * 0.9), 1px) - 60px) / 4, 1px) - 60px)`,src:\"https://framerusercontent.com/images/2JjhyshaWTPKaC9dZpddqHw5OE4.png\",srcSet:\"https://framerusercontent.com/images/2JjhyshaWTPKaC9dZpddqHw5OE4.png?scale-down-to=512 512w,https://framerusercontent.com/images/2JjhyshaWTPKaC9dZpddqHw5OE4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2JjhyshaWTPKaC9dZpddqHw5OE4.png 1953w\"},className:\"framer-6ui1lw\"})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gJ_EjCGXx\"},implicitPathVariables:undefined},{href:{webPageId:\"gJ_EjCGXx\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OPTJieC8W:{y:(componentViewport?.y||0)+0+723+0+0+50+0+0+348.8+30+208.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+723+0+0+50+0+0+30+208.8,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fqy0zr-container\",nodeId:\"vHoG2xTSO\",rendersWithMotion:true,scopeId:\"c38PXSriH\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OPTJieC8W:{GwflIu3yC:resolvedLinks11[1]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{GwflIu3yC:resolvedLinks11[0],height:\"100%\",id:\"vHoG2xTSO\",layoutId:\"vHoG2xTSO\",nUVaAj_iQ:true,ooodzduO6:\"Talk With Us\",Qf6DGomur:2,variant:\"BvbyD3rVu\",width:\"100%\",xL3FqAHZw:\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3k0bqf\",\"data-framer-name\":\"for candidates\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kq3yif\",\"data-styles-preset\":\"w8q5QJlSV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"For Clients\"})}),className:\"framer-1qhrdzi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OPTJieC8W:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+723+0+0+50+0+0+348.8+30+40.8),pixelHeight:608,pixelWidth:1953,positionX:\"center\",positionY:\"center\",sizes:`calc(max((max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), (${componentViewport?.width||\"100vw\"} - 100px) * 0.9), 1px) - 20px) / 2, 50px) - 60px)`,src:\"https://framerusercontent.com/images/IC3MPiGQlwfn347ROPlZpXBRNMI.png\",srcSet:\"https://framerusercontent.com/images/IC3MPiGQlwfn347ROPlZpXBRNMI.png?scale-down-to=512 512w,https://framerusercontent.com/images/IC3MPiGQlwfn347ROPlZpXBRNMI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IC3MPiGQlwfn347ROPlZpXBRNMI.png 1953w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+723+0+0+50+0+0+30+40.8),pixelHeight:608,pixelWidth:1953,positionX:\"center\",positionY:\"center\",sizes:`calc(max((max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), (${componentViewport?.width||\"100vw\"} - 100px) * 0.9), 1px) - 60px) / 4, 1px) - 60px)`,src:\"https://framerusercontent.com/images/IC3MPiGQlwfn347ROPlZpXBRNMI.png\",srcSet:\"https://framerusercontent.com/images/IC3MPiGQlwfn347ROPlZpXBRNMI.png?scale-down-to=512 512w,https://framerusercontent.com/images/IC3MPiGQlwfn347ROPlZpXBRNMI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IC3MPiGQlwfn347ROPlZpXBRNMI.png 1953w\"},className:\"framer-6hi3eg\"})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sIuGAiylw\"},implicitPathVariables:undefined},{href:{webPageId:\"sIuGAiylw\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OPTJieC8W:{y:(componentViewport?.y||0)+0+723+0+0+50+0+0+348.8+30+208.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+723+0+0+50+0+0+30+208.8,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bfbo3f-container\",nodeId:\"xmkLcdm5u\",rendersWithMotion:true,scopeId:\"c38PXSriH\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OPTJieC8W:{GwflIu3yC:resolvedLinks12[1]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{GwflIu3yC:resolvedLinks12[0],height:\"100%\",id:\"xmkLcdm5u\",layoutId:\"xmkLcdm5u\",nUVaAj_iQ:true,ooodzduO6:\"Talk With Us\",Qf6DGomur:2,variant:\"BvbyD3rVu\",width:\"100%\",xL3FqAHZw:\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"})})})})})})]})]})})})]}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r851lt hidden-10rpncf\",\"data-framer-name\":\"stats\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cdoqbs\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kzqg1q\",\"data-framer-name\":\"All Stats\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{width:`max(${componentViewport?.width||\"100vw\"} - 140px, 140px)`,y:(componentViewport?.y||0)+0+2098.2+50+0+0+0+0+0},OPTJieC8W:{width:`max((${componentViewport?.width||\"100vw\"} - 202px) / 3, 140px)`,y:(componentViewport?.y||0)+0+1500.6+50+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,width:`max((${componentViewport?.width||\"100vw\"} - 264px) / 5, 140px)`,y:(componentViewport?.y||0)+0+1151.8+50+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-e6mheg-container\",nodeId:\"q_R6QukFv\",rendersWithMotion:true,scopeId:\"c38PXSriH\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardsStats,{height:\"100%\",id:\"q_R6QukFv\",kxHlOGL6R:\"Years of Operation\",layoutId:\"q_R6QukFv\",style:{width:\"100%\"},variant:\"urmRe1yHe\",width:\"100%\",ylDMWmlC9:\"13\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{width:`max(${componentViewport?.width||\"100vw\"} - 140px, 140px)`,y:(componentViewport?.y||0)+0+2098.2+50+0+0+0+0+125},OPTJieC8W:{width:`max((${componentViewport?.width||\"100vw\"} - 202px) / 3, 140px)`,y:(componentViewport?.y||0)+0+1500.6+50+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,width:`max((${componentViewport?.width||\"100vw\"} - 264px) / 5, 140px)`,y:(componentViewport?.y||0)+0+1151.8+50+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1a0pkh5-container\",nodeId:\"u5xEUyRtk\",rendersWithMotion:true,scopeId:\"c38PXSriH\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardsStats,{height:\"100%\",id:\"u5xEUyRtk\",kxHlOGL6R:\"Combined Years of Experience\",layoutId:\"u5xEUyRtk\",style:{width:\"100%\"},variant:\"urmRe1yHe\",width:\"100%\",ylDMWmlC9:\"124\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{width:`max(${componentViewport?.width||\"100vw\"} - 140px, 140px)`,y:(componentViewport?.y||0)+0+2098.2+50+0+0+0+0+250},OPTJieC8W:{width:`max((${componentViewport?.width||\"100vw\"} - 202px) / 3, 140px)`,y:(componentViewport?.y||0)+0+1500.6+50+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,width:`max((${componentViewport?.width||\"100vw\"} - 264px) / 5, 140px)`,y:(componentViewport?.y||0)+0+1151.8+50+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nk1rra-container\",nodeId:\"gnXTz0PXM\",rendersWithMotion:true,scopeId:\"c38PXSriH\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wMec0WY7P:{ylDMWmlC9:\"98.6%\"}},children:/*#__PURE__*/_jsx(CardsStats,{height:\"100%\",id:\"gnXTz0PXM\",kxHlOGL6R:\"Success Rate of Exclusive Roles                                                  ( industry average < 35%)\",layoutId:\"gnXTz0PXM\",style:{width:\"100%\"},variant:\"urmRe1yHe\",width:\"100%\",ylDMWmlC9:\"98.8%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{width:`max(${componentViewport?.width||\"100vw\"} - 140px, 140px)`,y:(componentViewport?.y||0)+0+2098.2+50+0+0+0+0+375},OPTJieC8W:{width:`max((${componentViewport?.width||\"100vw\"} - 202px) / 3, 140px)`,y:(componentViewport?.y||0)+0+1500.6+50+0+0+0+0+126}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,width:`max((${componentViewport?.width||\"100vw\"} - 264px) / 5, 140px)`,y:(componentViewport?.y||0)+0+1151.8+50+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7efltx-container\",nodeId:\"duiVZbeyU\",rendersWithMotion:true,scopeId:\"c38PXSriH\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wMec0WY7P:{ylDMWmlC9:\" 3.8\"}},children:/*#__PURE__*/_jsx(CardsStats,{height:\"100%\",id:\"duiVZbeyU\",kxHlOGL6R:\"Average Weeks To Hire (Instruction to offer)\",layoutId:\"duiVZbeyU\",style:{width:\"100%\"},variant:\"urmRe1yHe\",width:\"100%\",ylDMWmlC9:\" 3.7\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{width:`max(${componentViewport?.width||\"100vw\"} - 140px, 140px)`,y:(componentViewport?.y||0)+0+2098.2+50+0+0+0+0+500},OPTJieC8W:{width:`max((${componentViewport?.width||\"100vw\"} - 202px) / 3, 140px)`,y:(componentViewport?.y||0)+0+1500.6+50+0+0+0+0+126}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,width:`max((${componentViewport?.width||\"100vw\"} - 264px) / 5, 140px)`,y:(componentViewport?.y||0)+0+1151.8+50+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dqoiiq-container\",nodeId:\"gytWXxojd\",rendersWithMotion:true,scopeId:\"c38PXSriH\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wMec0WY7P:{ylDMWmlC9:\"1,629\"}},children:/*#__PURE__*/_jsx(CardsStats,{height:\"100%\",id:\"gytWXxojd\",kxHlOGL6R:\"Total Candidates Placed\",layoutId:\"gytWXxojd\",style:{width:\"100%\"},variant:\"urmRe1yHe\",width:\"100%\",ylDMWmlC9:\"1,686\"})})})})})]})})}),isDisplayed5()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-bfc7qj hidden-ejgiep hidden-n1n9xo hidden-1l2arl5 hidden-1pzpqa3\",\"data-framer-name\":\"stats\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7uqdg6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oyykst\",\"data-framer-name\":\"All Stats\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mPSypq2CF:{width:`max((${componentViewport?.width||\"100vw\"} - 264px) / 5, 140px)`,y:(componentViewport?.y||0)+0+1351.8+50+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jmli6k-container\",nodeId:\"fuzqyAAGN\",rendersWithMotion:true,scopeId:\"c38PXSriH\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardsStats,{height:\"100%\",id:\"fuzqyAAGN\",kxHlOGL6R:\"Years of Operation\",layoutId:\"fuzqyAAGN\",style:{width:\"100%\"},variant:\"urmRe1yHe\",width:\"100%\",ylDMWmlC9:\"13\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mPSypq2CF:{width:`max((${componentViewport?.width||\"100vw\"} - 264px) / 5, 140px)`,y:(componentViewport?.y||0)+0+1351.8+50+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kiipqs-container\",nodeId:\"J7S5JUWuy\",rendersWithMotion:true,scopeId:\"c38PXSriH\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardsStats,{height:\"100%\",id:\"J7S5JUWuy\",kxHlOGL6R:\"Combined Years of Experience\",layoutId:\"J7S5JUWuy\",style:{width:\"100%\"},variant:\"urmRe1yHe\",width:\"100%\",ylDMWmlC9:\"124\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mPSypq2CF:{width:`max((${componentViewport?.width||\"100vw\"} - 264px) / 5, 140px)`,y:(componentViewport?.y||0)+0+1351.8+50+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tevr1t-container\",nodeId:\"RVn1YhlSi\",rendersWithMotion:true,scopeId:\"c38PXSriH\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardsStats,{height:\"100%\",id:\"RVn1YhlSi\",kxHlOGL6R:\"Success Rate of Exclusive Roles                                                  ( industry average < 35%)\",layoutId:\"RVn1YhlSi\",style:{width:\"100%\"},variant:\"urmRe1yHe\",width:\"100%\",ylDMWmlC9:\"98.8%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mPSypq2CF:{width:`max((${componentViewport?.width||\"100vw\"} - 264px) / 5, 140px)`,y:(componentViewport?.y||0)+0+1351.8+50+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3qqazm-container\",nodeId:\"PeWVwu5zo\",rendersWithMotion:true,scopeId:\"c38PXSriH\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardsStats,{height:\"100%\",id:\"PeWVwu5zo\",kxHlOGL6R:\"Average Weeks To Hire\",layoutId:\"PeWVwu5zo\",style:{width:\"100%\"},variant:\"urmRe1yHe\",width:\"100%\",ylDMWmlC9:\" 3.8\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mPSypq2CF:{width:`max((${componentViewport?.width||\"100vw\"} - 264px) / 5, 140px)`,y:(componentViewport?.y||0)+0+1351.8+50+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gykon9-container\",nodeId:\"PLf1oF5HA\",rendersWithMotion:true,scopeId:\"c38PXSriH\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardsStats,{height:\"100%\",id:\"PLf1oF5HA\",kxHlOGL6R:\"Total Candidates Placed\",layoutId:\"PLf1oF5HA\",style:{width:\"100%\"},variant:\"urmRe1yHe\",width:\"100%\",ylDMWmlC9:\"1,629\"})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14o4id7\",\"data-framer-name\":\"Hero\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10pa75h\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-111jejt\",\"data-framer-name\":\"Container Top\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6tfxzg\",\"data-framer-name\":\"Text Wrap\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x739yn\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1trqdya\",\"data-styles-preset\":\"pgdcHbAya\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-eabec031-63c1-4476-be70-c38687909315, rgb(0, 0, 0))\"},children:[\"Finding the Best Talent \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"},children:\"In\"}),\" the Market, Not Just Those Active \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"},children:\"On\"}),\" The Market\"]})})},mPSypq2CF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1trqdya\",\"data-styles-preset\":\"pgdcHbAya\",style:{\"--framer-text-color\":\"var(--token-eabec031-63c1-4476-be70-c38687909315, rgb(0, 0, 0))\"},children:[\"Finding the Best Talent \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"},children:\"In\"}),\" the Market, \",/*#__PURE__*/_jsx(\"br\",{}),\"Not Just Those Active \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"},children:\"On\"}),\" The Market\"]})})},OPTJieC8W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1trqdya\",\"data-styles-preset\":\"pgdcHbAya\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-eabec031-63c1-4476-be70-c38687909315, rgb(0, 0, 0))\"},children:[\"Finding the Best Talent \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"},children:\"In\"}),\" the Market, Not Just Those Active \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"},children:\"On\"}),\" The Market\"]})})},wMec0WY7P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1trqdya\",\"data-styles-preset\":\"pgdcHbAya\",style:{\"--framer-text-color\":\"var(--token-eabec031-63c1-4476-be70-c38687909315, rgb(0, 0, 0))\"},children:[\"Uncovering the Best Talent \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"},children:\"In\"}),\" the Market, \",/*#__PURE__*/_jsx(\"br\",{}),\"Not Just Those Active \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"},children:\"On\"}),\" The Market\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1trqdya\",\"data-styles-preset\":\"pgdcHbAya\",style:{\"--framer-text-color\":\"var(--token-eabec031-63c1-4476-be70-c38687909315, rgb(0, 0, 0))\"},children:[\"Finding the Best Talent \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"},children:\"In\"}),\" the Market, Not Just Those Active \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"},children:\"On\"}),\" The Market\"]})}),className:\"framer-1fblktl\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtNTAw\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"25px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"We work tirelessly to find the best talent IN the market , not just the best of those active ON the market. We are proven, discipline specialist recruiters who build exceptional candidate networks & talent pools that allow us to be quicker & more successful in placing the candidates that make a genuine difference to our clients\"})})},OPTJieC8W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtNTAw\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"25px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"We work tirelessly to find the best talent IN the market , not just the best of those active ON the market. We are proven, discipline specialist recruiters who build exceptional candidate networks & talent pools that allow us to be quicker & more successful in placing the candidates that make a genuine difference to our clients\"})})},wMec0WY7P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-0cbb24d0-6557-4384-9b32-6a0fa8e430cc, rgb(21, 21, 21))\"},children:[\"We work tirelessly to find the best talent \",/*#__PURE__*/_jsx(\"strong\",{children:\"IN\"}),\" the market, not just the best of those active \",/*#__PURE__*/_jsx(\"strong\",{children:\"ON\"}),\" the market. We are proven, disciplined specialist recruiters who build exceptional candidate networks and talent pools that allow us to be quicker & more successful in placing the candidates who make a genuine difference to our clients.\"]})}),fonts:[\"FS;Poppins-regular\",\"FS;Poppins-bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtNTAw\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"We work tirelessly to find the best talent IN the market , not just the best of those active ON the market. We are proven, discipline specialist recruiters who build exceptional candidate networks & talent pools that allow us to be quicker & more successful in placing the candidates that make a genuine difference to our clients\"})}),className:\"framer-3ekof6\",\"data-framer-name\":\"Para\",fonts:[\"GF;Urbanist-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ekw30a\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tpD9uqkUO\"},motionChild:true,nodeId:\"BnDxiRS4d\",openInNewTab:false,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14jkgsd framer-1t4nqz4\",\"data-framer-name\":\"perk 1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kq3yif\",\"data-styles-preset\":\"w8q5QJlSV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"Human Resources\"})}),className:\"framer-10k4l3l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Vf7UKDXyJ\"},motionChild:true,nodeId:\"B51nrAh0v\",scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nur607 framer-1t4nqz4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kq3yif\",\"data-styles-preset\":\"w8q5QJlSV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"Sales & Marketing\"})}),className:\"framer-57abf0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"df3amz1NP\"},motionChild:true,nodeId:\"iT6G7_EXQ\",scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cg8283 framer-1t4nqz4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kq3yif\",\"data-styles-preset\":\"w8q5QJlSV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"Finance & Accountancy\"})}),className:\"framer-1bjplu7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"sIuGAiylw\"},motionChild:true,nodeId:\"HFB_A3Rr3\",openInNewTab:false,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3ijb6y framer-1t4nqz4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kq3yif\",\"data-styles-preset\":\"w8q5QJlSV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"Executive Search\"})}),className:\"framer-bu455t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"sIuGAiylw\"},motionChild:true,nodeId:\"Zso5KN_TI\",scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1b1qokx framer-1t4nqz4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kq3yif\",\"data-styles-preset\":\"w8q5QJlSV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"General Management and Operations\"})}),className:\"framer-4gg9kg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fncMNNQI4\"},motionChild:true,nodeId:\"IteroUzBy\",openInNewTab:false,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-775scm framer-1t4nqz4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kq3yif\",\"data-styles-preset\":\"w8q5QJlSV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"Charity & Not For Profit\"})}),className:\"framer-1m0zqrl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5hcg3f\",\"data-framer-name\":\"Feature\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pobqxc\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lo1tw8\",\"data-framer-name\":\"Feature Top\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nb1agx\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3808.2+100+0+0+0+0+0+0+0),pixelHeight:6e3,pixelWidth:9e3,positionX:\"center\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.92)`,src:\"https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg\",srcSet:\"https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg 9000w\"}},mPSypq2CF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2430.8+100+0+0+0+0+0+0),pixelHeight:6e3,pixelWidth:9e3,positionX:\"center\",positionY:\"top\",sizes:\"570px\",src:\"https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg\",srcSet:\"https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg 9000w\"}},OPTJieC8W:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2705.6+100+0+0+0+0+0+0+0),pixelHeight:6e3,pixelWidth:9e3,positionX:\"center\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.92)`,src:\"https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg\",srcSet:\"https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg 9000w\"}},wMec0WY7P:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2259.8+100+0+0+0+0+0+0),pixelHeight:6e3,pixelWidth:9e3,positionX:\"center\",positionY:\"top\",sizes:\"570px\",src:\"https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg\",srcSet:\"https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg 9000w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2230.8+100+0+0+0+0+0+0),pixelHeight:6e3,pixelWidth:9e3,positionX:\"center\",positionY:\"top\",sizes:\"570px\",src:\"https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg\",srcSet:\"https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/X5nSyK4qgsV7yCLHvTKlqZLvuA.jpg 9000w\"},className:\"framer-1lu7q48\",\"data-framer-name\":\"Img\",style:{transformPerspective:1200}})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zgo6ou\",\"data-framer-name\":\"Content Wrap\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1oexvjn\",\"data-framer-name\":\"Heading\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ie87f1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1ui54bo\",\"data-styles-preset\":\"Dvd2QnffQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"Embracing\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-eabec031-63c1-4476-be70-c38687909315, rgb(0, 0, 0))\"},children:\" \"}),\"Diversity\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-eabec031-63c1-4476-be70-c38687909315, rgb(0, 0, 0))\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"For a \"}),\"Bright Future\"]})})},OPTJieC8W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1ui54bo\",\"data-styles-preset\":\"Dvd2QnffQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"Embracing\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-eabec031-63c1-4476-be70-c38687909315, rgb(0, 0, 0))\"},children:\" \"}),\"Diversity\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-eabec031-63c1-4476-be70-c38687909315, rgb(0, 0, 0))\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"For a \"}),\"Bright Future\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1ui54bo\",\"data-styles-preset\":\"Dvd2QnffQ\",style:{\"--framer-text-color\":\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"Embracing\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-eabec031-63c1-4476-be70-c38687909315, rgb(0, 0, 0))\"},children:\" \"}),\"Diversity\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-eabec031-63c1-4476-be70-c38687909315, rgb(0, 0, 0))\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"For a \"}),\"Bright Future\"]})}),className:\"framer-1ygjlvo\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g0lz2u\",\"data-framer-name\":\"All Stats\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jdelfj\",\"data-framer-name\":\"Cards/Stats\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1trqdya\",\"data-styles-preset\":\"pgdcHbAya\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"49%\"})})},OPTJieC8W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1trqdya\",\"data-styles-preset\":\"pgdcHbAya\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"49%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1trqdya\",\"data-styles-preset\":\"pgdcHbAya\",style:{\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"49%\"})}),className:\"framer-14q8026\",\"data-framer-name\":\"Amount\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cs8fwb\",\"data-styles-preset\":\"J2o0w94ro\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(245, 245, 245, 0.49)\"},children:\"Female V Male Placements (last 12 months)\"})})},OPTJieC8W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cs8fwb\",\"data-styles-preset\":\"J2o0w94ro\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(245, 245, 245, 0.49)\"},children:\"Female V Male Placements (last 12 months)\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cs8fwb\",\"data-styles-preset\":\"J2o0w94ro\",style:{\"--framer-text-color\":\"rgba(245, 245, 245, 0.49)\"},children:\"Female V Male Placements (last 12 months)\"})}),className:\"framer-1gwr8fs\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-x8kbr4\",\"data-framer-name\":\"Cards/Stats\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1trqdya\",\"data-styles-preset\":\"pgdcHbAya\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"11.3%\"})})},OPTJieC8W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1trqdya\",\"data-styles-preset\":\"pgdcHbAya\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"11.3%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1trqdya\",\"data-styles-preset\":\"pgdcHbAya\",style:{\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:\"11.3%\"})}),className:\"framer-1qv7der\",\"data-framer-name\":\"Amount\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cs8fwb\",\"data-styles-preset\":\"J2o0w94ro\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(245, 245, 245, 0.49)\"},children:\"Ethnic Minority Placements (last 12 months)\"})})},OPTJieC8W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cs8fwb\",\"data-styles-preset\":\"J2o0w94ro\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(245, 245, 245, 0.49)\"},children:\"Ethnic Minority Placements (last 12 months)\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cs8fwb\",\"data-styles-preset\":\"J2o0w94ro\",style:{\"--framer-text-color\":\"rgba(245, 245, 245, 0.49)\"},children:\"Ethnic Minority Placements (last 12 months)\"})}),className:\"framer-1q7ee7t\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-nisoo2\",\"data-styles-preset\":\"wVndMwZwq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:[\"As an ethical recruiter, we choose to practice what we preach, rather than just tick a box. Our search for your talent holds no boundaries and we are proud to provide the best talent, no matter their gender identity or expression, sexual orientation, religion, ethnicity, age, neurodiversity, disability status, citizenship, or any other aspect which makes someone unique; we dig deeper to find the \u2018best\u2019 candidate for the role, nothing else matters, ensuring everyone had the same opportunity to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"},children:\"love what they do.\"})]})})},OPTJieC8W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-nisoo2\",\"data-styles-preset\":\"wVndMwZwq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:[\"As an ethical recruiter, we choose to practice what we preach, rather than just tick a box. Our search for your talent holds no boundaries and we are proud to provide the best talent, no matter their gender identity or expression, sexual orientation, religion, ethnicity, age, neurodiversity, disability status, citizenship, or any other aspect which makes someone unique; we dig deeper to find the \u2018best\u2019 candidate for the role, nothing else matters, ensuring everyone had the same opportunity to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"},children:\"love what they do.\"})]})})},wMec0WY7P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:[\"As an ethical recruiter, we choose to practice what we preach, rather than just tick a box. Our search for your talent holds no boundaries and we are proud to provide the best talent, no matter their gender identity or expression, sexual orientation, religion, ethnicity, age, neurodiversity, disability status, citizenship, or any other aspect which makes someone unique; we dig deeper to find the \u2018best\u2019 candidate for the role, nothing else matters, ensuring everyone had the same opportunity to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"},children:\"love what they do.\"})]})}),fonts:[\"FS;Poppins-regular\",\"FS;Poppins-semibold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-nisoo2\",\"data-styles-preset\":\"wVndMwZwq\",style:{\"--framer-text-color\":\"var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255))\"},children:[\"As an ethical recruiter, we choose to practice what we preach, rather than just tick a box. Our search for your talent holds no boundaries and we are proud to provide the best talent, no matter their gender identity or expression, sexual orientation, religion, ethnicity, age, neurodiversity, disability status, citizenship, or any other aspect which makes someone unique; we dig deeper to find the \u2018best\u2019 candidate for the role, nothing else matters, ensuring everyone had the same opportunity to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"},children:\"love what they do.\"})]})}),className:\"framer-2ktpof\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ieq_D1a15\"},implicitPathVariables:undefined},{href:{webPageId:\"ieq_D1a15\"},implicitPathVariables:undefined},{href:{webPageId:\"ieq_D1a15\"},implicitPathVariables:undefined},{href:{webPageId:\"ieq_D1a15\"},implicitPathVariables:undefined},{href:{webPageId:\"ieq_D1a15\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{y:(componentViewport?.y||0)+0+3808.2+100+0+0+0+0+420+0+0+0+0+0+492.4},mPSypq2CF:{y:(componentViewport?.y||0)+0+2430.8+100+0+0+0+0+0+0+0+0+0+492.4},OPTJieC8W:{y:(componentViewport?.y||0)+0+2705.6+100+0+0+0+0+510+0+0+0+0+0+492.4},wMec0WY7P:{y:(componentViewport?.y||0)+0+2259.8+100+0+0+0+0+0+0+0+0+0+520.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+2230.8+100+0+0+0+0+0+0+0+0+0+492.4,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1cnkgfa-container\",nodeId:\"RGBEVoCXC\",rendersWithMotion:true,scopeId:\"c38PXSriH\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{GwflIu3yC:resolvedLinks13[2]},mPSypq2CF:{GwflIu3yC:resolvedLinks13[4]},OPTJieC8W:{GwflIu3yC:resolvedLinks13[1]},wMec0WY7P:{GwflIu3yC:resolvedLinks13[3],ooodzduO6:\"View Policy\"}},children:/*#__PURE__*/_jsx(ButtonPrimary,{GwflIu3yC:resolvedLinks13[0],height:\"100%\",id:\"RGBEVoCXC\",layoutId:\"RGBEVoCXC\",nUVaAj_iQ:true,ooodzduO6:\"Search Policy\",Qf6DGomur:2,variant:\"BvbyD3rVu\",width:\"100%\",xL3FqAHZw:\"var(--token-4eb549d4-1a41-4f88-b06a-c3a137094246, rgb(99, 185, 233))\"})})})})})})]})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lgcukv\",\"data-framer-name\":\"Testimonial\",id:elementId3,ref:ref4,children:[isDisplayed6()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-lxyuzd hidden-ejgiep hidden-n1n9xo hidden-1l2arl5 hidden-10rpncf\",children:isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7tbt7f-container hidden-ejgiep\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"e18PwudHs\",scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script src=\"https://cdn.commoninja.com/sdk/latest/commonninja.js\" defer></script>\\n<div class=\"commonninja_component pid-a4838287-1d0f-42ca-b077-2111e9a0c911\"></div>',id:\"e18PwudHs\",layoutId:\"e18PwudHs\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wbl45b\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pasgav\",\"data-framer-name\":\"Heading Wrap\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wMec0WY7P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ui54bo\",\"data-styles-preset\":\"Dvd2QnffQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2930fc96-2a19-4c51-bdb3-fa6e89c47e8a, rgb(11, 33, 70))\"},children:\"What Our Candidates & Clients Say\u2026 \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ui54bo\",\"data-styles-preset\":\"Dvd2QnffQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2930fc96-2a19-4c51-bdb3-fa6e89c47e8a, rgb(11, 33, 70))\"},children:\"Our Client Experiences.\"})}),className:\"framer-qywgft\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v49j8b-container hidden-ejgiep hidden-n1n9xo hidden-1pzpqa3 hidden-10rpncf\",isModuleExternal:true,nodeId:\"jWCrscVcF\",scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-2930fc96-2a19-4c51-bdb3-fa6e89c47e8a, rgb(11, 33, 70))\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:20,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"jWCrscVcF\",intervalControl:4,itemAmount:1,layoutId:\"jWCrscVcF\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qjxzof-container\",inComponentSlot:true,nodeId:\"ntPghB84B\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"I have been placed by Miles and subsequently used Adjacency to fill a notoriously challenging role. On both occasions Miles and his team exceeded expectations. Miles\u2019s approachable manner coupled with his in-depth knowledge based on decades of experience shone through on both occasions. Miles has also been on hand to provide us with overall recruitment strategy, market trends, benchmarking and candidates insights. I highly recommend Miles and the whole Adjacency team.\",height:\"100%\",id:\"ntPghB84B\",KXlWT43VI:\"Design & Fit out company\",layoutId:\"ntPghB84B\",OamWgA5rH:\"Director\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l1o86s-container\",inComponentSlot:true,nodeId:\"o_KAjbOvo\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"So very well connected throughout Gloucestershire, the South West and beyond. Utterly professional and perceptive, matching the right candidates to client briefs, ensuring culture fit on top of required skills. For a personal, dedicated exec and non-exec recruitment service I couldn\u2019t recommend Adjacency more to both employers and potential candidates.\",height:\"100%\",id:\"o_KAjbOvo\",KXlWT43VI:\"Professional Services Firm\",layoutId:\"o_KAjbOvo\",OamWgA5rH:\"Marketing Director\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2p5tq5-container\",inComponentSlot:true,nodeId:\"R2OYHcbzD\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"Adjacency supported me through my search for my next HR career opportunity. They were thoroughly professional throughout, always returned emails and phone calls and ensured I was thoroughly briefed for all potential interviews I was attending. After interviews, they always called and conducted a de-brief and provided me with feedback as well which was really important as it really helped me to ensure my own thoughts on how the interview went was well balanced. They  also offered constructive insights into a number of organisations I was looking at  which really helped me to identify and be clear regarding the type of organisation I wanted to work for. I\u2019m really pleased with my current role and would highly recommend Adjacency for supporting organisations with their vacancies. They are transparent, professional and a pleasure to have supporting you as a client.\",height:\"100%\",id:\"R2OYHcbzD\",KXlWT43VI:\"Financial Services\",layoutId:\"R2OYHcbzD\",OamWgA5rH:\"Head of HR\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rz8lrw-container\",inComponentSlot:true,nodeId:\"lHqMAXpsU\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"My experience with Adjacency  extends to a recent position we were discussing regarding a career move for myself. What has impressed me about them is that they are very knowledgeable about the company they are partnering, answering questions I would only expect the employer to know, not their recruiter.  There wasn\u2019t a question which I posed which they didn\u2019t have an answer for. To me this is vital as you you rely heavily on the recruitment consultant to give you the inside track on the organsiation which you are considering joining. What also sets them apart from the others is their willingness to keep you updated at every step of the way regarding progress and where we are with contracts etc, keeping that contact going even when you have begun your new position to ensure that everything is ok and if there is anything further they can help with. In summary the Adjacency team are true professionals and the next time I am recruiting I will certainly turn to them for their support.\",height:\"100%\",id:\"lHqMAXpsU\",KXlWT43VI:\"Healthcare Provider\",layoutId:\"lHqMAXpsU\",OamWgA5rH:\"Head of Sales\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-7yfual-container\",inComponentSlot:true,nodeId:\"EXXqffgG9\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"Adjacency have conducted several successful searches for us recently. In each case they have thoroughly understood our brief and offered insightful challenges to be very specific against the type of candidate required. Working not just on ability and experience, they have focused on cultural fit for an entrepreneurial SME and have always delivered great candidates. The management team drive this and their conscientious approach has been very valuable to us. I wouldn\u2019t hesitate to recommend Adjacency for any recruitment briefs you may have.\",height:\"100%\",id:\"EXXqffgG9\",KXlWT43VI:\"FMCG Brand\",layoutId:\"EXXqffgG9\",OamWgA5rH:\"CEO\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n3qpvq-container\",inComponentSlot:true,nodeId:\"NUNo2QvgL\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"As a Group we have used Adjacency across most operating divisions up to placing Director level colleagues.  I have used them to find several niche remits that we have always found difficult to resource.  We have found them to be a breath of fresh air in the manner of their operation and communication.  They have not failed to provide the candidates we need and for me they are my chosen provider when recruiting externally. \",height:\"100%\",id:\"NUNo2QvgL\",KXlWT43VI:\"FTSE 100 Engineering Group\",layoutId:\"NUNo2QvgL\",OamWgA5rH:\"Regional Managing Director\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a996tw-container\",inComponentSlot:true,nodeId:\"P8usm5yCG\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"Adjacency have partnered us for the past 7 years and have recruited candidates in our finance, HR and marketing teams with notable success.  Our recent supplier review highlighted the success rates that Adjacency have managed which sit at the top of our providers at all levels.  Thank you for your continued support and hard work. \",height:\"100%\",id:\"P8usm5yCG\",KXlWT43VI:\"Legal Firm\",layoutId:\"P8usm5yCG\",OamWgA5rH:\"HR Director\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hoftvf-container\",inComponentSlot:true,nodeId:\"LC2c8P9FL\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"\u201CI am incredibly grateful to Dave for his invaluable support in helping me secure a Senior Design position at a sought-after Interior Design agency. His guidance, expertise, and unwavering encouragement were crucial throughout the entire process. Dave took the time to understand my strengths and career goals, providing tailored advice that set me apart from other candidates. His insight into the industry and thoughtful feedback on my portfolio helped me present myself in the best light. Thanks to Dave\u2019s mentorship, I feel confident and prepared as I embark on this exciting new chapter in my career. I can\u2019t thank him enough for his dedication and support every step of the way\u201D\",height:\"100%\",id:\"LC2c8P9FL\",KXlWT43VI:\"Sales and Marketing Candidate\",layoutId:\"LC2c8P9FL\",OamWgA5rH:\"\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hoftvf-container\",inComponentSlot:true,nodeId:\"LC2c8P9FL\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"\u201CI am incredibly grateful to Dave for his invaluable support in helping me secure a Senior Design position at a sought-after Interior Design agency. His guidance, expertise, and unwavering encouragement were crucial throughout the entire process. Dave took the time to understand my strengths and career goals, providing tailored advice that set me apart from other candidates. His insight into the industry and thoughtful feedback on my portfolio helped me present myself in the best light. Thanks to Dave\u2019s mentorship, I feel confident and prepared as I embark on this exciting new chapter in my career. I can\u2019t thank him enough for his dedication and support every step of the way\u201D\",height:\"100%\",id:\"LC2c8P9FL\",KXlWT43VI:\"Sales and Marketing Candidate\",layoutId:\"LC2c8P9FL\",OamWgA5rH:\"\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hoftvf-container\",inComponentSlot:true,nodeId:\"LC2c8P9FL\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"\u201CI am incredibly grateful to Dave for his invaluable support in helping me secure a Senior Design position at a sought-after Interior Design agency. His guidance, expertise, and unwavering encouragement were crucial throughout the entire process. Dave took the time to understand my strengths and career goals, providing tailored advice that set me apart from other candidates. His insight into the industry and thoughtful feedback on my portfolio helped me present myself in the best light. Thanks to Dave\u2019s mentorship, I feel confident and prepared as I embark on this exciting new chapter in my career. I can\u2019t thank him enough for his dedication and support every step of the way\u201D\",height:\"100%\",id:\"LC2c8P9FL\",KXlWT43VI:\"Sales and Marketing Candidate\",layoutId:\"LC2c8P9FL\",OamWgA5rH:\"\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16snqfh-container hidden-ejgiep hidden-1l2arl5 hidden-1pzpqa3 hidden-10rpncf\",isModuleExternal:true,nodeId:\"NXvXxzUy2\",scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-2930fc96-2a19-4c51-bdb3-fa6e89c47e8a, rgb(11, 33, 70))\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:20,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"NXvXxzUy2\",intervalControl:4,itemAmount:1,layoutId:\"NXvXxzUy2\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qjxzof-container\",inComponentSlot:true,nodeId:\"ntPghB84B\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"I have been placed by Miles and subsequently used Adjacency to fill a notoriously challenging role. On both occasions Miles and his team exceeded expectations. Miles\u2019s approachable manner coupled with his in-depth knowledge based on decades of experience shone through on both occasions. Miles has also been on hand to provide us with overall recruitment strategy, market trends, benchmarking and candidates insights. I highly recommend Miles and the whole Adjacency team.\",height:\"100%\",id:\"ntPghB84B\",KXlWT43VI:\"Design & Fit out company\",layoutId:\"ntPghB84B\",OamWgA5rH:\"Director\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l1o86s-container\",inComponentSlot:true,nodeId:\"o_KAjbOvo\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"So very well connected throughout Gloucestershire, the South West and beyond. Utterly professional and perceptive, matching the right candidates to client briefs, ensuring culture fit on top of required skills. For a personal, dedicated exec and non-exec recruitment service I couldn\u2019t recommend Adjacency more to both employers and potential candidates.\",height:\"100%\",id:\"o_KAjbOvo\",KXlWT43VI:\"Professional Services Firm\",layoutId:\"o_KAjbOvo\",OamWgA5rH:\"Marketing Director\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2p5tq5-container\",inComponentSlot:true,nodeId:\"R2OYHcbzD\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"Adjacency supported me through my search for my next HR career opportunity. They were thoroughly professional throughout, always returned emails and phone calls and ensured I was thoroughly briefed for all potential interviews I was attending. After interviews, they always called and conducted a de-brief and provided me with feedback as well which was really important as it really helped me to ensure my own thoughts on how the interview went was well balanced. They  also offered constructive insights into a number of organisations I was looking at  which really helped me to identify and be clear regarding the type of organisation I wanted to work for. I\u2019m really pleased with my current role and would highly recommend Adjacency for supporting organisations with their vacancies. They are transparent, professional and a pleasure to have supporting you as a client.\",height:\"100%\",id:\"R2OYHcbzD\",KXlWT43VI:\"Financial Services\",layoutId:\"R2OYHcbzD\",OamWgA5rH:\"Head of HR\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rz8lrw-container\",inComponentSlot:true,nodeId:\"lHqMAXpsU\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"My experience with Adjacency  extends to a recent position we were discussing regarding a career move for myself. What has impressed me about them is that they are very knowledgeable about the company they are partnering, answering questions I would only expect the employer to know, not their recruiter.  There wasn\u2019t a question which I posed which they didn\u2019t have an answer for. To me this is vital as you you rely heavily on the recruitment consultant to give you the inside track on the organsiation which you are considering joining. What also sets them apart from the others is their willingness to keep you updated at every step of the way regarding progress and where we are with contracts etc, keeping that contact going even when you have begun your new position to ensure that everything is ok and if there is anything further they can help with. In summary the Adjacency team are true professionals and the next time I am recruiting I will certainly turn to them for their support.\",height:\"100%\",id:\"lHqMAXpsU\",KXlWT43VI:\"Healthcare Provider\",layoutId:\"lHqMAXpsU\",OamWgA5rH:\"Head of Sales\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-7yfual-container\",inComponentSlot:true,nodeId:\"EXXqffgG9\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"Adjacency have conducted several successful searches for us recently. In each case they have thoroughly understood our brief and offered insightful challenges to be very specific against the type of candidate required. Working not just on ability and experience, they have focused on cultural fit for an entrepreneurial SME and have always delivered great candidates. The management team drive this and their conscientious approach has been very valuable to us. I wouldn\u2019t hesitate to recommend Adjacency for any recruitment briefs you may have.\",height:\"100%\",id:\"EXXqffgG9\",KXlWT43VI:\"FMCG Brand\",layoutId:\"EXXqffgG9\",OamWgA5rH:\"CEO\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n3qpvq-container\",inComponentSlot:true,nodeId:\"NUNo2QvgL\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"As a Group we have used Adjacency across most operating divisions up to placing Director level colleagues.  I have used them to find several niche remits that we have always found difficult to resource.  We have found them to be a breath of fresh air in the manner of their operation and communication.  They have not failed to provide the candidates we need and for me they are my chosen provider when recruiting externally. \",height:\"100%\",id:\"NUNo2QvgL\",KXlWT43VI:\"FTSE 100 Engineering Group\",layoutId:\"NUNo2QvgL\",OamWgA5rH:\"Regional Managing Director\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a996tw-container\",inComponentSlot:true,nodeId:\"P8usm5yCG\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"Adjacency have partnered us for the past 7 years and have recruited candidates in our finance, HR and marketing teams with notable success.  Our recent supplier review highlighted the success rates that Adjacency have managed which sit at the top of our providers at all levels.  Thank you for your continued support and hard work. \",height:\"100%\",id:\"P8usm5yCG\",KXlWT43VI:\"Legal Firm\",layoutId:\"P8usm5yCG\",OamWgA5rH:\"HR Director\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hoftvf-container\",inComponentSlot:true,nodeId:\"LC2c8P9FL\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"\u201CI am incredibly grateful to Dave for his invaluable support in helping me secure a Senior Design position at a sought-after Interior Design agency. His guidance, expertise, and unwavering encouragement were crucial throughout the entire process. Dave took the time to understand my strengths and career goals, providing tailored advice that set me apart from other candidates. His insight into the industry and thoughtful feedback on my portfolio helped me present myself in the best light. Thanks to Dave\u2019s mentorship, I feel confident and prepared as I embark on this exciting new chapter in my career. I can\u2019t thank him enough for his dedication and support every step of the way\u201D\",height:\"100%\",id:\"LC2c8P9FL\",KXlWT43VI:\"Sales and Marketing Candidate\",layoutId:\"LC2c8P9FL\",OamWgA5rH:\"\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hoftvf-container\",inComponentSlot:true,nodeId:\"LC2c8P9FL\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"\u201CI am incredibly grateful to Dave for his invaluable support in helping me secure a Senior Design position at a sought-after Interior Design agency. His guidance, expertise, and unwavering encouragement were crucial throughout the entire process. Dave took the time to understand my strengths and career goals, providing tailored advice that set me apart from other candidates. His insight into the industry and thoughtful feedback on my portfolio helped me present myself in the best light. Thanks to Dave\u2019s mentorship, I feel confident and prepared as I embark on this exciting new chapter in my career. I can\u2019t thank him enough for his dedication and support every step of the way\u201D\",height:\"100%\",id:\"LC2c8P9FL\",KXlWT43VI:\"Sales and Marketing Candidate\",layoutId:\"LC2c8P9FL\",OamWgA5rH:\"\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hoftvf-container\",inComponentSlot:true,nodeId:\"LC2c8P9FL\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"\u201CI am incredibly grateful to Dave for his invaluable support in helping me secure a Senior Design position at a sought-after Interior Design agency. His guidance, expertise, and unwavering encouragement were crucial throughout the entire process. Dave took the time to understand my strengths and career goals, providing tailored advice that set me apart from other candidates. His insight into the industry and thoughtful feedback on my portfolio helped me present myself in the best light. Thanks to Dave\u2019s mentorship, I feel confident and prepared as I embark on this exciting new chapter in my career. I can\u2019t thank him enough for his dedication and support every step of the way\u201D\",height:\"100%\",id:\"LC2c8P9FL\",KXlWT43VI:\"Sales and Marketing Candidate\",layoutId:\"LC2c8P9FL\",OamWgA5rH:\"\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed8()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ts69qv hidden-n1n9xo\",\"data-framer-name\":\"Testimonial Wrap\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2nps2n\",\"data-framer-name\":\"Featured Carousal Review\",children:[isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jgitkq-container hidden-ejgiep hidden-1l2arl5 hidden-10rpncf\",isModuleExternal:true,nodeId:\"glAGSmhyI\",scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-2930fc96-2a19-4c51-bdb3-fa6e89c47e8a, rgb(11, 33, 70))\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:20,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"glAGSmhyI\",intervalControl:4,itemAmount:1,layoutId:\"glAGSmhyI\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qjxzof-container\",inComponentSlot:true,nodeId:\"ntPghB84B\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"I have been placed by Miles and subsequently used Adjacency to fill a notoriously challenging role. On both occasions Miles and his team exceeded expectations. Miles\u2019s approachable manner coupled with his in-depth knowledge based on decades of experience shone through on both occasions. Miles has also been on hand to provide us with overall recruitment strategy, market trends, benchmarking and candidates insights. I highly recommend Miles and the whole Adjacency team.\",height:\"100%\",id:\"ntPghB84B\",KXlWT43VI:\"Design & Fit out company\",layoutId:\"ntPghB84B\",OamWgA5rH:\"Director\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l1o86s-container\",inComponentSlot:true,nodeId:\"o_KAjbOvo\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"So very well connected throughout Gloucestershire, the South West and beyond. Utterly professional and perceptive, matching the right candidates to client briefs, ensuring culture fit on top of required skills. For a personal, dedicated exec and non-exec recruitment service I couldn\u2019t recommend Adjacency more to both employers and potential candidates.\",height:\"100%\",id:\"o_KAjbOvo\",KXlWT43VI:\"Professional Services Firm\",layoutId:\"o_KAjbOvo\",OamWgA5rH:\"Marketing Director\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2p5tq5-container\",inComponentSlot:true,nodeId:\"R2OYHcbzD\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"Adjacency supported me through my search for my next HR career opportunity. They were thoroughly professional throughout, always returned emails and phone calls and ensured I was thoroughly briefed for all potential interviews I was attending. After interviews, they always called and conducted a de-brief and provided me with feedback as well which was really important as it really helped me to ensure my own thoughts on how the interview went was well balanced. They  also offered constructive insights into a number of organisations I was looking at  which really helped me to identify and be clear regarding the type of organisation I wanted to work for. I\u2019m really pleased with my current role and would highly recommend Adjacency for supporting organisations with their vacancies. They are transparent, professional and a pleasure to have supporting you as a client.\",height:\"100%\",id:\"R2OYHcbzD\",KXlWT43VI:\"Financial Services\",layoutId:\"R2OYHcbzD\",OamWgA5rH:\"Head of HR\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rz8lrw-container\",inComponentSlot:true,nodeId:\"lHqMAXpsU\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"My experience with Adjacency  extends to a recent position we were discussing regarding a career move for myself. What has impressed me about them is that they are very knowledgeable about the company they are partnering, answering questions I would only expect the employer to know, not their recruiter.  There wasn\u2019t a question which I posed which they didn\u2019t have an answer for. To me this is vital as you you rely heavily on the recruitment consultant to give you the inside track on the organsiation which you are considering joining. What also sets them apart from the others is their willingness to keep you updated at every step of the way regarding progress and where we are with contracts etc, keeping that contact going even when you have begun your new position to ensure that everything is ok and if there is anything further they can help with. In summary the Adjacency team are true professionals and the next time I am recruiting I will certainly turn to them for their support.\",height:\"100%\",id:\"lHqMAXpsU\",KXlWT43VI:\"Healthcare Provider\",layoutId:\"lHqMAXpsU\",OamWgA5rH:\"Head of Sales\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-7yfual-container\",inComponentSlot:true,nodeId:\"EXXqffgG9\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"Adjacency have conducted several successful searches for us recently. In each case they have thoroughly understood our brief and offered insightful challenges to be very specific against the type of candidate required. Working not just on ability and experience, they have focused on cultural fit for an entrepreneurial SME and have always delivered great candidates. The management team drive this and their conscientious approach has been very valuable to us. I wouldn\u2019t hesitate to recommend Adjacency for any recruitment briefs you may have.\",height:\"100%\",id:\"EXXqffgG9\",KXlWT43VI:\"FMCG Brand\",layoutId:\"EXXqffgG9\",OamWgA5rH:\"CEO\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n3qpvq-container\",inComponentSlot:true,nodeId:\"NUNo2QvgL\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"As a Group we have used Adjacency across most operating divisions up to placing Director level colleagues.  I have used them to find several niche remits that we have always found difficult to resource.  We have found them to be a breath of fresh air in the manner of their operation and communication.  They have not failed to provide the candidates we need and for me they are my chosen provider when recruiting externally. \",height:\"100%\",id:\"NUNo2QvgL\",KXlWT43VI:\"FTSE 100 Engineering Group\",layoutId:\"NUNo2QvgL\",OamWgA5rH:\"Regional Managing Director\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a996tw-container\",inComponentSlot:true,nodeId:\"P8usm5yCG\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"Adjacency have partnered us for the past 7 years and have recruited candidates in our finance, HR and marketing teams with notable success.  Our recent supplier review highlighted the success rates that Adjacency have managed which sit at the top of our providers at all levels.  Thank you for your continued support and hard work. \",height:\"100%\",id:\"P8usm5yCG\",KXlWT43VI:\"Legal Firm\",layoutId:\"P8usm5yCG\",OamWgA5rH:\"HR Director\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hoftvf-container\",inComponentSlot:true,nodeId:\"LC2c8P9FL\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"\u201CI am incredibly grateful to Dave for his invaluable support in helping me secure a Senior Design position at a sought-after Interior Design agency. His guidance, expertise, and unwavering encouragement were crucial throughout the entire process. Dave took the time to understand my strengths and career goals, providing tailored advice that set me apart from other candidates. His insight into the industry and thoughtful feedback on my portfolio helped me present myself in the best light. Thanks to Dave\u2019s mentorship, I feel confident and prepared as I embark on this exciting new chapter in my career. I can\u2019t thank him enough for his dedication and support every step of the way\u201D\",height:\"100%\",id:\"LC2c8P9FL\",KXlWT43VI:\"Sales and Marketing Candidate\",layoutId:\"LC2c8P9FL\",OamWgA5rH:\"\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hoftvf-container\",inComponentSlot:true,nodeId:\"LC2c8P9FL\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"\u201CI am incredibly grateful to Dave for his invaluable support in helping me secure a Senior Design position at a sought-after Interior Design agency. His guidance, expertise, and unwavering encouragement were crucial throughout the entire process. Dave took the time to understand my strengths and career goals, providing tailored advice that set me apart from other candidates. His insight into the industry and thoughtful feedback on my portfolio helped me present myself in the best light. Thanks to Dave\u2019s mentorship, I feel confident and prepared as I embark on this exciting new chapter in my career. I can\u2019t thank him enough for his dedication and support every step of the way\u201D\",height:\"100%\",id:\"LC2c8P9FL\",KXlWT43VI:\"Sales and Marketing Candidate\",layoutId:\"LC2c8P9FL\",OamWgA5rH:\"\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hoftvf-container\",inComponentSlot:true,nodeId:\"LC2c8P9FL\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"\u201CI am incredibly grateful to Dave for his invaluable support in helping me secure a Senior Design position at a sought-after Interior Design agency. His guidance, expertise, and unwavering encouragement were crucial throughout the entire process. Dave took the time to understand my strengths and career goals, providing tailored advice that set me apart from other candidates. His insight into the industry and thoughtful feedback on my portfolio helped me present myself in the best light. Thanks to Dave\u2019s mentorship, I feel confident and prepared as I embark on this exciting new chapter in my career. I can\u2019t thank him enough for his dedication and support every step of the way\u201D\",height:\"100%\",id:\"LC2c8P9FL\",KXlWT43VI:\"Sales and Marketing Candidate\",layoutId:\"LC2c8P9FL\",OamWgA5rH:\"\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12kqv54-container hidden-ejgiep hidden-1l2arl5 hidden-1pzpqa3\",isModuleExternal:true,nodeId:\"z1ATcI2Mw\",scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-2930fc96-2a19-4c51-bdb3-fa6e89c47e8a, rgb(11, 33, 70))\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:20,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"z1ATcI2Mw\",intervalControl:4,itemAmount:1,layoutId:\"z1ATcI2Mw\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qjxzof-container\",inComponentSlot:true,nodeId:\"ntPghB84B\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"I have been placed by Miles and subsequently used Adjacency to fill a notoriously challenging role. On both occasions Miles and his team exceeded expectations. Miles\u2019s approachable manner coupled with his in-depth knowledge based on decades of experience shone through on both occasions. Miles has also been on hand to provide us with overall recruitment strategy, market trends, benchmarking and candidates insights. I highly recommend Miles and the whole Adjacency team.\",height:\"100%\",id:\"ntPghB84B\",KXlWT43VI:\"Design & Fit out company\",layoutId:\"ntPghB84B\",OamWgA5rH:\"Director\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l1o86s-container\",inComponentSlot:true,nodeId:\"o_KAjbOvo\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"So very well connected throughout Gloucestershire, the South West and beyond. Utterly professional and perceptive, matching the right candidates to client briefs, ensuring culture fit on top of required skills. For a personal, dedicated exec and non-exec recruitment service I couldn\u2019t recommend Adjacency more to both employers and potential candidates.\",height:\"100%\",id:\"o_KAjbOvo\",KXlWT43VI:\"Professional Services Firm\",layoutId:\"o_KAjbOvo\",OamWgA5rH:\"Marketing Director\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2p5tq5-container\",inComponentSlot:true,nodeId:\"R2OYHcbzD\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"Adjacency supported me through my search for my next HR career opportunity. They were thoroughly professional throughout, always returned emails and phone calls and ensured I was thoroughly briefed for all potential interviews I was attending. After interviews, they always called and conducted a de-brief and provided me with feedback as well which was really important as it really helped me to ensure my own thoughts on how the interview went was well balanced. They  also offered constructive insights into a number of organisations I was looking at  which really helped me to identify and be clear regarding the type of organisation I wanted to work for. I\u2019m really pleased with my current role and would highly recommend Adjacency for supporting organisations with their vacancies. They are transparent, professional and a pleasure to have supporting you as a client.\",height:\"100%\",id:\"R2OYHcbzD\",KXlWT43VI:\"Financial Services\",layoutId:\"R2OYHcbzD\",OamWgA5rH:\"Head of HR\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rz8lrw-container\",inComponentSlot:true,nodeId:\"lHqMAXpsU\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"My experience with Adjacency  extends to a recent position we were discussing regarding a career move for myself. What has impressed me about them is that they are very knowledgeable about the company they are partnering, answering questions I would only expect the employer to know, not their recruiter.  There wasn\u2019t a question which I posed which they didn\u2019t have an answer for. To me this is vital as you you rely heavily on the recruitment consultant to give you the inside track on the organsiation which you are considering joining. What also sets them apart from the others is their willingness to keep you updated at every step of the way regarding progress and where we are with contracts etc, keeping that contact going even when you have begun your new position to ensure that everything is ok and if there is anything further they can help with. In summary the Adjacency team are true professionals and the next time I am recruiting I will certainly turn to them for their support.\",height:\"100%\",id:\"lHqMAXpsU\",KXlWT43VI:\"Healthcare Provider\",layoutId:\"lHqMAXpsU\",OamWgA5rH:\"Head of Sales\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-7yfual-container\",inComponentSlot:true,nodeId:\"EXXqffgG9\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"Adjacency have conducted several successful searches for us recently. In each case they have thoroughly understood our brief and offered insightful challenges to be very specific against the type of candidate required. Working not just on ability and experience, they have focused on cultural fit for an entrepreneurial SME and have always delivered great candidates. The management team drive this and their conscientious approach has been very valuable to us. I wouldn\u2019t hesitate to recommend Adjacency for any recruitment briefs you may have.\",height:\"100%\",id:\"EXXqffgG9\",KXlWT43VI:\"FMCG Brand\",layoutId:\"EXXqffgG9\",OamWgA5rH:\"CEO\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n3qpvq-container\",inComponentSlot:true,nodeId:\"NUNo2QvgL\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"As a Group we have used Adjacency across most operating divisions up to placing Director level colleagues.  I have used them to find several niche remits that we have always found difficult to resource.  We have found them to be a breath of fresh air in the manner of their operation and communication.  They have not failed to provide the candidates we need and for me they are my chosen provider when recruiting externally. \",height:\"100%\",id:\"NUNo2QvgL\",KXlWT43VI:\"FTSE 100 Engineering Group\",layoutId:\"NUNo2QvgL\",OamWgA5rH:\"Regional Managing Director\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a996tw-container\",inComponentSlot:true,nodeId:\"P8usm5yCG\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"Adjacency have partnered us for the past 7 years and have recruited candidates in our finance, HR and marketing teams with notable success.  Our recent supplier review highlighted the success rates that Adjacency have managed which sit at the top of our providers at all levels.  Thank you for your continued support and hard work. \",height:\"100%\",id:\"P8usm5yCG\",KXlWT43VI:\"Legal Firm\",layoutId:\"P8usm5yCG\",OamWgA5rH:\"HR Director\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hoftvf-container\",inComponentSlot:true,nodeId:\"LC2c8P9FL\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"\u201CI am incredibly grateful to Dave for his invaluable support in helping me secure a Senior Design position at a sought-after Interior Design agency. His guidance, expertise, and unwavering encouragement were crucial throughout the entire process. Dave took the time to understand my strengths and career goals, providing tailored advice that set me apart from other candidates. His insight into the industry and thoughtful feedback on my portfolio helped me present myself in the best light. Thanks to Dave\u2019s mentorship, I feel confident and prepared as I embark on this exciting new chapter in my career. I can\u2019t thank him enough for his dedication and support every step of the way\u201D\",height:\"100%\",id:\"LC2c8P9FL\",KXlWT43VI:\"Sales and Marketing Candidate\",layoutId:\"LC2c8P9FL\",OamWgA5rH:\"\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hoftvf-container\",inComponentSlot:true,nodeId:\"LC2c8P9FL\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"\u201CI am incredibly grateful to Dave for his invaluable support in helping me secure a Senior Design position at a sought-after Interior Design agency. His guidance, expertise, and unwavering encouragement were crucial throughout the entire process. Dave took the time to understand my strengths and career goals, providing tailored advice that set me apart from other candidates. His insight into the industry and thoughtful feedback on my portfolio helped me present myself in the best light. Thanks to Dave\u2019s mentorship, I feel confident and prepared as I embark on this exciting new chapter in my career. I can\u2019t thank him enough for his dedication and support every step of the way\u201D\",height:\"100%\",id:\"LC2c8P9FL\",KXlWT43VI:\"Sales and Marketing Candidate\",layoutId:\"LC2c8P9FL\",OamWgA5rH:\"\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hoftvf-container\",inComponentSlot:true,nodeId:\"LC2c8P9FL\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"\u201CI am incredibly grateful to Dave for his invaluable support in helping me secure a Senior Design position at a sought-after Interior Design agency. His guidance, expertise, and unwavering encouragement were crucial throughout the entire process. Dave took the time to understand my strengths and career goals, providing tailored advice that set me apart from other candidates. His insight into the industry and thoughtful feedback on my portfolio helped me present myself in the best light. Thanks to Dave\u2019s mentorship, I feel confident and prepared as I embark on this exciting new chapter in my career. I can\u2019t thank him enough for his dedication and support every step of the way\u201D\",height:\"100%\",id:\"LC2c8P9FL\",KXlWT43VI:\"Sales and Marketing Candidate\",layoutId:\"LC2c8P9FL\",OamWgA5rH:\"\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed9()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sg7m7s-container hidden-1l2arl5 hidden-1pzpqa3 hidden-10rpncf\",isModuleExternal:true,nodeId:\"UsaHIbkhO\",scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-2930fc96-2a19-4c51-bdb3-fa6e89c47e8a, rgb(11, 33, 70))\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:20,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"UsaHIbkhO\",intervalControl:4,itemAmount:1,layoutId:\"UsaHIbkhO\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qjxzof-container\",inComponentSlot:true,nodeId:\"ntPghB84B\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"I have been placed by Miles and subsequently used Adjacency to fill a notoriously challenging role. On both occasions Miles and his team exceeded expectations. Miles\u2019s approachable manner coupled with his in-depth knowledge based on decades of experience shone through on both occasions. Miles has also been on hand to provide us with overall recruitment strategy, market trends, benchmarking and candidates insights. I highly recommend Miles and the whole Adjacency team.\",height:\"100%\",id:\"ntPghB84B\",KXlWT43VI:\"Design & Fit out company\",layoutId:\"ntPghB84B\",OamWgA5rH:\"Director\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l1o86s-container\",inComponentSlot:true,nodeId:\"o_KAjbOvo\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"So very well connected throughout Gloucestershire, the South West and beyond. Utterly professional and perceptive, matching the right candidates to client briefs, ensuring culture fit on top of required skills. For a personal, dedicated exec and non-exec recruitment service I couldn\u2019t recommend Adjacency more to both employers and potential candidates.\",height:\"100%\",id:\"o_KAjbOvo\",KXlWT43VI:\"Professional Services Firm\",layoutId:\"o_KAjbOvo\",OamWgA5rH:\"Marketing Director\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2p5tq5-container\",inComponentSlot:true,nodeId:\"R2OYHcbzD\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"Adjacency supported me through my search for my next HR career opportunity. They were thoroughly professional throughout, always returned emails and phone calls and ensured I was thoroughly briefed for all potential interviews I was attending. After interviews, they always called and conducted a de-brief and provided me with feedback as well which was really important as it really helped me to ensure my own thoughts on how the interview went was well balanced. They  also offered constructive insights into a number of organisations I was looking at  which really helped me to identify and be clear regarding the type of organisation I wanted to work for. I\u2019m really pleased with my current role and would highly recommend Adjacency for supporting organisations with their vacancies. They are transparent, professional and a pleasure to have supporting you as a client.\",height:\"100%\",id:\"R2OYHcbzD\",KXlWT43VI:\"Financial Services\",layoutId:\"R2OYHcbzD\",OamWgA5rH:\"Head of HR\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rz8lrw-container\",inComponentSlot:true,nodeId:\"lHqMAXpsU\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"My experience with Adjacency  extends to a recent position we were discussing regarding a career move for myself. What has impressed me about them is that they are very knowledgeable about the company they are partnering, answering questions I would only expect the employer to know, not their recruiter.  There wasn\u2019t a question which I posed which they didn\u2019t have an answer for. To me this is vital as you you rely heavily on the recruitment consultant to give you the inside track on the organsiation which you are considering joining. What also sets them apart from the others is their willingness to keep you updated at every step of the way regarding progress and where we are with contracts etc, keeping that contact going even when you have begun your new position to ensure that everything is ok and if there is anything further they can help with. In summary the Adjacency team are true professionals and the next time I am recruiting I will certainly turn to them for their support.\",height:\"100%\",id:\"lHqMAXpsU\",KXlWT43VI:\"Healthcare Provider\",layoutId:\"lHqMAXpsU\",OamWgA5rH:\"Head of Sales\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-7yfual-container\",inComponentSlot:true,nodeId:\"EXXqffgG9\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"Adjacency have conducted several successful searches for us recently. In each case they have thoroughly understood our brief and offered insightful challenges to be very specific against the type of candidate required. Working not just on ability and experience, they have focused on cultural fit for an entrepreneurial SME and have always delivered great candidates. The management team drive this and their conscientious approach has been very valuable to us. I wouldn\u2019t hesitate to recommend Adjacency for any recruitment briefs you may have.\",height:\"100%\",id:\"EXXqffgG9\",KXlWT43VI:\"FMCG Brand\",layoutId:\"EXXqffgG9\",OamWgA5rH:\"CEO\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n3qpvq-container\",inComponentSlot:true,nodeId:\"NUNo2QvgL\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"As a Group we have used Adjacency across most operating divisions up to placing Director level colleagues.  I have used them to find several niche remits that we have always found difficult to resource.  We have found them to be a breath of fresh air in the manner of their operation and communication.  They have not failed to provide the candidates we need and for me they are my chosen provider when recruiting externally. \",height:\"100%\",id:\"NUNo2QvgL\",KXlWT43VI:\"FTSE 100 Engineering Group\",layoutId:\"NUNo2QvgL\",OamWgA5rH:\"Regional Managing Director\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a996tw-container\",inComponentSlot:true,nodeId:\"P8usm5yCG\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"Adjacency have partnered us for the past 7 years and have recruited candidates in our finance, HR and marketing teams with notable success.  Our recent supplier review highlighted the success rates that Adjacency have managed which sit at the top of our providers at all levels.  Thank you for your continued support and hard work. \",height:\"100%\",id:\"P8usm5yCG\",KXlWT43VI:\"Legal Firm\",layoutId:\"P8usm5yCG\",OamWgA5rH:\"HR Director\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hoftvf-container\",inComponentSlot:true,nodeId:\"LC2c8P9FL\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"\u201CI am incredibly grateful to Dave for his invaluable support in helping me secure a Senior Design position at a sought-after Interior Design agency. His guidance, expertise, and unwavering encouragement were crucial throughout the entire process. Dave took the time to understand my strengths and career goals, providing tailored advice that set me apart from other candidates. His insight into the industry and thoughtful feedback on my portfolio helped me present myself in the best light. Thanks to Dave\u2019s mentorship, I feel confident and prepared as I embark on this exciting new chapter in my career. I can\u2019t thank him enough for his dedication and support every step of the way\u201D\",height:\"100%\",id:\"LC2c8P9FL\",KXlWT43VI:\"Sales and Marketing Candidate\",layoutId:\"LC2c8P9FL\",OamWgA5rH:\"\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hoftvf-container\",inComponentSlot:true,nodeId:\"LC2c8P9FL\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"\u201CI am incredibly grateful to Dave for his invaluable support in helping me secure a Senior Design position at a sought-after Interior Design agency. His guidance, expertise, and unwavering encouragement were crucial throughout the entire process. Dave took the time to understand my strengths and career goals, providing tailored advice that set me apart from other candidates. His insight into the industry and thoughtful feedback on my portfolio helped me present myself in the best light. Thanks to Dave\u2019s mentorship, I feel confident and prepared as I embark on this exciting new chapter in my career. I can\u2019t thank him enough for his dedication and support every step of the way\u201D\",height:\"100%\",id:\"LC2c8P9FL\",KXlWT43VI:\"Sales and Marketing Candidate\",layoutId:\"LC2c8P9FL\",OamWgA5rH:\"\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"640px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hoftvf-container\",inComponentSlot:true,nodeId:\"LC2c8P9FL\",rendersWithMotion:true,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(CardsTestimonial,{g9U_Hv4F4:\"\u201CI am incredibly grateful to Dave for his invaluable support in helping me secure a Senior Design position at a sought-after Interior Design agency. His guidance, expertise, and unwavering encouragement were crucial throughout the entire process. Dave took the time to understand my strengths and career goals, providing tailored advice that set me apart from other candidates. His insight into the industry and thoughtful feedback on my portfolio helped me present myself in the best light. Thanks to Dave\u2019s mentorship, I feel confident and prepared as I embark on this exciting new chapter in my career. I can\u2019t thank him enough for his dedication and support every step of the way\u201D\",height:\"100%\",id:\"LC2c8P9FL\",KXlWT43VI:\"Sales and Marketing Candidate\",layoutId:\"LC2c8P9FL\",OamWgA5rH:\"\",style:{width:\"100%\"},variant:\"hOnE_td9z\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]})})]}),isDisplayed5()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-25y3jy hidden-ejgiep hidden-n1n9xo hidden-1l2arl5 hidden-1pzpqa3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-r4xnwm-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"WchAKEQuI\",scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script src=\"https://cdn.commoninja.com/sdk/latest/commonninja.js\" defer></script>\\n<div class=\"commonninja_component pid-a4838287-1d0f-42ca-b077-2111e9a0c911\"></div>',id:\"WchAKEQuI\",layoutId:\"WchAKEQuI\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kqzzup hidden-1pzpqa3 hidden-10rpncf\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-137amif-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"r3yKgHCOO\",scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script src=\"https://cdn.commoninja.com/sdk/latest/commonninja.js\" defer></script>\\n<div class=\"commonninja_component pid-a4838287-1d0f-42ca-b077-2111e9a0c911\"></div>',id:\"r3yKgHCOO\",layoutId:\"r3yKgHCOO\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{y:(componentViewport?.y||0)+0+6481.1},mPSypq2CF:{y:(componentViewport?.y||0)+0+4403.6},OPTJieC8W:{y:(componentViewport?.y||0)+0+5041.5},wMec0WY7P:{y:(componentViewport?.y||0)+0+4260.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:366,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4203.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mw5bnb-container\",id:elementId4,nodeId:\"k2m8uEueZ\",ref:ref5,scopeId:\"c38PXSriH\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzXNUiI6T:{variant:\"ayftzr7DI\"},OPTJieC8W:{variant:\"b5zP6dIGs\"}},children:/*#__PURE__*/_jsx(GlobalFooter,{height:\"100%\",id:\"k2m8uEueZ\",layoutId:\"k2m8uEueZ\",style:{width:\"100%\"},variant:\"hsAIG8uGz\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Efyk0.framer-1t4nqz4, .framer-Efyk0 .framer-1t4nqz4 { display: block; }\",\".framer-Efyk0.framer-ejgiep { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1350px; }\",\".framer-Efyk0 .framer-3alteo-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 10; }\",\".framer-Efyk0 .framer-1jytkn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 500px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-1kdmoqy { background: linear-gradient(180deg, rgba(11, 32, 69, 0) 0%, rgba(229, 229, 230, 0.86) 76.23346002252252%, var(--token-a3b6aa8a-e710-4ae6-9e45-3e4b7c499a96, rgb(246, 246, 246)) 100%); flex: none; height: 100%; overflow: hidden; position: relative; width: 100%; z-index: 1; }\",\".framer-Efyk0 .framer-tssug1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 2px; width: 100%; }\",\".framer-Efyk0 .framer-cae65x { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 100%; justify-content: center; padding: 0px 0px 0px 40px; position: relative; width: 1px; }\",\".framer-Efyk0 .framer-1ljohf0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; min-height: 2px; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Efyk0 .framer-1t5czg { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 80%; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-Efyk0 .framer-1psae6v-container, .framer-Efyk0 .framer-2nytqf-container, .framer-Efyk0 .framer-13eqnf9-container, .framer-Efyk0 .framer-ygd0i5-container, .framer-Efyk0 .framer-17gqwob-container, .framer-Efyk0 .framer-2tjjim-container, .framer-Efyk0 .framer-3m5vqs-container, .framer-Efyk0 .framer-1dzince-container, .framer-Efyk0 .framer-1yl5l7-container, .framer-Efyk0 .framer-17rkcmw-container, .framer-Efyk0 .framer-h17rc6-container, .framer-Efyk0 .framer-1fqy0zr-container, .framer-Efyk0 .framer-1bfbo3f-container, .framer-Efyk0 .framer-1cnkgfa-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Efyk0 .framer-izsnzt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 410px; }\",\".framer-Efyk0 .framer-3avb6b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-1uqfpjf { aspect-ratio: 3.749999888241294 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); position: relative; width: 160px; }\",\".framer-Efyk0 .framer-1jp9da0 { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Efyk0 .framer-1b7mmra-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(49.857142857142875% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-Efyk0 .framer-1ugqoxj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 50px; position: relative; width: 1600px; }\",\".framer-Efyk0 .framer-h1hi6r, .framer-Efyk0 .framer-118y805 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 90%; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Efyk0 .framer-jgjb5g, .framer-Efyk0 .framer-fmtro9 { 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: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Efyk0 .framer-137w0jz, .framer-Efyk0 .framer-68m6s4, .framer-Efyk0 .framer-157dqfc, .framer-Efyk0 .framer-106y1ay, .framer-Efyk0 .framer-1hcv82m, .framer-Efyk0 .framer-1qwavm3, .framer-Efyk0 .framer-1sc2jsr, .framer-Efyk0 .framer-3k0bqf { align-content: center; align-items: center; background-color: var(--token-2930fc96-2a19-4c51-bdb3-fa6e89c47e8a, #0b2146); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Efyk0 .framer-bxapq8, .framer-Efyk0 .framer-mzimkv, .framer-Efyk0 .framer-1q9ax37, .framer-Efyk0 .framer-16tkyz6, .framer-Efyk0 .framer-g5iu69, .framer-Efyk0 .framer-j9iyry, .framer-Efyk0 .framer-1n4zsb6, .framer-Efyk0 .framer-19wboyg, .framer-Efyk0 .framer-gmhy6y, .framer-Efyk0 .framer-1xu0k3p, .framer-Efyk0 .framer-m8wjtb, .framer-Efyk0 .framer-1qhrdzi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-Efyk0 .framer-twk8wl, .framer-Efyk0 .framer-3amdg4, .framer-Efyk0 .framer-1ps9y1p, .framer-Efyk0 .framer-1wj6woi, .framer-Efyk0 .framer-18qqmg2, .framer-Efyk0 .framer-1dh0mje, .framer-Efyk0 .framer-weicte, .framer-Efyk0 .framer-rwx5wl, .framer-Efyk0 .framer-1ckvhzw, .framer-Efyk0 .framer-8dm2ou, .framer-Efyk0 .framer-6ui1lw, .framer-Efyk0 .framer-6hi3eg { flex: none; height: 158px; overflow: hidden; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-5k4g1 { align-content: center; align-items: center; background-color: var(--token-a3b6aa8a-e710-4ae6-9e45-3e4b7c499a96, #f6f6f6); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-1722lfb { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 70%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-1e49sfb, .framer-Efyk0 .framer-qs19ic, .framer-Efyk0 .framer-18qaff3, .framer-Efyk0 .framer-1lpa3kh { align-content: center; align-items: center; align-self: start; background-color: var(--token-2930fc96-2a19-4c51-bdb3-fa6e89c47e8a, #0b2146); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; justify-self: start; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Efyk0 .framer-bex31t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 50px; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-1r851lt, .framer-Efyk0 .framer-bfc7qj { align-content: center; align-items: center; background-color: var(--token-a3b6aa8a-e710-4ae6-9e45-3e4b7c499a96, #f6f6f6); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-1cdoqbs, .framer-Efyk0 .framer-7uqdg6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 70px 0px 70px; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-kzqg1q, .framer-Efyk0 .framer-1oyykst { display: grid; flex: none; gap: 31px; grid-auto-rows: min-content; grid-template-columns: repeat(5, minmax(140px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-e6mheg-container, .framer-Efyk0 .framer-1a0pkh5-container, .framer-Efyk0 .framer-1nk1rra-container, .framer-Efyk0 .framer-7efltx-container, .framer-Efyk0 .framer-1dqoiiq-container, .framer-Efyk0 .framer-1jmli6k-container, .framer-Efyk0 .framer-1kiipqs-container, .framer-Efyk0 .framer-1tevr1t-container, .framer-Efyk0 .framer-3qqazm-container, .framer-Efyk0 .framer-1gykon9-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-14o4id7 { align-content: center; align-items: center; background-color: var(--token-a5be3c15-2800-4356-a463-57264872f73c, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-10pa75h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-Efyk0 .framer-111jejt { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-6tfxzg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Efyk0 .framer-1x739yn { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-1fblktl, .framer-Efyk0 .framer-3ekof6, .framer-Efyk0 .framer-1ygjlvo, .framer-Efyk0 .framer-14q8026, .framer-Efyk0 .framer-1gwr8fs, .framer-Efyk0 .framer-1qv7der, .framer-Efyk0 .framer-1q7ee7t, .framer-Efyk0 .framer-2ktpof, .framer-Efyk0 .framer-qywgft { --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-Efyk0 .framer-1ekw30a { display: grid; flex: none; gap: 29px; grid-auto-rows: 200px; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, 200px); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-14jkgsd { align-content: center; align-items: center; align-self: center; background: linear-gradient(139deg, #61b9e8 -19%, var(--token-2930fc96-2a19-4c51-bdb3-fa6e89c47e8a, rgb(11, 33, 70)) 48.76724380630631%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.3613123810646357px 0.18065619053231785px -1.3333333333333333px rgba(0, 0, 0, 0.19), 0px 1.3731199819460742px 0.6865599909730371px -2.6666666666666665px rgba(0, 0, 0, 0.17), 0px 6px 3px -4px rgba(0, 0, 0, 0.05); cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 100%; justify-content: center; justify-self: center; overflow: visible; padding: 20px; position: relative; text-decoration: none; width: 100%; }\",\".framer-Efyk0 .framer-10k4l3l, .framer-Efyk0 .framer-57abf0, .framer-Efyk0 .framer-1bjplu7, .framer-Efyk0 .framer-bu455t, .framer-Efyk0 .framer-4gg9kg, .framer-Efyk0 .framer-1m0zqrl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Efyk0 .framer-1nur607, .framer-Efyk0 .framer-cg8283, .framer-Efyk0 .framer-3ijb6y, .framer-Efyk0 .framer-1b1qokx, .framer-Efyk0 .framer-775scm { align-content: center; align-items: center; align-self: center; background: linear-gradient(139deg, #61b9e8 -19%, var(--token-2930fc96-2a19-4c51-bdb3-fa6e89c47e8a, rgb(11, 33, 70)) 48.76724380630631%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.3613123810646357px 0.18065619053231785px -1.3333333333333333px rgba(0, 0, 0, 0.19), 0px 1.3731199819460742px 0.6865599909730371px -2.6666666666666665px rgba(0, 0, 0, 0.17), 0px 6px 3px -4px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 100%; justify-content: center; justify-self: center; overflow: visible; padding: 20px; position: relative; text-decoration: none; width: 100%; }\",\".framer-Efyk0 .framer-5hcg3f { align-content: center; align-items: center; background-color: var(--token-2930fc96-2a19-4c51-bdb3-fa6e89c47e8a, #0b2146); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-1pobqxc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-Efyk0 .framer-lo1tw8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-1nb1agx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Efyk0 .framer-1lu7q48 { aspect-ratio: 1.0687022900763359 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 534px); position: relative; width: 100%; }\",\".framer-Efyk0 .framer-zgo6ou { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Efyk0 .framer-1oexvjn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-ie87f1 { 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: 100%; }\",\".framer-Efyk0 .framer-1g0lz2u { display: grid; flex: none; gap: 31px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(140px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-jdelfj, .framer-Efyk0 .framer-x8kbr4 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 1fr; }\",\".framer-Efyk0 .framer-lgcukv { align-content: center; align-items: center; background-color: var(--token-a5be3c15-2800-4356-a463-57264872f73c, #f6f7ff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-lxyuzd { 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: 400px; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-7tbt7f-container, .framer-Efyk0 .framer-r4xnwm-container, .framer-Efyk0 .framer-137amif-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-Efyk0 .framer-1wbl45b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 90%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-1pasgav { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-1v49j8b-container, .framer-Efyk0 .framer-16snqfh-container { flex: none; height: 400px; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-qjxzof-container, .framer-Efyk0 .framer-1l1o86s-container, .framer-Efyk0 .framer-2p5tq5-container, .framer-Efyk0 .framer-1rz8lrw-container, .framer-Efyk0 .framer-7yfual-container, .framer-Efyk0 .framer-1n3qpvq-container, .framer-Efyk0 .framer-1a996tw-container, .framer-Efyk0 .framer-hoftvf-container { height: auto; position: relative; width: 640px; }\",\".framer-Efyk0 .framer-ts69qv { 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-Efyk0 .framer-2nps2n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-jgitkq-container, .framer-Efyk0 .framer-12kqv54-container, .framer-Efyk0 .framer-sg7m7s-container { flex: 1 0 0px; height: 400px; position: relative; width: 1px; }\",\".framer-Efyk0 .framer-25y3jy, .framer-Efyk0 .framer-1kqzzup { 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: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Efyk0 .framer-mw5bnb-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 720px) and (max-width: 1279px) { .framer-Efyk0.framer-ejgiep { width: 720px; } .framer-Efyk0 .framer-fmtro9 { 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)); } .framer-Efyk0 .framer-1hcv82m, .framer-Efyk0 .framer-1qwavm3, .framer-Efyk0 .framer-1sc2jsr, .framer-Efyk0 .framer-3k0bqf { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-Efyk0 .framer-kzqg1q { grid-template-columns: repeat(3, minmax(140px, 1fr)); } .framer-Efyk0 .framer-10pa75h, .framer-Efyk0 .framer-1pobqxc { width: 92%; } .framer-Efyk0 .framer-111jejt { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 40px; } .framer-Efyk0 .framer-6tfxzg, .framer-Efyk0 .framer-1nb1agx, .framer-Efyk0 .framer-zgo6ou { flex: none; width: 100%; } .framer-Efyk0 .framer-lo1tw8 { flex-direction: column; } .framer-Efyk0 .framer-1lu7q48 { aspect-ratio: unset; height: 450px; } .framer-Efyk0 .framer-ie87f1 { align-content: center; align-items: center; } .framer-Efyk0 .framer-1wbl45b { height: 364px; width: 92%; }}\",\"@media (max-width: 719px) { .framer-Efyk0.framer-ejgiep { width: 500px; } .framer-Efyk0 .framer-cae65x { padding: 0px; } .framer-Efyk0 .framer-1t5czg { max-width: 90%; } .framer-Efyk0 .framer-izsnzt { width: 100%; } .framer-Efyk0 .framer-3avb6b, .framer-Efyk0 .framer-lo1tw8, .framer-Efyk0 .framer-2nps2n { flex-direction: column; } .framer-Efyk0 .framer-1jp9da0, .framer-Efyk0 .framer-6tfxzg, .framer-Efyk0 .framer-1nb1agx, .framer-Efyk0 .framer-zgo6ou { flex: none; width: 100%; } .framer-Efyk0 .framer-kzqg1q { gap: 30px; grid-template-columns: repeat(1, minmax(140px, 1fr)); } .framer-Efyk0 .framer-14o4id7 { padding: 80px 0px 80px 0px; } .framer-Efyk0 .framer-10pa75h, .framer-Efyk0 .framer-1pobqxc { width: 92%; } .framer-Efyk0 .framer-111jejt { flex-direction: column; gap: 40px; } .framer-Efyk0 .framer-1x739yn, .framer-Efyk0 .framer-ie87f1 { align-content: center; align-items: center; } .framer-Efyk0 .framer-1ekw30a { gap: 0px; grid-auto-rows: 100px; grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(1, 100px); max-width: 90%; } .framer-Efyk0 .framer-14jkgsd, .framer-Efyk0 .framer-1nur607, .framer-Efyk0 .framer-cg8283, .framer-Efyk0 .framer-3ijb6y, .framer-Efyk0 .framer-1b1qokx, .framer-Efyk0 .framer-775scm { height: min-content; } .framer-Efyk0 .framer-1lu7q48 { aspect-ratio: unset; height: 360px; } .framer-Efyk0 .framer-1g0lz2u { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: flex-start; } .framer-Efyk0 .framer-jdelfj, .framer-Efyk0 .framer-x8kbr4 { align-self: unset; flex: 1 0 0px; width: 1px; } .framer-Efyk0 .framer-lgcukv { padding: 200px 0px 100px 0px; } .framer-Efyk0 .framer-1wbl45b { gap: 93px; height: 691px; } .framer-Efyk0 .framer-qywgft { order: 0; } .framer-Efyk0 .framer-ts69qv { height: 0px; }}\",\"@media (min-width: 1600px) { .framer-Efyk0.framer-ejgiep { width: 1600px; } .framer-Efyk0 .framer-3alteo-container, .framer-Efyk0 .framer-137w0jz, .framer-Efyk0 .framer-1wbl45b { order: 0; } .framer-Efyk0 .framer-1jytkn, .framer-Efyk0 .framer-157dqfc { order: 1; } .framer-Efyk0 .framer-1kdmoqy { background: linear-gradient(180deg, rgba(11, 32, 69, 0) 0%, rgba(229, 229, 230, 0.86) 79.66025412619652%, var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255)) 94.52635619017454%); } .framer-Efyk0 .framer-tssug1 { height: 102%; } .framer-Efyk0 .framer-cae65x { padding: 0px; } .framer-Efyk0 .framer-1b7mmra-container { height: 99%; top: calc(49.857142857142875% - 99% / 2); } .framer-Efyk0 .framer-1ugqoxj { background-color: var(--token-a5be3c15-2800-4356-a463-57264872f73c, #ffffff); order: 2; } .framer-Efyk0 .framer-68m6s4 { order: 2; } .framer-Efyk0 .framer-106y1ay { order: 3; } .framer-Efyk0 .framer-1r851lt { order: 4; } .framer-Efyk0 .framer-14o4id7 { order: 6; } .framer-Efyk0 .framer-10pa75h { max-width: 80%; width: 100%; } .framer-Efyk0 .framer-6tfxzg { gap: 40px; } .framer-Efyk0 .framer-5hcg3f { order: 7; } .framer-Efyk0 .framer-1lu7q48 { height: var(--framer-aspect-ratio-supported, 187px); } .framer-Efyk0 .framer-lgcukv { order: 8; } .framer-Efyk0 .framer-lxyuzd { min-height: unset; order: 1; } .framer-Efyk0 .framer-mw5bnb-container { order: 9; }}\",\"@media (min-width: 1280px) and (max-width: 1349px) { .framer-Efyk0.framer-ejgiep { height: 4886px; width: 1280px; } .framer-Efyk0 .framer-3alteo-container, .framer-Efyk0 .framer-137w0jz { order: 0; } .framer-Efyk0 .framer-1jytkn { height: 700px; order: 1; } .framer-Efyk0 .framer-1kdmoqy { background: linear-gradient(180deg, rgba(11, 32, 69, 0) 0%, rgba(229, 229, 230, 0.86) 76.23346002252252%, var(--token-a5be3c15-2800-4356-a463-57264872f73c, rgb(255, 255, 255)) 100%); height: 101%; } .framer-Efyk0 .framer-cae65x { padding: 0px; } .framer-Efyk0 .framer-1ugqoxj { background-color: var(--token-a5be3c15-2800-4356-a463-57264872f73c, #ffffff); order: 2; width: 100%; } .framer-Efyk0 .framer-68m6s4 { order: 2; } .framer-Efyk0 .framer-157dqfc { order: 1; } .framer-Efyk0 .framer-106y1ay { order: 3; } .framer-Efyk0 .framer-bfc7qj { order: 5; } .framer-Efyk0 .framer-14o4id7 { order: 6; } .framer-Efyk0 .framer-6tfxzg { gap: 40px; } .framer-Efyk0 .framer-5hcg3f { order: 7; } .framer-Efyk0 .framer-lgcukv { order: 8; } .framer-Efyk0 .framer-mw5bnb-container { order: 9; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4559\n * @framerIntrinsicWidth 1350\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"OPTJieC8W\":{\"layout\":[\"fixed\",\"auto\"]},\"LzXNUiI6T\":{\"layout\":[\"fixed\",\"auto\"]},\"wMec0WY7P\":{\"layout\":[\"fixed\",\"auto\"]},\"mPSypq2CF\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Lk2T1IRKr\":{\"pattern\":\":Lk2T1IRKr\",\"name\":\"hero\"},\"W7wbs2YjO\":{\"pattern\":\":W7wbs2YjO\",\"name\":\"hero\"},\"qt45UWjf0\":{\"pattern\":\":qt45UWjf0\",\"name\":\"feature\"},\"U5AKZVTyo\":{\"pattern\":\":U5AKZVTyo\",\"name\":\"testimonial\"},\"k2m8uEueZ\":{\"pattern\":\":k2m8uEueZ\",\"name\":\"cta\"}}\n * @framerResponsiveScreen\n */const Framerc38PXSriH=withCSS(Component,css,\"framer-Efyk0\");export default Framerc38PXSriH;Framerc38PXSriH.displayName=\"Page\";Framerc38PXSriH.defaultProps={height:4559,width:1350};addFonts(Framerc38PXSriH,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Urbanist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/urbanist/v17/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDFRkfE5OrS8SlKw.woff2\",weight:\"600\"},{family:\"Urbanist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/urbanist/v17/L0xjDF02iFML4hGCyOCpRdycFsGxSrqD-R4fE5OrS8SlKw.woff2\",weight:\"500\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/EOHGWBZYYKO6R4PWP4S2B3FFWHHBEZN6/UWQLMF4AFWLXCJQCFV3WRVYC77KZXPRB/FYG6OCH7XOLUUSZTIZE65ATBZWF623O4.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/E6J4GS76KHNRRUWODFCFOX2JRKNRSFVY/3GYVT5S4AH7VMPASDDKOTIPV6P3WJXGI/24R4YOH3G2SFDSTCNHOVGYEX3DMRC3CE.woff2\",weight:\"600\"}]},...NavBarFonts,...ButtonPrimaryFonts,...VideoFonts,...CardsStatsFonts,...EmbedFonts,...CardsTestimonialFonts,...SlideshowFonts,...GlobalFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerc38PXSriH\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"{\\\"Lk2T1IRKr\\\":{\\\"pattern\\\":\\\":Lk2T1IRKr\\\",\\\"name\\\":\\\"hero\\\"},\\\"W7wbs2YjO\\\":{\\\"pattern\\\":\\\":W7wbs2YjO\\\",\\\"name\\\":\\\"hero\\\"},\\\"qt45UWjf0\\\":{\\\"pattern\\\":\\\":qt45UWjf0\\\",\\\"name\\\":\\\"feature\\\"},\\\"U5AKZVTyo\\\":{\\\"pattern\\\":\\\":U5AKZVTyo\\\",\\\"name\\\":\\\"testimonial\\\"},\\\"k2m8uEueZ\\\":{\\\"pattern\\\":\\\":k2m8uEueZ\\\",\\\"name\\\":\\\"cta\\\"}}\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"4559\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OPTJieC8W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LzXNUiI6T\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wMec0WY7P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mPSypq2CF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"1350\"}},\"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", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "amount", "height", "id", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ylDMWmlC9", "kxHlOGL6R", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText", "css", "FramerZ3KrlLnp0", "withCSS", "Z3KrlLnp0_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavBarFonts", "getFonts", "LxOz_aaN8_default", "ContainerWithFX", "withFX", "Container", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText", "ButtonPrimaryFonts", "fAUFEbuKV_default", "MotionDivWithFX", "VideoFonts", "Video", "CardsStatsFonts", "Z3KrlLnp0_default", "MotionAWithFX", "ImageWithFX", "Image2", "EmbedFonts", "Embed", "CardsTestimonialFonts", "ps32H39sp_default", "SlideshowFonts", "Slideshow", "GlobalFooterFonts", "w0QUTtTnv_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "animation2", "transition3", "animation3", "animation4", "transition4", "animation5", "animation6", "transition5", "animation7", "transition6", "animation8", "transition7", "animation9", "transition8", "animation10", "animation11", "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", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "elementId4", "ref5", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "ResolveLinks", "resolvedLinks", "getLoadingLazyAtYPosition", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "Link", "resolvedLinks13", "css", "Framerc38PXSriH", "withCSS", "c38PXSriH_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
