{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js", "ssg:https://framerusercontent.com/modules/drHtY8DxIgRet6aLotTv/3qxmsEsoAmWqUIKrgRBM/BZWuO4vyE.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled?\"metadata\":\"auto\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (fb31e5e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import CTAButtons from\"#framer/local/canvasComponent/HE0I2g4d_/HE0I2g4d_.js\";import*as sharedStyle6 from\"#framer/local/css/D1mzyeJ2C/D1mzyeJ2C.js\";import*as sharedStyle3 from\"#framer/local/css/djdKMkkZr/djdKMkkZr.js\";import*as sharedStyle4 from\"#framer/local/css/nnAS8_DKE/nnAS8_DKE.js\";import*as sharedStyle2 from\"#framer/local/css/t8tFDZrrW/t8tFDZrrW.js\";import*as sharedStyle5 from\"#framer/local/css/tmuWEGdBn/tmuWEGdBn.js\";import*as sharedStyle1 from\"#framer/local/css/Tq2GxcPtv/Tq2GxcPtv.js\";import*as sharedStyle from\"#framer/local/css/Y5TU49Z0L/Y5TU49Z0L.js\";import metadataProvider from\"#framer/local/webPageMetadata/BZWuO4vyE/BZWuO4vyE.js\";const CTAButtonsFonts=getFonts(CTAButtons);const VideoFonts=getFonts(Video);const breakpoints={cQB6NOG2e:\"(max-width: 809px)\",VCVRLOhtM:\"(min-width: 810px) and (max-width: 1199px)\",vyHZhw7hO:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-TLi6N\";const variantClassNames={cQB6NOG2e:\"framer-v-42ub3g\",VCVRLOhtM:\"framer-v-11gyojx\",vyHZhw7hO:\"framer-v-t2lb26\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"vyHZhw7hO\",Phone:\"cQB6NOG2e\",Tablet:\"VCVRLOhtM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"vyHZhw7hO\"};};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=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"iPyi19n01\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"vyHZhw7hO\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-t2lb26\",className),ref:refBinding,style:{...style},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19wmhns\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t2u26a\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sevdnm\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1okv2fq\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ah6ssr\",\"data-styles-preset\":\"Y5TU49Z0L\",style:{\"--framer-text-alignment\":\"center\"},children:\"Make a Difference\"})})},VCVRLOhtM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ah6ssr\",\"data-styles-preset\":\"Y5TU49Z0L\",style:{\"--framer-text-alignment\":\"center\"},children:\"Make a Difference\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ah6ssr\",\"data-styles-preset\":\"Y5TU49Z0L\",children:\"Make a Difference\"})}),className:\"framer-nl3rdq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-78xlyh\",\"data-styles-preset\":\"Tq2GxcPtv\",style:{\"--framer-text-alignment\":\"center\"},children:\"Join Henry as we journey to make health care accessible and affordable\"})})},VCVRLOhtM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-78xlyh\",\"data-styles-preset\":\"Tq2GxcPtv\",style:{\"--framer-text-alignment\":\"center\"},children:\"Join Henry as we journey to make health care accessible and affordable\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-78xlyh\",\"data-styles-preset\":\"Tq2GxcPtv\",children:\"Join Henry as we journey to make health care accessible and affordable\"})}),className:\"framer-1p52xz8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{y:(componentViewport?.y||0)+0+0+0+0+16+200+0+20+284.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15obtel-container\",nodeId:\"a2OU3UKUg\",scopeId:\"BZWuO4vyE\",children:/*#__PURE__*/_jsx(CTAButtons,{height:\"100%\",id:\"a2OU3UKUg\",J0B4cwHhh:\"var(--token-38ac2736-6571-41a4-b205-79f39791f93f, rgb(0, 131, 108))\",K352X3tbv:\"https://boards.greenhouse.io/henrymeds\",layoutId:\"a2OU3UKUg\",pFHS8lYJh:\"Compounded\",style:{height:\"100%\"},variant:\"x6IsfIboD\",width:\"100%\",WrQ01v369:\"View Open Positions\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{background:{alt:\"Woman working with coworkers\",fit:\"fill\",intrinsicHeight:1700,intrinsicWidth:1700,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+16+0),pixelHeight:1700,pixelWidth:1700,sizes:\"195px\",src:\"https://framerusercontent.com/images/dVFlbk4kxNwoYsct5ZIUhiE.jpg\",srcSet:\"https://framerusercontent.com/images/dVFlbk4kxNwoYsct5ZIUhiE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dVFlbk4kxNwoYsct5ZIUhiE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dVFlbk4kxNwoYsct5ZIUhiE.jpg 1700w\"}},VCVRLOhtM:{background:{alt:\"Woman working with coworkers\",fit:\"fill\",intrinsicHeight:1700,intrinsicWidth:1700,pixelHeight:1700,pixelWidth:1700,sizes:\"350px\",src:\"https://framerusercontent.com/images/dVFlbk4kxNwoYsct5ZIUhiE.jpg\",srcSet:\"https://framerusercontent.com/images/dVFlbk4kxNwoYsct5ZIUhiE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dVFlbk4kxNwoYsct5ZIUhiE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dVFlbk4kxNwoYsct5ZIUhiE.jpg 1700w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Woman working with coworkers\",fit:\"fill\",intrinsicHeight:1700,intrinsicWidth:1700,pixelHeight:1700,pixelWidth:1700,sizes:`calc((min(${componentViewport?.width||\"100vw\"} * 0.9992, 1200px) - 40px) / 2)`,src:\"https://framerusercontent.com/images/dVFlbk4kxNwoYsct5ZIUhiE.jpg\",srcSet:\"https://framerusercontent.com/images/dVFlbk4kxNwoYsct5ZIUhiE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dVFlbk4kxNwoYsct5ZIUhiE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dVFlbk4kxNwoYsct5ZIUhiE.jpg 1700w\"},className:\"framer-b5i647\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yn5ni9\",\"data-framer-name\":\"Features Large\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o7x5j8\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18zlp72\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{background:{alt:\"Woman on phone and holding pills\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+596.8+60+0+0+0+0),pixelHeight:1500,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/oG2P38jpQKn48cv8lptkJNyaoM.jpg\",srcSet:\"https://framerusercontent.com/images/oG2P38jpQKn48cv8lptkJNyaoM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oG2P38jpQKn48cv8lptkJNyaoM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oG2P38jpQKn48cv8lptkJNyaoM.jpg 1500w\"}},VCVRLOhtM:{background:{alt:\"Woman on phone and holding pills\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:1500,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} * 0.9992 - 80px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/oG2P38jpQKn48cv8lptkJNyaoM.jpg\",srcSet:\"https://framerusercontent.com/images/oG2P38jpQKn48cv8lptkJNyaoM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oG2P38jpQKn48cv8lptkJNyaoM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oG2P38jpQKn48cv8lptkJNyaoM.jpg 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Woman on phone and holding pills\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:1500,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} * 0.9992, 1px), 1000px)`,src:\"https://framerusercontent.com/images/oG2P38jpQKn48cv8lptkJNyaoM.jpg\",srcSet:\"https://framerusercontent.com/images/oG2P38jpQKn48cv8lptkJNyaoM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oG2P38jpQKn48cv8lptkJNyaoM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oG2P38jpQKn48cv8lptkJNyaoM.jpg 1500w\"},className:\"framer-dq9qzt\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qac80e\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zezpn5\",\"data-styles-preset\":\"t8tFDZrrW\",style:{\"--framer-text-alignment\":\"center\"},children:\"How We Help\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zezpn5\",\"data-styles-preset\":\"t8tFDZrrW\",children:\"How We Help\"})}),className:\"framer-1tyl6gc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-78xlyh\",\"data-styles-preset\":\"Tq2GxcPtv\",style:{\"--framer-text-alignment\":\"center\"},children:\"Tens of millions of Americans are unable to manage their chronic conditions with commercial medications. Using specialized compounded formulas tailored for individual patient needs, Henry helps people who have been left behind by the commercial market, all while remaining easy, accessible, and affordable. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-78xlyh\",\"data-styles-preset\":\"Tq2GxcPtv\",children:\"Tens of millions of Americans are unable to manage their chronic conditions with commercial medications. Using specialized compounded formulas tailored for individual patient needs, Henry helps people who have been left behind by the commercial market, all while remaining easy, accessible, and affordable. \"})}),className:\"framer-1l16vsr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f65fpx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fi7e3k\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zezpn5\",\"data-styles-preset\":\"t8tFDZrrW\",style:{\"--framer-text-alignment\":\"center\"},children:\"What We Do\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zezpn5\",\"data-styles-preset\":\"t8tFDZrrW\",children:\"What We Do\"})}),className:\"framer-ng4ijk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-78xlyh\",\"data-styles-preset\":\"Tq2GxcPtv\",style:{\"--framer-text-alignment\":\"center\"},children:\"Henry Meds is a platform that connects patients, providers, and pharmacies to increase access to life-changing medical care, at a cost everyone can afford!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-78xlyh\",\"data-styles-preset\":\"Tq2GxcPtv\",children:\"Henry Meds is a platform that connects patients, providers, and pharmacies to increase access to life-changing medical care, at a cost everyone can afford!\"})}),className:\"framer-3uzvm7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{background:{alt:\"Telehealth video visit on mobile phone\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+596.8+60+0+530.4+0+0),pixelHeight:1500,pixelWidth:1500,sizes:\"200px\",src:\"https://framerusercontent.com/images/UZLi2r95nTrUXJeIC6NdXnWuZAQ.jpg\",srcSet:\"https://framerusercontent.com/images/UZLi2r95nTrUXJeIC6NdXnWuZAQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UZLi2r95nTrUXJeIC6NdXnWuZAQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UZLi2r95nTrUXJeIC6NdXnWuZAQ.jpg 1500w\"}},VCVRLOhtM:{background:{alt:\"Telehealth video visit on mobile phone\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:1500,pixelWidth:1500,sizes:`min(max(${componentViewport?.width||\"100vw\"} * 0.9992 - 80px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/UZLi2r95nTrUXJeIC6NdXnWuZAQ.jpg\",srcSet:\"https://framerusercontent.com/images/UZLi2r95nTrUXJeIC6NdXnWuZAQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UZLi2r95nTrUXJeIC6NdXnWuZAQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UZLi2r95nTrUXJeIC6NdXnWuZAQ.jpg 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Telehealth video visit on mobile phone\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:1500,pixelWidth:1500,sizes:`min(max(${componentViewport?.width||\"100vw\"} * 0.9992, 1px), 1000px)`,src:\"https://framerusercontent.com/images/UZLi2r95nTrUXJeIC6NdXnWuZAQ.jpg\",srcSet:\"https://framerusercontent.com/images/UZLi2r95nTrUXJeIC6NdXnWuZAQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UZLi2r95nTrUXJeIC6NdXnWuZAQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UZLi2r95nTrUXJeIC6NdXnWuZAQ.jpg 1500w\"},className:\"framer-11oa2rb\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ebohui\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{background:{alt:\"Man with headset on\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+596.8+60+0+1060.8+0+0),pixelHeight:1500,pixelWidth:1500,sizes:\"200px\",src:\"https://framerusercontent.com/images/mXMRh0yyEvK8RFMids9WTSVeAsk.jpg\",srcSet:\"https://framerusercontent.com/images/mXMRh0yyEvK8RFMids9WTSVeAsk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mXMRh0yyEvK8RFMids9WTSVeAsk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mXMRh0yyEvK8RFMids9WTSVeAsk.jpg 1500w\"}},VCVRLOhtM:{background:{alt:\"Man with headset on\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:1500,pixelWidth:1500,sizes:`min(max(${componentViewport?.width||\"100vw\"} * 0.9992 - 80px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/mXMRh0yyEvK8RFMids9WTSVeAsk.jpg\",srcSet:\"https://framerusercontent.com/images/mXMRh0yyEvK8RFMids9WTSVeAsk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mXMRh0yyEvK8RFMids9WTSVeAsk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mXMRh0yyEvK8RFMids9WTSVeAsk.jpg 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Man with headset on\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:1500,pixelWidth:1500,sizes:`min(max(${componentViewport?.width||\"100vw\"} * 0.9992, 1px), 1000px)`,src:\"https://framerusercontent.com/images/mXMRh0yyEvK8RFMids9WTSVeAsk.jpg\",srcSet:\"https://framerusercontent.com/images/mXMRh0yyEvK8RFMids9WTSVeAsk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mXMRh0yyEvK8RFMids9WTSVeAsk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mXMRh0yyEvK8RFMids9WTSVeAsk.jpg 1500w\"},className:\"framer-16chjs9\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p2n3h4\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zezpn5\",\"data-styles-preset\":\"t8tFDZrrW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our Vision & Mission\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zezpn5\",\"data-styles-preset\":\"t8tFDZrrW\",children:\"Our Vision & Mission\"})}),className:\"framer-1q95ap6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-78xlyh\",\"data-styles-preset\":\"Tq2GxcPtv\",style:{\"--framer-text-alignment\":\"center\"},children:\"Henry aims to reinvent how healthcare success is judged; by achieving the best medical outcomes per dollar spent. To make healthcare for chronic conditions accessible to every American who needs it, no matter their finances. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-78xlyh\",\"data-styles-preset\":\"Tq2GxcPtv\",children:\"Henry aims to reinvent how healthcare success is judged; by achieving the best medical outcomes per dollar spent. To make healthcare for chronic conditions accessible to every American who needs it, no matter their finances. \"})}),className:\"framer-1wa93bv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s4sttn\",\"data-framer-name\":\"CTA\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wf9i6w\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{y:(componentViewport?.y||0)+0+0+0+2188+0+0+72}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tjbvlv-container\",nodeId:\"v9Li4LV6G\",scopeId:\"BZWuO4vyE\",children:/*#__PURE__*/_jsx(CTAButtons,{height:\"100%\",id:\"v9Li4LV6G\",J0B4cwHhh:\"var(--token-38ac2736-6571-41a4-b205-79f39791f93f, rgb(0, 131, 108))\",K352X3tbv:\"https://boards.greenhouse.io/henrymeds\",layoutId:\"v9Li4LV6G\",pFHS8lYJh:\"Compounded\",style:{height:\"100%\"},variant:\"x6IsfIboD\",width:\"100%\",WrQ01v369:\"View Open Positions\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xqa03k\",\"data-framer-name\":\"Values\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zezpn5\",\"data-styles-preset\":\"t8tFDZrrW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Values For Henry\"})}),className:\"framer-1gpk0ap\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rafcl1\",\"data-hide-scrollbars\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pazbav\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{background:{alt:\"Icon of stopwatch\",fit:\"fit\",intrinsicHeight:187,intrinsicWidth:149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2388+20+90.4+0+0+0),pixelHeight:187,pixelWidth:149,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kvJ29Om8kW3BxEHx1v221Ecvj4.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon of stopwatch\",fit:\"fit\",intrinsicHeight:187,intrinsicWidth:149,pixelHeight:187,pixelWidth:149,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kvJ29Om8kW3BxEHx1v221Ecvj4.svg\"},className:\"framer-17qdulh\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eydl2o\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ox16ao\",\"data-styles-preset\":\"djdKMkkZr\",style:{\"--framer-text-alignment\":\"center\"},children:\"Move Fast\"})}),className:\"framer-12qni9x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-78xlyh\",\"data-styles-preset\":\"Tq2GxcPtv\",style:{\"--framer-text-alignment\":\"center\"},children:\"How we work\"})}),className:\"framer-1x8np3p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v440hm\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{background:{alt:\"Icon of Award Ribbon\",fit:\"fit\",intrinsicHeight:193,intrinsicWidth:194,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2388+20+90.4+0+0+0),pixelHeight:193,pixelWidth:194,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/s2co93ha0dhytHud8H57elUgn8.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon of Award Ribbon\",fit:\"fit\",intrinsicHeight:193,intrinsicWidth:194,pixelHeight:193,pixelWidth:194,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/s2co93ha0dhytHud8H57elUgn8.svg\"},className:\"framer-1l1e317\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lji83i\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ox16ao\",\"data-styles-preset\":\"djdKMkkZr\",style:{\"--framer-text-alignment\":\"center\"},children:\"Deliver Value\"})}),className:\"framer-1uqohut\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-78xlyh\",\"data-styles-preset\":\"Tq2GxcPtv\",style:{\"--framer-text-alignment\":\"center\"},children:\"Where we\u2019re going\"})}),className:\"framer-7w84o8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14dhp8k\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{background:{alt:\"Icon of Heart with smilie face\",fit:\"fit\",intrinsicHeight:175,intrinsicWidth:189,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2388+20+90.4+0+0+0),pixelHeight:175,pixelWidth:189,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/icGjcixW2po5Byfl54tQvkBvcnc.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon of Heart with smilie face\",fit:\"fit\",intrinsicHeight:175,intrinsicWidth:189,pixelHeight:175,pixelWidth:189,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/icGjcixW2po5Byfl54tQvkBvcnc.svg\"},className:\"framer-1pxwjkn\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u09h9x\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ox16ao\",\"data-styles-preset\":\"djdKMkkZr\",style:{\"--framer-text-alignment\":\"center\"},children:\"Stay Positive\"})}),className:\"framer-11g9f1i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-78xlyh\",\"data-styles-preset\":\"Tq2GxcPtv\",style:{\"--framer-text-alignment\":\"center\"},children:\"How we act\"})}),className:\"framer-6dcupw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nfcpgu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{background:{alt:\"Icon of Lightbulb\",fit:\"fit\",intrinsicHeight:195,intrinsicWidth:174,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2388+20+90.4+0+0+0),pixelHeight:195,pixelWidth:174,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/803A3k2khWYfMJZX1yoMlaZ70I.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon of Lightbulb\",fit:\"fit\",intrinsicHeight:195,intrinsicWidth:174,pixelHeight:195,pixelWidth:174,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/803A3k2khWYfMJZX1yoMlaZ70I.svg\"},className:\"framer-1k7amw3\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p628e5\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ox16ao\",\"data-styles-preset\":\"djdKMkkZr\",style:{\"--framer-text-alignment\":\"center\"},children:\"Keep Learning\"})}),className:\"framer-1p34i9f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-78xlyh\",\"data-styles-preset\":\"Tq2GxcPtv\",style:{\"--framer-text-alignment\":\"center\"},children:\"How we improve\"})}),className:\"framer-dbzktr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v8oxkm\",\"data-framer-name\":\"Where we Work\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zezpn5\",\"data-styles-preset\":\"t8tFDZrrW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Where We Work\"})}),className:\"framer-2qykef\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l5yz54\",\"data-hide-scrollbars\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vzeyfm\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{background:{alt:\"Las Vegas at Sunset\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2999.2+20+110.4+0+0+0),pixelHeight:1e3,pixelWidth:1e3,positionX:\"center\",positionY:\"bottom\",sizes:\"280px\",src:\"https://framerusercontent.com/images/jBD5WxPBLTZDnM2EV491UTfyMk.jpg\",srcSet:\"https://framerusercontent.com/images/jBD5WxPBLTZDnM2EV491UTfyMk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jBD5WxPBLTZDnM2EV491UTfyMk.jpg 1000w\"}},VCVRLOhtM:{background:{alt:\"Las Vegas at Sunset\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:1e3,pixelWidth:1e3,positionX:\"center\",positionY:\"bottom\",sizes:`max(min(1000px, ${componentViewport?.width||\"100vw\"} * 0.9992), 100px)`,src:\"https://framerusercontent.com/images/jBD5WxPBLTZDnM2EV491UTfyMk.jpg\",srcSet:\"https://framerusercontent.com/images/jBD5WxPBLTZDnM2EV491UTfyMk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jBD5WxPBLTZDnM2EV491UTfyMk.jpg 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Las Vegas at Sunset\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:1e3,pixelWidth:1e3,positionX:\"center\",positionY:\"bottom\",sizes:\"320px\",src:\"https://framerusercontent.com/images/jBD5WxPBLTZDnM2EV491UTfyMk.jpg\",srcSet:\"https://framerusercontent.com/images/jBD5WxPBLTZDnM2EV491UTfyMk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jBD5WxPBLTZDnM2EV491UTfyMk.jpg 1000w\"},className:\"framer-a8lt7v\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5s1jnr\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ox16ao\",\"data-styles-preset\":\"djdKMkkZr\",children:\"Las Vegas, Nevada\"})}),className:\"framer-n83ftb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-78xlyh\",\"data-styles-preset\":\"Tq2GxcPtv\",children:\"Elvis, Sammy, Celine, Britney and now Henry. Las Vegas certainly is lucky.\"})}),className:\"framer-tda82l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f2vjyo\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{background:{alt:\"Katowice, Poland from drone\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2999.2+20+110.4+0+0+0),pixelHeight:1e3,pixelWidth:1e3,positionX:\"center\",positionY:\"top\",sizes:\"280px\",src:\"https://framerusercontent.com/images/K3OE2xnlJIMShK0ENWy7ZC2FEMw.jpg\",srcSet:\"https://framerusercontent.com/images/K3OE2xnlJIMShK0ENWy7ZC2FEMw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/K3OE2xnlJIMShK0ENWy7ZC2FEMw.jpg 1000w\"}},VCVRLOhtM:{background:{alt:\"Katowice, Poland from drone\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:1e3,pixelWidth:1e3,positionX:\"center\",positionY:\"top\",sizes:`max(min(1000px, ${componentViewport?.width||\"100vw\"} * 0.9992), 100px)`,src:\"https://framerusercontent.com/images/K3OE2xnlJIMShK0ENWy7ZC2FEMw.jpg\",srcSet:\"https://framerusercontent.com/images/K3OE2xnlJIMShK0ENWy7ZC2FEMw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/K3OE2xnlJIMShK0ENWy7ZC2FEMw.jpg 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Katowice, Poland from drone\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:1e3,pixelWidth:1e3,positionX:\"center\",positionY:\"top\",sizes:\"320px\",src:\"https://framerusercontent.com/images/K3OE2xnlJIMShK0ENWy7ZC2FEMw.jpg\",srcSet:\"https://framerusercontent.com/images/K3OE2xnlJIMShK0ENWy7ZC2FEMw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/K3OE2xnlJIMShK0ENWy7ZC2FEMw.jpg 1000w\"},className:\"framer-1y2yyi0\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jo75ka\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ox16ao\",\"data-styles-preset\":\"djdKMkkZr\",children:\"Katowice, Poland\"})}),className:\"framer-1e1g0sv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-78xlyh\",\"data-styles-preset\":\"Tq2GxcPtv\",children:\"Henry's home abroad. Our office is full of friendly faces and pierogi. \"})}),className:\"framer-7w08e5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tv5o3u\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{background:{alt:\"Dog on couch\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2999.2+20+110.4+0+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"280px\",src:\"https://framerusercontent.com/images/anhaGOcY5w2uBHoEanwDihc8U8.jpg\",srcSet:\"https://framerusercontent.com/images/anhaGOcY5w2uBHoEanwDihc8U8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/anhaGOcY5w2uBHoEanwDihc8U8.jpg 1000w\"}},VCVRLOhtM:{background:{alt:\"Dog on couch\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:1e3,pixelWidth:1e3,sizes:`max(min(1000px, ${componentViewport?.width||\"100vw\"} * 0.9992), 100px)`,src:\"https://framerusercontent.com/images/anhaGOcY5w2uBHoEanwDihc8U8.jpg\",srcSet:\"https://framerusercontent.com/images/anhaGOcY5w2uBHoEanwDihc8U8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/anhaGOcY5w2uBHoEanwDihc8U8.jpg 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Dog on couch\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:1e3,pixelWidth:1e3,sizes:\"320px\",src:\"https://framerusercontent.com/images/anhaGOcY5w2uBHoEanwDihc8U8.jpg\",srcSet:\"https://framerusercontent.com/images/anhaGOcY5w2uBHoEanwDihc8U8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/anhaGOcY5w2uBHoEanwDihc8U8.jpg 1000w\"},className:\"framer-1w4ljug\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-908kai\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ox16ao\",\"data-styles-preset\":\"djdKMkkZr\",children:\"Remote\"})}),className:\"framer-d8qqqv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-78xlyh\",\"data-styles-preset\":\"Tq2GxcPtv\",children:\"Have laptop, will work. We think Fluffy and Fido are perfect coworkers. \"})}),className:\"framer-1q10zwa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-164j7gx\",\"data-framer-name\":\"Poland Video\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zezpn5\",\"data-styles-preset\":\"t8tFDZrrW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Check out a day in our Poland Office\"})}),className:\"framer-1lzudat\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10lfz0b-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dbpa5gRA6\",scopeId:\"BZWuO4vyE\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"var(--token-38ac2736-6571-41a4-b205-79f39791f93f, rgb(0, 131, 108))\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"dbpa5gRA6\",isMixedBorderRadius:false,layoutId:\"dbpa5gRA6\",loop:false,muted:true,objectFit:\"cover\",playing:false,poster:\"https://framerusercontent.com/images/I9zx1uqzAsi23MQwlMCVtfMuu0.jpg\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/8trY67P4EH6E4MTHcLNnAWFGY2I.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-310gdt\",\"data-framer-name\":\"Value Prop\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-j0kks5\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zezpn5\",\"data-styles-preset\":\"t8tFDZrrW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Some of Our US Benefits\"})}),className:\"framer-n7733b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1zjvzi\",\"data-framer-name\":\"Columns\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6yr3ky\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{background:{alt:\"Man working on laptop\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4032+20+90.4+0+0+0),pixelHeight:1500,pixelWidth:1500,sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) * 0.9, 1px), 351px)`,src:\"https://framerusercontent.com/images/PD9D4MfXEPNBKTjmsh51pMv23oM.jpg\",srcSet:\"https://framerusercontent.com/images/PD9D4MfXEPNBKTjmsh51pMv23oM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PD9D4MfXEPNBKTjmsh51pMv23oM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PD9D4MfXEPNBKTjmsh51pMv23oM.jpg 1500w\"}},VCVRLOhtM:{background:{alt:\"Man working on laptop\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:1500,pixelWidth:1500,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px) * 0.4, 1px)`,src:\"https://framerusercontent.com/images/PD9D4MfXEPNBKTjmsh51pMv23oM.jpg\",srcSet:\"https://framerusercontent.com/images/PD9D4MfXEPNBKTjmsh51pMv23oM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PD9D4MfXEPNBKTjmsh51pMv23oM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PD9D4MfXEPNBKTjmsh51pMv23oM.jpg 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Man working on laptop\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:1500,pixelWidth:1500,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) * 0.4, 1px)`,src:\"https://framerusercontent.com/images/PD9D4MfXEPNBKTjmsh51pMv23oM.jpg\",srcSet:\"https://framerusercontent.com/images/PD9D4MfXEPNBKTjmsh51pMv23oM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PD9D4MfXEPNBKTjmsh51pMv23oM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PD9D4MfXEPNBKTjmsh51pMv23oM.jpg 1500w\"},className:\"framer-akrdt8\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-51xro\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eve14w\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jmlqks\",\"data-styles-preset\":\"nnAS8_DKE\",style:{\"--framer-text-alignment\":\"center\"},children:\"Health, Vision, and Dental Insurance\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jmlqks\",\"data-styles-preset\":\"nnAS8_DKE\",children:\"Health, Vision, and Dental Insurance\"})}),className:\"framer-1vvyw9m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-78xlyh\",\"data-styles-preset\":\"Tq2GxcPtv\",style:{\"--framer-text-alignment\":\"center\"},children:\"Henry covers 99% for employees and 50% for their qualified dependents\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-78xlyh\",\"data-styles-preset\":\"Tq2GxcPtv\",children:\"Henry covers 99% for employees and 50% for their qualified dependents\"})}),className:\"framer-tprqg2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hac2d3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jmlqks\",\"data-styles-preset\":\"nnAS8_DKE\",style:{\"--framer-text-alignment\":\"center\"},children:\"401k\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jmlqks\",\"data-styles-preset\":\"nnAS8_DKE\",children:\"401k\"})}),className:\"framer-1wjhlks\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-78xlyh\",\"data-styles-preset\":\"Tq2GxcPtv\",style:{\"--framer-text-alignment\":\"center\"},children:\"Matching contributions beginning your first day\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-78xlyh\",\"data-styles-preset\":\"Tq2GxcPtv\",children:\"Matching contributions beginning your first day\"})}),className:\"framer-1book83\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vy2yiw\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jmlqks\",\"data-styles-preset\":\"nnAS8_DKE\",style:{\"--framer-text-alignment\":\"center\"},children:\"Unlimited PTO\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jmlqks\",\"data-styles-preset\":\"nnAS8_DKE\",children:\"Unlimited PTO\"})}),className:\"framer-83u3bg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-78xlyh\",\"data-styles-preset\":\"Tq2GxcPtv\",style:{\"--framer-text-alignment\":\"center\"},children:\"Take time off when you need it\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-78xlyh\",\"data-styles-preset\":\"Tq2GxcPtv\",children:\"Take time off when you need it\"})}),className:\"framer-1solk56\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12tsfrz\",\"data-framer-name\":\"CTA\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c4uius\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cQB6NOG2e:{y:(componentViewport?.y||0)+0+0+0+5366.4+0+0+0+49.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-t7ouzw-container\",nodeId:\"rGPIREYNp\",scopeId:\"BZWuO4vyE\",children:/*#__PURE__*/_jsx(CTAButtons,{height:\"100%\",id:\"rGPIREYNp\",J0B4cwHhh:\"var(--token-38ac2736-6571-41a4-b205-79f39791f93f, rgb(0, 131, 108))\",K352X3tbv:\"https://boards.greenhouse.io/henrymeds\",layoutId:\"rGPIREYNp\",pFHS8lYJh:\"Compounded\",style:{height:\"100%\"},variant:\"x6IsfIboD\",width:\"100%\",WrQ01v369:\"View Open Positions\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cz2tnj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1p2hto\",\"data-styles-preset\":\"tmuWEGdBn\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7664c2de-7ae1-4cd8-9c55-2246475b4e86, rgb(0, 119, 98))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":iPyi19n01\",webPageId:\"BZWuO4vyE\"},motionChild:true,nodeId:\"lSZTifRIb\",openInNewTab:false,scopeId:\"BZWuO4vyE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l0nscn\",\"data-styles-preset\":\"D1mzyeJ2C\",children:\"Back to top\"})})})}),className:\"framer-19bh5q9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TLi6N.framer-1qvuv1f, .framer-TLi6N .framer-1qvuv1f { display: block; }\",\".framer-TLi6N.framer-t2lb26 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-TLi6N .framer-19wmhns { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TLi6N .framer-1t2u26a { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 16px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-TLi6N .framer-1sevdnm { align-content: center; align-items: center; 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-TLi6N .framer-1okv2fq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 400px; }\",\".framer-TLi6N .framer-nl3rdq, .framer-TLi6N .framer-1tyl6gc, .framer-TLi6N .framer-ng4ijk, .framer-TLi6N .framer-1q95ap6, .framer-TLi6N .framer-12qni9x, .framer-TLi6N .framer-1uqohut, .framer-TLi6N .framer-11g9f1i, .framer-TLi6N .framer-1p34i9f { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TLi6N .framer-1p52xz8, .framer-TLi6N .framer-1l16vsr, .framer-TLi6N .framer-3uzvm7, .framer-TLi6N .framer-1wa93bv, .framer-TLi6N .framer-1x8np3p, .framer-TLi6N .framer-7w84o8, .framer-TLi6N .framer-6dcupw, .framer-TLi6N .framer-dbzktr { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TLi6N .framer-15obtel-container, .framer-TLi6N .framer-1tjbvlv-container, .framer-TLi6N .framer-t7ouzw-container { flex: none; height: 56px; position: relative; width: auto; }\",\".framer-TLi6N .framer-b5i647 { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 550px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50%; will-change: var(--framer-will-change-override, transform); }\",\".framer-TLi6N .framer-1yn5ni9 { 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: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-TLi6N .framer-1o7x5j8 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-TLi6N .framer-18zlp72 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TLi6N .framer-dq9qzt, .framer-TLi6N .framer-16chjs9 { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 383px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TLi6N .framer-1qac80e, .framer-TLi6N .framer-1fi7e3k, .framer-TLi6N .framer-p2n3h4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-TLi6N .framer-1f65fpx, .framer-TLi6N .framer-ebohui { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TLi6N .framer-11oa2rb { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 384px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TLi6N .framer-s4sttn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-TLi6N .framer-1wf9i6w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 200px; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-TLi6N .framer-1xqa03k { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 40px 60px 40px; position: relative; width: 100%; }\",\".framer-TLi6N .framer-1gpk0ap, .framer-TLi6N .framer-2qykef, .framer-TLi6N .framer-1lzudat, .framer-TLi6N .framer-n7733b, .framer-TLi6N .framer-1vvyw9m, .framer-TLi6N .framer-tprqg2, .framer-TLi6N .framer-1wjhlks, .framer-TLi6N .framer-1book83, .framer-TLi6N .framer-83u3bg, .framer-TLi6N .framer-1solk56 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TLi6N .framer-1rafcl1 { display: grid; flex: none; gap: 60px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(200px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TLi6N .framer-1pazbav, .framer-TLi6N .framer-1v440hm, .framer-TLi6N .framer-14dhp8k, .framer-TLi6N .framer-1nfcpgu { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TLi6N .framer-17qdulh, .framer-TLi6N .framer-1l1e317, .framer-TLi6N .framer-1pxwjkn, .framer-TLi6N .framer-1k7amw3 { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 100px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TLi6N .framer-1eydl2o, .framer-TLi6N .framer-lji83i, .framer-TLi6N .framer-u09h9x, .framer-TLi6N .framer-p628e5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-TLi6N .framer-v8oxkm { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 40px 60px 40px; position: relative; width: 100%; }\",\".framer-TLi6N .framer-l5yz54 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-TLi6N .framer-1vzeyfm, .framer-TLi6N .framer-f2vjyo, .framer-TLi6N .framer-tv5o3u { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TLi6N .framer-a8lt7v, .framer-TLi6N .framer-1y2yyi0, .framer-TLi6N .framer-1w4ljug { aspect-ratio: 1.3333333333333333 / 1; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 240px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-TLi6N .framer-5s1jnr, .framer-TLi6N .framer-1jo75ka, .framer-TLi6N .framer-908kai { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 100%; }\",\".framer-TLi6N .framer-n83ftb, .framer-TLi6N .framer-1e1g0sv, .framer-TLi6N .framer-d8qqqv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TLi6N .framer-tda82l, .framer-TLi6N .framer-7w08e5, .framer-TLi6N .framer-1q10zwa { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TLi6N .framer-164j7gx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 40px 60px 40px; position: relative; width: 100%; }\",\".framer-TLi6N .framer-10lfz0b-container { aspect-ratio: 1.7857142857142858 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 337px); position: relative; width: 600px; }\",\".framer-TLi6N .framer-310gdt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 40px 60px 40px; position: relative; width: 100%; }\",\".framer-TLi6N .framer-j0kks5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 133px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-TLi6N .framer-1zjvzi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TLi6N .framer-6yr3ky { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; padding: 0px; position: relative; width: 40%; }\",\".framer-TLi6N .framer-akrdt8 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TLi6N .framer-51xro { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px 0px 0px 40px; position: relative; width: 60%; }\",\".framer-TLi6N .framer-1eve14w, .framer-TLi6N .framer-1hac2d3, .framer-TLi6N .framer-vy2yiw { align-content: center; align-items: center; background-color: var(--token-ec1d5090-5abe-4608-97a3-077c7ba6fa15, #f4f4f4); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-TLi6N .framer-12tsfrz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TLi6N .framer-c4uius { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 200px; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-TLi6N .framer-1cz2tnj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1200px; }\",\".framer-TLi6N .framer-19bh5q9 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 143px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-TLi6N.framer-t2lb26, .framer-TLi6N .framer-19wmhns, .framer-TLi6N .framer-1t2u26a, .framer-TLi6N .framer-1sevdnm, .framer-TLi6N .framer-1okv2fq, .framer-TLi6N .framer-b5i647, .framer-TLi6N .framer-1yn5ni9, .framer-TLi6N .framer-1o7x5j8, .framer-TLi6N .framer-18zlp72, .framer-TLi6N .framer-dq9qzt, .framer-TLi6N .framer-1qac80e, .framer-TLi6N .framer-1f65fpx, .framer-TLi6N .framer-1fi7e3k, .framer-TLi6N .framer-11oa2rb, .framer-TLi6N .framer-ebohui, .framer-TLi6N .framer-16chjs9, .framer-TLi6N .framer-p2n3h4, .framer-TLi6N .framer-s4sttn, .framer-TLi6N .framer-1wf9i6w, .framer-TLi6N .framer-1xqa03k, .framer-TLi6N .framer-1pazbav, .framer-TLi6N .framer-17qdulh, .framer-TLi6N .framer-1eydl2o, .framer-TLi6N .framer-1v440hm, .framer-TLi6N .framer-1l1e317, .framer-TLi6N .framer-lji83i, .framer-TLi6N .framer-14dhp8k, .framer-TLi6N .framer-1pxwjkn, .framer-TLi6N .framer-u09h9x, .framer-TLi6N .framer-1nfcpgu, .framer-TLi6N .framer-1k7amw3, .framer-TLi6N .framer-p628e5, .framer-TLi6N .framer-v8oxkm, .framer-TLi6N .framer-l5yz54, .framer-TLi6N .framer-1vzeyfm, .framer-TLi6N .framer-5s1jnr, .framer-TLi6N .framer-f2vjyo, .framer-TLi6N .framer-1jo75ka, .framer-TLi6N .framer-tv5o3u, .framer-TLi6N .framer-908kai, .framer-TLi6N .framer-164j7gx, .framer-TLi6N .framer-310gdt, .framer-TLi6N .framer-j0kks5, .framer-TLi6N .framer-1zjvzi, .framer-TLi6N .framer-6yr3ky, .framer-TLi6N .framer-51xro, .framer-TLi6N .framer-1eve14w, .framer-TLi6N .framer-1hac2d3, .framer-TLi6N .framer-vy2yiw, .framer-TLi6N .framer-12tsfrz, .framer-TLi6N .framer-c4uius, .framer-TLi6N .framer-1cz2tnj { gap: 0px; } .framer-TLi6N.framer-t2lb26 > *, .framer-TLi6N .framer-19wmhns > *, .framer-TLi6N .framer-1vzeyfm > *, .framer-TLi6N .framer-f2vjyo > *, .framer-TLi6N .framer-tv5o3u > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-TLi6N.framer-t2lb26 > :first-child, .framer-TLi6N .framer-19wmhns > :first-child, .framer-TLi6N .framer-1okv2fq > :first-child, .framer-TLi6N .framer-b5i647 > :first-child, .framer-TLi6N .framer-1o7x5j8 > :first-child, .framer-TLi6N .framer-dq9qzt > :first-child, .framer-TLi6N .framer-1qac80e > :first-child, .framer-TLi6N .framer-1fi7e3k > :first-child, .framer-TLi6N .framer-11oa2rb > :first-child, .framer-TLi6N .framer-16chjs9 > :first-child, .framer-TLi6N .framer-p2n3h4 > :first-child, .framer-TLi6N .framer-s4sttn > :first-child, .framer-TLi6N .framer-1xqa03k > :first-child, .framer-TLi6N .framer-1pazbav > :first-child, .framer-TLi6N .framer-17qdulh > :first-child, .framer-TLi6N .framer-1eydl2o > :first-child, .framer-TLi6N .framer-1v440hm > :first-child, .framer-TLi6N .framer-1l1e317 > :first-child, .framer-TLi6N .framer-lji83i > :first-child, .framer-TLi6N .framer-14dhp8k > :first-child, .framer-TLi6N .framer-1pxwjkn > :first-child, .framer-TLi6N .framer-u09h9x > :first-child, .framer-TLi6N .framer-1nfcpgu > :first-child, .framer-TLi6N .framer-1k7amw3 > :first-child, .framer-TLi6N .framer-p628e5 > :first-child, .framer-TLi6N .framer-v8oxkm > :first-child, .framer-TLi6N .framer-1vzeyfm > :first-child, .framer-TLi6N .framer-5s1jnr > :first-child, .framer-TLi6N .framer-f2vjyo > :first-child, .framer-TLi6N .framer-1jo75ka > :first-child, .framer-TLi6N .framer-tv5o3u > :first-child, .framer-TLi6N .framer-908kai > :first-child, .framer-TLi6N .framer-164j7gx > :first-child, .framer-TLi6N .framer-310gdt > :first-child, .framer-TLi6N .framer-j0kks5 > :first-child, .framer-TLi6N .framer-51xro > :first-child, .framer-TLi6N .framer-1eve14w > :first-child, .framer-TLi6N .framer-1hac2d3 > :first-child, .framer-TLi6N .framer-vy2yiw > :first-child, .framer-TLi6N .framer-12tsfrz > :first-child, .framer-TLi6N .framer-c4uius > :first-child { margin-top: 0px; } .framer-TLi6N.framer-t2lb26 > :last-child, .framer-TLi6N .framer-19wmhns > :last-child, .framer-TLi6N .framer-1okv2fq > :last-child, .framer-TLi6N .framer-b5i647 > :last-child, .framer-TLi6N .framer-1o7x5j8 > :last-child, .framer-TLi6N .framer-dq9qzt > :last-child, .framer-TLi6N .framer-1qac80e > :last-child, .framer-TLi6N .framer-1fi7e3k > :last-child, .framer-TLi6N .framer-11oa2rb > :last-child, .framer-TLi6N .framer-16chjs9 > :last-child, .framer-TLi6N .framer-p2n3h4 > :last-child, .framer-TLi6N .framer-s4sttn > :last-child, .framer-TLi6N .framer-1xqa03k > :last-child, .framer-TLi6N .framer-1pazbav > :last-child, .framer-TLi6N .framer-17qdulh > :last-child, .framer-TLi6N .framer-1eydl2o > :last-child, .framer-TLi6N .framer-1v440hm > :last-child, .framer-TLi6N .framer-1l1e317 > :last-child, .framer-TLi6N .framer-lji83i > :last-child, .framer-TLi6N .framer-14dhp8k > :last-child, .framer-TLi6N .framer-1pxwjkn > :last-child, .framer-TLi6N .framer-u09h9x > :last-child, .framer-TLi6N .framer-1nfcpgu > :last-child, .framer-TLi6N .framer-1k7amw3 > :last-child, .framer-TLi6N .framer-p628e5 > :last-child, .framer-TLi6N .framer-v8oxkm > :last-child, .framer-TLi6N .framer-1vzeyfm > :last-child, .framer-TLi6N .framer-5s1jnr > :last-child, .framer-TLi6N .framer-f2vjyo > :last-child, .framer-TLi6N .framer-1jo75ka > :last-child, .framer-TLi6N .framer-tv5o3u > :last-child, .framer-TLi6N .framer-908kai > :last-child, .framer-TLi6N .framer-164j7gx > :last-child, .framer-TLi6N .framer-310gdt > :last-child, .framer-TLi6N .framer-j0kks5 > :last-child, .framer-TLi6N .framer-51xro > :last-child, .framer-TLi6N .framer-1eve14w > :last-child, .framer-TLi6N .framer-1hac2d3 > :last-child, .framer-TLi6N .framer-vy2yiw > :last-child, .framer-TLi6N .framer-12tsfrz > :last-child, .framer-TLi6N .framer-c4uius > :last-child { margin-bottom: 0px; } .framer-TLi6N .framer-1t2u26a > *, .framer-TLi6N .framer-1zjvzi > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-TLi6N .framer-1t2u26a > :first-child, .framer-TLi6N .framer-1sevdnm > :first-child, .framer-TLi6N .framer-1yn5ni9 > :first-child, .framer-TLi6N .framer-18zlp72 > :first-child, .framer-TLi6N .framer-1f65fpx > :first-child, .framer-TLi6N .framer-ebohui > :first-child, .framer-TLi6N .framer-1wf9i6w > :first-child, .framer-TLi6N .framer-l5yz54 > :first-child, .framer-TLi6N .framer-1zjvzi > :first-child, .framer-TLi6N .framer-6yr3ky > :first-child, .framer-TLi6N .framer-1cz2tnj > :first-child { margin-left: 0px; } .framer-TLi6N .framer-1t2u26a > :last-child, .framer-TLi6N .framer-1sevdnm > :last-child, .framer-TLi6N .framer-1yn5ni9 > :last-child, .framer-TLi6N .framer-18zlp72 > :last-child, .framer-TLi6N .framer-1f65fpx > :last-child, .framer-TLi6N .framer-ebohui > :last-child, .framer-TLi6N .framer-1wf9i6w > :last-child, .framer-TLi6N .framer-l5yz54 > :last-child, .framer-TLi6N .framer-1zjvzi > :last-child, .framer-TLi6N .framer-6yr3ky > :last-child, .framer-TLi6N .framer-1cz2tnj > :last-child { margin-right: 0px; } .framer-TLi6N .framer-1sevdnm > *, .framer-TLi6N .framer-1yn5ni9 > *, .framer-TLi6N .framer-1wf9i6w > *, .framer-TLi6N .framer-6yr3ky > *, .framer-TLi6N .framer-1cz2tnj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-TLi6N .framer-1okv2fq > *, .framer-TLi6N .framer-b5i647 > *, .framer-TLi6N .framer-dq9qzt > *, .framer-TLi6N .framer-1qac80e > *, .framer-TLi6N .framer-1fi7e3k > *, .framer-TLi6N .framer-11oa2rb > *, .framer-TLi6N .framer-16chjs9 > *, .framer-TLi6N .framer-p2n3h4 > *, .framer-TLi6N .framer-17qdulh > *, .framer-TLi6N .framer-1l1e317 > *, .framer-TLi6N .framer-1pxwjkn > *, .framer-TLi6N .framer-1k7amw3 > *, .framer-TLi6N .framer-5s1jnr > *, .framer-TLi6N .framer-1jo75ka > *, .framer-TLi6N .framer-908kai > *, .framer-TLi6N .framer-c4uius > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-TLi6N .framer-1o7x5j8 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-TLi6N .framer-18zlp72 > *, .framer-TLi6N .framer-1f65fpx > *, .framer-TLi6N .framer-ebohui > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-TLi6N .framer-s4sttn > *, .framer-TLi6N .framer-1eydl2o > *, .framer-TLi6N .framer-lji83i > *, .framer-TLi6N .framer-u09h9x > *, .framer-TLi6N .framer-p628e5 > *, .framer-TLi6N .framer-j0kks5 > *, .framer-TLi6N .framer-51xro > *, .framer-TLi6N .framer-1eve14w > *, .framer-TLi6N .framer-1hac2d3 > *, .framer-TLi6N .framer-vy2yiw > *, .framer-TLi6N .framer-12tsfrz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-TLi6N .framer-1xqa03k > *, .framer-TLi6N .framer-310gdt > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-TLi6N .framer-1pazbav > *, .framer-TLi6N .framer-1v440hm > *, .framer-TLi6N .framer-14dhp8k > *, .framer-TLi6N .framer-1nfcpgu > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-TLi6N .framer-v8oxkm > *, .framer-TLi6N .framer-164j7gx > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-TLi6N .framer-l5yz54 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-TLi6N[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-TLi6N [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-TLi6N[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-TLi6N [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-TLi6N[data-hide-scrollbars=\"true\"], .framer-TLi6N [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-TLi6N.framer-t2lb26 { width: 810px; } .framer-TLi6N .framer-1t2u26a { flex-direction: column; } .framer-TLi6N .framer-1sevdnm { flex: none; order: 1; width: 100%; } .framer-TLi6N .framer-1okv2fq { align-content: center; align-items: center; flex: 1 0 0px; padding: 40px; width: 1px; } .framer-TLi6N .framer-b5i647 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 350px); order: 0; width: 350px; } .framer-TLi6N .framer-1yn5ni9 { padding: 60px 40px 60px 40px; } .framer-TLi6N .framer-dq9qzt, .framer-TLi6N .framer-16chjs9 { height: var(--framer-aspect-ratio-supported, 270px); } .framer-TLi6N .framer-11oa2rb { height: var(--framer-aspect-ratio-supported, 271px); } .framer-TLi6N .framer-1rafcl1 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 30px; } .framer-TLi6N .framer-1pazbav, .framer-TLi6N .framer-1v440hm, .framer-TLi6N .framer-14dhp8k, .framer-TLi6N .framer-1nfcpgu { align-self: unset; height: min-content; width: 294px; } .framer-TLi6N .framer-17qdulh, .framer-TLi6N .framer-1l1e317, .framer-TLi6N .framer-1pxwjkn, .framer-TLi6N .framer-1k7amw3 { height: var(--framer-aspect-ratio-supported, 205px); width: 205px; } .framer-TLi6N .framer-v8oxkm { padding: 80px 40px 80px 40px; } .framer-TLi6N .framer-l5yz54 { align-content: flex-start; align-items: flex-start; } .framer-TLi6N .framer-1vzeyfm, .framer-TLi6N .framer-f2vjyo, .framer-TLi6N .framer-tv5o3u { flex: 1 0 0px; width: 1px; } .framer-TLi6N .framer-a8lt7v, .framer-TLi6N .framer-1y2yyi0, .framer-TLi6N .framer-1w4ljug { height: var(--framer-aspect-ratio-supported, 172px); } .framer-TLi6N .framer-310gdt { padding: 60px 20px 60px 20px; } .framer-TLi6N .framer-j0kks5 { height: min-content; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-TLi6N .framer-1t2u26a, .framer-TLi6N .framer-1rafcl1 { gap: 0px; } .framer-TLi6N .framer-1t2u26a > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-TLi6N .framer-1t2u26a > :first-child { margin-top: 0px; } .framer-TLi6N .framer-1t2u26a > :last-child { margin-bottom: 0px; } .framer-TLi6N .framer-1rafcl1 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-TLi6N .framer-1rafcl1 > :first-child { margin-left: 0px; } .framer-TLi6N .framer-1rafcl1 > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 809px) { .framer-TLi6N.framer-t2lb26 { width: 390px; } .framer-TLi6N .framer-1t2u26a { flex-direction: column; } .framer-TLi6N .framer-1sevdnm, .framer-TLi6N .framer-1qac80e, .framer-TLi6N .framer-1fi7e3k { flex: none; order: 1; width: 100%; } .framer-TLi6N .framer-1okv2fq { align-content: center; align-items: center; flex: 1 0 0px; padding: 20px; width: 1px; } .framer-TLi6N .framer-b5i647 { aspect-ratio: 0.975 / 1; height: var(--framer-aspect-ratio-supported, 200px); order: 0; width: 195px; } .framer-TLi6N .framer-1yn5ni9 { gap: 20px; padding: 60px 20px 0px 20px; } .framer-TLi6N .framer-1o7x5j8 { gap: 60px; } .framer-TLi6N .framer-18zlp72, .framer-TLi6N .framer-1f65fpx, .framer-TLi6N .framer-ebohui { flex-direction: column; gap: 20px; } .framer-TLi6N .framer-dq9qzt, .framer-TLi6N .framer-11oa2rb { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); order: 0; width: 200px; } .framer-TLi6N .framer-16chjs9 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); width: 200px; } .framer-TLi6N .framer-p2n3h4 { flex: none; width: 100%; } .framer-TLi6N .framer-1xqa03k { padding: 20px 0px 60px 0px; } .framer-TLi6N .framer-1rafcl1 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 30px; justify-content: flex-start; overflow: hidden; overflow-x: auto; padding: 0px 20px 0px 20px; } .framer-TLi6N .framer-1pazbav, .framer-TLi6N .framer-1v440hm, .framer-TLi6N .framer-14dhp8k, .framer-TLi6N .framer-1nfcpgu { align-self: unset; gap: 20px; height: min-content; width: 200px; } .framer-TLi6N .framer-17qdulh, .framer-TLi6N .framer-1l1e317, .framer-TLi6N .framer-1pxwjkn, .framer-TLi6N .framer-1k7amw3 { height: var(--framer-aspect-ratio-supported, 200px); width: 200px; } .framer-TLi6N .framer-v8oxkm { padding: 20px 0px 0px 0px; } .framer-TLi6N .framer-l5yz54 { align-content: flex-start; align-items: flex-start; flex-wrap: nowrap; justify-content: flex-start; overflow: hidden; overflow-x: auto; padding: 0px 20px 60px 20px; } .framer-TLi6N .framer-1vzeyfm, .framer-TLi6N .framer-f2vjyo, .framer-TLi6N .framer-tv5o3u { width: 280px; } .framer-TLi6N .framer-a8lt7v, .framer-TLi6N .framer-1y2yyi0, .framer-TLi6N .framer-1w4ljug { height: var(--framer-aspect-ratio-supported, 150px); } .framer-TLi6N .framer-5s1jnr, .framer-TLi6N .framer-1jo75ka, .framer-TLi6N .framer-908kai { justify-content: flex-start; min-height: 300px; } .framer-TLi6N .framer-164j7gx, .framer-TLi6N .framer-310gdt { padding: 20px 40px 60px 40px; } .framer-TLi6N .framer-10lfz0b-container { aspect-ratio: unset; height: auto; width: 100%; } .framer-TLi6N .framer-j0kks5 { height: min-content; padding: 0px 20px 0px 20px; width: 100%; } .framer-TLi6N .framer-1zjvzi { flex-direction: column; gap: 30px; } .framer-TLi6N .framer-6yr3ky { align-self: unset; height: 300px; width: 90%; } .framer-TLi6N .framer-akrdt8 { max-width: 351px; } .framer-TLi6N .framer-51xro { gap: 30px; padding: 0px; width: 90%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-TLi6N .framer-1t2u26a, .framer-TLi6N .framer-1yn5ni9, .framer-TLi6N .framer-1o7x5j8, .framer-TLi6N .framer-18zlp72, .framer-TLi6N .framer-1f65fpx, .framer-TLi6N .framer-ebohui, .framer-TLi6N .framer-1rafcl1, .framer-TLi6N .framer-1pazbav, .framer-TLi6N .framer-1v440hm, .framer-TLi6N .framer-14dhp8k, .framer-TLi6N .framer-1nfcpgu, .framer-TLi6N .framer-1zjvzi, .framer-TLi6N .framer-51xro { gap: 0px; } .framer-TLi6N .framer-1t2u26a > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-TLi6N .framer-1t2u26a > :first-child, .framer-TLi6N .framer-1o7x5j8 > :first-child, .framer-TLi6N .framer-18zlp72 > :first-child, .framer-TLi6N .framer-1f65fpx > :first-child, .framer-TLi6N .framer-ebohui > :first-child, .framer-TLi6N .framer-1pazbav > :first-child, .framer-TLi6N .framer-1v440hm > :first-child, .framer-TLi6N .framer-14dhp8k > :first-child, .framer-TLi6N .framer-1nfcpgu > :first-child, .framer-TLi6N .framer-1zjvzi > :first-child, .framer-TLi6N .framer-51xro > :first-child { margin-top: 0px; } .framer-TLi6N .framer-1t2u26a > :last-child, .framer-TLi6N .framer-1o7x5j8 > :last-child, .framer-TLi6N .framer-18zlp72 > :last-child, .framer-TLi6N .framer-1f65fpx > :last-child, .framer-TLi6N .framer-ebohui > :last-child, .framer-TLi6N .framer-1pazbav > :last-child, .framer-TLi6N .framer-1v440hm > :last-child, .framer-TLi6N .framer-14dhp8k > :last-child, .framer-TLi6N .framer-1nfcpgu > :last-child, .framer-TLi6N .framer-1zjvzi > :last-child, .framer-TLi6N .framer-51xro > :last-child { margin-bottom: 0px; } .framer-TLi6N .framer-1yn5ni9 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-TLi6N .framer-1yn5ni9 > :first-child, .framer-TLi6N .framer-1rafcl1 > :first-child { margin-left: 0px; } .framer-TLi6N .framer-1yn5ni9 > :last-child, .framer-TLi6N .framer-1rafcl1 > :last-child { margin-right: 0px; } .framer-TLi6N .framer-1o7x5j8 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-TLi6N .framer-18zlp72 > *, .framer-TLi6N .framer-1f65fpx > *, .framer-TLi6N .framer-ebohui > *, .framer-TLi6N .framer-1pazbav > *, .framer-TLi6N .framer-1v440hm > *, .framer-TLi6N .framer-14dhp8k > *, .framer-TLi6N .framer-1nfcpgu > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-TLi6N .framer-1rafcl1 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-TLi6N .framer-1zjvzi > *, .framer-TLi6N .framer-51xro > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6497\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"VCVRLOhtM\":{\"layout\":[\"fixed\",\"auto\"]},\"cQB6NOG2e\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"iPyi19n01\":{\"pattern\":\":iPyi19n01\",\"name\":\"hero\"}}\n * @framerResponsiveScreen\n */const FramerBZWuO4vyE=withCSS(Component,css,\"framer-TLi6N\");export default FramerBZWuO4vyE;FramerBZWuO4vyE.displayName=\"Careers 2\";FramerBZWuO4vyE.defaultProps={height:6497,width:1200};addFonts(FramerBZWuO4vyE,[{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\"}]},...CTAButtonsFonts,...VideoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBZWuO4vyE\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VCVRLOhtM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cQB6NOG2e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"6497\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"iPyi19n01\\\":{\\\"pattern\\\":\\\":iPyi19n01\\\",\\\"name\\\":\\\"hero\\\"}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "CTAButtonsFonts", "getFonts", "HE0I2g4d_default", "VideoFonts", "Video", "breakpoints", "serializationHash", "variantClassNames", "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", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "x", "RichText2", "ComponentViewportProvider", "Container", "HE0I2g4d_default", "getLoadingLazyAtYPosition", "Image2", "Video", "Link", "css", "FramerBZWuO4vyE", "withCSS", "BZWuO4vyE_default", "addFonts", "CTAButtonsFonts", "VideoFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
