{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js", "ssg:https://framerusercontent.com/modules/7MHFgTQIPZ8M1DPl8rv1/dEY5V6mepdpXTX63n3GA/DbEtdzNsT.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedURL,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHTML,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html,style}){const ref=useRef();const onCanvas=useIsOnCanvas();const[iframeHeight,setIframeHeight]=useState(0);const hasAutoHeight=!style.height;const hasScript=html.includes(\"</script>\");useEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);if(hasScript){const srcDoc=`<html>\n    <head>\n        <style>body { margin: 0; }</style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>`;const currentStyle={...iframeStyle,...style};if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (6f76210)\nvar _componentPresets_fonts,_componentPresets_fonts1;import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,RichText,useActiveVariantCallback,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,withCSS}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import{Icon as Phosphor1}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/xAqQJJMKulaAU8gK10ZA/Phosphor.js\";import NavbarLogoLight from\"#framer/local/canvasComponent/KoiCydCRK/KoiCydCRK.js\";import FooterDark from\"#framer/local/canvasComponent/WsqdXKmEV/WsqdXKmEV.js\";import Jobs from\"#framer/local/collection/mXZ65hqav/mXZ65hqav.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle9 from\"#framer/local/css/hfajbWfOs/hfajbWfOs.js\";import*as sharedStyle8 from\"#framer/local/css/J7Pkp7MkR/J7Pkp7MkR.js\";import*as sharedStyle6 from\"#framer/local/css/mH7p5TceR/mH7p5TceR.js\";import*as sharedStyle4 from\"#framer/local/css/MTIa8qnUO/MTIa8qnUO.js\";import*as sharedStyle1 from\"#framer/local/css/NY9X71WWZ/NY9X71WWZ.js\";import*as sharedStyle from\"#framer/local/css/reBGoAp1M/reBGoAp1M.js\";import*as sharedStyle7 from\"#framer/local/css/stylesPresetLink/stylesPresetLink.js\";import*as sharedStyle2 from\"#framer/local/css/tkQA695FA/tkQA695FA.js\";import*as sharedStyle5 from\"#framer/local/css/UFaJb9mcD/UFaJb9mcD.js\";import*as sharedStyle3 from\"#framer/local/css/UtGypEzYq/UtGypEzYq.js\";import metadataProvider from\"#framer/local/webPageMetadata/DbEtdzNsT/DbEtdzNsT.js\";const NavbarLogoLightFonts=getFonts(NavbarLogoLight);const PhosphorFonts=getFonts(Phosphor);const Phosphor1Fonts=getFonts(Phosphor1);const EmbedFonts=getFonts(Embed);const FooterDarkFonts=getFonts(FooterDark);const breakpoints={c0a59GWmc:\"(min-width: 810px) and (max-width: 1439px)\",IWlBDC7Ld:\"(max-width: 809px)\",RIl5IgAX2:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-rzGR2\";const variantClassNames={c0a59GWmc:\"framer-v-cu2lzt\",IWlBDC7Ld:\"framer-v-1m8sk91\",RIl5IgAX2:\"framer-v-to7vo4\"};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const negate=value=>{return!value;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"RIl5IgAX2\",Phone:\"IWlBDC7Ld\",Tablet:\"c0a59GWmc\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"RIl5IgAX2\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"DbEtdzNsT\",data:Jobs,type:\"Collection\"},select:[{collection:\"DbEtdzNsT\",name:\"oww75NJWl\",type:\"Identifier\"},{collection:\"DbEtdzNsT\",name:\"jBaWfMhrB\",type:\"Identifier\"},{collection:\"DbEtdzNsT\",name:\"f2K9PftgC\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"DbEtdzNsT\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};var _getFromCurrentRouteData,_getFromCurrentRouteData1;const{style,className,layoutId,variant,oww75NJWl=(_getFromCurrentRouteData=getFromCurrentRouteData(\"oww75NJWl\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",f2K9PftgC=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"f2K9PftgC\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-rzGR2`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-rzGR2`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTapwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onClickwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onClick1wvko5h=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.hide();});const ref1=React.useRef(null);const visible=equals(oww75NJWl,\"Design Engineer\");const elementId=useRouteElementId(\"Li7SnY061\");const ref2=React.useRef(null);const visible1=negate(equals(oww75NJWl,\"Design Engineer\"));const elementId1=useRouteElementId(\"cq0cPTUEE\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"cEK6qFbY5\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"c6qn0ZRRM\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"p49j6LndZ\");const ref6=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"RIl5IgAX2\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-to7vo4\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gjymd9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c0a59GWmc:{sXGJzxmFg:false},IWlBDC7Ld:{sXGJzxmFg:false,variant:\"RN9eii1sF\"}},children:/*#__PURE__*/_jsx(NavbarLogoLight,{Avi5DnVIn:\"https://perp.com/hottub-signup\",height:\"100%\",id:\"E1FRs_ZxB\",Igsq_MdMC:\"Lazy River\",layoutId:\"E1FRs_ZxB\",style:{width:\"100%\"},sXGJzxmFg:true,variant:\"Mj53YCX22\",width:\"100%\",ZzRfY13wV:\"var(--token-c32e6e76-0bf1-4ee9-8aa3-f65d5e2a8e62, rgb(255, 255, 255))\"})})})}),visible&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:104,intrinsicWidth:104,loading:getLoadingLazyAtYPosition(80),pixelHeight:208,pixelWidth:208,src:\"https://framerusercontent.com/images/rKP7bLBv5wKOf7tN2rsKBSCQdU.png\"},className:\"framer-kcxlsc\",\"data-framer-name\":\"nekodex\",name:\"nekodex\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1icyqpd\",\"data-framer-name\":\"Job Description\",name:\"Job Description\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eb8ggg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-14tu08s\",\"data-styles-preset\":\"reBGoAp1M\",style:{\"--framer-text-alignment\":\"center\"},children:\"Title\"})}),className:\"framer-1wgchnk\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:oww75NJWl,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"utNjc10Sc\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:f2K9PftgC,className:\"framer-3kgmn2\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],name:\"Content\",stylesPresetsClassNames:{a:\"framer-styles-preset-aexbeb\",h1:\"framer-styles-preset-14tu08s\",h2:\"framer-styles-preset-1tj8pnd\",h3:\"framer-styles-preset-3at3xa\",h4:\"framer-styles-preset-qiqzss\",h5:\"framer-styles-preset-15paadz\",h6:\"framer-styles-preset-19aypr1\",img:\"framer-styles-preset-lz12aq\",p:\"framer-styles-preset-zu0tcq\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17mf4v0\",\"data-framer-name\":\"Button\",id:elementId,name:\"Button\",ref:ref2,children:[visible1&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ntqfxu\",\"data-border\":true,\"data-framer-name\":\"Button\",id:\"ntqfxu\",name:\"Button\",onTap:onTapwelu7j({overlay}),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1s6u7s\",\"data-styles-preset\":\"hfajbWfOs\",style:{\"--framer-text-color\":\"var(--token-c32e6e76-0bf1-4ee9-8aa3-f65d5e2a8e62, rgb(255, 255, 255))\"},children:\"Apply Now\"})}),className:\"framer-1psbagx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1e8fm0t-container\",\"data-framer-name\":\"Icon R\",id:elementId1,name:\"Icon R\",ref:ref3,children:[/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-c32e6e76-0bf1-4ee9-8aa3-f65d5e2a8e62, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"cq0cPTUEE\",layoutId:\"cq0cPTUEE\",mirrored:false,name:\"Icon R\",onClick:onClickwelu7j({overlay:overlay1}),selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1kwc2sv\",\"data-framer-portal-id\":elementId1,exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"wop3cXr06\")}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-18fiv39\",\"data-framer-portal-id\":\"ntqfxu\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"JQ8phhhSk\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aboq8n\",\"data-framer-name\":\"Card\",\"data-framer-portal-id\":\"ntqfxu\",name:\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u2yw95\",\"data-border\":true,\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1NrLU1vZGVybmlzdCBCb2xk\",\"--framer-font-family\":'\"Sk-Modernist Bold\", \"Sk-Modernist Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"var(--token-8f7de743-5c3d-4b02-a185-4055512f8c40, rgb(0, 0, 0))\"},children:\"Apply\"})}),className:\"framer-10aqvzg\",fonts:[\"CUSTOM;Sk-Modernist Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1761tnp-container\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"var(--token-8f7de743-5c3d-4b02-a185-4055512f8c40, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"oYgIsc1t6\",layoutId:\"oYgIsc1t6\",mirrored:false,onClick:onClick1wvko5h({overlay}),selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-114zqip-container\",id:elementId2,ref:ref4,children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'\\n    <iframe\\n      id=\"JotFormIFrame-241402008065039\"\\n      title=\"Job Form\"\\n      onload=\"window.parent.scrollTo(0,0)\"\\n      allowtransparency=\"true\"\\n      allow=\"geolocation; microphone; camera; fullscreen\"\\n      src=\"https://form.jotform.com/241402008065039\"\\n      frameborder=\"0\"\\n      style=\"min-width:100%;max-width:100%;height:539px;border:none;\"\\n      scrolling=\"no\"\\n    >\\n    </iframe>\\n    <script src=\\'https://cdn.jotfor.ms/s/umd/latest/for-form-embed-handler.js\\'></script>\\n    <script>window.jotformEmbedHandler(\"iframe[id=\\'JotFormIFrame-241402008065039\\']\", \"https://form.jotform.com/\")</script>\\n    ',id:\"cEK6qFbY5\",layoutId:\"cEK6qFbY5\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]})]}),document.querySelector(\"#overlay\"))})})]})})}),visible&&/*#__PURE__*/_jsx(Link,{href:\"https://form.jotform.com/241412006042033\",nodeId:\"tuYbQgEIt\",openInNewTab:true,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-1aw4vk4 framer-xfrhhh\",\"data-border\":true,\"data-framer-name\":\"DesignEngineerButton\",name:\"DesignEngineerButton\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1s6u7s\",\"data-styles-preset\":\"hfajbWfOs\",style:{\"--framer-text-color\":\"var(--token-c32e6e76-0bf1-4ee9-8aa3-f65d5e2a8e62, rgb(255, 255, 255))\"},children:\"Apply Now\"})}),className:\"framer-b8q2r0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1fv6lqm-container\",\"data-framer-name\":\"Icon R\",id:elementId3,name:\"Icon R\",ref:ref5,children:[/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-c32e6e76-0bf1-4ee9-8aa3-f65d5e2a8e62, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"c6qn0ZRRM\",layoutId:\"c6qn0ZRRM\",mirrored:false,name:\"Icon R\",onClick:onClickwelu7j({overlay:overlay2}),selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1nwilmf\",\"data-framer-portal-id\":elementId3,exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"ZgecQKduk\")}),document.querySelector(\"#overlay\"))})})]})})})})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"G15X8Ua7y\"},nodeId:\"RZbSvAIPB\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-tt1tuj framer-xfrhhh\",\"data-framer-name\":\"Link\",name:\"Link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zu0tcq\",\"data-styles-preset\":\"mH7p5TceR\",children:\"View all jobs\"})}),className:\"framer-139nps6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWlBDC7Ld:{y:593.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:503,width:\"100vw\",y:663.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bd0nzb-container\",id:elementId4,ref:ref6,children:/*#__PURE__*/_jsx(FooterDark,{height:\"100%\",id:\"p49j6LndZ\",layoutId:\"p49j6LndZ\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-rzGR2 { background: var(--token-c32e6e76-0bf1-4ee9-8aa3-f65d5e2a8e62, rgb(255, 255, 255)); }`,\".framer-rzGR2.framer-xfrhhh, .framer-rzGR2 .framer-xfrhhh { display: block; }\",\".framer-rzGR2.framer-to7vo4 { align-content: center; align-items: center; background-color: var(--token-c32e6e76-0bf1-4ee9-8aa3-f65d5e2a8e62, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-rzGR2 .framer-1gjymd9-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-rzGR2 .framer-kcxlsc { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 104px); overflow: visible; position: relative; width: 104px; }\",\".framer-rzGR2 .framer-1icyqpd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 40px 150px 40px; position: relative; width: 100%; }\",\".framer-rzGR2 .framer-eb8ggg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 680px; }\",\".framer-rzGR2 .framer-1wgchnk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rzGR2 .framer-3kgmn2 { --framer-paragraph-spacing: 32px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rzGR2 .framer-17mf4v0 { 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-rzGR2 .framer-ntqfxu { --border-bottom-width: 1px; --border-color: var(--token-8f7de743-5c3d-4b02-a185-4055512f8c40, #000000); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-8f7de743-5c3d-4b02-a185-4055512f8c40, #030303); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 16px 24px 16px 24px; position: relative; width: min-content; }\",\".framer-rzGR2 .framer-1psbagx, .framer-rzGR2 .framer-10aqvzg, .framer-rzGR2 .framer-b8q2r0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-rzGR2 .framer-1e8fm0t-container, .framer-rzGR2 .framer-1fv6lqm-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-rzGR2 .framer-1kwc2sv, .framer-rzGR2 .framer-1nwilmf { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-rzGR2 .framer-18fiv39 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 2; }\",\".framer-rzGR2 .framer-1aboq8n { align-content: flex-start; align-items: flex-start; background-color: var(--token-c32e6e76-0bf1-4ee9-8aa3-f65d5e2a8e62, #ffffff); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; bottom: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; justify-content: flex-start; left: calc(50.00000000000002% - min(90%, 560px) / 2); max-width: 90%; overflow: auto; padding: 0px; position: fixed; top: 40px; width: 560px; z-index: 2; }\",\".framer-rzGR2 .framer-u2yw95 { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: var(--token-c32e6e76-0bf1-4ee9-8aa3-f65d5e2a8e62, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 3; }\",\".framer-rzGR2 .framer-1761tnp-container { flex: none; height: 24px; position: absolute; right: 20px; top: calc(49.27536231884061% - 24px / 2); width: 24px; z-index: 1; }\",\".framer-rzGR2 .framer-114zqip-container, .framer-rzGR2 .framer-1bd0nzb-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-rzGR2 .framer-1aw4vk4 { --border-bottom-width: 1px; --border-color: var(--token-6a83105e-5fc7-4047-a4d9-bfd39b3e9c45, #08a1c3); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-0784d6b3-7d35-46c4-a78c-e9c40b5d48d3, #4ea4fe); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 16px 24px 16px 24px; position: relative; text-decoration: none; width: min-content; }\",\".framer-rzGR2 .framer-tt1tuj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-rzGR2 .framer-139nps6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-rzGR2.framer-to7vo4, .framer-rzGR2 .framer-1icyqpd, .framer-rzGR2 .framer-eb8ggg, .framer-rzGR2 .framer-17mf4v0, .framer-rzGR2 .framer-ntqfxu, .framer-rzGR2 .framer-1aboq8n, .framer-rzGR2 .framer-u2yw95, .framer-rzGR2 .framer-1aw4vk4, .framer-rzGR2 .framer-tt1tuj { gap: 0px; } .framer-rzGR2.framer-to7vo4 > *, .framer-rzGR2 .framer-1aboq8n > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-rzGR2.framer-to7vo4 > :first-child, .framer-rzGR2 .framer-1icyqpd > :first-child, .framer-rzGR2 .framer-eb8ggg > :first-child, .framer-rzGR2 .framer-1aboq8n > :first-child { margin-top: 0px; } .framer-rzGR2.framer-to7vo4 > :last-child, .framer-rzGR2 .framer-1icyqpd > :last-child, .framer-rzGR2 .framer-eb8ggg > :last-child, .framer-rzGR2 .framer-1aboq8n > :last-child { margin-bottom: 0px; } .framer-rzGR2 .framer-1icyqpd > *, .framer-rzGR2 .framer-eb8ggg > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-rzGR2 .framer-17mf4v0 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-rzGR2 .framer-17mf4v0 > :first-child, .framer-rzGR2 .framer-ntqfxu > :first-child, .framer-rzGR2 .framer-u2yw95 > :first-child, .framer-rzGR2 .framer-1aw4vk4 > :first-child, .framer-rzGR2 .framer-tt1tuj > :first-child { margin-left: 0px; } .framer-rzGR2 .framer-17mf4v0 > :last-child, .framer-rzGR2 .framer-ntqfxu > :last-child, .framer-rzGR2 .framer-u2yw95 > :last-child, .framer-rzGR2 .framer-1aw4vk4 > :last-child, .framer-rzGR2 .framer-tt1tuj > :last-child { margin-right: 0px; } .framer-rzGR2 .framer-ntqfxu > *, .framer-rzGR2 .framer-1aw4vk4 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-rzGR2 .framer-u2yw95 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-rzGR2 .framer-tt1tuj > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",`@media (min-width: 810px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-rzGR2 { background: var(--token-c32e6e76-0bf1-4ee9-8aa3-f65d5e2a8e62, rgb(255, 255, 255)); } .framer-rzGR2.framer-to7vo4 { width: 810px; }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-rzGR2 { background: var(--token-c32e6e76-0bf1-4ee9-8aa3-f65d5e2a8e62, rgb(255, 255, 255)); } .framer-rzGR2.framer-to7vo4 { width: 390px; } .framer-rzGR2 .framer-1icyqpd { padding: 20px 20px 100px 20px; }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-rzGR2[data-border=\"true\"]::after, .framer-rzGR2 [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 2136\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"c0a59GWmc\":{\"layout\":[\"fixed\",\"auto\"]},\"IWlBDC7Ld\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerDbEtdzNsT=withCSS(Component,css,\"framer-rzGR2\");export default FramerDbEtdzNsT;FramerDbEtdzNsT.displayName=\"Jobs\";FramerDbEtdzNsT.defaultProps={height:2136,width:1440};addFonts(FramerDbEtdzNsT,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Sk-Modernist Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/bOZZgLv8dgp6UEqA1Nzn3eM1VgE.otf\"}]},...NavbarLogoLightFonts,...PhosphorFonts,...Phosphor1Fonts,...EmbedFonts,...FooterDarkFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"utNjc10Sc\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"utNjc10Sc\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDbEtdzNsT\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"2136\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"c0a59GWmc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IWlBDC7Ld\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "iframeHeight", "setIframeHeight", "hasScript", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "htmlStyle", "containerStyles", "_componentPresets_fonts", "_componentPresets_fonts1", "NavbarLogoLightFonts", "getFonts", "KoiCydCRK_default", "PhosphorFonts", "Icon", "Phosphor1Fonts", "EmbedFonts", "Embed", "FooterDarkFonts", "WsqdXKmEV_default", "breakpoints", "serializationHash", "variantClassNames", "equals", "a", "b", "negate", "value", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "mXZ65hqav_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "style", "className", "layoutId", "variant", "oww75NJWl", "f2K9PftgC", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapwelu7j", "overlay", "paginationInfo", "args", "onClickwelu7j", "onClick1wvko5h", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "visible1", "elementId1", "ref3", "elementId2", "ref4", "elementId3", "ref5", "elementId4", "ref6", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "KoiCydCRK_default", "Image2", "getLoadingLazyAtYPosition", "RichText2", "x", "ComponentPresetsProvider", "l", "overlay1", "Icon", "AnimatePresence", "Ga", "Embed", "Link", "overlay2", "WsqdXKmEV_default", "css", "FramerDbEtdzNsT", "withCSS", "DbEtdzNsT_default", "addFonts", "NavbarLogoLightFonts", "PhosphorFonts", "Phosphor1Fonts", "EmbedFonts", "FooterDarkFonts", "getFontsFromSharedStyle", "fonts", "_componentPresets_fonts", "getFontsFromComponentPreset", "_componentPresets_fonts1", "__FramerMetadata__"]
}
