{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/BZwSWbeoW3rVV4V9CLKx/tXxNdp7wQOae3IcY7ATU/eXM0CUBJi.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.Off&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/ _jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__PURE__*/ _jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/ _jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/ _jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (1c1e241)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,Container,cx,GeneratedComponentContext,getFonts,Image,PropertyOverrides,removeHiddenBreakpointLayers,RichText,useHydratedBreakpointVariants,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import FooterDark from\"#framer/local/canvasComponent/c7jvFlhty/c7jvFlhty.js\";import FindAStoreWeWon from\"#framer/local/canvasComponent/kSiYWmweQ/kSiYWmweQ.js\";import Header from\"#framer/local/canvasComponent/N_crFokuE/N_crFokuE.js\";import*as sharedStyle from\"#framer/local/css/H2g_39xPn/H2g_39xPn.js\";import*as sharedStyle3 from\"#framer/local/css/qOFVRGmxn/qOFVRGmxn.js\";import*as sharedStyle1 from\"#framer/local/css/rIYIAJBa6/rIYIAJBa6.js\";import*as sharedStyle2 from\"#framer/local/css/sYZF1NQia/sYZF1NQia.js\";import metadataProvider from\"#framer/local/webPageMetadata/eXM0CUBJi/eXM0CUBJi.js\";const HeaderFonts=getFonts(Header);const YouTubeFonts=getFonts(YouTube);const FindAStoreWeWonFonts=getFonts(FindAStoreWeWon);const FooterDarkFonts=getFonts(FooterDark);const cycleOrder=[\"zjEADeMla\",\"EYohhrk3r\",\"CP9RsZRAi\"];const breakpoints={CP9RsZRAi:\"(max-width: 809px)\",EYohhrk3r:\"(min-width: 810px) and (max-width: 1199px)\",zjEADeMla:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Nctzj\";const variantClassNames={CP9RsZRAi:\"framer-v-zdd04l\",EYohhrk3r:\"framer-v-vzxsss\",zjEADeMla:\"framer-v-lnuyw7\"};if(isBrowser()){removeHiddenBreakpointLayers(\"zjEADeMla\",breakpoints,variantClassNames);}const transitions={default:{duration:0}};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"zjEADeMla\",Phone:\"CP9RsZRAi\",Tablet:\"EYohhrk3r\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"zjEADeMla\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useLayoutEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-Nctzj`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-Nctzj`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const transition=transitions.default;const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"zjEADeMla\",variantClassNames},children:/*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsxs(motion.div,{className:cx(\"framer-Nctzj\",...sharedStyleClassNames),style:{display:\"contents\"},children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(\"framer-lnuyw7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(Container,{className:\"framer-1mtw9cg-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CP9RsZRAi:{variant:\"Q9VH8AimR\"},EYohhrk3r:{variant:\"XBjhDcUNB\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"wQno4HpKl\",layoutId:\"wQno4HpKl\",style:{width:\"100%\"},variant:\"cSBgOBg1M\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v06bnc\",\"data-framer-name\":\"SHISW: big type\",name:\"SHISW: big type\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x84c0k\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CP9RsZRAi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1p5kucd\",\"data-styles-preset\":\"rIYIAJBa6\",style:{\"--framer-text-alignment\":\"center\"},children:\"Careers\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1wtm47a\",\"data-styles-preset\":\"H2g_39xPn\",style:{\"--framer-text-alignment\":\"center\"},children:\"Careers\"})}),className:\"framer-1sz7arj\",\"data-framer-name\":\"Careers\",name:\"Careers\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g4xr48\",\"data-styles-preset\":\"sYZF1NQia\",style:{\"--framer-text-alignment\":\"center\"},children:\"Join The Team\"})}),className:\"framer-2kke8n\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-do3fr7\",\"data-framer-name\":\"SHISW: Hero\",name:\"SHISW: Hero\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CP9RsZRAi:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:719,intrinsicWidth:1920,pixelHeight:719,pixelWidth:1920,sizes:\"100vw\",src:\"https://framerusercontent.com/images/NpXmISxen95FKQrrz6aTUFgyxA.jpg\",srcSet:\"https://framerusercontent.com/images/NpXmISxen95FKQrrz6aTUFgyxA.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/NpXmISxen95FKQrrz6aTUFgyxA.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/NpXmISxen95FKQrrz6aTUFgyxA.jpg 1920w\"}},EYohhrk3r:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:719,intrinsicWidth:1920,pixelHeight:719,pixelWidth:1920,sizes:\"100vw\",src:\"https://framerusercontent.com/images/NpXmISxen95FKQrrz6aTUFgyxA.jpg\",srcSet:\"https://framerusercontent.com/images/NpXmISxen95FKQrrz6aTUFgyxA.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/NpXmISxen95FKQrrz6aTUFgyxA.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/NpXmISxen95FKQrrz6aTUFgyxA.jpg 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:719,intrinsicWidth:1920,pixelHeight:719,pixelWidth:1920,sizes:\"1200px\",src:\"https://framerusercontent.com/images/NpXmISxen95FKQrrz6aTUFgyxA.jpg\",srcSet:\"https://framerusercontent.com/images/NpXmISxen95FKQrrz6aTUFgyxA.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/NpXmISxen95FKQrrz6aTUFgyxA.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/NpXmISxen95FKQrrz6aTUFgyxA.jpg 1920w\"},className:\"framer-o528k3\",\"data-framer-name\":\"SHISW: Hero\",name:\"SHISW: Hero\"})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1pf7rt8\",\"data-framer-name\":\"Frame Light\",name:\"Frame Light\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16nfn1e\",\"data-styles-preset\":\"qOFVRGmxn\",children:\"FixIt Mobile values our employees and believes the business is only as strong as its individuals who support it. We offer a competitive compensation package that includes base pay plus unlimited commission potential, excellent advancement opportunities, and incredible benefits.\"})}),className:\"framer-6zfnsa\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Container,{className:\"framer-1pypk9y-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"NKSI14azD\",isMixedBorderRadius:false,isRed:true,layoutId:\"NKSI14azD\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/embed/gExBKwfXnyw\",width:\"100%\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18jp8xu\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-19vinz1-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CP9RsZRAi:{variant:\"gDSuewMmV\"},EYohhrk3r:{variant:\"Xr4SvI7Lr\"}},children:/*#__PURE__*/_jsx(FindAStoreWeWon,{height:\"100%\",id:\"PiZzdB8Sm\",layoutId:\"PiZzdB8Sm\",style:{width:\"100%\"},variant:\"TIIbZBi6E\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Container,{className:\"framer-8xyxt9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CP9RsZRAi:{variant:\"obVXK0H8O\"},EYohhrk3r:{variant:\"nIsfl4aTi\"}},children:/*#__PURE__*/_jsx(FooterDark,{height:\"100%\",id:\"tE78CR7N1\",layoutId:\"tE78CR7N1\",style:{width:\"100%\"},variant:\"fXC2XCtLW\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})})});});const css=['.framer-Nctzj [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-Nctzj { background: #014F86; }`,\".framer-Nctzj .framer-r69ae7 { display: block; }\",\".framer-Nctzj .framer-lnuyw7 { align-content: center; align-items: center; background-color: #014f86; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-Nctzj .framer-1mtw9cg-container { flex: none; height: auto; position: relative; width: 1200px; z-index: 5; }\",\".framer-Nctzj .framer-1v06bnc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 648px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-Nctzj .framer-x84c0k { align-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.6); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: hidden; padding: 40px 40px 40px 40px; position: relative; width: 1200px; z-index: 0; }\",\".framer-Nctzj .framer-1sz7arj, .framer-Nctzj .framer-2kke8n { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Nctzj .framer-do3fr7 { align-content: center; align-items: center; background-color: #014f86; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 100vh; justify-content: center; left: 0px; overflow: hidden; padding: 20px 80px 80px 80px; position: fixed; top: 0px; width: 100%; z-index: 1; }\",\".framer-Nctzj .framer-o528k3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 100vh; justify-content: center; overflow: visible; padding: 20px 80px 80px 80px; position: relative; width: 1200px; z-index: 1; }\",\".framer-Nctzj .framer-1pf7rt8 { align-content: start; align-items: start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 40px 100px 40px 100px; position: relative; width: 1200px; z-index: 4; }\",\".framer-Nctzj .framer-6zfnsa { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 4; }\",\".framer-Nctzj .framer-1pypk9y-container { flex: none; height: 484px; position: relative; width: 100%; }\",\".framer-Nctzj .framer-18jp8xu { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1200px; z-index: 4; }\",\".framer-Nctzj .framer-19vinz1-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Nctzj .framer-8xyxt9-container { flex: none; height: auto; position: relative; width: 1200px; z-index: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Nctzj .framer-lnuyw7, .framer-Nctzj .framer-1v06bnc, .framer-Nctzj .framer-x84c0k, .framer-Nctzj .framer-do3fr7, .framer-Nctzj .framer-o528k3, .framer-Nctzj .framer-1pf7rt8, .framer-Nctzj .framer-18jp8xu { gap: 0px; } .framer-Nctzj .framer-lnuyw7 > *, .framer-Nctzj .framer-x84c0k > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Nctzj .framer-lnuyw7 > :first-child, .framer-Nctzj .framer-x84c0k > :first-child, .framer-Nctzj .framer-do3fr7 > :first-child, .framer-Nctzj .framer-o528k3 > :first-child, .framer-Nctzj .framer-1pf7rt8 > :first-child, .framer-Nctzj .framer-18jp8xu > :first-child { margin-top: 0px; } .framer-Nctzj .framer-lnuyw7 > :last-child, .framer-Nctzj .framer-x84c0k > :last-child, .framer-Nctzj .framer-do3fr7 > :last-child, .framer-Nctzj .framer-o528k3 > :last-child, .framer-Nctzj .framer-1pf7rt8 > :last-child, .framer-Nctzj .framer-18jp8xu > :last-child { margin-bottom: 0px; } .framer-Nctzj .framer-1v06bnc > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Nctzj .framer-1v06bnc > :first-child { margin-left: 0px; } .framer-Nctzj .framer-1v06bnc > :last-child { margin-right: 0px; } .framer-Nctzj .framer-do3fr7 > *, .framer-Nctzj .framer-o528k3 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-Nctzj .framer-1pf7rt8 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Nctzj .framer-18jp8xu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\"@media (min-width: 1200px) { .framer-Nctzj .hidden-lnuyw7 { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-Nctzj .hidden-vzxsss { display: none !important; } .${metadata.bodyClassName}-framer-Nctzj { background: #014F86; } .framer-Nctzj .framer-lnuyw7 { width: 810px; } .framer-Nctzj .framer-1mtw9cg-container, .framer-Nctzj .framer-8xyxt9-container { width: 100%; } .framer-Nctzj .framer-1v06bnc { height: 574px; } .framer-Nctzj .framer-x84c0k { flex: 1 0 0px; width: 1px; } .framer-Nctzj .framer-do3fr7 { padding: 20px 0px 80px 0px; } .framer-Nctzj .framer-o528k3 { overflow: hidden; padding: 20px 40px 80px 40px; width: 100%; } .framer-Nctzj .framer-1pf7rt8 { padding: 40px 40px 40px 40px; width: 100%; } .framer-Nctzj .framer-18jp8xu { height: 380px; justify-content: flex-end; width: 100%; } .framer-Nctzj .framer-19vinz1-container { width: 810px; z-index: 1; }}`,`@media (max-width: 809px) { .framer-Nctzj .hidden-zdd04l { display: none !important; } .${metadata.bodyClassName}-framer-Nctzj { background: #014F86; } .framer-Nctzj .framer-lnuyw7, .framer-Nctzj .framer-19vinz1-container { width: 390px; } .framer-Nctzj .framer-1mtw9cg-container, .framer-Nctzj .framer-8xyxt9-container { width: 100%; } .framer-Nctzj .framer-1v06bnc { height: auto; justify-content: flex-start; } .framer-Nctzj .framer-x84c0k { flex: 1 0 0px; height: auto; justify-content: flex-start; width: 1px; } .framer-Nctzj .framer-do3fr7 { height: 255px; justify-content: flex-start; left: calc(50.00000000000002% - 1fr / 2); padding: 0px 0px 80px 0px; } .framer-Nctzj .framer-o528k3 { height: 477px; justify-content: flex-start; overflow: hidden; padding: 0px 20px 80px 20px; width: 100%; } .framer-Nctzj .framer-1pf7rt8 { padding: 40px 20px 40px 20px; width: 100%; } .framer-Nctzj .framer-1pypk9y-container { height: 200px; } .framer-Nctzj .framer-18jp8xu { padding: 100px 0px 0px 0px; width: 100%; }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2176.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"EYohhrk3r\":{\"layout\":[\"fixed\",\"auto\"]},\"CP9RsZRAi\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerResponsiveScreen\n */const FramereXM0CUBJi=withCSS(Component,css,\"framer-Nctzj\");export default FramereXM0CUBJi;FramereXM0CUBJi.displayName=\"Careers\";FramereXM0CUBJi.defaultProps={height:2176.5,width:1200};addFonts(FramereXM0CUBJi,[...HeaderFonts,...YouTubeFonts,...FindAStoreWeWonFonts,...FooterDarkFonts,...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts,...sharedStyle3.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereXM0CUBJi\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EYohhrk3r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CP9RsZRAi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"2176.5\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "HeaderFonts", "getFonts", "N_crFokuE_default", "YouTubeFonts", "Youtube", "FindAStoreWeWonFonts", "kSiYWmweQ_default", "FooterDarkFonts", "c7jvFlhty_default", "breakpoints", "isBrowser", "variantClassNames", "isBrowser", "transitions", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "transition", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "Container", "PropertyOverrides2", "N_crFokuE_default", "x", "RichText2", "Image2", "Youtube", "kSiYWmweQ_default", "c7jvFlhty_default", "css", "FramereXM0CUBJi", "withCSS", "eXM0CUBJi_default", "addFonts", "HeaderFonts", "YouTubeFonts", "FindAStoreWeWonFonts", "FooterDarkFonts", "fonts", "__FramerMetadata__"]
}
