{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js", "ssg:https://framerusercontent.com/modules/9ZXtGQW1iYXAneGgaaKR/b1oXQmZtmPYBPQct7dLl/g_E2UFytt.js", "ssg:https://framerusercontent.com/modules/l98occkqVHepXE6rT5AA/2hUgTgR9WqgEc7NoTuLn/MAofX6SFd.js", "ssg:https://framerusercontent.com/modules/8Hca96E5D9Ckmpv4t88w/9phVFhM8wmwfmzLW4uLp/Zy7iDqQ32.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function SVG(props){const[customSvgElement,setCustomSvgElement]=useState(null);useEffect(()=>{const svgContent=props.customSvgCode;processCustomSVGContent(svgContent);});const processCustomSVGContent=svgContent=>{const replacements=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']];const hasCustomStroke=svgContent.includes('stroke=\"');const hasCustomStrokeWidth=svgContent.includes('stroke-width=\"');const hasLineCap=svgContent.includes('stroke-linecap=\"');const hasLineJoin=svgContent.includes('stroke-linejoin=\"');if(svgContent.includes(\"<circle\")){const circleFillRegex=/<circle[^>]*fill=\"([^\"]*)\"/;const match=svgContent.match(circleFillRegex);if(match){const updatedCircle=match[0].replace(match[1],props.customColor);svgContent=svgContent.replace(circleFillRegex,updatedCircle);}else{replacements.push([/<circle/g,`<circle fill=\"${props.customColor}\"`]);}}if(hasCustomStroke){if(!hasLineCap){replacements.push([/<path/g,`<path stroke=\"${props.customColor}\"`]);}else{replacements.push([/<path/g,`<path stroke=\"${props.customColor}\" stroke-linecap=\"${props.lineCap}\"`]);}if(hasCustomStrokeWidth){replacements.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${props.customStrokeWidth}\"`]);}}else{replacements.push([/<path/g,`<path fill=\"${props.customColor}\"`]);}if(svgContent.includes('overflow=\"')){replacements.push([/overflow=\"[^\"]*\"/,`overflow=\"visible\"`]);}else{replacements.push([/<svg/,`<svg overflow=\"visible\"`]);}if(!hasLineJoin){replacements.push([/<path/g,`<path stroke-linejoin=\"${props.lineJoin}\"`]);}else{replacements.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${props.lineJoin}\"`]);}replacements.forEach(([regex,replacement])=>{svgContent=svgContent.replace(regex,replacement);});setCustomSvgElement(svgContent);};const customContainerStyle={padding:`${props.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};const accessibilityProps={role:\"img\",...props.title&&{\"aria-label\":props.title},...props.description&&{\"aria-description\":props.description}};return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:customSvgElement},style:customContainerStyle,...accessibilityProps});}SVG.displayName=\"SVG\";SVG.defaultProps={customSvgCode:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_967_124)\"> <path d=\"M18 6.09674C18 6.0348 18.0246 5.97539 18.0684 5.93159L23.6013 0.398708C23.7484 0.251575 24 0.35578 24 0.563858V11.9033C24 11.9652 23.9754 12.0246 23.9316 12.0684L18 18V6.09674Z\" fill=\"white\"/> <path d=\"M6 18V6.56386C6 6.35578 5.74843 6.25158 5.60129 6.39871L0.0684074 11.9316C0.0246069 11.9754 0 12.0348 0 12.0967V23.7664C0 23.8954 0.104567 24 0.233557 24H11.9033C11.9652 24 12.0246 23.9754 12.0684 23.9316L18 18H6Z\" fill=\"white\"/> </g> <defs> <clipPath id=\"clip0_967_124\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>`,customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\",title:\"\",description:\"\"};addPropertyControls(SVG,{customSvgCode:{type:ControlType.String,title:\"SVG Code\",displayTextArea:false},customColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"},customPadding:{type:ControlType.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:true},customStrokeWidth:{type:ControlType.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:true,hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineCap:{type:ControlType.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineJoin:{type:ControlType.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},title:{type:ControlType.String,title:\"Title\",defaultValue:\"\",placeholder:\"Icon name...\"},description:{type:ControlType.String,title:\"Description\",defaultValue:\"\",placeholder:\"Icon purpose...\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG_Prod.map", "// Generated by Framer (259a342)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Forma DJR Deck Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Forma DJR Deck Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/FuZS5N7SAYKFraoYcrvqVkQIs0.woff2\"}]}];export const css=['.framer-OUyCS .framer-styles-preset-sl8oe:not(.rich-text-wrapper), .framer-OUyCS .framer-styles-preset-sl8oe.rich-text-wrapper p { --framer-font-family: \"Forma DJR Deck Regular\", \"Forma DJR Deck Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #272b27; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-OUyCS .framer-styles-preset-sl8oe:not(.rich-text-wrapper), .framer-OUyCS .framer-styles-preset-sl8oe.rich-text-wrapper p { --framer-font-family: \"Forma DJR Deck Regular\", \"Forma DJR Deck Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #272b27; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-OUyCS .framer-styles-preset-sl8oe:not(.rich-text-wrapper), .framer-OUyCS .framer-styles-preset-sl8oe.rich-text-wrapper p { --framer-font-family: \"Forma DJR Deck Regular\", \"Forma DJR Deck Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #272b27; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-OUyCS\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (98a2bb2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,SVG as SVG1,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/9ZXtGQW1iYXAneGgaaKR/b1oXQmZtmPYBPQct7dLl/g_E2UFytt.js\";const SVGFonts=getFonts(SVG);const enabledGestures={FnK8q2wSo:{hover:true},meGj6COzO:{hover:true},qs2ohiw_p:{hover:true},UuZ9TRPUX:{hover:true},WZLipcmlI:{hover:true},Ys6W3famC:{hover:true}};const cycleOrder=[\"meGj6COzO\",\"Ys6W3famC\",\"qs2ohiw_p\",\"FnK8q2wSo\",\"UuZ9TRPUX\",\"WZLipcmlI\"];const serializationHash=\"framer-9DEb6\";const variantClassNames={FnK8q2wSo:\"framer-v-1ewm6pv\",meGj6COzO:\"framer-v-1q1flcp\",qs2ohiw_p:\"framer-v-15zazdo\",UuZ9TRPUX:\"framer-v-ssvv0n\",WZLipcmlI:\"framer-v-6f7j6k\",Ys6W3famC:\"framer-v-1q4m9ym\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Light + Icon\":\"FnK8q2wSo\",\"Nav-version\":\"WZLipcmlI\",\"Primary \u2022 Small\":\"Ys6W3famC\",Faded:\"qs2ohiw_p\",Light:\"UuZ9TRPUX\",Primary:\"meGj6COzO\"};const getProps=({click,height,id,link3,newTab,title,width,...props})=>{return{...props,MNUq27zYb:title??props.MNUq27zYb??\"View Careers\",rg2z_fcVb:click??props.rg2z_fcVb,tQ40fKerf:newTab??props.tQ40fKerf,variant:humanReadableVariantMap[props.variant]??props.variant??\"meGj6COzO\",XOML5gjIB:link3??props.XOML5gjIB};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,MNUq27zYb,tQ40fKerf,rg2z_fcVb,XOML5gjIB,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"meGj6COzO\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapoheixk=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(rg2z_fcVb){const res=await rg2z_fcVb(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"WZLipcmlI-hover\")return true;if(baseVariant===\"WZLipcmlI\")return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"FnK8q2wSo-hover\")return true;if(baseVariant===\"FnK8q2wSo\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:XOML5gjIB,motionChild:true,nodeId:\"meGj6COzO\",openInNewTab:tQ40fKerf,scopeId:\"MAofX6SFd\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1q1flcp\",className,classNames)} framer-8yt9jj`,\"data-framer-name\":\"Primary\",\"data-highlight\":true,\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"meGj6COzO\",onTap:onTapoheixk,ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(58, 228, 192)\",opacity:1,...style},variants:{\"FnK8q2wSo-hover\":{opacity:.85},\"meGj6COzO-hover\":{backgroundColor:\"rgb(41, 171, 143)\"},\"qs2ohiw_p-hover\":{opacity:.85},\"UuZ9TRPUX-hover\":{opacity:.85},\"WZLipcmlI-hover\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b13a31aa-f3fa-4678-bc52-2e7010470a82, rgb(61, 59, 66))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",opacity:1},\"Ys6W3famC-hover\":{opacity:.85},FnK8q2wSo:{backgroundColor:\"var(--token-20232de1-c527-4fb1-beb3-8aebdce2e3af, rgb(248, 246, 242))\"},qs2ohiw_p:{backgroundColor:\"var(--token-c324a8a8-36ee-4f16-adaf-897347bf142d, rgb(248, 246, 242))\"},UuZ9TRPUX:{backgroundColor:\"var(--token-20232de1-c527-4fb1-beb3-8aebdce2e3af, rgb(248, 246, 242))\"},WZLipcmlI:{backgroundColor:\"var(--token-20232de1-c527-4fb1-beb3-8aebdce2e3af, rgb(248, 246, 242))\"}},...addPropertyOverrides({\"FnK8q2wSo-hover\":{\"data-framer-name\":undefined},\"meGj6COzO-hover\":{\"data-framer-name\":undefined},\"qs2ohiw_p-hover\":{\"data-framer-name\":undefined},\"UuZ9TRPUX-hover\":{\"data-framer-name\":undefined},\"WZLipcmlI-hover\":{\"data-border\":true,\"data-framer-name\":undefined},\"Ys6W3famC-hover\":{\"data-framer-name\":undefined},FnK8q2wSo:{\"data-framer-name\":\"Light + Icon\"},qs2ohiw_p:{\"data-framer-name\":\"Faded\"},UuZ9TRPUX:{\"data-framer-name\":\"Light\"},WZLipcmlI:{\"data-framer-name\":\"Nav-version\"},Ys6W3famC:{\"data-framer-name\":\"Primary \u2022 Small\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm1hIERKUiBEZWNrIE1lZGl1bQ==\",\"--framer-font-family\":'\"Forma DJR Deck Medium\", \"Forma DJR Deck Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b13a31aa-f3fa-4678-bc52-2e7010470a82, rgb(31, 39, 27)))\"},children:\"View Careers\"})}),className:\"framer-18droq8\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Forma DJR Deck Medium\"],layoutDependency:layoutDependency,layoutId:\"Oyz1wxXVn\",style:{\"--extracted-r6o4lv\":\"var(--token-b13a31aa-f3fa-4678-bc52-2e7010470a82, rgb(31, 39, 27))\",\"--framer-paragraph-spacing\":\"0px\"},text:MNUq27zYb,variants:{\"meGj6COzO-hover\":{\"--extracted-r6o4lv\":\"var(--token-26c16c21-3bf5-48e2-8576-be7a7aea5041, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"meGj6COzO-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm1hIERKUiBEZWNrIE1lZGl1bQ==\",\"--framer-font-family\":'\"Forma DJR Deck Medium\", \"Forma DJR Deck Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-26c16c21-3bf5-48e2-8576-be7a7aea5041, rgb(255, 255, 255)))\"},children:\"View Careers\"})})},WZLipcmlI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm1hIERKUiBEZWNrIE1lZGl1bQ==\",\"--framer-font-family\":'\"Forma DJR Deck Medium\", \"Forma DJR Deck Medium Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b13a31aa-f3fa-4678-bc52-2e7010470a82, rgb(31, 39, 27)))\"},children:\"View Careers\"})})},Ys6W3famC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-sl8oe\",\"data-styles-preset\":\"g_E2UFytt\",style:{\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b13a31aa-f3fa-4678-bc52-2e7010470a82, rgb(31, 39, 27)))\"},children:\"View Careers\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wsaoo2-container\",\"data-framer-name\":\"Arrow\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"LbgWd_XZd-container\",name:\"Arrow\",nodeId:\"LbgWd_XZd\",rendersWithMotion:true,scopeId:\"MAofX6SFd\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-b13a31aa-f3fa-4678-bc52-2e7010470a82, rgb(61, 59, 66))\",customPadding:0,customStrokeWidth:1.5,customSvgCode:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 25 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M18.375 15.25V5.75M18.375 5.75H8.875M18.375 5.75L6.125 18\" stroke=\"black\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',description:\"\",height:\"100%\",id:\"LbgWd_XZd\",layoutId:\"LbgWd_XZd\",lineCap:\"round\",lineJoin:\"bevel\",name:\"Arrow\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG1,{className:\"framer-1rv1xtb\",\"data-framer-name\":\"Play Button\",fill:'var(--token-b13a31aa-f3fa-4678-bc52-2e7010470a82, rgb(31, 39, 27)) /* {\"name\":\"Dark Tone\"} */',intrinsicHeight:14,intrinsicWidth:12,layoutDependency:layoutDependency,layoutId:\"ZH2LDBreG\",svg:'<svg width=\"12\" height=\"14\" viewBox=\"0 0 12 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.75 6.13405C10.4167 6.51895 10.4167 7.4812 9.75 7.8661L1.5 12.6292C0.833332 13.0141 -5.25766e-07 12.533 -4.92117e-07 11.7632L-7.57103e-08 2.23693C-4.20613e-08 1.46713 0.833333 0.986008 1.5 1.37091L9.75 6.13405Z\" fill=\"#1F271B\"/>\\n</svg>\\n',withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9DEb6.framer-8yt9jj, .framer-9DEb6 .framer-8yt9jj { display: block; }\",\".framer-9DEb6.framer-1q1flcp { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 16px 18px 16px 18px; position: relative; text-decoration: none; width: min-content; }\",\".framer-9DEb6 .framer-18droq8 { flex: none; height: 16px; position: relative; white-space: pre; width: auto; }\",\".framer-9DEb6 .framer-wsaoo2-container { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-9DEb6 .framer-1rv1xtb { flex: none; height: 14px; position: relative; width: 12px; }\",\".framer-9DEb6.framer-v-1q4m9ym.framer-1q1flcp { height: 42px; padding: 7px 21px 7px 21px; }\",\".framer-9DEb6.framer-v-1ewm6pv.framer-1q1flcp, .framer-9DEb6.framer-v-ssvv0n.framer-1q1flcp { gap: 12px; }\",\".framer-9DEb6.framer-v-1ewm6pv .framer-18droq8, .framer-9DEb6.framer-v-ssvv0n .framer-18droq8 { order: 2; }\",\".framer-9DEb6.framer-v-1ewm6pv .framer-1rv1xtb, .framer-9DEb6.framer-v-6f7j6k .framer-18droq8 { order: 0; }\",\".framer-9DEb6.framer-v-6f7j6k.framer-1q1flcp { gap: 6px; height: 38px; padding: 16px 12px 16px 12px; }\",\".framer-9DEb6.framer-v-6f7j6k .framer-wsaoo2-container { order: 1; }\",...sharedStyle.css,'.framer-9DEb6[data-border=\"true\"]::after, .framer-9DEb6 [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 48\n * @framerIntrinsicWidth 133.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Ys6W3famC\":{\"layout\":[\"auto\",\"fixed\"]},\"qs2ohiw_p\":{\"layout\":[\"auto\",\"auto\"]},\"FnK8q2wSo\":{\"layout\":[\"auto\",\"auto\"]},\"UuZ9TRPUX\":{\"layout\":[\"auto\",\"auto\"]},\"WZLipcmlI\":{\"layout\":[\"auto\",\"fixed\"]},\"ETI9sJTDd\":{\"layout\":[\"auto\",\"auto\"]},\"qfOF6Q3ht\":{\"layout\":[\"auto\",\"fixed\"]},\"WcHbyGVNg\":{\"layout\":[\"auto\",\"auto\"]},\"AjzlNhlDi\":{\"layout\":[\"auto\",\"auto\"]},\"w_nvOTx_w\":{\"layout\":[\"auto\",\"auto\"]},\"kxDIJc9c6\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"MNUq27zYb\":\"title\",\"tQ40fKerf\":\"newTab\",\"rg2z_fcVb\":\"click\",\"XOML5gjIB\":\"link3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerMAofX6SFd=withCSS(Component,css,\"framer-9DEb6\");export default FramerMAofX6SFd;FramerMAofX6SFd.displayName=\"Button\";FramerMAofX6SFd.defaultProps={height:48,width:133.5};addPropertyControls(FramerMAofX6SFd,{variant:{options:[\"meGj6COzO\",\"Ys6W3famC\",\"qs2ohiw_p\",\"FnK8q2wSo\",\"UuZ9TRPUX\",\"WZLipcmlI\"],optionTitles:[\"Primary\",\"Primary \u2022 Small\",\"Faded\",\"Light + Icon\",\"Light\",\"Nav-version\"],title:\"Variant\",type:ControlType.Enum},MNUq27zYb:{defaultValue:\"View Careers\",displayTextArea:false,title:\"Title\",type:ControlType.String},tQ40fKerf:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},rg2z_fcVb:{title:\"Click\",type:ControlType.EventHandler},XOML5gjIB:{title:\"Link 3\",type:ControlType.Link}});addFonts(FramerMAofX6SFd,[{explicitInter:true,fonts:[{family:\"Forma DJR Deck Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/yshdVVPYXZwC49uhpGH6irPxdw.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...SVGFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMAofX6SFd\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Ys6W3famC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"qs2ohiw_p\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FnK8q2wSo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UuZ9TRPUX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"WZLipcmlI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"ETI9sJTDd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qfOF6Q3ht\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"WcHbyGVNg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AjzlNhlDi\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"w_nvOTx_w\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kxDIJc9c6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"48\",\"framerVariables\":\"{\\\"MNUq27zYb\\\":\\\"title\\\",\\\"tQ40fKerf\\\":\\\"newTab\\\",\\\"rg2z_fcVb\\\":\\\"click\\\",\\\"XOML5gjIB\\\":\\\"link3\\\"}\",\"framerIntrinsicWidth\":\"133.5\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MAofX6SFd.map", "// Generated by Framer (5351ffe)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Forma DJR Deck Regular\",\"CUSTOM;Forma DJR Deck Medium\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Forma DJR Deck Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/FuZS5N7SAYKFraoYcrvqVkQIs0.woff2\"},{family:\"Forma DJR Deck Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/yshdVVPYXZwC49uhpGH6irPxdw.woff2\"}]}];export const css=['.framer-Rs8vU .framer-styles-preset-l2r1ae:not(.rich-text-wrapper), .framer-Rs8vU .framer-styles-preset-l2r1ae.rich-text-wrapper h4 { --framer-font-family: \"Forma DJR Deck Regular\", \"Forma DJR Deck Regular Placeholder\", sans-serif; --framer-font-family-bold: \"Forma DJR Deck Medium\", \"Forma DJR Deck Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 25px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-letter-spacing: 0.02em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-b13a31aa-f3fa-4678-bc52-2e7010470a82, #1f271b); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1137px) and (min-width: 810px) { .framer-Rs8vU .framer-styles-preset-l2r1ae:not(.rich-text-wrapper), .framer-Rs8vU .framer-styles-preset-l2r1ae.rich-text-wrapper h4 { --framer-font-family: \"Forma DJR Deck Regular\", \"Forma DJR Deck Regular Placeholder\", sans-serif; --framer-font-family-bold: \"Forma DJR Deck Medium\", \"Forma DJR Deck Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 21px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-letter-spacing: 0.02em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-b13a31aa-f3fa-4678-bc52-2e7010470a82, #1f271b); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-Rs8vU .framer-styles-preset-l2r1ae:not(.rich-text-wrapper), .framer-Rs8vU .framer-styles-preset-l2r1ae.rich-text-wrapper h4 { --framer-font-family: \"Forma DJR Deck Regular\", \"Forma DJR Deck Regular Placeholder\", sans-serif; --framer-font-family-bold: \"Forma DJR Deck Medium\", \"Forma DJR Deck Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-letter-spacing: 0.02em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-b13a31aa-f3fa-4678-bc52-2e7010470a82, #1f271b); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-Rs8vU\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["SVG", "props", "customSvgElement", "setCustomSvgElement", "ye", "ue", "svgContent", "processCustomSVGContent", "replacements", "hasCustomStroke", "hasCustomStrokeWidth", "hasLineCap", "hasLineJoin", "circleFillRegex", "match", "updatedCircle", "regex", "replacement", "customContainerStyle", "accessibilityProps", "p", "addPropertyControls", "ControlType", "SVG_Prod_default", "fontStore", "fonts", "css", "className", "SVGFonts", "getFonts", "SVG_Prod_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "link3", "newTab", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "MNUq27zYb", "tQ40fKerf", "rg2z_fcVb", "XOML5gjIB", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapoheixk", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "Link", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "SVG", "css", "FramerMAofX6SFd", "withCSS", "MAofX6SFd_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className"]
}
