{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/6Yp9bi7FxGmGfcVoyhJH/mA04sZcOvp9pRhnZlheM/BjHsM4Tqa.js", "ssg:https://framerusercontent.com/modules/njNgKFSJlVnxbgxJEMU9/XThUnmTvdzLK98P2Hjw9/cr8mSAta2.js", "ssg:https://framerusercontent.com/modules/u8sDk3ciiUx9HnK70KW3/RJ8qSVYmiCr00uDarIm1/TextClip.js", "ssg:https://framerusercontent.com/modules/n6HUwLUuuOPLidwjnEhT/5lrdrq2RPVJEpytQ6PmT/ShareLink.js", "ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/56ME8Y1MK6gsagNtWsx0/TnQcrk9koPhqAkj5m6OC/TableofContent.js", "ssg:https://framerusercontent.com/modules/zL8JOwQucj9EmNlnaBlh/nduRPnCDvOtGCtZlRB1f/bjQZ2sevK.js", "ssg:https://framerusercontent.com/modules/641wnjVBpR58AIGQgDj5/uCGqEekeJ7lOlPUuJvX0/o62_owueK.js", "ssg:https://framerusercontent.com/modules/XtUmPxpzylpbQhIPeq8k/RDDC7UcfCoQj0bkxFUdz/PDxM6hxKc.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "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 (ff86393)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";const YouTubeFonts=getFonts(YouTube);const EmbedFonts=getFonts(Embed);const cycleOrder=[\"B0tLqoi88\",\"sgfXeSVhc\",\"R7qNqAc5G\",\"tUm_tEV3y\",\"s6Xbks1Iu\",\"x9EV_vD2G\",\"hfvUIxtXM\",\"LB6FvtdiU\",\"rS9NygYvI\",\"wXb1QKSCl\",\"cYqz2X8L6\",\"uh03gkLVL\"];const serializationHash=\"framer-ceC1M\";const variantClassNames={B0tLqoi88:\"framer-v-18ntvat\",cYqz2X8L6:\"framer-v-12mv2dj\",hfvUIxtXM:\"framer-v-r2fliv\",LB6FvtdiU:\"framer-v-lns70e\",R7qNqAc5G:\"framer-v-se8j6o\",rS9NygYvI:\"framer-v-srvjq2\",s6Xbks1Iu:\"framer-v-rcjrxq\",sgfXeSVhc:\"framer-v-1qri75l\",tUm_tEV3y:\"framer-v-273ujw\",uh03gkLVL:\"framer-v-gv81yw\",wXb1QKSCl:\"framer-v-1dgs1hg\",x9EV_vD2G:\"framer-v-56rs7v\"};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={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Landscape/Desktop L\":\"R7qNqAc5G\",\"Landscape/Desktop Super Ultra Wide\":\"hfvUIxtXM\",\"Landscape/Desktop Ultra Wide\":\"s6Xbks1Iu\",\"Landscape/Desktop\":\"B0tLqoi88\",\"Landscape/Phone\":\"cYqz2X8L6\",\"Landscape/Tablet\":\"rS9NygYvI\",\"Potrait/Desktop L\":\"tUm_tEV3y\",\"Potrait/Desktop Super Ultra Wide\":\"LB6FvtdiU\",\"Potrait/Desktop Ultra Wide\":\"x9EV_vD2G\",\"Potrait/Desktop\":\"sgfXeSVhc\",\"Potrait/Phone\":\"uh03gkLVL\",\"Potrait/Tablet\":\"wXb1QKSCl\"};const getProps=({descriptionVideo,height,id,linkVideo,titleVideo,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,nSfXbrVDa:(_ref=linkVideo!==null&&linkVideo!==void 0?linkVideo:props.nSfXbrVDa)!==null&&_ref!==void 0?_ref:\"https://www.youtube.com/embed/gthZv1lPt5Y?si=65CQixqrhDBk60Pe\",Rf_CS5xSQ:(_ref1=titleVideo!==null&&titleVideo!==void 0?titleVideo:props.Rf_CS5xSQ)!==null&&_ref1!==void 0?_ref1:\"Missed PortFest 2024?\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"B0tLqoi88\",XCM0b5ziI:(_ref3=descriptionVideo!==null&&descriptionVideo!==void 0?descriptionVideo:props.XCM0b5ziI)!==null&&_ref3!==void 0?_ref3:\"No worries! Watch the full replay of the event here.\"};};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,Rf_CS5xSQ,XCM0b5ziI,nSfXbrVDa,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"B0tLqoi88\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"sgfXeSVhc\",\"tUm_tEV3y\",\"x9EV_vD2G\",\"LB6FvtdiU\",\"wXb1QKSCl\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"sgfXeSVhc\",\"tUm_tEV3y\",\"x9EV_vD2G\",\"LB6FvtdiU\",\"wXb1QKSCl\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-18ntvat\",className,classNames),\"data-framer-name\":\"Landscape/Desktop\",layoutDependency:layoutDependency,layoutId:\"B0tLqoi88\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(235, 241, 254)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({cYqz2X8L6:{\"data-framer-name\":\"Landscape/Phone\"},hfvUIxtXM:{\"data-framer-name\":\"Landscape/Desktop Super Ultra Wide\"},LB6FvtdiU:{\"data-framer-name\":\"Potrait/Desktop Super Ultra Wide\"},R7qNqAc5G:{\"data-framer-name\":\"Landscape/Desktop L\"},rS9NygYvI:{\"data-framer-name\":\"Landscape/Tablet\"},s6Xbks1Iu:{\"data-framer-name\":\"Landscape/Desktop Ultra Wide\"},sgfXeSVhc:{\"data-framer-name\":\"Potrait/Desktop\"},tUm_tEV3y:{\"data-framer-name\":\"Potrait/Desktop L\"},uh03gkLVL:{\"data-framer-name\":\"Potrait/Phone\"},wXb1QKSCl:{\"data-framer-name\":\"Potrait/Tablet\"},x9EV_vD2G:{\"data-framer-name\":\"Potrait/Desktop Ultra Wide\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1utamea\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"HKp46eFsZ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-yqdzwm\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"tNHMUb49l\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7belq2\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"gWjuucHYf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(23, 42, 65))\"},children:[\"Product Marketing \",/*#__PURE__*/_jsx(motion.br,{}),\"Video Four Our \",/*#__PURE__*/_jsx(motion.br,{}),\"Embedded Email Inbox\"]})}),className:\"framer-qv51ux\",\"data-framer-name\":\"Title\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"yydSqyEnx\",style:{\"--extracted-r6o4lv\":\"rgb(23, 42, 65)\",\"--framer-paragraph-spacing\":\"0px\"},text:Rf_CS5xSQ,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({hfvUIxtXM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(23, 42, 65))\"},children:\"Missed PortFest 2024?\"})})},LB6FvtdiU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(23, 42, 65))\"},children:\"Missed PortFest 2024?\"})})},R7qNqAc5G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(23, 42, 65))\"},children:\"Missed PortFest 2024?\"})})},s6Xbks1Iu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(23, 42, 65))\"},children:\"Missed PortFest 2024?\"})})},tUm_tEV3y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(23, 42, 65))\"},children:\"Missed PortFest 2024?\"})})},x9EV_vD2G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(23, 42, 65))\"},children:\"Missed PortFest 2024?\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(78, 101, 127))\"},children:\"Quick example of product marketing output based on customer feedback.\"})}),className:\"framer-2ek5qz\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KQLnUzZf7\",style:{\"--extracted-r6o4lv\":\"rgb(78, 101, 127)\",\"--framer-paragraph-spacing\":\"0px\"},text:XCM0b5ziI,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cYqz2X8L6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(78, 101, 127))\"},children:\"No worries! Watch the full replay of the event here.\"})})},hfvUIxtXM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(78, 101, 127))\"},children:\"No worries! Watch the full replay of the event here.\"})})},LB6FvtdiU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(78, 101, 127))\"},children:\"No worries! Watch the full replay of the event here.\"})})},R7qNqAc5G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(78, 101, 127))\"},children:\"No worries! Watch the full replay of the event here.\"})})},s6Xbks1Iu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(78, 101, 127))\"},children:\"No worries! Watch the full replay of the event here.\"})})},tUm_tEV3y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(78, 101, 127))\"},children:\"No worries! Watch the full replay of the event here.\"})})},uh03gkLVL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(78, 101, 127))\"},children:\"No worries! Watch the full replay of the event here.\"})})},x9EV_vD2G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(78, 101, 127))\"},children:\"No worries! Watch the full replay of the event here.\"})})}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wy55w1\",\"data-framer-name\":\"Video\",layoutDependency:layoutDependency,layoutId:\"hhIYCFCX_\",style:{backgroundColor:\"rgb(113, 159, 249)\",borderBottomLeftRadius:7.72,borderBottomRightRadius:7.72,borderTopLeftRadius:7.72,borderTopRightRadius:7.72},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iitr91-container\",layoutDependency:layoutDependency,layoutId:\"VunAMeofu-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"VunAMeofu\",isMixedBorderRadius:false,isRed:true,layoutId:\"VunAMeofu\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:nSfXbrVDa,width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10cai6n-container\",layoutDependency:layoutDependency,layoutId:\"ZcU5qOj4b-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe \\n    width=\"100%\" \\n    height=\"100%\" \\n    src=\"https://www.youtube.com/embed/VqKf11zhDLE?\" \\n    title=\"YouTube video player\" \\n    frameborder=\"0\" \\n    allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" \\n    referrerpolicy=\"strict-origin-when-cross-origin\" \\n    allowfullscreen>\\n</iframe>',id:\"ZcU5qOj4b\",layoutId:\"ZcU5qOj4b\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ceC1M.framer-ux0wlu, .framer-ceC1M .framer-ux0wlu { display: block; }\",\".framer-ceC1M.framer-18ntvat { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 25px 16px 25px 16px; position: relative; width: 610px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ceC1M .framer-1utamea { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ceC1M .framer-yqdzwm { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ceC1M .framer-7belq2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ceC1M .framer-qv51ux, .framer-ceC1M .framer-2ek5qz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ceC1M .framer-wy55w1 { align-content: center; align-items: center; aspect-ratio: 1.7744360902255638 / 1; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 156px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ceC1M .framer-1iitr91-container, .framer-ceC1M .framer-10cai6n-container { flex: none; height: 100%; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ceC1M.framer-18ntvat, .framer-ceC1M .framer-1utamea, .framer-ceC1M .framer-yqdzwm, .framer-ceC1M .framer-7belq2, .framer-ceC1M .framer-wy55w1 { gap: 0px; } .framer-ceC1M.framer-18ntvat > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ceC1M.framer-18ntvat > :first-child, .framer-ceC1M .framer-yqdzwm > :first-child, .framer-ceC1M .framer-7belq2 > :first-child, .framer-ceC1M .framer-wy55w1 > :first-child { margin-top: 0px; } .framer-ceC1M.framer-18ntvat > :last-child, .framer-ceC1M .framer-yqdzwm > :last-child, .framer-ceC1M .framer-7belq2 > :last-child, .framer-ceC1M .framer-wy55w1 > :last-child { margin-bottom: 0px; } .framer-ceC1M .framer-1utamea > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-ceC1M .framer-1utamea > :first-child { margin-left: 0px; } .framer-ceC1M .framer-1utamea > :last-child { margin-right: 0px; } .framer-ceC1M .framer-yqdzwm > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ceC1M .framer-7belq2 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-ceC1M .framer-wy55w1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-ceC1M.framer-v-1qri75l .framer-1utamea, .framer-ceC1M.framer-v-273ujw .framer-1utamea, .framer-ceC1M.framer-v-56rs7v .framer-1utamea, .framer-ceC1M.framer-v-lns70e .framer-1utamea, .framer-ceC1M.framer-v-1dgs1hg .framer-1utamea, .framer-ceC1M.framer-v-12mv2dj .framer-1utamea, .framer-ceC1M.framer-v-gv81yw .framer-1utamea { flex-direction: column; }\",\".framer-ceC1M.framer-v-1qri75l .framer-yqdzwm, .framer-ceC1M.framer-v-273ujw .framer-yqdzwm, .framer-ceC1M.framer-v-56rs7v .framer-yqdzwm, .framer-ceC1M.framer-v-lns70e .framer-yqdzwm, .framer-ceC1M.framer-v-1dgs1hg .framer-yqdzwm, .framer-ceC1M.framer-v-12mv2dj .framer-yqdzwm, .framer-ceC1M.framer-v-gv81yw .framer-yqdzwm { flex: none; width: 100%; }\",\".framer-ceC1M.framer-v-1qri75l .framer-wy55w1 { flex: none; height: var(--framer-aspect-ratio-supported, 326px); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ceC1M.framer-v-1qri75l .framer-1utamea { gap: 0px; } .framer-ceC1M.framer-v-1qri75l .framer-1utamea > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ceC1M.framer-v-1qri75l .framer-1utamea > :first-child { margin-top: 0px; } .framer-ceC1M.framer-v-1qri75l .framer-1utamea > :last-child { margin-bottom: 0px; } }\",\".framer-ceC1M.framer-v-se8j6o.framer-18ntvat, .framer-ceC1M.framer-v-273ujw.framer-18ntvat { width: 745px; }\",\".framer-ceC1M.framer-v-se8j6o .framer-wy55w1 { height: var(--framer-aspect-ratio-supported, 194px); }\",\".framer-ceC1M.framer-v-273ujw .framer-wy55w1 { flex: none; height: var(--framer-aspect-ratio-supported, 402px); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ceC1M.framer-v-273ujw .framer-1utamea { gap: 0px; } .framer-ceC1M.framer-v-273ujw .framer-1utamea > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ceC1M.framer-v-273ujw .framer-1utamea > :first-child { margin-top: 0px; } .framer-ceC1M.framer-v-273ujw .framer-1utamea > :last-child { margin-bottom: 0px; } }\",\".framer-ceC1M.framer-v-rcjrxq.framer-18ntvat, .framer-ceC1M.framer-v-56rs7v.framer-18ntvat { width: 925px; }\",\".framer-ceC1M.framer-v-rcjrxq .framer-wy55w1 { height: var(--framer-aspect-ratio-supported, 245px); }\",\".framer-ceC1M.framer-v-56rs7v .framer-wy55w1 { flex: none; height: var(--framer-aspect-ratio-supported, 504px); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ceC1M.framer-v-56rs7v .framer-1utamea { gap: 0px; } .framer-ceC1M.framer-v-56rs7v .framer-1utamea > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ceC1M.framer-v-56rs7v .framer-1utamea > :first-child { margin-top: 0px; } .framer-ceC1M.framer-v-56rs7v .framer-1utamea > :last-child { margin-bottom: 0px; } }\",\".framer-ceC1M.framer-v-r2fliv.framer-18ntvat, .framer-ceC1M.framer-v-lns70e.framer-18ntvat { width: 1425px; }\",\".framer-ceC1M.framer-v-r2fliv .framer-wy55w1 { height: var(--framer-aspect-ratio-supported, 386px); }\",\".framer-ceC1M.framer-v-lns70e .framer-wy55w1 { flex: none; height: var(--framer-aspect-ratio-supported, 785px); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ceC1M.framer-v-lns70e .framer-1utamea { gap: 0px; } .framer-ceC1M.framer-v-lns70e .framer-1utamea > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ceC1M.framer-v-lns70e .framer-1utamea > :first-child { margin-top: 0px; } .framer-ceC1M.framer-v-lns70e .framer-1utamea > :last-child { margin-bottom: 0px; } }\",\".framer-ceC1M.framer-v-srvjq2.framer-18ntvat, .framer-ceC1M.framer-v-1dgs1hg.framer-18ntvat { width: 505px; }\",\".framer-ceC1M.framer-v-srvjq2 .framer-wy55w1 { height: var(--framer-aspect-ratio-supported, 127px); }\",\".framer-ceC1M.framer-v-1dgs1hg .framer-wy55w1 { flex: none; height: var(--framer-aspect-ratio-supported, 267px); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ceC1M.framer-v-1dgs1hg .framer-1utamea { gap: 0px; } .framer-ceC1M.framer-v-1dgs1hg .framer-1utamea > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ceC1M.framer-v-1dgs1hg .framer-1utamea > :first-child { margin-top: 0px; } .framer-ceC1M.framer-v-1dgs1hg .framer-1utamea > :last-child { margin-bottom: 0px; } }\",\".framer-ceC1M.framer-v-12mv2dj.framer-18ntvat, .framer-ceC1M.framer-v-gv81yw.framer-18ntvat { width: 326px; }\",\".framer-ceC1M.framer-v-12mv2dj .framer-wy55w1, .framer-ceC1M.framer-v-gv81yw .framer-wy55w1 { flex: none; height: var(--framer-aspect-ratio-supported, 166px); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ceC1M.framer-v-12mv2dj .framer-1utamea { gap: 0px; } .framer-ceC1M.framer-v-12mv2dj .framer-1utamea > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ceC1M.framer-v-12mv2dj .framer-1utamea > :first-child { margin-top: 0px; } .framer-ceC1M.framer-v-12mv2dj .framer-1utamea > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ceC1M.framer-v-gv81yw .framer-1utamea { gap: 0px; } .framer-ceC1M.framer-v-gv81yw .framer-1utamea > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ceC1M.framer-v-gv81yw .framer-1utamea > :first-child { margin-top: 0px; } .framer-ceC1M.framer-v-gv81yw .framer-1utamea > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 206\n * @framerIntrinsicWidth 610\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"sgfXeSVhc\":{\"layout\":[\"fixed\",\"auto\"]},\"R7qNqAc5G\":{\"layout\":[\"fixed\",\"auto\"]},\"tUm_tEV3y\":{\"layout\":[\"fixed\",\"auto\"]},\"s6Xbks1Iu\":{\"layout\":[\"fixed\",\"auto\"]},\"x9EV_vD2G\":{\"layout\":[\"fixed\",\"auto\"]},\"hfvUIxtXM\":{\"layout\":[\"fixed\",\"auto\"]},\"LB6FvtdiU\":{\"layout\":[\"fixed\",\"auto\"]},\"rS9NygYvI\":{\"layout\":[\"fixed\",\"auto\"]},\"wXb1QKSCl\":{\"layout\":[\"fixed\",\"auto\"]},\"cYqz2X8L6\":{\"layout\":[\"fixed\",\"auto\"]},\"uh03gkLVL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Rf_CS5xSQ\":\"titleVideo\",\"XCM0b5ziI\":\"descriptionVideo\",\"nSfXbrVDa\":\"linkVideo\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBjHsM4Tqa=withCSS(Component,css,\"framer-ceC1M\");export default FramerBjHsM4Tqa;FramerBjHsM4Tqa.displayName=\"Embed Video\";FramerBjHsM4Tqa.defaultProps={height:206,width:610};addPropertyControls(FramerBjHsM4Tqa,{variant:{options:[\"B0tLqoi88\",\"sgfXeSVhc\",\"R7qNqAc5G\",\"tUm_tEV3y\",\"s6Xbks1Iu\",\"x9EV_vD2G\",\"hfvUIxtXM\",\"LB6FvtdiU\",\"rS9NygYvI\",\"wXb1QKSCl\",\"cYqz2X8L6\",\"uh03gkLVL\"],optionTitles:[\"Landscape/Desktop\",\"Potrait/Desktop\",\"Landscape/Desktop L\",\"Potrait/Desktop L\",\"Landscape/Desktop Ultra Wide\",\"Potrait/Desktop Ultra Wide\",\"Landscape/Desktop Super Ultra Wide\",\"Potrait/Desktop Super Ultra Wide\",\"Landscape/Tablet\",\"Potrait/Tablet\",\"Landscape/Phone\",\"Potrait/Phone\"],title:\"Variant\",type:ControlType.Enum},Rf_CS5xSQ:{defaultValue:\"Missed PortFest 2024?\",title:\"Title Video\",type:ControlType.String},XCM0b5ziI:{defaultValue:\"No worries! Watch the full replay of the event here.\",title:\"Description Video\",type:ControlType.String},nSfXbrVDa:{defaultValue:\"https://www.youtube.com/embed/gthZv1lPt5Y?si=65CQixqrhDBk60Pe\",title:\"Link Video\",type:ControlType.String}});addFonts(FramerBjHsM4Tqa,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"}]},...YouTubeFonts,...EmbedFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBjHsM4Tqa\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"206\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"Rf_CS5xSQ\\\":\\\"titleVideo\\\",\\\"XCM0b5ziI\\\":\\\"descriptionVideo\\\",\\\"nSfXbrVDa\\\":\\\"linkVideo\\\"}\",\"framerIntrinsicWidth\":\"610\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sgfXeSVhc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"R7qNqAc5G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tUm_tEV3y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"s6Xbks1Iu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"x9EV_vD2G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hfvUIxtXM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LB6FvtdiU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rS9NygYvI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wXb1QKSCl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cYqz2X8L6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uh03gkLVL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BjHsM4Tqa.map", "// Generated by Framer (139b156)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import TextClip1 from\"https://framerusercontent.com/modules/u8sDk3ciiUx9HnK70KW3/RJ8qSVYmiCr00uDarIm1/TextClip.js\";import TextClip from\"https://framerusercontent.com/modules/jeRwDORBzdke390BPn1x/WTjITHejamkhoz8H0v9t/Test.js\";const TextClipFonts=getFonts(TextClip);const TextClip1Fonts=getFonts(TextClip1);const enabledGestures={obCzGImfe:{hover:true},rsLmJ794l:{hover:true},tdeOfQ7rp:{hover:true}};const cycleOrder=[\"obCzGImfe\",\"rsLmJ794l\",\"tdeOfQ7rp\",\"t_dyeuxCs\",\"w9MQQEiUG\",\"IdHrKvvbQ\"];const serializationHash=\"framer-eJZu9\";const variantClassNames={IdHrKvvbQ:\"framer-v-2u9izf\",obCzGImfe:\"framer-v-1m5esu2\",rsLmJ794l:\"framer-v-pz9grr\",t_dyeuxCs:\"framer-v-1rm1alv\",tdeOfQ7rp:\"framer-v-3ktsv\",w9MQQEiUG:\"framer-v-71hw0d\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"h1-active\":\"w9MQQEiUG\",\"h2-active\":\"t_dyeuxCs\",\"h3-active\":\"IdHrKvvbQ\",h1:\"rsLmJ794l\",h2:\"obCzGImfe\",h3:\"tdeOfQ7rp\"};const getProps=({height,id,title,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,TH5RA_D7E:title!==null&&title!==void 0?title:props.TH5RA_D7E,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"obCzGImfe\"};};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,TH5RA_D7E,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"obCzGImfe\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1m5esu2\",className,classNames),\"data-framer-name\":\"h2\",layoutDependency:layoutDependency,layoutId:\"obCzGImfe\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"obCzGImfe-hover\":{\"data-framer-name\":undefined},\"rsLmJ794l-hover\":{\"data-framer-name\":undefined},\"tdeOfQ7rp-hover\":{\"data-framer-name\":undefined},IdHrKvvbQ:{\"data-framer-name\":\"h3-active\"},rsLmJ794l:{\"data-framer-name\":\"h1\"},t_dyeuxCs:{\"data-framer-name\":\"h2-active\"},tdeOfQ7rp:{\"data-framer-name\":\"h3\"},w9MQQEiUG:{\"data-framer-name\":\"h1-active\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tw2akk\",layoutDependency:layoutDependency,layoutId:\"aO_0Vgvly\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-etmhz5\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"dJ7ZrgPG2\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(190, 216, 237)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(90.0000006678449deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%)\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},variants:{\"obCzGImfe-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",background:\"linear-gradient(90.0000006678449deg, rgba(0, 142, 255, 1) 0%, rgba(0, 235, 134, 1) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\"},\"rsLmJ794l-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",background:\"linear-gradient(90.0000006678449deg, rgba(0, 142, 255, 1) 0%, rgba(0, 235, 134, 1) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\"},\"tdeOfQ7rp-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",background:\"linear-gradient(90.0000006678449deg, rgba(0, 142, 255, 1) 0%, rgba(0, 235, 134, 1) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\"},IdHrKvvbQ:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",background:\"linear-gradient(90.0000006678449deg, rgba(0, 142, 255, 1) 0%, rgba(0, 235, 134, 1) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\"},t_dyeuxCs:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",background:\"linear-gradient(90.0000006678449deg, rgba(0, 142, 255, 1) 0%, rgba(0, 235, 134, 1) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\"},w9MQQEiUG:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",background:\"linear-gradient(90.0000006678449deg, rgba(0, 142, 255, 1) 0%, rgba(0, 235, 134, 1) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\"}}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cv5sl0-container\",layoutDependency:layoutDependency,layoutId:\"ZzuN6iH4A-container\",children:/*#__PURE__*/_jsx(TextClip,{height:\"100%\",id:\"ZzuN6iH4A\",layoutId:\"ZzuN6iH4A\",letterMode:false,lineCount:2,maxCharacters:20,style:{width:\"100%\"},text:TH5RA_D7E,textStyle:{color:\"rgb(0, 0, 0)\",font:\"Neue Montreal Medium\",fontSize:20,fontWeight:200,letterSpacing:0,lineHeight:1.2,textAlign:\"left\",textTransform:\"none\"},width:\"100%\",...addPropertyOverrides({\"obCzGImfe-hover\":{textStyle:{color:\"var(--token-54bbb8f1-0a4f-4231-a67e-3aad5be182e9, rgb(1, 142, 255))\",font:\"Neue Montreal Medium\",fontSize:20,fontWeight:200,letterSpacing:0,lineHeight:1.2,textAlign:\"left\",textTransform:\"none\"}},IdHrKvvbQ:{textStyle:{color:\"var(--token-54bbb8f1-0a4f-4231-a67e-3aad5be182e9, rgb(1, 142, 255))\",font:\"Neue Montreal Medium\",fontSize:20,fontWeight:200,letterSpacing:0,lineHeight:1.2,textAlign:\"left\",textTransform:\"none\"}},t_dyeuxCs:{textStyle:{color:\"var(--token-54bbb8f1-0a4f-4231-a67e-3aad5be182e9, rgb(1, 142, 255))\",font:\"Neue Montreal Medium\",fontSize:20,fontWeight:200,letterSpacing:0,lineHeight:1.2,textAlign:\"left\",textTransform:\"none\"}},w9MQQEiUG:{textStyle:{color:\"var(--token-54bbb8f1-0a4f-4231-a67e-3aad5be182e9, rgb(1, 142, 255))\",font:\"Neue Montreal Medium\",fontSize:20,fontWeight:200,letterSpacing:0,lineHeight:1.2,textAlign:\"left\",textTransform:\"none\"}}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-eyy49z-container\",layoutDependency:layoutDependency,layoutId:\"X4y_45nhK-container\",children:/*#__PURE__*/_jsx(TextClip1,{height:\"100%\",id:\"X4y_45nhK\",layoutId:\"X4y_45nhK\",letterMode:false,lineCount:1,maxCharacters:20,style:{width:\"100%\"},text:TH5RA_D7E,textStyle:{color:\"rgb(0, 0, 0)\",font:\"instrument sans\",fontSize:16,fontWeight:900,letterSpacing:0,lineHeight:1,textAlign:\"left\",textTransform:\"uppercase\"},width:\"100%\",...addPropertyOverrides({\"obCzGImfe-hover\":{textStyle:{color:\"rgb(249, 47, 96)\",font:\"instrument sans\",fontSize:16,fontWeight:900,letterSpacing:0,lineHeight:1,textAlign:\"left\",textTransform:\"uppercase\"}},IdHrKvvbQ:{textStyle:{color:\"rgb(249, 47, 96)\",font:\"instrument sans\",fontSize:16,fontWeight:900,letterSpacing:0,lineHeight:1,textAlign:\"left\",textTransform:\"uppercase\"}},t_dyeuxCs:{textStyle:{color:\"rgb(249, 47, 96)\",font:\"instrument sans\",fontSize:16,fontWeight:900,letterSpacing:0,lineHeight:1,textAlign:\"left\",textTransform:\"uppercase\"}},w9MQQEiUG:{textStyle:{color:\"rgb(249, 47, 96)\",font:\"instrument sans\",fontSize:16,fontWeight:900,letterSpacing:0,lineHeight:1,textAlign:\"left\",textTransform:\"uppercase\"}}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eJZu9.framer-96sk7r, .framer-eJZu9 .framer-96sk7r { display: block; }\",\".framer-eJZu9.framer-1m5esu2 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 8px 0px; position: relative; width: min-content; }\",\".framer-eJZu9 .framer-tw2akk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 8px 0px 0px; position: relative; width: 293px; }\",\".framer-eJZu9 .framer-etmhz5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 13px; justify-content: center; overflow: visible; padding: 12px; position: relative; width: 13px; }\",\".framer-eJZu9 .framer-cv5sl0-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-eJZu9 .framer-eyy49z-container { flex: none; height: auto; position: relative; width: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eJZu9.framer-1m5esu2, .framer-eJZu9 .framer-tw2akk, .framer-eJZu9 .framer-etmhz5 { gap: 0px; } .framer-eJZu9.framer-1m5esu2 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-eJZu9.framer-1m5esu2 > :first-child, .framer-eJZu9 .framer-tw2akk > :first-child, .framer-eJZu9 .framer-etmhz5 > :first-child { margin-left: 0px; } .framer-eJZu9.framer-1m5esu2 > :last-child, .framer-eJZu9 .framer-tw2akk > :last-child, .framer-eJZu9 .framer-etmhz5 > :last-child { margin-right: 0px; } .framer-eJZu9 .framer-tw2akk > *, .framer-eJZu9 .framer-etmhz5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-eJZu9.framer-v-1rm1alv.framer-1m5esu2, .framer-eJZu9.framer-v-71hw0d.framer-1m5esu2, .framer-eJZu9.framer-v-2u9izf.framer-1m5esu2 { cursor: unset; }\",'.framer-eJZu9[data-border=\"true\"]::after, .framer-eJZu9 [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 293\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"rsLmJ794l\":{\"layout\":[\"auto\",\"auto\"]},\"tdeOfQ7rp\":{\"layout\":[\"auto\",\"auto\"]},\"t_dyeuxCs\":{\"layout\":[\"auto\",\"auto\"]},\"w9MQQEiUG\":{\"layout\":[\"auto\",\"auto\"]},\"IdHrKvvbQ\":{\"layout\":[\"auto\",\"auto\"]},\"ycikMGPXh\":{\"layout\":[\"auto\",\"auto\"]},\"ngjBL2BdR\":{\"layout\":[\"auto\",\"auto\"]},\"LYMOcpztQ\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"TH5RA_D7E\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framercr8mSAta2=withCSS(Component,css,\"framer-eJZu9\");export default Framercr8mSAta2;Framercr8mSAta2.displayName=\"Table of content\";Framercr8mSAta2.defaultProps={height:32,width:293};addPropertyControls(Framercr8mSAta2,{variant:{options:[\"obCzGImfe\",\"rsLmJ794l\",\"tdeOfQ7rp\",\"t_dyeuxCs\",\"w9MQQEiUG\",\"IdHrKvvbQ\"],optionTitles:[\"h2\",\"h1\",\"h3\",\"h2-active\",\"h1-active\",\"h3-active\"],title:\"Variant\",type:ControlType.Enum},TH5RA_D7E:{defaultValue:\"\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(Framercr8mSAta2,[{explicitInter:true,fonts:[]},...TextClipFonts,...TextClip1Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framercr8mSAta2\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"293\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"rsLmJ794l\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tdeOfQ7rp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"t_dyeuxCs\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"w9MQQEiUG\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"IdHrKvvbQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ycikMGPXh\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ngjBL2BdR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"LYMOcpztQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"TH5RA_D7E\\\":\\\"title\\\"}\",\"framerIntrinsicHeight\":\"32\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cr8mSAta2.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";export function TextClip(props){const{text,lineCount,textStyle,letterMode,maxCharacters}=props;let displayText=text;if(letterMode&&text.length>maxCharacters){displayText=text.slice(0,maxCharacters)+\"...\";}const lineClampStyle={display:letterMode?\"block\":\"-webkit-box\",overflow:\"hidden\",textOverflow:\"ellipsis\",whiteSpace:letterMode?\"nowrap\":\"normal\",WebkitLineClamp:letterMode?\"unset\":lineCount,WebkitBoxOrient:letterMode?\"unset\":\"vertical\",textAlign:textStyle.textAlign};const transformStyle={textTransform:textStyle.textTransform};const containerStyle={display:\"flex\",justifyContent:getJustifyContent(textStyle.textAlign),alignItems:getAlignItems(textStyle.textAlign),overflow:\"visible\"};function getJustifyContent(textAlign){switch(textAlign){case\"center\":return\"center\";case\"right\":return\"flex-end\";case\"left\":default:return\"flex-start\";}}function getAlignItems(textAlign){switch(textAlign){case\"center\":return\"center\";case\"right\":case\"left\":default:return\"flex-start\";}}return /*#__PURE__*/_jsx(motion.div,{style:{...containerStyle},children:/*#__PURE__*/_jsx(motion.div,{style:{...lineClampStyle,...textStyle,...transformStyle,fontFamily:textStyle.font},children:displayText})});}addPropertyControls(TextClip,{text:{type:ControlType.String,defaultValue:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\"},letterMode:{type:ControlType.Boolean,title:\"Letter Mode\",defaultValue:false},maxCharacters:{type:ControlType.Number,title:\"Max Characters\",defaultValue:20,min:1,step:1,displayStepper:true,hidden(props){return!props.letterMode;}},lineCount:{type:ControlType.Number,defaultValue:1,min:1,displayStepper:true,step:1,hidden(props){return props.letterMode;}},textStyle:{type:ControlType.Object,controls:{font:{type:ControlType.String,defaultValue:\"Inter\"},color:{type:ControlType.Color,defaultValue:\"#000\"},fontSize:{type:ControlType.Number,defaultValue:16},fontWeight:{type:ControlType.Number,defaultValue:400,displayStepper:true,step:100},lineHeight:{type:ControlType.Number,defaultValue:1.5,displayStepper:true,step:.1},letterSpacing:{type:ControlType.Number,defaultValue:0,displayStepper:true,step:.1},textAlign:{type:ControlType.Enum,options:[\"left\",\"center\",\"right\"],defaultValue:\"left\"},textTransform:{type:ControlType.Enum,options:[\"none\",\"capitalize\",\"lowercase\",\"uppercase\"],defaultValue:\"none\",title:\"Transform\"}}}});export default TextClip;\nexport const __FramerMetadata__ = {\"exports\":{\"TextClip\":{\"type\":\"reactComponent\",\"name\":\"TextClip\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"TextClip\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TextClip.map", "import{jsx as _jsx}from\"react/jsx-runtime\";const isBrowser=typeof window!==\"undefined\"// Check if window is defined\n;const pageTitle=isBrowser?document.title:\"\"// Get the current page title // Get the current page title\n;const titleCarrierGuide=\"Carrier Guide\";const urlCarrierGuide=\"https://portpro.io/carrierguide\";export function Twitter_Share(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{var _window_location,_window;window.open(`https://twitter.com/intent/tweet?text=${encodeURIComponent(`Check out this insightful blog post: ${pageTitle}. Read it here:`)}&url=${encodeURIComponent((_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href)}`);}});};}export function Facebook_Share(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{if(isBrowser){var _window_location,_window;window.open(`https://www.facebook.com/sharer/sharer.php?u=${encodeURIComponent((_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href)}&quote=${encodeURIComponent(`Check out this awesome site \"${pageTitle}\" on the Framer gallery. #madewithframer`)}`);}}});};}export function Facebook_ShareCarrierGuide(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{if(isBrowser){window.open(`https://www.facebook.com/sharer/sharer.php?u=${encodeURIComponent(urlCarrierGuide)}&quote=${encodeURIComponent(`Check out this awesome site \"${titleCarrierGuide}\" on the Framer gallery. #madewithframer`)}`);}}});};}export function LinkedIn_Share(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{if(isBrowser){var _window_location,_window;window.open(`https://www.linkedin.com/shareArticle?mini=true&url=${encodeURIComponent((_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href)}&title=${encodeURIComponent(pageTitle)}&source=framer.com`);}},style:{...props.style,cursor:\"pointer\"}});};}export function LinkedIn_ShareCarrier(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{if(isBrowser){window.open(`https://www.linkedin.com/shareArticle?mini=true&url=${encodeURIComponent(urlCarrierGuide)}&title=${encodeURIComponent(titleCarrierGuide)}&source=framer.com`);}},style:{...props.style,cursor:\"pointer\"}});};}export function Whatsapp_Share(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{if(isBrowser){var _window_location,_window;window.open(`https://api.whatsapp.com/send?text=${encodeURIComponent(`Check out this link: ${(_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href}`)}`);}}});};}export function Email_Share(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{if(isBrowser){var _window_location,_window;const subject=encodeURIComponent(\"Check out this link!\");const body=encodeURIComponent(`Hi,\n\nI wanted to share this link with you: ${(_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href}`);window.open(`mailto:?subject=${subject}&body=${body}`);}}});};}export function Email_ShareCarrierGuide(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{if(isBrowser){const subject=encodeURIComponent(\"Check out this link!\");const body=encodeURIComponent(`Hi,\n\nI wanted to share this link with you: ${urlCarrierGuide}`);window.open(`mailto:?subject=${subject}&body=${body}`);}}});};}export function Clipboard_Share(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{const textField=document.createElement(\"textarea\");textField.innerText=window.location.href;document.body.appendChild(textField);textField.select();document.execCommand(\"copy\");textField.remove();alert(\"URL copied to clipboard!\");}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"LinkedIn_Share\":{\"type\":\"reactHoc\",\"name\":\"LinkedIn_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Whatsapp_Share\":{\"type\":\"reactHoc\",\"name\":\"Whatsapp_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Email_Share\":{\"type\":\"reactHoc\",\"name\":\"Email_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Clipboard_Share\":{\"type\":\"reactHoc\",\"name\":\"Clipboard_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Twitter_Share\":{\"type\":\"reactHoc\",\"name\":\"Twitter_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Facebook_ShareCarrierGuide\":{\"type\":\"reactHoc\",\"name\":\"Facebook_ShareCarrierGuide\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Email_ShareCarrierGuide\":{\"type\":\"reactHoc\",\"name\":\"Email_ShareCarrierGuide\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Facebook_Share\":{\"type\":\"reactHoc\",\"name\":\"Facebook_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"LinkedIn_ShareCarrier\":{\"type\":\"reactHoc\",\"name\":\"LinkedIn_ShareCarrier\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ShareLink.map", "import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{useEffect,useState}from\"react\";const HEADING_TO_DISPLAY=[\"h1\",\"h2\",\"h3\"];const SCROLL_MARGIN_TOP=120;const useStore=createStore({headings:[]});export function withTableOfContent(Component){return props=>{const[store]=useStore();const[activeSection,setActiveSection]=useState(\"\");const scrollToId=id=>{const element=document.getElementById(id);if(element){element.scrollIntoView({behavior:\"smooth\"});}};useEffect(()=>{const handleScroll=()=>{const sections=store.headings.map(heading=>document.getElementById(heading.id));const scrollPosition=window.scrollY-660;for(let i=sections.length-1;i>=0;i--){if(sections[i].offsetTop<=scrollPosition){setActiveSection(store.headings[i].id);break;}}};window.addEventListener(\"scroll\",handleScroll);return()=>{window.removeEventListener(\"scroll\",handleScroll);};},[store.headings]);return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"style\",{children:`\n                        /* Tambahkan CSS untuk spacing */\n                        .toc-item {\n                            margin-bottom: 16px; /* Default spacing antar konten */\n                        }\n\n                        /* Gaya untuk elemen aktif */\n                        .toc-item-active {\n                            font-weight: bold; /* Contoh gaya aktif */\n                        }\n                    `}),store.headings.length>0&&window?store.headings.sort((a,b)=>a.originalIndex-b.originalIndex).filter(({type})=>HEADING_TO_DISPLAY.includes(type)).map(({id,heading,type},index)=>/*#__PURE__*/_jsx(Component,{...props,className:`toc-item ${activeSection===id?\"toc-item-active\":\"\"}`,variant:activeSection===id?`${type}-active`:type,title:heading,onClick:()=>scrollToId(id)})):/*#__PURE__*/_jsx(Component,{...props})]});};}export function withContent(Component){return props=>{const[store,setStore]=useStore();const[newProps,setNewProps]=useState(props);useEffect(()=>{setStore({headings:formatTableOfContent(newProps.children.props.children)});},[newProps]);useEffect(()=>{const formatHeadings=()=>{const newChildren=[];props.children.props.children.length>0&&props.children.props.children.forEach((item,index)=>{const children=item.props.children;if([\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\"].includes(item.type)){const{formattedId}=formatHeading(children,index);// Create a new object for the modified item\nconst newItem={...item,props:{...item.props,id:formattedId}};newChildren.push(newItem);}else{newChildren.push(item);}});// Return a new props object with the modified children\nreturn{...props,children:{...props.children,props:{...props.children.props,children:newChildren}}};};setNewProps(formatHeadings());},[props]);return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"style\",{children:`.framer-text {\n                    scroll-margin-top: ${SCROLL_MARGIN_TOP}px;\n                }`}),/*#__PURE__*/_jsx(Component,{...newProps})]});};}const formatTableOfContent=children=>{const result=[];children.length>0&&children.filter(({type})=>[\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\"].includes(type)).map((item,index)=>{const children=item.props.children;const{formattedId,formattedHeading}=formatHeading(children,index);result.push({id:formattedId,heading:formattedHeading,type:item.type,originalIndex:index});});return result;};const formatHeading=(children,index)=>{let formattedHeading=\"\";let formattedId=\"\";if(typeof children===\"string\"){formattedHeading=children;}else if(Array.isArray(children)){formattedHeading=children.map(item=>{if(typeof item===\"string\")return item.trim();if(item.type===\"br\")return\"\";return item.props.children.trim();}).join(\" \");}else if(typeof children===\"object\"){if(typeof children.props.children===\"string\"){formattedHeading=children.props.children;}}else{formattedHeading=index.toString();}formattedId=formattedHeading.trim().toLowerCase().replace(/[^a-z]+/g,\"-\").replace(/^-+|-+$/g,\"\");return{formattedId,formattedHeading};};\nexport const __FramerMetadata__ = {\"exports\":{\"withTableOfContent\":{\"type\":\"reactHoc\",\"name\":\"withTableOfContent\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withContent\":{\"type\":\"reactHoc\",\"name\":\"withContent\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TableofContent.map", "// Generated by Framer (139b156)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-BqBdC .framer-styles-preset-1hrzxxg:not(.rich-text-wrapper), .framer-BqBdC .framer-styles-preset-1hrzxxg.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #0088ff; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #367bf6; --framer-link-text-decoration: underline; }\"];export const className=\"framer-BqBdC\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (139b156)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Fragment Mono-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}];export const css=['.framer-gludV .framer-styles-preset-1w14dxi { --framer-code-font-family: \"Fragment Mono\", monospace; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: #333; --framer-font-size-scale: 1; background-color: rgba(0, 0, 0, 0.1); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; padding-bottom: 0.1em; padding-left: 0.2em; padding-right: 0.2em; padding-top: 0.1em; }'];export const className=\"framer-gludV\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import EmbedVideo from\"https://framerusercontent.com/modules/6Yp9bi7FxGmGfcVoyhJH/mA04sZcOvp9pRhnZlheM/BjHsM4Tqa.js\";import TableOfContent,*as TableOfContentInfo from\"#framer/local/canvasComponent/cr8mSAta2/cr8mSAta2.js\";import Button from\"#framer/local/canvasComponent/dnZSaGBke/dnZSaGBke.js\";import ButtonBtn_get_started2 from\"#framer/local/canvasComponent/p5gpIiLaO/p5gpIiLaO.js\";import NavigationV2 from\"#framer/local/canvasComponent/qcpB__EGk/qcpB__EGk.js\";import CardBlog from\"#framer/local/canvasComponent/qF3ZcDsyJ/qF3ZcDsyJ.js\";import FAQFooter from\"#framer/local/canvasComponent/s6jDC66z_/s6jDC66z_.js\";import{Clipboard_Share,Facebook_Share,LinkedIn_Share}from\"#framer/local/codeFile/QrWuoUj/ShareLink.js\";import{withContent,withTableOfContent}from\"#framer/local/codeFile/ipQhtPk/TableofContent.js\";import HubSpot from\"#framer/local/collection/mSZ9RjZ0j/mSZ9RjZ0j.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle5 from\"#framer/local/css/A_BziKVNf/A_BziKVNf.js\";import*as sharedStyle6 from\"#framer/local/css/bjQZ2sevK/bjQZ2sevK.js\";import*as sharedStyle2 from\"#framer/local/css/ElV4vW4kZ/ElV4vW4kZ.js\";import*as sharedStyle from\"#framer/local/css/ggpzSAc0F/ggpzSAc0F.js\";import*as sharedStyle1 from\"#framer/local/css/kbP8ZB6ow/kbP8ZB6ow.js\";import*as sharedStyle7 from\"#framer/local/css/o62_owueK/o62_owueK.js\";import*as sharedStyle4 from\"#framer/local/css/uhy47CLOR/uhy47CLOR.js\";import*as sharedStyle8 from\"#framer/local/css/vOzVXB20c/vOzVXB20c.js\";import*as sharedStyle3 from\"#framer/local/css/WOB5UNc31/WOB5UNc31.js\";import metadataProvider from\"#framer/local/webPageMetadata/PDxM6hxKc/PDxM6hxKc.js\";const NavigationV2Fonts=getFonts(NavigationV2);const ContainerWithFX=withFX(Container);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivFacebook_Sharexyazs4=withCodeBoundaryForOverrides(motion.div,{nodeId:\"Z0YRZwYhF\",override:Facebook_Share,scopeId:\"PDxM6hxKc\"});const MotionDivLinkedIn_Shareqr3s9o=withCodeBoundaryForOverrides(motion.div,{nodeId:\"nLdUfLVbB\",override:LinkedIn_Share,scopeId:\"PDxM6hxKc\"});const MotionDivClipboard_Sharef2t29i=withCodeBoundaryForOverrides(motion.div,{nodeId:\"Q4Z2I6wSb\",override:Clipboard_Share,scopeId:\"PDxM6hxKc\"});const MotionDivFacebook_Share1lnm7cg=withCodeBoundaryForOverrides(motion.div,{nodeId:\"XKoz5gMt4\",override:Facebook_Share,scopeId:\"PDxM6hxKc\"});const MotionDivLinkedIn_Share1ezy09n=withCodeBoundaryForOverrides(motion.div,{nodeId:\"i61C9k9O4\",override:LinkedIn_Share,scopeId:\"PDxM6hxKc\"});const MotionDivClipboard_Sharegbxv59=withCodeBoundaryForOverrides(motion.div,{nodeId:\"v8yA7j1Mh\",override:Clipboard_Share,scopeId:\"PDxM6hxKc\"});const RichTextWithContent1gf8j8o=withCodeBoundaryForOverrides(RichText,{nodeId:\"XgrQpOIQ1\",override:withContent,scopeId:\"PDxM6hxKc\"});const EmbedVideoFonts=getFonts(EmbedVideo);const MotionDivWithFX=withFX(motion.div);const TableOfContentFonts=getFonts(TableOfContent);const TableOfContentWithTableOfContent1owhllaWithMappedReactProps5kmvsj=withMappedReactProps(withCodeBoundaryForOverrides(TableOfContent,{nodeId:\"lxVKBWFQ7\",override:withTableOfContent,scopeId:\"PDxM6hxKc\"}),TableOfContentInfo);const ButtonBtn_get_started2Fonts=getFonts(ButtonBtn_get_started2);const CardBlogFonts=getFonts(CardBlog);const ButtonFonts=getFonts(Button);const FAQFooterFonts=getFonts(FAQFooter);const breakpoints={JXkqA9561:\"(max-width: 809px)\",KBqUEUBTh:\"(min-width: 1200px) and (max-width: 1439px)\",lYTSKB5k6:\"(min-width: 1440px)\",MlZY13bQX:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-CM5bY\";const variantClassNames={JXkqA9561:\"framer-v-2vgdc4\",KBqUEUBTh:\"framer-v-gh281z\",lYTSKB5k6:\"framer-v-15ky68m\",MlZY13bQX:\"framer-v-1benbgu\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const transition1={damping:50,delay:0,mass:1,stiffness:400,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition2={damping:30,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:100,y:0};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const negate=value=>{return!value;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Destop M\":\"KBqUEUBTh\",Desktop:\"lYTSKB5k6\",Phone:\"JXkqA9561\",Tablet:\"MlZY13bQX\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"lYTSKB5k6\"};};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:\"PDxM6hxKc\",data:HubSpot,type:\"Collection\"},select:[{collection:\"PDxM6hxKc\",name:\"EdTbrw5U6\",type:\"Identifier\"},{collection:\"PDxM6hxKc\",name:\"vWekgPPrq\",type:\"Identifier\"},{collection:\"PDxM6hxKc\",name:\"sZTDYcY4K\",type:\"Identifier\"},{collection:\"PDxM6hxKc\",name:\"LkMOM8RmI\",type:\"Identifier\"},{collection:\"PDxM6hxKc\",name:\"FKpypJJDK\",type:\"Identifier\"},{collection:\"PDxM6hxKc\",name:\"Jx8pdVrQk\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"PDxM6hxKc\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,vWekgPPrq=getFromCurrentRouteData(\"vWekgPPrq\")??\"\",LkMOM8RmI=getFromCurrentRouteData(\"LkMOM8RmI\")??\"\",sZTDYcY4K=getFromCurrentRouteData(\"sZTDYcY4K\"),Jx8pdVrQk=getFromCurrentRouteData(\"Jx8pdVrQk\"),FKpypJJDK=getFromCurrentRouteData(\"FKpypJJDK\")??\"\",Umphlgt6YVdl7W4wWC,NSe4YLh5qVdl7W4wWC,uL828UQL7Vdl7W4wWC,yRc2wov7rVdl7W4wWC,wk74F5vTsVdl7W4wWC,DlkPXKG59Vdl7W4wWC,XalDYoGmgVdl7W4wWC,vWekgPPrqS9m1WSCWU,Jx8pdVrQkS9m1WSCWU,sZTDYcY4KS9m1WSCWU,EdTbrw5U6S9m1WSCWU,idS9m1WSCWU,EdTbrw5U6=getFromCurrentRouteData(\"EdTbrw5U6\")??\"\",...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 ref1=React.useRef(null);const elementId=useRouteElementId(\"YXurZTcKK\");const activeLocaleCode=useLocaleCode();const textContent=toDateString(sZTDYcY4K,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const isDisplayed=()=>{if(!isBrowser())return true;if([\"MlZY13bQX\",\"JXkqA9561\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"MlZY13bQX\",\"JXkqA9561\"].includes(baseVariant))return true;return false;};const visible=negate(NSe4YLh5qVdl7W4wWC);const visible1=isSet(DlkPXKG59Vdl7W4wWC);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"lYTSKB5k6\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-15ky68m\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17u8uku-container\",layoutScroll:true,nodeId:\"jSyfw2u7R\",rendersWithMotion:true,scopeId:\"PDxM6hxKc\",style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXkqA9561:{variant:\"UVYt9eeiA\"},MlZY13bQX:{variant:\"UVYt9eeiA\"}},children:/*#__PURE__*/_jsx(NavigationV2,{height:\"100%\",id:\"jSyfw2u7R\",layoutId:\"jSyfw2u7R\",style:{width:\"100%\"},variant:\"adKqHqW63\",width:\"100%\",YFdXAlVGb:\"a04I3Z_U6\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-haum5e-container\",nodeId:\"JBStEaFc7\",scopeId:\"PDxM6hxKc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXkqA9561:{variant:\"D_HRH7TSR\"},MlZY13bQX:{variant:\"D_HRH7TSR\"}},children:/*#__PURE__*/_jsx(NavigationV2,{height:\"100%\",id:\"JBStEaFc7\",layoutId:\"JBStEaFc7\",style:{width:\"100%\"},variant:\"VWKQ66TvJ\",width:\"100%\",YFdXAlVGb:\"a04I3Z_U6\"})})})}),/*#__PURE__*/_jsx(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1840,intrinsicWidth:2880,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1840,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/byamj3fI2ORew1rB9pqtAUgTkh8.png\",srcSet:\"https://framerusercontent.com/images/byamj3fI2ORew1rB9pqtAUgTkh8.png?scale-down-to=512 512w,https://framerusercontent.com/images/byamj3fI2ORew1rB9pqtAUgTkh8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/byamj3fI2ORew1rB9pqtAUgTkh8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/byamj3fI2ORew1rB9pqtAUgTkh8.png 2880w\"},className:\"framer-1isv5j7\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e4t7jt\",\"data-framer-name\":\"Hero Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18os83q\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bawjqp\",\"data-framer-name\":\"Frame 2147224205\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-1a379fv\",\"data-framer-appear-id\":\"1a379fv\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXkqA9561:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"Neue Montreal Regular\", \"Neue Montreal Regular Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(3, 0, 19)\"},children:\"Blog/\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"Neue Montreal Regular\", \"Neue Montreal Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(3, 0, 19)\"},children:\"Blog/\"})}),className:\"framer-1asfqa0\",\"data-framer-name\":\"Blog/How Virtual Assistants Supercharge Productivity\",fonts:[\"CUSTOM;Neue Montreal Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXkqA9561:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"Neue Montreal Regular\", \"Neue Montreal Regular Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(79, 77, 95)\"},children:\"The Hidden Costs of Direct Hiring: Why Managed Services Offer Better Long-Term Value\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"Neue Montreal Regular\", \"Neue Montreal Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(79, 77, 95)\"},children:\"The Hidden Costs of Direct Hiring: Why Managed Services Offer Better Long-Term Value\"})}),className:\"framer-nkojsy\",\"data-framer-name\":\"Blog/How Virtual Assistants Supercharge Productivity\",fonts:[\"CUSTOM;Neue Montreal Regular\"],text:vWekgPPrq,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXkqA9561:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(3, 0, 19)\"},children:\"The Hidden Costs of Direct Hiring: Why Managed Services Offer Better Long-Term Value\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(3, 0, 19)\"},children:\"The Hidden Costs of Direct Hiring: Why Managed Services Offer Better Long-Term Value\"})}),className:\"framer-mdz8mr\",\"data-framer-appear-id\":\"mdz8mr\",\"data-framer-name\":\"How Virtual Assistants Supercharge Productivity\",fonts:[\"CUSTOM;Neue Montreal Medium\"],initial:animation2,optimized:true,style:{transformPerspective:1200},text:vWekgPPrq,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q4n8w6\",\"data-framer-name\":\"Frame 1000001397\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jdg106\",\"data-framer-name\":\"Frame 2147226924\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXkqA9561:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+40+0+100+0+0+0+0+296+0+0),src:\"https://framerusercontent.com/images/1WWYFEEMDmjMWhdr1nbqkyPTAE.png\"}},KBqUEUBTh:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+80+0+100+0+0+0+464+0+0),src:\"https://framerusercontent.com/images/1WWYFEEMDmjMWhdr1nbqkyPTAE.png\"}},MlZY13bQX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+40+0+100+0+0+0+0+464+0+0),src:\"https://framerusercontent.com/images/1WWYFEEMDmjMWhdr1nbqkyPTAE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+40+0+100+0+0+0+464+0+0),src:\"https://framerusercontent.com/images/1WWYFEEMDmjMWhdr1nbqkyPTAE.png\"},className:\"framer-18nufnh\",\"data-framer-name\":\"Ellipse 42057\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif',\"--framer-line-height\":\"120%\"},children:\"Mark Evans\"})}),className:\"framer-1m4wb2o\",\"data-framer-name\":\"Mark Evans\",fonts:[\"CUSTOM;Neue Montreal Medium\"],text:LkMOM8RmI,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1x2yu2k\",\"data-framer-name\":\"Line 153\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"28\" viewBox=\"-1 -1 4 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.2\" x1=\"1\" y1=\"0.5\" x2=\"0.999999\" y2=\"25.5\" stroke=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"right\",\"--framer-text-transform\":\"uppercase\"},children:\"May 10, 2024\"})}),className:\"framer-9p58nq\",\"data-framer-name\":\"May 10, 2024\",fonts:[\"CUSTOM;Neue Montreal Medium\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dhsk1f hidden-1benbgu hidden-2vgdc4\",\"data-framer-name\":\"Share Blog\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TmV1ZSBNb250cmVhbC01MDA=\",\"--framer-font-family\":'\"Neue Montreal\", \"Neue Montreal Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\"},children:\"Share this blog\"})}),className:\"framer-qwvcpq\",\"data-framer-name\":\"Share this blog\",fonts:[\"GF;Neue Montreal-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eyyxrx\",\"data-framer-name\":\"Icon\",children:[/*#__PURE__*/_jsx(MotionDivFacebook_Sharexyazs4,{className:\"framer-xyazs4\",\"data-framer-name\":\"Facebook\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1fiamc1\",\"data-framer-name\":\"Frame\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:49,svg:'<svg width=\"49\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\".5\" y=\".5\" width=\"47.5\" height=\"47\" rx=\"23.5\" stroke=\"#030013\"/><path d=\"M26 25.5h2.5l1-4H26v-2c0-1.03 0-2 2-2h1.5v-3.36c-.326-.043-1.557-.14-2.857-.14C23.928 14 22 15.657 22 18.7v2.8h-3v4h3V34h4v-8.5Z\" fill=\"#030013\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qxo3gb\",\"data-framer-name\":\"Instagram\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-66d9h8\",\"data-framer-name\":\"Frame-1\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:49,svg:'<svg width=\"49\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"1\" y=\".5\" width=\"46.999\" height=\"46.999\" rx=\"23.5\" stroke=\"#030013\"/><path d=\"M25.527 14a77.53 77.53 0 0 1 2.189.023l.194.006c.224.008.445.018.712.03 1.064.05 1.79.218 2.427.465.66.255 1.216.598 1.772 1.154a4.909 4.909 0 0 1 1.153 1.771c.247.637.415 1.364.465 2.428.012.267.022.488.03.712l.006.194c.015.493.021 1.063.023 2.189l.001.745v1.31a78.831 78.831 0 0 1-.023 2.189l-.006.194c-.008.224-.018.445-.03.712-.05 1.064-.22 1.79-.466 2.427a4.883 4.883 0 0 1-1.153 1.772 4.915 4.915 0 0 1-1.772 1.153c-.637.247-1.363.415-2.427.465a72.11 72.11 0 0 1-.712.03l-.194.006a77.53 77.53 0 0 1-2.189.023l-.746.001h-1.309a78.425 78.425 0 0 1-2.189-.023l-.194-.006a63.125 63.125 0 0 1-.712-.03c-1.064-.05-1.79-.219-2.428-.466a4.89 4.89 0 0 1-1.771-1.153 4.904 4.904 0 0 1-1.154-1.772c-.247-.637-.415-1.363-.465-2.427a71.858 71.858 0 0 1-.03-.712l-.005-.194a79.288 79.288 0 0 1-.024-2.189v-2.055c.002-1.126.008-1.696.023-2.189l.006-.194c.008-.224.018-.445.03-.712.05-1.065.218-1.79.465-2.428a4.88 4.88 0 0 1 1.154-1.771 4.898 4.898 0 0 1 1.771-1.154c.638-.247 1.363-.415 2.428-.465l.712-.03.194-.005A79.288 79.288 0 0 1 23.471 14h2.056ZM24.5 19a5 5 0 1 0 0 9.999 5 5 0 0 0 0-10Zm0 2a3 3 0 1 1 0 5.999 3 3 0 0 1 0-6Zm5.25-3.5a1.25 1.25 0 0 0 0 2.498 1.25 1.25 0 0 0 0-2.5Z\" fill=\"#030013\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivLinkedIn_Shareqr3s9o,{className:\"framer-qr3s9o\",\"data-framer-name\":\"Linkedin\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-132592p\",\"data-framer-name\":\"Frame-2\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:49,svg:'<svg width=\"49\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"1\" y=\".5\" width=\"47\" height=\"47\" rx=\"23.5\" stroke=\"#030013\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.929 20.969h3.714v1.85c.535-1.064 1.907-2.02 3.968-2.02 3.951 0 4.889 2.118 4.889 6.004V34h-4v-6.312c0-2.213-.535-3.461-1.897-3.461-1.889 0-2.674 1.345-2.674 3.46V34h-4V20.969ZM15.07 33.83h4V20.799h-4V33.83Zm4.573-17.28a2.53 2.53 0 0 1-.753 1.802 2.59 2.59 0 0 1-3.638.001 2.549 2.549 0 0 1-.752-1.803c0-.677.27-1.325.753-1.803a2.583 2.583 0 0 1 3.637 0c.482.478.753 1.126.753 1.803Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivClipboard_Sharef2t29i,{className:\"framer-f2t29i\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mmj3nc\",\"data-framer-name\":\"Frame-3\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:49,svg:'<svg width=\"49\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"1\" y=\".5\" width=\"47\" height=\"47\" rx=\"23.5\" stroke=\"#030013\"/><path d=\"M29.5 34a2.893 2.893 0 0 1-2.125-.875A2.893 2.893 0 0 1 26.5 31c0-.1.025-.333.075-.7l-7.025-4.1a2.973 2.973 0 0 1-2.05.8 2.893 2.893 0 0 1-2.125-.875A2.893 2.893 0 0 1 14.5 24c0-.833.292-1.542.875-2.125A2.893 2.893 0 0 1 17.5 21a2.964 2.964 0 0 1 2.05.8l7.025-4.1a1.682 1.682 0 0 1-.062-.337A5.333 5.333 0 0 1 26.5 17c0-.833.292-1.542.875-2.125A2.893 2.893 0 0 1 29.5 14c.833 0 1.542.292 2.125.875S32.5 16.167 32.5 17s-.292 1.542-.875 2.125A2.893 2.893 0 0 1 29.5 20a2.964 2.964 0 0 1-2.05-.8l-7.025 4.1c.033.117.054.23.063.338a5.954 5.954 0 0 1 0 .725 1.52 1.52 0 0 1-.063.337l7.025 4.1a2.99 2.99 0 0 1 2.05-.8c.833 0 1.542.292 2.125.875S32.5 30.167 32.5 31s-.292 1.542-.875 2.125A2.893 2.893 0 0 1 29.5 34Z\" fill=\"#000\"/></svg>',withExternalLayout:true})})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXkqA9561:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+40+0+100+368),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px)`,...toResponsiveImage(Jx8pdVrQk)}},KBqUEUBTh:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+80+0+194.5),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 170px) / 2, 1px)`,...toResponsiveImage(Jx8pdVrQk)}},MlZY13bQX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+40+0+100+546),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 120px)`,...toResponsiveImage(Jx8pdVrQk)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+40+0+194.5),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 210px) / 2, 1px)`,...toResponsiveImage(Jx8pdVrQk)},className:\"framer-1mjv0n5\"})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pvxjiv hidden-15ky68m hidden-gh281z\",\"data-framer-name\":\"Share Blog Mobile\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TmV1ZSBNb250cmVhbC01MDA=\",\"--framer-font-family\":'\"Neue Montreal\", \"Neue Montreal Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:\"Share this blog\"})}),className:\"framer-98uflt\",\"data-framer-name\":\"Share this blog\",fonts:[\"GF;Neue Montreal-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1io36a5\",\"data-framer-name\":\"Icon\",children:[/*#__PURE__*/_jsx(MotionDivFacebook_Share1lnm7cg,{className:\"framer-1lnm7cg\",\"data-framer-name\":\"Facebook\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1q9wqfe\",\"data-framer-name\":\"Frame\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:49,svg:'<svg width=\"49\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\".5\" y=\".5\" width=\"47.5\" height=\"47\" rx=\"23.5\" stroke=\"#030013\"/><path d=\"M26 25.5h2.5l1-4H26v-2c0-1.03 0-2 2-2h1.5v-3.36c-.326-.043-1.557-.14-2.857-.14C23.928 14 22 15.657 22 18.7v2.8h-3v4h3V34h4v-8.5Z\" fill=\"#030013\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hcs453\",\"data-framer-name\":\"Instagram\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1wxdlco\",\"data-framer-name\":\"Frame-1\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:49,svg:'<svg width=\"49\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"1\" y=\".5\" width=\"46.999\" height=\"46.999\" rx=\"23.5\" stroke=\"#030013\"/><path d=\"M25.527 14a77.53 77.53 0 0 1 2.189.023l.194.006c.224.008.445.018.712.03 1.064.05 1.79.218 2.427.465.66.255 1.216.598 1.772 1.154a4.909 4.909 0 0 1 1.153 1.771c.247.637.415 1.364.465 2.428.012.267.022.488.03.712l.006.194c.015.493.021 1.063.023 2.189l.001.745v1.31a78.831 78.831 0 0 1-.023 2.189l-.006.194c-.008.224-.018.445-.03.712-.05 1.064-.22 1.79-.466 2.427a4.883 4.883 0 0 1-1.153 1.772 4.915 4.915 0 0 1-1.772 1.153c-.637.247-1.363.415-2.427.465a72.11 72.11 0 0 1-.712.03l-.194.006a77.53 77.53 0 0 1-2.189.023l-.746.001h-1.309a78.425 78.425 0 0 1-2.189-.023l-.194-.006a63.125 63.125 0 0 1-.712-.03c-1.064-.05-1.79-.219-2.428-.466a4.89 4.89 0 0 1-1.771-1.153 4.904 4.904 0 0 1-1.154-1.772c-.247-.637-.415-1.363-.465-2.427a71.858 71.858 0 0 1-.03-.712l-.005-.194a79.288 79.288 0 0 1-.024-2.189v-2.055c.002-1.126.008-1.696.023-2.189l.006-.194c.008-.224.018-.445.03-.712.05-1.065.218-1.79.465-2.428a4.88 4.88 0 0 1 1.154-1.771 4.898 4.898 0 0 1 1.771-1.154c.638-.247 1.363-.415 2.428-.465l.712-.03.194-.005A79.288 79.288 0 0 1 23.471 14h2.056ZM24.5 19a5 5 0 1 0 0 9.999 5 5 0 0 0 0-10Zm0 2a3 3 0 1 1 0 5.999 3 3 0 0 1 0-6Zm5.25-3.5a1.25 1.25 0 0 0 0 2.498 1.25 1.25 0 0 0 0-2.5Z\" fill=\"#030013\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivLinkedIn_Share1ezy09n,{className:\"framer-1ezy09n\",\"data-framer-name\":\"Linkedin\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qmwwn5\",\"data-framer-name\":\"Frame-2\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:49,svg:'<svg width=\"49\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"1\" y=\".5\" width=\"47\" height=\"47\" rx=\"23.5\" stroke=\"#030013\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.929 20.969h3.714v1.85c.535-1.064 1.907-2.02 3.968-2.02 3.951 0 4.889 2.118 4.889 6.004V34h-4v-6.312c0-2.213-.535-3.461-1.897-3.461-1.889 0-2.674 1.345-2.674 3.46V34h-4V20.969ZM15.07 33.83h4V20.799h-4V33.83Zm4.573-17.28a2.53 2.53 0 0 1-.753 1.802 2.59 2.59 0 0 1-3.638.001 2.549 2.549 0 0 1-.752-1.803c0-.677.27-1.325.753-1.803a2.583 2.583 0 0 1 3.637 0c.482.478.753 1.126.753 1.803Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivClipboard_Sharegbxv59,{className:\"framer-gbxv59\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-e8e177\",\"data-framer-name\":\"Frame-3\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:49,svg:'<svg width=\"49\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"1\" y=\".5\" width=\"47\" height=\"47\" rx=\"23.5\" stroke=\"#030013\"/><path d=\"M29.5 34a2.893 2.893 0 0 1-2.125-.875A2.893 2.893 0 0 1 26.5 31c0-.1.025-.333.075-.7l-7.025-4.1a2.973 2.973 0 0 1-2.05.8 2.893 2.893 0 0 1-2.125-.875A2.893 2.893 0 0 1 14.5 24c0-.833.292-1.542.875-2.125A2.893 2.893 0 0 1 17.5 21a2.964 2.964 0 0 1 2.05.8l7.025-4.1a1.682 1.682 0 0 1-.062-.337A5.333 5.333 0 0 1 26.5 17c0-.833.292-1.542.875-2.125A2.893 2.893 0 0 1 29.5 14c.833 0 1.542.292 2.125.875S32.5 16.167 32.5 17s-.292 1.542-.875 2.125A2.893 2.893 0 0 1 29.5 20a2.964 2.964 0 0 1-2.05-.8l-7.025 4.1c.033.117.054.23.063.338a5.954 5.954 0 0 1 0 .725 1.52 1.52 0 0 1-.063.337l7.025 4.1a2.99 2.99 0 0 1 2.05-.8c.833 0 1.542.292 2.125.875S32.5 30.167 32.5 31s-.292 1.542-.875 2.125A2.893 2.893 0 0 1 29.5 34Z\" fill=\"#000\"/></svg>',withExternalLayout:true})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y1f0b3\",\"data-border\":true,\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14u6g0j\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wdb8ln\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"Pb2AALSmz\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"NttV6z6MV\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"jo5TMnRQl\"]},children:/*#__PURE__*/_jsx(RichTextWithContent1gf8j8o,{__fromCanvasComponent:true,children:FKpypJJDK,className:\"framer-1gf8j8o\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1hrzxxg\",code:\"framer-styles-preset-1w14dxi\",h1:\"framer-styles-preset-1glaot8\",h2:\"framer-styles-preset-ehukoa\",h3:\"framer-styles-preset-fcgij4\",h4:\"framer-styles-preset-15n51xi\",h5:\"framer-styles-preset-mrnl6u\",h6:\"framer-styles-preset-3xtgro\",img:\"framer-styles-preset-spirj2\",p:\"framer-styles-preset-1fppxa6\"},verticalAlignment:\"top\",withExternalLayout:true})}),Umphlgt6YVdl7W4wWC&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i3s7ec\",children:[visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXkqA9561:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1440px)`,y:(componentViewport?.y||0)+0+919+40+0+0+0+0+128+0+0},KBqUEUBTh:{width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1440px) - 400px, 1px)`,y:(componentViewport?.y||0)+0+969+60+0+0+0+128+0+0},MlZY13bQX:{width:`min(${componentViewport?.width||\"100vw\"} - 120px, 1440px)`,y:(componentViewport?.y||0)+0+1493+60+0+0+0+0+128+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:206,width:`max(min(${componentViewport?.width||\"100vw\"} - 160px, 1440px) - 400px, 1px)`,y:(componentViewport?.y||0)+0+929+80+0+0+0+128+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zs0771-container\",isModuleExternal:true,nodeId:\"G4X4DVi8m\",scopeId:\"PDxM6hxKc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXkqA9561:{variant:\"uh03gkLVL\"},MlZY13bQX:{variant:\"rS9NygYvI\"}},children:/*#__PURE__*/_jsx(EmbedVideo,{height:\"100%\",id:\"G4X4DVi8m\",layoutId:\"G4X4DVi8m\",nSfXbrVDa:wk74F5vTsVdl7W4wWC,Rf_CS5xSQ:uL828UQL7Vdl7W4wWC,style:{width:\"100%\"},variant:\"B0tLqoi88\",width:\"100%\",XCM0b5ziI:yRc2wov7rVdl7W4wWC})})})})}),NSe4YLh5qVdl7W4wWC&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXkqA9561:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1440px)`,y:(componentViewport?.y||0)+0+919+40+0+0+0+0+128+0+238},KBqUEUBTh:{width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1440px) - 400px, 1px)`,y:(componentViewport?.y||0)+0+969+60+0+0+0+128+0+238},MlZY13bQX:{width:`min(${componentViewport?.width||\"100vw\"} - 120px, 1440px)`,y:(componentViewport?.y||0)+0+1493+60+0+0+0+0+128+0+238}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:206,width:`max(min(${componentViewport?.width||\"100vw\"} - 160px, 1440px) - 400px, 1px)`,y:(componentViewport?.y||0)+0+929+80+0+0+0+128+0+238,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vaehzd-container\",isModuleExternal:true,nodeId:\"RjyfW8ngc\",scopeId:\"PDxM6hxKc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXkqA9561:{variant:\"uh03gkLVL\"},MlZY13bQX:{variant:\"wXb1QKSCl\"}},children:/*#__PURE__*/_jsx(EmbedVideo,{height:\"100%\",id:\"RjyfW8ngc\",layoutId:\"RjyfW8ngc\",nSfXbrVDa:wk74F5vTsVdl7W4wWC,Rf_CS5xSQ:uL828UQL7Vdl7W4wWC,style:{width:\"100%\"},variant:\"sgfXeSVhc\",width:\"100%\",XCM0b5ziI:yRc2wov7rVdl7W4wWC})})})})})]}),visible1&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"Pb2AALSmz\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"NttV6z6MV\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"imu9XAT0t\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:DlkPXKG59Vdl7W4wWC,className:\"framer-fqaxio\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1hrzxxg\",code:\"framer-styles-preset-1w14dxi\",h1:\"framer-styles-preset-7b8ndr\",h2:\"framer-styles-preset-trm3ci\",h3:\"framer-styles-preset-68qg2z\",h4:\"framer-styles-preset-116fxnm\",h5:\"framer-styles-preset-mrnl6u\",h6:\"framer-styles-preset-1j5un6y\",img:\"framer-styles-preset-9f0grk\",p:\"framer-styles-preset-10gnttb\"},verticalAlignment:\"top\",withExternalLayout:true})}),XalDYoGmgVdl7W4wWC&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hebhmi\",\"data-framer-name\":\"Table\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13lf3gx\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ekgskn\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mr41h5\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(102, 112, 132)\"},children:\"All 10 correct?\"})}),className:\"framer-1y783rr\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wxqbjr\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-fe0a4ca0-2cd7-4f79-ac56-2051819260b6, rgb(102, 112, 132))\"},children:\"5-9 correct?\"})}),className:\"framer-1xmchc9\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gy4v0x\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(102, 112, 132)\"},children:\"1-4 correct?\"})}),className:\"framer-1s36xmv\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s6jjf7\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q6476i\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-nlhtyh\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-fe0a4ca0-2cd7-4f79-ac56-2051819260b6, rgb(102, 112, 132))\"},children:\"Congratulations. You\u2019re an Intermodal All-Star!\"})}),className:\"framer-19w21gz\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tqecu2\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-9foobf\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-fe0a4ca0-2cd7-4f79-ac56-2051819260b6, rgb(102, 112, 132))\"},children:\"Nicely done and glad you\u2019re learning more!\"})}),className:\"framer-2fgy3u\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iju95d\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i5updd\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-fe0a4ca0-2cd7-4f79-ac56-2051819260b6, rgb(102, 112, 132))\"},children:\"You have lots to learn about intermodal. Share with your colleagues and friends and compare their intermodal IQ!\"})}),className:\"framer-aejmiq\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19hcam8 hidden-1benbgu hidden-2vgdc4\",\"data-framer-name\":\"Frame 469346\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iqfk7d\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13g74br\",\"data-framer-name\":\"Line\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12oei9r\",\"data-framer-name\":\"BG\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:-60,__perspectiveFX:false,__targetOpacity:1,className:\"framer-97k7xa\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KBqUEUBTh:{y:(componentViewport?.y||0)+0+969+60+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"320px\",y:(componentViewport?.y||0)+0+929+80+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1owhlla-container\",nodeId:\"lxVKBWFQ7\",rendersWithMotion:true,scopeId:\"PDxM6hxKc\",children:/*#__PURE__*/_jsx(TableOfContentWithTableOfContent1owhllaWithMappedReactProps5kmvsj,{height:\"100%\",id:\"lxVKBWFQ7\",layoutId:\"lxVKBWFQ7\",style:{width:\"100%\"},TH5RA_D7E:\"\",variant:\"obCzGImfe\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e1eoco\",\"data-framer-name\":\"Frame 2147226933\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgQm9sZA==\",\"--framer-font-family\":'\"Neue Montreal Bold\", \"Neue Montreal Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(0, 142, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Start using Hey Lieu today!\"})}),className:\"framer-kyx906\",\"data-framer-name\":\"Start using Hey Lieu today!\",fonts:[\"CUSTOM;Neue Montreal Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pxb7bk\",\"data-framer-name\":\"Frame 1000001321\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nj2042\",\"data-framer-name\":\"Frame 1000001318\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c88gy2\",\"data-framer-name\":\"Frame 1000001319\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-q30jxc\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:46,intrinsicWidth:42,svg:'<svg width=\"42\" height=\"46\" viewBox=\"0 0 42 46\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_d_8134_1096)\">\\n<path d=\"M28.8048 25.9342L28.481 25.4081C28.2362 25.0103 28.1138 24.8114 27.9131 24.7364C27.7124 24.6615 27.4899 24.7317 27.045 24.872L26.2892 25.1087C26.0047 25.1831 25.703 25.1543 25.4377 25.0276L25.2237 24.9123C24.9953 24.7751 24.8167 24.5684 24.714 24.3222L24.4874 23.7053C24.3383 23.2971 24.2637 23.093 24.097 22.9798C23.9304 22.8667 23.7136 22.873 23.2799 22.8855L22.5837 22.9057C22.1501 22.9183 21.9332 22.9246 21.7734 23.0472C21.6136 23.1698 21.551 23.3779 21.4258 23.7941L21.2353 24.423C21.147 24.6747 20.9807 24.8915 20.7606 25.0417L20.5537 25.1692C20.2961 25.3111 19.9967 25.3573 19.7083 25.2995L18.94 25.107C18.4877 24.9927 18.2616 24.9355 18.0656 25.0219C17.8696 25.1084 17.7589 25.314 17.5375 25.7254L17.2447 26.2693C17.0372 26.6549 16.9334 26.8477 16.9605 27.0489C16.9875 27.2502 17.1385 27.4086 17.4405 27.7255L18.1053 28.4267C18.2685 28.6214 18.3903 28.9654 18.3993 29.2776C18.4084 29.5899 18.3067 29.9403 18.1551 30.1441L17.532 30.8827C17.2489 31.2166 17.1074 31.3834 17.092 31.5859C17.0766 31.7884 17.1914 31.9749 17.4209 32.3477L17.7447 32.8738C17.9896 33.2716 18.112 33.4706 18.3127 33.5454C18.5134 33.6204 18.7358 33.5502 19.1808 33.4099L19.9366 33.1731C20.2211 33.0988 20.5228 33.1276 20.7882 33.2544L21.0021 33.3697C21.2305 33.5069 21.4091 33.7136 21.5118 33.9597L21.7384 34.5767C21.8875 34.9849 21.962 35.189 22.1287 35.3022C22.2954 35.4153 22.5122 35.409 22.9458 35.3964L23.642 35.3762C24.0757 35.3637 24.2926 35.3574 24.4523 35.2348C24.6122 35.1122 24.6748 34.9041 24.8 34.4879L24.9905 33.8589C25.0787 33.6072 25.245 33.3905 25.4651 33.2403L25.6719 33.1128C25.9296 32.9708 26.229 32.9246 26.5174 32.9823L27.2857 33.1749C27.738 33.2892 27.9642 33.3464 28.1602 33.2599C28.3562 33.1736 28.4669 32.9678 28.6883 32.5565L28.9811 32.0126C29.1886 31.627 29.2923 31.4343 29.2653 31.233C29.2382 31.0317 29.0872 30.8733 28.7853 30.5564L28.1204 29.8552C27.9573 29.6605 27.8355 29.3166 27.8264 29.0043C27.8174 28.6921 27.9191 28.3416 28.0706 28.1378L28.6937 27.3992C28.9768 27.0654 29.1184 26.8985 29.1338 26.696C29.1491 26.4935 29.0343 26.3071 28.8048 25.9342Z\" stroke=\"url(#paint0_linear_8134_1096)\" stroke-width=\"1.5\"/>\\n<path d=\"M25.2738 29.0727C25.3088 30.2799 24.3585 31.287 23.1513 31.322C21.944 31.357 20.937 30.4067 20.902 29.1995C20.867 27.9922 21.8173 26.9852 23.0245 26.9502C24.2318 26.9152 25.2388 27.8655 25.2738 29.0727Z\" stroke=\"url(#paint1_linear_8134_1096)\" stroke-width=\"1.5\"/>\\n<path d=\"M16.4937 12.3122L15.7444 11.7323C15.1778 11.2937 14.8945 11.0744 14.566 11.0754C14.2374 11.0764 13.956 11.2974 13.3933 11.7394L12.4365 12.488C12.0683 12.7486 11.6199 12.8704 11.1704 12.832L10.801 12.7822C10.3989 12.7089 10.0307 12.5087 9.75015 12.2109L9.09131 11.4481C8.65653 10.9428 8.43914 10.6901 8.13872 10.6179C7.83838 10.5456 7.53055 10.6718 6.91488 10.9244L5.92648 11.3299C5.3109 11.5825 5.00307 11.7088 4.83997 11.9712C4.67691 12.2336 4.69961 12.5662 4.74502 13.2312L4.81172 14.237C4.82116 14.646 4.69962 15.0471 4.46492 15.3817L4.23693 15.6765C3.94392 16.0196 3.53915 16.2478 3.09407 16.3209L1.88717 16.46C1.17614 16.5406 0.820625 16.5808 0.586035 16.8109C0.351448 17.0409 0.303792 17.396 0.208465 18.1062L0.0824354 19.0452C-0.00691455 19.7108 -0.0515921 20.0437 0.0960882 20.3179C0.24376 20.5921 0.546169 20.7379 1.15098 21.0294L2.4844 21.6763C2.82386 21.8675 3.18473 22.2954 3.36657 22.7386C3.54848 23.182 3.59208 23.7398 3.4847 24.1144L2.98983 25.5115C2.76402 26.1438 2.65109 26.4598 2.73858 26.7588C2.82603 27.0577 3.09159 27.2633 3.62269 27.6744L4.37189 28.2543C4.93849 28.6929 5.22184 28.9122 5.55037 28.9112C5.87894 28.9102 6.16032 28.6892 6.72305 28.2471L7.67986 27.4986C8.04805 27.2379 8.49659 27.1162 8.94619 27.1546L9.31554 27.2045C9.7175 27.2778 10.0856 27.4779 10.3662 27.7757L11.0251 28.5386C11.4599 29.0439 11.6772 29.2966 11.9776 29.3689C12.278 29.4411 12.5859 29.3148 13.2014 29.0623L14.1898 28.6568C14.8055 28.4042 15.1133 28.2779 15.2764 28.0155C15.4395 27.7531 15.4168 27.4205 15.3714 26.7555L15.3047 25.7496C15.2952 25.3406 15.4167 24.9396 15.6514 24.6051L15.8793 24.3102C16.1723 23.9671 16.5771 23.7387 17.0223 23.6657L18.2292 23.5266C18.9402 23.4461 19.2957 23.4058 19.5303 23.1757C19.7649 22.9457 19.8125 22.5906 19.9079 21.8804L20.0339 20.9414C20.1233 20.2758 20.1679 19.943 20.0203 19.6688C19.8725 19.3945 19.5702 19.2488 18.9654 18.9572L17.6319 18.3103C17.2924 18.119 16.9316 17.6913 16.7497 17.2479C16.5679 16.8047 16.5243 16.2467 16.6316 15.8722L17.1265 14.4751C17.3523 13.8429 17.4652 13.5268 17.3778 13.2278C17.2903 12.9289 17.0248 12.7233 16.4937 12.3122Z\" stroke=\"url(#paint2_linear_8134_1096)\" stroke-width=\"1.5\"/>\\n<path d=\"M13.1228 18.7287C13.8259 20.4425 13.0066 22.4019 11.2927 23.105C9.5789 23.8081 7.6196 22.9888 6.91647 21.2749C6.21335 19.5611 7.03266 17.6018 8.74649 16.8987C10.4603 16.1955 12.4196 17.0149 13.1228 18.7287Z\" stroke=\"url(#paint3_linear_8134_1096)\" stroke-width=\"1.5\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_8134_1096\" x=\"-14.75\" y=\"-10\" width=\"70.75\" height=\"74\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"7\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.07 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_8134_1096\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_8134_1096\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_8134_1096\" x1=\"-0.468751\" y1=\"11\" x2=\"29.5312\" y2=\"38.5\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#008EFF\"/>\\n<stop offset=\"1\" stop-color=\"#00EB86\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_8134_1096\" x1=\"-0.468751\" y1=\"11\" x2=\"29.5312\" y2=\"38.5\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#008EFF\"/>\\n<stop offset=\"1\" stop-color=\"#00EB86\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_8134_1096\" x1=\"-0.468751\" y1=\"11\" x2=\"29.5312\" y2=\"38.5\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#008EFF\"/>\\n<stop offset=\"1\" stop-color=\"#00EB86\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_8134_1096\" x1=\"-0.468751\" y1=\"11\" x2=\"29.5312\" y2=\"38.5\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#008EFF\"/>\\n<stop offset=\"1\" stop-color=\"#00EB86\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"120%\",\"--framer-text-transform\":\"capitalize\"},children:\"Seamless Integration Into your Existing Workflow\"})}),className:\"framer-14yq2p0\",\"data-framer-name\":\"Seamless Integration Into your Existing Workflow\",fonts:[\"CUSTOM;Neue Montreal Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-io5bfm\",\"data-framer-name\":\"Frame 1000001319\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t0r7ih\",\"data-framer-name\":\"Frame 1000001319\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1yf47jj\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:46,intrinsicWidth:42,svg:'<svg width=\"42\" height=\"46\" viewBox=\"0 0 42 46\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_d_8134_1103)\">\\n<path d=\"M11.9167 12V33.0833M11.9167 33.0833C10.1176 33.0833 8.39422 33.4072 6.80167 34M11.9167 33.0833C13.7158 33.0833 15.4391 33.4072 17.0317 34M20.1667 14.4078C17.4334 14.0241 14.6767 13.8322 11.9167 13.8333C9.11656 13.8333 6.36167 14.0289 3.66667 14.4078M20.1667 14.4078C21.4011 14.5826 22.6233 14.7952 23.8333 15.0433M20.1667 14.4078L23.3689 27.5173C23.518 28.1272 23.2393 28.7738 22.649 28.9864C21.8526 29.2723 21.0128 29.4178 20.1667 29.4167C19.3206 29.4178 18.4807 29.2723 17.6843 28.9864C17.094 28.7738 16.8153 28.1272 16.9632 27.5173L20.1667 14.409V14.4078ZM3.66667 14.4078C2.43222 14.5826 1.21 14.7952 0 15.0433M3.66667 14.4078L6.86889 27.5173C7.018 28.1272 6.73933 28.7738 6.149 28.9864C5.35264 29.2722 4.51276 29.4178 3.66667 29.4167C2.82058 29.4178 1.9807 29.2722 1.18433 28.9864C0.594 28.7738 0.315333 28.1272 0.463222 27.5173L3.66667 14.409V14.4078Z\" stroke=\"url(#paint0_linear_8134_1103)\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_8134_1103\" x=\"-14.75\" y=\"-10\" width=\"70.75\" height=\"74\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"7\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.07 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_8134_1103\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_8134_1103\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_8134_1103\" x1=\"-4.1836\" y1=\"12\" x2=\"26.8164\" y2=\"37\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#008EFF\"/>\\n<stop offset=\"1\" stop-color=\"#00EB86\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"120%\"},children:\"Improved Work-Life Balance by Delegating your Time-Consuming Tasks\"})}),className:\"framer-d2wwye\",\"data-framer-name\":\"Improved Work-Life Balance by Delegating your Time-Consuming Tasks\",fonts:[\"CUSTOM;Neue Montreal Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18gaa2i\",\"data-framer-name\":\"Frame 1000001320\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-n5cmk8\",\"data-framer-name\":\"Frame 1000001319\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"120%\"},children:\"Expertise on Demand\"})}),className:\"framer-wpivxq\",\"data-framer-name\":\"Expertise on Demand\",fonts:[\"CUSTOM;Neue Montreal Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"U4qglWfSB\"},implicitPathVariables:undefined},{href:{webPageId:\"U4qglWfSB\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KBqUEUBTh:{y:(componentViewport?.y||0)+0+969+60+0+0+0+76+0+166+0+330}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"320px\",y:(componentViewport?.y||0)+0+929+80+0+0+0+76+0+166+0+330,children:/*#__PURE__*/_jsx(Container,{className:\"framer-917hp1-container\",nodeId:\"nJQPqoni3\",scopeId:\"PDxM6hxKc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KBqUEUBTh:{l8_L8jXPA:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonBtn_get_started2,{height:\"100%\",id:\"nJQPqoni3\",l8_L8jXPA:resolvedLinks[0],layoutId:\"nJQPqoni3\",MdiqZabK7:\"Get Started\",style:{width:\"100%\"},uLW9Y17yO:26,variant:\"mI4qWQAWk\",W1DopwRaP:\"rgba(255, 255, 255, 0.5)\",width:\"100%\",yhYBGnw6t:0})})})})})})]})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vmpqty\",\"data-border\":true,\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1smmrsi\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x9p3l9\",\"data-framer-name\":\"Frame 2147224202\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXkqA9561:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(3, 0, 19)\"},children:\"Other Articles\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(3, 0, 19)\"},children:\"Other Articles\"})}),className:\"framer-i765as\",\"data-framer-name\":\"Select your category\",fonts:[\"CUSTOM;Neue Montreal Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-doxc9n\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"S9m1WSCWU\",data:HubSpot,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},orderBy:[{collection:\"S9m1WSCWU\",direction:\"desc\",name:\"sZTDYcY4K\",type:\"Identifier\"}],select:[{collection:\"S9m1WSCWU\",name:\"vWekgPPrq\",type:\"Identifier\"},{collection:\"S9m1WSCWU\",name:\"Jx8pdVrQk\",type:\"Identifier\"},{collection:\"S9m1WSCWU\",name:\"sZTDYcY4K\",type:\"Identifier\"},{collection:\"S9m1WSCWU\",name:\"EdTbrw5U6\",type:\"Identifier\"},{collection:\"S9m1WSCWU\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"S9m1WSCWU\",name:\"EdTbrw5U6\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:EdTbrw5U6},type:\"BinaryOperation\"}},operator:\"and\",right:{collection:\"S9m1WSCWU\",name:\"NZXrUIrbL\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({EdTbrw5U6:EdTbrw5U6S9m1WSCWU,id:idS9m1WSCWU,Jx8pdVrQk:Jx8pdVrQkS9m1WSCWU,sZTDYcY4K:sZTDYcY4KS9m1WSCWU,vWekgPPrq:vWekgPPrqS9m1WSCWU},index)=>{vWekgPPrqS9m1WSCWU??=\"\";EdTbrw5U6S9m1WSCWU??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`S9m1WSCWU-${idS9m1WSCWU}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{EdTbrw5U6:EdTbrw5U6S9m1WSCWU},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{EdTbrw5U6:EdTbrw5U6S9m1WSCWU},webPageId:\"PDxM6hxKc\"},implicitPathVariables:undefined},{href:{pathVariables:{EdTbrw5U6:EdTbrw5U6S9m1WSCWU},webPageId:\"PDxM6hxKc\"},implicitPathVariables:undefined},{href:{pathVariables:{EdTbrw5U6:EdTbrw5U6S9m1WSCWU},webPageId:\"PDxM6hxKc\"},implicitPathVariables:undefined},{href:{pathVariables:{EdTbrw5U6:EdTbrw5U6S9m1WSCWU},webPageId:\"PDxM6hxKc\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXkqA9561:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1440px)`,y:(componentViewport?.y||0)+0+2043+40+0+0+292+0+0},MlZY13bQX:{width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1440px)`,y:(componentViewport?.y||0)+0+2877+80+0+0+352+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:470,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1440px) - 80px) / 3, 200px)`,y:(componentViewport?.y||0)+0+1969+80+0+0+352+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-164fvpn-container\",nodeId:\"QCtB_q5Mb\",scopeId:\"PDxM6hxKc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXkqA9561:{HAFl5xQOd:resolvedLinks1[3]},KBqUEUBTh:{HAFl5xQOd:resolvedLinks1[1]},MlZY13bQX:{HAFl5xQOd:resolvedLinks1[2],variant:\"tfY4cS3a_\"}},children:/*#__PURE__*/_jsx(CardBlog,{AF125JzPa:\"Mark Evans\",b1KEpvGBa:vWekgPPrqS9m1WSCWU,HAFl5xQOd:resolvedLinks1[0],height:\"100%\",id:\"QCtB_q5Mb\",iX5YNAFiW:\"Virtual Assistant\",layoutId:\"QCtB_q5Mb\",M11YqQveP:toResponsiveImage(Jx8pdVrQkS9m1WSCWU),style:{width:\"100%\"},variant:\"Snp8Pxv9H\",width:\"100%\",ZNAMS3P9b:sZTDYcY4KS9m1WSCWU})})})})})})})},idS9m1WSCWU);})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r1i5s3\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14z6869\",\"data-framer-name\":\"Head\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXkqA9561:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TmV1ZSBNb250cmVhbC01MDA=\",\"--framer-font-family\":'\"Neue Montreal\", \"Neue Montreal Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(3, 0, 19)\"},children:\"Stay Inspired\u2014Get the Latest Updates Delivered!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TmV1ZSBNb250cmVhbC01MDA=\",\"--framer-font-family\":'\"Neue Montreal\", \"Neue Montreal Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(3, 0, 19)\"},children:\"Stay Inspired\u2014Get the Latest Updates Delivered!\"})}),className:\"framer-4uubre\",\"data-framer-name\":\"Stay Inspired\u2014Get the Latest Updates Delivered!\",fonts:[\"GF;Neue Montreal-500\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(FormContainer,{className:\"framer-whe706\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"label\",{className:\"framer-lh44qq\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-qkud2j\",inputName:\"Email\",placeholder:\"Enter your email here ....\",type:\"email\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXkqA9561:{y:(componentViewport?.y||0)+0+2043+40+818+24+300+-.19921875},KBqUEUBTh:{y:(componentViewport?.y||0)+0+1969+80+1388+141.25+-.19921875},MlZY13bQX:{y:(componentViewport?.y||0)+0+2877+80+878+32+316+-.19921875}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+1969+80+1388+145.25+-.19921875,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wvoo75-container\",nodeId:\"khoHYCwGO\",scopeId:\"PDxM6hxKc\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"khoHYCwGO\",layoutId:\"khoHYCwGO\",type:\"submit\",variant:formVariants(formState,{pending:\"Ez_SCaAU2\",success:\"gDqFj4CQN\"},\"hfATEgBzk\"),width:\"100%\"})})})})]})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXkqA9561:{y:(componentViewport?.y||0)+0+3338.5},KBqUEUBTh:{y:(componentViewport?.y||0)+0+3849},MlZY13bQX:{y:(componentViewport?.y||0)+0+4344.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:691,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3857,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9qj4bx-container\",nodeId:\"xA_Vc_o76\",scopeId:\"PDxM6hxKc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXkqA9561:{variant:\"lMivH5TU3\"},KBqUEUBTh:{variant:\"LskcBldA_\"},MlZY13bQX:{variant:\"RCVdDKWVT\"}},children:/*#__PURE__*/_jsx(FAQFooter,{height:\"100%\",id:\"xA_Vc_o76\",layoutId:\"xA_Vc_o76\",style:{width:\"100%\"},variant:\"VVI5SAcPT\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CM5bY.framer-9f8xen, .framer-CM5bY .framer-9f8xen { display: block; }\",\".framer-CM5bY.framer-15ky68m { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-CM5bY .framer-17u8uku-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 4; }\",\".framer-CM5bY .framer-haum5e-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 4; }\",\".framer-CM5bY .framer-1isv5j7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-CM5bY .framer-1e4t7jt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 100px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-CM5bY .framer-18os83q { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-CM5bY .framer-bawjqp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CM5bY .framer-1a379fv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-CM5bY .framer-1asfqa0, .framer-CM5bY .framer-1m4wb2o, .framer-CM5bY .framer-9p58nq, .framer-CM5bY .framer-wpivxq { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-CM5bY .framer-nkojsy { --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-CM5bY .framer-mdz8mr { --framer-paragraph-spacing: 0px; flex: none; height: auto; 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-CM5bY .framer-q4n8w6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 287px; }\",\".framer-CM5bY .framer-1jdg106 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-CM5bY .framer-18nufnh { aspect-ratio: 1 / 1; 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, 32px); position: relative; width: 32px; }\",\".framer-CM5bY .framer-1x2yu2k { flex: none; height: 28px; position: relative; width: 4px; }\",\".framer-CM5bY .framer-dhsk1f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 264px; }\",\".framer-CM5bY .framer-qwvcpq, .framer-CM5bY .framer-98uflt { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.8; position: relative; white-space: pre-wrap; width: 264px; word-break: break-word; word-wrap: break-word; }\",\".framer-CM5bY .framer-1eyyxrx, .framer-CM5bY .framer-1io36a5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-CM5bY .framer-xyazs4, .framer-CM5bY .framer-qxo3gb, .framer-CM5bY .framer-qr3s9o, .framer-CM5bY .framer-f2t29i, .framer-CM5bY .framer-1lnm7cg, .framer-CM5bY .framer-1hcs453, .framer-CM5bY .framer-1ezy09n, .framer-CM5bY .framer-gbxv59 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-CM5bY .framer-1fiamc1, .framer-CM5bY .framer-66d9h8, .framer-CM5bY .framer-132592p, .framer-CM5bY .framer-1mmj3nc { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); position: relative; width: 48px; }\",\".framer-CM5bY .framer-1mjv0n5 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: 1 0 0px; height: 500px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-CM5bY .framer-pvxjiv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 264px; }\",\".framer-CM5bY .framer-1q9wqfe, .framer-CM5bY .framer-1wxdlco, .framer-CM5bY .framer-qmwwn5, .framer-CM5bY .framer-e8e177 { aspect-ratio: 1.0208333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); position: relative; width: 49px; }\",\".framer-CM5bY .framer-y1f0b3 { --border-bottom-width: 1px; --border-color: #bdd7ec; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 80px; position: relative; width: 100%; }\",\".framer-CM5bY .framer-14u6g0j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CM5bY .framer-1wdb8ln { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-CM5bY .framer-1gf8j8o, .framer-CM5bY .framer-fqaxio { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-CM5bY .framer-1i3s7ec { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-CM5bY .framer-zs0771-container, .framer-CM5bY .framer-1vaehzd-container, .framer-CM5bY .framer-9qj4bx-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-CM5bY .framer-1hebhmi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CM5bY .framer-13lf3gx { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-CM5bY .framer-1ekgskn, .framer-CM5bY .framer-1s6jjf7, .framer-CM5bY .framer-nlhtyh, .framer-CM5bY .framer-9foobf, .framer-CM5bY .framer-1i5updd { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-CM5bY .framer-mr41h5 { --border-bottom-width: 2px; --border-color: #eaecf0; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: #f8f9fb; border-top-left-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 72px; justify-content: flex-start; overflow: visible; padding: 16px 24px 16px 24px; position: relative; width: 100%; }\",\".framer-CM5bY .framer-1y783rr, .framer-CM5bY .framer-1xmchc9, .framer-CM5bY .framer-1s36xmv { --framer-paragraph-spacing: 14px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-CM5bY .framer-wxqbjr { --border-bottom-width: 2px; --border-color: #eaecf0; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #f8f9fb; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 72px; justify-content: flex-start; overflow: visible; padding: 16px 24px 16px 24px; position: relative; width: 100%; }\",\".framer-CM5bY .framer-1gy4v0x { --border-bottom-width: 2px; --border-color: #eaecf0; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #f8f9fb; border-bottom-left-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 132px; justify-content: flex-start; overflow: visible; padding: 16px 24px 16px 24px; position: relative; width: 100%; }\",\".framer-CM5bY .framer-1q6476i { --border-bottom-width: 2px; --border-color: #eaecf0; --border-left-width: 0px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: #f8f9fb; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 72px; justify-content: flex-start; overflow: visible; padding: 16px 24px 16px 24px; position: relative; width: 100%; }\",\".framer-CM5bY .framer-19w21gz, .framer-CM5bY .framer-2fgy3u, .framer-CM5bY .framer-aejmiq { --framer-paragraph-spacing: 14px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-CM5bY .framer-tqecu2 { --border-bottom-width: 2px; --border-color: #eaecf0; --border-left-width: 0px; --border-right-width: 2px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #f8f9fb; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 72px; justify-content: flex-start; overflow: visible; padding: 16px 24px 16px 24px; position: relative; width: 100%; }\",\".framer-CM5bY .framer-1iju95d { --border-bottom-width: 2px; --border-color: #eaecf0; --border-left-width: 0px; --border-right-width: 2px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #f8f9fb; border-bottom-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 132px; justify-content: flex-start; overflow: visible; padding: 16px 24px 16px 24px; position: relative; width: 100%; }\",\".framer-CM5bY .framer-19hcam8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 120px; width: 320px; z-index: 1; }\",\".framer-CM5bY .framer-1iqfk7d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-CM5bY .framer-13g74br { bottom: 0px; flex: none; left: 11px; overflow: hidden; position: absolute; top: 0px; width: 2px; z-index: 0; }\",\".framer-CM5bY .framer-12oei9r { background-color: #bed8ed; flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; right: 0px; top: calc(50.00000000000002% - 100% / 2); z-index: 0; }\",'.framer-CM5bY .framer-97k7xa { background: linear-gradient(180deg, rgba(1, 142, 255, 0) 0%, var(--token-54bbb8f1-0a4f-4231-a67e-3aad5be182e9, rgb(1, 142, 255)) /* {\"name\":\"Blue\"} */ 100%); flex: none; height: 19%; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }',\".framer-CM5bY .framer-1owhlla-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-CM5bY .framer-e1eoco, .framer-CM5bY .framer-1pxb7bk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CM5bY .framer-kyx906 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 320px; word-break: break-word; word-wrap: break-word; }\",\".framer-CM5bY .framer-1nj2042, .framer-CM5bY .framer-io5bfm, .framer-CM5bY .framer-18gaa2i { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CM5bY .framer-c88gy2, .framer-CM5bY .framer-1t0r7ih, .framer-CM5bY .framer-n5cmk8 { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CM5bY .framer-q30jxc, .framer-CM5bY .framer-1yf47jj { flex: none; height: 46px; position: relative; width: 42px; }\",\".framer-CM5bY .framer-14yq2p0, .framer-CM5bY .framer-d2wwye { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 262px; word-break: break-word; word-wrap: break-word; }\",\".framer-CM5bY .framer-917hp1-container { flex: none; height: auto; position: relative; width: 100%; z-index: 4; }\",\".framer-CM5bY .framer-vmpqty { --border-bottom-width: 1px; --border-color: #bdd7ec; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 56px; height: min-content; justify-content: center; overflow: visible; padding: 80px; position: relative; width: 100%; }\",\".framer-CM5bY .framer-1smmrsi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-CM5bY .framer-1x9p3l9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CM5bY .framer-i765as, .framer-CM5bY .framer-4uubre { --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-CM5bY .framer-doxc9n { display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-CM5bY .framer-164fvpn-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-CM5bY .framer-r1i5s3 { align-content: center; align-items: center; background: linear-gradient(180deg, #ebe9fb 0%, rgba(230, 254, 248, 1) 100%); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 44px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-CM5bY .framer-14z6869 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-CM5bY .framer-whe706 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-CM5bY .framer-lh44qq { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",'.framer-CM5bY .framer-qkud2j { --framer-input-background: #ffffff; --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 40px; --framer-input-border-radius-bottom-right: 40px; --framer-input-border-radius-top-left: 40px; --framer-input-border-radius-top-right: 40px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12); --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: var(--token-77df9655-95f2-4c41-be0d-a0723ea1adbf, #030013); --framer-input-font-family: \"Neue Montreal Regular\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 18px; --framer-input-icon-color: #999999; --framer-input-padding: 12px 16px 12px 16px; --framer-input-placeholder-color: var(--token-3efa5bd9-a18c-4ad0-836f-43dbce32d9f0, #4f4d5f); flex: none; height: 50px; position: relative; width: 100%; }',\".framer-CM5bY .framer-1wvoo75-container { flex: none; height: auto; position: absolute; right: 0px; top: 0px; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-CM5bY.framer-15ky68m, .framer-CM5bY .framer-1isv5j7, .framer-CM5bY .framer-1e4t7jt, .framer-CM5bY .framer-bawjqp, .framer-CM5bY .framer-1a379fv, .framer-CM5bY .framer-1jdg106, .framer-CM5bY .framer-dhsk1f, .framer-CM5bY .framer-1eyyxrx, .framer-CM5bY .framer-xyazs4, .framer-CM5bY .framer-qxo3gb, .framer-CM5bY .framer-qr3s9o, .framer-CM5bY .framer-f2t29i, .framer-CM5bY .framer-pvxjiv, .framer-CM5bY .framer-1io36a5, .framer-CM5bY .framer-1lnm7cg, .framer-CM5bY .framer-1hcs453, .framer-CM5bY .framer-1ezy09n, .framer-CM5bY .framer-gbxv59, .framer-CM5bY .framer-14u6g0j, .framer-CM5bY .framer-1wdb8ln, .framer-CM5bY .framer-1i3s7ec, .framer-CM5bY .framer-1hebhmi, .framer-CM5bY .framer-13lf3gx, .framer-CM5bY .framer-1ekgskn, .framer-CM5bY .framer-mr41h5, .framer-CM5bY .framer-wxqbjr, .framer-CM5bY .framer-1gy4v0x, .framer-CM5bY .framer-1s6jjf7, .framer-CM5bY .framer-1q6476i, .framer-CM5bY .framer-nlhtyh, .framer-CM5bY .framer-tqecu2, .framer-CM5bY .framer-9foobf, .framer-CM5bY .framer-1iju95d, .framer-CM5bY .framer-1i5updd, .framer-CM5bY .framer-19hcam8, .framer-CM5bY .framer-1iqfk7d, .framer-CM5bY .framer-e1eoco, .framer-CM5bY .framer-1pxb7bk, .framer-CM5bY .framer-1nj2042, .framer-CM5bY .framer-c88gy2, .framer-CM5bY .framer-io5bfm, .framer-CM5bY .framer-1t0r7ih, .framer-CM5bY .framer-18gaa2i, .framer-CM5bY .framer-n5cmk8, .framer-CM5bY .framer-vmpqty, .framer-CM5bY .framer-1smmrsi, .framer-CM5bY .framer-1x9p3l9, .framer-CM5bY .framer-r1i5s3, .framer-CM5bY .framer-14z6869, .framer-CM5bY .framer-whe706, .framer-CM5bY .framer-lh44qq { gap: 0px; } .framer-CM5bY.framer-15ky68m > *, .framer-CM5bY .framer-1ekgskn > *, .framer-CM5bY .framer-1s6jjf7 > *, .framer-CM5bY .framer-nlhtyh > *, .framer-CM5bY .framer-9foobf > *, .framer-CM5bY .framer-1i5updd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-CM5bY.framer-15ky68m > :first-child, .framer-CM5bY .framer-1isv5j7 > :first-child, .framer-CM5bY .framer-bawjqp > :first-child, .framer-CM5bY .framer-dhsk1f > :first-child, .framer-CM5bY .framer-pvxjiv > :first-child, .framer-CM5bY .framer-1wdb8ln > :first-child, .framer-CM5bY .framer-1i3s7ec > :first-child, .framer-CM5bY .framer-1ekgskn > :first-child, .framer-CM5bY .framer-1s6jjf7 > :first-child, .framer-CM5bY .framer-nlhtyh > :first-child, .framer-CM5bY .framer-9foobf > :first-child, .framer-CM5bY .framer-1i5updd > :first-child, .framer-CM5bY .framer-19hcam8 > :first-child, .framer-CM5bY .framer-e1eoco > :first-child, .framer-CM5bY .framer-1pxb7bk > :first-child, .framer-CM5bY .framer-1nj2042 > :first-child, .framer-CM5bY .framer-io5bfm > :first-child, .framer-CM5bY .framer-18gaa2i > :first-child, .framer-CM5bY .framer-vmpqty > :first-child, .framer-CM5bY .framer-1smmrsi > :first-child, .framer-CM5bY .framer-1x9p3l9 > :first-child, .framer-CM5bY .framer-14z6869 > :first-child, .framer-CM5bY .framer-lh44qq > :first-child { margin-top: 0px; } .framer-CM5bY.framer-15ky68m > :last-child, .framer-CM5bY .framer-1isv5j7 > :last-child, .framer-CM5bY .framer-bawjqp > :last-child, .framer-CM5bY .framer-dhsk1f > :last-child, .framer-CM5bY .framer-pvxjiv > :last-child, .framer-CM5bY .framer-1wdb8ln > :last-child, .framer-CM5bY .framer-1i3s7ec > :last-child, .framer-CM5bY .framer-1ekgskn > :last-child, .framer-CM5bY .framer-1s6jjf7 > :last-child, .framer-CM5bY .framer-nlhtyh > :last-child, .framer-CM5bY .framer-9foobf > :last-child, .framer-CM5bY .framer-1i5updd > :last-child, .framer-CM5bY .framer-19hcam8 > :last-child, .framer-CM5bY .framer-e1eoco > :last-child, .framer-CM5bY .framer-1pxb7bk > :last-child, .framer-CM5bY .framer-1nj2042 > :last-child, .framer-CM5bY .framer-io5bfm > :last-child, .framer-CM5bY .framer-18gaa2i > :last-child, .framer-CM5bY .framer-vmpqty > :last-child, .framer-CM5bY .framer-1smmrsi > :last-child, .framer-CM5bY .framer-1x9p3l9 > :last-child, .framer-CM5bY .framer-14z6869 > :last-child, .framer-CM5bY .framer-lh44qq > :last-child { margin-bottom: 0px; } .framer-CM5bY .framer-1isv5j7 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-CM5bY .framer-1e4t7jt > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-CM5bY .framer-1e4t7jt > :first-child, .framer-CM5bY .framer-1a379fv > :first-child, .framer-CM5bY .framer-1jdg106 > :first-child, .framer-CM5bY .framer-1eyyxrx > :first-child, .framer-CM5bY .framer-xyazs4 > :first-child, .framer-CM5bY .framer-qxo3gb > :first-child, .framer-CM5bY .framer-qr3s9o > :first-child, .framer-CM5bY .framer-f2t29i > :first-child, .framer-CM5bY .framer-1io36a5 > :first-child, .framer-CM5bY .framer-1lnm7cg > :first-child, .framer-CM5bY .framer-1hcs453 > :first-child, .framer-CM5bY .framer-1ezy09n > :first-child, .framer-CM5bY .framer-gbxv59 > :first-child, .framer-CM5bY .framer-14u6g0j > :first-child, .framer-CM5bY .framer-1hebhmi > :first-child, .framer-CM5bY .framer-13lf3gx > :first-child, .framer-CM5bY .framer-mr41h5 > :first-child, .framer-CM5bY .framer-wxqbjr > :first-child, .framer-CM5bY .framer-1gy4v0x > :first-child, .framer-CM5bY .framer-1q6476i > :first-child, .framer-CM5bY .framer-tqecu2 > :first-child, .framer-CM5bY .framer-1iju95d > :first-child, .framer-CM5bY .framer-1iqfk7d > :first-child, .framer-CM5bY .framer-c88gy2 > :first-child, .framer-CM5bY .framer-1t0r7ih > :first-child, .framer-CM5bY .framer-n5cmk8 > :first-child, .framer-CM5bY .framer-r1i5s3 > :first-child, .framer-CM5bY .framer-whe706 > :first-child { margin-left: 0px; } .framer-CM5bY .framer-1e4t7jt > :last-child, .framer-CM5bY .framer-1a379fv > :last-child, .framer-CM5bY .framer-1jdg106 > :last-child, .framer-CM5bY .framer-1eyyxrx > :last-child, .framer-CM5bY .framer-xyazs4 > :last-child, .framer-CM5bY .framer-qxo3gb > :last-child, .framer-CM5bY .framer-qr3s9o > :last-child, .framer-CM5bY .framer-f2t29i > :last-child, .framer-CM5bY .framer-1io36a5 > :last-child, .framer-CM5bY .framer-1lnm7cg > :last-child, .framer-CM5bY .framer-1hcs453 > :last-child, .framer-CM5bY .framer-1ezy09n > :last-child, .framer-CM5bY .framer-gbxv59 > :last-child, .framer-CM5bY .framer-14u6g0j > :last-child, .framer-CM5bY .framer-1hebhmi > :last-child, .framer-CM5bY .framer-13lf3gx > :last-child, .framer-CM5bY .framer-mr41h5 > :last-child, .framer-CM5bY .framer-wxqbjr > :last-child, .framer-CM5bY .framer-1gy4v0x > :last-child, .framer-CM5bY .framer-1q6476i > :last-child, .framer-CM5bY .framer-tqecu2 > :last-child, .framer-CM5bY .framer-1iju95d > :last-child, .framer-CM5bY .framer-1iqfk7d > :last-child, .framer-CM5bY .framer-c88gy2 > :last-child, .framer-CM5bY .framer-1t0r7ih > :last-child, .framer-CM5bY .framer-n5cmk8 > :last-child, .framer-CM5bY .framer-r1i5s3 > :last-child, .framer-CM5bY .framer-whe706 > :last-child { margin-right: 0px; } .framer-CM5bY .framer-bawjqp > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-CM5bY .framer-1a379fv > *, .framer-CM5bY .framer-13lf3gx > *, .framer-CM5bY .framer-mr41h5 > *, .framer-CM5bY .framer-wxqbjr > *, .framer-CM5bY .framer-1gy4v0x > *, .framer-CM5bY .framer-1q6476i > *, .framer-CM5bY .framer-tqecu2 > *, .framer-CM5bY .framer-1iju95d > *, .framer-CM5bY .framer-whe706 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-CM5bY .framer-1jdg106 > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-CM5bY .framer-dhsk1f > *, .framer-CM5bY .framer-pvxjiv > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-CM5bY .framer-1eyyxrx > *, .framer-CM5bY .framer-1io36a5 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-CM5bY .framer-xyazs4 > *, .framer-CM5bY .framer-qxo3gb > *, .framer-CM5bY .framer-qr3s9o > *, .framer-CM5bY .framer-f2t29i > *, .framer-CM5bY .framer-1lnm7cg > *, .framer-CM5bY .framer-1hcs453 > *, .framer-CM5bY .framer-1ezy09n > *, .framer-CM5bY .framer-gbxv59 > *, .framer-CM5bY .framer-1hebhmi > *, .framer-CM5bY .framer-1iqfk7d > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-CM5bY .framer-14u6g0j > *, .framer-CM5bY .framer-r1i5s3 > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-CM5bY .framer-1wdb8ln > *, .framer-CM5bY .framer-1i3s7ec > *, .framer-CM5bY .framer-1x9p3l9 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-CM5bY .framer-19hcam8 > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-CM5bY .framer-e1eoco > *, .framer-CM5bY .framer-1pxb7bk > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-CM5bY .framer-1nj2042 > *, .framer-CM5bY .framer-io5bfm > *, .framer-CM5bY .framer-18gaa2i > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-CM5bY .framer-c88gy2 > *, .framer-CM5bY .framer-1t0r7ih > *, .framer-CM5bY .framer-n5cmk8 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-CM5bY .framer-vmpqty > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-CM5bY .framer-1smmrsi > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-CM5bY .framer-14z6869 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-CM5bY .framer-lh44qq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-CM5bY[data-border=\"true\"]::after, .framer-CM5bY [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: 1200px) and (max-width: 1439px) { .framer-CM5bY.framer-15ky68m { width: 1200px; } .framer-CM5bY .framer-1isv5j7 { padding: 80px 0px 100px 0px; } .framer-CM5bY .framer-1e4t7jt { padding: 100px 60px 0px 60px; } .framer-CM5bY .framer-18os83q { flex-direction: row; gap: 40px; justify-content: flex-start; } .framer-CM5bY .framer-bawjqp { flex: 1 0 0px; width: 1px; } .framer-CM5bY .framer-y1f0b3 { padding: 60px; } .framer-CM5bY .framer-r1i5s3 { gap: 40px; padding: 40px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-CM5bY .framer-18os83q, .framer-CM5bY .framer-r1i5s3 { gap: 0px; } .framer-CM5bY .framer-18os83q > *, .framer-CM5bY .framer-r1i5s3 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-CM5bY .framer-18os83q > :first-child, .framer-CM5bY .framer-r1i5s3 > :first-child { margin-left: 0px; } .framer-CM5bY .framer-18os83q > :last-child, .framer-CM5bY .framer-r1i5s3 > :last-child { margin-right: 0px; } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-CM5bY.framer-15ky68m { width: 810px; } .framer-CM5bY .framer-1e4t7jt { flex-direction: column; padding: 100px 60px 0px 60px; } .framer-CM5bY .framer-18os83q { align-content: flex-start; align-items: flex-start; flex: none; gap: 40px; justify-content: flex-start; width: 100%; } .framer-CM5bY .framer-1mjv0n5, .framer-CM5bY .framer-1wdb8ln, .framer-CM5bY .framer-14z6869, .framer-CM5bY .framer-whe706 { flex: none; width: 100%; } .framer-CM5bY .framer-y1f0b3 { padding: 60px; } .framer-CM5bY .framer-14u6g0j { flex-direction: column; } .framer-CM5bY .framer-mr41h5, .framer-CM5bY .framer-1gy4v0x, .framer-CM5bY .framer-1q6476i, .framer-CM5bY .framer-1iju95d { height: 200px; } .framer-CM5bY .framer-wxqbjr, .framer-CM5bY .framer-tqecu2 { height: 260px; } .framer-CM5bY .framer-doxc9n { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; } .framer-CM5bY .framer-164fvpn-container { align-self: unset; } .framer-CM5bY .framer-r1i5s3 { flex-direction: column; gap: 64px; padding: 32px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-CM5bY .framer-1e4t7jt, .framer-CM5bY .framer-18os83q, .framer-CM5bY .framer-14u6g0j, .framer-CM5bY .framer-doxc9n, .framer-CM5bY .framer-r1i5s3 { gap: 0px; } .framer-CM5bY .framer-1e4t7jt > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-CM5bY .framer-1e4t7jt > :first-child, .framer-CM5bY .framer-18os83q > :first-child, .framer-CM5bY .framer-14u6g0j > :first-child, .framer-CM5bY .framer-doxc9n > :first-child, .framer-CM5bY .framer-r1i5s3 > :first-child { margin-top: 0px; } .framer-CM5bY .framer-1e4t7jt > :last-child, .framer-CM5bY .framer-18os83q > :last-child, .framer-CM5bY .framer-14u6g0j > :last-child, .framer-CM5bY .framer-doxc9n > :last-child, .framer-CM5bY .framer-r1i5s3 > :last-child { margin-bottom: 0px; } .framer-CM5bY .framer-18os83q > *, .framer-CM5bY .framer-doxc9n > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-CM5bY .framer-14u6g0j > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-CM5bY .framer-r1i5s3 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }}\",\"@media (max-width: 809px) { .framer-CM5bY.framer-15ky68m { width: 390px; } .framer-CM5bY .framer-1isv5j7 { gap: 40px; padding: 40px 0px 40px 0px; } .framer-CM5bY .framer-1e4t7jt { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 40px; padding: 100px 24px 0px 24px; } .framer-CM5bY .framer-18os83q { align-content: flex-start; align-items: flex-start; flex: none; gap: 40px; justify-content: flex-start; width: 100%; } .framer-CM5bY .framer-1mjv0n5 { flex: none; height: 180px; width: 100%; } .framer-CM5bY .framer-pvxjiv { width: 100%; } .framer-CM5bY .framer-1q9wqfe, .framer-CM5bY .framer-1wxdlco, .framer-CM5bY .framer-qmwwn5, .framer-CM5bY .framer-e8e177 { aspect-ratio: unset; height: 42px; width: 42px; } .framer-CM5bY .framer-y1f0b3, .framer-CM5bY .framer-vmpqty { padding: 40px 24px 40px 24px; } .framer-CM5bY .framer-14u6g0j { flex-direction: column; } .framer-CM5bY .framer-1wdb8ln, .framer-CM5bY .framer-14z6869, .framer-CM5bY .framer-whe706 { flex: none; width: 100%; } .framer-CM5bY .framer-1gf8j8o, .framer-CM5bY .framer-fqaxio { --framer-paragraph-spacing: 16px; } .framer-CM5bY .framer-1hebhmi { align-content: flex-start; align-items: flex-start; justify-content: flex-start; overflow: hidden; overflow-x: auto; } .framer-CM5bY .framer-mr41h5, .framer-CM5bY .framer-wxqbjr, .framer-CM5bY .framer-1q6476i, .framer-CM5bY .framer-tqecu2 { height: 120px; } .framer-CM5bY .framer-1gy4v0x, .framer-CM5bY .framer-1iju95d { height: 200px; } .framer-CM5bY .framer-1x9p3l9 { max-width: 100%; } .framer-CM5bY .framer-doxc9n { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; max-width: 100%; } .framer-CM5bY .framer-164fvpn-container { align-self: unset; } .framer-CM5bY .framer-r1i5s3 { flex-direction: column; gap: 72px; padding: 24px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-CM5bY .framer-1isv5j7, .framer-CM5bY .framer-1e4t7jt, .framer-CM5bY .framer-18os83q, .framer-CM5bY .framer-14u6g0j, .framer-CM5bY .framer-doxc9n, .framer-CM5bY .framer-r1i5s3 { gap: 0px; } .framer-CM5bY .framer-1isv5j7 > *, .framer-CM5bY .framer-1e4t7jt > *, .framer-CM5bY .framer-18os83q > *, .framer-CM5bY .framer-doxc9n > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-CM5bY .framer-1isv5j7 > :first-child, .framer-CM5bY .framer-1e4t7jt > :first-child, .framer-CM5bY .framer-18os83q > :first-child, .framer-CM5bY .framer-14u6g0j > :first-child, .framer-CM5bY .framer-doxc9n > :first-child, .framer-CM5bY .framer-r1i5s3 > :first-child { margin-top: 0px; } .framer-CM5bY .framer-1isv5j7 > :last-child, .framer-CM5bY .framer-1e4t7jt > :last-child, .framer-CM5bY .framer-18os83q > :last-child, .framer-CM5bY .framer-14u6g0j > :last-child, .framer-CM5bY .framer-doxc9n > :last-child, .framer-CM5bY .framer-r1i5s3 > :last-child { margin-bottom: 0px; } .framer-CM5bY .framer-14u6g0j > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-CM5bY .framer-r1i5s3 > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6643.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KBqUEUBTh\":{\"layout\":[\"fixed\",\"auto\"]},\"MlZY13bQX\":{\"layout\":[\"fixed\",\"auto\"]},\"JXkqA9561\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"YXurZTcKK\":{\"pattern\":\":YXurZTcKK\",\"name\":\"sectionscroll\"}}\n * @framerResponsiveScreen\n */const FramerPDxM6hxKc=withCSS(Component,css,\"framer-CM5bY\");export default FramerPDxM6hxKc;FramerPDxM6hxKc.displayName=\"Blog Detail\";FramerPDxM6hxKc.defaultProps={height:6643.5,width:1440};addFonts(FramerPDxM6hxKc,[{explicitInter:true,fonts:[{family:\"Neue Montreal Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/EN0wrjjcgDdG3SMgxfEI19PNHRs.woff2\"},{family:\"Neue Montreal Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/vEydk8LUwvYV3ZJtsQhKLqsza0.woff2\"},{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:\"Neue Montreal Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/RPkJxzk3b5OHRdh8fGRoGBfE20Y.woff2\"}]},...NavigationV2Fonts,...EmbedVideoFonts,...TableOfContentFonts,...ButtonBtn_get_started2Fonts,...CardBlogFonts,...ButtonFonts,...FAQFooterFonts,...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),...componentPresets.fonts?.[\"NttV6z6MV\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"NttV6z6MV\"]):[],...componentPresets.fonts?.[\"Pb2AALSmz\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"Pb2AALSmz\"]):[],...componentPresets.fonts?.[\"jo5TMnRQl\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"jo5TMnRQl\"]):[],...componentPresets.fonts?.[\"imu9XAT0t\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"imu9XAT0t\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPDxM6hxKc\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KBqUEUBTh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MlZY13bQX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JXkqA9561\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"YXurZTcKK\\\":{\\\"pattern\\\":\\\":YXurZTcKK\\\",\\\"name\\\":\\\"sectionscroll\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"6643.5\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "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", "YouTubeFonts", "getFonts", "Youtube", "EmbedFonts", "Embed", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "descriptionVideo", "height", "id", "linkVideo", "titleVideo", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Rf_CS5xSQ", "XCM0b5ziI", "nSfXbrVDa", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "ComponentViewportProvider", "css", "FramerBjHsM4Tqa", "withCSS", "BjHsM4Tqa_default", "addPropertyControls", "ControlType", "addFonts", "cr8mSAta2_exports", "__export", "__FramerMetadata__", "cr8mSAta2_default", "TextClip", "props", "text", "lineCount", "textStyle", "letterMode", "maxCharacters", "displayText", "lineClampStyle", "transformStyle", "containerStyle", "getJustifyContent", "getAlignItems", "textAlign", "p", "motion", "addPropertyControls", "ControlType", "TextClip_default", "TextClipFonts", "getFonts", "Test_default", "TextClip1Fonts", "TextClip_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "TH5RA_D7E", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "Framercr8mSAta2", "withCSS", "cr8mSAta2_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "isBrowser", "window", "pageTitle", "Facebook_Share", "Component", "props", "p", "isBrowser", "_window_location", "_window", "window", "pageTitle", "LinkedIn_Share", "Component", "props", "p", "isBrowser", "_window_location", "_window", "window", "pageTitle", "Clipboard_Share", "Component", "props", "p", "textField", "window", "createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "HEADING_TO_DISPLAY", "SCROLL_MARGIN_TOP", "useStore", "createStore", "withTableOfContent", "Component", "props", "store", "activeSection", "setActiveSection", "ye", "scrollToId", "id", "element", "ue", "handleScroll", "sections", "heading", "scrollPosition", "window", "i", "u", "l", "p", "a", "b", "type", "index", "withContent", "setStore", "newProps", "setNewProps", "formatTableOfContent", "newChildren", "item", "children", "formattedId", "formatHeading", "newItem", "result", "formattedHeading", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavigationV2Fonts", "getFonts", "qcpB_EGk_default", "ContainerWithFX", "withFX", "Container", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText2", "MotionDivFacebook_Sharexyazs4", "withCodeBoundaryForOverrides", "Facebook_Share", "MotionDivLinkedIn_Shareqr3s9o", "LinkedIn_Share", "MotionDivClipboard_Sharef2t29i", "Clipboard_Share", "MotionDivFacebook_Share1lnm7cg", "MotionDivLinkedIn_Share1ezy09n", "MotionDivClipboard_Sharegbxv59", "RichTextWithContent1gf8j8o", "withContent", "EmbedVideoFonts", "BjHsM4Tqa_default", "MotionDivWithFX", "TableOfContentFonts", "cr8mSAta2_default", "TableOfContentWithTableOfContent1owhllaWithMappedReactProps5kmvsj", "withMappedReactProps", "withTableOfContent", "cr8mSAta2_exports", "ButtonBtn_get_started2Fonts", "p5gpIiLaO_default", "CardBlogFonts", "qF3ZcDsyJ_default", "ButtonFonts", "dnZSaGBke_default", "FAQFooterFonts", "s6jDC66z_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "transformTemplate1", "_", "transition2", "animation1", "animation2", "toDateString", "value", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "toResponsiveImage", "negate", "isSet", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "formVariants", "form", "variants", "currentVariant", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "mSZ9RjZ0j_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "vWekgPPrq", "LkMOM8RmI", "sZTDYcY4K", "Jx8pdVrQk", "FKpypJJDK", "Umphlgt6YVdl7W4wWC", "NSe4YLh5qVdl7W4wWC", "uL828UQL7Vdl7W4wWC", "yRc2wov7rVdl7W4wWC", "wk74F5vTsVdl7W4wWC", "DlkPXKG59Vdl7W4wWC", "XalDYoGmgVdl7W4wWC", "vWekgPPrqS9m1WSCWU", "Jx8pdVrQkS9m1WSCWU", "sZTDYcY4KS9m1WSCWU", "EdTbrw5U6S9m1WSCWU", "idS9m1WSCWU", "EdTbrw5U6", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "elementId", "useRouteElementId", "activeLocaleCode", "useLocaleCode", "textContent", "isDisplayed", "isDisplayed1", "visible", "visible1", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "Image2", "getLoadingLazyAtYPosition", "x", "SVG", "ComponentPresetsProvider", "ResolveLinks", "resolvedLinks", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks1", "FormContainer", "formState", "FormPlainTextInput2", "css", "FramerPDxM6hxKc", "withCSS", "PDxM6hxKc_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
