{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/fTZyXkr2AiaRpK9lt0CW/D1Yp0QyY2KbbpdA7P29x/eyuJxtwDM.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 (0afc761)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import ButtonPrimary from\"#framer/local/canvasComponent/esFHTJ3Oz/esFHTJ3Oz.js\";import Footer from\"#framer/local/canvasComponent/gxlpDrPIo/gxlpDrPIo.js\";import Topbar from\"#framer/local/canvasComponent/s0JnEWO2J/s0JnEWO2J.js\";import Nav from\"#framer/local/canvasComponent/SECUPohuz/SECUPohuz.js\";import Menu from\"#framer/local/canvasComponent/yhz9K7cg4/yhz9K7cg4.js\";import MentorsList from\"#framer/local/collection/tNpUI24SE/tNpUI24SE.js\";import*as sharedStyle7 from\"#framer/local/css/A0Vj40u1M/A0Vj40u1M.js\";import*as sharedStyle2 from\"#framer/local/css/BCQhmBsL6/BCQhmBsL6.js\";import*as sharedStyle3 from\"#framer/local/css/I9LWQF3pf/I9LWQF3pf.js\";import*as sharedStyle5 from\"#framer/local/css/kw2kWFwwM/kw2kWFwwM.js\";import*as sharedStyle6 from\"#framer/local/css/QvrS4__xt/QvrS4__xt.js\";import*as sharedStyle8 from\"#framer/local/css/TKEFMi6YK/TKEFMi6YK.js\";import*as sharedStyle4 from\"#framer/local/css/TMjRohPDL/TMjRohPDL.js\";import*as sharedStyle from\"#framer/local/css/XJdfdTTeG/XJdfdTTeG.js\";import*as sharedStyle1 from\"#framer/local/css/xR2EBnFSV/xR2EBnFSV.js\";import metadataProvider from\"#framer/local/webPageMetadata/eyuJxtwDM/eyuJxtwDM.js\";const TopbarFonts=getFonts(Topbar);const MenuFonts=getFonts(Menu);const MenuWithVariantAppearEffect=withVariantAppearEffect(Menu);const NavFonts=getFonts(Nav);const FeatherFonts=getFonts(Feather);const ButtonPrimaryFonts=getFonts(ButtonPrimary);const EmbedFonts=getFonts(Embed);const FooterFonts=getFonts(Footer);const breakpoints={ooQFpTqrN:\"(min-width: 810px) and (max-width: 1199px)\",Q69Tft3vO:\"(max-width: 809px)\",yh7DGhVvf:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-7vecO\";const variantClassNames={ooQFpTqrN:\"framer-v-90y7my\",Q69Tft3vO:\"framer-v-e820nr\",yh7DGhVvf:\"framer-v-12gagbx\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"yh7DGhVvf\",Phone:\"Q69Tft3vO\",Tablet:\"ooQFpTqrN\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"yh7DGhVvf\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"eyuJxtwDM\",data:MentorsList,type:\"Collection\"},select:[{collection:\"eyuJxtwDM\",name:\"ontv84LYK\",type:\"Identifier\"},{collection:\"eyuJxtwDM\",name:\"PNkrWUGro\",type:\"Identifier\"},{collection:\"eyuJxtwDM\",name:\"YqvG9Fmts\",type:\"Identifier\"},{collection:\"eyuJxtwDM\",name:\"pjHYi1pRv\",type:\"Identifier\"},{collection:\"eyuJxtwDM\",name:\"vhOdyMch8\",type:\"Identifier\"},{collection:\"eyuJxtwDM\",name:\"Skmvuvscx\",type:\"Identifier\"},{collection:\"eyuJxtwDM\",name:\"dQUvcY7VC\",type:\"Identifier\"},{collection:\"eyuJxtwDM\",name:\"ukpd2hPXn\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"eyuJxtwDM\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,ontv84LYK=getFromCurrentRouteData(\"ontv84LYK\"),PNkrWUGro=getFromCurrentRouteData(\"PNkrWUGro\")??\"\",YqvG9Fmts=getFromCurrentRouteData(\"YqvG9Fmts\")??\"\",pjHYi1pRv=getFromCurrentRouteData(\"pjHYi1pRv\")??\"\",dQUvcY7VC=getFromCurrentRouteData(\"dQUvcY7VC\")??\"\",Skmvuvscx=getFromCurrentRouteData(\"Skmvuvscx\")??\"\",vhOdyMch8=getFromCurrentRouteData(\"vhOdyMch8\")??\"\",ukpd2hPXn=getFromCurrentRouteData(\"ukpd2hPXn\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"ooQFpTqrN\",\"Q69Tft3vO\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"ooQFpTqrN\",\"Q69Tft3vO\"].includes(baseVariant))return false;return true;};const ref1=React.useRef(null);const elementId=useRouteElementId(\"hNGQmzPjv\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"Dp7wxb47x\");const router=useRouter();const elementId2=useRouteElementId(\"Ce8ksKVKH\");const ref3=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"yh7DGhVvf\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(244, 244, 244); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-12gagbx\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ooQFpTqrN:{height:68,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0},Q69Tft3vO:{height:64,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1njmbpy-container hidden-12gagbx\",nodeId:\"T015JWO__\",scopeId:\"eyuJxtwDM\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q69Tft3vO:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Topbar,{height:\"100%\",id:\"T015JWO__\",layoutId:\"T015JWO__\",style:{height:\"100%\",width:\"100%\"},variant:\"cjwJ6KJxG\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pdivmr-container hidden-90y7my hidden-e820nr\",layoutScroll:true,nodeId:\"cbO3kYsA4\",rendersWithMotion:true,scopeId:\"eyuJxtwDM\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(MenuWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"ufWWE5KPH\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"cbO3kYsA4\",layoutId:\"cbO3kYsA4\",style:{height:\"100%\"},variant:\"rSGvLXcZo\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,width:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,y:(componentViewport?.y||0)+38,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tix4tg-container hidden-90y7my hidden-e820nr\",nodeId:\"SmGM12A7c\",scopeId:\"eyuJxtwDM\",children:/*#__PURE__*/_jsx(Nav,{height:\"100%\",id:\"SmGM12A7c\",layoutId:\"SmGM12A7c\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m7rs53\",\"data-framer-name\":\"back to list\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wgl70a\",\"data-framer-name\":\"Frame 75\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1j503o1\",\"data-framer-name\":\"arrow-left\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 12.5H5\" stroke=\"#BABABD\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M12 19.5L5 12.5L12 5.5\" stroke=\"#2E2D38\" stroke-opacity=\"0.27\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M12 19.5L5 12.5L12 5.5\" stroke=\"#BABABD\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"57px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vr1y8kAOn\"},motionChild:true,nodeId:\"Bhhcx9s75\",openInNewTab:false,scopeId:\"eyuJxtwDM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1u1gypm\",\"data-styles-preset\":\"XJdfdTTeG\",children:\"Back to all mentors\"})})})}),className:\"framer-1n6gaov\",\"data-framer-name\":\"Back to all mentors\",fonts:[\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l5b4wh\",\"data-framer-name\":\"mentor profile\",id:\"1l5b4wh\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-59g2t1\",\"data-framer-name\":\"Frame 74\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t4hh7r\",\"data-framer-name\":\"Frame 13\",style:{rotate:-1},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1f3gm3m\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:31,intrinsicWidth:13,style:{rotate:1},svg:'<svg width=\"13\" height=\"31\" viewBox=\"0 0 13 31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.5406 27.1761L0.414946 24.2674L0.430296 21.204L0.445646 18.1406L2.65584 18.0289L3.26239 17.9964L4.45188 17.9878L4.72475 17.9904L5.18217 18.0043L5.66713 18.047L6.46827 18.1791L6.51908 21.0904L6.56986 23.9992L9.51848 23.9478L9.96324 23.94L10.7326 23.9436L11.0941 23.9495L11.6697 23.976L11.9305 23.9933L12.278 24.0433L12.3495 24.0566L12.4409 24.0867L12.5008 24.1392L12.5118 24.2047L12.5279 24.4187L12.5434 24.7472L12.5443 24.7983L12.5468 25.0807L12.5473 25.2487L12.5506 25.721L12.5525 25.9742L12.5556 26.5732L12.5603 27.5471L12.5733 29.9818L9.61979 30.0333L6.66379 30.0849L3.5406 27.1761ZM0.39647 12.507L0.384015 12.4975L0.360455 12.4151L0.347278 12.3642L0.324943 12.2112L0.299853 12.0412L0.256445 11.5257L0.236774 11.2436L0.202593 10.5527L0.170124 9.39668L0.118713 6.45131L3.07922 3.41929L6.04223 0.38965L9.04737 0.337195L12.055 0.284697L12.1081 3.32743L12.1612 6.37016L9.21994 6.4215L6.27868 6.47284L6.26193 9.45592L6.24518 12.439L3.40831 12.5567L3.01779 12.5732L2.29296 12.5883L1.94404 12.5944L1.3516 12.5902L1.07873 12.5876L0.687481 12.5628L0.60381 12.5569L0.487982 12.5395L0.438669 12.5306\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-size\":\"16.5px\",\"--framer-font-weight\":\"900\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"radial-gradient(72.4412% 93.3476% at 53.09550000000001% 49.5645%, rgb(186, 123, 240) 0%, rgb(153, 107, 236) 45%, rgb(80, 70, 228) 100%)\"},children:\"get better today\"})})}),className:\"framer-jvetvd\",\"data-framer-name\":\"get better today\",fonts:[\"Inter-Black\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-evxku5\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:13,style:{rotate:1},svg:'<svg width=\"13\" height=\"30\" viewBox=\"0 0 13 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.18377 3.01627L12.3094 5.92502L12.2941 8.98842L12.2787 12.0518L10.0685 12.1635L9.46198 12.196L8.27249 12.2045L7.99961 12.202L7.54219 12.1881L7.05724 12.1454L6.2561 12.0133L6.20528 9.10201L6.15451 6.19315L3.20588 6.24462L2.76113 6.25239L1.99173 6.24877L1.63031 6.24291L1.05469 6.21643L0.793851 6.19907L0.446408 6.14913L0.374896 6.13577L0.283426 6.10571L0.223521 6.05319L0.212542 5.98764L0.196517 5.77365L0.180954 5.4452L0.180062 5.39408L0.177589 5.11167L0.177117 4.94367L0.173785 4.47135L0.171826 4.21816L0.168745 3.61922L0.164037 2.64533L0.151033 0.210628L3.10458 0.159074L6.06057 0.107477L9.18377 3.01627ZM12.3279 17.6854L12.3404 17.6949L12.3639 17.7773L12.3771 17.8282L12.3994 17.9812L12.4245 18.1512L12.4679 18.6667L12.4876 18.9488L12.5218 19.6397L12.5542 20.7957L12.6057 23.7411L9.64514 26.7731L6.68214 29.8027L3.677 29.8552L0.669395 29.9077L0.616284 26.865L0.563173 23.8222L3.50443 23.7709L6.44568 23.7195L6.46244 20.7365L6.47919 17.7534L9.31605 17.6357L9.70658 17.6191L10.4314 17.604L10.7803 17.598L11.3728 17.6022L11.6456 17.6048L12.0369 17.6296L12.1206 17.6354L12.2364 17.6529L12.2857 17.6618\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11hbq44\",\"data-border\":true,\"data-framer-name\":\"Frame 73\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i5da5i\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-go9nt6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-x1ycc8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ooQFpTqrN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+158+120+0+50+0+0+0+0+0+0+0),sizes:\"125px\",...toResponsiveImage(ontv84LYK)}},Q69Tft3vO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+133+120+0+24+0+0+0+0+0+0+0),sizes:\"125px\",...toResponsiveImage(ontv84LYK)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+236+120+0+50+0+0+0+0+0+0+0),sizes:\"125px\",...toResponsiveImage(ontv84LYK)},className:\"framer-qne4pq\",\"data-framer-name\":\"Ellipse 100\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ga82tf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"24px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-family\":'\"Inter-Black\", \"Inter\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"rgba(46, 45, 56, 1)\",\"--framer-text-transform\":\"uppercase\"},children:\"Amelia Hansen\"})})}),className:\"framer-1jxinja\",\"data-framer-name\":\"Amelia Hansen\",fonts:[\"Inter-Black\"],id:elementId1,ref:ref1,text:PNkrWUGro,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18unqfi\",\"data-framer-name\":\"Frame 77\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15ktgx0\",\"data-framer-name\":\"Frame 76\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13f2pe5\",\"data-framer-name\":\"Frame 63\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-gpmhew\",\"data-framer-name\":\"globe\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_124_1352)\">\\n<path d=\"M7.99992 14.6663C11.6818 14.6663 14.6666 11.6816 14.6666 7.99967C14.6666 4.31778 11.6818 1.33301 7.99992 1.33301C4.31802 1.33301 1.33325 4.31778 1.33325 7.99967C1.33325 11.6816 4.31802 14.6663 7.99992 14.6663Z\" stroke=\"#7421FC\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M1.33325 8H14.6666\" stroke=\"#7421FC\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.99992 1.33301C9.66744 3.15858 10.6151 5.5277 10.6666 7.99967C10.6151 10.4717 9.66744 12.8408 7.99992 14.6663C6.3324 12.8408 5.38475 10.4717 5.33325 7.99967C5.38475 5.5277 6.3324 3.15858 7.99992 1.33301Z\" stroke=\"#7421FC\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_124_1352\">\\n<rect width=\"16\" height=\"16\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.5px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(46, 45, 55)\"},children:\"Egypt\"})}),className:\"framer-hbchfn\",\"data-framer-name\":\"Product Designer\",fonts:[\"Inter\"],text:YqvG9Fmts,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f14192\",\"data-framer-name\":\"Frame 62\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-sczv44\",\"data-framer-name\":\"briefcase\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 13.333 4.667 L 2.667 4.667 C 1.93 4.667 1.333 5.264 1.333 6 L 1.333 12.667 C 1.333 13.403 1.93 14 2.667 14 L 13.333 14 C 14.07 14 14.667 13.403 14.667 12.667 L 14.667 6 C 14.667 5.264 14.07 4.667 13.333 4.667 Z\" fill=\"transparent\" stroke=\"rgb(116,33,252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 10.667 14 L 10.667 3.333 C 10.667 2.98 10.526 2.641 10.276 2.391 C 10.026 2.14 9.687 2 9.333 2 L 6.667 2 C 6.313 2 5.974 2.14 5.724 2.391 C 5.474 2.641 5.333 2.98 5.333 3.333 L 5.333 14\" fill=\"transparent\" stroke=\"rgb(116,33,252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10380472659,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"12.5px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(46, 45, 55)\"},children:[\"CRM & Lifecycle manager\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-e869qy\",\"data-framer-name\":\"Product Designer\",fonts:[\"Inter\"],text:pjHYi1pRv,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:dQUvcY7VC,motionChild:true,nodeId:\"b3hxQ4278\",scopeId:\"eyuJxtwDM\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-f67m40 framer-gphmau\",\"data-framer-name\":\"linkedin\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mexgi3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wEkBIFbxS\",scopeId:\"eyuJxtwDM\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(116, 33, 252)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"linkedin\",id:\"wEkBIFbxS\",layoutId:\"wEkBIFbxS\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.5px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(46, 45, 55)\"},children:\"Connect with me\"})}),className:\"framer-m7a9z4\",\"data-framer-name\":\"Product Designer\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pbke8j\",\"data-framer-name\":\"Frame 67\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"9.5px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"9.5px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(46, 45, 56, 1)\"},children:\"Areas of expertise\"})})}),className:\"framer-1stx3tu\",\"data-framer-name\":\"Product Designer\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-144nchw\",\"data-framer-name\":\"Frame 66\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6z4cvo\",\"data-framer-name\":\"Frame 64\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"9.5px\",\"--framer-text-color\":\"rgb(46, 45, 56)\"},children:\"CRM\"})}),className:\"framer-1ybhrd0\",\"data-framer-name\":\"Marketing\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r3sdan\",\"data-framer-name\":\"Frame 65\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"9.5px\",\"--framer-text-color\":\"rgb(46, 45, 56)\"},children:\"Innovation\"})}),className:\"framer-1as7lyc\",\"data-framer-name\":\"CRM\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18xi38d\",\"data-framer-name\":\"Frame 66\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"9.5px\",\"--framer-text-color\":\"rgb(46, 45, 56)\"},children:\"Consultancy\"})}),className:\"framer-1fp31nd\",\"data-framer-name\":\"BLA BLA BLA\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:Skmvuvscx,implicitPathVariables:undefined},{href:Skmvuvscx,implicitPathVariables:undefined},{href:Skmvuvscx,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ooQFpTqrN:{y:(componentViewport?.y||0)+0+158+120+0+50+0+0+0+0+123.2},Q69Tft3vO:{y:(componentViewport?.y||0)+0+133+120+0+24+0+0+0+0+372.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+0+236+120+0+50+0+0+0+0+123.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nt8t1e-container\",nodeId:\"ppW3QkW9c\",scopeId:\"eyuJxtwDM\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ooQFpTqrN:{olIRUtSzj:resolvedLinks[1]},Q69Tft3vO:{olIRUtSzj:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{hbojqEk2Y:\"book  a session\",height:\"100%\",id:\"ppW3QkW9c\",layoutId:\"ppW3QkW9c\",olIRUtSzj:resolvedLinks[0],variant:\"bZbgY3iC1\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1iup2uq\",\"data-framer-name\":\"Line 5\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:855,svg:'<svg width=\"855\" height=\"3\" viewBox=\"-1 -1 855 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.5\" x2=\"853\" y2=\"0.5\" stroke=\"black\" stroke-opacity=\"0.1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nnrp2c\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-family\":'\"Inter-Black\", \"Inter\", sans-serif',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"rgba(46, 45, 56, 1)\",\"--framer-text-transform\":\"uppercase\"},children:\"overview\"})})}),className:\"framer-3t0gym\",\"data-framer-name\":\"overview\",fonts:[\"Inter-Black\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"rgba(46, 45, 56, 0.3)\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Ce8ksKVKH\",pathVariables:{vhOdyMch8},webPageId:\"eyuJxtwDM\"},motionChild:true,nodeId:\"qw2d4eTgo\",openInNewTab:false,scopeId:\"eyuJxtwDM\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1u1gypm\",\"data-styles-preset\":\"XJdfdTTeG\",children:\"reviews\"})})})}),className:\"framer-1qpmao9\",\"data-framer-name\":\"reviews\",fonts:[\"Inter-Black\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vmnnxy\",\"data-framer-name\":\"Line 6\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:855,svg:'<svg width=\"855\" height=\"3\" viewBox=\"-1 -1 855 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.5\" x2=\"853\" y2=\"0.5\" stroke=\"black\" stroke-opacity=\"0.1\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:ukpd2hPXn,className:\"framer-cl51e8\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter-Medium\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1u1gypm\",code:\"framer-styles-preset-hjn36d\",h1:\"framer-styles-preset-7iuvze\",h2:\"framer-styles-preset-le055h\",h3:\"framer-styles-preset-1nq3y5o\",h4:\"framer-styles-preset-17jthwt\",h5:\"framer-styles-preset-1pfhy89\",h6:\"framer-styles-preset-qsrsec\",p:\"framer-styles-preset-1bqqhrv\"},verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pm7b8j\",\"data-framer-name\":\"overview & reviews\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vozw2t\",\"data-border\":true,\"data-framer-name\":\"Reviews\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5ipequ\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1psjehu\",\"data-framer-name\":\"Line 5\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:855,svg:'<svg width=\"855\" height=\"3\" viewBox=\"-1 -1 855 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.5\" x2=\"853\" y2=\"0.5\" stroke=\"black\" stroke-opacity=\"0.1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1em1udb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"rgba(46, 45, 56, 0.3)\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":hNGQmzPjv\",pathVariables:{vhOdyMch8},webPageId:\"eyuJxtwDM\"},motionChild:true,nodeId:\"a9m41LOvy\",openInNewTab:false,scopeId:\"eyuJxtwDM\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1u1gypm\",\"data-styles-preset\":\"XJdfdTTeG\",children:\"overview\"})})})}),className:\"framer-67g6x1\",\"data-framer-name\":\"overview\",fonts:[\"Inter-Black\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"rgb(46, 45, 56)\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{vhOdyMch8:\"manuel-s\\xe1nchez-copy\"},unresolvedPathSlugs:{vhOdyMch8:{collectionId:\"tNpUI24SE\",collectionItemId:\"vqMhFzL0L\"}},webPageId:\"eyuJxtwDM\"},motionChild:true,nodeId:\"Ce8ksKVKH\",openInNewTab:false,scopeId:\"eyuJxtwDM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1u1gypm\",\"data-styles-preset\":\"XJdfdTTeG\",children:\"reviews\"})})})}),className:\"framer-xwup3j\",\"data-framer-name\":\"reviews\",fonts:[\"Inter-Black\"],id:elementId2,ref:ref3,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xpsjeg\",\"data-framer-name\":\"Line 6\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:855,svg:'<svg width=\"855\" height=\"3\" viewBox=\"-1 -1 855 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.5\" x2=\"853\" y2=\"0.5\" stroke=\"black\" stroke-opacity=\"0.1\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gzmfz9-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"s9RKySoNM\",scopeId:\"eyuJxtwDM\",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-abe7e060-4162-49ec-8dac-fcee5c08c50f\"></div>',id:\"s9RKySoNM\",layoutId:\"s9RKySoNM\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ooQFpTqrN:{y:(componentViewport?.y||0)+0+1387.6},Q69Tft3vO:{y:(componentViewport?.y||0)+0+1559.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:424,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1465.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16kz4g9-container\",nodeId:\"TW9XG01Gb\",scopeId:\"eyuJxtwDM\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ooQFpTqrN:{variant:\"awgOwB2BY\"},Q69Tft3vO:{variant:\"NTDAW7rUP\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"TW9XG01Gb\",layoutId:\"TW9XG01Gb\",style:{width:\"100%\"},variant:\"CdXw_aTSs\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7vecO.framer-gphmau, .framer-7vecO .framer-gphmau { display: block; }\",\".framer-7vecO.framer-12gagbx { align-content: center; align-items: center; background-color: #f4f4f4; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-7vecO .framer-1njmbpy-container { flex: none; height: 64px; position: relative; width: 100%; }\",\".framer-7vecO .framer-pdivmr-container { flex: none; height: 56px; left: 50%; position: fixed; top: 36px; transform: translateX(-50%); width: auto; z-index: 10; }\",\".framer-7vecO .framer-1tix4tg-container { flex: none; height: auto; left: 50%; position: absolute; top: 38px; transform: translateX(-50%); width: 90%; z-index: 9; }\",\".framer-7vecO .framer-1m7rs53 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 854px; overflow: hidden; padding: 179px 0px 0px 0px; position: relative; width: 90%; }\",\".framer-7vecO .framer-wgl70a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-7vecO .framer-1j503o1 { flex: none; height: 25px; position: relative; width: 24px; }\",\".framer-7vecO .framer-1n6gaov, .framer-7vecO .framer-jvetvd, .framer-7vecO .framer-1jxinja, .framer-7vecO .framer-hbchfn, .framer-7vecO .framer-e869qy, .framer-7vecO .framer-m7a9z4, .framer-7vecO .framer-1ybhrd0, .framer-7vecO .framer-1as7lyc, .framer-7vecO .framer-1fp31nd, .framer-7vecO .framer-3t0gym, .framer-7vecO .framer-1qpmao9, .framer-7vecO .framer-67g6x1, .framer-7vecO .framer-xwup3j { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-7vecO .framer-1l5b4wh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 854px; overflow: hidden; padding: 120px 0px 40px 0px; position: relative; width: 90%; }\",\".framer-7vecO .framer-59g2t1 { align-content: flex-end; align-items: flex-end; background: linear-gradient(13.882475609903551deg, #4523a7 0%, rgb(27, 14, 65) 100%); border-bottom-left-radius: 19px; border-bottom-right-radius: 19px; border-top-left-radius: 19px; border-top-right-radius: 19px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 156px; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 26px; position: absolute; top: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-7vecO .framer-1t4hh7r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-7vecO .framer-1f3gm3m { flex: none; height: 31px; position: relative; width: 13px; }\",\".framer-7vecO .framer-evxku5 { flex: none; height: 30px; position: relative; width: 13px; }\",\".framer-7vecO .framer-11hbq44 { --border-bottom-width: 1px; --border-color: rgba(110, 51, 208, 0.25); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(17px); align-content: center; align-items: center; backdrop-filter: blur(17px); background-color: rgba(255, 255, 255, 0.63); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 50px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-7vecO .framer-1i5da5i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7vecO .framer-go9nt6 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7vecO .framer-x1ycc8 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-7vecO .framer-qne4pq { -webkit-backdrop-filter: blur(12px); aspect-ratio: 1 / 1; backdrop-filter: blur(12px); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 125px); position: relative; width: 125px; }\",\".framer-7vecO .framer-ga82tf { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-7vecO .framer-18unqfi { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 200px; }\",\".framer-7vecO .framer-15ktgx0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-7vecO .framer-13f2pe5, .framer-7vecO .framer-1f14192 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-7vecO .framer-gpmhew, .framer-7vecO .framer-sczv44, .framer-7vecO .framer-mexgi3-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-7vecO .framer-f67m40 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-7vecO .framer-pbke8j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7vecO .framer-1stx3tu { --framer-paragraph-spacing: 0px; flex: none; height: 17px; position: relative; white-space: pre-wrap; width: 200px; word-break: break-word; word-wrap: break-word; }\",\".framer-7vecO .framer-144nchw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7vecO .framer-6z4cvo, .framer-7vecO .framer-1r3sdan, .framer-7vecO .framer-18xi38d { align-content: center; align-items: center; background-color: #f3f3f3; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 10px 4px 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-7vecO .framer-1nt8t1e-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-7vecO .framer-1iup2uq, .framer-7vecO .framer-1vmnnxy, .framer-7vecO .framer-1psjehu, .framer-7vecO .framer-xpsjeg { flex: none; height: 3px; position: relative; width: 100%; }\",\".framer-7vecO .framer-nnrp2c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7vecO .framer-cl51e8 { --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-7vecO .framer-pm7b8j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-7vecO .framer-1vozw2t { --border-bottom-width: 1px; --border-color: rgba(110, 51, 208, 0.25); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(17px); align-content: center; align-items: center; backdrop-filter: blur(17px); background-color: rgba(255, 255, 255, 0.63); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 854px; overflow: hidden; padding: 48px 0px 48px 0px; position: relative; width: 90%; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-7vecO .framer-5ipequ { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7vecO .framer-1em1udb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 52px; position: relative; width: 100%; }\",\".framer-7vecO .framer-gzmfz9-container { flex: none; height: 400px; position: relative; width: 100%; }\",\".framer-7vecO .framer-16kz4g9-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-7vecO.framer-12gagbx, .framer-7vecO .framer-1m7rs53, .framer-7vecO .framer-wgl70a, .framer-7vecO .framer-1l5b4wh, .framer-7vecO .framer-59g2t1, .framer-7vecO .framer-1t4hh7r, .framer-7vecO .framer-11hbq44, .framer-7vecO .framer-1i5da5i, .framer-7vecO .framer-go9nt6, .framer-7vecO .framer-x1ycc8, .framer-7vecO .framer-ga82tf, .framer-7vecO .framer-18unqfi, .framer-7vecO .framer-15ktgx0, .framer-7vecO .framer-13f2pe5, .framer-7vecO .framer-1f14192, .framer-7vecO .framer-f67m40, .framer-7vecO .framer-pbke8j, .framer-7vecO .framer-144nchw, .framer-7vecO .framer-6z4cvo, .framer-7vecO .framer-1r3sdan, .framer-7vecO .framer-18xi38d, .framer-7vecO .framer-nnrp2c, .framer-7vecO .framer-pm7b8j, .framer-7vecO .framer-1vozw2t, .framer-7vecO .framer-5ipequ, .framer-7vecO .framer-1em1udb { gap: 0px; } .framer-7vecO.framer-12gagbx > *, .framer-7vecO .framer-59g2t1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-7vecO.framer-12gagbx > :first-child, .framer-7vecO .framer-1l5b4wh > :first-child, .framer-7vecO .framer-59g2t1 > :first-child, .framer-7vecO .framer-11hbq44 > :first-child, .framer-7vecO .framer-1i5da5i > :first-child, .framer-7vecO .framer-x1ycc8 > :first-child, .framer-7vecO .framer-ga82tf > :first-child, .framer-7vecO .framer-18unqfi > :first-child, .framer-7vecO .framer-15ktgx0 > :first-child, .framer-7vecO .framer-pbke8j > :first-child, .framer-7vecO .framer-pm7b8j > :first-child, .framer-7vecO .framer-1vozw2t > :first-child, .framer-7vecO .framer-5ipequ > :first-child { margin-top: 0px; } .framer-7vecO.framer-12gagbx > :last-child, .framer-7vecO .framer-1l5b4wh > :last-child, .framer-7vecO .framer-59g2t1 > :last-child, .framer-7vecO .framer-11hbq44 > :last-child, .framer-7vecO .framer-1i5da5i > :last-child, .framer-7vecO .framer-x1ycc8 > :last-child, .framer-7vecO .framer-ga82tf > :last-child, .framer-7vecO .framer-18unqfi > :last-child, .framer-7vecO .framer-15ktgx0 > :last-child, .framer-7vecO .framer-pbke8j > :last-child, .framer-7vecO .framer-pm7b8j > :last-child, .framer-7vecO .framer-1vozw2t > :last-child, .framer-7vecO .framer-5ipequ > :last-child { margin-bottom: 0px; } .framer-7vecO .framer-1m7rs53 > *, .framer-7vecO .framer-6z4cvo > *, .framer-7vecO .framer-1r3sdan > *, .framer-7vecO .framer-18xi38d > *, .framer-7vecO .framer-nnrp2c > *, .framer-7vecO .framer-1em1udb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-7vecO .framer-1m7rs53 > :first-child, .framer-7vecO .framer-wgl70a > :first-child, .framer-7vecO .framer-1t4hh7r > :first-child, .framer-7vecO .framer-go9nt6 > :first-child, .framer-7vecO .framer-13f2pe5 > :first-child, .framer-7vecO .framer-1f14192 > :first-child, .framer-7vecO .framer-f67m40 > :first-child, .framer-7vecO .framer-144nchw > :first-child, .framer-7vecO .framer-6z4cvo > :first-child, .framer-7vecO .framer-1r3sdan > :first-child, .framer-7vecO .framer-18xi38d > :first-child, .framer-7vecO .framer-nnrp2c > :first-child, .framer-7vecO .framer-1em1udb > :first-child { margin-left: 0px; } .framer-7vecO .framer-1m7rs53 > :last-child, .framer-7vecO .framer-wgl70a > :last-child, .framer-7vecO .framer-1t4hh7r > :last-child, .framer-7vecO .framer-go9nt6 > :last-child, .framer-7vecO .framer-13f2pe5 > :last-child, .framer-7vecO .framer-1f14192 > :last-child, .framer-7vecO .framer-f67m40 > :last-child, .framer-7vecO .framer-144nchw > :last-child, .framer-7vecO .framer-6z4cvo > :last-child, .framer-7vecO .framer-1r3sdan > :last-child, .framer-7vecO .framer-18xi38d > :last-child, .framer-7vecO .framer-nnrp2c > :last-child, .framer-7vecO .framer-1em1udb > :last-child { margin-right: 0px; } .framer-7vecO .framer-wgl70a > *, .framer-7vecO .framer-144nchw > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-7vecO .framer-1l5b4wh > *, .framer-7vecO .framer-x1ycc8 > *, .framer-7vecO .framer-ga82tf > *, .framer-7vecO .framer-15ktgx0 > *, .framer-7vecO .framer-pm7b8j > *, .framer-7vecO .framer-1vozw2t > *, .framer-7vecO .framer-5ipequ > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-7vecO .framer-1t4hh7r > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-7vecO .framer-11hbq44 > *, .framer-7vecO .framer-1i5da5i > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-7vecO .framer-go9nt6 > * { margin: 0px; margin-left: calc(37px / 2); margin-right: calc(37px / 2); } .framer-7vecO .framer-18unqfi > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-7vecO .framer-13f2pe5 > *, .framer-7vecO .framer-1f14192 > *, .framer-7vecO .framer-f67m40 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-7vecO .framer-pbke8j > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-7vecO[data-border=\"true\"]::after, .framer-7vecO [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-7vecO.framer-12gagbx { width: 810px; } .framer-7vecO .framer-1njmbpy-container { height: 68px; z-index: 10; } .framer-7vecO .framer-1m7rs53 { padding: 33px 0px 0px 0px; }}\",\"@media (max-width: 809px) { .framer-7vecO.framer-12gagbx { width: 390px; } .framer-7vecO .framer-1njmbpy-container { height: auto; z-index: 10; } .framer-7vecO .framer-1m7rs53 { align-content: flex-start; align-items: flex-start; flex-direction: column; padding: 12px 0px 0px 0px; } .framer-7vecO .framer-1j503o1 { order: 0; } .framer-7vecO .framer-1n6gaov { order: 1; } .framer-7vecO .framer-11hbq44 { padding: 24px; } .framer-7vecO .framer-go9nt6 { align-content: center; align-items: center; flex-direction: column; } .framer-7vecO .framer-x1ycc8 { align-self: unset; height: min-content; } .framer-7vecO .framer-ga82tf { flex: none; width: 100%; } .framer-7vecO .framer-gzmfz9-container { width: 95%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-7vecO .framer-1m7rs53, .framer-7vecO .framer-go9nt6 { gap: 0px; } .framer-7vecO .framer-1m7rs53 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-7vecO .framer-1m7rs53 > :first-child, .framer-7vecO .framer-go9nt6 > :first-child { margin-top: 0px; } .framer-7vecO .framer-1m7rs53 > :last-child, .framer-7vecO .framer-go9nt6 > :last-child { margin-bottom: 0px; } .framer-7vecO .framer-go9nt6 > * { margin: 0px; margin-bottom: calc(37px / 2); margin-top: calc(37px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2397.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ooQFpTqrN\":{\"layout\":[\"fixed\",\"auto\"]},\"Q69Tft3vO\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"hNGQmzPjv\":{\"pattern\":\":hNGQmzPjv\",\"name\":\"overview\"},\"Dp7wxb47x\":{\"pattern\":\":Dp7wxb47x\",\"name\":\"name\"},\"Ce8ksKVKH\":{\"pattern\":\":Ce8ksKVKH\",\"name\":\"reviews\"}}\n * @framerResponsiveScreen\n */const FramereyuJxtwDM=withCSS(Component,css,\"framer-7vecO\");export default FramereyuJxtwDM;FramereyuJxtwDM.displayName=\"Mentors list\";FramereyuJxtwDM.defaultProps={height:2397.5,width:1200};addFonts(FramereyuJxtwDM,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...TopbarFonts,...MenuFonts,...NavFonts,...FeatherFonts,...ButtonPrimaryFonts,...EmbedFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereyuJxtwDM\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"hNGQmzPjv\\\":{\\\"pattern\\\":\\\":hNGQmzPjv\\\",\\\"name\\\":\\\"overview\\\"},\\\"Dp7wxb47x\\\":{\\\"pattern\\\":\\\":Dp7wxb47x\\\",\\\"name\\\":\\\"name\\\"},\\\"Ce8ksKVKH\\\":{\\\"pattern\\\":\\\":Ce8ksKVKH\\\",\\\"name\\\":\\\"reviews\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"2397.5\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ooQFpTqrN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Q69Tft3vO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"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", "TopbarFonts", "getFonts", "s0JnEWO2J_default", "MenuFonts", "yhz9K7cg4_default", "MenuWithVariantAppearEffect", "withVariantAppearEffect", "NavFonts", "SECUPohuz_default", "FeatherFonts", "Icon", "ButtonPrimaryFonts", "esFHTJ3Oz_default", "EmbedFonts", "Embed", "FooterFonts", "gxlpDrPIo_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "toResponsiveImage", "value", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "tNpUI24SE_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "ontv84LYK", "PNkrWUGro", "YqvG9Fmts", "pjHYi1pRv", "dQUvcY7VC", "Skmvuvscx", "vhOdyMch8", "ukpd2hPXn", "restProps", "ue", "metadata", "robotsTag", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "ref1", "elementId", "useRouteElementId", "ref2", "elementId1", "router", "useRouter", "elementId2", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "SVG", "RichText2", "x", "Link", "getLoadingLazyAtYPosition", "Image2", "ResolveLinks", "resolvedLinks", "css", "FramereyuJxtwDM", "withCSS", "eyuJxtwDM_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
