{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/Dropdown-SFXM.js@QaTvOrhMYxJafAMbgOJo", "ssg:https://framer.com/m/JobRow-zn1I.js@pqM6pIupGzMM7NT7RdNi", "ssg:https://framer.com/m/JobsEmpty-gmDc.js@Czmy2HpPVWgLW0OJB1ti", "ssg:https://framerusercontent.com/modules/nfbtYMHymfPUeJAg9Up4/TzwlFebcT1Jq9gW7K7ly/JobsList.js", "ssg:https://framerusercontent.com/modules/j4fK8EoVt5TMO5TiBmPt/SJ3yOTWLsr7uaO24ksEM/vC8G6faOH.js", "ssg:https://framerusercontent.com/modules/2AtMSCVXkFDAERixw055/1UqmxBB4XPYCWdj56iQ1/NrzrwzC7W.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState}from\"react\";import Paragraph from\"https://framer.com/m/Paragraph-Ki5E.js@WhPlJBIkbnLdTavO5jRo\";/**\n * These annotations control how your component sizes\n * Learn more: https://www.framer.com/developers/components/auto-sizing\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */const exceptionsDepartments=[\"DO NOT CONTACT\",\"LOCATION TRANSFERS\",\"TEMPLATES\",\"[z] DO NOT USE - PEOPLE OPS ONLY\",\"No Department\",\"HISTORICAL ARCHIVE\",\"No Office\"];export default function Dropdown({selected,options,handleFilterClick,defaultOption}){const[isOpen,setIsOpen]=useState(false);return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:innerStyles}}),/*#__PURE__*/_jsxs(\"div\",{className:\"dropdown\",children:[/*#__PURE__*/_jsxs(\"button\",{onClick:()=>setIsOpen(!isOpen),className:`dropdown-box ${isOpen?\"active\":\"\"}`,children:[/*#__PURE__*/_jsx(Paragraph,{variant:\"Body/Small/Semibold\",className:\"inner-text\",text:selected===defaultOption?defaultOption:selected}),/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",fill:\"none\",height:\"8\",viewBox:\"0 0 12 8\",width:\"12\",className:`chevron ${isOpen?\"active\":\"\"}`,children:/*#__PURE__*/_jsx(\"path\",{d:\"m5.99769 5.45217 4.58981-4.579842 1.1273 1.127312-5.71711 5.71716-5.71716-5.71716 1.12731-1.127313z\",fill:\"#130b19\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:`dropdown-options ${isOpen?\"active\":\"\"}`,children:[/*#__PURE__*/_jsx(\"div\",{children:/*#__PURE__*/_jsx(\"button\",{onClick:()=>{handleFilterClick({id:null,name:defaultOption});setIsOpen(false);},className:`option-button`,children:/*#__PURE__*/_jsx(Paragraph,{variant:\"Body/Small\",className:\"inner-text\",text:defaultOption})})}),options?.map((option,index)=>{if(!exceptionsDepartments.includes(option.name)){return /*#__PURE__*/_jsx(\"button\",{onClick:()=>{handleFilterClick({id:option.id,name:option.name});setIsOpen(false);},className:`option-button ${selected===option.name?\"active\":\"\"}`,children:/*#__PURE__*/_jsx(Paragraph,{variant:\"Body/Small\",className:\"inner-text\",text:option.name})});}})]})]})]});}const innerStyles=`\n    .dropdown ul {\n        padding: 0;\n        margin: 0;\n    }\n\n    .dropdown ul li::marker {\n        display: none;\n        content: '';\n    }\n\n    .dropdown {\n        width: 340px;\n        position: relative;\n\n        @media (max-width: 720px) {\n            width: 100%;\n        }\n    }\n\n    .dropdown .dropdown-box {\n        padding: 11px 8px 10px;\n        border: none;\n        color: #55515C;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        background-color: transparent;\n        border-bottom: 2px solid #261F2E;\n        width: 100%;\n    }\n\n    .dropdown .dropdown-box:hover {\n        cursor: pointer;\n    }\n\n    .dropdown .dropdown-box .chevron.active {\n        transform: rotate(180deg);\n        transition: all 0.3s ease-in-out;\n    }\n\n    .dropdown .dropdown-box.active {\n        box-shadow: 0px 0px 6px 0px #00000005;\n    }\n\n    .dropdown .dropdown-options {\n        position: absolute;\n        top: calc(100% - 2px);\n        width: 100%;\n        max-height: 0;\n        background-color: white;\n        overflow-y: auto;\n        z-index: 1;\n        -ms-overflow-style: none;\n        scrollbar-width: none;\n        box-shadow: 0px 2px 4px 0px #00000014;\n        border-bottom: 2px solid #261F2E;\n        opacity: 0;\n        transition: all 0.3s ease-in-out;\n    }\n    \n    .dropdown .dropdown-options.active {\n        max-height: 170px;\n        opacity: 1;\n    }\n\n    .dropdown .dropdown-options::-webkit-scrollbar {\n         display: none;\n    }\n\n    .dropdown .dropdown-options .option-button {\n        width: 100%;\n        border: none;\n        padding: 6px;\n        background-color: transparent;\n        transition: all 0.3s ease-in-out;\n    }\n\n    .dropdown .dropdown-options .option-button:hover {\n        cursor: pointer;\n    }\n\n    .dropdown .dropdown-options .option-button .inner-text *{\n        color: #807C86 !important;\n    }\n\n    .dropdown .dropdown-options .option-button:hover .inner-text *{\n        color: #130B19 !important;\n    }\n\n    .dropdown .dropdown-options .option-button.active .inner-text * {\n        color: #130B19 !important;\n        font-weight: 500;\n        font-family: \"Graphik Medium\", \"Graphik Medium Placeholder\", sans-serif;\n    }\n\n    .dropdown .inner-text, .dropdown .inner-text *{\n        width: 100% !important;\n        justify-content: start;\n        transform: none !important;\n        transform-origin: 0 !important;\n        transition: none !important;\n    }\n   `;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Dropdown\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Dropdown.map", "// Generated by Framer (b62c1c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={qeSqf21dK:{hover:true},YTUuo93C7:{pressed:true}};const cycleOrder=[\"qeSqf21dK\",\"YTUuo93C7\"];const serializationHash=\"framer-wJU5r\";const variantClassNames={qeSqf21dK:\"framer-v-1kn04ny\",YTUuo93C7:\"framer-v-1qgx5js\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={Desktop:\"qeSqf21dK\",Mobile:\"YTUuo93C7\"};const getProps=({height,id,jobDepartment,jobLocation,jobTitle,link,linkNewTab,width,...props})=>{return{...props,Nnmy0nIn4:link??props.Nnmy0nIn4,sYihqlVnT:jobLocation??props.sYihqlVnT??\"Remote, Palo Alto, CA (United States)\",T2nGr_rRb:jobTitle??props.T2nGr_rRb??\"Senior Finance Analyst\",variant:humanReadableVariantMap[props.variant]??props.variant??\"qeSqf21dK\",X3OxWJJG5:jobDepartment??props.X3OxWJJG5??\"Accounting & Finance\",xpOoxqG7Y:linkNewTab??props.xpOoxqG7Y};};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,T2nGr_rRb,X3OxWJJG5,sYihqlVnT,Nnmy0nIn4,xpOoxqG7Y,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qeSqf21dK\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);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:Nnmy0nIn4,motionChild:true,nodeId:\"qeSqf21dK\",openInNewTab:xpOoxqG7Y,scopeId:\"Doc8rZODI\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1kn04ny\",className,classNames)} framer-y646py`,\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"qeSqf21dK\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-6b44bcb4-fc7a-487b-9868-385073dfe293, rgb(230, 230, 230))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},variants:{\"qeSqf21dK-hover\":{\"--border-color\":\"var(--token-c27996ee-4e6a-49e8-aa5c-0ac195b356ac, rgb(19, 11, 25))\"}},...addPropertyOverrides({\"qeSqf21dK-hover\":{\"data-framer-name\":undefined},\"YTUuo93C7-pressed\":{\"data-framer-name\":undefined},YTUuo93C7:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yfcpmh\",layoutDependency:layoutDependency,layoutId:\"zH3IJPXMh\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-127y2v2\",layoutDependency:layoutDependency,layoutId:\"dkmjxiCxd\",style:{backgroundColor:\"var(--token-c27996ee-4e6a-49e8-aa5c-0ac195b356ac, rgb(19, 11, 25))\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,opacity:0},variants:{\"qeSqf21dK-hover\":{opacity:1},\"YTUuo93C7-pressed\":{opacity:1}}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dyYXBoaWsgUmVndWxhcg==\",\"--framer-font-family\":'\"Graphik Regular\", \"Graphik Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"125%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-49b8aab0-028c-4696-b9c7-0d4548f6986b, rgb(85, 81, 92)))\"},children:\"Senior Finance Analyst\"})}),className:\"framer-bo0bmm\",fonts:[\"CUSTOM;Graphik Regular\"],layoutDependency:layoutDependency,layoutId:\"VB_N87LOE\",style:{\"--extracted-r6o4lv\":\"var(--token-49b8aab0-028c-4696-b9c7-0d4548f6986b, rgb(85, 81, 92))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:T2nGr_rRb,variants:{\"qeSqf21dK-hover\":{\"--extracted-r6o4lv\":\"var(--token-c27996ee-4e6a-49e8-aa5c-0ac195b356ac, rgb(19, 11, 25))\"},\"YTUuo93C7-pressed\":{\"--extracted-r6o4lv\":\"var(--token-c27996ee-4e6a-49e8-aa5c-0ac195b356ac, rgb(19, 11, 25))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"qeSqf21dK-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dyYXBoaWsgUmVndWxhcg==\",\"--framer-font-family\":'\"Graphik Regular\", \"Graphik Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"125%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c27996ee-4e6a-49e8-aa5c-0ac195b356ac, rgb(19, 11, 25)))\"},children:\"Senior Finance Analyst\"})})},\"YTUuo93C7-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dyYXBoaWsgUmVndWxhcg==\",\"--framer-font-family\":'\"Graphik Regular\", \"Graphik Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"125%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c27996ee-4e6a-49e8-aa5c-0ac195b356ac, rgb(19, 11, 25)))\"},children:\"Senior Finance Analyst\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dpu2ko\",layoutDependency:layoutDependency,layoutId:\"Q_hwZ8MJp\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dyYXBoaWsgUmVndWxhcg==\",\"--framer-font-family\":'\"Graphik Regular\", \"Graphik Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-49b8aab0-028c-4696-b9c7-0d4548f6986b, rgb(85, 81, 92)))\"},children:\"Accounting & Finance\"})}),className:\"framer-1xn0wg6\",fonts:[\"CUSTOM;Graphik Regular\"],layoutDependency:layoutDependency,layoutId:\"EAf12y5_N\",style:{\"--extracted-r6o4lv\":\"var(--token-49b8aab0-028c-4696-b9c7-0d4548f6986b, rgb(85, 81, 92))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:X3OxWJJG5,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10kwt5l\",layoutDependency:layoutDependency,layoutId:\"UB0IQQAZq\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dyYXBoaWsgUmVndWxhcg==\",\"--framer-font-family\":'\"Graphik Regular\", \"Graphik Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-49b8aab0-028c-4696-b9c7-0d4548f6986b, rgb(85, 81, 92)))\"},children:\"Remote, Palo Alto, CA (United States)\"})}),className:\"framer-19xlkbp\",fonts:[\"CUSTOM;Graphik Regular\"],layoutDependency:layoutDependency,layoutId:\"N9SQJCUjq\",style:{\"--extracted-r6o4lv\":\"var(--token-49b8aab0-028c-4696-b9c7-0d4548f6986b, rgb(85, 81, 92))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:sYihqlVnT,verticalAlignment:\"top\",withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wJU5r.framer-y646py, .framer-wJU5r .framer-y646py { display: block; }\",\".framer-wJU5r.framer-1kn04ny { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; padding: 16px 0px 16px 0px; position: relative; text-decoration: none; width: 1062px; }\",\".framer-wJU5r .framer-1yfcpmh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 40%; overflow: visible; padding: 0px; position: relative; width: 40%; }\",\".framer-wJU5r .framer-127y2v2 { flex: none; height: 6px; left: 0px; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 6px / 2); width: 6px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-wJU5r .framer-bo0bmm, .framer-wJU5r .framer-1xn0wg6, .framer-wJU5r .framer-19xlkbp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-wJU5r .framer-1dpu2ko { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; max-width: 28%; overflow: hidden; padding: 0px; position: relative; width: 28%; }\",\".framer-wJU5r .framer-10kwt5l { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; max-width: 28%; overflow: hidden; padding: 0px; position: relative; width: 28%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wJU5r .framer-1yfcpmh, .framer-wJU5r .framer-1dpu2ko, .framer-wJU5r .framer-10kwt5l { gap: 0px; } .framer-wJU5r .framer-1yfcpmh > *, .framer-wJU5r .framer-1dpu2ko > *, .framer-wJU5r .framer-10kwt5l > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wJU5r .framer-1yfcpmh > :first-child, .framer-wJU5r .framer-1dpu2ko > :first-child, .framer-wJU5r .framer-10kwt5l > :first-child { margin-left: 0px; } .framer-wJU5r .framer-1yfcpmh > :last-child, .framer-wJU5r .framer-1dpu2ko > :last-child, .framer-wJU5r .framer-10kwt5l > :last-child { margin-right: 0px; } }\",\".framer-wJU5r.framer-v-1qgx5js.framer-1kn04ny { flex-wrap: wrap; gap: 16px; justify-content: flex-start; width: 390px; }\",\".framer-wJU5r.framer-v-1qgx5js .framer-1yfcpmh { max-width: 100%; width: 100%; }\",\".framer-wJU5r.framer-v-1qgx5js .framer-1dpu2ko, .framer-wJU5r.framer-v-1qgx5js .framer-10kwt5l { max-width: unset; width: min-content; }\",\".framer-wJU5r.framer-v-1qgx5js .framer-1xn0wg6, .framer-wJU5r.framer-v-1qgx5js .framer-19xlkbp { white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wJU5r.framer-v-1qgx5js.framer-1kn04ny { gap: 0px; } .framer-wJU5r.framer-v-1qgx5js.framer-1kn04ny > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-wJU5r.framer-v-1qgx5js.framer-1kn04ny > :first-child { margin-left: 0px; } .framer-wJU5r.framer-v-1qgx5js.framer-1kn04ny > :last-child { margin-right: 0px; } }\",\".framer-wJU5r.framer-v-1kn04ny.hover .framer-1yfcpmh, .framer-wJU5r.framer-v-1qgx5js.pressed .framer-1yfcpmh { padding: 0px 0px 0px 22px; }\",\".framer-wJU5r.framer-v-1qgx5js.pressed .framer-1dpu2ko, .framer-wJU5r.framer-v-1qgx5js.pressed .framer-10kwt5l { max-width: unset; }\",'.framer-wJU5r[data-border=\"true\"]::after, .framer-wJU5r [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 62\n * @framerIntrinsicWidth 1062\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"YTUuo93C7\":{\"layout\":[\"fixed\",\"auto\"]},\"UIrorPw9d\":{\"layout\":[\"fixed\",\"auto\"]},\"OhVwMWC3r\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"T2nGr_rRb\":\"jobTitle\",\"X3OxWJJG5\":\"jobDepartment\",\"sYihqlVnT\":\"jobLocation\",\"Nnmy0nIn4\":\"link\",\"xpOoxqG7Y\":\"linkNewTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDoc8rZODI=withCSS(Component,css,\"framer-wJU5r\");export default FramerDoc8rZODI;FramerDoc8rZODI.displayName=\"JobRow\";FramerDoc8rZODI.defaultProps={height:62,width:1062};addPropertyControls(FramerDoc8rZODI,{variant:{options:[\"qeSqf21dK\",\"YTUuo93C7\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},T2nGr_rRb:{defaultValue:\"Senior Finance Analyst\",displayTextArea:false,title:\"Job Title\",type:ControlType.String},X3OxWJJG5:{defaultValue:\"Accounting & Finance\",displayTextArea:false,title:\"Job Department\",type:ControlType.String},sYihqlVnT:{defaultValue:\"Remote, Palo Alto, CA (United States)\",displayTextArea:false,title:\"Job Location\",type:ControlType.String},Nnmy0nIn4:{title:\"Link\",type:ControlType.Link},xpOoxqG7Y:{defaultValue:false,title:\"Link New Tab\",type:ControlType.Boolean}});addFonts(FramerDoc8rZODI,[{explicitInter:true,fonts:[{family:\"Graphik Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/G4eGvjWPkzvXcHBITxszVa2wLs.woff\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDoc8rZODI\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"T2nGr_rRb\\\":\\\"jobTitle\\\",\\\"X3OxWJJG5\\\":\\\"jobDepartment\\\",\\\"sYihqlVnT\\\":\\\"jobLocation\\\",\\\"Nnmy0nIn4\\\":\\\"link\\\",\\\"xpOoxqG7Y\\\":\\\"linkNewTab\\\"}\",\"framerIntrinsicWidth\":\"1062\",\"framerIntrinsicHeight\":\"62\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YTUuo93C7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UIrorPw9d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OhVwMWC3r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Doc8rZODI.map", "// Generated by Framer (f26e712)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/oAw5zffMCOoUOTCNqYrq/rWbQ1gnSc6fF20oam8tl/TTlw48aBv.js\";const serializationHash=\"framer-0z6FG\";const variantClassNames={DHEMq6pMs:\"framer-v-bd1a73\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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 getProps=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"DHEMq6pMs\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-bd1a73\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"DHEMq6pMs\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-gn6mxt\",\"data-styles-preset\":\"TTlw48aBv\",children:\"No positions available at this time.\"})}),className:\"framer-1t66c4z\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qwxGx98Ad\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0z6FG.framer-ict8k3, .framer-0z6FG .framer-ict8k3 { display: block; }\",\".framer-0z6FG.framer-bd1a73 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-0z6FG .framer-1t66c4z { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0z6FG.framer-bd1a73 { gap: 0px; } .framer-0z6FG.framer-bd1a73 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-0z6FG.framer-bd1a73 > :first-child { margin-top: 0px; } .framer-0z6FG.framer-bd1a73 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 348\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFWMVl9N6q=withCSS(Component,css,\"framer-0z6FG\");export default FramerFWMVl9N6q;FramerFWMVl9N6q.displayName=\"JobsEmpty\";FramerFWMVl9N6q.defaultProps={height:30,width:348};addFonts(FramerFWMVl9N6q,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFWMVl9N6q\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"30\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"348\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FWMVl9N6q.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import CallToAction from\"https://framer.com/m/CallToAction-Dbzh.js@91RYL00gEaBr0MC5QynB\";import Dropdown from\"https://framer.com/m/Dropdown-SFXM.js@QaTvOrhMYxJafAMbgOJo\";import JobRow from\"https://framer.com/m/JobRow-zn1I.js@pqM6pIupGzMM7NT7RdNi\";import JobsEmpty from\"https://framer.com/m/JobsEmpty-gmDc.js@Czmy2HpPVWgLW0OJB1ti\";const SOURCE_TOKEN=\"gh_src\";/**\n * These annotations control how your component sizes\n * Learn more: https://www.framer.com/developers/components/auto-sizing\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */export default function JobsList(props){const chunkNumber=12;const pageItemsNumer=10;const[jobs,setJobs]=useState([]);const[filteredResults,setFilteredResults]=useState([]);const[departments,setDepartments]=useState([]);const[locations,setLocations]=useState([]);const[results,setResults]=useState([]);const[selectedDepartment,setSelectedDepartment]=useState({id:null,name:\"All departments\"});const[selectedLocation,setSelectedLocation]=useState({id:null,name:\"All locations\"});const[queryParams,setQueryParams]=useState(\"\");const orderResults=data=>{return data.sort((a,b)=>{if(a.title<b.title){return-1;}if(a.title>b.title){return 1;}return 0;});};const getChunks=(data,numberOfChunks)=>{return data.slice(0,results.length===0?12:results.length+pageItemsNumer);};const fetchLocations=()=>{fetch(\"https://boards-api.greenhouse.io/v1/boards/wing/offices\").then(res=>{return res.json();}).then(data=>{setLocations(data.offices);});};const fetchDepartmets=()=>{fetch(\"https://boards-api.greenhouse.io/v1/boards/wing/departments\").then(res=>{return res.json();}).then(data=>{setDepartments(data.departments);});};const fetchJobs=()=>{fetch(\"https://boards-api.greenhouse.io/v1/boards/wing/jobs?content=true\").then(res=>{return res.json();}).then(data=>{setJobs(data.jobs);setFilteredResults(data.jobs);setResults(getChunks(orderResults(data.jobs),12));});};const storeFilteredElements=()=>{const filteredElements=jobs.filter(job=>{return job.departments.some(department=>selectedDepartment.id?department.id===selectedDepartment.id:true);}).filter(job=>{return job.offices.some(office=>selectedLocation.id?office.id===selectedLocation.id:true);});setFilteredResults(filteredElements);setResults(getChunks(orderResults(filteredElements),12));};const handleDepartmentClick=value=>{setSelectedDepartment(value);};const handleLocationClick=value=>{setSelectedLocation(value);};const handleNextClick=()=>{setResults(getChunks(orderResults(filteredResults),10));};useEffect(()=>{fetchJobs();fetchDepartmets();fetchLocations();const paramsString=window.location.search;const searchParams=new URLSearchParams(paramsString);const source=searchParams.get(SOURCE_TOKEN);setQueryParams(source?`&${SOURCE_TOKEN}=${source}`:\"\");},[]);useEffect(()=>{storeFilteredElements();},[selectedDepartment,selectedLocation]);/*const paramsString = window.location.search\n    const searchParams = new URLSearchParams(paramsString)\n\n    const source = searchParams.get(SOURCE_TOKEN)\n    const queryParams = source ? `&${SOURCE_TOKEN}=${source}` : \"\"*/return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:innerStyles}}),/*#__PURE__*/_jsxs(\"div\",{className:\"jobs-list\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"filters\",children:[/*#__PURE__*/_jsx(Dropdown,{defaultOption:\"All departments\",selected:selectedDepartment.name,options:departments,handleFilterClick:handleDepartmentClick}),/*#__PURE__*/_jsx(Dropdown,{defaultOption:\"All locations\",selected:selectedLocation.name,options:locations,handleFilterClick:handleLocationClick})]}),results.length>0?/*#__PURE__*/_jsx(\"div\",{className:\"list-container\",children:/*#__PURE__*/_jsx(\"ul\",{className:\"list\",children:results?.map((result,index)=>/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(JobRow,{className:\"job-element\",jobTitle:result.title,jobDepartment:result.departments[0].name,jobLocation:result.location.name,link:`${result.absolute_url}${queryParams}`}),/*#__PURE__*/_jsx(JobRow,{variant:\"Mobile\",className:\"job-element mobile\",jobTitle:result.title,jobDepartment:result.departments[0].name,jobLocation:result.location.name,link:`${result.absolute_url}${queryParams}`})]}))})}):/*#__PURE__*/_jsx(\"div\",{className:\"no-results-message\",children:/*#__PURE__*/_jsx(JobsEmpty,{message:\"No positions available at this time.\"})}),results.length<filteredResults.length&&/*#__PURE__*/_jsx(\"div\",{className:\"cta-container\",children:/*#__PURE__*/_jsx(\"button\",{className:\"load-more-button\",onClick:handleNextClick,children:/*#__PURE__*/_jsx(CallToAction,{label:\"View More\"})})})]})]});}const innerStyles=`\n    .font-weight-medium {\n        font-weight: 500;\n        font-family: \"Graphik Medium\", \"Graphik Medium Placeholder\", sans-serif;\n    }\n\n    .jobs-list {\n        gap: 80px;\n        width: 100%;\n        display: flex;\n        margin: 0 auto;\n        padding: 0 30px;\n        max-width: 1187px;\n        height: fit-content;\n        flex-direction: column;\n\n        @media (max-width: 1024px) {\n            gap: 40px;\n            padding: 0 8px;\n        }\n    }\n\n    .jobs-list ul {\n        margin: 0;\n        padding: 0;\n    }\n\n    .jobs-list ul li::marker {\n        content: '';\n        display: none;\n    }\n\n    .jobs-list .filters {\n        gap: 16px;\n        width: 100%;\n        display: flex;\n        justify-content: center;\n\n        @media (max-width: 720px) {\n            flex-direction: column;\n        }\n    }\n\n    .jobs-list .list .job-element {\n        width: 100% !important;\n\n        @media (min-width: 720px) {\n            display: flex;\n        }\n\n        @media (max-width: 720px) {\n            display: none;\n        }\n    }\n\n    .jobs-list .list .job-element.mobile {\n        @media (min-width: 720px) {\n            display: none;\n        }\n\n        @media (max-width: 720px) {\n            display: flex;\n        }\n    }\n\n\n    .jobs-list .no-results-message {\n        display: flex;\n        justify-content: center;\n        color: #807C86;\n    }\n    \n    .jobs-list .no-results-message *{\n        color: #807C86;\n    }\n\n\n    .jobs-list .cta-container {\n        width: 100%;\n        display: flex;\n        justify-content: center;\n    }\n\n     .jobs-list .cta-container .load-more-button {\n        padding: 0;\n        border: none;\n        background: none;\n    }\n   `;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"JobsList\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"auto\",\"framerSupportedLayoutHeight\":\"auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JobsList.map", "// Generated by Framer (b62c1c2)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import JobsList from\"https://framerusercontent.com/modules/nfbtYMHymfPUeJAg9Up4/TzwlFebcT1Jq9gW7K7ly/JobsList.js\";const JobsListFonts=getFonts(JobsList);const cycleOrder=[\"SW6rooQhr\",\"YnJTfcgOS\",\"MnJWRC03C\",\"oooMrl3Dg\"];const serializationHash=\"framer-QcQho\";const variantClassNames={MnJWRC03C:\"framer-v-1jzebyj\",oooMrl3Dg:\"framer-v-132czod\",SW6rooQhr:\"framer-v-ddcwuc\",YnJTfcgOS:\"framer-v-18hig8g\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={\"Desktop Large\":\"SW6rooQhr\",Desktop:\"YnJTfcgOS\",Phone:\"oooMrl3Dg\",Tablet:\"MnJWRC03C\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"SW6rooQhr\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SW6rooQhr\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ddcwuc\",className,classNames),\"data-framer-name\":\"Desktop Large\",layoutDependency:layoutDependency,layoutId:\"SW6rooQhr\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({MnJWRC03C:{\"data-framer-name\":\"Tablet\"},oooMrl3Dg:{\"data-framer-name\":\"Phone\"},YnJTfcgOS:{\"data-framer-name\":\"Desktop\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-so3tpy-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"UnAoapf9_-container\",nodeId:\"UnAoapf9_\",rendersWithMotion:true,scopeId:\"vC8G6faOH\",children:/*#__PURE__*/_jsx(JobsList,{height:\"100%\",id:\"UnAoapf9_\",layoutId:\"UnAoapf9_\",width:\"100%\",...addPropertyOverrides({MnJWRC03C:{style:{maxWidth:\"100%\"}},oooMrl3Dg:{style:{maxWidth:\"100%\"}}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QcQho.framer-1rhrgnk, .framer-QcQho .framer-1rhrgnk { display: block; }\",\".framer-QcQho.framer-ddcwuc { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 2000px; }\",\".framer-QcQho .framer-so3tpy-container { flex: none; height: auto; min-width: 100%; position: relative; scroll-margin-top: 100px; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QcQho.framer-ddcwuc { gap: 0px; } .framer-QcQho.framer-ddcwuc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-QcQho.framer-ddcwuc > :first-child { margin-left: 0px; } .framer-QcQho.framer-ddcwuc > :last-child { margin-right: 0px; } }\",\".framer-QcQho.framer-v-18hig8g.framer-ddcwuc { width: 1200px; }\",\".framer-QcQho.framer-v-1jzebyj.framer-ddcwuc { width: 810px; }\",\".framer-QcQho.framer-v-1jzebyj .framer-so3tpy-container, .framer-QcQho.framer-v-132czod .framer-so3tpy-container { max-width: 100%; }\",\".framer-QcQho.framer-v-132czod.framer-ddcwuc { width: 390px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1111\n * @framerIntrinsicWidth 2000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"YnJTfcgOS\":{\"layout\":[\"fixed\",\"auto\"]},\"MnJWRC03C\":{\"layout\":[\"fixed\",\"auto\"]},\"oooMrl3Dg\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramervC8G6faOH=withCSS(Component,css,\"framer-QcQho\");export default FramervC8G6faOH;FramervC8G6faOH.displayName=\"JobListWrapper\";FramervC8G6faOH.defaultProps={height:1111,width:2e3};addPropertyControls(FramervC8G6faOH,{variant:{options:[\"SW6rooQhr\",\"YnJTfcgOS\",\"MnJWRC03C\",\"oooMrl3Dg\"],optionTitles:[\"Desktop Large\",\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramervC8G6faOH,[{explicitInter:true,fonts:[]},...JobsListFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervC8G6faOH\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YnJTfcgOS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MnJWRC03C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oooMrl3Dg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"2000\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"1111\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ModuleCTA from\"#framer/local/canvasComponent/BqV2cDsce/BqV2cDsce.js\";import ContentSlide from\"#framer/local/canvasComponent/D0nb3RmZp/D0nb3RmZp.js\";import ModuleTechnology from\"#framer/local/canvasComponent/ja47BFELT/ja47BFELT.js\";import FeaturedBlogPosts from\"#framer/local/canvasComponent/JPv1CwBtG/JPv1CwBtG.js\";import CardsGrid from\"#framer/local/canvasComponent/nLnLICzR6/nLnLICzR6.js\";import Headline from\"#framer/local/canvasComponent/OvcX0XVBm/OvcX0XVBm.js\";import JobListWrapper from\"#framer/local/canvasComponent/vC8G6faOH/vC8G6faOH.js\";import Eyebrow from\"#framer/local/codeFile/nLnOXLs/Eyebrow.js\";import SwiperCarousel from\"#framer/local/codeFile/DaO13GQ/SwiperCarousel.js\";import TestimonialTabs from\"#framer/local/codeFile/oOwseMJ/TestimonialTabs.js\";import ThreeUpCardsSlider from\"#framer/local/codeFile/iECgxhD/ThreeUpCardsSlider.js\";import metadataProvider from\"#framer/local/webPageMetadata/NrzrwzC7W/NrzrwzC7W.js\";const ModuleTechnologyFonts=getFonts(ModuleTechnology);const HeadlineFonts=getFonts(Headline);const ContentSlideFonts=getFonts(ContentSlide);const SwiperCarouselFonts=getFonts(SwiperCarousel);const EyebrowFonts=getFonts(Eyebrow);const CardsGridFonts=getFonts(CardsGrid);const ThreeUpCardsSliderFonts=getFonts(ThreeUpCardsSlider);const TestimonialTabsFonts=getFonts(TestimonialTabs);const JobListWrapperFonts=getFonts(JobListWrapper);const FeaturedBlogPostsFonts=getFonts(FeaturedBlogPosts);const ModuleCTAFonts=getFonts(ModuleCTA);const breakpoints={akzVEkg7k:\"(min-width: 1200px) and (max-width: 1999px)\",TIY7ocvH_:\"(min-width: 2000px)\",tlzJ24EWL:\"(min-width: 810px) and (max-width: 1199px)\",ZrHUnI9yJ:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-tgtkD\";const variantClassNames={akzVEkg7k:\"framer-v-1li31qd\",TIY7ocvH_:\"framer-v-1wwbghw\",tlzJ24EWL:\"framer-v-a0q7nz\",ZrHUnI9yJ:\"framer-v-1897rw\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop Large\":\"TIY7ocvH_\",Desktop:\"akzVEkg7k\",Phone:\"ZrHUnI9yJ\",Tablet:\"tlzJ24EWL\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"TIY7ocvH_\"};};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,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if([\"akzVEkg7k\",\"tlzJ24EWL\",\"ZrHUnI9yJ\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"akzVEkg7k\",\"tlzJ24EWL\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"ZrHUnI9yJ\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"akzVEkg7k\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if([\"tlzJ24EWL\",\"ZrHUnI9yJ\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if(!isBrowser())return true;if(baseVariant===\"tlzJ24EWL\")return true;return false;};const elementId=useRouteElementId(\"Ynh6oBQij\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"TIY7ocvH_\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1wwbghw\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1epx07v\",\"data-framer-name\":\"Simple Hero\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tlzJ24EWL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyYXBoaWsgUmVndWxhcg==\",\"--framer-font-family\":'\"Graphik Regular\", \"Graphik Regular Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6a0c3d78-586b-4441-8b48-107d9b6e2f36, rgb(20, 17, 24))\"},children:\"Wing careers\"})})},ZrHUnI9yJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyYXBoaWsgUmVndWxhcg==\",\"--framer-font-family\":'\"Graphik Regular\", \"Graphik Regular Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6a0c3d78-586b-4441-8b48-107d9b6e2f36, rgb(20, 17, 24))\"},children:\"Wing careers\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyYXBoaWsgUmVndWxhcg==\",\"--framer-font-family\":'\"Graphik Regular\", \"Graphik Regular Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6a0c3d78-586b-4441-8b48-107d9b6e2f36, rgb(20, 17, 24))\"},children:\"Wing careers\"})}),className:\"framer-1pwr4cu\",fonts:[\"CUSTOM;Graphik Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Ynh6oBQij\",webPageId:\"NrzrwzC7W\"},implicitPathVariables:undefined},{href:{hash:\":Ynh6oBQij\",webPageId:\"NrzrwzC7W\"},implicitPathVariables:undefined},{href:{hash:\":Ynh6oBQij\",webPageId:\"NrzrwzC7W\"},implicitPathVariables:undefined},{href:{hash:\":Ynh6oBQij\",webPageId:\"NrzrwzC7W\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tlzJ24EWL:{y:(componentViewport?.y||0)+0+270},ZrHUnI9yJ:{y:(componentViewport?.y||0)+0+270}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1310,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+303.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mp4u75-container\",nodeId:\"falXLanCb\",scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{akzVEkg7k:{LLfOYQo8b:resolvedLinks[1]},tlzJ24EWL:{LLfOYQo8b:resolvedLinks[2],variant:\"lgh3_KFUo\"},ZrHUnI9yJ:{LLfOYQo8b:resolvedLinks[3],upSB28FXN:\"32px 8px 0px 8px\",variant:\"G3Mbhl1py\"}},children:/*#__PURE__*/_jsx(ModuleTechnology,{bvAHJ6ROz:\"View open roles\",Gq40KFOUx:\"We\u2019re working to make delivery more convenient, sustainable, and accessible\u2014and we\u2019re looking for talented individuals to help.\",height:\"100%\",HLsBHNCwu:false,id:\"falXLanCb\",IezhgcYLP:addImageAlt({src:\"https://framerusercontent.com/images/AkxUOcwcAHqyvLhqeK6AldfMQ.png\",srcSet:\"https://framerusercontent.com/images/AkxUOcwcAHqyvLhqeK6AldfMQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/AkxUOcwcAHqyvLhqeK6AldfMQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AkxUOcwcAHqyvLhqeK6AldfMQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/AkxUOcwcAHqyvLhqeK6AldfMQ.png 2760w\"},\"Two silhouetted figures stand facing a sunset, with a package-carrying Wing delivery drone above them.\"),KDlZTusKK:\"csZpG7l5C\",layoutId:\"falXLanCb\",lfcIw40qr:false,LLfOYQo8b:resolvedLinks[0],style:{width:\"100%\"},upSB28FXN:\"32px 30px 0px 30px\",variant:\"Aia71F9eF\",VnbL3xNuq:\"Help build the future of delivery.\",width:\"100%\",y59ZcBcrT:\"https://download-video-ak.vimeocdn.com/v3-1/playback/8e008aff-ae87-49e5-b785-8d3a73ea77f8/55ae8224?__token__=st=1738688045~exp=1738702445~acl=%2Fv3-1%2Fplayback%2F8e008aff-ae87-49e5-b785-8d3a73ea77f8%2F55ae8224%2A~hmac=b8dae9fe9ff1d1bebe043a758d7dcb3973056c1c0e59e8a31ba6c53b2970c235&r=dXMtd2VzdDE%3D\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tlzJ24EWL:{y:(componentViewport?.y||0)+0+1580},ZrHUnI9yJ:{y:(componentViewport?.y||0)+0+1580}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1613.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10ahwio-container\",nodeId:\"ICwvCSmNh\",scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{akzVEkg7k:{variant:\"Q33tH8LIF\"},tlzJ24EWL:{variant:\"NO1AuapeL\",XjU9_pXty:\"0px 8px 48px 8px\"},ZrHUnI9yJ:{variant:\"sn3vrVI2a\",XjU9_pXty:\"0px 8px 48px 8px\"}},children:/*#__PURE__*/_jsx(Headline,{B7SoinH3W:\"Life at Wing\",bhbjmHJHG:\"rgba(255, 255, 255, 0)\",height:\"100%\",id:\"ICwvCSmNh\",kfkLA1iLz:\"\",layoutId:\"ICwvCSmNh\",NwYguLs2y:\"At Wing, we thrive on the challenges of building a new industry. Our teams solve complex problems, collaborate to find creative solutions, and learn from each iteration.\",S2LltDU_Y:false,style:{width:\"100%\"},variant:\"yNmYn5hzX\",width:\"100%\",XjU9_pXty:\"0px 30px 80px 30px\",YaeMjHVna:40})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n9wm67\",\"data-framer-name\":\"AssetsCarousel\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i8k8r5\",id:\"1i8k8r5\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v6lynq-container hidden-1li31qd hidden-a0q7nz hidden-1897rw\",\"data-framer-name\":\"Swiper DL\",isAuthoredByUser:true,name:\"Swiper DL\",nodeId:\"FneOyesgj\",scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(SwiperCarousel,{delay:5e3,height:\"100%\",id:\"FneOyesgj\",layoutId:\"FneOyesgj\",loop:true,name:\"Swiper DL\",showBullets:true,slides:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:945,width:\"1380px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-w3tvc1-container\",\"data-framer-name\":\"AssetCarouselSlide1 - DL\",inComponentSlot:true,name:\"AssetCarouselSlide1 - DL\",nodeId:\"dHesPX1Id\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(ContentSlide,{height:\"100%\",id:\"dHesPX1Id\",KtbbBrcwH:true,layoutId:\"dHesPX1Id\",name:\"AssetCarouselSlide1 - DL\",uaPONKkJq:addImageAlt({src:\"https://framerusercontent.com/images/IjqoVZ8Wrcva5PPgU29d7GJ8.jpeg\",srcSet:\"https://framerusercontent.com/images/IjqoVZ8Wrcva5PPgU29d7GJ8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/IjqoVZ8Wrcva5PPgU29d7GJ8.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IjqoVZ8Wrcva5PPgU29d7GJ8.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IjqoVZ8Wrcva5PPgU29d7GJ8.jpeg 2267w\"},\"A man working in a modern workshop filled with various tools and equipment.\"),uFOU0Epv7:\"Work with an executive team that has experience across aerospace, technology, and consumer brands.\",variant:\"uH1XITn11\",width:\"100%\"})})})],spaceBetween:30,speed:1e3,style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-voctxh-container hidden-1wwbghw hidden-1897rw\",\"data-framer-name\":\"Swiper D\",isAuthoredByUser:true,name:\"Swiper D\",nodeId:\"CEHVTjaLF\",scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(SwiperCarousel,{delay:5e3,height:\"100%\",id:\"CEHVTjaLF\",layoutId:\"CEHVTjaLF\",loop:true,name:\"Swiper D\",showBullets:true,slides:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:945,children:/*#__PURE__*/_jsx(Container,{className:\"framer-u55whn-container\",\"data-framer-name\":\"AssetCarouselSlide1 - D\",inComponentSlot:true,name:\"AssetCarouselSlide1 - D\",nodeId:\"UdcCBcmXb\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(ContentSlide,{height:\"100%\",id:\"UdcCBcmXb\",KtbbBrcwH:true,layoutId:\"UdcCBcmXb\",name:\"AssetCarouselSlide1 - D\",uaPONKkJq:addImageAlt({src:\"https://framerusercontent.com/images/IjqoVZ8Wrcva5PPgU29d7GJ8.jpeg\",srcSet:\"https://framerusercontent.com/images/IjqoVZ8Wrcva5PPgU29d7GJ8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/IjqoVZ8Wrcva5PPgU29d7GJ8.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IjqoVZ8Wrcva5PPgU29d7GJ8.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IjqoVZ8Wrcva5PPgU29d7GJ8.jpeg 2267w\"},\"A man working in a modern workshop filled with various tools and equipment.\"),uFOU0Epv7:\"Work with an executive team that has experience across aerospace, technology, and consumer brands.\",variant:\"IKW2VKEO9\",width:\"100%\"})})})],spaceBetween:30,speed:1e3,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gr5yrf-container hidden-1wwbghw hidden-1li31qd hidden-a0q7nz\",\"data-framer-name\":\"SwiperP\",isAuthoredByUser:true,name:\"SwiperP\",nodeId:\"uMGQAxws9\",scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(SwiperCarousel,{delay:5e3,height:\"100%\",id:\"uMGQAxws9\",layoutId:\"uMGQAxws9\",loop:true,name:\"SwiperP\",showBullets:true,slides:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:945,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rwq4wd-container\",\"data-framer-name\":\"AssetCarouselSlide1 - P\",inComponentSlot:true,name:\"AssetCarouselSlide1 - P\",nodeId:\"Be8HkfufC\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(ContentSlide,{height:\"100%\",id:\"Be8HkfufC\",KtbbBrcwH:true,layoutId:\"Be8HkfufC\",name:\"AssetCarouselSlide1 - P\",uaPONKkJq:addImageAlt({src:\"https://framerusercontent.com/images/IjqoVZ8Wrcva5PPgU29d7GJ8.jpeg\",srcSet:\"https://framerusercontent.com/images/IjqoVZ8Wrcva5PPgU29d7GJ8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/IjqoVZ8Wrcva5PPgU29d7GJ8.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IjqoVZ8Wrcva5PPgU29d7GJ8.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IjqoVZ8Wrcva5PPgU29d7GJ8.jpeg 2267w\"},\"A man working in a modern workshop filled with various tools and equipment.\"),uFOU0Epv7:\"Work with an executive team that has experience across aerospace, technology, and consumer brands.\",variant:\"zX3v4xIcC\",width:\"100%\"})})})],spaceBetween:30,speed:1e3,style:{width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s9wzkg-container\",isAuthoredByUser:true,nodeId:\"vaf0Vlge2\",scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(Eyebrow,{height:\"100%\",id:\"vaf0Vlge2\",isGradientLine:false,label:\"Benefits\",layoutId:\"vaf0Vlge2\",mode:\"dark\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-80aelk\",\"data-framer-name\":\"3UpCardsSlider\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6utkaq\",\"data-framer-name\":\"Grid Container\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18awkm5-container hidden-1li31qd hidden-a0q7nz hidden-1897rw\",isAuthoredByUser:true,nodeId:\"rDXSswkjI\",scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(ThreeUpCardsSlider,{alignTitles:false,componentMode:\"slider\",height:\"100%\",id:\"rDXSswkjI\",layoutId:\"rDXSswkjI\",moreDesktopCards:false,slides:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:734,width:\"546px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ufb683-container\",\"data-framer-name\":\"3UpCardSliderNew 1 - DL\",inComponentSlot:true,name:\"3UpCardSliderNew 1 - DL\",nodeId:\"qBRzJoWj0\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(CardsGrid,{FNKxhA3Ur:\"\",height:\"100%\",id:\"qBRzJoWj0\",layoutId:\"qBRzJoWj0\",LCPH5yMci:false,name:\"3UpCardSliderNew 1 - DL\",Q4_bIAy5f:addImageAlt({src:\"https://framerusercontent.com/images/dwwRY737DTujHJt9pzCnK22V40.jpeg\",srcSet:\"https://framerusercontent.com/images/dwwRY737DTujHJt9pzCnK22V40.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/dwwRY737DTujHJt9pzCnK22V40.jpeg 1350w\"},\"Two hands point towards a white board displaying data and graphs, suggesting collaboration or analysis.\"),rFilvuVUz:\"Career development\",style:{height:\"100%\",width:\"100%\"},T_PWduSJI:\"Wing provides learning and development opportunities like workshops, lunch & learns, and fireside chats. We\u2019re not just growing careers\u2014we\u2019re shaping the future of our industry, together.\",U4PCtIxCE:\"Learn more\",variant:\"ZG3N1mm6I\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:734,width:\"546px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yxtysh-container\",\"data-framer-name\":\"3UpCardSliderNew 2 - DL\",inComponentSlot:true,name:\"3UpCardSliderNew 2 - DL\",nodeId:\"IVgYbkADG\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(CardsGrid,{FNKxhA3Ur:\"\",height:\"100%\",id:\"IVgYbkADG\",layoutId:\"IVgYbkADG\",LCPH5yMci:false,name:\"3UpCardSliderNew 2 - DL\",Q4_bIAy5f:addImageAlt({src:\"https://framerusercontent.com/images/6dM8kiG42VDUb3IdTNOrM7LPQg0.jpg\",srcSet:\"https://framerusercontent.com/images/6dM8kiG42VDUb3IdTNOrM7LPQg0.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/6dM8kiG42VDUb3IdTNOrM7LPQg0.jpg?scale-down-to=2048 1366w,https://framerusercontent.com/images/6dM8kiG42VDUb3IdTNOrM7LPQg0.jpg?scale-down-to=4096 2733w,https://framerusercontent.com/images/6dM8kiG42VDUb3IdTNOrM7LPQg0.jpg 4771w\"},\"A person using credit card with their laptop.\"),rFilvuVUz:\"Financial wellbeing\",style:{height:\"100%\",width:\"100%\"},T_PWduSJI:\"We offer competitive compensation, 401K matching, generous retirement plans, 1-on-1 financial coaches, and more. \",U4PCtIxCE:\"Learn more\",variant:\"ZG3N1mm6I\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:734,width:\"546px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-d1cdjz-container\",\"data-framer-name\":\"3UpCardSliderNew 3 - DL\",inComponentSlot:true,name:\"3UpCardSliderNew 3 - DL\",nodeId:\"bXhoJMJLX\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(CardsGrid,{FNKxhA3Ur:\"\",height:\"100%\",id:\"bXhoJMJLX\",layoutId:\"bXhoJMJLX\",LCPH5yMci:false,name:\"3UpCardSliderNew 3 - DL\",Q4_bIAy5f:addImageAlt({src:\"https://framerusercontent.com/images/UQ1uzR8U8QpAKi6ygRlZTELl44.jpeg\",srcSet:\"https://framerusercontent.com/images/UQ1uzR8U8QpAKi6ygRlZTELl44.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/UQ1uzR8U8QpAKi6ygRlZTELl44.jpeg?scale-down-to=2048 1536w,https://framerusercontent.com/images/UQ1uzR8U8QpAKi6ygRlZTELl44.jpeg 3072w\"},\"\"),rFilvuVUz:\"Health and wellness\",style:{height:\"100%\",width:\"100%\"},T_PWduSJI:\"Winglets have access to top-tier healthcare providers, wellness & mental health programs, paid vacation, parental leave, and more.\",U4PCtIxCE:\"Learn more\",variant:\"ZG3N1mm6I\",width:\"100%\"})})})],spaceBetweenCards:16,style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-98llnz-container hidden-1wwbghw hidden-a0q7nz hidden-1897rw\",isAuthoredByUser:true,nodeId:\"FDZ0m0mtV\",scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(ThreeUpCardsSlider,{alignTitles:false,componentMode:\"slider\",height:\"100%\",id:\"FDZ0m0mtV\",layoutId:\"FDZ0m0mtV\",moreDesktopCards:false,slides:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"451px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ooiwf4-container\",\"data-framer-name\":\"3UpCardSliderNew 1 - D\",inComponentSlot:true,name:\"3UpCardSliderNew 1 - D\",nodeId:\"h_WnN6_En\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(CardsGrid,{FNKxhA3Ur:\"\",height:\"100%\",id:\"h_WnN6_En\",layoutId:\"h_WnN6_En\",LCPH5yMci:false,name:\"3UpCardSliderNew 1 - D\",Q4_bIAy5f:addImageAlt({src:\"https://framerusercontent.com/images/dwwRY737DTujHJt9pzCnK22V40.jpeg\",srcSet:\"https://framerusercontent.com/images/dwwRY737DTujHJt9pzCnK22V40.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/dwwRY737DTujHJt9pzCnK22V40.jpeg 1350w\"},\"Two hands point towards a white board displaying data and graphs, suggesting collaboration or analysis.\"),rFilvuVUz:\"Career development\",style:{height:\"100%\",width:\"100%\"},T_PWduSJI:\"Wing provides learning and development opportunities like workshops, lunch & learns, and fireside chats. We\u2019re not just growing careers\u2014we\u2019re shaping the future of our industry, together.\",U4PCtIxCE:\"Learn more\",variant:\"ZG3N1mm6I\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"451px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q6fzfh-container\",\"data-framer-name\":\"3UpCardSliderNew 2 - D\",inComponentSlot:true,name:\"3UpCardSliderNew 2 - D\",nodeId:\"u8XkXItbK\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(CardsGrid,{FNKxhA3Ur:\"\",height:\"100%\",id:\"u8XkXItbK\",layoutId:\"u8XkXItbK\",LCPH5yMci:false,name:\"3UpCardSliderNew 2 - D\",Q4_bIAy5f:addImageAlt({src:\"https://framerusercontent.com/images/6dM8kiG42VDUb3IdTNOrM7LPQg0.jpg\",srcSet:\"https://framerusercontent.com/images/6dM8kiG42VDUb3IdTNOrM7LPQg0.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/6dM8kiG42VDUb3IdTNOrM7LPQg0.jpg?scale-down-to=2048 1366w,https://framerusercontent.com/images/6dM8kiG42VDUb3IdTNOrM7LPQg0.jpg?scale-down-to=4096 2733w,https://framerusercontent.com/images/6dM8kiG42VDUb3IdTNOrM7LPQg0.jpg 4771w\"},\"A person using credit card with their laptop.\"),rFilvuVUz:\"Financial wellbeing\",style:{height:\"100%\",width:\"100%\"},T_PWduSJI:\"We offer competitive compensation, 401K matching, generous retirement plans, 1-on-1 financial coaches, and more. \",U4PCtIxCE:\"Learn more\",variant:\"ZG3N1mm6I\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"451px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-sxut2f-container\",\"data-framer-name\":\"3UpCardSliderNew 3 - D\",inComponentSlot:true,name:\"3UpCardSliderNew 3 - D\",nodeId:\"jlkrPA8XN\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(CardsGrid,{FNKxhA3Ur:\"\",height:\"100%\",id:\"jlkrPA8XN\",layoutId:\"jlkrPA8XN\",LCPH5yMci:false,name:\"3UpCardSliderNew 3 - D\",Q4_bIAy5f:addImageAlt({src:\"https://framerusercontent.com/images/UQ1uzR8U8QpAKi6ygRlZTELl44.jpeg\",srcSet:\"https://framerusercontent.com/images/UQ1uzR8U8QpAKi6ygRlZTELl44.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/UQ1uzR8U8QpAKi6ygRlZTELl44.jpeg?scale-down-to=2048 1536w,https://framerusercontent.com/images/UQ1uzR8U8QpAKi6ygRlZTELl44.jpeg 3072w\"},\"\"),rFilvuVUz:\"Health and wellness\",style:{height:\"100%\",width:\"100%\"},T_PWduSJI:\"Winglets have access to top-tier healthcare providers, wellness & mental health programs, paid vacation, parental leave, and more.\",U4PCtIxCE:\"Learn more\",variant:\"ZG3N1mm6I\",width:\"100%\"})})})],spaceBetweenCards:16,style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ak6zc4-container hidden-1wwbghw hidden-1li31qd\",isAuthoredByUser:true,nodeId:\"g6KRCX3bv\",scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(ThreeUpCardsSlider,{alignTitles:false,componentMode:\"slider\",height:\"100%\",id:\"g6KRCX3bv\",layoutId:\"g6KRCX3bv\",moreDesktopCards:false,slides:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:\"358px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-smirxn-container\",\"data-framer-name\":\"3UpCardSliderNew 1 - T\",inComponentSlot:true,name:\"3UpCardSliderNew 1 - T\",nodeId:\"s1pPjxUnK\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(CardsGrid,{FNKxhA3Ur:\"\",height:\"100%\",id:\"s1pPjxUnK\",layoutId:\"s1pPjxUnK\",LCPH5yMci:false,name:\"3UpCardSliderNew 1 - T\",Q4_bIAy5f:addImageAlt({src:\"https://framerusercontent.com/images/dwwRY737DTujHJt9pzCnK22V40.jpeg\",srcSet:\"https://framerusercontent.com/images/dwwRY737DTujHJt9pzCnK22V40.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/dwwRY737DTujHJt9pzCnK22V40.jpeg 1350w\"},\"Two hands point towards a white board displaying data and graphs, suggesting collaboration or analysis.\"),rFilvuVUz:\"Career development\",style:{height:\"100%\",width:\"100%\"},T_PWduSJI:\"Wing provides learning and development opportunities like workshops, lunch & learns, and fireside chats. We\u2019re not just growing careers\u2014we\u2019re shaping the future of our industry, together.\",U4PCtIxCE:\"Learn more\",variant:\"hnEg5FE4W\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:\"358px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-35jrr1-container\",\"data-framer-name\":\"3UpCardSliderNew 2 - T\",inComponentSlot:true,name:\"3UpCardSliderNew 2 - T\",nodeId:\"A55RtuFhA\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(CardsGrid,{FNKxhA3Ur:\"\",height:\"100%\",id:\"A55RtuFhA\",layoutId:\"A55RtuFhA\",LCPH5yMci:false,name:\"3UpCardSliderNew 2 - T\",Q4_bIAy5f:addImageAlt({src:\"https://framerusercontent.com/images/6dM8kiG42VDUb3IdTNOrM7LPQg0.jpg\",srcSet:\"https://framerusercontent.com/images/6dM8kiG42VDUb3IdTNOrM7LPQg0.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/6dM8kiG42VDUb3IdTNOrM7LPQg0.jpg?scale-down-to=2048 1366w,https://framerusercontent.com/images/6dM8kiG42VDUb3IdTNOrM7LPQg0.jpg?scale-down-to=4096 2733w,https://framerusercontent.com/images/6dM8kiG42VDUb3IdTNOrM7LPQg0.jpg 4771w\"},\"A person using credit card with their laptop.\"),rFilvuVUz:\"Financial wellbeing\",style:{height:\"100%\",width:\"100%\"},T_PWduSJI:\"We offer competitive compensation, 401K matching, generous retirement plans, 1-on-1 financial coaches, and more. \",U4PCtIxCE:\"Learn more\",variant:\"hnEg5FE4W\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:\"358px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-tuwibq-container\",\"data-framer-name\":\"3UpCardSliderNew 3 - T\",inComponentSlot:true,name:\"3UpCardSliderNew 3 - T\",nodeId:\"YWz0khUBL\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(CardsGrid,{FNKxhA3Ur:\"\",height:\"100%\",id:\"YWz0khUBL\",layoutId:\"YWz0khUBL\",LCPH5yMci:false,name:\"3UpCardSliderNew 3 - T\",Q4_bIAy5f:addImageAlt({src:\"https://framerusercontent.com/images/UQ1uzR8U8QpAKi6ygRlZTELl44.jpeg\",srcSet:\"https://framerusercontent.com/images/UQ1uzR8U8QpAKi6ygRlZTELl44.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/UQ1uzR8U8QpAKi6ygRlZTELl44.jpeg?scale-down-to=2048 1536w,https://framerusercontent.com/images/UQ1uzR8U8QpAKi6ygRlZTELl44.jpeg 3072w\"},\"\"),rFilvuVUz:\"Health and wellness\",style:{height:\"100%\",width:\"100%\"},T_PWduSJI:\"Winglets have access to top-tier healthcare providers, wellness & mental health programs, paid vacation, parental leave, and more.\",U4PCtIxCE:\"Learn more\",variant:\"hnEg5FE4W\",width:\"100%\"})})})],spaceBetweenCards:16,style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{akzVEkg7k:{y:(componentViewport?.y||0)+0+3438.2},tlzJ24EWL:{y:(componentViewport?.y||0)+0+3373},ZrHUnI9yJ:{y:(componentViewport?.y||0)+0+2628}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2693.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lma9a5-container\",nodeId:\"Wlb1KYYm_\",scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{akzVEkg7k:{variant:\"Q33tH8LIF\"},tlzJ24EWL:{variant:\"NO1AuapeL\",XjU9_pXty:\"0px 8px 48px 8px\"},ZrHUnI9yJ:{variant:\"sn3vrVI2a\",XjU9_pXty:\"0px 8px 48px 8px\"}},children:/*#__PURE__*/_jsx(Headline,{B7SoinH3W:\"Culture and community\",bhbjmHJHG:\"rgba(255, 255, 255, 0)\",height:\"100%\",id:\"Wlb1KYYm_\",kfkLA1iLz:\"\",layoutId:\"Wlb1KYYm_\",NwYguLs2y:\"We're not just building drones at Wing\u2014we're building an entirely new industry. We believe that fostering a respectful, collaborative, and open culture is an important part of our workplace.\",S2LltDU_Y:true,style:{width:\"100%\"},variant:\"yNmYn5hzX\",width:\"100%\",XjU9_pXty:\"0px 30px 80px 30px\",YaeMjHVna:40})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m09ec2\",\"data-framer-name\":\"AssetsCarousel\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tzl1t4\",id:\"1tzl1t4\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10dmylr-container hidden-1li31qd hidden-a0q7nz hidden-1897rw\",\"data-framer-name\":\"SwiperPhotos DL\",isAuthoredByUser:true,name:\"SwiperPhotos DL\",nodeId:\"DO55Ly4MG\",scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(SwiperCarousel,{delay:5e3,height:\"100%\",id:\"DO55Ly4MG\",layoutId:\"DO55Ly4MG\",loop:true,name:\"SwiperPhotos DL\",showBullets:true,slides:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:722,width:\"1321px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-zzq9gh-container\",\"data-framer-name\":\"CarouselSlide 1 - DL\",inComponentSlot:true,name:\"CarouselSlide 1 - DL\",nodeId:\"RLGsfZnyT\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(ContentSlide,{height:\"100%\",id:\"RLGsfZnyT\",KtbbBrcwH:false,layoutId:\"RLGsfZnyT\",name:\"CarouselSlide 1 - DL\",style:{height:\"100%\",width:\"100%\"},uaPONKkJq:addImageAlt({src:\"https://framerusercontent.com/images/li4UJRueph4FD0KXQABbbvkqH0.jpg\",srcSet:\"https://framerusercontent.com/images/li4UJRueph4FD0KXQABbbvkqH0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/li4UJRueph4FD0KXQABbbvkqH0.jpg 916w\"},\"A group of people happily participate in a vibrant outdoor tie-dye activity, surrounded by colorful bottles of dye and large metal trays on tables, under a sunny sky.\"),uFOU0Epv7:\"\",variant:\"caUEPLdus\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:722,width:\"1321px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-139jng5-container\",\"data-framer-name\":\"CarouselSlide 2 - DL\",inComponentSlot:true,name:\"CarouselSlide 2 - DL\",nodeId:\"Yai51rXKt\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(ContentSlide,{height:\"100%\",id:\"Yai51rXKt\",KtbbBrcwH:false,layoutId:\"Yai51rXKt\",name:\"CarouselSlide 2 - DL\",style:{height:\"100%\",width:\"100%\"},uaPONKkJq:addImageAlt({src:\"https://framerusercontent.com/images/0eVyg5pJLWHeEVhV7nO7S0mq6PU.jpg\",srcSet:\"https://framerusercontent.com/images/0eVyg5pJLWHeEVhV7nO7S0mq6PU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0eVyg5pJLWHeEVhV7nO7S0mq6PU.jpg 916w\"},'A group of people smiling and posing in front of a colorful backdrop with multicolored foil streamers and a neon sign that reads \"PUNCH BOWL,\" creating a festive and vibrant atmosphere.'),uFOU0Epv7:\"\",variant:\"caUEPLdus\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:424,width:\"793px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-xhf9aj-container\",\"data-framer-name\":\"CarouselSlide 3 - D\",inComponentSlot:true,name:\"CarouselSlide 3 - D\",nodeId:\"m8qgTipfg\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(ContentSlide,{height:\"100%\",id:\"m8qgTipfg\",KtbbBrcwH:false,layoutId:\"m8qgTipfg\",name:\"CarouselSlide 3 - D\",style:{height:\"100%\",width:\"100%\"},uaPONKkJq:addImageAlt({src:\"https://framerusercontent.com/images/1jvQKSBjl0mQZWFyCsMjLeicn4.jpg\",srcSet:\"https://framerusercontent.com/images/1jvQKSBjl0mQZWFyCsMjLeicn4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1jvQKSBjl0mQZWFyCsMjLeicn4.jpg 916w\"},\"Two people wearing safety vests and helmets celebrate a successful outdoor team-building exercise involving a Wing delivery package, amidst a group of partially visible participants and safety equipment in a gravel-covered area.\"),uFOU0Epv7:\"\",variant:\"caUEPLdus\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:722,width:\"1321px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-pu41nm-container\",\"data-framer-name\":\"CarouselSlide 4 - DL\",inComponentSlot:true,name:\"CarouselSlide 4 - DL\",nodeId:\"j25mjN4uJ\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(ContentSlide,{height:\"100%\",id:\"j25mjN4uJ\",KtbbBrcwH:false,layoutId:\"j25mjN4uJ\",name:\"CarouselSlide 4 - DL\",style:{height:\"100%\",width:\"100%\"},uaPONKkJq:addImageAlt({src:\"https://framerusercontent.com/images/LoiiMXmnQDBDS3t47MJnKfCuiQ.jpg\",srcSet:\"https://framerusercontent.com/images/LoiiMXmnQDBDS3t47MJnKfCuiQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LoiiMXmnQDBDS3t47MJnKfCuiQ.jpg 916w\"},\"Three people wearing purple shirts stand smiling behind a large, white, drone model with yellow accents, showcased in a bright exhibition space with banners in the background.\"),uFOU0Epv7:\"\",variant:\"caUEPLdus\",width:\"100%\"})})})],spaceBetween:30,speed:1e3,style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13wjyic-container hidden-1wwbghw hidden-a0q7nz hidden-1897rw\",\"data-framer-name\":\"SwiperPhotos D\",isAuthoredByUser:true,name:\"SwiperPhotos D\",nodeId:\"SlxxP6swT\",scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(SwiperCarousel,{delay:5e3,height:\"100%\",id:\"SlxxP6swT\",layoutId:\"SlxxP6swT\",loop:true,name:\"SwiperPhotos D\",showBullets:true,slides:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:424,width:\"793px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1247xe8-container\",\"data-framer-name\":\"CarouselSlide 1 - D\",inComponentSlot:true,name:\"CarouselSlide 1 - D\",nodeId:\"YQR64sCFj\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(ContentSlide,{height:\"100%\",id:\"YQR64sCFj\",KtbbBrcwH:false,layoutId:\"YQR64sCFj\",name:\"CarouselSlide 1 - D\",style:{height:\"100%\",width:\"100%\"},uaPONKkJq:addImageAlt({src:\"https://framerusercontent.com/images/li4UJRueph4FD0KXQABbbvkqH0.jpg\",srcSet:\"https://framerusercontent.com/images/li4UJRueph4FD0KXQABbbvkqH0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/li4UJRueph4FD0KXQABbbvkqH0.jpg 916w\"},\"A group of people happily participate in a vibrant outdoor tie-dye activity, surrounded by colorful bottles of dye and large metal trays on tables, under a sunny sky.\"),uFOU0Epv7:\"\",variant:\"caUEPLdus\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:424,width:\"793px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-19c10bm-container\",\"data-framer-name\":\"CarouselSlide 2 - D\",inComponentSlot:true,name:\"CarouselSlide 2 - D\",nodeId:\"RZwZyISRg\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(ContentSlide,{height:\"100%\",id:\"RZwZyISRg\",KtbbBrcwH:false,layoutId:\"RZwZyISRg\",name:\"CarouselSlide 2 - D\",style:{height:\"100%\",width:\"100%\"},uaPONKkJq:addImageAlt({src:\"https://framerusercontent.com/images/0eVyg5pJLWHeEVhV7nO7S0mq6PU.jpg\",srcSet:\"https://framerusercontent.com/images/0eVyg5pJLWHeEVhV7nO7S0mq6PU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0eVyg5pJLWHeEVhV7nO7S0mq6PU.jpg 916w\"},'A group of people smiling and posing in front of a colorful backdrop with multicolored foil streamers and a neon sign that reads \"PUNCH BOWL,\" creating a festive and vibrant atmosphere.'),uFOU0Epv7:\"\",variant:\"caUEPLdus\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:424,width:\"793px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-xhf9aj-container\",\"data-framer-name\":\"CarouselSlide 3 - D\",inComponentSlot:true,name:\"CarouselSlide 3 - D\",nodeId:\"m8qgTipfg\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(ContentSlide,{height:\"100%\",id:\"m8qgTipfg\",KtbbBrcwH:false,layoutId:\"m8qgTipfg\",name:\"CarouselSlide 3 - D\",style:{height:\"100%\",width:\"100%\"},uaPONKkJq:addImageAlt({src:\"https://framerusercontent.com/images/1jvQKSBjl0mQZWFyCsMjLeicn4.jpg\",srcSet:\"https://framerusercontent.com/images/1jvQKSBjl0mQZWFyCsMjLeicn4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1jvQKSBjl0mQZWFyCsMjLeicn4.jpg 916w\"},\"Two people wearing safety vests and helmets celebrate a successful outdoor team-building exercise involving a Wing delivery package, amidst a group of partially visible participants and safety equipment in a gravel-covered area.\"),uFOU0Epv7:\"\",variant:\"caUEPLdus\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:424,width:\"793px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-3femz1-container\",\"data-framer-name\":\"CarouselSlide 4 - D\",inComponentSlot:true,name:\"CarouselSlide 4 - D\",nodeId:\"Okp4LENVb\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(ContentSlide,{height:\"100%\",id:\"Okp4LENVb\",KtbbBrcwH:false,layoutId:\"Okp4LENVb\",name:\"CarouselSlide 4 - D\",style:{height:\"100%\",width:\"100%\"},uaPONKkJq:addImageAlt({src:\"https://framerusercontent.com/images/LoiiMXmnQDBDS3t47MJnKfCuiQ.jpg\",srcSet:\"https://framerusercontent.com/images/LoiiMXmnQDBDS3t47MJnKfCuiQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LoiiMXmnQDBDS3t47MJnKfCuiQ.jpg 916w\"},\"Three people wearing purple shirts stand smiling behind a large, white, drone model with yellow accents, showcased in a bright exhibition space with banners in the background.\"),uFOU0Epv7:\"\",variant:\"caUEPLdus\",width:\"100%\"})})})],spaceBetween:30,speed:1e3,style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jox91k-container hidden-1wwbghw hidden-1li31qd hidden-1897rw\",\"data-framer-name\":\"SwiperPhotos T\",isAuthoredByUser:true,name:\"SwiperPhotos T\",nodeId:\"M3_kLIj8p\",scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(SwiperCarousel,{delay:5e3,height:\"100%\",id:\"M3_kLIj8p\",layoutId:\"M3_kLIj8p\",loop:true,name:\"SwiperPhotos T\",showBullets:true,slides:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:422,width:\"810px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1frxvfa-container\",\"data-framer-name\":\"CarouselSlide 1 - T\",inComponentSlot:true,name:\"CarouselSlide 1 - T\",nodeId:\"vJqIVna0j\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(ContentSlide,{height:\"100%\",id:\"vJqIVna0j\",KtbbBrcwH:false,layoutId:\"vJqIVna0j\",name:\"CarouselSlide 1 - T\",style:{height:\"100%\",width:\"100%\"},uaPONKkJq:addImageAlt({src:\"https://framerusercontent.com/images/li4UJRueph4FD0KXQABbbvkqH0.jpg\",srcSet:\"https://framerusercontent.com/images/li4UJRueph4FD0KXQABbbvkqH0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/li4UJRueph4FD0KXQABbbvkqH0.jpg 916w\"},\"A group of people happily participate in a vibrant outdoor tie-dye activity, surrounded by colorful bottles of dye and large metal trays on tables, under a sunny sky.\"),uFOU0Epv7:\"\",variant:\"caUEPLdus\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:422,width:\"810px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qpveu3-container\",\"data-framer-name\":\"CarouselSlide 2 - T\",inComponentSlot:true,name:\"CarouselSlide 2 - T\",nodeId:\"Br9fFtnoB\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(ContentSlide,{height:\"100%\",id:\"Br9fFtnoB\",KtbbBrcwH:false,layoutId:\"Br9fFtnoB\",name:\"CarouselSlide 2 - T\",style:{height:\"100%\",width:\"100%\"},uaPONKkJq:addImageAlt({src:\"https://framerusercontent.com/images/0eVyg5pJLWHeEVhV7nO7S0mq6PU.jpg\",srcSet:\"https://framerusercontent.com/images/0eVyg5pJLWHeEVhV7nO7S0mq6PU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0eVyg5pJLWHeEVhV7nO7S0mq6PU.jpg 916w\"},'A group of people smiling and posing in front of a colorful backdrop with multicolored foil streamers and a neon sign that reads \"PUNCH BOWL,\" creating a festive and vibrant atmosphere.'),uFOU0Epv7:\"\",variant:\"caUEPLdus\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"374px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-i49hsm-container\",\"data-framer-name\":\"CarouselSlide 3 - T\",inComponentSlot:true,name:\"CarouselSlide 3 - T\",nodeId:\"hhDhrZlpH\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(ContentSlide,{height:\"100%\",id:\"hhDhrZlpH\",KtbbBrcwH:false,layoutId:\"hhDhrZlpH\",name:\"CarouselSlide 3 - T\",style:{height:\"100%\",width:\"100%\"},uaPONKkJq:addImageAlt({src:\"https://framerusercontent.com/images/0eVyg5pJLWHeEVhV7nO7S0mq6PU.jpg\",srcSet:\"https://framerusercontent.com/images/0eVyg5pJLWHeEVhV7nO7S0mq6PU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0eVyg5pJLWHeEVhV7nO7S0mq6PU.jpg 916w\"},'A group of people smiling and posing in front of a colorful backdrop with multicolored foil streamers and a neon sign that reads \"PUNCH BOWL,\" creating a festive and vibrant atmosphere.'),uFOU0Epv7:\"\",variant:\"caUEPLdus\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:422,width:\"810px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yic3pz-container\",\"data-framer-name\":\"CarouselSlide 4 - T\",inComponentSlot:true,name:\"CarouselSlide 4 - T\",nodeId:\"JsMyOP3Ym\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(ContentSlide,{height:\"100%\",id:\"JsMyOP3Ym\",KtbbBrcwH:false,layoutId:\"JsMyOP3Ym\",name:\"CarouselSlide 4 - T\",style:{height:\"100%\",width:\"100%\"},uaPONKkJq:addImageAlt({src:\"https://framerusercontent.com/images/1jvQKSBjl0mQZWFyCsMjLeicn4.jpg\",srcSet:\"https://framerusercontent.com/images/1jvQKSBjl0mQZWFyCsMjLeicn4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1jvQKSBjl0mQZWFyCsMjLeicn4.jpg 916w\"},\"Two people wearing safety vests and helmets celebrate a successful outdoor team-building exercise involving a Wing delivery package, amidst a group of partially visible participants and safety equipment in a gravel-covered area.\"),uFOU0Epv7:\"\",variant:\"caUEPLdus\",width:\"100%\"})})})],spaceBetween:30,speed:1e3,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9637mb-container hidden-1wwbghw hidden-1li31qd hidden-a0q7nz\",\"data-framer-name\":\"SwiperPhotos P\",isAuthoredByUser:true,name:\"SwiperPhotos P\",nodeId:\"C9fz2JpsY\",scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(SwiperCarousel,{delay:5e3,height:\"100%\",id:\"C9fz2JpsY\",layoutId:\"C9fz2JpsY\",loop:true,name:\"SwiperPhotos P\",showBullets:true,slides:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:422,width:\"810px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9zel33-container\",\"data-framer-name\":\"CarouselSlide 1 - P\",inComponentSlot:true,name:\"CarouselSlide 1 - P\",nodeId:\"gg5SuPfmX\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(ContentSlide,{height:\"100%\",id:\"gg5SuPfmX\",KtbbBrcwH:false,layoutId:\"gg5SuPfmX\",name:\"CarouselSlide 1 - P\",style:{height:\"100%\",width:\"100%\"},uaPONKkJq:addImageAlt({src:\"https://framerusercontent.com/images/LoiiMXmnQDBDS3t47MJnKfCuiQ.jpg\",srcSet:\"https://framerusercontent.com/images/LoiiMXmnQDBDS3t47MJnKfCuiQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LoiiMXmnQDBDS3t47MJnKfCuiQ.jpg 916w\"},\"Three people wearing purple shirts stand smiling behind a large, white, drone model with yellow accents, showcased in a bright exhibition space with banners in the background.\"),uFOU0Epv7:\"\",variant:\"caUEPLdus\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"374px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-153aawy-container\",\"data-framer-name\":\"CarouselSlide 2- P\",inComponentSlot:true,name:\"CarouselSlide 2- P\",nodeId:\"B25TZmudx\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(ContentSlide,{height:\"100%\",id:\"B25TZmudx\",KtbbBrcwH:false,layoutId:\"B25TZmudx\",name:\"CarouselSlide 2- P\",style:{height:\"100%\",width:\"100%\"},uaPONKkJq:addImageAlt({src:\"https://framerusercontent.com/images/li4UJRueph4FD0KXQABbbvkqH0.jpg\",srcSet:\"https://framerusercontent.com/images/li4UJRueph4FD0KXQABbbvkqH0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/li4UJRueph4FD0KXQABbbvkqH0.jpg 916w\"},\"A group of people happily participate in a vibrant outdoor tie-dye activity, surrounded by colorful bottles of dye and large metal trays on tables, under a sunny sky.\"),uFOU0Epv7:\"\",variant:\"caUEPLdus\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"374px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-796hs6-container\",\"data-framer-name\":\"CarouselSlide 3 - P\",inComponentSlot:true,name:\"CarouselSlide 3 - P\",nodeId:\"TWSYxAxOl\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(ContentSlide,{height:\"100%\",id:\"TWSYxAxOl\",KtbbBrcwH:false,layoutId:\"TWSYxAxOl\",name:\"CarouselSlide 3 - P\",style:{height:\"100%\",width:\"100%\"},uaPONKkJq:addImageAlt({src:\"https://framerusercontent.com/images/1jvQKSBjl0mQZWFyCsMjLeicn4.jpg\",srcSet:\"https://framerusercontent.com/images/1jvQKSBjl0mQZWFyCsMjLeicn4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1jvQKSBjl0mQZWFyCsMjLeicn4.jpg 916w\"},\"Two people wearing safety vests and helmets celebrate a successful outdoor team-building exercise involving a Wing delivery package, amidst a group of partially visible participants and safety equipment in a gravel-covered area.\"),uFOU0Epv7:\"\",variant:\"caUEPLdus\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"374px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mkwn8m-container\",\"data-framer-name\":\"CarouselSlide 4 - P\",inComponentSlot:true,name:\"CarouselSlide 4 - P\",nodeId:\"TrG9OZi1S\",rendersWithMotion:true,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(ContentSlide,{height:\"100%\",id:\"TrG9OZi1S\",KtbbBrcwH:false,layoutId:\"TrG9OZi1S\",name:\"CarouselSlide 4 - P\",style:{height:\"100%\",width:\"100%\"},uaPONKkJq:addImageAlt({src:\"https://framerusercontent.com/images/LoiiMXmnQDBDS3t47MJnKfCuiQ.jpg\",srcSet:\"https://framerusercontent.com/images/LoiiMXmnQDBDS3t47MJnKfCuiQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LoiiMXmnQDBDS3t47MJnKfCuiQ.jpg 916w\"},\"Three people wearing purple shirts stand smiling behind a large, white, drone model with yellow accents, showcased in a bright exhibition space with banners in the background.\"),uFOU0Epv7:\"\",variant:\"caUEPLdus\",width:\"100%\"})})})],spaceBetween:30,speed:1e3,style:{width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cno14l-container\",isAuthoredByUser:true,nodeId:\"ASOVEWc0X\",scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(TestimonialTabs,{height:\"100%\",id:\"ASOVEWc0X\",layoutId:\"ASOVEWc0X\",style:{width:\"100%\"},testimonials:[{author:\"Giulia\",image:addImageAlt({src:\"https://framerusercontent.com/images/cpT1InC463IVGipaAnM7pnL0EQ.jpg\",srcSet:\"https://framerusercontent.com/images/cpT1InC463IVGipaAnM7pnL0EQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cpT1InC463IVGipaAnM7pnL0EQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cpT1InC463IVGipaAnM7pnL0EQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/cpT1InC463IVGipaAnM7pnL0EQ.jpg 2232w\"},\"\"),quote:\"Working at Wing has given me the opportunity to have a hand in designing a vehicle that is delivering real packages to real people on three continents. For an aerodynamics engineer, it\u2019s really rare to see one's work go from concept to operation in the span of just a couple of years.\",title:\"Aircraft Development Lead\"},{author:\"Koree\",image:addImageAlt({src:\"https://framerusercontent.com/images/PBNIeffkr8CGWITI3ZxVt9SDM.png\",srcSet:\"https://framerusercontent.com/images/PBNIeffkr8CGWITI3ZxVt9SDM.png?scale-down-to=512 512w,https://framerusercontent.com/images/PBNIeffkr8CGWITI3ZxVt9SDM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PBNIeffkr8CGWITI3ZxVt9SDM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/PBNIeffkr8CGWITI3ZxVt9SDM.png 2880w\"},\"\"),quote:\"At Wing, I help ensure our flight operations run smoothly. What I love most is the sense of fulfillment\u2014knowing that our innovative work makes a positive impact on people\u2019s lives, whether it\u2019s delivering essentials like groceries and medicine or simply making everyday tasks easier for our customers.\",title:\"Flight Operations Support Manager\"},{author:\"Reia\",image:addImageAlt({src:\"https://framerusercontent.com/images/LCmhiqWVgGryshhWDUSqy05Rw.png\",srcSet:\"https://framerusercontent.com/images/LCmhiqWVgGryshhWDUSqy05Rw.png?scale-down-to=512 512w,https://framerusercontent.com/images/LCmhiqWVgGryshhWDUSqy05Rw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LCmhiqWVgGryshhWDUSqy05Rw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/LCmhiqWVgGryshhWDUSqy05Rw.png 2880w\"},\"\"),quote:\"At Wing, I build the backend systems that coordinate drone flights and behavior, handling edge cases and optimizing resource selection to ensure timely package drop-offs. It\u2019s an exciting blend of software engineering and real-world logistics, where every feature we develop is designed to improve users\u2019 experience with drone delivery. I love seeing each update enhance the process for everyone\u2014from customers and partners to flight operators.\",title:\" Tech Lead Manager\"}],title:\"Meet our Winglets\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{akzVEkg7k:{y:(componentViewport?.y||0)+0+4501.2},tlzJ24EWL:{y:(componentViewport?.y||0)+0+4403},ZrHUnI9yJ:{y:(componentViewport?.y||0)+0+3446}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4055.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pzq3tb-container\",nodeId:\"iVzWrAXIu\",scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{akzVEkg7k:{variant:\"Q33tH8LIF\"},tlzJ24EWL:{variant:\"NO1AuapeL\",XjU9_pXty:\"0px 0px 48px 0px\"},ZrHUnI9yJ:{variant:\"sn3vrVI2a\",XjU9_pXty:\"0px 0px 48px 0px\"}},children:/*#__PURE__*/_jsx(Headline,{B7SoinH3W:\"Open roles\",bhbjmHJHG:\"rgba(255, 255, 255, 0)\",height:\"100%\",id:\"iVzWrAXIu\",kfkLA1iLz:\"\",layoutId:\"iVzWrAXIu\",NwYguLs2y:\"\",S2LltDU_Y:true,style:{width:\"100%\"},variant:\"yNmYn5hzX\",width:\"100%\",XjU9_pXty:\"0px 0px 80px 0px\",YaeMjHVna:40})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{akzVEkg7k:{y:(componentViewport?.y||0)+0+4861.2},tlzJ24EWL:{y:(componentViewport?.y||0)+0+4763},ZrHUnI9yJ:{y:(componentViewport?.y||0)+0+3806}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1111,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4415.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pjcuo6-container\",id:elementId,nodeId:\"Ynh6oBQij\",ref:ref1,scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{akzVEkg7k:{variant:\"YnJTfcgOS\"},tlzJ24EWL:{variant:\"MnJWRC03C\"},ZrHUnI9yJ:{variant:\"oooMrl3Dg\"}},children:/*#__PURE__*/_jsx(JobListWrapper,{height:\"100%\",id:\"Ynh6oBQij\",layoutId:\"Ynh6oBQij\",style:{width:\"100%\"},variant:\"SW6rooQhr\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{akzVEkg7k:{y:(componentViewport?.y||0)+0+5972.2},tlzJ24EWL:{y:(componentViewport?.y||0)+0+5874},ZrHUnI9yJ:{y:(componentViewport?.y||0)+0+4917}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1310,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5526.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ejiwnq-container\",nodeId:\"I_9fZt9o_\",scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{akzVEkg7k:{variant:\"z_musq6gV\"},tlzJ24EWL:{variant:\"hUPmBNXd4\"},ZrHUnI9yJ:{upSB28FXN:\"48px 8px 48px 8px\",variant:\"DjGb8b8lg\"}},children:/*#__PURE__*/_jsx(ModuleTechnology,{bvAHJ6ROz:\"Learn more\",Gq40KFOUx:\"Dive into all things Wing on our YouTube channel.\",height:\"100%\",HLsBHNCwu:false,id:\"I_9fZt9o_\",IezhgcYLP:addImageAlt({src:\"https://framerusercontent.com/images/70P0zbjj8pb218WPZoRWZvivtTU.png\",srcSet:\"https://framerusercontent.com/images/70P0zbjj8pb218WPZoRWZvivtTU.png?scale-down-to=512 512w,https://framerusercontent.com/images/70P0zbjj8pb218WPZoRWZvivtTU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/70P0zbjj8pb218WPZoRWZvivtTU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/70P0zbjj8pb218WPZoRWZvivtTU.png 2760w\"},\"Overhead view of a drone delivery nest, displaying several Wing drones parked on designated squares with distinct white alphanumeric codes, showcasing organization and airplane storage.\"),KDlZTusKK:\"duQd_ErFg\",layoutId:\"I_9fZt9o_\",lfcIw40qr:true,LLfOYQo8b:\"https://www.youtube.com/@Wing\",style:{width:\"100%\"},upSB28FXN:\"144px 30px 80px 30px\",variant:\"z2B798IXJ\",VnbL3xNuq:\"Learn more about Wing.\",width:\"100%\",y59ZcBcrT:\"https://download-video-ak.vimeocdn.com/v3-1/playback/8e008aff-ae87-49e5-b785-8d3a73ea77f8/55ae8224?__token__=st=1738688045~exp=1738702445~acl=%2Fv3-1%2Fplayback%2F8e008aff-ae87-49e5-b785-8d3a73ea77f8%2F55ae8224%2A~hmac=b8dae9fe9ff1d1bebe043a758d7dcb3973056c1c0e59e8a31ba6c53b2970c235&r=dXMtd2VzdDE%3D\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{akzVEkg7k:{y:(componentViewport?.y||0)+0+7282.2},tlzJ24EWL:{y:(componentViewport?.y||0)+0+7184},ZrHUnI9yJ:{y:(componentViewport?.y||0)+0+6227}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6836.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tpcpo0-container\",nodeId:\"HftL1v5wS\",scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{akzVEkg7k:{variant:\"siHx9QDqC\"},tlzJ24EWL:{variant:\"IJypJHbXi\",XjU9_pXty:\"0px 8px 40px 8px\"},ZrHUnI9yJ:{variant:\"l0iHveVlb\",XjU9_pXty:\"0px 8px 40px 8px\"}},children:/*#__PURE__*/_jsx(Headline,{B7SoinH3W:\"News\",bhbjmHJHG:\"rgba(255, 255, 255, 0)\",height:\"100%\",id:\"HftL1v5wS\",kfkLA1iLz:\"\",layoutId:\"HftL1v5wS\",NwYguLs2y:\"Read more stories\",S2LltDU_Y:true,style:{width:\"100%\"},variant:\"IXlNjeOgn\",width:\"100%\",XjU9_pXty:\"0px 30px 40px 30px\",YaeMjHVna:40})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1brzy06\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ag39gq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{akzVEkg7k:{y:(componentViewport?.y||0)+0+7642.2+80+0+0},tlzJ24EWL:{y:(componentViewport?.y||0)+0+7544+32+0+0},ZrHUnI9yJ:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 16px)`,y:(componentViewport?.y||0)+0+6587+32+0+0+265.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1151,width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 60px)`,y:(componentViewport?.y||0)+0+7196.2+80+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g4w9pk-container\",nodeId:\"BsbZD9kco\",scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tlzJ24EWL:{variant:\"NWkuiy6Pr\"},ZrHUnI9yJ:{variant:\"JvdjqbYQD\"}},children:/*#__PURE__*/_jsx(FeaturedBlogPosts,{height:\"100%\",id:\"BsbZD9kco\",layoutId:\"BsbZD9kco\",style:{width:\"100%\"},variant:\"q6cbd7BKy\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FYuNfXbAe\"},implicitPathVariables:undefined},{href:{webPageId:\"FYuNfXbAe\"},implicitPathVariables:undefined},{href:{webPageId:\"FYuNfXbAe\"},implicitPathVariables:undefined},{href:{webPageId:\"FYuNfXbAe\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{akzVEkg7k:{y:(componentViewport?.y||0)+0+8873.2},tlzJ24EWL:{y:(componentViewport?.y||0)+0+8727},ZrHUnI9yJ:{y:(componentViewport?.y||0)+0+8301}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+8427.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pgyzh7-container\",nodeId:\"YKxRevTD0\",scopeId:\"NrzrwzC7W\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{akzVEkg7k:{BEaO5Dp6L:resolvedLinks1[1],variant:\"ixOF4rfhW\"},tlzJ24EWL:{BEaO5Dp6L:resolvedLinks1[2],variant:\"EHI7fpwTH\",ZeXbs6h2_:\"32px 0px 48px 0px\"},ZrHUnI9yJ:{BEaO5Dp6L:resolvedLinks1[3],variant:\"ZowSnbygL\",ZeXbs6h2_:\"32px 0px 48px 0px\"}},children:/*#__PURE__*/_jsx(ModuleCTA,{BEaO5Dp6L:resolvedLinks1[0],g_HGsR3dj:false,height:\"100%\",id:\"YKxRevTD0\",layoutId:\"YKxRevTD0\",style:{width:\"100%\"},variant:\"pDS8w7vjR\",width:\"100%\",ZeXbs6h2_:\"40px 0px 80px 0px\",ZO1U3rHY3:\"Visit the blog\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tgtkD.framer-u5ytv, .framer-tgtkD .framer-u5ytv { display: block; }\",\".framer-tgtkD.framer-1wwbghw { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 2000px; }\",\".framer-tgtkD .framer-1epx07v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 144px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-tgtkD .framer-1pwr4cu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; max-width: 670px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-tgtkD .framer-mp4u75-container, .framer-tgtkD .framer-10ahwio-container, .framer-tgtkD .framer-1lma9a5-container, .framer-tgtkD .framer-1cno14l-container, .framer-tgtkD .framer-1pzq3tb-container, .framer-tgtkD .framer-ejiwnq-container, .framer-tgtkD .framer-tpcpo0-container, .framer-tgtkD .framer-1g4w9pk-container, .framer-tgtkD .framer-pgyzh7-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-tgtkD .framer-n9wm67 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tgtkD .framer-1i8k8r5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1680px; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 100%; z-index: 1; }\",\".framer-tgtkD .framer-1v6lynq-container, .framer-tgtkD .framer-gr5yrf-container, .framer-tgtkD .framer-10dmylr-container, .framer-tgtkD .framer-13wjyic-container, .framer-tgtkD .framer-9637mb-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 1; }\",\".framer-tgtkD .framer-w3tvc1-container, .framer-tgtkD .framer-u55whn-container, .framer-tgtkD .framer-rwq4wd-container { height: auto; position: relative; width: auto; }\",\".framer-tgtkD .framer-voctxh-container, .framer-tgtkD .framer-jox91k-container { aspect-ratio: 1.7142857142857142 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 117px); position: relative; width: 1px; z-index: 1; }\",\".framer-tgtkD .framer-s9wzkg-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-tgtkD .framer-80aelk { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 30px 80px 30px; position: relative; width: 100%; }\",\".framer-tgtkD .framer-6utkaq { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-tgtkD .framer-18awkm5-container, .framer-tgtkD .framer-98llnz-container, .framer-tgtkD .framer-ak6zc4-container { flex: 1 0 0px; height: auto; max-width: 1680px; position: relative; width: 1px; }\",\".framer-tgtkD .framer-1ufb683-container, .framer-tgtkD .framer-1yxtysh-container, .framer-tgtkD .framer-d1cdjz-container { aspect-ratio: 0.7438692098092643 / 1; height: var(--framer-aspect-ratio-supported, 734px); position: relative; width: 546px; }\",\".framer-tgtkD .framer-ooiwf4-container, .framer-tgtkD .framer-1q6fzfh-container, .framer-tgtkD .framer-sxut2f-container { aspect-ratio: 0.7516666666666667 / 1; height: var(--framer-aspect-ratio-supported, 600px); position: relative; width: 451px; }\",\".framer-tgtkD .framer-smirxn-container, .framer-tgtkD .framer-35jrr1-container, .framer-tgtkD .framer-tuwibq-container { aspect-ratio: 0.7458333333333333 / 1; height: var(--framer-aspect-ratio-supported, 480px); position: relative; width: 358px; }\",\".framer-tgtkD .framer-1m09ec2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-tgtkD .framer-1tzl1t4 { align-content: center; align-items: center; aspect-ratio: 1.829268292682927 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 722px); justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 66%; z-index: 1; }\",\".framer-tgtkD .framer-zzq9gh-container, .framer-tgtkD .framer-139jng5-container, .framer-tgtkD .framer-pu41nm-container { aspect-ratio: 1.8296398891966759 / 1; height: var(--framer-aspect-ratio-supported, 722px); position: relative; width: 1321px; }\",\".framer-tgtkD .framer-xhf9aj-container, .framer-tgtkD .framer-1247xe8-container, .framer-tgtkD .framer-19c10bm-container, .framer-tgtkD .framer-3femz1-container { aspect-ratio: 1.8702830188679245 / 1; height: var(--framer-aspect-ratio-supported, 424px); position: relative; width: 793px; }\",\".framer-tgtkD .framer-1frxvfa-container, .framer-tgtkD .framer-1qpveu3-container, .framer-tgtkD .framer-1yic3pz-container, .framer-tgtkD .framer-9zel33-container { aspect-ratio: 1.919431279620853 / 1; height: var(--framer-aspect-ratio-supported, 422px); position: relative; width: 810px; }\",\".framer-tgtkD .framer-i49hsm-container, .framer-tgtkD .framer-153aawy-container, .framer-tgtkD .framer-796hs6-container, .framer-tgtkD .framer-1mkwn8m-container { aspect-ratio: 1.87 / 1; height: var(--framer-aspect-ratio-supported, 200px); position: relative; width: 374px; }\",\".framer-tgtkD .framer-pjcuo6-container { flex: none; height: auto; position: relative; scroll-margin-top: 100px; width: 100%; }\",\".framer-tgtkD .framer-1brzy06 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-tgtkD .framer-1ag39gq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tgtkD.framer-1wwbghw, .framer-tgtkD .framer-1epx07v, .framer-tgtkD .framer-n9wm67, .framer-tgtkD .framer-1i8k8r5, .framer-tgtkD .framer-80aelk, .framer-tgtkD .framer-6utkaq, .framer-tgtkD .framer-1m09ec2, .framer-tgtkD .framer-1tzl1t4, .framer-tgtkD .framer-1brzy06, .framer-tgtkD .framer-1ag39gq { gap: 0px; } .framer-tgtkD.framer-1wwbghw > *, .framer-tgtkD .framer-n9wm67 > *, .framer-tgtkD .framer-1m09ec2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tgtkD.framer-1wwbghw > :first-child, .framer-tgtkD .framer-n9wm67 > :first-child, .framer-tgtkD .framer-1m09ec2 > :first-child, .framer-tgtkD .framer-1ag39gq > :first-child { margin-top: 0px; } .framer-tgtkD.framer-1wwbghw > :last-child, .framer-tgtkD .framer-n9wm67 > :last-child, .framer-tgtkD .framer-1m09ec2 > :last-child, .framer-tgtkD .framer-1ag39gq > :last-child { margin-bottom: 0px; } .framer-tgtkD .framer-1epx07v > *, .framer-tgtkD .framer-1i8k8r5 > *, .framer-tgtkD .framer-80aelk > *, .framer-tgtkD .framer-6utkaq > *, .framer-tgtkD .framer-1tzl1t4 > *, .framer-tgtkD .framer-1brzy06 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-tgtkD .framer-1epx07v > :first-child, .framer-tgtkD .framer-1i8k8r5 > :first-child, .framer-tgtkD .framer-80aelk > :first-child, .framer-tgtkD .framer-6utkaq > :first-child, .framer-tgtkD .framer-1tzl1t4 > :first-child, .framer-tgtkD .framer-1brzy06 > :first-child { margin-left: 0px; } .framer-tgtkD .framer-1epx07v > :last-child, .framer-tgtkD .framer-1i8k8r5 > :last-child, .framer-tgtkD .framer-80aelk > :last-child, .framer-tgtkD .framer-6utkaq > :last-child, .framer-tgtkD .framer-1tzl1t4 > :last-child, .framer-tgtkD .framer-1brzy06 > :last-child { margin-right: 0px; } .framer-tgtkD .framer-1ag39gq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\"@media (min-width: 1200px) and (max-width: 1999px) { .framer-tgtkD.framer-1wwbghw { width: 1200px; } .framer-tgtkD .framer-1i8k8r5 { max-width: 1440px; } .framer-tgtkD .framer-voctxh-container { height: var(--framer-aspect-ratio-supported, 776px); } .framer-tgtkD .framer-1tzl1t4 { aspect-ratio: 1.87012987012987 / 1; height: var(--framer-aspect-ratio-supported, 424px); }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-tgtkD.framer-1wwbghw { width: 810px; } .framer-tgtkD .framer-1i8k8r5 { max-width: unset; padding: 0px 16px 0px 16px; } .framer-tgtkD .framer-voctxh-container { height: var(--framer-aspect-ratio-supported, 776px); } .framer-tgtkD .framer-80aelk { padding: 40px 0px 48px 0px; } .framer-tgtkD .framer-1m09ec2 { padding: 0px 0px 48px 0px; } .framer-tgtkD .framer-1tzl1t4 { aspect-ratio: 1.919431279620853 / 1; height: var(--framer-aspect-ratio-supported, 422px); padding: 0px 8px 0px 8px; width: 100%; } .framer-tgtkD .framer-jox91k-container { height: var(--framer-aspect-ratio-supported, 463px); } .framer-tgtkD .framer-1brzy06 { padding: 32px 0px 0px 0px; }}\",\"@media (max-width: 809px) { .framer-tgtkD.framer-1wwbghw { width: 390px; } .framer-tgtkD .framer-1i8k8r5 { max-width: unset; padding: 0px 16px 0px 16px; } .framer-tgtkD .framer-80aelk { padding: 40px 0px 48px 0px; } .framer-tgtkD .framer-1m09ec2 { padding: 0px 0px 48px 0px; } .framer-tgtkD .framer-1tzl1t4 { aspect-ratio: 1.8571428571428572 / 1; height: var(--framer-aspect-ratio-supported, 108px); padding: 0px 8px 0px 8px; width: 100%; } .framer-tgtkD .framer-1brzy06 { flex-direction: column; padding: 32px 0px 0px 0px; } .framer-tgtkD .framer-1ag39gq { flex: none; height: 1682px; padding: 0px 8px 0px 8px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tgtkD .framer-1brzy06 { gap: 0px; } .framer-tgtkD .framer-1brzy06 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-tgtkD .framer-1brzy06 > :first-child { margin-top: 0px; } .framer-tgtkD .framer-1brzy06 > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10768\n * @framerIntrinsicWidth 2000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"akzVEkg7k\":{\"layout\":[\"fixed\",\"auto\"]},\"tlzJ24EWL\":{\"layout\":[\"fixed\",\"auto\"]},\"ZrHUnI9yJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Ynh6oBQij\":{\"pattern\":\":Ynh6oBQij\",\"name\":\"job-list\"}}\n * @framerResponsiveScreen\n */const FramerNrzrwzC7W=withCSS(Component,css,\"framer-tgtkD\");export default FramerNrzrwzC7W;FramerNrzrwzC7W.displayName=\"Page\";FramerNrzrwzC7W.defaultProps={height:10768,width:2e3};addFonts(FramerNrzrwzC7W,[{explicitInter:true,fonts:[{family:\"Graphik Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/G4eGvjWPkzvXcHBITxszVa2wLs.woff\"}]},...ModuleTechnologyFonts,...HeadlineFonts,...ContentSlideFonts,...SwiperCarouselFonts,...EyebrowFonts,...CardsGridFonts,...ThreeUpCardsSliderFonts,...TestimonialTabsFonts,...JobListWrapperFonts,...FeaturedBlogPostsFonts,...ModuleCTAFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNrzrwzC7W\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"10768\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"Ynh6oBQij\\\":{\\\"pattern\\\":\\\":Ynh6oBQij\\\",\\\"name\\\":\\\"job-list\\\"}}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"akzVEkg7k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tlzJ24EWL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZrHUnI9yJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"2000\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["exceptionsDepartments", "Dropdown", "selected", "options", "handleFilterClick", "defaultOption", "isOpen", "setIsOpen", "ye", "l", "p", "innerStyles", "Paragraph_Ki5E_default", "option", "index", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "jobDepartment", "jobLocation", "jobTitle", "link", "linkNewTab", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "T2nGr_rRb", "X3OxWJJG5", "sYihqlVnT", "Nnmy0nIn4", "xpOoxqG7Y", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "css", "FramerDoc8rZODI", "withCSS", "JobRow_zn1I_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "RichText2", "css", "FramerFWMVl9N6q", "withCSS", "JobsEmpty_gmDc_default", "addFonts", "getFontsFromSharedStyle", "fonts", "SOURCE_TOKEN", "JobsList", "props", "jobs", "setJobs", "ye", "filteredResults", "setFilteredResults", "departments", "setDepartments", "locations", "setLocations", "results", "setResults", "selectedDepartment", "setSelectedDepartment", "selectedLocation", "setSelectedLocation", "queryParams", "setQueryParams", "orderResults", "data", "a", "b", "getChunks", "numberOfChunks", "fetchLocations", "res", "fetchDepartmets", "fetchJobs", "storeFilteredElements", "filteredElements", "job", "department", "office", "handleDepartmentClick", "value", "handleLocationClick", "handleNextClick", "ue", "paramsString", "window", "source", "l", "p", "innerStyles", "Dropdown", "result", "index", "JobRow_zn1I_default", "JobsEmpty_gmDc_default", "CallToAction_Dbzh_default", "JobsListFonts", "getFonts", "JobsList", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramervC8G6faOH", "withCSS", "vC8G6faOH_default", "addPropertyControls", "ControlType", "addFonts", "ModuleTechnologyFonts", "getFonts", "ja47BFELT_default", "HeadlineFonts", "OvcX0XVBm_default", "ContentSlideFonts", "D0nb3RmZp_default", "SwiperCarouselFonts", "SwiperCarousel", "EyebrowFonts", "Eyebrow", "CardsGridFonts", "nLnLICzR6_default", "ThreeUpCardsSliderFonts", "ThreeUpCardsSlider", "TestimonialTabsFonts", "TestimonialTabs", "JobListWrapperFonts", "vC8G6faOH_default", "FeaturedBlogPostsFonts", "JPv1CwBtG_default", "ModuleCTAFonts", "BqV2cDsce_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "LayoutGroup", "motion", "PropertyOverrides2", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Container", "resolvedLinks1", "css", "FramerNrzrwzC7W", "withCSS", "NrzrwzC7W_default", "addFonts", "__FramerMetadata__"]
}
