{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framerusercontent.com/modules/hyAal1kv2AGVqDNRJfKN/MoIm9jq5c2tPvynwMgLk/GMfSt85nJ.js", "ssg:https://framerusercontent.com/modules/BcoLFg8v0J3VX73cS2vs/PJUbYlZPNhBGQWEFcO9d/eLnh3w5BP.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}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 fixed\n *\n * @framerDisableUnlink\n */ export default function Embed({type,url,html}){if(type===\"url\"&&url){return /*#__PURE__*/ _jsx(EmbedURL,{url:url});}if(type===\"html\"&&html){return /*#__PURE__*/ _jsx(EmbedHTML,{html:html});}return /*#__PURE__*/ _jsx(Instructions,{});};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\",displayTextArea:true,type:ControlType.String,hidden(props){return props.type!==\"html\";}}});function Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url}){// 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(!url.startsWith(\"https://\")){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Unsupported protocol.\"});}if(state===undefined){return /*#__PURE__*/ _jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/ _jsx(ErrorMessage,{message:state.message});}if(state===true){const message=`Can't embed ${url} due to its content security policy.`;return /*#__PURE__*/ _jsx(ErrorMessage,{message:message});}return /*#__PURE__*/ _jsx(\"iframe\",{src:url,style:iframeStyle,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}){const ref=useRef();// If the HTML contains a script tag we can't use\n// dangerouslySetInnerHTML because it doesn't execute\n// scripts on the client. Otherwise, we can benefit\n// from SSG by using dangerouslySetInnerHTML.\nconst hasScript=html.includes(\"</script>\");useEffect(()=>{if(!hasScript)return;const div=ref.current;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html,hasScript]);return /*#__PURE__*/ _jsx(\"div\",{ref:ref,style:htmlStyle,dangerouslySetInnerHTML:!hasScript?{__html:html}:undefined});}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}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}const centerTextStyle={textAlign:\"center\",minWidth:140};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (eb71917)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/1Z4bgex9vieIJ2CTrdjM/d7oGJMGtfEGDtY0KLpCK/rm2x4IHIG.js\";const cycleOrder=[\"Rk5YB42iQ\",\"LE3fLypUp\",\"mRockZRa2\"];const variantClassNames={LE3fLypUp:\"framer-v-82apcw\",mRockZRa2:\"framer-v-gc3wdg\",Rk5YB42iQ:\"framer-v-1905tkg\"};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 humanReadableVariantMap={\"Variant 1\":\"Rk5YB42iQ\",\"Variant 2\":\"LE3fLypUp\",\"Variant 3\":\"mRockZRa2\"};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const transformTemplate=(_,t)=>`translate(-50%, -50%) ${t}`;const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"Rk5YB42iQ\",title:LRf76rWO1=\"Employment Application Packet\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"Rk5YB42iQ\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-Z7avK\",sharedStyle.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-1905tkg\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Rk5YB42iQ\",ref:ref,style:{backgroundColor:\"var(--token-077dae8d-5dec-477f-8696-b5b40ebe4d26, rgb(1, 51, 102))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40,...style},transition:transition,...addPropertyOverrides({LE3fLypUp:{\"data-framer-name\":\"Variant 2\"},mRockZRa2:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-1.7px\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:/*#__PURE__*/ _jsx(Link,{href:\"https://na4.docusign.net/Member/PowerFormSigning.aspx?PowerFormId=d5fa999f-4a6f-4441-b149-e46277a7ee28&env=na4&acct=d68ff200-d244-4f2c-a8a1-c73621417528&v=2\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/ _jsx(motion.a,{className:\"framer-styles-preset-1fchfyy\",\"data-styles-preset\":\"rm2x4IHIG\",children:\"Employment Application Packet\"})})})}),className:\"framer-wyvfiu\",layoutDependency:layoutDependency,layoutId:\"qNT1ZSGsN\",style:{\"--extracted-r6o4lv\":\"var(--token-198347c5-7938-454e-8aed-dd22f812f6ef, rgb(87, 87, 87))\",\"--framer-paragraph-spacing\":\"0px\"},text:LRf76rWO1,transformTemplate:transformTemplate,transition:transition,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({LE3fLypUp:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-1.7px\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:/*#__PURE__*/ _jsx(Link,{href:\"https://na4.docusign.net/Member/PowerFormSigning.aspx?PowerFormId=d5fa999f-4a6f-4441-b149-e46277a7ee28&env=na4&acct=d68ff200-d244-4f2c-a8a1-c73621417528&v=2\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/ _jsx(motion.a,{className:\"framer-styles-preset-1fchfyy\",\"data-styles-preset\":\"rm2x4IHIG\",children:\"Employment Application Packet\"})})})})},mRockZRa2:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-1.7px\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:/*#__PURE__*/ _jsx(Link,{href:\"https://na4.docusign.net/Member/PowerFormSigning.aspx?PowerFormId=d5fa999f-4a6f-4441-b149-e46277a7ee28&env=na4&acct=d68ff200-d244-4f2c-a8a1-c73621417528&v=2\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/ _jsx(motion.a,{className:\"framer-styles-preset-1fchfyy\",\"data-styles-preset\":\"rm2x4IHIG\",children:\"Employment Application Packet\"})})})})}},baseVariant,gestureVariant)})})})});});const css=['.framer-Z7avK [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Z7avK .framer-u4loec { display: block; }\",\".framer-Z7avK .framer-1905tkg { height: 44px; overflow: hidden; position: relative; width: 432px; will-change: transform; }\",\".framer-Z7avK .framer-wyvfiu { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre; width: auto; }\",\".framer-Z7avK.framer-v-82apcw .framer-1905tkg { height: 36px; width: 289px; }\",\".framer-Z7avK.framer-v-gc3wdg .framer-1905tkg { height: 36px; width: 248px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 432\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"LE3fLypUp\":{\"layout\":[\"fixed\",\"fixed\"]},\"mRockZRa2\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"LRf76rWO1\":\"title\"}\n */ const FramerGMfSt85nJ=withCSS(Component,css,\"framer-Z7avK\");export default FramerGMfSt85nJ;FramerGMfSt85nJ.displayName=\"Application\";FramerGMfSt85nJ.defaultProps={height:44,width:432};addPropertyControls(FramerGMfSt85nJ,{variant:{options:[\"Rk5YB42iQ\",\"LE3fLypUp\",\"mRockZRa2\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},LRf76rWO1:{defaultValue:\"Employment Application Packet\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerGMfSt85nJ,[...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGMfSt85nJ\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"44\",\"framerIntrinsicWidth\":\"432\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LE3fLypUp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mRockZRa2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"LRf76rWO1\\\":\\\"title\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GMfSt85nJ.map", "// Generated by Framer (10753fe)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";import { addFonts, Container, cx, GeneratedComponentContext, getFonts, Image, Link, optimizeAppear, optimizeAppearTransformTemplate, PropertyOverrides, removeHiddenBreakpointLayers, RichText, useHydratedBreakpointVariants, withCSS, withFX } from \"framer\";import { LayoutGroup, motion } from \"framer-motion\";import * as React from \"react\";import Embed from \"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import FooterDark from \"https://framerusercontent.com/modules/mLrfbmkUpZpjAbpZfnfv/S463dgD02RGiZfMbxQcd/CLJWBUUjl.js\";import Application from \"https://framerusercontent.com/modules/hyAal1kv2AGVqDNRJfKN/MoIm9jq5c2tPvynwMgLk/GMfSt85nJ.js\";import NavbarLogoDark from \"https://framerusercontent.com/modules/MlrsscJZKXFpZNksO8Je/0C7CMkDFyzuYpECTHesa/s18mDCXdT.js\";import * as sharedStyle from \"https://framerusercontent.com/modules/nvvYiVHlNwz6MOX2deEw/lBZYoJs4F6OUcjeuFCwe/xZndidUCt.js\";import metadataProvider from \"https://framerusercontent.com/modules/oWyMOd3uus9JKUJ3n8WW/9uKvkN5Z9XWkKBaKaKrJ/eLnh3w5BP.js\";const NavbarLogoDarkFonts = getFonts(NavbarLogoDark);const ApplicationFonts = getFonts(Application);const MotionDivWithFX = withFX(motion.div);const ImageWithFX = withFX(Image);const EmbedFonts = getFonts(Embed);const FooterDarkFonts = getFonts(FooterDark);const cycleOrder = [\"T0hJvali5\", \"hlo8YqA1W\", \"r2zWICHqm\", \"uFTGZYP1V\", \"s0n7gHita\"];const breakpoints = { hlo8YqA1W: \"(min-width: 810px) and (max-width: 1199px)\", r2zWICHqm: \"(max-width: 809px)\", s0n7gHita: \"(min-width: 1728px)\", T0hJvali5: \"(min-width: 1200px) and (max-width: 1462px)\", uFTGZYP1V: \"(min-width: 1463px) and (max-width: 1727px)\" };const isBrowser = () => typeof document !== \"undefined\";const variantClassNames = { hlo8YqA1W: \"framer-v-f258wp\", r2zWICHqm: \"framer-v-ilb3ix\", s0n7gHita: \"framer-v-zq50md\", T0hJvali5: \"framer-v-dz4ffq\", uFTGZYP1V: \"framer-v-66g394\" };if (isBrowser()) {removeHiddenBreakpointLayers(\"T0hJvali5\", breakpoints, variantClassNames);}const humanReadableVariantMap = { \"Big Screen\": \"s0n7gHita\", \"Desktop 2\": \"uFTGZYP1V\", Desktop: \"T0hJvali5\", Phone: \"r2zWICHqm\", Tablet: \"hlo8YqA1W\" };const transitions = { default: { duration: 0 } };const transformTemplate = (_, t) => `${t} rotate(-36deg)`;const transformTemplate1 = (_, t) => `translateX(-50%) ${t}`;const transformTemplate2 = (_, t) => `${t} rotate(-180deg)`;const transition1 = { damping: 30, delay: 0, mass: 1, stiffness: 400, type: \"spring\" };const animation = { opacity: 0, rotate: 0, scale: 1, transition: transition1, x: 0, y: 150 };const transformTemplate3 = (_, t) => `perspective(1200px) ${t}`;const animation1 = { opacity: 1, rotate: 0, rotateX: 0, rotateY: 0, scale: 1, transition: transition1, x: 0, y: 0 };const animation2 = { opacity: .001, rotate: 0, scale: 1, x: 0, y: 150 };const animation3 = { opacity: 0, rotate: 0, scale: 1, x: 150, y: 0 };const animation4 = { opacity: 0, rotate: 0, scale: 1, transition: transition1, x: 150, y: 0 };const animation5 = { opacity: 0, rotate: 0, scale: 1, x: -150, y: 0 };const animation6 = { opacity: 0, rotate: 0, scale: 1, transition: transition1, x: -150, y: 0 };const transformTemplate4 = (_, t) => `perspective(1200px) ${t} rotate(-180deg)`;const metadata = metadataProvider();const Component = /*#__PURE__*/React.forwardRef(function ({ id, style, className, width, height, layoutId, variant: outerVariant = \"T0hJvali5\", ...restProps }, ref) {const outerVariantId = humanReadableVariantMap[outerVariant];const variant = outerVariantId || outerVariant;React.useLayoutEffect(() => {const metadata1 = metadataProvider();document.title = metadata1.title || \"\";if (metadata1.viewport) {var ref;(ref = document.querySelector('meta[name=\"viewport\"]')) === null || ref === void 0 ? void 0 : ref.setAttribute(\"content\", metadata1.viewport);}if (metadata1.bodyClassName) {Array.from(document.body.classList).filter((c) => c.startsWith(\"framer-body-\")).map((c) => document.body.classList.remove(c));document.body.classList.add(metadata1.bodyClassName);}}, []);const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);const gestureVariant = undefined;const transition = transitions.default;const isDisplayed = () => {if (baseVariant === \"r2zWICHqm\") return true;return !isBrowser();};const isDisplayed1 = () => {if (baseVariant === \"hlo8YqA1W\") return true;return !isBrowser();};const isDisplayed2 = () => {if ([\"hlo8YqA1W\", \"r2zWICHqm\"].includes(baseVariant)) return !isBrowser();return true;};const isDisplayed3 = () => {if (baseVariant === \"r2zWICHqm\") return !isBrowser();return true;};const defaultLayoutId = React.useId();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, { value: { primaryVariantId: \"T0hJvali5\", variantClassNames }, children: /*#__PURE__*/_jsx(LayoutGroup, { id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId, children: /*#__PURE__*/_jsxs(motion.div, { className: cx(\"framer-qE7Y2\", sharedStyle.className), style: { display: \"contents\" }, children: [/*#__PURE__*/_jsxs(motion.div, { ...restProps, className: cx(\"framer-dz4ffq\", className), ref: ref, style: { ...style }, children: [/*#__PURE__*/_jsx(Container, { className: \"framer-vtj29s-container\", children: /*#__PURE__*/_jsx(PropertyOverrides, { breakpoint: baseVariant, overrides: { hlo8YqA1W: { variant: \"xoF8cA44G\" }, r2zWICHqm: { variant: \"er6oUWx8U\" } }, children: /*#__PURE__*/_jsx(NavbarLogoDark, { height: \"100%\", id: \"TArRbiLDt\", layoutId: \"TArRbiLDt\", style: { width: \"100%\" }, variant: \"lUpjPaZ_k\", width: \"100%\" }) }) }), isDisplayed() && /*#__PURE__*/_jsxs(motion.div, { className: \"framer-1e8fshg hidden-dz4ffq hidden-f258wp hidden-66g394 hidden-zq50md\", \"data-framer-name\": \"Hero Frame\", name: \"Hero Frame\", children: [/*#__PURE__*/_jsx(PropertyOverrides, { breakpoint: baseVariant, overrides: { r2zWICHqm: { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 346.5, intrinsicWidth: 750, pixelHeight: 693, pixelWidth: 1500, sizes: \"calc(100vw + 874px)\", src: new URL(\"https://framerusercontent.com/images/NviQ2IFiqwlkPYB8AjCJKey9Nk.png?scale-down-to=1024\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/NviQ2IFiqwlkPYB8AjCJKey9Nk.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/NviQ2IFiqwlkPYB8AjCJKey9Nk.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/NviQ2IFiqwlkPYB8AjCJKey9Nk.png\").href} 1500w` } } }, children: /*#__PURE__*/_jsx(Image, { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 346.5, intrinsicWidth: 750, pixelHeight: 693, pixelWidth: 1500, src: new URL(\"https://framerusercontent.com/images/NviQ2IFiqwlkPYB8AjCJKey9Nk.png?scale-down-to=1024\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/NviQ2IFiqwlkPYB8AjCJKey9Nk.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/NviQ2IFiqwlkPYB8AjCJKey9Nk.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/NviQ2IFiqwlkPYB8AjCJKey9Nk.png\").href} 1500w` }, className: \"framer-1nc3vpm\", \"data-framer-name\": \"banner_2_01\", name: \"banner_2_01\", children: /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"p\", { className: \"framer-styles-preset-21ogod\", \"data-styles-preset\": \"xZndidUCt\", style: { \"--framer-text-color\": \"var(--token-e801a895-0d23-499d-b6a8-b9115e46498e, rgb(245, 250, 255))\" }, children: \"Join our team and embark on an extraordinary journey where innovation meets passion! At Perfect Clean Property Services, we believe in creating a workplace that thrives on collaboration, creativity, and the pursuit of excellence.\" }) }), className: \"framer-82bcyf\", verticalAlignment: \"top\", withExternalLayout: true }) }) }), /*#__PURE__*/_jsx(motion.div, { className: \"framer-1lvx7ag\", \"data-framer-name\": \"Image\", name: \"Image\" }), /*#__PURE__*/_jsx(Image, { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 6e3, intrinsicWidth: 4e3, pixelHeight: 6e3, pixelWidth: 4e3, sizes: \"340px\", src: new URL(\"https://framerusercontent.com/images/Aeg8KytKLHhBBi3EFwYdqxrkBw.jpg\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/Aeg8KytKLHhBBi3EFwYdqxrkBw.jpg?scale-down-to=512\").href} 341w, ${new URL(\"https://framerusercontent.com/images/Aeg8KytKLHhBBi3EFwYdqxrkBw.jpg?scale-down-to=1024\").href} 682w, ${new URL(\"https://framerusercontent.com/images/Aeg8KytKLHhBBi3EFwYdqxrkBw.jpg?scale-down-to=2048\").href} 1365w, ${new URL(\"https://framerusercontent.com/images/Aeg8KytKLHhBBi3EFwYdqxrkBw.jpg?scale-down-to=4096\").href} 2730w, ${new URL(\"https://framerusercontent.com/images/Aeg8KytKLHhBBi3EFwYdqxrkBw.jpg\").href} 4000w` }, className: \"framer-2cro7l\", \"data-framer-name\": \"Image\", name: \"Image\", children: /*#__PURE__*/_jsx(Image, { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 1365, intrinsicWidth: 2047.5, pixelHeight: 2730, pixelWidth: 4095, src: new URL(\"https://framerusercontent.com/images/PwHStaSfotqLgc2wxMYVNZWn0Qw.jpeg?scale-down-to=1024\").href }, className: \"framer-1eat2cw\", \"data-framer-name\": \"$3587AF44_551D_48B5_9A09_A41C1CEFF92C\", name: \"$3587AF44_551D_48B5_9A09_A41C1CEFF92C\" }) }), /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"h1\", { style: { \"--font-selector\": \"R0Y7SW50ZXItNzAw\", \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif', \"--framer-font-size\": \"35px\", \"--framer-font-weight\": \"700\", \"--framer-letter-spacing\": \"-2px\", \"--framer-text-alignment\": \"left\", \"--framer-text-color\": \"var(--token-e801a895-0d23-499d-b6a8-b9115e46498e, rgb(245, 250, 255))\" }, children: \"Employment\" }) }), className: \"framer-166a1g2\", fonts: [\"GF;Inter-700\"], verticalAlignment: \"top\", withExternalLayout: true })] }), isDisplayed() && /*#__PURE__*/_jsxs(motion.div, { className: \"framer-r72t3b hidden-dz4ffq hidden-f258wp hidden-66g394 hidden-zq50md\", \"data-framer-name\": \"Hero Frame\", name: \"Hero Frame\", children: [/*#__PURE__*/_jsx(motion.div, { className: \"framer-ow89w\", transformTemplate: transformTemplate }), /*#__PURE__*/_jsx(motion.div, { className: \"framer-4vext5\", transformTemplate: transformTemplate }), /*#__PURE__*/_jsx(motion.div, { className: \"framer-1avxeg3\", transformTemplate: transformTemplate }), /*#__PURE__*/_jsx(motion.div, { className: \"framer-h3qgs5\", transformTemplate: transformTemplate }), /*#__PURE__*/_jsx(motion.div, { className: \"framer-g8rax8\", \"data-framer-name\": \"Image\", name: \"Image\" }), /*#__PURE__*/_jsx(Image, { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 4e3, intrinsicWidth: 6e3, pixelHeight: 4e3, pixelWidth: 6e3, sizes: \"340px\", src: new URL(\"https://framerusercontent.com/images/yYTl0gscKGfziWIoMgUPGQiw.jpg\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/yYTl0gscKGfziWIoMgUPGQiw.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/yYTl0gscKGfziWIoMgUPGQiw.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/yYTl0gscKGfziWIoMgUPGQiw.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/yYTl0gscKGfziWIoMgUPGQiw.jpg?scale-down-to=4096\").href} 4096w, ${new URL(\"https://framerusercontent.com/images/yYTl0gscKGfziWIoMgUPGQiw.jpg\").href} 6000w` }, className: \"framer-glr6pg\", \"data-framer-name\": \"Image\", name: \"Image\" }), /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"h1\", { style: { \"--font-selector\": \"R0Y7SW50ZXItNTAw\", \"--framer-font-size\": \"27px\", \"--framer-font-weight\": \"500\", \"--framer-letter-spacing\": \"-2px\", \"--framer-text-alignment\": \"left\", \"--framer-text-color\": \"var(--token-2c3741ae-5cac-41b6-92f3-702378f7b001, rgb(2, 75, 49))\" }, children: \"Click the link below to fill out the application packet\" }) }), className: \"framer-150t5a\", fonts: [\"GF;Inter-500\"], transformTemplate: transformTemplate1, verticalAlignment: \"top\", withExternalLayout: true }), /*#__PURE__*/_jsx(Container, { className: \"framer-zwlbxl-container\", children: /*#__PURE__*/_jsx(Application, { height: \"100%\", id: \"mBqEOYF02\", layoutId: \"mBqEOYF02\", style: { height: \"100%\", width: \"100%\" }, title: \"Employment Application Packet\", variant: \"LE3fLypUp\", width: \"100%\" }) })] }), isDisplayed1() && /*#__PURE__*/_jsxs(motion.div, { className: \"framer-1ycuty3 hidden-dz4ffq hidden-ilb3ix hidden-66g394 hidden-zq50md\", \"data-framer-name\": \"Hero Frame\", name: \"Hero Frame\", children: [/*#__PURE__*/_jsx(PropertyOverrides, { breakpoint: baseVariant, overrides: { hlo8YqA1W: { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 346.5, intrinsicWidth: 750, pixelHeight: 693, pixelWidth: 1500, sizes: \"calc(100vw + 68px)\", src: new URL(\"https://framerusercontent.com/images/NviQ2IFiqwlkPYB8AjCJKey9Nk.png?scale-down-to=1024\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/NviQ2IFiqwlkPYB8AjCJKey9Nk.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/NviQ2IFiqwlkPYB8AjCJKey9Nk.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/NviQ2IFiqwlkPYB8AjCJKey9Nk.png\").href} 1500w` } } }, children: /*#__PURE__*/_jsx(Image, { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 346.5, intrinsicWidth: 750, loading: \"lazy\", pixelHeight: 693, pixelWidth: 1500, src: new URL(\"https://framerusercontent.com/images/NviQ2IFiqwlkPYB8AjCJKey9Nk.png?scale-down-to=1024\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/NviQ2IFiqwlkPYB8AjCJKey9Nk.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/NviQ2IFiqwlkPYB8AjCJKey9Nk.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/NviQ2IFiqwlkPYB8AjCJKey9Nk.png\").href} 1500w` }, className: \"framer-1b10s6e\", \"data-framer-name\": \"banner_2_01\", name: \"banner_2_01\", children: /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"h2\", { style: { \"--font-selector\": \"R0Y7SW50ZXItNTAw\", \"--framer-font-size\": \"23px\", \"--framer-font-weight\": \"500\", \"--framer-letter-spacing\": \"-0.5px\", \"--framer-line-height\": \"1.5em\", \"--framer-text-alignment\": \"left\", \"--framer-text-color\": \"var(--token-e801a895-0d23-499d-b6a8-b9115e46498e, rgb(245, 250, 255))\" }, children: \"Join our team and embark on an extraordinary journey where innovation meets passion! At Perfect Clean Property Services, we believe in creating a workplace that thrives on collaboration, creativity, and the pursuit of excellence.\" }) }), className: \"framer-wn4sn4\", fonts: [\"GF;Inter-500\"], verticalAlignment: \"top\", withExternalLayout: true }) }) }), /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"h1\", { style: { \"--font-selector\": \"R0Y7SW50ZXItNzAw\", \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif', \"--framer-font-size\": \"50px\", \"--framer-font-weight\": \"700\", \"--framer-letter-spacing\": \"-2px\", \"--framer-text-alignment\": \"left\", \"--framer-text-color\": \"var(--token-e801a895-0d23-499d-b6a8-b9115e46498e, rgb(245, 250, 255))\" }, children: \"Employment\" }) }), className: \"framer-199sksm\", fonts: [\"GF;Inter-700\"], verticalAlignment: \"top\", withExternalLayout: true }), /*#__PURE__*/_jsx(motion.div, { className: \"framer-1pse0xc\", \"data-framer-name\": \"Image\", name: \"Image\" }), /*#__PURE__*/_jsx(PropertyOverrides, { breakpoint: baseVariant, overrides: { hlo8YqA1W: { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 6e3, intrinsicWidth: 4e3, pixelHeight: 6e3, pixelWidth: 4e3, src: new URL(\"https://framerusercontent.com/images/Aeg8KytKLHhBBi3EFwYdqxrkBw.jpg?scale-down-to=512\").href } } }, children: /*#__PURE__*/_jsx(Image, { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 6e3, intrinsicWidth: 4e3, loading: \"lazy\", pixelHeight: 6e3, pixelWidth: 4e3, src: new URL(\"https://framerusercontent.com/images/Aeg8KytKLHhBBi3EFwYdqxrkBw.jpg?scale-down-to=512\").href }, className: \"framer-mcbcdy\", \"data-framer-name\": \"Image\", name: \"Image\", children: /*#__PURE__*/_jsx(PropertyOverrides, { breakpoint: baseVariant, overrides: { hlo8YqA1W: { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 1365, intrinsicWidth: 2047.5, pixelHeight: 2730, pixelWidth: 4095, src: new URL(\"https://framerusercontent.com/images/PwHStaSfotqLgc2wxMYVNZWn0Qw.jpeg?scale-down-to=1024\").href } } }, children: /*#__PURE__*/_jsx(Image, { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 1365, intrinsicWidth: 2047.5, loading: \"lazy\", pixelHeight: 2730, pixelWidth: 4095, src: new URL(\"https://framerusercontent.com/images/PwHStaSfotqLgc2wxMYVNZWn0Qw.jpeg?scale-down-to=1024\").href }, className: \"framer-1lddpzi\", \"data-framer-name\": \"$3587AF44_551D_48B5_9A09_A41C1CEFF92C\", name: \"$3587AF44_551D_48B5_9A09_A41C1CEFF92C\" }) }) }) })] }), isDisplayed() && /*#__PURE__*/_jsx(motion.div, { className: \"framer-fa2ltz hidden-dz4ffq hidden-f258wp hidden-66g394 hidden-zq50md\" }), isDisplayed1() && /*#__PURE__*/_jsxs(motion.div, { className: \"framer-1qvunbn hidden-dz4ffq hidden-ilb3ix hidden-66g394 hidden-zq50md\", \"data-framer-name\": \"Hero Frame\", name: \"Hero Frame\", children: [/*#__PURE__*/_jsx(motion.div, { className: \"framer-tc6ya2\", transformTemplate: transformTemplate }), /*#__PURE__*/_jsx(motion.div, { className: \"framer-1iqn77c\", transformTemplate: transformTemplate }), /*#__PURE__*/_jsx(motion.div, { className: \"framer-1dg3fi4\", transformTemplate: transformTemplate }), /*#__PURE__*/_jsx(motion.div, { className: \"framer-1l7371h\", transformTemplate: transformTemplate }), /*#__PURE__*/_jsx(motion.div, { className: \"framer-4fso0g\", \"data-framer-name\": \"Image\", name: \"Image\", transformTemplate: transformTemplate2 }), /*#__PURE__*/_jsx(Image, { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 4e3, intrinsicWidth: 6e3, pixelHeight: 4e3, pixelWidth: 6e3, sizes: \"361.103px\", src: new URL(\"https://framerusercontent.com/images/yYTl0gscKGfziWIoMgUPGQiw.jpg\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/yYTl0gscKGfziWIoMgUPGQiw.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/yYTl0gscKGfziWIoMgUPGQiw.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/yYTl0gscKGfziWIoMgUPGQiw.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/yYTl0gscKGfziWIoMgUPGQiw.jpg?scale-down-to=4096\").href} 4096w, ${new URL(\"https://framerusercontent.com/images/yYTl0gscKGfziWIoMgUPGQiw.jpg\").href} 6000w` }, className: \"framer-157zq5r\", \"data-framer-name\": \"Image\", name: \"Image\" }), /*#__PURE__*/_jsx(Container, { className: \"framer-bi57gq-container\", children: /*#__PURE__*/_jsx(Application, { height: \"100%\", id: \"qdtaXar4M\", layoutId: \"qdtaXar4M\", style: { height: \"100%\", width: \"100%\" }, title: \"Employment Application Packet\", variant: \"LE3fLypUp\", width: \"100%\" }) }), /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"h1\", { style: { \"--font-selector\": \"R0Y7SW50ZXItNTAw\", \"--framer-font-size\": \"27px\", \"--framer-font-weight\": \"500\", \"--framer-letter-spacing\": \"-2px\", \"--framer-text-alignment\": \"left\", \"--framer-text-color\": \"var(--token-2c3741ae-5cac-41b6-92f3-702378f7b001, rgb(2, 75, 49))\" }, children: \"Click the link below to fill out the application packet\" }) }), className: \"framer-19eht79\", fonts: [\"GF;Inter-500\"], verticalAlignment: \"top\", withExternalLayout: true })] }), isDisplayed2() && /*#__PURE__*/_jsx(PropertyOverrides, { breakpoint: baseVariant, overrides: { s0n7gHita: { \"data-framer-appear-id\": \"9ldy9u\", animate: optimizeAppear(\"animate\", \"9ldy9u\", animation1, \"zq50md\"), initial: optimizeAppear(\"initial\", \"9ldy9u\", animation2, \"zq50md\"), transformTemplate: optimizeAppearTransformTemplate(\"9ldy9u\", transformTemplate3) }, uFTGZYP1V: { \"data-framer-appear-id\": \"1io3g8z\", animate: optimizeAppear(\"animate\", \"1io3g8z\", animation1, \"66g394\"), initial: optimizeAppear(\"initial\", \"1io3g8z\", animation2, \"66g394\"), transformTemplate: optimizeAppearTransformTemplate(\"1io3g8z\", transformTemplate3) } }, children: /*#__PURE__*/_jsxs(motion.div, { animate: optimizeAppear(\"animate\", \"1l6bpvr\", animation1, \"dz4ffq\"), className: \"framer-1l6bpvr hidden-f258wp hidden-ilb3ix\", \"data-framer-appear-id\": \"1l6bpvr\", \"data-framer-name\": \"Hero Frame\", exit: animation, initial: optimizeAppear(\"initial\", \"1l6bpvr\", animation2, \"dz4ffq\"), name: \"Hero Frame\", transformTemplate: optimizeAppearTransformTemplate(\"1l6bpvr\", transformTemplate3), children: [/*#__PURE__*/_jsx(Image, { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 346.5, intrinsicWidth: 750, pixelHeight: 693, pixelWidth: 1500, sizes: \"100vw\", src: new URL(\"https://framerusercontent.com/images/NviQ2IFiqwlkPYB8AjCJKey9Nk.png?scale-down-to=1024\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/NviQ2IFiqwlkPYB8AjCJKey9Nk.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/NviQ2IFiqwlkPYB8AjCJKey9Nk.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/NviQ2IFiqwlkPYB8AjCJKey9Nk.png\").href} 1500w` }, className: \"framer-miubms\", \"data-framer-name\": \"banner_2_01\", name: \"banner_2_01\" }), /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"h1\", { style: { \"--font-selector\": \"R0Y7SW50ZXItNzAw\", \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif', \"--framer-font-size\": \"50px\", \"--framer-font-weight\": \"700\", \"--framer-letter-spacing\": \"-2px\", \"--framer-text-alignment\": \"left\", \"--framer-text-color\": \"var(--token-e801a895-0d23-499d-b6a8-b9115e46498e, rgb(245, 250, 255))\" }, children: \"Employment\" }) }), className: \"framer-2tp3sj\", fonts: [\"GF;Inter-700\"], verticalAlignment: \"top\", withExternalLayout: true }), /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"h2\", { style: { \"--font-selector\": \"R0Y7SW50ZXItNTAw\", \"--framer-font-size\": \"25px\", \"--framer-font-weight\": \"500\", \"--framer-letter-spacing\": \"-0.5px\", \"--framer-line-height\": \"1.5em\", \"--framer-text-alignment\": \"left\", \"--framer-text-color\": \"var(--token-e801a895-0d23-499d-b6a8-b9115e46498e, rgb(245, 250, 255))\" }, children: \"Join our team and embark on an extraordinary journey where innovation meets passion! At Perfect Clean Property Services, we believe in creating a workplace that thrives on collaboration, creativity, and the pursuit of excellence.\" }) }), className: \"framer-4yhoi\", fonts: [\"GF;Inter-500\"], verticalAlignment: \"top\", withExternalLayout: true }), /*#__PURE__*/_jsx(motion.div, { className: \"framer-15cwxw6\", \"data-framer-name\": \"Image\", name: \"Image\" }), /*#__PURE__*/_jsx(motion.div, { className: \"framer-1frrxrs\", \"data-framer-name\": \"Image\", name: \"Image\", children: /*#__PURE__*/_jsx(Image, { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 1365, intrinsicWidth: 2047.5, pixelHeight: 2730, pixelWidth: 4095, src: new URL(\"https://framerusercontent.com/images/PwHStaSfotqLgc2wxMYVNZWn0Qw.jpeg?scale-down-to=1024\").href }, className: \"framer-1iky84m\", \"data-framer-name\": \"$3587AF44_551D_48B5_9A09_A41C1CEFF92C\", name: \"$3587AF44_551D_48B5_9A09_A41C1CEFF92C\" }) })] }) }), isDisplayed2() && /*#__PURE__*/_jsxs(motion.div, { className: \"framer-1lbdvux hidden-f258wp hidden-ilb3ix\", \"data-framer-name\": \"Hero Frame\", name: \"Hero Frame\", children: [/*#__PURE__*/_jsx(motion.div, { className: \"framer-4rxmfs\", transformTemplate: transformTemplate }), /*#__PURE__*/_jsx(motion.div, { className: \"framer-11lj5ia\", transformTemplate: transformTemplate }), /*#__PURE__*/_jsx(motion.div, { className: \"framer-nnft2p\", transformTemplate: transformTemplate }), /*#__PURE__*/_jsx(motion.div, { className: \"framer-x1sg85\", transformTemplate: transformTemplate }), /*#__PURE__*/_jsxs(MotionDivWithFX, { __framer__animate: { transition: transition1 }, __framer__animateOnce: true, __framer__enter: animation3, __framer__exit: animation4, __framer__styleAppearEffectEnabled: true, __framer__threshold: .5, __perspectiveFX: false, __targetOpacity: 1, className: \"framer-1j754po\", transformTemplate: transformTemplate3, children: [/*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"h1\", { style: { \"--font-selector\": \"R0Y7SW50ZXItNTAw\", \"--framer-font-size\": \"30px\", \"--framer-font-weight\": \"500\", \"--framer-letter-spacing\": \"-2px\", \"--framer-text-alignment\": \"left\", \"--framer-text-color\": \"var(--token-2c3741ae-5cac-41b6-92f3-702378f7b001, rgb(2, 75, 49))\" }, children: \"Click the link below to fill out the application packet\" }) }), className: \"framer-2ai9da\", fonts: [\"GF;Inter-500\"], verticalAlignment: \"top\", withExternalLayout: true }), /*#__PURE__*/_jsx(Container, { className: \"framer-1v443vv-container\", children: /*#__PURE__*/_jsx(Application, { height: \"100%\", id: \"NZog28018\", layoutId: \"NZog28018\", style: { height: \"100%\", width: \"100%\" }, title: \"Employment Application Packet\", variant: \"Rk5YB42iQ\", width: \"100%\" }) })] }), /*#__PURE__*/_jsx(MotionDivWithFX, { __framer__animate: { transition: transition1 }, __framer__animateOnce: true, __framer__enter: animation5, __framer__exit: animation6, __framer__styleAppearEffectEnabled: true, __framer__threshold: .5, __perspectiveFX: false, __targetOpacity: 1, className: \"framer-g4pnmi\", \"data-framer-name\": \"Image\", name: \"Image\", transformTemplate: transformTemplate4 }), /*#__PURE__*/_jsx(ImageWithFX, { __framer__animate: { transition: transition1 }, __framer__animateOnce: true, __framer__enter: animation5, __framer__exit: animation6, __framer__styleAppearEffectEnabled: true, __framer__threshold: .5, __perspectiveFX: false, __targetOpacity: 1, background: { alt: \"\", fit: \"fill\", intrinsicHeight: 4e3, intrinsicWidth: 6e3, pixelHeight: 4e3, pixelWidth: 6e3, sizes: \"564px\", src: new URL(\"https://framerusercontent.com/images/yYTl0gscKGfziWIoMgUPGQiw.jpg\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/yYTl0gscKGfziWIoMgUPGQiw.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/yYTl0gscKGfziWIoMgUPGQiw.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/yYTl0gscKGfziWIoMgUPGQiw.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/yYTl0gscKGfziWIoMgUPGQiw.jpg?scale-down-to=4096\").href} 4096w, ${new URL(\"https://framerusercontent.com/images/yYTl0gscKGfziWIoMgUPGQiw.jpg\").href} 6000w` }, className: \"framer-9amdw9\", \"data-framer-name\": \"Image\", name: \"Image\", transformTemplate: transformTemplate3 })] }), /*#__PURE__*/_jsxs(motion.div, { className: \"framer-3g8zs1\", children: [/*#__PURE__*/_jsxs(MotionDivWithFX, { __framer__animate: { transition: transition1 }, __framer__animateOnce: true, __framer__enter: animation3, __framer__exit: animation4, __framer__styleAppearEffectEnabled: true, __framer__threshold: .5, __perspectiveFX: false, __targetOpacity: 1, className: \"framer-v91xw3\", transformTemplate: transformTemplate3, children: [/*#__PURE__*/_jsx(PropertyOverrides, { breakpoint: baseVariant, overrides: { r2zWICHqm: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsxs(\"h1\", { style: { \"--font-selector\": \"R0Y7SW50ZXItNTAw\", \"--framer-font-size\": \"30px\", \"--framer-font-weight\": \"500\", \"--framer-letter-spacing\": \"-2px\", \"--framer-text-alignment\": \"center\", \"--framer-text-color\": \"var(--token-2c3741ae-5cac-41b6-92f3-702378f7b001, rgb(2, 75, 49))\" }, children: [/*#__PURE__*/_jsx(\"span\", { style: { \"--font-selector\": \"R0Y7SW50ZXItODAw\", \"--framer-font-size\": \"36px\", \"--framer-font-weight\": \"800\", \"--framer-text-color\": \"var(--token-077dae8d-5dec-477f-8696-b5b40ebe4d26, rgb(1, 51, 102))\" }, children: \"For Subcontractors:\" }), /*#__PURE__*/_jsx(\"span\", { style: { \"--font-selector\": \"R0Y7SW50ZXItODAw\", \"--framer-font-weight\": \"800\", \"--framer-text-color\": \"var(--token-077dae8d-5dec-477f-8696-b5b40ebe4d26, rgb(1, 51, 102))\" }, children: /*#__PURE__*/_jsx(\"br\", {}) }), /*#__PURE__*/_jsx(\"br\", {}), \"Please review our subcontracting information packet and download a W-9 form.\"] }) }) } }, children: /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsxs(\"h1\", { style: { \"--font-selector\": \"R0Y7SW50ZXItNTAw\", \"--framer-font-size\": \"30px\", \"--framer-font-weight\": \"500\", \"--framer-letter-spacing\": \"-2px\", \"--framer-text-alignment\": \"left\", \"--framer-text-color\": \"var(--token-2c3741ae-5cac-41b6-92f3-702378f7b001, rgb(2, 75, 49))\" }, children: [/*#__PURE__*/_jsx(\"span\", { style: { \"--font-selector\": \"R0Y7SW50ZXItODAw\", \"--framer-font-size\": \"36px\", \"--framer-font-weight\": \"800\", \"--framer-text-color\": \"var(--token-077dae8d-5dec-477f-8696-b5b40ebe4d26, rgb(1, 51, 102))\" }, children: \"For Subcontractors:\" }), /*#__PURE__*/_jsx(\"span\", { style: { \"--font-selector\": \"R0Y7SW50ZXItODAw\", \"--framer-font-weight\": \"800\", \"--framer-text-color\": \"var(--token-077dae8d-5dec-477f-8696-b5b40ebe4d26, rgb(1, 51, 102))\" }, children: /*#__PURE__*/_jsx(\"br\", {}) }), /*#__PURE__*/_jsx(\"br\", {}), \"Please review our subcontracting information packet and download a W-9 form.\"] }) }), className: \"framer-1fjab8b\", fonts: [\"GF;Inter-500\", \"GF;Inter-800\"], verticalAlignment: \"top\", withExternalLayout: true }) }), /*#__PURE__*/_jsx(Link, { href: \"https://www.irs.gov/pub/irs-pdf/fw9.pdf\", openInNewTab: true, children: /*#__PURE__*/_jsx(motion.a, { className: \"framer-1b0e14q framer-ubsdkc\", \"data-framer-name\": \"Button\", \"data-reset\": \"button\", name: \"Button\", children: /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"p\", { style: { \"--font-selector\": \"R0Y7RE0gU2Fucy01MDA=\", \"--framer-font-family\": '\"DM Sans\", sans-serif', \"--framer-font-size\": \"20px\", \"--framer-font-weight\": \"500\", \"--framer-text-color\": \"rgb(255, 255, 255)\" }, children: \"Download W-9 Form\" }) }), className: \"framer-1slyypk\", fonts: [\"GF;DM Sans-500\"], verticalAlignment: \"top\", withExternalLayout: true }) }) })] }), isDisplayed() && /*#__PURE__*/_jsx(motion.div, { className: \"framer-cyt47k hidden-dz4ffq hidden-f258wp hidden-66g394 hidden-zq50md\" }), /*#__PURE__*/_jsx(Container, { className: \"framer-1x42jfo-container\", children: /*#__PURE__*/_jsx(Embed, { height: \"100%\", html: '<script src=\"https://cdn.commoninja.com/sdk/latest/commonninja.js\" defer></script>\\n<div class=\"commonninja_component pid-f8ff9660-0368-405b-8a6b-b4c63831d886\"></div>', id: \"HGVzAk4zO\", layoutId: \"HGVzAk4zO\", style: { height: \"100%\", width: \"100%\" }, type: \"html\", url: \"\", width: \"100%\" }) })] }), isDisplayed2() && /*#__PURE__*/_jsx(motion.div, { className: \"framer-qdmkts hidden-f258wp hidden-ilb3ix\" }), /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsxs(React.Fragment, { children: [/*#__PURE__*/_jsx(\"p\", { className: \"framer-styles-preset-21ogod\", \"data-styles-preset\": \"xZndidUCt\", children: \"Equal Opportunity Employment Statement\" }), /*#__PURE__*/_jsx(\"p\", { className: \"framer-styles-preset-21ogod\", \"data-styles-preset\": \"xZndidUCt\", children: \"At Perfect Clean Property Services, we are committed to providing equal employment opportunities to all individuals without regard to race, color, religion, sex, national origin, age, disability, sexual orientation, gender identity, genetic information, or any other characteristic protected by applicable laws.\" }), /*#__PURE__*/_jsx(\"p\", { className: \"framer-styles-preset-21ogod\", \"data-styles-preset\": \"xZndidUCt\", children: \"We believe that diversity and inclusion are essential to fostering innovation, creativity, and a vibrant work environment. We value the unique perspectives and contributions that each individual brings to our team.\" }), /*#__PURE__*/_jsx(\"p\", { className: \"framer-styles-preset-21ogod\", \"data-styles-preset\": \"xZndidUCt\", children: \"We strive to create a workplace that is free from discrimination, harassment, and bias. Our hiring, promotion, and employee development practices are based on merit, qualifications, and abilities. We provide equal opportunities for career growth and advancement, ensuring that all employees have an equal chance to succeed.\" }), /*#__PURE__*/_jsx(\"p\", { className: \"framer-styles-preset-21ogod\", \"data-styles-preset\": \"xZndidUCt\", children: \"We actively promote a culture of respect, fairness, and inclusivity. We embrace diversity in all its forms and are committed to cultivating an environment where everyone feels valued, heard, and supported.\" }), /*#__PURE__*/_jsx(\"p\", { className: \"framer-styles-preset-21ogod\", \"data-styles-preset\": \"xZndidUCt\", children: \"Our commitment to equal opportunity extends beyond our workforce. We also expect our business partners, vendors, and contractors to adhere to the principles of equal opportunity and non-discrimination.\" }), /*#__PURE__*/_jsx(\"p\", { className: \"framer-styles-preset-21ogod\", \"data-styles-preset\": \"xZndidUCt\", children: \"We encourage all qualified individuals to apply for employment opportunities at Perfect Clean Property Services. Together, let's build a diverse and inclusive workplace where everyone can thrive and contribute to our collective success.\" }), /*#__PURE__*/_jsx(\"p\", { className: \"framer-styles-preset-21ogod\", \"data-styles-preset\": \"xZndidUCt\", children: \"If you have any questions or concerns regarding our equal opportunity employment practices, please contact our Human Resources department at 303-956-8197.\" })] }), className: \"framer-11n1dkv\", verticalAlignment: \"top\", withExternalLayout: true }), isDisplayed3() && /*#__PURE__*/_jsx(motion.div, { className: \"framer-1f1r4a4 hidden-ilb3ix\" }), /*#__PURE__*/_jsx(Container, { className: \"framer-4d2hg4-container\", children: /*#__PURE__*/_jsx(PropertyOverrides, { breakpoint: baseVariant, overrides: { hlo8YqA1W: { variant: \"MPNNEBUjp\" }, r2zWICHqm: { variant: \"AdzTW5HBP\" } }, children: /*#__PURE__*/_jsx(FooterDark, { height: \"100%\", id: \"yCmy41FAI\", layoutId: \"yCmy41FAI\", style: { width: \"100%\" }, variant: \"NHwVqj0_o\", width: \"100%\" }) }) })] }), /*#__PURE__*/_jsx(\"div\", { id: \"overlay\" })] }) }) });});const css = ['.framer-qE7Y2 [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; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", `.${metadata.bodyClassName} { background: hsl(0, 0%, 100%); }`, \".framer-qE7Y2 .framer-ubsdkc { display: block; }\", \".framer-qE7Y2 .framer-dz4ffq { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\", \".framer-qE7Y2 .framer-vtj29s-container, .framer-qE7Y2 .framer-4d2hg4-container { flex: none; height: auto; position: relative; width: 100%; }\", \".framer-qE7Y2 .framer-1e8fshg { flex: none; height: 635px; overflow: hidden; position: relative; width: 100%; }\", \".framer-qE7Y2 .framer-1nc3vpm { bottom: 0px; flex: none; left: -97px; overflow: visible; position: absolute; right: -777px; top: -12px; }\", \".framer-qE7Y2 .framer-82bcyf { --framer-paragraph-spacing: 0px; bottom: 12px; flex: none; height: auto; left: 121px; overflow: visible; position: absolute; white-space: pre-wrap; width: 340px; word-break: break-word; word-wrap: break-word; }\", '.framer-qE7Y2 .framer-1ch888c, .framer-qE7Y2 .framer-6ofzya { align-content: center; align-items: center; background: linear-gradient(90deg, var(--token-077dae8d-5dec-477f-8696-b5b40ebe4d26, #013366) /* {\"name\":\"blue\"} */ 0%, hsl(208, 100%, 98%) 100%); border-bottom-left-radius: 92px; border-bottom-right-radius: 92px; border-top-left-radius: 92px; border-top-right-radius: 92px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 380px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; right: -218px; top: -18px; width: 379px; will-change: transform; }', \".framer-qE7Y2 .framer-1n9woqh, .framer-qE7Y2 .framer-7tlwqt { align-content: center; align-items: center; border-bottom-left-radius: 92px; border-bottom-right-radius: 92px; border-top-left-radius: 92px; border-top-right-radius: 92px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 380px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; right: -176px; top: -21px; width: 379px; will-change: transform; }\", '.framer-qE7Y2 .framer-1lvx7ag { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-077dae8d-5dec-477f-8696-b5b40ebe4d26, #013366) /* {\"name\":\"blue\"} */ 0%, hsla(210, 100%, 90%, 0.62) 100%); border-bottom-left-radius: 92px; border-bottom-right-radius: 92px; border-top-left-radius: 92px; border-top-right-radius: 92px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 340px; justify-content: center; left: calc(50.00000000000002% - 339px / 2); overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: 30px; width: 339px; will-change: transform; }', \".framer-qE7Y2 .framer-2cro7l { align-content: center; align-items: center; border-bottom-left-radius: 92px; border-bottom-right-radius: 92px; border-top-left-radius: 92px; border-top-right-radius: 92px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 340px; justify-content: center; left: calc(50.00000000000002% - 340px / 2); overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: 15px; width: 340px; will-change: transform; }\", \".framer-qE7Y2 .framer-1eat2cw { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 359px); overflow: visible; position: relative; width: 539px; }\", \".framer-qE7Y2 .framer-166a1g2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; bottom: 209px; flex: none; height: auto; left: 25px; overflow: visible; position: absolute; white-space: pre-wrap; width: 200px; word-break: break-word; word-wrap: break-word; }\", \".framer-qE7Y2 .framer-r72t3b { background-color: var(--token-e801a895-0d23-499d-b6a8-b9115e46498e, #f5faff); flex: none; height: 609px; overflow: hidden; position: relative; width: 100%; }\", \".framer-qE7Y2 .framer-ow89w { background-color: var(--token-5b707035-0e09-4742-b66c-4766d881fb5e, #358fe9); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: 25px; left: -143px; overflow: hidden; position: absolute; right: -143px; top: 113px; transform: rotate(-36deg); will-change: transform; }\", \".framer-qE7Y2 .framer-4vext5 { background-color: #024b31; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; bottom: 4px; flex: none; height: 27px; overflow: hidden; position: absolute; right: -146px; transform: rotate(-36deg); width: 402px; will-change: transform; }\", \".framer-qE7Y2 .framer-1avxeg3 { background-color: rgba(1, 51, 102, 0.43); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; bottom: 8px; flex: none; height: 26px; overflow: hidden; position: absolute; right: -42px; transform: rotate(-36deg); width: 333px; will-change: transform; }\", \".framer-qE7Y2 .framer-h3qgs5 { background-color: var(--token-077dae8d-5dec-477f-8696-b5b40ebe4d26, #013366); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: 25px; left: -144px; overflow: hidden; position: absolute; right: -144px; top: 61px; transform: rotate(-36deg); will-change: transform; }\", '.framer-qE7Y2 .framer-g8rax8 { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-077dae8d-5dec-477f-8696-b5b40ebe4d26, #013366) /* {\"name\":\"blue\"} */ 0%, hsla(210, 100%, 90%, 0.62) 100%); border-bottom-left-radius: 92px; border-bottom-right-radius: 92px; border-top-left-radius: 92px; border-top-right-radius: 92px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 340px; justify-content: center; left: calc(50.00000000000002% - 339px / 2); overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: 39px; width: 339px; will-change: transform; }', \".framer-qE7Y2 .framer-glr6pg { align-content: center; align-items: center; border-bottom-left-radius: 92px; border-bottom-right-radius: 92px; border-top-left-radius: 92px; border-top-right-radius: 92px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 340px; justify-content: center; left: calc(50.00000000000002% - 340px / 2); overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: 24px; width: 340px; will-change: transform; }\", \".framer-qE7Y2 .framer-150t5a { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; bottom: 145px; flex: none; height: auto; left: 51%; overflow: visible; position: absolute; transform: translateX(-50%); white-space: pre-wrap; width: 296px; word-break: break-word; word-wrap: break-word; }\", \".framer-qE7Y2 .framer-zwlbxl-container { bottom: 78px; flex: none; height: 43px; left: calc(48.96373056994821% - 297px / 2); position: absolute; width: 297px; }\", \".framer-qE7Y2 .framer-1ycuty3 { flex: none; height: 450px; overflow: hidden; position: relative; width: 100%; }\", \".framer-qE7Y2 .framer-1b10s6e { bottom: 0px; flex: none; left: -34px; overflow: visible; position: absolute; right: -34px; top: 0px; }\", \".framer-qE7Y2 .framer-wn4sn4 { --framer-paragraph-spacing: 0px; bottom: 47px; flex: none; height: auto; left: 58px; overflow: visible; position: absolute; white-space: pre-wrap; width: 334px; word-break: break-word; word-wrap: break-word; }\", \".framer-qE7Y2 .framer-199sksm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 24px; overflow: visible; position: absolute; top: 39px; white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\", '.framer-qE7Y2 .framer-1pse0xc { align-content: center; align-items: center; background: linear-gradient(90deg, var(--token-077dae8d-5dec-477f-8696-b5b40ebe4d26, #013366) /* {\"name\":\"blue\"} */ 0%, rgba(245, 250, 255, 0.13) 100%); border-bottom-left-radius: 92px; border-bottom-right-radius: 92px; border-top-left-radius: 92px; border-top-right-radius: 92px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 361px; justify-content: center; left: 441px; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: calc(54.88888888888891% - 361.0743243243243px / 2); width: 361px; will-change: transform; }', \".framer-qE7Y2 .framer-mcbcdy { align-content: center; align-items: center; border-bottom-left-radius: 92px; border-bottom-right-radius: 92px; border-top-left-radius: 92px; border-top-right-radius: 92px; box-shadow: 0px 3px 15px 5px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 361px; justify-content: center; left: 408px; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: calc(49.33333333333336% - 361.0743243243243px / 2); width: 361px; will-change: transform; }\", \".framer-qE7Y2 .framer-1lddpzi { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 370px); overflow: visible; position: relative; width: 555px; }\", '.framer-qE7Y2 .framer-ux4s7h, .framer-qE7Y2 .framer-y0ievu, .framer-qE7Y2 .framer-1oxt5jn, .framer-qE7Y2 .framer-7vpazs { align-content: center; align-items: center; background: linear-gradient(90deg, var(--token-077dae8d-5dec-477f-8696-b5b40ebe4d26, #013366) /* {\"name\":\"blue\"} */ 0%, hsl(208, 100%, 98%) 100%); border-bottom-left-radius: 92px; border-bottom-right-radius: 92px; border-top-left-radius: 92px; border-top-right-radius: 92px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 380px; justify-content: center; left: 433px; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: calc(50.00000000000002% - 380px / 2); width: 379px; will-change: transform; }', \".framer-qE7Y2 .framer-12dn2it, .framer-qE7Y2 .framer-1d28kov, .framer-qE7Y2 .framer-1fzldkm, .framer-qE7Y2 .framer-cv3w9v { align-content: center; align-items: center; border-bottom-left-radius: 92px; border-bottom-right-radius: 92px; border-top-left-radius: 92px; border-top-right-radius: 92px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 380px; justify-content: center; left: 410px; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: calc(49.616858237547916% - 380px / 2); width: 379px; will-change: transform; }\", \".framer-qE7Y2 .framer-fa2ltz { background-color: #f5fafe; flex: none; height: 22px; overflow: hidden; position: relative; width: 100%; }\", \".framer-qE7Y2 .framer-1qvunbn { background-color: var(--token-e801a895-0d23-499d-b6a8-b9115e46498e, #f5faff); flex: none; height: 502px; overflow: hidden; position: relative; width: 100%; }\", \".framer-qE7Y2 .framer-tc6ya2 { background-color: var(--token-5b707035-0e09-4742-b66c-4766d881fb5e, #358fe9); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: 42px; left: -427px; overflow: hidden; position: absolute; top: 195px; transform: rotate(-36deg); width: 1133px; will-change: transform; }\", \".framer-qE7Y2 .framer-1iqn77c { background-color: #024b31; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; bottom: 116px; flex: none; height: 44px; overflow: hidden; position: absolute; right: -190px; transform: rotate(-36deg); width: 672px; will-change: transform; }\", \".framer-qE7Y2 .framer-1dg3fi4 { background-color: rgba(1, 51, 102, 0.43); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; bottom: 2px; flex: none; height: 43px; overflow: hidden; position: absolute; right: -115px; transform: rotate(-36deg); width: 557px; will-change: transform; }\", \".framer-qE7Y2 .framer-1l7371h { background-color: var(--token-077dae8d-5dec-477f-8696-b5b40ebe4d26, #013366); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; bottom: 159px; flex: none; height: 42px; left: -681px; overflow: hidden; position: absolute; transform: rotate(-36deg); width: 1135px; will-change: transform; }\", '.framer-qE7Y2 .framer-4fso0g { align-content: center; align-items: center; background: linear-gradient(90deg, var(--token-077dae8d-5dec-477f-8696-b5b40ebe4d26, #013366) /* {\"name\":\"blue\"} */ 0%, hsl(208, 100%, 98%) 100%); border-bottom-left-radius: 92px; border-bottom-right-radius: 92px; border-top-left-radius: 92px; border-top-right-radius: 92px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 361px; justify-content: center; left: 4px; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: calc(48.46153846153848% - 361.0743243243243px / 2); transform: rotate(-180deg); width: 361px; will-change: transform; }', \".framer-qE7Y2 .framer-157zq5r { align-content: center; align-items: center; border-bottom-left-radius: 92px; border-bottom-right-radius: 92px; border-top-left-radius: 92px; border-top-right-radius: 92px; box-shadow: 0px 3px 15px 5px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 361px; justify-content: center; left: 25px; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: 38px; width: 361px; will-change: transform; }\", \".framer-qE7Y2 .framer-bi57gq-container { flex: none; height: 43px; left: 428px; position: absolute; top: calc(53.38645418326695% - 43px / 2); width: 297px; }\", \".framer-qE7Y2 .framer-19eht79 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 434px; overflow: visible; position: absolute; top: 164px; white-space: pre-wrap; width: 286px; word-break: break-word; word-wrap: break-word; }\", \".framer-qE7Y2 .framer-1l6bpvr { flex: none; height: 615px; overflow: hidden; position: relative; transform: perspective(1200px); width: 100%; }\", \".framer-qE7Y2 .framer-miubms { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: 100%; }\", \".framer-qE7Y2 .framer-2tp3sj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50px; overflow: visible; position: absolute; top: 142px; white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\", \".framer-qE7Y2 .framer-4yhoi { --framer-paragraph-spacing: 0px; bottom: 93px; flex: none; height: auto; left: 50px; overflow: visible; position: absolute; white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\", '.framer-qE7Y2 .framer-15cwxw6 { align-content: center; align-items: center; background: linear-gradient(90deg, var(--token-077dae8d-5dec-477f-8696-b5b40ebe4d26, #013366) /* {\"name\":\"blue\"} */ 0%, rgba(245, 250, 255, 0.03) 100%); border-bottom-left-radius: 92px; border-bottom-right-radius: 92px; border-top-left-radius: 92px; border-top-right-radius: 92px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 564px; justify-content: center; left: 617px; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: calc(53.98373983739839% - 564px / 2); width: 564px; will-change: transform; }', \".framer-qE7Y2 .framer-1frrxrs { align-content: center; align-items: center; background-color: #f7f7f7; border-bottom-left-radius: 92px; border-bottom-right-radius: 92px; border-top-left-radius: 92px; border-top-right-radius: 92px; box-shadow: 0px 3px 15px 5px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 564px; justify-content: center; left: 550px; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: calc(49.26829268292685% - 564px / 2); width: 564px; will-change: transform; }\", \".framer-qE7Y2 .framer-1iky84m { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 613px); overflow: visible; position: relative; width: 919px; }\", \".framer-qE7Y2 .framer-1lbdvux { background-color: var(--token-e801a895-0d23-499d-b6a8-b9115e46498e, #f5faff); flex: none; height: 615px; overflow: hidden; position: relative; width: 100%; }\", \".framer-qE7Y2 .framer-4rxmfs { background-color: var(--token-077dae8d-5dec-477f-8696-b5b40ebe4d26, #013366); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; bottom: 249px; flex: none; height: 42px; left: -469px; overflow: hidden; position: absolute; transform: rotate(-36deg); width: 1135px; will-change: transform; }\", \".framer-qE7Y2 .framer-11lj5ia { background-color: var(--token-5b707035-0e09-4742-b66c-4766d881fb5e, #358fe9); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: 42px; left: -215px; overflow: hidden; position: absolute; top: 218px; transform: rotate(-36deg); width: 1133px; will-change: transform; }\", \".framer-qE7Y2 .framer-nnft2p { background-color: #024b31; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; bottom: 178px; flex: none; height: 44px; overflow: hidden; position: absolute; right: -218px; transform: rotate(-36deg); width: 672px; will-change: transform; }\", \".framer-qE7Y2 .framer-x1sg85 { background-color: rgba(1, 51, 102, 0.43); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; bottom: 64px; flex: none; height: 43px; overflow: hidden; position: absolute; right: -143px; transform: rotate(-36deg); width: 557px; will-change: transform; }\", \".framer-qE7Y2 .framer-1j754po { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 166px; justify-content: center; left: 686px; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: calc(50.081300813008156% - 166px / 2); transform: perspective(1200px); width: 40%; }\", \".framer-qE7Y2 .framer-2ai9da { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 324px; word-break: break-word; word-wrap: break-word; }\", \".framer-qE7Y2 .framer-1v443vv-container { flex: none; height: 57px; position: relative; width: 438px; }\", '.framer-qE7Y2 .framer-g4pnmi { align-content: center; align-items: center; background: linear-gradient(90deg, var(--token-077dae8d-5dec-477f-8696-b5b40ebe4d26, #013366) /* {\"name\":\"blue\"} */ 0%, rgba(245, 250, 255, 0.16) 100%); border-bottom-left-radius: 92px; border-bottom-right-radius: 92px; border-top-left-radius: 92px; border-top-right-radius: 92px; bottom: -1px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 564px; justify-content: center; left: 12px; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; transform: perspective(1200px) rotate(-180deg); width: 564px; will-change: transform; }', \".framer-qE7Y2 .framer-9amdw9 { align-content: center; align-items: center; border-bottom-left-radius: 92px; border-bottom-right-radius: 92px; border-top-left-radius: 92px; border-top-right-radius: 92px; box-shadow: 0px 3px 15px 5px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 564px; justify-content: center; left: 70px; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: calc(49.26829268292685% - 564px / 2); transform: perspective(1200px); width: 564px; will-change: transform; }\", \".framer-qE7Y2 .framer-3g8zs1 { align-content: center; align-items: center; background-color: #f5faff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 929px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-qE7Y2 .framer-v91xw3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 427px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 1px; }\", \".framer-qE7Y2 .framer-1fjab8b { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 359px; word-break: break-word; word-wrap: break-word; }\", \".framer-qE7Y2 .framer-1b0e14q { align-content: center; align-items: center; background-color: var(--token-2c3741ae-5cac-41b6-92f3-702378f7b001, #024b31); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; padding: 10px 20px 10px 20px; position: relative; text-decoration: none; width: min-content; }\", \".framer-qE7Y2 .framer-1slyypk { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\", \".framer-qE7Y2 .framer-cyt47k { background-color: #f5fafe; flex: 1 0 0px; height: 232px; overflow: hidden; position: relative; width: 1px; }\", \".framer-qE7Y2 .framer-1x42jfo-container { flex: 1 0 0px; height: 929px; position: relative; width: 1px; }\", \".framer-qE7Y2 .framer-qdmkts { background-color: #ffffff; flex: none; height: 64px; overflow: hidden; position: relative; width: 100%; }\", \".framer-qE7Y2 .framer-11n1dkv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1120px; word-break: break-word; word-wrap: break-word; }\", \".framer-qE7Y2 .framer-1f1r4a4 { background-color: #ffffff; flex: none; height: 97px; overflow: hidden; position: relative; width: 791px; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-qE7Y2 .framer-dz4ffq, .framer-qE7Y2 .framer-1ch888c, .framer-qE7Y2 .framer-1n9woqh, .framer-qE7Y2 .framer-1lvx7ag, .framer-qE7Y2 .framer-2cro7l, .framer-qE7Y2 .framer-6ofzya, .framer-qE7Y2 .framer-7tlwqt, .framer-qE7Y2 .framer-g8rax8, .framer-qE7Y2 .framer-glr6pg, .framer-qE7Y2 .framer-1pse0xc, .framer-qE7Y2 .framer-mcbcdy, .framer-qE7Y2 .framer-ux4s7h, .framer-qE7Y2 .framer-12dn2it, .framer-qE7Y2 .framer-4fso0g, .framer-qE7Y2 .framer-157zq5r, .framer-qE7Y2 .framer-y0ievu, .framer-qE7Y2 .framer-1d28kov, .framer-qE7Y2 .framer-15cwxw6, .framer-qE7Y2 .framer-1frrxrs, .framer-qE7Y2 .framer-1oxt5jn, .framer-qE7Y2 .framer-1fzldkm, .framer-qE7Y2 .framer-1j754po, .framer-qE7Y2 .framer-g4pnmi, .framer-qE7Y2 .framer-9amdw9, .framer-qE7Y2 .framer-7vpazs, .framer-qE7Y2 .framer-cv3w9v, .framer-qE7Y2 .framer-3g8zs1, .framer-qE7Y2 .framer-v91xw3, .framer-qE7Y2 .framer-1b0e14q { gap: 0px; } .framer-qE7Y2 .framer-dz4ffq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-qE7Y2 .framer-dz4ffq > :first-child, .framer-qE7Y2 .framer-1ch888c > :first-child, .framer-qE7Y2 .framer-1n9woqh > :first-child, .framer-qE7Y2 .framer-1lvx7ag > :first-child, .framer-qE7Y2 .framer-2cro7l > :first-child, .framer-qE7Y2 .framer-6ofzya > :first-child, .framer-qE7Y2 .framer-7tlwqt > :first-child, .framer-qE7Y2 .framer-g8rax8 > :first-child, .framer-qE7Y2 .framer-glr6pg > :first-child, .framer-qE7Y2 .framer-1pse0xc > :first-child, .framer-qE7Y2 .framer-mcbcdy > :first-child, .framer-qE7Y2 .framer-ux4s7h > :first-child, .framer-qE7Y2 .framer-12dn2it > :first-child, .framer-qE7Y2 .framer-4fso0g > :first-child, .framer-qE7Y2 .framer-157zq5r > :first-child, .framer-qE7Y2 .framer-y0ievu > :first-child, .framer-qE7Y2 .framer-1d28kov > :first-child, .framer-qE7Y2 .framer-15cwxw6 > :first-child, .framer-qE7Y2 .framer-1frrxrs > :first-child, .framer-qE7Y2 .framer-1oxt5jn > :first-child, .framer-qE7Y2 .framer-1fzldkm > :first-child, .framer-qE7Y2 .framer-1j754po > :first-child, .framer-qE7Y2 .framer-g4pnmi > :first-child, .framer-qE7Y2 .framer-9amdw9 > :first-child, .framer-qE7Y2 .framer-7vpazs > :first-child, .framer-qE7Y2 .framer-cv3w9v > :first-child, .framer-qE7Y2 .framer-v91xw3 > :first-child { margin-top: 0px; } .framer-qE7Y2 .framer-dz4ffq > :last-child, .framer-qE7Y2 .framer-1ch888c > :last-child, .framer-qE7Y2 .framer-1n9woqh > :last-child, .framer-qE7Y2 .framer-1lvx7ag > :last-child, .framer-qE7Y2 .framer-2cro7l > :last-child, .framer-qE7Y2 .framer-6ofzya > :last-child, .framer-qE7Y2 .framer-7tlwqt > :last-child, .framer-qE7Y2 .framer-g8rax8 > :last-child, .framer-qE7Y2 .framer-glr6pg > :last-child, .framer-qE7Y2 .framer-1pse0xc > :last-child, .framer-qE7Y2 .framer-mcbcdy > :last-child, .framer-qE7Y2 .framer-ux4s7h > :last-child, .framer-qE7Y2 .framer-12dn2it > :last-child, .framer-qE7Y2 .framer-4fso0g > :last-child, .framer-qE7Y2 .framer-157zq5r > :last-child, .framer-qE7Y2 .framer-y0ievu > :last-child, .framer-qE7Y2 .framer-1d28kov > :last-child, .framer-qE7Y2 .framer-15cwxw6 > :last-child, .framer-qE7Y2 .framer-1frrxrs > :last-child, .framer-qE7Y2 .framer-1oxt5jn > :last-child, .framer-qE7Y2 .framer-1fzldkm > :last-child, .framer-qE7Y2 .framer-1j754po > :last-child, .framer-qE7Y2 .framer-g4pnmi > :last-child, .framer-qE7Y2 .framer-9amdw9 > :last-child, .framer-qE7Y2 .framer-7vpazs > :last-child, .framer-qE7Y2 .framer-cv3w9v > :last-child, .framer-qE7Y2 .framer-v91xw3 > :last-child { margin-bottom: 0px; } .framer-qE7Y2 .framer-1ch888c > *, .framer-qE7Y2 .framer-1n9woqh > *, .framer-qE7Y2 .framer-1lvx7ag > *, .framer-qE7Y2 .framer-2cro7l > *, .framer-qE7Y2 .framer-6ofzya > *, .framer-qE7Y2 .framer-7tlwqt > *, .framer-qE7Y2 .framer-g8rax8 > *, .framer-qE7Y2 .framer-glr6pg > *, .framer-qE7Y2 .framer-1pse0xc > *, .framer-qE7Y2 .framer-mcbcdy > *, .framer-qE7Y2 .framer-ux4s7h > *, .framer-qE7Y2 .framer-12dn2it > *, .framer-qE7Y2 .framer-4fso0g > *, .framer-qE7Y2 .framer-157zq5r > *, .framer-qE7Y2 .framer-y0ievu > *, .framer-qE7Y2 .framer-1d28kov > *, .framer-qE7Y2 .framer-15cwxw6 > *, .framer-qE7Y2 .framer-1frrxrs > *, .framer-qE7Y2 .framer-1oxt5jn > *, .framer-qE7Y2 .framer-1fzldkm > *, .framer-qE7Y2 .framer-g4pnmi > *, .framer-qE7Y2 .framer-9amdw9 > *, .framer-qE7Y2 .framer-7vpazs > *, .framer-qE7Y2 .framer-cv3w9v > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-qE7Y2 .framer-1j754po > *, .framer-qE7Y2 .framer-v91xw3 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-qE7Y2 .framer-3g8zs1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-qE7Y2 .framer-3g8zs1 > :first-child, .framer-qE7Y2 .framer-1b0e14q > :first-child { margin-left: 0px; } .framer-qE7Y2 .framer-3g8zs1 > :last-child, .framer-qE7Y2 .framer-1b0e14q > :last-child { margin-right: 0px; } .framer-qE7Y2 .framer-1b0e14q > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\", \"@media (min-width: 1200px) and (max-width: 1462px) { .framer-qE7Y2 .hidden-dz4ffq { display: none !important; } }\", `@media (min-width: 810px) and (max-width: 1199px) { .framer-qE7Y2 .hidden-f258wp { display: none !important; } .${metadata.bodyClassName} { background: hsl(0, 0%, 100%); } .framer-qE7Y2 .framer-dz4ffq { width: 810px; } .framer-qE7Y2 .framer-vtj29s-container { order: 0; } .framer-qE7Y2 .framer-1ycuty3 { order: 3; } .framer-qE7Y2 .framer-1qvunbn { order: 5; } .framer-qE7Y2 .framer-3g8zs1 { order: 8; } .framer-qE7Y2 .framer-11n1dkv { order: 9; width: 95%; } .framer-qE7Y2 .framer-1f1r4a4 { order: 10; } .framer-qE7Y2 .framer-4d2hg4-container { order: 11; }}`, `@media (max-width: 809px) { .framer-qE7Y2 .hidden-ilb3ix { display: none !important; } .${metadata.bodyClassName} { background: hsl(0, 0%, 100%); } .framer-qE7Y2 .framer-dz4ffq { height: 4242px; width: 390px; } .framer-qE7Y2 .framer-vtj29s-container { order: 0; } .framer-qE7Y2 .framer-1e8fshg, .framer-qE7Y2 .framer-1b0e14q { order: 1; } .framer-qE7Y2 .framer-r72t3b { order: 2; } .framer-qE7Y2 .framer-fa2ltz { order: 4; } .framer-qE7Y2 .framer-3g8zs1 { flex: 1 0 0px; flex-direction: column; height: 1px; order: 3; } .framer-qE7Y2 .framer-v91xw3 { flex: none; height: min-content; order: 0; width: 100%; } .framer-qE7Y2 .framer-1fjab8b { order: 0; width: 100%; } .framer-qE7Y2 .framer-cyt47k { flex: none; order: 1; width: 100%; } .framer-qE7Y2 .framer-1x42jfo-container { height: 1px; order: 2; width: 100%; } .framer-qE7Y2 .framer-11n1dkv { order: 9; width: 95%; } .framer-qE7Y2 .framer-4d2hg4-container { order: 11; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-qE7Y2 .framer-3g8zs1 { gap: 0px; } .framer-qE7Y2 .framer-3g8zs1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-qE7Y2 .framer-3g8zs1 > :first-child { margin-top: 0px; } .framer-qE7Y2 .framer-3g8zs1 > :last-child { margin-bottom: 0px; } }}`, `@media (min-width: 1463px) and (max-width: 1727px) { .framer-qE7Y2 .hidden-66g394 { display: none !important; } .${metadata.bodyClassName} { background: hsl(0, 0%, 100%); } .framer-qE7Y2 .framer-dz4ffq { width: 1463px; } .framer-qE7Y2 .framer-2tp3sj, .framer-qE7Y2 .framer-4yhoi { left: 180px; } .framer-qE7Y2 .framer-15cwxw6 { left: 767px; } .framer-qE7Y2 .framer-1frrxrs { left: 700px; }}`, `@media (min-width: 1728px) { .framer-qE7Y2 .hidden-zq50md { display: none !important; } .${metadata.bodyClassName} { background: hsl(0, 0%, 100%); } .framer-qE7Y2 .framer-dz4ffq { width: 1728px; } .framer-qE7Y2 .framer-2tp3sj, .framer-qE7Y2 .framer-4yhoi { left: 331px; } .framer-qE7Y2 .framer-15cwxw6 { left: 967px; } .framer-qE7Y2 .framer-1frrxrs { left: 900px; } .framer-qE7Y2 .framer-1j754po { left: 836px; } .framer-qE7Y2 .framer-g4pnmi { left: 192px; } .framer-qE7Y2 .framer-9amdw9 { left: 250px; }}`, ...sharedStyle.css]; /**\n* This is a generated Framer component.\n* @framerIntrinsicHeight 3446\n* @framerIntrinsicWidth 1200\n* @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hlo8YqA1W\":{\"layout\":[\"fixed\",\"auto\"]},\"r2zWICHqm\":{\"layout\":[\"fixed\",\"fixed\"]},\"uFTGZYP1V\":{\"layout\":[\"fixed\",\"auto\"]},\"s0n7gHita\":{\"layout\":[\"fixed\",\"auto\"]}}}\n* @framerResponsiveScreen\n*/const FramereLnh3w5BP = withCSS(Component, css, \"framer-qE7Y2\");export default FramereLnh3w5BP;FramereLnh3w5BP.displayName = \"Employment\";FramereLnh3w5BP.defaultProps = { height: 3446, width: 1200 };addFonts(FramereLnh3w5BP, [{ family: \"Inter\", moduleAsset: { localModuleIdentifier: \"local-module:screen/eLnh3w5BP:default\", url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf\" }, style: \"normal\", url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf\", weight: \"700\" }, { family: \"Inter\", moduleAsset: { localModuleIdentifier: \"local-module:screen/eLnh3w5BP:default\", url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf\" }, style: \"normal\", url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf\", weight: \"500\" }, { family: \"Inter\", moduleAsset: { localModuleIdentifier: \"local-module:screen/eLnh3w5BP:default\", url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyYMZhrib2Bg-4.ttf\" }, style: \"normal\", url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyYMZhrib2Bg-4.ttf\", weight: \"800\" }, { family: \"DM Sans\", moduleAsset: { localModuleIdentifier: \"local-module:screen/eLnh3w5BP:default\", url: \"https://fonts.gstatic.com/s/dmsans/v13/rP2Cp2ywxg089UriAWCrOB-sClQX6Cg.ttf\" }, style: \"normal\", url: \"https://fonts.gstatic.com/s/dmsans/v13/rP2Cp2ywxg089UriAWCrOB-sClQX6Cg.ttf\", weight: \"500\" }, ...NavbarLogoDarkFonts, ...ApplicationFonts, ...EmbedFonts, ...FooterDarkFonts, ...sharedStyle.fonts]);\nexport const __FramerMetadata__ = { \"exports\": { \"Props\": { \"type\": \"tsType\", \"annotations\": { \"framerContractVersion\": \"1\" } }, \"default\": { \"type\": \"reactComponent\", \"name\": \"FramereLnh3w5BP\", \"slots\": [], \"annotations\": { \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hlo8YqA1W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"r2zWICHqm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uFTGZYP1V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"s0n7gHita\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\", \"framerContractVersion\": \"1\", \"framerResponsiveScreen\": \"\", \"framerIntrinsicHeight\": \"3446\", \"framerIntrinsicWidth\": \"1200\" } }, \"__FramerMetadata__\": { \"type\": \"variable\" } } };"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "transformTemplate", "_", "t", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "LRf76rWO1", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "RichText", "x", "Link", "css", "FramerGMfSt85nJ", "withCSS", "GMfSt85nJ_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "NavbarLogoDarkFonts", "getFonts", "s18mDCXdT_default", "ApplicationFonts", "GMfSt85nJ_default", "MotionDivWithFX", "withFX", "motion", "ImageWithFX", "Image2", "EmbedFonts", "Embed", "FooterDarkFonts", "CLJWBUUjl_default", "breakpoints", "isBrowser", "variantClassNames", "humanReadableVariantMap", "transitions", "transformTemplate", "_", "t", "transformTemplate1", "transformTemplate2", "transition1", "animation", "transformTemplate3", "animation1", "animation2", "animation3", "animation4", "animation5", "animation6", "transformTemplate4", "metadata", "eLnh3w5BP_default", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "variant", "fe", "metadata1", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "Container", "PropertyOverrides", "s18mDCXdT_default", "Image2", "RichText", "x", "GMfSt85nJ_default", "optimizeAppear", "optimizeAppearTransformTemplate", "MotionDivWithFX", "ImageWithFX", "Link", "Embed", "CLJWBUUjl_default", "css", "FramereLnh3w5BP", "withCSS", "addFonts", "NavbarLogoDarkFonts", "ApplicationFonts", "EmbedFonts", "FooterDarkFonts", "fonts", "__FramerMetadata__"]
}
