{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/VTIRgCtWbPApsTjNtLlL/YouTube.js", "ssg:https://framerusercontent.com/modules/M8PcItf8t9VwRpmNG1Tv/X93cSrjoOHiowzFp2uQ7/hiqE5nRaP.js", "ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/W5VwzlqLBJeV9LGzYhwO/2mDT4TJsmHPgQ0dEsktN/Pkc2VDrnw.js", "ssg:https://framerusercontent.com/modules/xQCC4yqEAeY6uRi4fl7Q/DuNx5WQYGHCttfQK5SHu/pbQK7578T.js", "ssg:https://framerusercontent.com/modules/zypq3NubEHs0YV8rHVZm/8Lg1et6oyqs3YtAZ4rrM/W5ZzKivMI.js", "ssg:https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js", "ssg:https://framerusercontent.com/modules/XmrELuIGsrS6V7uuzex1/Ey6cTLrQEDEHLQpt0bsT/gutWgbBOp.js", "ssg:https://framerusercontent.com/modules/RxB3Br6N7YNjdFqcDjOe/r0hqSOKWSEyGmRV3Cyqp/RSbJKCXDn.js", "ssg:https://framerusercontent.com/modules/jKVksirMsFIexloef2UW/ipTj3km9HnCIxvK30abc/ZPWR8T5PP.js"],
  "sourcesContent": ["import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail)}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"560\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (9045c1a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/uL0Wao3qPeDTJBzrLpsy/5ZUoD2ywG27Ej1QrzQ1J/Auuos_b2C.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/KKgcCwAtmobxJXO6zqC8/89OM3uKSJ2duu4IUtzs0/NnS9kkBnN.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"XfQtUh6pa\",\"UNB_YA4Md\"];const serializationHash=\"framer-mFl72\";const variantClassNames={UNB_YA4Md:\"framer-v-1bb3hxb\",XfQtUh6pa:\"framer-v-9ehy66\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.1,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Closed:\"XfQtUh6pa\",Open:\"UNB_YA4Md\"};const getProps=({description,height,id,question,width,...props})=>{return{...props,AWSjGYVqE:question??props.AWSjGYVqE??\"Question Title\",variant:humanReadableVariantMap[props.variant]??props.variant??\"XfQtUh6pa\",ycUUKKf_G:description??props.ycUUKKf_G??\"This description is intended for editing on the page where you're currently working, individually for each of the FAQs, rather than here within the main component.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,AWSjGYVqE,ycUUKKf_G,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XfQtUh6pa\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapv7q5tz=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"UNB_YA4Md\");});const onTapi5k8t6=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"XfQtUh6pa\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({UNB_YA4Md:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-9ehy66\",className,classNames),\"data-framer-name\":\"Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"XfQtUh6pa\",onTap:onTapv7q5tz,ref:refBinding,style:{...style},...addPropertyOverrides({UNB_YA4Md:{\"data-framer-name\":\"Open\",onTap:onTapi5k8t6}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iuz0ih\",\"data-framer-name\":\" Content\",layoutDependency:layoutDependency,layoutId:\"tUcUjYWhn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-w34cuy\",\"data-styles-preset\":\"Auuos_b2C\",children:\"Question Title\"})}),className:\"framer-1j3gwlw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"t3NY_cXzm\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:AWSjGYVqE,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qriew4\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"Tdl4uO34d\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16qc4aw-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Gm8uA138i-container\",nodeId:\"Gm8uA138i\",rendersWithMotion:true,scopeId:\"hiqE5nRaP\",style:{opacity:.5,rotate:0},variants:{UNB_YA4Md:{rotate:45}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ea690d84-0c2d-4322-885a-8bb8fee7e329, rgba(4, 27, 37, 0.7))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Plus\",id:\"Gm8uA138i\",layoutId:\"Gm8uA138i\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.65em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ea690d84-0c2d-4322-885a-8bb8fee7e329, rgba(57, 54, 49, 0.8)))\"},children:\"This description is intended for editing on the page where you're currently working, individually for each of the FAQs, rather than here within the main component.\"})}),className:\"framer-1vuzaud\",fonts:[\"CUSTOM;Studio Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"XD3j4IUa3\",style:{\"--extracted-r6o4lv\":\"var(--token-ea690d84-0c2d-4322-885a-8bb8fee7e329, rgba(57, 54, 49, 0.8))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},text:ycUUKKf_G,variants:{UNB_YA4Md:{\"--extracted-r6o4lv\":\"var(--token-ea690d84-0c2d-4322-885a-8bb8fee7e329, rgba(6, 6, 6, 0.8))\",opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UNB_YA4Md:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xz5j35\",\"data-styles-preset\":\"NnS9kkBnN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ea690d84-0c2d-4322-885a-8bb8fee7e329, rgba(6, 6, 6, 0.8)))\"},children:\"This description is intended for editing on the page where you're currently working, individually for each of the FAQs, rather than here within the main component.\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mFl72.framer-1ex6afm, .framer-mFl72 .framer-1ex6afm { display: block; }\",\".framer-mFl72.framer-9ehy66 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 111px; justify-content: flex-start; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 600px; }\",\".framer-mFl72 .framer-1iuz0ih { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 16px 0px 0px; position: relative; width: 100%; }\",\".framer-mFl72 .framer-1j3gwlw { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-mFl72 .framer-1qriew4 { flex: none; height: 20px; overflow: visible; position: relative; width: 20px; }\",\".framer-mFl72 .framer-16qc4aw-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-mFl72 .framer-1vuzaud { flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mFl72.framer-9ehy66 { gap: 0px; } .framer-mFl72.framer-9ehy66 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-mFl72.framer-9ehy66 > :first-child { margin-top: 0px; } .framer-mFl72.framer-9ehy66 > :last-child { margin-bottom: 0px; } }\",\".framer-mFl72.framer-v-1bb3hxb.framer-9ehy66 { height: min-content; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 111\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"UNB_YA4Md\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"AWSjGYVqE\":\"question\",\"ycUUKKf_G\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerhiqE5nRaP=withCSS(Component,css,\"framer-mFl72\");export default FramerhiqE5nRaP;FramerhiqE5nRaP.displayName=\"FAQ Accordion\";FramerhiqE5nRaP.defaultProps={height:111,width:600};addPropertyControls(FramerhiqE5nRaP,{variant:{options:[\"XfQtUh6pa\",\"UNB_YA4Md\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},AWSjGYVqE:{defaultValue:\"Question Title\",displayTextArea:false,title:\"Question\",type:ControlType.String},ycUUKKf_G:{defaultValue:\"This description is intended for editing on the page where you're currently working, individually for each of the FAQs, rather than here within the main component.\",displayTextArea:true,placeholder:\"\",title:\"Description\",type:ControlType.String}});addFonts(FramerhiqE5nRaP,[{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\"},{family:\"Studio Pro Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/O8KsND7pYcY7CsQIXFc82FRTQ0.woff2\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhiqE5nRaP\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UNB_YA4Md\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"AWSjGYVqE\\\":\\\"question\\\",\\\"ycUUKKf_G\\\":\\\"description\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"111\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hiqE5nRaP.map", "function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{isFunction as t,isCubicBezier as i,noopReturn as e,defaults as s,isEasingGenerator as a,isEasingList as n,interpolate as r}from\"@motionone/utils\";import{cubicBezier as h,steps as o}from\"@motionone/easing\";const l={ease:h(.25,.1,.25,1),\"ease-in\":h(.42,0,1,1),\"ease-in-out\":h(.42,0,.58,1),\"ease-out\":h(0,0,.58,1)};const u=/\\((.*?)\\)/;function getEasingFunction(s){if(t(s))return s;if(i(s))return h(...s);if(l[s])return l[s];if(s.startsWith(\"steps\")){const t=u.exec(s);if(t){const i=t[1].split(\",\");return o(parseFloat(i[0]),i[1].trim())}}return e}class Animation{constructor(t,i=[0,1],{easing:h,duration:o=s.duration,delay:l=s.delay,endDelay:u=s.endDelay,repeat:m=s.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=e;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));h=h||s.easing;if(a(h)){const t=h.createAnimation(i);h=t.easing;i=t.keyframes||i;o=t.duration||o}this.repeat=m;this.easing=n(h)?e:getEasingFunction(h);this.updateDuration(o);const d=r(i,c,n(h)?h.map(getEasingFunction):e);this.tick=i=>{var e;l=l;let s=0;s=void 0!==this.pauseTime?this.pauseTime:(i-this.startTime)*this.rate;this.t=s;s/=1e3;s=Math.max(s-l,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(s=this.totalDuration);const a=s/this.duration;let n=Math.floor(a);let r=a%1;!r&&a>=1&&(r=1);1===r&&n--;const h=n%2;(\"reverse\"===p||\"alternate\"===p&&h||\"alternate-reverse\"===p&&!h)&&(r=1-r);const o=s>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(o));t(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||s>=this.totalDuration+u);if(c){this.playState=\"finished\";null===(e=this.resolve)||void 0===e?void 0:e.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t,noopReturn as s}from\"@motionone/utils\";const n=5;function calcGeneratorVelocity(t,s,r){const a=Math.max(s-n,0);return e(r-t(a),s-a)}const r={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=r.stiffness,t=r.damping,s=r.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=r.stiffness,damping:s=r.damping,mass:n=r.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/n)/1e3;const l=calcDampingRatio(e,s,n);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const a=10;const o=1e4;function pregenerateKeyframes(e,t=s){let n;let r=a;let c=e(0);const i=[t(c.current)];while(!c.done&&r<o){c=e(r);i.push(t(c.done?c.target:c.current));void 0===n&&c.hasReachedTarget&&(n=r);r+=a}const h=r-a;1===i.length&&i.push(c.current);return{keyframes:i,duration:h/1e3,overshootDuration:(null!==n&&void 0!==n?n:h)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;startTransition(()=>setSize({parent:parentLength,children:childrenLength}));}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"ooqmBKJpQ\",\"WTLM1wAcJ\",\"u_rATiP7Z\",\"BtelgyzDO\"];const serializationHash=\"framer-gwt9D\";const variantClassNames={BtelgyzDO:\"framer-v-1gekqsy\",ooqmBKJpQ:\"framer-v-15vxvzp\",u_rATiP7Z:\"framer-v-8nt5ra\",WTLM1wAcJ:\"framer-v-1hwxlkx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop - Off white\":\"u_rATiP7Z\",\"Mobile - Off white\":\"BtelgyzDO\",Desktop:\"ooqmBKJpQ\",Phone:\"WTLM1wAcJ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ooqmBKJpQ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ooqmBKJpQ\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-15vxvzp\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"ooqmBKJpQ\",ref:refBinding,style:{...style},...addPropertyOverrides({BtelgyzDO:{\"data-framer-name\":\"Mobile - Off white\"},u_rATiP7Z:{\"data-framer-name\":\"Desktop - Off white\"},WTLM1wAcJ:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ga2wn-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"rVtflhNuv-container\",nodeId:\"rVtflhNuv\",rendersWithMotion:true,scopeId:\"Pkc2VDrnw\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:16,height:\"100%\",hoverFactor:1,id:\"rVtflhNuv\",layoutId:\"rVtflhNuv\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10heu5w\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"BcfUfDwnA\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:43.1818172458775,intrinsicWidth:168.63635998126898,pixelHeight:95,pixelWidth:371,src:\"https://framerusercontent.com/images/Bf23iHMoYcpWMklObcY8fHvU5c.svg\"},className:\"framer-e35svr\",\"data-framer-name\":\"HippocraticAI\",layoutDependency:layoutDependency,layoutId:\"dl5jqxRLt\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-me3ypk\",\"data-framer-name\":\"Mutiny 1\",fill:\"black\",intrinsicHeight:91,intrinsicWidth:187,layoutDependency:layoutDependency,layoutId:\"LnFmDmFIm\",svg:'<svg width=\"187\" height=\"91\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><mask id=\"b\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"188\" height=\"91\"><path d=\"M.545.5h186.49v89.71H.545V.5Z\" fill=\"#fff\"/></mask><g mask=\"url(#b)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m114.469 28.405-8.47 37.928h8.589l8.47-37.928h-8.589Zm63.977 0-2.599 11.637c-.887 3.974-1.58 8.083-3.133 11.867-.768 1.871-1.886 3.853-3.712 4.874-1.349.755-3.02.413-3.486-1.179-.567-1.938.223-4.13.65-6.025.921-4.131 1.945-8.294 2.732-12.47.096-.508.185-1.017.268-1.526.171-1.062.317-2.133.299-3.21-.008-.518-.054-.999-.232-1.487-.17-.463-.403-.9-.692-1.3-.957-1.335-2.482-2.166-4.098-2.385-1.461-.198-2.949.093-4.293.675 0 0 1.416 3.697.203 9.16l-2.029 9.083.009.006-1.436 6.435c-2.211 9.375 1.538 13.773 6.404 13.773 2.056 0 3.914-.56 5.522-1.816.7-.55 1.356-1.155 1.963-1.807-.284 1.271-.851 3.949-1.175 5.21-.859 3.342-2.604 6.47-4.998 8.922-5.204 5.331-13.315 6.15-20.088 3.638-4.155-1.54-7.348-5.02-9.204-8.227-1.405 10.26 6.799 15.712 12.412 17.127 7.05 1.778 14.206.781 20.054-3.742 5.166-3.997 8.505-9.132 10.148-16.487l1.742-7.799 7.358-32.947h-8.589Zm-38.573 9.55c1.257-.703 2.834-.541 3.407.899.414 1.04.328 2.304.053 3.369l-2.742 12.488c-2.936 13.56 2.593 19.492 9.406 20.284 6.674.776 8.533-3.76 8.533-3.76-10.525-1.55-10.478-11.473-8.354-20.973l1.802-8.083c2.211-9.375-1.539-13.774-6.404-13.774-2.055 0-3.914.561-5.522 1.817a17.914 17.914 0 0 0-1.963 1.806l-.547.595-.002-.128c-.045-3.715-4.166-6.813-9.36-4.619 0 0 1.417 3.697.203 9.16l-6.543 29.297h8.588L133.6 52.13c.585-2.617 1.141-5.23 1.996-7.775.803-2.391 1.966-5.108 4.277-6.4ZM54.279 65.1c-1.778-4.437-.802-10.655.52-16.565l.334-1.522 9.384-40.14-.027.02.032-.063H54.236L33.552 46.26 32.474 6.788c-2.832 1.556-6.883 1.474-10.097.831-3.213-.643-6.304-1.794-9.556-2.24C9.57 4.93 5.966 5.3 3.509 7.339L.545 18.265c2.442-2.038 6.022-2.408 9.252-1.96 3.231.447 6.303 1.598 9.496 2.24.186.038.373.073.56.106l-6.188 26.466c-3.791 15.226-7.35 21.215-7.35 21.215h10.49s2.348-5.68 5.746-19.346l.03-.017 2.465-10 1.197 29.363h7.272l14.06-26.983-3.098 13.252-.174.807c-3.217 14.848 2.838 21.343 10.299 22.21 7.308.85 9.343-4.116 9.343-4.116-5.203-.374-8.314-3.032-9.666-6.403Zm28.544-36.696L78.79 46.466a34.157 34.157 0 0 1-1.7 5.443c-.77 1.878-1.883 3.852-3.712 4.874-1.257.704-2.833.542-3.407-.9-.414-1.039-.302-2.297-.052-3.367l5.337-24.111h-8.588L61.274 52.56c-2.211 9.375 1.538 13.773 6.403 13.773 2.056 0 3.915-.56 5.523-1.816.323-.253.635-.518.938-.795l-.558 2.611h9.362l8.47-37.928h-8.589Zm27.02-9.134 1.615-.55c1.102-.371 3.567-.794 4.749-.78.483.006.975.138 1.353.438 1.554 1.228-1.289 3.058.323 4.847 1.839 2.042 5.729-.094 7.913-.944 2.886-1.126 7.842-3.38 10.742-4.466 7.847-2.94 12.584-3.695 19.691-3.141-3.004-3.65-8.299-5.022-14.82-4.723-2.083.095-4.941.616-6.987.999a73.452 73.452 0 0 1-3.347.562c-1.144.161-2.471.464-3.62.213-.34-.074-.674-.231-.896-.5-1.492-1.798 2.665-3.675.25-5.536-.575-.441-1.322-.6-2.046-.62-3.776-.099-7.629 1.079-11.248 2.01l-.957.248-.654.169 1.257-5.631h-8.587l-1.782 7.98-.771.198c-.394.102-.954.298-1.548.453-1.272.332-2.705.476-3.035-.899-.084-.35-.005-.721.12-1.061.575-1.574 1.842-2.775 1.681-4.577C98.973.974 95.91.384 93.42.518c-3.685.2-7.316 1.25-10.845 2.267-3.716 1.071-7.376 2.33-10.998 3.687l-4.133 18.463s7.436-3.724 12.266-5.453c1.607-.575 5.832-2.151 6.949-.863 1.49 1.72-1.753 2.817-.95 4.989.664 1.798 3.11 1.534 4.709 1.225 1.807-.349 3.602-.867 5.387-1.354 4.571-1.273 9.492-2.846 9.492-2.846L98.98 26.91l-8.803 39.424h8.588l10.464-46.857.614-.207Z\" fill=\"#909495\"/></g></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.545 .5)\" d=\"M0 0h186.207v90H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-x9kovy\",\"data-framer-name\":\"Fiddler 1\",fill:\"black\",intrinsicHeight:81,intrinsicWidth:363,layoutDependency:layoutDependency,layoutId:\"N2GT2oSMo\",svg:'<svg width=\"363\" height=\"81\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M40.949 80.693c22.2 0 40.196-17.996 40.196-40.197C81.145 18.296 63.149.3 40.949.3S.752 18.297.752 40.497c0 22.2 17.997 40.196 40.197 40.196ZM23.99 43.846l16.958 30.148 30.147-53.596H10.8l9.421 16.749H33.27a8.376 8.376 0 0 1 16.052 3.35 8.374 8.374 0 0 1-16.052 3.35h-9.28Zm73.903-3.339h8.616v32.477h10.445V40.507h9.661v-8.763h-9.661v-7.475c0-1.146.072-2.234.217-3.265.146-1.031.465-1.933.958-2.707.493-.773 1.175-1.389 2.045-1.847.871-.458 2.031-.687 3.482-.687.755 0 1.48.057 2.176.172a35.91 35.91 0 0 1 2.176.43l.696-8.764c-2.031-.401-4.235-.602-6.615-.602-3.249 0-5.889.444-7.92 1.332-2.031.888-3.612 2.162-4.744 3.824-1.131 1.66-1.9 3.651-2.306 5.97-.407 2.32-.61 4.912-.61 7.776v5.843h-8.616v8.763Zm45.709-8.932h-10.496v41.409h10.496V31.575Zm-9.668-18.34c-1.23 1.24-1.844 2.697-1.844 4.37 0 1.671.614 3.128 1.844 4.367 1.229 1.24 2.787 1.86 4.673 1.86 1.886 0 3.473-.59 4.759-1.773 1.286-1.182 1.929-2.667 1.929-4.455 0-1.788-.643-3.272-1.929-4.455-1.286-1.182-2.873-1.773-4.759-1.773-1.886 0-3.444.62-4.673 1.86Zm53.081 53.542h.174v6.186h9.91V8.009h-10.432v28.955h-.261c-.522-.688-1.188-1.39-1.999-2.105-.812-.717-1.797-1.39-2.956-2.02-1.159-.63-2.492-1.145-3.999-1.546-1.507-.401-3.246-.601-5.216-.601-2.956 0-5.68.558-8.172 1.675-2.492 1.117-4.622 2.649-6.39 4.597-1.767 1.947-3.144 4.238-4.129 6.873-.986 2.635-1.478 5.47-1.478 8.506 0 3.035.463 5.87 1.391 8.505.927 2.635 2.289 4.926 4.086 6.874 1.797 1.947 3.956 3.48 6.477 4.596 2.52 1.117 5.404 1.675 8.649 1.675 2.956 0 5.709-.572 8.26-1.718 2.55-1.145 4.578-2.978 6.085-5.498Zm-23.631-9.658a13.522 13.522 0 0 1-.821-4.671c0-1.615.274-3.172.821-4.672a11.738 11.738 0 0 1 2.421-3.978c1.066-1.154 2.348-2.076 3.847-2.768 1.498-.692 3.198-1.038 5.1-1.038 1.902 0 3.603.346 5.101 1.038 1.498.692 2.781 1.614 3.847 2.768a11.72 11.72 0 0 1 2.42 3.978c.548 1.5.822 3.057.822 4.672a13.5 13.5 0 0 1-.822 4.67 11.716 11.716 0 0 1-2.42 3.98c-1.066 1.153-2.349 2.076-3.847 2.768-1.498.692-3.199 1.038-5.101 1.038-1.902 0-3.602-.346-5.1-1.038-1.499-.692-2.781-1.615-3.847-2.768a11.734 11.734 0 0 1-2.421-3.98Zm78.144 9.658h.174v6.186h9.91V8.009H241.18v28.955h-.261c-.522-.688-1.188-1.39-1.999-2.105-.812-.717-1.797-1.39-2.956-2.02-1.159-.63-2.492-1.145-3.999-1.546-1.507-.401-3.246-.601-5.216-.601-2.956 0-5.68.558-8.172 1.675-2.492 1.117-4.622 2.649-6.39 4.597-1.767 1.947-3.144 4.238-4.129 6.873-.986 2.635-1.478 5.47-1.478 8.506 0 3.035.463 5.87 1.391 8.505.927 2.635 2.289 4.926 4.086 6.874 1.797 1.947 3.955 3.48 6.476 4.596 2.521 1.117 5.405 1.675 8.65 1.675 2.956 0 5.709-.572 8.259-1.718 2.55-1.145 4.579-2.978 6.086-5.498Zm-23.631-9.658a13.522 13.522 0 0 1-.821-4.671c0-1.615.274-3.172.821-4.672a11.738 11.738 0 0 1 2.421-3.978c1.066-1.154 2.348-2.076 3.847-2.768 1.498-.692 3.198-1.038 5.1-1.038 1.902 0 3.603.346 5.101 1.038 1.498.692 2.781 1.614 3.847 2.768a11.72 11.72 0 0 1 2.42 3.978c.548 1.5.821 3.057.821 4.672 0 1.615-.273 3.172-.821 4.67a11.716 11.716 0 0 1-2.42 3.98c-1.066 1.153-2.349 2.076-3.847 2.768-1.498.692-3.199 1.038-5.101 1.038-1.902 0-3.602-.346-5.1-1.038-1.499-.692-2.781-1.615-3.847-2.768a11.734 11.734 0 0 1-2.421-3.98Zm56.401-49.11h-10.496v64.975h10.496V8.009Zm23.814 55.127c-2.073-1.723-3.283-4.136-3.629-7.237h31.619v-2.844c0-3.62-.475-6.822-1.426-9.608-.95-2.786-2.275-5.127-3.973-7.022-1.699-1.896-3.744-3.346-6.134-4.352-2.39-1.005-5.025-1.508-7.905-1.508-3.11 0-6.047.517-8.811 1.551-2.765 1.034-5.155 2.5-7.17 4.395-2.017 1.895-3.614 4.179-4.795 6.85-1.181 2.671-1.771 5.644-1.771 8.918 0 3.275.59 6.248 1.771 8.919 1.181 2.671 2.778 4.955 4.795 6.85 2.015 1.896 4.405 3.36 7.17 4.395 2.764 1.034 5.701 1.55 8.811 1.55 3.283 0 6.422-.631 9.417-1.895s5.701-3.39 8.12-6.376l-7.429-5.601a18.066 18.066 0 0 1-4.622 4.006c-1.757 1.063-3.931 1.595-6.522 1.595-2.938 0-5.443-.862-7.516-2.586Zm14.632-21.879c1.85 1.741 2.804 4.125 2.862 7.15h-21.331c.404-2.968 1.517-5.337 3.338-7.107 1.821-1.77 4.292-2.655 7.414-2.655 3.295 0 5.868.87 7.717 2.612Zm33.294-9.657h-10.455v41.384h10.455V50.826c0-.575.131-1.437.392-2.587.262-1.149.784-2.299 1.569-3.448.784-1.15 1.916-2.17 3.397-3.06 1.482-.892 3.442-1.337 5.882-1.337.813 0 1.641.072 2.483.215.842.144 1.699.331 2.57.56v-10a24.912 24.912 0 0 0-1.873-.431 10.094 10.094 0 0 0-1.873-.173c-2.789 0-5.257.661-7.406 1.983s-3.805 3.19-4.966 5.604h-.175V31.6Z\" fill=\"#909495\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.752 .3)\" d=\"M0 0h361.58v80.4H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1uq0tyt\",\"data-framer-name\":\"Orby\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"MZvsOXc8r\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 105 30\"><g transform=\"translate(0 0)\" id=\"ss9575964593_1\"><path d=\"M 0 0 L 104.98 0 L 104.98 30 L 0 30 Z\" fill=\"transparent\"></path><path d=\"M 15.712 7.797 C 14.745 7.923 13.768 7.666 12.987 7.083 L 12.987 7.085 C 12.818 6.956 12.72 6.756 12.721 6.543 L 12.721 1.573 C 12.721 1.36 12.818 1.157 12.989 1.029 C 13.637 0.545 14.424 0.284 15.232 0.286 C 17.453 0.286 19.224 2.211 18.974 4.485 C 18.786 6.198 17.42 7.586 15.712 7.797 Z M 9.219 10.409 C 9.514 10.132 9.763 9.811 9.956 9.456 C 10.788 7.94 10.462 6.013 9.178 4.856 C 7.488 3.334 4.905 3.64 3.603 5.434 C 3.467 5.621 3.349 5.821 3.249 6.03 C 3.105 6.329 3.194 6.689 3.462 6.885 L 8.364 10.451 C 8.623 10.639 8.986 10.628 9.219 10.407 L 9.219 10.409 Z M 24.018 12.718 C 26.097 12.718 27.783 11.03 27.783 8.948 C 27.783 6.865 26.098 5.177 24.018 5.177 C 21.939 5.177 20.253 6.865 20.253 8.948 C 20.253 11.03 21.939 12.718 24.018 12.718 Z M 22.308 15.982 C 22.262 15.779 22.31 15.566 22.44 15.403 C 22.57 15.24 22.767 15.145 22.975 15.145 L 28.985 15.145 C 29.193 15.145 29.389 15.24 29.519 15.403 C 29.649 15.566 29.697 15.779 29.651 15.982 C 29.271 17.661 27.772 18.916 25.98 18.916 C 24.187 18.916 22.688 17.661 22.308 15.982 Z M 9.418 21.338 C 9.418 23.421 7.733 25.109 5.653 25.109 C 3.574 25.109 1.888 23.42 1.888 21.338 C 1.888 19.256 3.574 17.568 5.653 17.568 C 7.733 17.568 9.418 19.256 9.418 21.338 Z M 20.451 19.879 C 20.156 20.155 19.907 20.477 19.714 20.832 C 18.882 22.348 19.208 24.275 20.491 25.431 C 22.182 26.954 24.765 26.647 26.067 24.854 C 26.203 24.666 26.321 24.466 26.421 24.257 C 26.565 23.958 26.476 23.599 26.208 23.403 L 21.306 19.837 C 21.047 19.648 20.684 19.66 20.451 19.88 Z M 13.958 22.488 C 14.984 22.361 15.939 22.648 16.683 23.202 L 16.683 23.201 C 16.854 23.328 16.949 23.531 16.949 23.743 L 16.949 28.713 C 16.949 28.926 16.852 29.129 16.681 29.257 C 16.033 29.741 15.246 30.002 14.438 30 C 12.217 30 10.446 28.075 10.695 25.801 C 10.884 24.088 12.249 22.699 13.958 22.488 Z M 7.362 14.304 C 7.407 14.507 7.359 14.72 7.229 14.883 C 7.099 15.045 6.903 15.14 6.695 15.14 L 0.684 15.14 C 0.476 15.141 0.279 15.046 0.149 14.883 C 0.02 14.72 -0.029 14.507 0.017 14.303 C 0.398 12.625 1.898 11.37 3.69 11.37 C 5.483 11.37 6.982 12.625 7.362 14.303 Z M 36.515 14.963 C 36.515 8.808 40.851 4.601 46.171 4.601 C 51.491 4.601 55.827 8.808 55.827 14.963 C 55.827 21.117 51.491 25.324 46.171 25.324 C 40.851 25.324 36.515 21.117 36.515 14.963 Z M 39.545 14.963 C 39.545 19.491 42.563 22.429 46.171 22.429 C 49.779 22.429 52.797 19.491 52.797 14.963 C 52.797 10.434 49.779 7.496 46.171 7.496 C 42.563 7.496 39.545 10.434 39.545 14.963 Z M 70.659 11.819 C 71.728 10.74 73.043 10.13 74.801 10.13 L 74.803 10.127 C 78.686 10.127 81.562 13.255 81.562 17.726 C 81.562 22.196 78.684 25.324 74.803 25.324 C 72.981 25.324 71.636 24.67 70.548 23.519 L 70.548 24.719 C 70.548 24.901 70.401 25.049 70.219 25.049 L 68.097 25.049 C 68.01 25.049 67.926 25.014 67.864 24.952 C 67.803 24.89 67.768 24.806 67.768 24.719 L 67.768 5.208 C 67.769 5.026 67.916 4.878 68.097 4.878 L 70.33 4.878 C 70.511 4.878 70.659 5.026 70.659 5.208 Z M 70.66 17.727 C 70.66 20.727 72.59 22.568 74.664 22.568 C 76.738 22.568 78.669 20.727 78.669 17.727 C 78.669 14.728 76.737 12.887 74.664 12.887 C 72.591 12.887 70.66 14.727 70.66 17.727 Z M 65.471 10.406 L 60.17 10.406 C 59.54 10.406 58.935 10.657 58.489 11.103 C 58.043 11.55 57.793 12.155 57.792 12.787 L 57.792 24.722 C 57.792 24.905 57.939 25.052 58.122 25.052 L 60.372 25.052 C 60.459 25.052 60.543 25.018 60.605 24.956 C 60.667 24.894 60.701 24.81 60.701 24.722 L 60.701 13.319 L 65.471 13.319 C 65.652 13.319 65.8 13.171 65.8 12.989 L 65.8 10.736 C 65.8 10.648 65.765 10.564 65.704 10.502 C 65.642 10.44 65.558 10.406 65.471 10.406 Z M 93.141 10.406 L 95.523 10.406 L 95.522 10.404 C 95.629 10.405 95.729 10.457 95.791 10.545 C 95.852 10.633 95.867 10.746 95.831 10.847 L 89.744 27.79 C 89.514 28.469 89.211 29.039 88.714 29.432 C 88.209 29.83 87.561 30 86.733 30 L 83.892 30 C 83.711 30 83.563 29.853 83.563 29.67 L 83.563 27.572 C 83.563 27.39 83.71 27.242 83.892 27.242 L 86.595 27.242 C 86.745 27.242 86.856 27.191 86.944 27.103 C 87.037 27.012 87.113 26.873 87.174 26.695 L 87.174 26.69 L 87.518 25.747 L 81.873 10.853 C 81.835 10.752 81.848 10.638 81.91 10.549 C 81.971 10.46 82.072 10.406 82.181 10.406 L 84.563 10.406 C 84.7 10.406 84.823 10.491 84.871 10.62 L 89.055 21.837 L 92.828 10.631 C 92.873 10.496 92.999 10.406 93.141 10.406 Z\" fill=\"rgb(144,148,149)\"></path></g></svg>',svgContentId:9575964593,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-w8blzv\",\"data-framer-name\":\"Forage\",fill:\"black\",intrinsicHeight:91,intrinsicWidth:365,layoutDependency:layoutDependency,layoutId:\"TGWG9FT45\",svg:'<svg width=\"365\" height=\"91\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#909495\"><path d=\"M51.823 45.467c-1.992 10.275-11.034 18.032-21.89 18.032-10.858 0-19.9-7.76-21.891-18.032H.332v17.54a7.784 7.784 0 0 0 7.784 7.785h43.628a7.784 7.784 0 0 0 7.784-7.784V45.467h-7.705ZM8.038 36.923C10.03 26.647 19.07 18.89 29.928 18.89c10.857 0 19.899 7.76 21.89 18.032h7.706v-17.54a7.784 7.784 0 0 0-7.784-7.784H8.116a7.779 7.779 0 0 0-7.784 7.78v17.54h7.706v.005ZM115.108.5c1.66 0 3.713.197 5.18.587v8.306c-.977-.294-2.246-.39-3.323-.39-5.666 0-9.576 2.443-9.576 9.09v4.689h12.899v8.6h-12.899v39.09h-8.99v-39.09h-9.282v-8.6H98.4v-4.79C98.4 6.362 105.046.5 115.112.5h-.004Zm54.047 46.223c0 13.976-10.846 24.725-24.625 24.725s-24.725-10.75-24.725-24.725c0-13.976 10.749-24.919 24.725-24.919s24.625 10.75 24.625 24.919ZM144.53 62.848c8.796 0 15.929-7.036 15.929-16.125 0-9.09-7.133-16.32-15.929-16.32s-16.025 7.133-16.025 16.32c0 9.186 7.036 16.125 16.025 16.125Zm31.458-40.063h9.089v7.233c2.54-4.79 7.33-8.11 12.996-8.11 1.563 0 3.126.198 4.496.587v8.306c-1.466-.49-3.126-.783-4.689-.783-7.133 0-12.803 5.276-12.803 13.582v26.875h-9.089v-47.69Zm76.619 47.682h-8.989v-9.773c-3.517 6.84-9.773 10.75-18.175 10.75-12.9 0-23.162-11.043-23.162-24.822S212.54 21.8 225.443 21.8c8.402 0 14.658 3.91 18.175 10.75v-9.773h8.989v47.69Zm-25.312-7.623c9.383 0 16.319-6.84 16.319-16.222 0-9.383-6.94-16.222-16.319-16.222-9.379 0-16.222 7.133-16.222 16.222 0 9.09 7.133 16.222 16.222 16.222Zm35.181 10.653h8.989c.197 5.863 6.546 9.48 14.169 9.48 8.599 0 15.245-5.474 15.245-13.78v-9.383c-3.516 6.647-9.772 10.553-18.175 10.553-12.899 0-23.162-10.846-23.162-24.332 0-13.485 10.259-24.234 23.162-24.234 8.403 0 14.659 3.91 18.175 10.455v-9.479h8.99v46.026c0 13.39-10.163 21.696-23.942 21.696-10.066 0-22.865-4.593-23.451-17.002Zm22.085-11.336c9.382 0 16.318-6.84 16.318-16.126 0-9.286-6.939-16.025-16.318-16.025-9.379 0-16.223 7.133-16.223 16.025 0 8.893 7.133 16.126 16.223 16.126Zm32.043-15.733c0-13.78 10.75-24.528 24.432-24.528 12.803 0 22.965 9.869 22.965 23.161l-.096 3.52h-38.601c.784 8.99 6.94 15.05 15.929 15.05 6.743 0 12.216-3.42 13.389-8.504h8.893c-1.76 9.97-10.946 16.32-22.378 16.32-13.779 0-24.533-10.846-24.533-25.02Zm37.818-4.79c-.587-6.94-6.253-12.019-13.779-12.019-7.527 0-13.193 4.496-14.953 12.019h28.732Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.333 .5)\" d=\"M0 0h363.75v90H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1nw6pq\",\"data-framer-name\":\"Orum\",fill:\"black\",intrinsicHeight:85,intrinsicWidth:373,layoutDependency:layoutDependency,layoutId:\"f4QDAAlxK\",svg:'<svg width=\"373\" height=\"85\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m42.918 17.063-7.34-14.407a40.857 40.857 0 0 0-23.929 12.19l14.83 29.107a67.47 67.47 0 0 1 16.439-26.887v-.003Zm23.368 19.68 11.436-11.435a40.858 40.858 0 0 0-18.99-18.993l-23.099 23.1a67.508 67.508 0 0 1 30.653 7.328ZM1.01 35.737l15.971-2.531v.003a67.539 67.539 0 0 0 20.493 23.944L5.209 62.262a40.852 40.852 0 0 1-4.2-26.525Zm23.313 27.126L21.79 78.834a40.85 40.85 0 0 0 26.525 4.203l5.11-32.264a67.53 67.53 0 0 1-29.107 12.09h.003Zm44.874 9.526L54.79 65.046h-.004c1.6-10.2.906-20.922-2.502-31.415L81.39 48.459a40.842 40.842 0 0 1-12.194 23.93Zm25.55-29.686c0-19.078 13.716-32.59 32.798-32.59s33.002 13.512 33.002 32.59c-.104 19.494-13.923 33.417-33.002 33.417-19.078 0-32.797-13.923-32.797-33.417Zm33.002 18.255c6.291 0 10.726-7.013 10.726-18.255 0-11.241-4.435-17.432-10.726-17.432-6.29 0-11.037 6.706-11.037 17.432 0 10.726 4.539 18.255 11.037 18.255Zm63.104-43.093c3.963-4.428 9.716-7.22 16.128-7.22h.007V28.69a47.437 47.437 0 0 0-6.086-.411c-6.294 0-9.903 2.27-9.903 5.982v40.53h-21.556V11.554h20.214v6.312h1.196Zm58.548-6.313v44.977c-.723 2.27-3.505 4.024-6.91 4.024-3.404 0-4.951-.827-4.951-3.712v-45.29h-21.656v48.07c0 11.249 5.27 16.412 17.12 16.501h.307l.018-.01c6.279-.094 11.907-2.861 15.802-7.211h1.196v5.878h20.729V11.552H249.4Zm103.68-1.338h.039c11.851.09 17.121 5.252 17.121 16.5v48.078h-21.658V29.504c0-2.886-1.547-3.713-4.95-3.713-3.407 0-6.185 1.754-6.911 4.024v44.977h-21.759V29.504c0-2.886-1.547-3.713-4.951-3.713-3.405 0-6.187 1.754-6.91 4.024v44.977h-21.66V11.56h20.729v5.879h1.196c3.895-4.35 9.523-7.117 15.803-7.21l.018-.011h.307c7.951.06 12.937 2.409 15.359 7.346 4.123-4.038 11.985-7.25 17.932-7.34l.019-.01h.275Z\" fill=\"#909495\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-156clji\",\"data-framer-name\":\"OfferFit\",fill:\"black\",intrinsicHeight:76,intrinsicWidth:310,layoutDependency:layoutDependency,layoutId:\"hp8aDLik0\",svg:'<svg width=\"310\" height=\"76\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M118.877 63.605c13.308 0 23.787-10.33 23.787-23.436 0-13.107-10.479-23.437-23.787-23.437-13.307 0-23.786 10.33-23.786 23.437 0 13.106 10.479 23.437 23.786 23.437Zm0-6.585c-9.321 0-16.65-7.425-16.65-16.851 0-9.427 7.329-16.851 16.65-16.851 9.322 0 16.651 7.424 16.651 16.85 0 9.427-7.329 16.852-16.651 16.852Zm44.887-35.188h.771v-5.875h-.836c-7.714 0-12.215 4.261-12.215 11.88v6.069h-4.242v5.552h4.242v23.308h6.558V39.458h6.236v-5.552h-6.236V28.16c0-4.197 2.057-6.328 5.722-6.328Zm22.103 0h.771v-5.875h-.835c-7.715 0-12.215 4.261-12.215 11.88v6.069h-4.243v5.552h4.243v23.308h6.557V39.458h6.236v-5.552h-6.236V28.16c0-4.197 2.057-6.328 5.722-6.328Zm19.566 36.35c-4.051 0-7.072-2.002-8.615-4.971l22.244-7.232c-.9-8.006-6.686-12.783-13.951-12.783-8.679 0-15.3 6.65-15.3 15.172 0 8.523 6.557 15.108 15.557 15.108 4.822 0 9.322-1.872 12.858-5.1l-2.121-5.23c-3.344 3.487-6.944 5.036-10.672 5.036Zm-.322-19.756c3.215 0 5.915 1.613 7.136 4.26l-16.522 5.424c.193-5.488 4.179-9.684 9.386-9.684Zm25.658-.195v-4.777h-6.107v29.312h6.493V48.562c0-6.134 3.215-9.039 9.258-9.039v-6.134c-4.629 0-7.779 1.679-9.644 4.842Zm21.405-14.268h17.615v-6.392h-24.494v45.195h6.879V44.172h14.272V37.78h-14.272V23.963Zm26.673 3.422c2.379 0 4.243-1.808 4.243-4.132 0-2.325-1.864-4.132-4.243-4.132-2.378 0-4.243 1.807-4.243 4.132 0 2.324 1.865 4.132 4.243 4.132Zm-3.214 35.381h6.493V31.53l-6.493 2.893v28.344Zm30.32-23.307v-5.553h-7.907V24.48l-6.494 3.55v5.876h-4.371v5.553h4.371v14.397c0 5.876 3.408 9.427 9.258 9.427 2.057 0 3.985-.452 5.143-.968v-5.682c-.965.387-2.572.839-3.922.839-2.507 0-3.985-1.55-3.985-4.261V39.459h7.907Z\" fill=\"#909495\"/><path d=\"M41.69 73.38c0 1.447 1.166 2.63 2.598 2.52a33.576 33.576 0 0 0 10.308-2.48 33.715 33.715 0 0 0 10.941-7.35 33.918 33.918 0 0 0 7.311-11 34.052 34.052 0 0 0 2.467-10.357c.111-1.443-1.064-2.618-2.5-2.618H44.29a2.61 2.61 0 0 0-2.6 2.62V73.38Z\" fill=\"#A2A1A0\"/><path d=\"M2.113 39.802c-1.167 0-2.12.954-2.05 2.128a36.434 36.434 0 0 0 2.671 11.724 36.218 36.218 0 0 0 7.787 11.744 35.902 35.902 0 0 0 11.653 7.847 35.695 35.695 0 0 0 11.634 2.692c1.165.07 2.112-.89 2.112-2.066V63.65c0-1.176-.948-2.118-2.11-2.234a21.412 21.412 0 0 1-6.138-1.548 21.545 21.545 0 0 1-6.992-4.709 21.73 21.73 0 0 1-4.672-7.046 21.859 21.859 0 0 1-1.537-6.185c-.114-1.17-1.05-2.126-2.216-2.126H2.113Z\" fill=\"#C1C2BF\"/><path d=\"M39.008 18.345c0 10.137 8.153 18.345 18.203 18.345 10.05 0 18.204-8.217 18.204-18.345C75.415 8.217 67.262 0 57.211 0c-10.05 0-18.203 8.217-18.203 18.345Z\" fill=\"#909495\"/><path d=\"M2.6 34.07A2.61 2.61 0 0 1 0 31.447V2.621A2.61 2.61 0 0 1 2.6 0h28.606a2.61 2.61 0 0 1 2.601 2.62v28.828a2.61 2.61 0 0 1-2.6 2.621H2.6Z\" fill=\"#D3D3CF\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1do0acj\",\"data-framer-name\":\"Pocus 1\",fill:\"black\",intrinsicHeight:81,intrinsicWidth:326,layoutDependency:layoutDependency,layoutId:\"YzxCc5tNT\",svg:'<svg width=\"326\" height=\"81\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#909495\"><path d=\"M45.247 10.064c.136-.679 1.09-.679 1.227 0l2.386 11.861a.63.63 0 0 0 .488.496l11.671 2.425c.668.139.668 1.108 0 1.247l-11.671 2.424a.632.632 0 0 0-.489.496l-2.385 11.862c-.137.679-1.09.679-1.227 0l-2.386-11.862a.631.631 0 0 0-.488-.496l-11.671-2.424c-.668-.139-.668-1.108 0-1.247l11.671-2.425a.631.631 0 0 0 .488-.496l2.386-11.861Z\"/><path d=\"M59.946 29.796a31.831 31.831 0 0 1 1.929 10.952c0 9.927-4.527 18.78-11.597 24.542a1.07 1.07 0 0 0-.28 1.312l4.658 9.06c.707 1.375-.275 3.023-1.803 3.023H9.021c-1.527 0-2.51-1.648-1.802-3.024l4.658-9.06c.23-.446.107-.995-.28-1.311C4.527 59.528 0 50.675 0 40.748 0 23.384 13.85 9.307 30.937 9.307c3.743 0 7.331.675 10.652 1.913l-1.18 5.868a24.705 24.705 0 0 0-9.472-1.877C17.06 15.211 5.81 26.645 5.81 40.748c0 8.315 3.903 15.7 9.973 20.373l2.546 1.96a2.088 2.088 0 0 1 .574 2.604l-2.87 5.584c-.354.688.137 1.511.9 1.511h28.008c.764 0 1.255-.823.9-1.511l-2.87-5.584a2.088 2.088 0 0 1 .575-2.604l2.546-1.96c6.07-4.673 9.973-12.059 9.973-20.373a25.82 25.82 0 0 0-1.897-9.752l5.778-1.2Zm1.265-27.945c.068-.339.545-.339.613 0l1.193 5.931a.316.316 0 0 0 .244.248l5.836 1.213c.334.069.334.554 0 .623l-5.836 1.212a.316.316 0 0 0-.244.248l-1.193 5.931c-.068.34-.545.34-.613 0l-1.193-5.93a.316.316 0 0 0-.244-.249l-5.836-1.212c-.334-.07-.334-.554 0-.623l5.836-1.213a.315.315 0 0 0 .244-.248l1.193-5.93Zm24.565 75.724 10.712.095V51.257h12.855c7.545 0 21.611-4.638 21.611-20.921S116.888 9.319 108.318 9.319H85.776v68.256ZM96.58 41.222l.187-21.584h12.296c2.328 0 11.084.473 11.084 10.32 0 9.845-7.638 10.98-11.271 10.98-2.701 0-8.476.19-12.296.284Zm33.435 12.781c0 13.632 10.619 25.276 24.498 25.276 13.787 0 24.406-11.644 24.406-25.276 0-13.633-10.619-24.709-24.406-24.709-13.879 0-24.498 11.076-24.498 24.709Zm10.805.094c0-8.993 6.707-15.052 13.787-15.052 7.172 0 13.786 6.059 13.786 15.052 0 9.562-6.614 15.242-13.786 15.242-7.08 0-13.787-5.68-13.787-15.242Zm65.014-14.673c-7.266.946-11.737 7.762-11.644 14.39.093 8.14 5.03 14.768 12.203 15.336 5.961.473 11.364-3.03 13.041-8.047l9.874 3.503c-3.54 9.845-12.11 15.241-23.288 14.768-12.389-.474-22.356-10.792-22.356-25.655 0-14.2 11.271-24.14 22.636-24.709 12.668-.568 20.027 7.574 22.635 15.052l-9.781 3.124c-3.539-7.478-9.594-8.236-13.32-7.762Zm61.74 32.471.465 5.775h10.342V30.714h-10.992V59.21c0 3.977-3.82 10.13-10.434 10.13-8.104 0-10.06-5.964-10.06-10.698V30.81H235.81v29.063c0 4.166 1.49 19.123 17.233 19.123 8.292 0 13.506-4.355 14.531-7.1Zm47.797-27.738 9.128-3.787c-3.353-9.561-14.345-12.117-21.424-11.265-10.618 1.325-15.649 8.425-15.649 15.147 0 5.49 4.749 10.034 9.966 11.833 4.75 1.704 17.7 2.462 17.419 8.52-.186 5.018-7.545 5.775-11.272 4.923-3.724-.852-7.172-4.355-8.288-7.668l-9.409 4.07c2.33 6.438 8.756 13.254 19.748 13.254 13.505 0 19.841-7.668 19.841-14.673 0-5.775-3.074-11.644-13.133-14.106-9.688-2.367-14.534-2.935-14.534-7.1 0-2.935 3.262-4.923 7.64-4.923 4.099 0 8.477 1.894 9.967 5.775Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(0 .3)\" d=\"M0 0h325.429v80.4H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-pi9sex\",\"data-framer-name\":\"11x\",fill:\"black\",intrinsicHeight:91,intrinsicWidth:195,layoutDependency:layoutDependency,layoutId:\"EGaQfFawQ\",svg:'<svg width=\"195\" height=\"91\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M54.742 33.85c5.414-5.442 10.78-10.827 16.13-16.227.487-.492.81-.737 1.448-.128 3.279 3.133 5.667 6.787 6.476 11.314 1.104 6.177-.296 11.726-4.394 16.522-2.6 3.044-5.85 5.056-9.695 6.107-.13.035-.248.123-.38.19.08.465.48.513.778.638 4.804 2.022 9.611 4.038 14.424 6.04.642.266.987.535.663 1.336-1.376 3.387-3.164 6.478-5.99 8.869-3.105 2.625-6.652 4.199-10.704 4.584-5.716.543-10.712-1.18-14.959-4.996-3.429-3.083-5.449-6.987-6.133-11.575-.387-2.588-.299-5.148.38-7.682.07-.26.149-.56-.309-.942L18.513 71.996c-5.85-4.667-8.855-12.065-7.222-19.564 1.702-7.818 6.692-12.61 14.144-15.02-.12-.678-.65-.76-1.079-.943-4.669-1.978-9.337-3.96-14.016-5.913-.563-.234-.787-.449-.54-1.091 1.842-4.814 4.69-8.789 9.306-11.262 5.485-2.94 11.14-3.299 16.885-.855 6.19 2.633 9.927 7.382 11.448 13.906.659 2.829.563 5.691-.093 8.525-.095.409-.274.803-.007 1.494l7.403-7.423Zm101.057 32.42 13.739-17.592-13.739-17.81h10.541l8.65 11.34 8.214-11.34h10.468l-13.667 17.81 13.667 17.592h-10.468l-8.796-11.34-8.068 11.34h-10.541Zm-14.425-47.468h6.469V66.27h-8.577V29.05a22.918 22.918 0 0 1-3.78 1.345 14.963 14.963 0 0 1-3.708.472v-8.214a19.213 19.213 0 0 0 4.798-1.127c1.551-.605 3.15-1.514 4.798-2.726Zm-25.911 0h6.47V66.27h-8.578V29.05a22.854 22.854 0 0 1-3.78 1.345 14.961 14.961 0 0 1-3.707.472v-8.214a19.205 19.205 0 0 0 4.797-1.127c1.551-.605 3.15-1.514 4.798-2.726Z\" fill=\"#909495\"/></svg>',withExternalLayout:true})]})],speed:10,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7uzxxc\",\"data-framer-name\":\"Transparency_L\",layoutDependency:layoutDependency,layoutId:\"Vgff6ndpB\",style:{background:\"linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%)\"},variants:{BtelgyzDO:{background:'linear-gradient(90deg, var(--token-d6bfc2dd-ec43-42db-a146-89337ad4c566, rgb(250, 250, 250)) /* {\"name\":\"Soft White\"} */ 0%, rgba(250, 250, 250, 0) 100%)'},u_rATiP7Z:{background:'linear-gradient(90deg, var(--token-d6bfc2dd-ec43-42db-a146-89337ad4c566, rgb(250, 250, 250)) /* {\"name\":\"Soft White\"} */ 0%, rgba(250, 250, 250, 0) 100%)'}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n9ydtm\",\"data-framer-name\":\"Transparency_R\",layoutDependency:layoutDependency,layoutId:\"Trsznhiev\",style:{background:\"linear-gradient(270deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%)\"},variants:{BtelgyzDO:{background:'linear-gradient(270deg, var(--token-d6bfc2dd-ec43-42db-a146-89337ad4c566, rgb(250, 250, 250)) /* {\"name\":\"Soft White\"} */ 0%, rgba(250, 250, 250, 0) 100%)'},u_rATiP7Z:{background:'linear-gradient(270deg, var(--token-d6bfc2dd-ec43-42db-a146-89337ad4c566, rgb(250, 250, 250)) /* {\"name\":\"Soft White\"} */ 0%, rgba(250, 250, 250, 0) 100%)'}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gwt9D.framer-curnsa, .framer-gwt9D .framer-curnsa { display: block; }\",\".framer-gwt9D.framer-15vxvzp { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 800px; }\",\".framer-gwt9D .framer-ga2wn-container { flex: 1 0 0px; height: 40px; position: relative; width: 1px; }\",\".framer-gwt9D .framer-10heu5w { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 40px; justify-content: center; overflow: visible; padding: 0px 22px 0px 0px; position: relative; width: min-content; }\",\".framer-gwt9D .framer-e35svr { aspect-ratio: 3.9052631578947374 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 117px; }\",\".framer-gwt9D .framer-me3ypk { aspect-ratio: 2.0549450549450547 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 61px; }\",\".framer-gwt9D .framer-x9kovy { aspect-ratio: 4.481481481481482 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; width: 120px; }\",\".framer-gwt9D .framer-1uq0tyt { flex: none; height: 30px; position: relative; width: 105px; }\",\".framer-gwt9D .framer-w8blzv { aspect-ratio: 4.010989010989011 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 120px; }\",\".framer-gwt9D .framer-1nw6pq { aspect-ratio: 4.3882352941176475 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); position: relative; width: 118px; }\",\".framer-gwt9D .framer-156clji { aspect-ratio: 4.078947368421052 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 122px; }\",\".framer-gwt9D .framer-1do0acj { aspect-ratio: 4.0246913580246915 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; width: 107px; }\",\".framer-gwt9D .framer-pi9sex { aspect-ratio: 2.142857142857143 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 65px; }\",\".framer-gwt9D .framer-7uzxxc { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 15%; z-index: 1; }\",\".framer-gwt9D .framer-1n9ydtm { bottom: 0px; flex: none; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 15%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gwt9D.framer-15vxvzp, .framer-gwt9D .framer-10heu5w { gap: 0px; } .framer-gwt9D.framer-15vxvzp > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-gwt9D.framer-15vxvzp > :first-child, .framer-gwt9D .framer-10heu5w > :first-child { margin-left: 0px; } .framer-gwt9D.framer-15vxvzp > :last-child, .framer-gwt9D .framer-10heu5w > :last-child { margin-right: 0px; } .framer-gwt9D .framer-10heu5w > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } }\",\".framer-gwt9D.framer-v-1hwxlkx.framer-15vxvzp, .framer-gwt9D.framer-v-1gekqsy.framer-15vxvzp { width: 390px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WTLM1wAcJ\":{\"layout\":[\"fixed\",\"auto\"]},\"u_rATiP7Z\":{\"layout\":[\"fixed\",\"auto\"]},\"BtelgyzDO\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPkc2VDrnw=withCSS(Component,css,\"framer-gwt9D\");export default FramerPkc2VDrnw;FramerPkc2VDrnw.displayName=\"Customer Carousel\";FramerPkc2VDrnw.defaultProps={height:40,width:800};addPropertyControls(FramerPkc2VDrnw,{variant:{options:[\"ooqmBKJpQ\",\"WTLM1wAcJ\",\"u_rATiP7Z\",\"BtelgyzDO\"],optionTitles:[\"Desktop\",\"Phone\",\"Desktop - Off white\",\"Mobile - Off white\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerPkc2VDrnw,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPkc2VDrnw\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WTLM1wAcJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"u_rATiP7Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BtelgyzDO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"800\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Pkc2VDrnw.map", "// Generated by Framer (3d7d016)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"Txz10PJPj\",\"jfLm5sC90\"];const serializationHash=\"framer-cjgLj\";const variantClassNames={jfLm5sC90:\"framer-v-yqt0wr\",Txz10PJPj:\"framer-v-10cg7ht\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Medium:\"Txz10PJPj\",Strong:\"jfLm5sC90\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"Txz10PJPj\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"Txz10PJPj\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-10cg7ht\",className,classNames),\"data-framer-name\":\"Medium\",layoutDependency:layoutDependency,layoutId:\"Txz10PJPj\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:\"linear-gradient(180deg, rgba(4, 27, 37, 0.1) 0%, rgba(4, 27, 37, 0.7) 100%)\",...style},variants:{jfLm5sC90:{background:\"linear-gradient(180deg, rgba(4, 27, 37, 0.4) 0%, rgb(4, 27, 37) 100%)\"}},...addPropertyOverrides({jfLm5sC90:{\"data-framer-name\":\"Strong\"}},baseVariant,gestureVariant)})})})});});const css=['.framer-cjgLj[data-border=\"true\"]::after, .framer-cjgLj [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cjgLj.framer-45tgzm, .framer-cjgLj .framer-45tgzm { display: block; }\",\".framer-cjgLj.framer-10cg7ht { height: 450px; overflow: hidden; position: relative; width: 584px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 450\n * @framerIntrinsicWidth 584\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"jfLm5sC90\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerpbQK7578T=withCSS(Component,css,\"framer-cjgLj\");export default FramerpbQK7578T;FramerpbQK7578T.displayName=\"Overlay\";FramerpbQK7578T.defaultProps={height:450,width:584};addPropertyControls(FramerpbQK7578T,{variant:{options:[\"Txz10PJPj\",\"jfLm5sC90\"],optionTitles:[\"Medium\",\"Strong\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerpbQK7578T,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpbQK7578T\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jfLm5sC90\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"584\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"450\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pbQK7578T.map", "// Generated by Framer (9045c1a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import Overlay from\"https://framerusercontent.com/modules/xQCC4yqEAeY6uRi4fl7Q/DuNx5WQYGHCttfQK5SHu/pbQK7578T.js\";const PhosphorFonts=getFonts(Phosphor);const OverlayFonts=getFonts(Overlay);const PhosphorControls=getPropertyControls(Phosphor);const enabledGestures={eNYIoMAGA:{hover:true},fDakLadMY:{hover:true},H18K4Bntu:{hover:true},Hnk5eDH74:{hover:true},mrXEFBjsT:{hover:true},N7HWfD1Rv:{hover:true},QLgMcLmmQ:{hover:true},Quer1ceHQ:{hover:true},TSKQk5uOs:{hover:true}};const cycleOrder=[\"TSKQk5uOs\",\"Hnk5eDH74\",\"H18K4Bntu\",\"mrXEFBjsT\",\"Quer1ceHQ\",\"eNYIoMAGA\",\"QLgMcLmmQ\",\"N7HWfD1Rv\",\"fDakLadMY\"];const serializationHash=\"framer-miaen\";const variantClassNames={eNYIoMAGA:\"framer-v-b5zt0t\",fDakLadMY:\"framer-v-yhe3h8\",H18K4Bntu:\"framer-v-sd442\",Hnk5eDH74:\"framer-v-12sw6uw\",mrXEFBjsT:\"framer-v-11tdww3\",N7HWfD1Rv:\"framer-v-1ihl6mk\",QLgMcLmmQ:\"framer-v-smry1r\",Quer1ceHQ:\"framer-v-1onz9ej\",TSKQk5uOs:\"framer-v-e546xf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Primary Large Black\":\"H18K4Bntu\",\"Primary Large White\":\"eNYIoMAGA\",\"Primary Small Black\":\"TSKQk5uOs\",\"Primary Small White\":\"Quer1ceHQ\",\"Secondary Large Black\":\"mrXEFBjsT\",\"Secondary Large White\":\"QLgMcLmmQ\",\"Secondary Small Black\":\"Hnk5eDH74\",\"Secondary Small White\":\"N7HWfD1Rv\",\"Video Large\":\"fDakLadMY\"};const getProps=({height,icon,id,tap,title,width,...props})=>{return{...props,jMQ3m6yRn:title??props.jMQ3m6yRn??\"Signup\",tFETGNv5I:icon??props.tFETGNv5I??\"Plus\",variant:humanReadableVariantMap[props.variant]??props.variant??\"TSKQk5uOs\",XWMnFFtHg:tap??props.XWMnFFtHg};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,jMQ3m6yRn,XWMnFFtHg,tFETGNv5I,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"TSKQk5uOs\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1xhipos=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(XWMnFFtHg){const res=await XWMnFFtHg(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"fDakLadMY-hover\")return true;if(baseVariant===\"fDakLadMY\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-e546xf\",className,classNames),\"data-framer-name\":\"Primary Small Black\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"TSKQk5uOs\",onTap:onTap1xhipos,ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-54fbe6ca-60b1-4431-a556-3bdeb985788c, rgb(3, 31, 42))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},variants:{\"eNYIoMAGA-hover\":{backgroundColor:\"var(--token-d6bfc2dd-ec43-42db-a146-89337ad4c566, rgb(242, 242, 242))\"},\"H18K4Bntu-hover\":{backgroundColor:\"var(--token-7d34ed86-3d80-4468-9c9b-de9c41e96ece, rgb(196, 155, 76))\"},\"Hnk5eDH74-hover\":{\"--border-color\":\"rgba(6, 6, 6, 0.19)\"},\"mrXEFBjsT-hover\":{\"--border-color\":\"rgba(6, 6, 6, 0.19)\"},\"Quer1ceHQ-hover\":{backgroundColor:\"var(--token-d6bfc2dd-ec43-42db-a146-89337ad4c566, rgb(250, 250, 250))\"},\"TSKQk5uOs-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-7d34ed86-3d80-4468-9c9b-de9c41e96ece, rgb(196, 155, 76))\"},eNYIoMAGA:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-81c13548-8bfc-4763-a3c3-5d1b1925b691, rgb(231, 231, 230))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\"},fDakLadMY:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},H18K4Bntu:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},Hnk5eDH74:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(4, 27, 37, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},mrXEFBjsT:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(4, 27, 37, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},N7HWfD1Rv:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-89c3e745-3800-4e50-9b21-a2997a5c7cae, rgb(255, 255, 255))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},QLgMcLmmQ:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},Quer1ceHQ:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-81c13548-8bfc-4763-a3c3-5d1b1925b691, rgb(231, 231, 230))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\"}},...addPropertyOverrides({\"eNYIoMAGA-hover\":{\"data-framer-name\":undefined},\"fDakLadMY-hover\":{\"data-framer-name\":undefined},\"H18K4Bntu-hover\":{\"data-framer-name\":undefined},\"Hnk5eDH74-hover\":{\"data-framer-name\":undefined},\"mrXEFBjsT-hover\":{\"data-framer-name\":undefined},\"N7HWfD1Rv-hover\":{\"data-framer-name\":undefined},\"QLgMcLmmQ-hover\":{\"data-framer-name\":undefined},\"Quer1ceHQ-hover\":{\"data-framer-name\":undefined},\"TSKQk5uOs-hover\":{\"data-framer-name\":undefined},eNYIoMAGA:{\"data-border\":true,\"data-framer-name\":\"Primary Large White\"},fDakLadMY:{\"data-framer-name\":\"Video Large\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:316,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:316,pixelWidth:600,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/RblUt7iFwe2IAlilg0fvBvL4Dw.gif\",srcSet:\"https://framerusercontent.com/images/RblUt7iFwe2IAlilg0fvBvL4Dw.gif?scale-down-to=512 512w,https://framerusercontent.com/images/RblUt7iFwe2IAlilg0fvBvL4Dw.gif 600w\"}},H18K4Bntu:{\"data-framer-name\":\"Primary Large Black\"},Hnk5eDH74:{\"data-border\":true,\"data-framer-name\":\"Secondary Small Black\"},mrXEFBjsT:{\"data-border\":true,\"data-framer-name\":\"Secondary Large Black\"},N7HWfD1Rv:{\"data-border\":true,\"data-framer-name\":\"Secondary Small White\"},QLgMcLmmQ:{\"data-border\":true,\"data-framer-name\":\"Secondary Large White\"},Quer1ceHQ:{\"data-border\":true,\"data-framer-name\":\"Primary Small White\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ce3cdk\",\"data-framer-name\":\"Content \",layoutDependency:layoutDependency,layoutId:\"uRlhWP2s6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bzs1rr-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Wf7DqtIiU-container\",nodeId:\"Wf7DqtIiU\",rendersWithMotion:true,scopeId:\"W5ZzKivMI\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-89c3e745-3800-4e50-9b21-a2997a5c7cae, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:tFETGNv5I,id:\"Wf7DqtIiU\",layoutId:\"Wf7DqtIiU\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\",...addPropertyOverrides({\"fDakLadMY-hover\":{weight:\"fill\"},eNYIoMAGA:{color:\"var(--token-54fbe6ca-60b1-4431-a556-3bdeb985788c, rgb(4, 27, 37))\"},fDakLadMY:{iconSelection:\"Play\"},Hnk5eDH74:{color:\"var(--token-54fbe6ca-60b1-4431-a556-3bdeb985788c, rgb(4, 27, 37))\"},mrXEFBjsT:{color:\"var(--token-54fbe6ca-60b1-4431-a556-3bdeb985788c, rgb(4, 27, 37))\"},Quer1ceHQ:{color:\"var(--token-54fbe6ca-60b1-4431-a556-3bdeb985788c, rgb(4, 27, 37))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-89c3e745-3800-4e50-9b21-a2997a5c7cae, rgb(255, 255, 255)))\"},children:\"Signup\"})}),className:\"framer-73zhbu\",fonts:[\"GF;Instrument Sans-500\"],layoutDependency:layoutDependency,layoutId:\"fPbUROo67\",style:{\"--extracted-r6o4lv\":\"var(--token-89c3e745-3800-4e50-9b21-a2997a5c7cae, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:jMQ3m6yRn,variants:{eNYIoMAGA:{\"--extracted-r6o4lv\":\"var(--token-54fbe6ca-60b1-4431-a556-3bdeb985788c, rgb(3, 31, 42))\"},Hnk5eDH74:{\"--extracted-r6o4lv\":\"var(--token-54fbe6ca-60b1-4431-a556-3bdeb985788c, rgb(3, 31, 42))\"},mrXEFBjsT:{\"--extracted-r6o4lv\":\"var(--token-54fbe6ca-60b1-4431-a556-3bdeb985788c, rgb(3, 31, 42))\"},Quer1ceHQ:{\"--extracted-r6o4lv\":\"var(--token-54fbe6ca-60b1-4431-a556-3bdeb985788c, rgb(3, 31, 42))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({eNYIoMAGA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-54fbe6ca-60b1-4431-a556-3bdeb985788c, rgb(3, 31, 42)))\"},children:\"Signup\"})})},Hnk5eDH74:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-54fbe6ca-60b1-4431-a556-3bdeb985788c, rgb(3, 31, 42)))\"},children:\"Signup\"})})},mrXEFBjsT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-54fbe6ca-60b1-4431-a556-3bdeb985788c, rgb(3, 31, 42)))\"},children:\"Signup\"})})},Quer1ceHQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-54fbe6ca-60b1-4431-a556-3bdeb985788c, rgb(3, 31, 42)))\"},children:\"Signup\"})})}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({fDakLadMY:{height:(componentViewport?.height||56)-0,width:`calc(${componentViewport?.width||\"100vw\"} + 0.5px)`,y:(componentViewport?.y||0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hwwngt-container\",layoutDependency:layoutDependency,layoutId:\"FIwf5fSLP-container\",nodeId:\"FIwf5fSLP\",rendersWithMotion:true,scopeId:\"W5ZzKivMI\",children:/*#__PURE__*/_jsx(Overlay,{height:\"100%\",id:\"FIwf5fSLP\",layoutId:\"FIwf5fSLP\",style:{height:\"100%\",width:\"100%\"},variant:\"Txz10PJPj\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-miaen.framer-1q5sthz, .framer-miaen .framer-1q5sthz { display: block; }\",\".framer-miaen.framer-e546xf { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: visible; padding: 19px 15px 19px 15px; position: relative; width: min-content; }\",\".framer-miaen .framer-1ce3cdk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-miaen .framer-bzs1rr-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-miaen .framer-73zhbu { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-miaen .framer-1hwwngt-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-miaen.framer-e546xf, .framer-miaen .framer-1ce3cdk { gap: 0px; } .framer-miaen.framer-e546xf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-miaen.framer-e546xf > :first-child, .framer-miaen .framer-1ce3cdk > :first-child { margin-left: 0px; } .framer-miaen.framer-e546xf > :last-child, .framer-miaen .framer-1ce3cdk > :last-child { margin-right: 0px; } .framer-miaen .framer-1ce3cdk > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-miaen.framer-v-sd442.framer-e546xf, .framer-miaen.framer-v-11tdww3.framer-e546xf, .framer-miaen.framer-v-b5zt0t.framer-e546xf, .framer-miaen.framer-v-smry1r.framer-e546xf { flex-direction: column; gap: 0px; height: 56px; padding: 0px 24px 0px 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-miaen.framer-v-sd442.framer-e546xf { gap: 0px; } .framer-miaen.framer-v-sd442.framer-e546xf > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-miaen.framer-v-sd442.framer-e546xf > :first-child { margin-top: 0px; } .framer-miaen.framer-v-sd442.framer-e546xf > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-miaen.framer-v-11tdww3.framer-e546xf { gap: 0px; } .framer-miaen.framer-v-11tdww3.framer-e546xf > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-miaen.framer-v-11tdww3.framer-e546xf > :first-child { margin-top: 0px; } .framer-miaen.framer-v-11tdww3.framer-e546xf > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-miaen.framer-v-b5zt0t.framer-e546xf { gap: 0px; } .framer-miaen.framer-v-b5zt0t.framer-e546xf > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-miaen.framer-v-b5zt0t.framer-e546xf > :first-child { margin-top: 0px; } .framer-miaen.framer-v-b5zt0t.framer-e546xf > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-miaen.framer-v-smry1r.framer-e546xf { gap: 0px; } .framer-miaen.framer-v-smry1r.framer-e546xf > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-miaen.framer-v-smry1r.framer-e546xf > :first-child { margin-top: 0px; } .framer-miaen.framer-v-smry1r.framer-e546xf > :last-child { margin-bottom: 0px; } }\",\".framer-miaen.framer-v-yhe3h8.framer-e546xf { flex-direction: column; gap: 0px; height: 56px; overflow: hidden; padding: 0px 24px 0px 24px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-miaen.framer-v-yhe3h8.framer-e546xf { gap: 0px; } .framer-miaen.framer-v-yhe3h8.framer-e546xf > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-miaen.framer-v-yhe3h8.framer-e546xf > :first-child { margin-top: 0px; } .framer-miaen.framer-v-yhe3h8.framer-e546xf > :last-child { margin-bottom: 0px; } }\",'.framer-miaen[data-border=\"true\"]::after, .framer-miaen [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 110\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"Hnk5eDH74\":{\"layout\":[\"auto\",\"fixed\"]},\"H18K4Bntu\":{\"layout\":[\"auto\",\"fixed\"]},\"mrXEFBjsT\":{\"layout\":[\"auto\",\"fixed\"]},\"Quer1ceHQ\":{\"layout\":[\"auto\",\"fixed\"]},\"eNYIoMAGA\":{\"layout\":[\"auto\",\"fixed\"]},\"QLgMcLmmQ\":{\"layout\":[\"auto\",\"fixed\"]},\"N7HWfD1Rv\":{\"layout\":[\"auto\",\"fixed\"]},\"fDakLadMY\":{\"layout\":[\"auto\",\"fixed\"]},\"C3quxGHSs\":{\"layout\":[\"auto\",\"fixed\"]},\"xoR4deOJQ\":{\"layout\":[\"auto\",\"fixed\"]},\"ZbmeM5GtD\":{\"layout\":[\"auto\",\"fixed\"]},\"cQ00674Dk\":{\"layout\":[\"auto\",\"fixed\"]},\"oNwMWoSzR\":{\"layout\":[\"auto\",\"fixed\"]},\"X0qRkABvA\":{\"layout\":[\"auto\",\"fixed\"]},\"BTU8K1m4P\":{\"layout\":[\"auto\",\"fixed\"]},\"FXsJmmO77\":{\"layout\":[\"auto\",\"fixed\"]},\"Nm5b62ktP\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"jMQ3m6yRn\":\"title\",\"XWMnFFtHg\":\"tap\",\"tFETGNv5I\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerW5ZzKivMI=withCSS(Component,css,\"framer-miaen\");export default FramerW5ZzKivMI;FramerW5ZzKivMI.displayName=\"Button Icon\";FramerW5ZzKivMI.defaultProps={height:48,width:110};addPropertyControls(FramerW5ZzKivMI,{variant:{options:[\"TSKQk5uOs\",\"Hnk5eDH74\",\"H18K4Bntu\",\"mrXEFBjsT\",\"Quer1ceHQ\",\"eNYIoMAGA\",\"QLgMcLmmQ\",\"N7HWfD1Rv\",\"fDakLadMY\"],optionTitles:[\"Primary Small Black\",\"Secondary Small Black\",\"Primary Large Black\",\"Secondary Large Black\",\"Primary Small White\",\"Primary Large White\",\"Secondary Large White\",\"Secondary Small White\",\"Video Large\"],title:\"Variant\",type:ControlType.Enum},jMQ3m6yRn:{defaultValue:\"Signup\",displayTextArea:false,title:\"Title\",type:ControlType.String},XWMnFFtHg:{title:\"Tap\",type:ControlType.EventHandler},tFETGNv5I:PhosphorControls?.[\"iconSelection\"]&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Plus\",description:undefined,hidden:undefined,title:\"Icon\"}});addFonts(FramerW5ZzKivMI,[{explicitInter:true,fonts:[{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npST3-QfwmS0v3_7Y.woff2\",weight:\"500\"}]},...PhosphorFonts,...OverlayFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW5ZzKivMI\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"jMQ3m6yRn\\\":\\\"title\\\",\\\"XWMnFFtHg\\\":\\\"tap\\\",\\\"tFETGNv5I\\\":\\\"icon\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"110\",\"framerIntrinsicHeight\":\"48\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Hnk5eDH74\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"H18K4Bntu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"mrXEFBjsT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Quer1ceHQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"eNYIoMAGA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"QLgMcLmmQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"N7HWfD1Rv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"fDakLadMY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"C3quxGHSs\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"xoR4deOJQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"ZbmeM5GtD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"cQ00674Dk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"oNwMWoSzR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"X0qRkABvA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"BTU8K1m4P\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"FXsJmmO77\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Nm5b62ktP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./W5ZzKivMI.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,useLocaleCode}from\"framer\";import{startTransition,useCallback,useEffect,useRef,useState}from\"react\";const fontStack=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;function formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showMinutes,showSeconds},timeFormat,monthFormat,localCode){const date=new Date;const onlyYearIsShown=!showWeekday&&!showMonth&&showYear;switch(outputType){case\"date\":return new Intl.DateTimeFormat(localCode,{weekday:showWeekday?\"long\":undefined,day:onlyYearIsShown?undefined:\"numeric\",month:showMonth?monthFormat:undefined,year:showYear?\"numeric\":undefined}).format(date);case\"time\":return new Intl.DateTimeFormat(localCode,{hour:\"numeric\",minute:showMinutes?\"numeric\":undefined,second:showSeconds&&showMinutes?\"numeric\":undefined,hour12:timeFormat===\"12h\"}).format(date);default:return new Intl.DateTimeFormat(localCode).format(date);}}const defaultProps={height:20,width:140,outputType:\"time\",color:\"#999\",timeFormat:\"24h\",showYear:true,showMonth:true,showWeekday:true,showMinutes:true,showSeconds:true,monthFormat:\"long\",alignment:\"center\"};/**\n * TIME AND DATE\n * FORKED FROM PROTOTYPING\n *\n * @framerIntrinsicWidth 140\n * @framerIntrinsicHeight 20\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export function Time(props){const mergedProps={...defaultProps,...props};const{outputType,timeFormat,showYear,showMonth,showWeekday,// showHours,\nshowMinutes,showSeconds,monthFormat,color,font,tabularFont}=mergedProps;const localCode=useLocaleCode();const getTextContent=useCallback(()=>formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,// showHours,\n    showMinutes,showSeconds},timeFormat,monthFormat,localCode),[localCode,monthFormat,outputType,showMinutes,showMonth,showSeconds,showWeekday,showYear,timeFormat]);const timeoutRef=useRef()// FIXME: With React 19, we can remove this and return a cleanup from the ref callback\n;const updateCountdown=useCallback(node=>{if(node===null){// React calls w/ `null` on unmount or if the ref function changes.\nclearTimeout(timeoutRef.current);return;}let prev;const tick=()=>{const date=new Date;const next=new Date().setSeconds(date.getSeconds()+1,0)-+date;timeoutRef.current=setTimeout(tick,next);const textContent=getTextContent();if(prev!==textContent){node.textContent=textContent;prev=textContent;}};tick();},[getTextContent]);const[visible,setIsVisible]=useState(false);const isCanvas=RenderTarget.current()===RenderTarget.canvas;useEffect(()=>{startTransition(()=>setIsVisible(true));// Don\u2019t want real time on Canvas\nif(isCanvas)return;},[isCanvas]);return /*#__PURE__*/_jsx(\"p\",{suppressHydrationWarning:true,style:{margin:0,padding:0,color,fontFamily:fontStack,fontWeight:500,fontSize:16,lineHeight:1,visibility:visible?\"visible\":\"hidden\",...font,fontVariantNumeric:tabularFont?\"tabular-nums\":\"normal\",whiteSpace:\"nowrap\"},ref:isCanvas?undefined:updateCountdown,children:getTextContent()});}Time.displayName=\"Time & Date\";addPropertyControls(Time,{outputType:{title:\"Type\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"date\",\"time\"],optionTitles:[\"Date\",\"Time\"],defaultValue:defaultProps.outputType},showWeekday:{title:\"Day\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showWeekday,hidden:props=>props.outputType!==\"date\"},showMonth:{title:\"Month\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showMonth,hidden:props=>props.outputType!==\"date\"},monthFormat:{title:\"Format\",type:ControlType.Enum,options:[\"short\",\"long\",\"numeric\"],optionTitles:[\"Short\",\"Long\",\"Numeric\"],defaultValue:defaultProps.monthFormat,hidden:props=>props.outputType!==\"date\"||!props.showMonth},showYear:{title:\"Year\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showYear,hidden:props=>props.outputType!==\"date\"},timeFormat:{title:\"Format\",type:ControlType.Enum,options:[\"12h\",\"24h\"],optionTitles:[\"12h\",\"24h\"],displaySegmentedControl:true,defaultValue:defaultProps.timeFormat,hidden:props=>props.outputType!==\"time\"},// showHours: {\n//     title: \"Hours\",\n//     type: ControlType.Boolean,\n//     enabledTitle: \"Show\",\n//     disabledTitle: \"Hide\",\n//     defaultValue: defaultProps.showHours,\n//     hidden: (props) => props.outputType !== \"time\",\n// },\nshowMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showMinutes,hidden:props=>props.outputType!==\"time\"},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showSeconds,hidden:props=>props.outputType!==\"time\"||!props.showMinutes},font:{type:ControlType.Font,controls:\"extended\"},tabularFont:{title:\"Tabular\",type:ControlType.Boolean,defaultValue:true},color:{type:ControlType.Color,defaultValue:defaultProps.color}});\nexport const __FramerMetadata__ = {\"exports\":{\"Time\":{\"type\":\"reactComponent\",\"name\":\"Time\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicWidth\":\"140\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Time.map", "// Generated by Framer (66c1c8d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Time as TimeDate}from\"https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const TimeDateFonts=getFonts(TimeDate);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"BG2NjOLow\",\"fn8vOUnMi\",\"xeCRtn92D\",\"sT6rOmlQ2\",\"IMAHSmy2f\"];const serializationHash=\"framer-9Zr34\";const variantClassNames={BG2NjOLow:\"framer-v-fqnhoo\",fn8vOUnMi:\"framer-v-hv0ohh\",IMAHSmy2f:\"framer-v-1u7kk94\",sT6rOmlQ2:\"framer-v-153dpam\",xeCRtn92D:\"framer-v-wii3v4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const transition3={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const transition4={delay:1,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:120};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:270};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:400};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:210};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation9={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:260};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Communicates 1\":\"BG2NjOLow\",\"Communicates 2\":\"fn8vOUnMi\",\"Communicates 4\":\"xeCRtn92D\",\"Communicates 5\":\"sT6rOmlQ2\",\"Communicates 7\":\"IMAHSmy2f\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"BG2NjOLow\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BG2NjOLow\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1x73vbb=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"fn8vOUnMi\"),3500);});const onAppeari9w1a2=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"xeCRtn92D\"),2500);});const onAppearccen2v=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"sT6rOmlQ2\"),3e3);});const onAppear5wvcos=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"IMAHSmy2f\"),2800);});const onAppear8sgoie=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"BG2NjOLow\"),650);});useOnVariantChange(baseVariant,{default:onAppear1x73vbb,fn8vOUnMi:onAppeari9w1a2,IMAHSmy2f:onAppear8sgoie,sT6rOmlQ2:onAppear5wvcos,xeCRtn92D:onAppearccen2v});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"sT6rOmlQ2\",\"IMAHSmy2f\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"fn8vOUnMi\",\"xeCRtn92D\",\"sT6rOmlQ2\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"xeCRtn92D\",\"sT6rOmlQ2\",\"IMAHSmy2f\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"sT6rOmlQ2\",\"IMAHSmy2f\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({fn8vOUnMi:{value:transition2},IMAHSmy2f:{value:transition3},sT6rOmlQ2:{value:transition2},xeCRtn92D:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-fqnhoo\",className,classNames),\"data-framer-name\":\"Communicates 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"BG2NjOLow\",ref:refBinding,style:{...style},...addPropertyOverrides({fn8vOUnMi:{\"data-framer-name\":\"Communicates 2\"},IMAHSmy2f:{\"data-framer-name\":\"Communicates 7\"},sT6rOmlQ2:{\"data-framer-name\":\"Communicates 5\"},xeCRtn92D:{\"data-framer-name\":\"Communicates 4\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-eht01p\",\"data-framer-appear-id\":\"eht01p\",\"data-framer-name\":\"1 Message\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"vbauyFlUI\",optimized:true,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1},variants:{fn8vOUnMi:{opacity:.25},xeCRtn92D:{opacity:0}},...addPropertyOverrides({fn8vOUnMi:{animate:undefined,initial:undefined,optimized:undefined},xeCRtn92D:{animate:undefined,initial:undefined,optimized:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15xc9g2\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"R__hRquGv\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(250, 250, 250)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3opitk-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Ne9cDml9z-container\",nodeId:\"Ne9cDml9z\",rendersWithMotion:true,scopeId:\"gutWgbBOp\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ea690d84-0c2d-4322-885a-8bb8fee7e329, rgba(6, 6, 6, 0.7))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ClipboardText\",id:\"Ne9cDml9z\",layoutId:\"Ne9cDml9z\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tgyxc4\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"FH0h8Kfud\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19vpdf2\",\"data-framer-name\":\"Date\",layoutDependency:layoutDependency,layoutId:\"Bg00cT9oo\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-izg721-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"vfqNA6XJv-container\",nodeId:\"vfqNA6XJv\",rendersWithMotion:true,scopeId:\"gutWgbBOp\",children:/*#__PURE__*/_jsx(TimeDate,{color:\"rgba(6, 6, 6, 0.5)\",font:{fontFamily:'\"Studio Pro Medium\", \"Studio Pro Medium Placeholder\", sans-serif',fontSize:\"14px\",letterSpacing:\"0em\",lineHeight:\"150%\"},height:\"100%\",id:\"vfqNA6XJv\",layoutId:\"vfqNA6XJv\",monthFormat:\"short\",outputType:\"date\",showMinutes:true,showMonth:true,showSeconds:false,showWeekday:false,showYear:true,tabularFont:false,timeFormat:\"12h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gTWVkaXVt\",\"--framer-font-family\":'\"Studio Pro Medium\", \"Studio Pro Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(6, 6, 6, 0.5))\"},children:\" - \"})}),className:\"framer-bzuxwe\",\"data-framer-name\":\"-\",fonts:[\"CUSTOM;Studio Pro Medium\"],layoutDependency:layoutDependency,layoutId:\"e8MKSlRXn\",style:{\"--extracted-r6o4lv\":\"rgba(6, 6, 6, 0.5)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gTWVkaXVt\",\"--framer-font-family\":'\"Studio Pro Medium\", \"Studio Pro Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(6, 6, 6, 0.5))\"},children:\"10:24 AM\"})}),className:\"framer-xeqiib\",\"data-framer-name\":\"Label\",fonts:[\"CUSTOM;Studio Pro Medium\"],layoutDependency:layoutDependency,layoutId:\"Uwt90OPy4\",style:{\"--extracted-r6o4lv\":\"rgba(6, 6, 6, 0.5)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Studio Pro SemiBold\", \"Studio Pro SemiBold Placeholder\", sans-serif'},children:\"Jason\"}),\" submitted a scorecard and rated the candidate \uD83D\uDC4D\uD83D\uDC4D Strong Yes\"]})}),className:\"framer-1pg1r86\",\"data-framer-name\":\"Message\",fonts:[\"CUSTOM;Studio Pro Regular\",\"CUSTOM;Studio Pro SemiBold\"],layoutDependency:layoutDependency,layoutId:\"MvpN9EM69\",style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nomwdq\",\"data-framer-name\":\"Calendar\",layoutDependency:layoutDependency,layoutId:\"J0J53dz6m\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rxoj2h\",\"data-border\":true,\"data-framer-name\":\"Frame 174\",layoutDependency:layoutDependency,layoutId:\"eGu_6_owu\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(43, 125, 77)\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(236, 236, 236)\",borderBottomRightRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-qc7k5o\",\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"Mdg8J7OHH\",style:{borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||600)-0-611.75)/2+0+0)+20+0+241+10+10+0),sizes:\"50px\",src:\"https://framerusercontent.com/images/VAK98Z3Lp5QWX1oYEwBKDS2S0.png\",srcSet:\"https://framerusercontent.com/images/VAK98Z3Lp5QWX1oYEwBKDS2S0.png?scale-down-to=512 512w,https://framerusercontent.com/images/VAK98Z3Lp5QWX1oYEwBKDS2S0.png 1024w\"},className:\"framer-1t8nzfo\",\"data-framer-name\":\"Headshot\",layoutDependency:layoutDependency,layoutId:\"I635:4403;623:6994\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({fn8vOUnMi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||600)-250-1015.75)/2+0+0)+20+0+241+10+10+0),sizes:\"50px\",src:\"https://framerusercontent.com/images/VAK98Z3Lp5QWX1oYEwBKDS2S0.png\",srcSet:\"https://framerusercontent.com/images/VAK98Z3Lp5QWX1oYEwBKDS2S0.png?scale-down-to=512 512w,https://framerusercontent.com/images/VAK98Z3Lp5QWX1oYEwBKDS2S0.png 1024w\"}},xeCRtn92D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||600)-453-1296.75)/2+0+0)+20+0+241+10+10+0),sizes:\"50px\",src:\"https://framerusercontent.com/images/VAK98Z3Lp5QWX1oYEwBKDS2S0.png\",srcSet:\"https://framerusercontent.com/images/VAK98Z3Lp5QWX1oYEwBKDS2S0.png?scale-down-to=512 512w,https://framerusercontent.com/images/VAK98Z3Lp5QWX1oYEwBKDS2S0.png 1024w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-anlhza\",\"data-framer-name\":\"Frame 166\",layoutDependency:layoutDependency,layoutId:\"lkknmvpgo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Studio Pro SemiBold\", \"Studio Pro SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"165%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(33, 32, 30))\"},children:\"Drew Sinclair\"})}),className:\"framer-10v395t\",\"data-framer-name\":\"Drew Sinclair\",fonts:[\"CUSTOM;Studio Pro SemiBold\"],layoutDependency:layoutDependency,layoutId:\"czsuXwUUX\",style:{\"--extracted-r6o4lv\":\"rgb(33, 32, 30)\",\"--framer-paragraph-spacing\":\"15px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gbcs3g\",\"data-framer-name\":\"Frame 165\",layoutDependency:layoutDependency,layoutId:\"MK5zu_84R\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(6, 6, 6, 0.7))\"},children:[\"Senior Software Engineer \",/*#__PURE__*/_jsx(motion.br,{}),\"Round 1 Interview\"]})}),className:\"framer-1hreal6\",\"data-framer-name\":\"Senior Software Engineer \\u2028Round 1 Interview\",fonts:[\"CUSTOM;Studio Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"cVlU3acal\",style:{\"--extracted-r6o4lv\":\"rgba(6, 6, 6, 0.7)\",\"--framer-paragraph-spacing\":\"13px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-i4661j\",\"data-framer-name\":\"Frame 165\",layoutDependency:layoutDependency,layoutId:\"OeW5jBaAK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(6, 6, 6, 0.7))\"},children:\"View full scorecard\"})}),className:\"framer-1k3iwyh\",\"data-framer-name\":\"View full scorecard\",fonts:[\"CUSTOM;Studio Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"KURYnhwe2\",style:{\"--extracted-r6o4lv\":\"rgba(6, 6, 6, 0.7)\",\"--framer-paragraph-spacing\":\"13px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-ty7k55\",\"data-framer-appear-id\":\"ty7k55\",\"data-framer-name\":\"2 Message\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"HIG5LjAH1\",optimized:true,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1},variants:{sT6rOmlQ2:{opacity:0},xeCRtn92D:{opacity:.25}},...addPropertyOverrides({fn8vOUnMi:{animate:animation4,initial:animation5},sT6rOmlQ2:{animate:undefined,initial:undefined,optimized:undefined},xeCRtn92D:{animate:undefined,initial:undefined,optimized:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-qwfug2\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"eh8Cnyfe9\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(250, 250, 250)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-t1vuy8-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"izHgwhPPo-container\",nodeId:\"izHgwhPPo\",rendersWithMotion:true,scopeId:\"gutWgbBOp\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ea690d84-0c2d-4322-885a-8bb8fee7e329, rgba(6, 6, 6, 0.7))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Files\",id:\"izHgwhPPo\",layoutId:\"izHgwhPPo\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xzjd95\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"CyieiMbul\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ikzs4b\",\"data-framer-name\":\"Date\",layoutDependency:layoutDependency,layoutId:\"lRyH_A9pw\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ilzxfy-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"eXG3AKOfN-container\",nodeId:\"eXG3AKOfN\",rendersWithMotion:true,scopeId:\"gutWgbBOp\",children:/*#__PURE__*/_jsx(TimeDate,{color:\"rgba(6, 6, 6, 0.5)\",font:{fontFamily:'\"Studio Pro Medium\", \"Studio Pro Medium Placeholder\", sans-serif',fontSize:\"14px\",letterSpacing:\"0em\",lineHeight:\"150%\"},height:\"100%\",id:\"eXG3AKOfN\",layoutId:\"eXG3AKOfN\",monthFormat:\"short\",outputType:\"date\",showMinutes:true,showMonth:true,showSeconds:false,showWeekday:false,showYear:true,tabularFont:false,timeFormat:\"12h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gTWVkaXVt\",\"--framer-font-family\":'\"Studio Pro Medium\", \"Studio Pro Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(6, 6, 6, 0.5))\"},children:\" - \"})}),className:\"framer-1m0qsiw\",\"data-framer-name\":\"-\",fonts:[\"CUSTOM;Studio Pro Medium\"],layoutDependency:layoutDependency,layoutId:\"hsJQoFAdO\",style:{\"--extracted-r6o4lv\":\"rgba(6, 6, 6, 0.5)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gTWVkaXVt\",\"--framer-font-family\":'\"Studio Pro Medium\", \"Studio Pro Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(6, 6, 6, 0.5))\"},children:\"10:24 AM\"})}),className:\"framer-nlqpss\",\"data-framer-name\":\"Label\",fonts:[\"CUSTOM;Studio Pro Medium\"],layoutDependency:layoutDependency,layoutId:\"L6eYjYjDF\",style:{\"--extracted-r6o4lv\":\"rgba(6, 6, 6, 0.5)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:[\"Scorecards are in for \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Studio Pro SemiBold\", \"Studio Pro SemiBold Placeholder\", sans-serif'},children:\"Alex Carter\"}),\" for Senior Software Engineer Rd. 3. Review their scorecards now?\"]})}),className:\"framer-x2bir0\",\"data-framer-name\":\"Message\",fonts:[\"CUSTOM;Studio Pro Regular\",\"CUSTOM;Studio Pro SemiBold\"],layoutDependency:layoutDependency,layoutId:\"YgOaaQpi1\",style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g0xlbs\",\"data-framer-name\":\"Frame 258\",layoutDependency:layoutDependency,layoutId:\"qu_nsOSyS\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-sia3s8\",\"data-framer-name\":\"Frame 252\",layoutDependency:layoutDependency,layoutId:\"vvu1LhfA0\",style:{backgroundColor:\"rgb(236, 236, 236)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19o93gz\",\"data-framer-name\":\"Frame 257\",layoutDependency:layoutDependency,layoutId:\"Q1v9Nt6MF\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:\"Yes\"})}),className:\"framer-z7heow\",\"data-framer-name\":\"Yes\",fonts:[\"CUSTOM;Studio Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"eO42kGQFi\",style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sqd9mh\",\"data-framer-name\":\"Frame 253\",layoutDependency:layoutDependency,layoutId:\"lutrvtgnH\",style:{backgroundColor:\"rgb(236, 236, 236)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nrda8a\",\"data-framer-name\":\"Frame 257\",layoutDependency:layoutDependency,layoutId:\"KxUq4HTay\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:\"Remind me later\"})}),className:\"framer-10ld4uj\",\"data-framer-name\":\"Remind me later\",fonts:[\"CUSTOM;Studio Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"WudwQrR7q\",style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-1r9ae0j\",\"data-framer-appear-id\":\"1r9ae0j\",\"data-framer-name\":\"4 Message\",initial:animation6,layoutDependency:layoutDependency,layoutId:\"dKUsSPZRx\",optimized:true,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1},variants:{IMAHSmy2f:{opacity:0},sT6rOmlQ2:{opacity:.25}},...addPropertyOverrides({IMAHSmy2f:{animate:undefined,initial:undefined,optimized:undefined},sT6rOmlQ2:{animate:undefined,initial:undefined,optimized:undefined},xeCRtn92D:{initial:animation7}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sdnqg3\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"LcLDLaXT5\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(11, 74, 61, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(2, 181, 20, 0.16)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mcccrp-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"uKELzKtlV-container\",nodeId:\"uKELzKtlV\",rendersWithMotion:true,scopeId:\"gutWgbBOp\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgba(0, 92, 63, 0.79)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CalendarCheck\",id:\"uKELzKtlV\",layoutId:\"uKELzKtlV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14g07u1\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"lKaaSk50r\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-69cd2m\",\"data-framer-name\":\"Date\",layoutDependency:layoutDependency,layoutId:\"C6kKwQfpK\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-l6hkto-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"QAc2SRmN6-container\",nodeId:\"QAc2SRmN6\",rendersWithMotion:true,scopeId:\"gutWgbBOp\",children:/*#__PURE__*/_jsx(TimeDate,{color:\"rgba(6, 6, 6, 0.5)\",font:{fontFamily:'\"Studio Pro Medium\", \"Studio Pro Medium Placeholder\", sans-serif',fontSize:\"14px\",letterSpacing:\"0em\",lineHeight:\"150%\"},height:\"100%\",id:\"QAc2SRmN6\",layoutId:\"QAc2SRmN6\",monthFormat:\"short\",outputType:\"date\",showMinutes:true,showMonth:true,showSeconds:false,showWeekday:false,showYear:true,tabularFont:false,timeFormat:\"12h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gTWVkaXVt\",\"--framer-font-family\":'\"Studio Pro Medium\", \"Studio Pro Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(6, 6, 6, 0.5))\"},children:\" - \"})}),className:\"framer-1vpvk1i\",\"data-framer-name\":\"-\",fonts:[\"CUSTOM;Studio Pro Medium\"],layoutDependency:layoutDependency,layoutId:\"K_PoW9IYw\",style:{\"--extracted-r6o4lv\":\"rgba(6, 6, 6, 0.5)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gTWVkaXVt\",\"--framer-font-family\":'\"Studio Pro Medium\", \"Studio Pro Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(6, 6, 6, 0.5))\"},children:\"2:46 PM\"})}),className:\"framer-1jkpt1v\",\"data-framer-name\":\"Label\",fonts:[\"CUSTOM;Studio Pro Medium\"],layoutDependency:layoutDependency,layoutId:\"bLoyHpsAa\",style:{\"--extracted-r6o4lv\":\"rgba(6, 6, 6, 0.5)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ob8nn1\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"ULVXIahFd\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:[\"I booked a \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Studio Pro SemiBold\", \"Studio Pro SemiBold Placeholder\", sans-serif'},children:\"Senior Software Engineer Round 2 Technical Interview\"}),\" at 12pm on Monday with you and Ravi Ellis.\"]})}),className:\"framer-gjgrw8\",\"data-framer-name\":\"I completed a screening chat with Riley Q. for Senior Software Engineer.\",fonts:[\"CUSTOM;Studio Pro Regular\",\"CUSTOM;Studio Pro SemiBold\"],layoutDependency:layoutDependency,layoutId:\"iaKHTAu4H\",style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation8,className:\"framer-clmhj7\",\"data-framer-appear-id\":\"clmhj7\",\"data-framer-name\":\"5 Message\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"ITE0p7sbA\",optimized:true,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1},variants:{IMAHSmy2f:{opacity:0}},...addPropertyOverrides({IMAHSmy2f:{animate:undefined,initial:undefined,optimized:undefined},sT6rOmlQ2:{animate:animation4,initial:animation9}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rmcj5q\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"dOUwfMrd6\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(230, 149, 9, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(242, 194, 97, 0.31)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hummc8-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ex0zHdJGW-container\",nodeId:\"ex0zHdJGW\",rendersWithMotion:true,scopeId:\"gutWgbBOp\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(232, 144, 12)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"WarningCircle\",id:\"ex0zHdJGW\",layoutId:\"ex0zHdJGW\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-30y348\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"BaB2oHUWw\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ixiwyu\",\"data-framer-name\":\"Date\",layoutDependency:layoutDependency,layoutId:\"fWNc7ZInJ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9tqktw-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"kcf74rrLo-container\",nodeId:\"kcf74rrLo\",rendersWithMotion:true,scopeId:\"gutWgbBOp\",children:/*#__PURE__*/_jsx(TimeDate,{color:\"rgba(6, 6, 6, 0.5)\",font:{fontFamily:'\"Studio Pro Medium\", \"Studio Pro Medium Placeholder\", sans-serif',fontSize:\"14px\",letterSpacing:\"0em\",lineHeight:\"150%\"},height:\"100%\",id:\"kcf74rrLo\",layoutId:\"kcf74rrLo\",monthFormat:\"short\",outputType:\"date\",showMinutes:true,showMonth:true,showSeconds:false,showWeekday:false,showYear:true,tabularFont:false,timeFormat:\"12h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gTWVkaXVt\",\"--framer-font-family\":'\"Studio Pro Medium\", \"Studio Pro Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(6, 6, 6, 0.5))\"},children:\" - \"})}),className:\"framer-1t7p6j6\",\"data-framer-name\":\"-\",fonts:[\"CUSTOM;Studio Pro Medium\"],layoutDependency:layoutDependency,layoutId:\"jR6cjWsNe\",style:{\"--extracted-r6o4lv\":\"rgba(6, 6, 6, 0.5)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gTWVkaXVt\",\"--framer-font-family\":'\"Studio Pro Medium\", \"Studio Pro Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(6, 6, 6, 0.5))\"},children:\"3:14 PM\"})}),className:\"framer-1458jvq\",\"data-framer-name\":\"Label\",fonts:[\"CUSTOM;Studio Pro Medium\"],layoutDependency:layoutDependency,layoutId:\"jWcqlnopT\",style:{\"--extracted-r6o4lv\":\"rgba(6, 6, 6, 0.5)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Studio Pro SemiBold\", \"Studio Pro SemiBold Placeholder\", sans-serif'},children:\"Logan Harper\"}),\", for Sr. Software Engineer, is trying to drop out of the process since they have a competing offer. Mind reaching out to them?\"]})}),className:\"framer-17jgyq4\",\"data-framer-name\":\"Message\",fonts:[\"CUSTOM;Studio Pro Regular\",\"CUSTOM;Studio Pro SemiBold\"],layoutDependency:layoutDependency,layoutId:\"joSTEMmA6\",style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gsorkl\",\"data-framer-name\":\"Calendar\",layoutDependency:layoutDependency,layoutId:\"RpjOObOHc\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gaorwx\",\"data-border\":true,\"data-framer-name\":\"Frame 174\",layoutDependency:layoutDependency,layoutId:\"T5F4w6aPW\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(43, 125, 77)\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(236, 236, 236)\",borderBottomRightRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-zf4kbx\",\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"ikw0fwLbR\",style:{borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2LGKZbyj5QDt8V8bUNAfncKbY9A.png\"},className:\"framer-1ssoky6\",\"data-framer-name\":\"Headshot\",layoutDependency:layoutDependency,layoutId:\"I635:4433;623:7004\",...addPropertyOverrides({IMAHSmy2f:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||600)-512-701.25)/2+273+8)+20+0+241+10+10+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2LGKZbyj5QDt8V8bUNAfncKbY9A.png\"}},sT6rOmlQ2:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||600)-360-1105.25)/2+669+16)+20+0+241+10+10+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2LGKZbyj5QDt8V8bUNAfncKbY9A.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zmqg58\",\"data-framer-name\":\"Frame 166\",layoutDependency:layoutDependency,layoutId:\"Z2foJlf7r\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Studio Pro SemiBold\", \"Studio Pro SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"165%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(33, 32, 30))\"},children:\"Logan Harper\"})}),className:\"framer-19jqib1\",\"data-framer-name\":\"Logan Harper\",fonts:[\"CUSTOM;Studio Pro SemiBold\"],layoutDependency:layoutDependency,layoutId:\"EnSdbw2y0\",style:{\"--extracted-r6o4lv\":\"rgb(33, 32, 30)\",\"--framer-paragraph-spacing\":\"15px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-h43dhj\",\"data-framer-name\":\"Frame 165\",layoutDependency:layoutDependency,layoutId:\"US3YvUb4x\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(6, 6, 6, 0.7))\"},children:[\"Senior Software Engineer \",/*#__PURE__*/_jsx(motion.br,{}),\"Onsite Stage\"]})}),className:\"framer-4ab38y\",\"data-framer-name\":\"Senior Software Engineer \\u2028Onsite Stage\",fonts:[\"CUSTOM;Studio Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"oG6gR5MqR\",style:{\"--extracted-r6o4lv\":\"rgba(6, 6, 6, 0.7)\",\"--framer-paragraph-spacing\":\"13px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9Zr34.framer-1up9as4, .framer-9Zr34 .framer-1up9as4 { display: block; }\",\".framer-9Zr34.framer-fqnhoo { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-9Zr34 .framer-eht01p, .framer-9Zr34 .framer-ty7k55, .framer-9Zr34 .framer-1r9ae0j, .framer-9Zr34 .framer-clmhj7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-9Zr34 .framer-15xc9g2 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 34px); justify-content: center; overflow: hidden; padding: 4px; position: relative; width: 34px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9Zr34 .framer-3opitk-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); position: relative; width: 100%; }\",\".framer-9Zr34 .framer-tgyxc4, .framer-9Zr34 .framer-1xzjd95 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px 8px 0px 0px; position: relative; width: 1px; }\",\".framer-9Zr34 .framer-19vpdf2, .framer-9Zr34 .framer-1ikzs4b, .framer-9Zr34 .framer-69cd2m, .framer-9Zr34 .framer-ixiwyu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9Zr34 .framer-izg721-container, .framer-9Zr34 .framer-ilzxfy-container, .framer-9Zr34 .framer-l6hkto-container, .framer-9Zr34 .framer-9tqktw-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-9Zr34 .framer-bzuxwe, .framer-9Zr34 .framer-1m0qsiw, .framer-9Zr34 .framer-1vpvk1i, .framer-9Zr34 .framer-1t7p6j6, .framer-9Zr34 .framer-19jqib1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-9Zr34 .framer-xeqiib, .framer-9Zr34 .framer-1hreal6, .framer-9Zr34 .framer-1k3iwyh, .framer-9Zr34 .framer-nlqpss, .framer-9Zr34 .framer-1jkpt1v, .framer-9Zr34 .framer-1458jvq, .framer-9Zr34 .framer-4ab38y { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-9Zr34 .framer-1pg1r86, .framer-9Zr34 .framer-10v395t, .framer-9Zr34 .framer-x2bir0, .framer-9Zr34 .framer-z7heow, .framer-9Zr34 .framer-10ld4uj, .framer-9Zr34 .framer-gjgrw8, .framer-9Zr34 .framer-17jgyq4 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9Zr34 .framer-nomwdq, .framer-9Zr34 .framer-1gsorkl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-9Zr34 .framer-rxoj2h, .framer-9Zr34 .framer-1gaorwx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 12px 10px 12px; position: relative; width: 1px; }\",\".framer-9Zr34 .framer-qc7k5o, .framer-9Zr34 .framer-zf4kbx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9Zr34 .framer-1t8nzfo, .framer-9Zr34 .framer-1ssoky6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: 50px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 50px; }\",\".framer-9Zr34 .framer-anlhza, .framer-9Zr34 .framer-19o93gz, .framer-9Zr34 .framer-nrda8a, .framer-9Zr34 .framer-zmqg58 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-9Zr34 .framer-gbcs3g, .framer-9Zr34 .framer-i4661j, .framer-9Zr34 .framer-h43dhj { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9Zr34 .framer-qwfug2, .framer-9Zr34 .framer-1sdnqg3, .framer-9Zr34 .framer-1rmcj5q { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 24px); justify-content: center; overflow: hidden; padding: 4px; position: relative; width: 34px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9Zr34 .framer-t1vuy8-container, .framer-9Zr34 .framer-mcccrp-container, .framer-9Zr34 .framer-hummc8-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); position: relative; width: 100%; }\",\".framer-9Zr34 .framer-g0xlbs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 4px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-9Zr34 .framer-sia3s8 { 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: flex-start; overflow: hidden; padding: 10px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9Zr34 .framer-sqd9mh { 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: flex-start; overflow: hidden; padding: 10px 4px 10px 4px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9Zr34 .framer-14g07u1, .framer-9Zr34 .framer-30y348 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px 2px 0px 0px; position: relative; width: 1px; }\",\".framer-9Zr34 .framer-1ob8nn1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9Zr34.framer-fqnhoo, .framer-9Zr34 .framer-eht01p, .framer-9Zr34 .framer-15xc9g2, .framer-9Zr34 .framer-tgyxc4, .framer-9Zr34 .framer-19vpdf2, .framer-9Zr34 .framer-nomwdq, .framer-9Zr34 .framer-rxoj2h, .framer-9Zr34 .framer-qc7k5o, .framer-9Zr34 .framer-1t8nzfo, .framer-9Zr34 .framer-anlhza, .framer-9Zr34 .framer-gbcs3g, .framer-9Zr34 .framer-i4661j, .framer-9Zr34 .framer-ty7k55, .framer-9Zr34 .framer-qwfug2, .framer-9Zr34 .framer-1xzjd95, .framer-9Zr34 .framer-1ikzs4b, .framer-9Zr34 .framer-g0xlbs, .framer-9Zr34 .framer-sia3s8, .framer-9Zr34 .framer-19o93gz, .framer-9Zr34 .framer-sqd9mh, .framer-9Zr34 .framer-nrda8a, .framer-9Zr34 .framer-1r9ae0j, .framer-9Zr34 .framer-1sdnqg3, .framer-9Zr34 .framer-14g07u1, .framer-9Zr34 .framer-69cd2m, .framer-9Zr34 .framer-1ob8nn1, .framer-9Zr34 .framer-clmhj7, .framer-9Zr34 .framer-1rmcj5q, .framer-9Zr34 .framer-30y348, .framer-9Zr34 .framer-ixiwyu, .framer-9Zr34 .framer-1gsorkl, .framer-9Zr34 .framer-1gaorwx, .framer-9Zr34 .framer-zf4kbx, .framer-9Zr34 .framer-1ssoky6, .framer-9Zr34 .framer-zmqg58, .framer-9Zr34 .framer-h43dhj { gap: 0px; } .framer-9Zr34.framer-fqnhoo > *, .framer-9Zr34 .framer-tgyxc4 > *, .framer-9Zr34 .framer-1xzjd95 > *, .framer-9Zr34 .framer-14g07u1 > *, .framer-9Zr34 .framer-30y348 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-9Zr34.framer-fqnhoo > :first-child, .framer-9Zr34 .framer-15xc9g2 > :first-child, .framer-9Zr34 .framer-tgyxc4 > :first-child, .framer-9Zr34 .framer-anlhza > :first-child, .framer-9Zr34 .framer-qwfug2 > :first-child, .framer-9Zr34 .framer-1xzjd95 > :first-child, .framer-9Zr34 .framer-19o93gz > :first-child, .framer-9Zr34 .framer-nrda8a > :first-child, .framer-9Zr34 .framer-1sdnqg3 > :first-child, .framer-9Zr34 .framer-14g07u1 > :first-child, .framer-9Zr34 .framer-1ob8nn1 > :first-child, .framer-9Zr34 .framer-1rmcj5q > :first-child, .framer-9Zr34 .framer-30y348 > :first-child, .framer-9Zr34 .framer-zmqg58 > :first-child { margin-top: 0px; } .framer-9Zr34.framer-fqnhoo > :last-child, .framer-9Zr34 .framer-15xc9g2 > :last-child, .framer-9Zr34 .framer-tgyxc4 > :last-child, .framer-9Zr34 .framer-anlhza > :last-child, .framer-9Zr34 .framer-qwfug2 > :last-child, .framer-9Zr34 .framer-1xzjd95 > :last-child, .framer-9Zr34 .framer-19o93gz > :last-child, .framer-9Zr34 .framer-nrda8a > :last-child, .framer-9Zr34 .framer-1sdnqg3 > :last-child, .framer-9Zr34 .framer-14g07u1 > :last-child, .framer-9Zr34 .framer-1ob8nn1 > :last-child, .framer-9Zr34 .framer-1rmcj5q > :last-child, .framer-9Zr34 .framer-30y348 > :last-child, .framer-9Zr34 .framer-zmqg58 > :last-child { margin-bottom: 0px; } .framer-9Zr34 .framer-eht01p > *, .framer-9Zr34 .framer-ty7k55 > *, .framer-9Zr34 .framer-1r9ae0j > *, .framer-9Zr34 .framer-clmhj7 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-9Zr34 .framer-eht01p > :first-child, .framer-9Zr34 .framer-19vpdf2 > :first-child, .framer-9Zr34 .framer-nomwdq > :first-child, .framer-9Zr34 .framer-rxoj2h > :first-child, .framer-9Zr34 .framer-qc7k5o > :first-child, .framer-9Zr34 .framer-1t8nzfo > :first-child, .framer-9Zr34 .framer-gbcs3g > :first-child, .framer-9Zr34 .framer-i4661j > :first-child, .framer-9Zr34 .framer-ty7k55 > :first-child, .framer-9Zr34 .framer-1ikzs4b > :first-child, .framer-9Zr34 .framer-g0xlbs > :first-child, .framer-9Zr34 .framer-sia3s8 > :first-child, .framer-9Zr34 .framer-sqd9mh > :first-child, .framer-9Zr34 .framer-1r9ae0j > :first-child, .framer-9Zr34 .framer-69cd2m > :first-child, .framer-9Zr34 .framer-clmhj7 > :first-child, .framer-9Zr34 .framer-ixiwyu > :first-child, .framer-9Zr34 .framer-1gsorkl > :first-child, .framer-9Zr34 .framer-1gaorwx > :first-child, .framer-9Zr34 .framer-zf4kbx > :first-child, .framer-9Zr34 .framer-1ssoky6 > :first-child, .framer-9Zr34 .framer-h43dhj > :first-child { margin-left: 0px; } .framer-9Zr34 .framer-eht01p > :last-child, .framer-9Zr34 .framer-19vpdf2 > :last-child, .framer-9Zr34 .framer-nomwdq > :last-child, .framer-9Zr34 .framer-rxoj2h > :last-child, .framer-9Zr34 .framer-qc7k5o > :last-child, .framer-9Zr34 .framer-1t8nzfo > :last-child, .framer-9Zr34 .framer-gbcs3g > :last-child, .framer-9Zr34 .framer-i4661j > :last-child, .framer-9Zr34 .framer-ty7k55 > :last-child, .framer-9Zr34 .framer-1ikzs4b > :last-child, .framer-9Zr34 .framer-g0xlbs > :last-child, .framer-9Zr34 .framer-sia3s8 > :last-child, .framer-9Zr34 .framer-sqd9mh > :last-child, .framer-9Zr34 .framer-1r9ae0j > :last-child, .framer-9Zr34 .framer-69cd2m > :last-child, .framer-9Zr34 .framer-clmhj7 > :last-child, .framer-9Zr34 .framer-ixiwyu > :last-child, .framer-9Zr34 .framer-1gsorkl > :last-child, .framer-9Zr34 .framer-1gaorwx > :last-child, .framer-9Zr34 .framer-zf4kbx > :last-child, .framer-9Zr34 .framer-1ssoky6 > :last-child, .framer-9Zr34 .framer-h43dhj > :last-child { margin-right: 0px; } .framer-9Zr34 .framer-15xc9g2 > *, .framer-9Zr34 .framer-anlhza > *, .framer-9Zr34 .framer-qwfug2 > *, .framer-9Zr34 .framer-19o93gz > *, .framer-9Zr34 .framer-nrda8a > *, .framer-9Zr34 .framer-1sdnqg3 > *, .framer-9Zr34 .framer-1ob8nn1 > *, .framer-9Zr34 .framer-1rmcj5q > *, .framer-9Zr34 .framer-zmqg58 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9Zr34 .framer-19vpdf2 > *, .framer-9Zr34 .framer-1ikzs4b > *, .framer-9Zr34 .framer-69cd2m > *, .framer-9Zr34 .framer-ixiwyu > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-9Zr34 .framer-nomwdq > *, .framer-9Zr34 .framer-rxoj2h > *, .framer-9Zr34 .framer-1gsorkl > *, .framer-9Zr34 .framer-1gaorwx > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-9Zr34 .framer-qc7k5o > *, .framer-9Zr34 .framer-g0xlbs > *, .framer-9Zr34 .framer-sia3s8 > *, .framer-9Zr34 .framer-sqd9mh > *, .framer-9Zr34 .framer-zf4kbx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9Zr34 .framer-1t8nzfo > *, .framer-9Zr34 .framer-1ssoky6 > * { margin: 0px; margin-left: calc(13.541665077209473px / 2); margin-right: calc(13.541665077209473px / 2); } .framer-9Zr34 .framer-gbcs3g > *, .framer-9Zr34 .framer-i4661j > *, .framer-9Zr34 .framer-h43dhj > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-9Zr34.framer-v-hv0ohh.framer-fqnhoo { padding: 0px 0px 250px 0px; }\",\".framer-9Zr34.framer-v-hv0ohh .framer-qwfug2, .framer-9Zr34.framer-v-wii3v4 .framer-qwfug2, .framer-9Zr34.framer-v-wii3v4 .framer-1sdnqg3 { height: var(--framer-aspect-ratio-supported, 34px); }\",\".framer-9Zr34.framer-v-hv0ohh .framer-t1vuy8-container, .framer-9Zr34.framer-v-wii3v4 .framer-t1vuy8-container, .framer-9Zr34.framer-v-wii3v4 .framer-mcccrp-container { height: var(--framer-aspect-ratio-supported, 29px); }\",\".framer-9Zr34.framer-v-wii3v4.framer-fqnhoo { padding: 0px 0px 453px 0px; }\",\".framer-9Zr34.framer-v-153dpam.framer-fqnhoo { padding: 0px 0px 360px 0px; }\",\".framer-9Zr34.framer-v-1u7kk94.framer-fqnhoo { padding: 0px 0px 512px 0px; }\",'.framer-9Zr34[data-border=\"true\"]::after, .framer-9Zr34 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"fn8vOUnMi\":{\"layout\":[\"fixed\",\"fixed\"]},\"xeCRtn92D\":{\"layout\":[\"fixed\",\"fixed\"]},\"sT6rOmlQ2\":{\"layout\":[\"fixed\",\"fixed\"]},\"IMAHSmy2f\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramergutWgbBOp=withCSS(Component,css,\"framer-9Zr34\");export default FramergutWgbBOp;FramergutWgbBOp.displayName=\"Feature_Communicates\";FramergutWgbBOp.defaultProps={height:600,width:400};addPropertyControls(FramergutWgbBOp,{variant:{options:[\"BG2NjOLow\",\"fn8vOUnMi\",\"xeCRtn92D\",\"sT6rOmlQ2\",\"IMAHSmy2f\"],optionTitles:[\"Communicates 1\",\"Communicates 2\",\"Communicates 4\",\"Communicates 5\",\"Communicates 7\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramergutWgbBOp,[{explicitInter:true,fonts:[{family:\"Studio Pro Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/pnlRvRnLlHv3rl88nFLfCoM2WzI.woff2\"},{family:\"Studio Pro Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/O8KsND7pYcY7CsQIXFc82FRTQ0.woff2\"},{family:\"Studio Pro SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/XVSj2rqOvEKoEB5lDU52RnSjv78.woff2\"}]},...PhosphorFonts,...TimeDateFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergutWgbBOp\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fn8vOUnMi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xeCRtn92D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sT6rOmlQ2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IMAHSmy2f\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"600\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./gutWgbBOp.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"DluJZj1kU\",\"Vh_8hBl1F\",\"oG6WkoZCi\",\"foD80B3xQ\",\"Kv5Xm_LPl\",\"w9z0lt1KK\",\"fub0vvWkF\",\"gECBYZr6E\",\"q0drR9_1_\",\"ad3fYXm4m\"];const serializationHash=\"framer-EK99Z\";const variantClassNames={ad3fYXm4m:\"framer-v-wpwe10\",DluJZj1kU:\"framer-v-1xs74sc\",foD80B3xQ:\"framer-v-nehha0\",fub0vvWkF:\"framer-v-o6ud1i\",gECBYZr6E:\"framer-v-3ny71r\",Kv5Xm_LPl:\"framer-v-hsqust\",oG6WkoZCi:\"framer-v-1f5inqy\",q0drR9_1_:\"framer-v-141tk7m\",Vh_8hBl1F:\"framer-v-1jxscrw\",w9z0lt1KK:\"framer-v-b3n6id\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:.25,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Integrates 1\":\"DluJZj1kU\",\"Variant 10\":\"ad3fYXm4m\",\"Variant 2\":\"Vh_8hBl1F\",\"Variant 3\":\"oG6WkoZCi\",\"Variant 4\":\"foD80B3xQ\",\"Variant 5\":\"Kv5Xm_LPl\",\"Variant 6\":\"w9z0lt1KK\",\"Variant 7\":\"fub0vvWkF\",\"Variant 8\":\"gECBYZr6E\",\"Variant 9\":\"q0drR9_1_\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"DluJZj1kU\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"DluJZj1kU\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear11hgyda=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Vh_8hBl1F\",true),2500);});const onAppear661q57=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"oG6WkoZCi\",true),2500);});const onAppearvh1bej=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"foD80B3xQ\",true),2500);});const onAppear1x2mqv6=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Kv5Xm_LPl\",true),2500);});const onAppear16witxj=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"w9z0lt1KK\",true),2500);});const onAppear15f1ma7=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"fub0vvWkF\",true),2500);});const onAppearsjxe38=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"gECBYZr6E\",true),2500);});const onAppearg3gu6v=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"q0drR9_1_\",true),2500);});const onAppearjo21pa=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ad3fYXm4m\",true),2500);});const onAppear8sli0k=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Vh_8hBl1F\"),1);});useOnVariantChange(baseVariant,{ad3fYXm4m:onAppear8sli0k,default:onAppear11hgyda,foD80B3xQ:onAppear1x2mqv6,fub0vvWkF:onAppearsjxe38,gECBYZr6E:onAppearg3gu6v,Kv5Xm_LPl:onAppear16witxj,oG6WkoZCi:onAppearvh1bej,q0drR9_1_:onAppearjo21pa,Vh_8hBl1F:onAppear661q57,w9z0lt1KK:onAppear15f1ma7});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"Vh_8hBl1F\",\"oG6WkoZCi\",\"foD80B3xQ\",\"Kv5Xm_LPl\",\"w9z0lt1KK\",\"fub0vvWkF\",\"gECBYZr6E\",\"q0drR9_1_\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"oG6WkoZCi\",\"foD80B3xQ\",\"Kv5Xm_LPl\",\"w9z0lt1KK\",\"fub0vvWkF\",\"gECBYZr6E\",\"q0drR9_1_\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"foD80B3xQ\",\"Kv5Xm_LPl\",\"w9z0lt1KK\",\"fub0vvWkF\",\"gECBYZr6E\",\"q0drR9_1_\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"Kv5Xm_LPl\",\"w9z0lt1KK\",\"fub0vvWkF\",\"gECBYZr6E\",\"q0drR9_1_\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if([\"w9z0lt1KK\",\"fub0vvWkF\",\"gECBYZr6E\",\"q0drR9_1_\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if([\"fub0vvWkF\",\"gECBYZr6E\",\"q0drR9_1_\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if(baseVariant===\"gECBYZr6E\")return false;return true;};const isDisplayed7=()=>{if([\"Vh_8hBl1F\",\"oG6WkoZCi\",\"foD80B3xQ\",\"Kv5Xm_LPl\",\"w9z0lt1KK\",\"fub0vvWkF\",\"gECBYZr6E\"].includes(baseVariant))return true;return false;};const isDisplayed8=()=>{if([\"oG6WkoZCi\",\"foD80B3xQ\",\"Kv5Xm_LPl\",\"w9z0lt1KK\",\"fub0vvWkF\",\"gECBYZr6E\",\"q0drR9_1_\"].includes(baseVariant))return true;return false;};const isDisplayed9=()=>{if([\"foD80B3xQ\",\"Kv5Xm_LPl\",\"w9z0lt1KK\",\"fub0vvWkF\",\"gECBYZr6E\",\"q0drR9_1_\"].includes(baseVariant))return true;return false;};const isDisplayed10=()=>{if([\"Kv5Xm_LPl\",\"w9z0lt1KK\",\"fub0vvWkF\",\"gECBYZr6E\",\"q0drR9_1_\"].includes(baseVariant))return true;return false;};const isDisplayed11=()=>{if([\"w9z0lt1KK\",\"fub0vvWkF\",\"gECBYZr6E\",\"q0drR9_1_\"].includes(baseVariant))return true;return false;};const isDisplayed12=()=>{if([\"fub0vvWkF\",\"gECBYZr6E\",\"q0drR9_1_\"].includes(baseVariant))return true;return false;};const isDisplayed13=()=>{if([\"gECBYZr6E\",\"q0drR9_1_\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1xs74sc\",className,classNames),\"data-framer-name\":\"Integrates 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"DluJZj1kU\",ref:refBinding,style:{...style},...addPropertyOverrides({ad3fYXm4m:{\"data-framer-name\":\"Variant 10\"},foD80B3xQ:{\"data-framer-name\":\"Variant 4\"},fub0vvWkF:{\"data-framer-name\":\"Variant 7\"},gECBYZr6E:{\"data-framer-name\":\"Variant 8\"},Kv5Xm_LPl:{\"data-framer-name\":\"Variant 5\"},oG6WkoZCi:{\"data-framer-name\":\"Variant 3\"},q0drR9_1_:{\"data-framer-name\":\"Variant 9\"},Vh_8hBl1F:{\"data-framer-name\":\"Variant 2\"},w9z0lt1KK:{\"data-framer-name\":\"Variant 6\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12md6j8\",\"data-framer-name\":\"Google Meet\",layoutDependency:layoutDependency,layoutId:\"hzVBVIdAp\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:0},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-wa8022\",\"data-framer-name\":\"Avatar\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"iCS32MBTB\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_642_8553)\">\\n<path d=\"M22.626 19.9998L26.525 24.4007L31.7678 27.7092L32.682 20.0269L31.7678 12.5161L26.4244 15.4229L22.626 19.9998Z\" fill=\"#00832D\"/>\\n<path d=\"M0 26.9962V33.541C0 35.0373 1.22729 36.2493 2.74254 36.2493H9.37036L10.7416 31.3023L9.37036 26.9962L4.82231 25.6421L0 26.9962Z\" fill=\"#0066DA\"/>\\n<path d=\"M9.37036 3.75098L0 13.004L4.82231 14.3581L9.37036 13.004L10.7188 8.75666L9.37036 3.75098Z\" fill=\"#E94235\"/>\\n<path d=\"M9.37036 13.0039H0V26.9963H9.37036V13.0039Z\" fill=\"#2684FC\"/>\\n<path d=\"M37.7554 7.66877L31.7676 12.5165V27.7095L37.7829 32.5798C38.6833 33.2749 39.9998 32.6407 39.9998 31.5101V8.71594C39.9998 7.57173 38.6536 6.94432 37.7554 7.66877ZM22.6257 20.0002V26.9964H9.37012V36.2494H29.025C30.5403 36.2494 31.7676 35.0375 31.7676 33.5412V27.7095L22.6257 20.0002Z\" fill=\"#00AC47\"/>\\n<path d=\"M29.025 3.75073H9.37012V13.0038H22.6257V20L31.7676 12.5208V6.45894C31.7676 4.96266 30.5403 3.75073 29.025 3.75073Z\" fill=\"#FFBA00\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_642_8553\">\\n<rect width=\"40\" height=\"32.5\" fill=\"white\" transform=\"translate(0 3.75)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:\"Google meetings\"})}),className:\"framer-cq3ujt\",\"data-framer-name\":\"Google meetings\",fonts:[\"CUSTOM;Studio Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"nRjM6WZDX\",style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.25,animate:animation,className:\"framer-2ag5u6\",\"data-framer-appear-id\":\"2ag5u6\",\"data-framer-name\":\"Zoom\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"i6sAxqi2Z\",optimized:true,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:.25},variants:{Vh_8hBl1F:{opacity:0}},...addPropertyOverrides({ad3fYXm4m:{animate:undefined,initial:undefined,optimized:undefined},Vh_8hBl1F:{__targetOpacity:0,animate:animation2}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1rwg59c\",\"data-framer-name\":\"Zoom-app\",fill:\"black\",intrinsicHeight:2500,intrinsicWidth:2500,layoutDependency:layoutDependency,layoutId:\"yz2b3wRWn\",svg:'<svg fill=\"none\" height=\"2500\" width=\"2500\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50.667 50.667\"><path d=\"M25.333 50.667c13.992 0 25.334-11.343 25.334-25.334S39.325 0 25.333 0 0 11.342 0 25.333s11.342 25.334 25.333 25.334z\" fill=\"#2196f3\"/><path clip-rule=\"evenodd\" d=\"M14.866 32.574h16.755V20.288a3.35 3.35 0 0 0-3.351-3.351H11.515v12.286a3.35 3.35 0 0 0 3.351 3.351zm18.988-4.467 6.702 4.467V16.937l-6.701 4.468z\" fill=\"#fff\" fill-rule=\"evenodd\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:\"Zoom\"})}),className:\"framer-oqcd3e\",\"data-framer-name\":\"Google meetings\",fonts:[\"CUSTOM;Studio Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"gjfInPBbd\",style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-1hltmc7\",\"data-framer-appear-id\":\"1hltmc7\",\"data-framer-name\":\"Greenhouse\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"p0g1EM2eM\",optimized:true,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1},variants:{ad3fYXm4m:{opacity:1},oG6WkoZCi:{opacity:0},Vh_8hBl1F:{opacity:.25}},...addPropertyOverrides({ad3fYXm4m:{animate:undefined,initial:undefined,optimized:undefined},oG6WkoZCi:{animate:undefined,initial:undefined,optimized:undefined},Vh_8hBl1F:{animate:undefined,initial:undefined,optimized:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lxy1t2-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"eWuDTynyE-container\",nodeId:\"eWuDTynyE\",rendersWithMotion:true,scopeId:\"RSbJKCXDn\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(10, 168, 126)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Plugs\",id:\"eWuDTynyE\",layoutId:\"eWuDTynyE\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:\"Greenhouse API\"})}),className:\"framer-1jqun8p\",\"data-framer-name\":\"Greenhouse\",fonts:[\"CUSTOM;Studio Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"PEQvaDQqR\",style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-4eafgw\",\"data-framer-appear-id\":\"4eafgw\",\"data-framer-name\":\"Ashby\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"PLQhuyZdV\",optimized:true,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1},variants:{ad3fYXm4m:{opacity:1},foD80B3xQ:{opacity:0},oG6WkoZCi:{opacity:.25}},...addPropertyOverrides({ad3fYXm4m:{animate:undefined,initial:undefined,optimized:undefined},foD80B3xQ:{animate:undefined,initial:undefined,optimized:undefined},oG6WkoZCi:{animate:undefined,initial:undefined,optimized:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-pd0gez\",\"data-framer-name\":\"Avatar\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"aZGdL5wFB\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.9692 37.6574V39.1052H0V37.6574C3.10078 37.6574 4.34106 36.9649 5.45726 33.9433L17.1162 0.89502H22.6356L35.4729 33.9433C36.7132 37.0278 37.3332 37.6574 40 37.6574V39.1052H21.1829V37.6574C25.6468 37.6574 26.0234 37.2493 24.6823 33.9433L21.2714 24.8787H10.9148L7.87602 33.7544C6.98868 36.7571 7.18278 37.6574 11.9692 37.6574ZM15.8142 10.5263L11.597 22.9273H20.5273L15.8142 10.5263Z\" fill=\"#5246D8\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:\"Ashby\"})}),className:\"framer-1bq2wpc\",\"data-framer-name\":\"Ashby\",fonts:[\"CUSTOM;Studio Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"tBfjnjNJk\",style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-4x5umo\",\"data-framer-appear-id\":\"4x5umo\",\"data-framer-name\":\"Lever\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"psj5Gv8CI\",optimized:true,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1},variants:{ad3fYXm4m:{opacity:1},foD80B3xQ:{opacity:.25},Kv5Xm_LPl:{opacity:0}},...addPropertyOverrides({ad3fYXm4m:{animate:undefined,initial:undefined,optimized:undefined},foD80B3xQ:{animate:undefined,initial:undefined,optimized:undefined},Kv5Xm_LPl:{animate:undefined,initial:undefined,optimized:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-zxqu86\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:150,intrinsicWidth:150,layoutDependency:layoutDependency,layoutId:\"npVqUNhcu\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"logosandtypes_com\" viewBox=\"0 0 150 150.2\"><style>.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#afafaf}</style><g id=\"Layer_3_2_\"><g id=\"Layer_2_1_\"><path id=\"Layer_3\" d=\"M0 .2h150v150H0V.2z\" fill=\"none\"/></g></g><g id=\"lever\"><g id=\"Group-copy-6\"><path id=\"Triangle_47_copy_4-copy-2\" class=\"st1\" d=\"M99.8 106.3c1.6-1.5 4.2-1.5 5.8 0l22.3 20.9c1.6 1.5 1.1 2.7-1.2 2.7h-48c-2.3 0-2.8-1.2-1.2-2.7l22.3-20.9z\"/><path id=\"Path-copy-2\" d=\"M18.4 128.9 124.5 22.3c1.2 1.2 2.2 2.5 2.4 3.5L131 46c.5 2.3-.5 5.5-2.2 7.1l-74.5 73.7c-1.7 1.6-4.9 3-7.3 3l-26.9.3c-1.2.1-1.1-.2-1.7-1.2z\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" fill=\"#d9d9d9\"/><path id=\"Path_345_copy_7-copy-2\" class=\"st1\" d=\"M17.9 127v-26.1c0-2.4 1.3-5.6 3-7.3l73.5-74.7c1.6-1.7 4.8-2.6 7.1-2.2l20.2 4.1c1.1.2 2.3.9 3.2 1.8L19 129.9c-.7-.8-1.1-1.8-1.1-2.9z\"/></g></g></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:\"Lever\"})}),className:\"framer-wm4g6d\",\"data-framer-name\":\"Outlook\",fonts:[\"CUSTOM;Studio Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"X03qIp1GE\",style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-wi5ty\",\"data-framer-appear-id\":\"wi5ty\",\"data-framer-name\":\"Outlook\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"Aw7fhhcg0\",optimized:true,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1},variants:{ad3fYXm4m:{opacity:1},Kv5Xm_LPl:{opacity:.25},w9z0lt1KK:{opacity:0}},...addPropertyOverrides({ad3fYXm4m:{animate:undefined,initial:undefined,optimized:undefined},Kv5Xm_LPl:{animate:undefined,initial:undefined,optimized:undefined},w9z0lt1KK:{animate:undefined,initial:undefined,optimized:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1duqygi\",\"data-framer-name\":\"Avatar\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"fTiPEHgA1\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_642_8583)\">\\n<path d=\"M39.9992 20.9305C40.0014 20.6177 39.8397 20.3266 39.5731 20.1631H39.5685L39.5517 20.1538L25.6913 11.9491C25.6314 11.9087 25.5693 11.8717 25.5052 11.8384C24.9701 11.5623 24.3343 11.5623 23.7992 11.8384C23.7351 11.8717 23.673 11.9087 23.6131 11.9491L9.75269 20.1538L9.73596 20.1631C9.31234 20.4265 9.18247 20.9835 9.4459 21.4071C9.52352 21.5319 9.63043 21.6359 9.75735 21.71L23.6178 29.9147C23.6779 29.9548 23.74 29.9917 23.8039 30.0254C24.339 30.3015 24.9747 30.3015 25.5099 30.0254C25.5738 29.9917 25.6359 29.9548 25.696 29.9147L39.5564 21.71C39.8333 21.5486 40.0023 21.251 39.9992 20.9305Z\" fill=\"#0A2767\"/>\\n<path d=\"M11.3691 15.452H20.4649V23.7897H11.3691V15.452ZM38.1393 6.97666V3.1627C38.1611 2.20912 37.4064 1.41811 36.4528 1.39526H12.8491C11.8955 1.41811 11.1407 2.20912 11.1626 3.1627V6.97666L25.116 10.6976L38.1393 6.97666Z\" fill=\"#0364B8\"/>\\n<path d=\"M11.1631 6.97681H20.4654V15.3489H11.1631V6.97681Z\" fill=\"#0078D4\"/>\\n<path d=\"M29.7672 6.97681H20.4648V15.3489L29.7672 23.721H38.1393V15.3489L29.7672 6.97681Z\" fill=\"#28A8EA\"/>\\n<path d=\"M20.4648 15.3489H29.7672V23.721H20.4648V15.3489Z\" fill=\"#0078D4\"/>\\n<path d=\"M20.4648 23.7209H29.7672V32.093H20.4648V23.7209Z\" fill=\"#0364B8\"/>\\n<path d=\"M11.3682 23.7898H20.464V31.3693H11.3682V23.7898Z\" fill=\"#14447D\"/>\\n<path d=\"M29.7676 23.7209H38.1397V32.093H29.7676V23.7209Z\" fill=\"#0078D4\"/>\\n<path d=\"M39.5734 21.6588L39.5557 21.6681L25.6952 29.4634C25.6348 29.5006 25.5734 29.536 25.5092 29.5676C25.2738 29.6797 25.0181 29.743 24.7576 29.7537L24.0003 29.3109C23.9364 29.2788 23.8742 29.243 23.8143 29.2039L9.7678 21.1872H9.76129L9.30176 20.9304V36.7109C9.30892 37.7637 10.168 38.6115 11.2208 38.6048H38.1101C38.1259 38.6048 38.1399 38.5974 38.1566 38.5974C38.379 38.5832 38.5982 38.5374 38.8078 38.4616C38.8983 38.4232 38.9857 38.3778 39.0692 38.3258C39.1315 38.2904 39.2385 38.2132 39.2385 38.2132C39.715 37.8606 39.997 37.3037 39.9994 36.7109V20.9304C39.9991 21.2323 39.8363 21.5106 39.5734 21.6588Z\" fill=\"url(#paint0_linear_642_8583)\"/>\\n<path opacity=\"0.5\" d=\"M39.2548 20.868V21.8355L24.7618 31.8141L9.75714 21.1936C9.75714 21.1885 9.75296 21.1843 9.74783 21.1843L8.37109 20.3564V19.6587L8.93854 19.6494L10.1385 20.3378L10.1664 20.3471L10.2687 20.4122C10.2687 20.4122 24.3711 28.4587 24.4083 28.4773L24.9478 28.7936C24.9943 28.775 25.0408 28.7564 25.0966 28.7378C25.1245 28.7192 39.0966 20.8587 39.0966 20.8587L39.2548 20.868Z\" fill=\"#0A2767\"/>\\n<path d=\"M39.5733 21.6588L39.5557 21.669L25.6952 29.4644C25.6347 29.5016 25.5734 29.5369 25.5092 29.5685C24.9709 29.8315 24.3414 29.8315 23.8031 29.5685C23.7394 29.537 23.6773 29.5022 23.6171 29.4644L9.75664 21.669L9.7399 21.6588C9.4723 21.5137 9.30453 21.2348 9.30176 20.9304V36.7109C9.30842 37.7635 10.1672 38.6115 11.2198 38.6048C11.2198 38.6048 11.2199 38.6048 11.2199 38.6048H38.0813C39.1339 38.6115 39.9927 37.7636 39.9994 36.711C39.9994 36.711 39.9994 36.7109 39.9994 36.7109V20.9304C39.9991 21.2323 39.8363 21.5106 39.5733 21.6588Z\" fill=\"#1490DF\"/>\\n<path opacity=\"0.1\" d=\"M25.8971 29.3489L25.6897 29.4652C25.6295 29.5034 25.5674 29.5385 25.5036 29.5703C25.2751 29.6824 25.0266 29.7482 24.7725 29.7638L30.0459 36L39.245 38.2168C39.4971 38.0264 39.6976 37.776 39.8283 37.4884L25.8971 29.3489Z\" fill=\"black\"/>\\n<path opacity=\"0.05\" d=\"M26.8366 28.8206L25.6897 29.4652C25.6295 29.5035 25.5674 29.5386 25.5036 29.5703C25.2751 29.6825 25.0266 29.7483 24.7725 29.7638L27.2431 36.5759L39.2478 38.214C39.7207 37.859 39.9991 37.3022 39.9994 36.7108V36.507L26.8366 28.8206Z\" fill=\"black\"/>\\n<path d=\"M11.2459 38.6048H38.0785C38.4914 38.6069 38.894 38.4765 39.2273 38.2327L23.9994 29.3128C23.9354 29.2806 23.8733 29.2449 23.8134 29.2058L9.76686 21.189H9.76035L9.30176 20.9304V36.6569C9.30071 37.7317 10.1711 38.6038 11.2459 38.6048V38.6048Z\" fill=\"#28A8EA\"/>\\n<path opacity=\"0.1\" d=\"M22.325 10.5425V30.3844C22.3233 31.08 21.9003 31.7054 21.2552 31.9658C21.0554 32.0516 20.8402 32.096 20.6227 32.096H9.30176V9.76763H11.1622V8.8374H20.6227C21.5624 8.84096 22.323 9.60274 22.325 10.5425Z\" fill=\"black\"/>\\n<path opacity=\"0.2\" d=\"M21.3948 11.4725V31.3144C21.3971 31.5391 21.3495 31.7615 21.2552 31.9655C20.9969 32.6023 20.3796 33.02 19.6924 33.0232H9.30176V9.76741H19.6924C19.9624 9.7647 20.2284 9.83203 20.4645 9.96277C21.0348 10.2501 21.3946 10.834 21.3948 11.4725Z\" fill=\"black\"/>\\n<path opacity=\"0.2\" d=\"M21.3948 11.4725V29.4539C21.3902 30.3932 20.6318 31.1546 19.6925 31.1627H9.30176V9.76741H19.6924C19.9624 9.7647 20.2284 9.83203 20.4645 9.96277C21.0348 10.2501 21.3946 10.834 21.3948 11.4725Z\" fill=\"black\"/>\\n<path opacity=\"0.2\" d=\"M20.4645 11.4727V29.4541C20.4635 30.3949 19.703 31.1583 18.7622 31.1629H9.30176V9.76758H18.7622C19.7029 9.76808 20.465 10.5311 20.4645 11.4718C20.4645 11.4721 20.4645 11.4724 20.4645 11.4727Z\" fill=\"black\"/>\\n<path d=\"M1.70511 9.76758H18.76C19.7017 9.76758 20.4651 10.531 20.4651 11.4727V28.5276C20.4651 29.4693 19.7017 30.2327 18.76 30.2327H1.70511C0.763394 30.2327 0 29.4693 0 28.5276V11.4727C0 10.531 0.763416 9.76758 1.70511 9.76758Z\" fill=\"url(#paint1_linear_642_8583)\"/>\\n<path d=\"M5.32851 16.9191C5.74877 16.0238 6.4271 15.2744 7.27643 14.7675C8.21701 14.229 9.28794 13.9606 10.3713 13.9917C11.3754 13.9699 12.3662 14.2244 13.2355 14.7275C14.0528 15.2149 14.7111 15.9291 15.1304 16.7833C15.587 17.7246 15.8146 18.7605 15.7946 19.8066C15.8167 20.8997 15.5825 21.9829 15.1108 22.9693C14.6815 23.8541 14.0024 24.5937 13.1574 25.0968C12.2546 25.6152 11.227 25.8765 10.1862 25.8521C9.16065 25.8769 8.148 25.6195 7.25876 25.1079C6.43437 24.6199 5.76786 23.9049 5.33876 23.0484C4.8794 22.1207 4.64911 21.0964 4.66714 20.0614C4.648 18.9775 4.8741 17.9034 5.32851 16.9191ZM7.40479 21.9703C7.62886 22.5363 8.00883 23.0273 8.5006 23.3861C9.00151 23.7362 9.6013 23.9168 10.2122 23.9014C10.8628 23.9272 11.5041 23.7404 12.0392 23.3693C12.5248 23.0116 12.8947 22.5194 13.1034 21.9535C13.3366 21.3216 13.4517 20.6522 13.4429 19.9787C13.4501 19.2987 13.3419 18.6224 13.1229 17.9787C12.9295 17.3974 12.5714 16.8849 12.0922 16.5033C11.5706 16.1147 10.931 15.9176 10.2811 15.9452C9.6569 15.929 9.04367 16.111 8.52944 16.4652C8.02934 16.8255 7.64216 17.3208 7.41316 17.8931C6.90515 19.2048 6.90251 20.6585 7.40571 21.9721L7.40479 21.9703Z\" fill=\"white\"/>\\n<path d=\"M29.7676 6.97681H38.1397V15.3489H29.7676V6.97681Z\" fill=\"#50D9FF\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_642_8583\" x1=\"24.6506\" y1=\"20.9304\" x2=\"24.6506\" y2=\"38.6049\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#35B8F1\"/>\\n<stop offset=\"1\" stop-color=\"#28A8EA\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_642_8583\" x1=\"3.5552\" y1=\"8.43524\" x2=\"16.9099\" y2=\"31.565\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1784D9\"/>\\n<stop offset=\"0.5\" stop-color=\"#107AD5\"/>\\n<stop offset=\"1\" stop-color=\"#0A63C9\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_642_8583\">\\n<rect width=\"40\" height=\"37.2093\" fill=\"white\" transform=\"translate(0 1.39526)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:\"Outlook\"})}),className:\"framer-1ddcph5\",\"data-framer-name\":\"Outlook\",fonts:[\"CUSTOM;Studio Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"X5xax8QnH\",style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-j12ojo\",\"data-framer-appear-id\":\"j12ojo\",\"data-framer-name\":\"Google\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"AACeoYzpB\",optimized:true,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1},variants:{ad3fYXm4m:{opacity:1},fub0vvWkF:{opacity:0},q0drR9_1_:{opacity:1},w9z0lt1KK:{opacity:.25}},...addPropertyOverrides({ad3fYXm4m:{animate:undefined,initial:undefined,optimized:undefined},fub0vvWkF:{animate:undefined,initial:undefined,optimized:undefined},w9z0lt1KK:{animate:undefined,initial:undefined,optimized:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-es8ys7\",\"data-framer-name\":\"Avatar\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"ir1yH7beS\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_642_8524)\">\\n<path d=\"M30.5274 9.47388H9.47481L9.47461 30.5267H30.5274V9.47388Z\" fill=\"white\"/>\\n<path d=\"M13.7931 25.8054C13.0063 25.2738 12.4615 24.4976 12.1641 23.4712L13.9905 22.7186C14.1563 23.3502 14.4457 23.8396 14.8589 24.187C15.2695 24.5344 15.7695 24.7054 16.3537 24.7054C16.9511 24.7054 17.4643 24.5238 17.8931 24.1606C18.3219 23.7974 18.5379 23.3342 18.5379 22.7738C18.5379 22.2002 18.3115 21.7316 17.8589 21.3686C17.4063 21.0056 16.8379 20.8238 16.1589 20.8238H15.1037V19.016H16.0509C16.6351 19.016 17.1273 18.8582 17.5273 18.5424C17.9273 18.2266 18.1273 17.795 18.1273 17.245C18.1273 16.7556 17.9483 16.366 17.5905 16.074C17.2327 15.782 16.7799 15.6346 16.2299 15.6346C15.6931 15.6346 15.2667 15.7768 14.9509 16.0636C14.6351 16.3504 14.4061 16.703 14.2615 17.1188L12.4537 16.3662C12.6931 15.6872 13.1327 15.0872 13.7773 14.5688C14.4221 14.0504 15.2457 13.7898 16.2457 13.7898C16.9851 13.7898 17.6509 13.932 18.2405 14.2188C18.8299 14.5056 19.2931 14.903 19.6273 15.4082C19.9615 15.916 20.1273 16.4846 20.1273 17.116C20.1273 17.7608 19.9721 18.3054 19.6615 18.7528C19.3509 19.2002 18.9693 19.5422 18.5167 19.7818V19.8896C19.1141 20.1396 19.6009 20.5212 19.9851 21.0344C20.3667 21.5476 20.5587 22.1608 20.5587 22.8766C20.5587 23.5924 20.3771 24.2318 20.0139 24.7924C19.6507 25.353 19.1481 25.795 18.5113 26.116C17.8719 26.437 17.1535 26.6002 16.3561 26.6002C15.4325 26.6028 14.5799 26.337 13.7931 25.8054Z\" fill=\"#1A73E8\"/>\\n<path d=\"M24.9984 16.7422L23.0036 18.1922L22.001 16.6712L25.5984 14.0764H26.9774V26.3158H24.9984V16.7422Z\" fill=\"#1A73E8\"/>\\n<path d=\"M30.5254 40L39.999 30.5264L35.1698 30.5264L30.5254 30.5264L30.5255 35.1556L30.5254 40Z\" fill=\"#EA4335\"/>\\n<path d=\"M9.47464 40H30.5272V30.5264H9.47464V40Z\" fill=\"#34A853\"/>\\n<path d=\"M3.1578 0C1.4132 0 0 1.4132 0 3.1578V30.5262H9.4736V9.4736H30.5262L30.5264 0H3.1578Z\" fill=\"#4285F4\"/>\\n<path d=\"M0 30.5264V36.8422C0 38.587 1.4132 40 3.1578 40H9.4736V30.5264H0Z\" fill=\"#188038\"/>\\n<path d=\"M30.5254 9.47388V30.5265H39.999V9.47388H30.5254Z\" fill=\"#FBBC04\"/>\\n<path d=\"M39.999 9.4736V3.1578C39.999 1.413 38.5858 0 36.8412 0H30.5254V9.4736H39.999Z\" fill=\"#1967D2\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_642_8524\">\\n<rect width=\"40\" height=\"40\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:\"Google Calendar\"})}),className:\"framer-thvbmx\",\"data-framer-name\":\"Google calendar\",fonts:[\"CUSTOM;Studio Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"F8u5e6lBq\",style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed7()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-1804ac1\",\"data-framer-appear-id\":\"1804ac1\",\"data-framer-name\":\"Slack\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"ps7uzplcg\",optimized:true,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1},variants:{fub0vvWkF:{opacity:.25},gECBYZr6E:{opacity:0}},...addPropertyOverrides({fub0vvWkF:{animate:undefined,initial:undefined,optimized:undefined},gECBYZr6E:{animate:undefined,initial:undefined,optimized:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2452.5,intrinsicWidth:2448,pixelHeight:4905,pixelWidth:4896,sizes:\"40px\",src:\"https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=1024 1022w,https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=2048 2044w,https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=4096 4088w,https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png 4896w\"},className:\"framer-32ufgl\",\"data-framer-name\":\"Slack-new-logo 1\",layoutDependency:layoutDependency,layoutId:\"vN16VhNBd\",...addPropertyOverrides({foD80B3xQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2452.5,intrinsicWidth:2448,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||600)-100-1217)/2+668+32)+63.5),pixelHeight:4905,pixelWidth:4896,sizes:\"40px\",src:\"https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=1024 1022w,https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=2048 2044w,https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=4096 4088w,https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png 4896w\"}},fub0vvWkF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2452.5,intrinsicWidth:2448,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||600)-100-1231)/2+167+8)+63.5),pixelHeight:4905,pixelWidth:4896,sizes:\"40px\",src:\"https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=1024 1022w,https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=2048 2044w,https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=4096 4088w,https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png 4896w\"}},gECBYZr6E:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2452.5,intrinsicWidth:2448,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||600)-100-1231)/2+0+0)+63.5),pixelHeight:4905,pixelWidth:4896,sizes:\"40px\",src:\"https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=1024 1022w,https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=2048 2044w,https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=4096 4088w,https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png 4896w\"}},Kv5Xm_LPl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2452.5,intrinsicWidth:2448,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||600)-100-1231)/2+501+24)+63.5),pixelHeight:4905,pixelWidth:4896,sizes:\"40px\",src:\"https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=1024 1022w,https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=2048 2044w,https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=4096 4088w,https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png 4896w\"}},oG6WkoZCi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2452.5,intrinsicWidth:2448,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||600)-100-1231)/2+849+40)+63.5),pixelHeight:4905,pixelWidth:4896,sizes:\"40px\",src:\"https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=1024 1022w,https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=2048 2044w,https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=4096 4088w,https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png 4896w\"}},Vh_8hBl1F:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2452.5,intrinsicWidth:2448,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||600)-100-1231)/2+1016+48)+63.5),pixelHeight:4905,pixelWidth:4896,sizes:\"40px\",src:\"https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=1024 1022w,https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=2048 2044w,https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=4096 4088w,https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png 4896w\"}},w9z0lt1KK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2452.5,intrinsicWidth:2448,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||600)-100-1231)/2+334+16)+63.5),pixelHeight:4905,pixelWidth:4896,sizes:\"40px\",src:\"https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=1024 1022w,https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=2048 2044w,https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png?scale-down-to=4096 4088w,https://framerusercontent.com/images/F8CKrKN4eVgQeTw3k3qIE4a5cJA.png 4896w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:\"Slack\"})}),className:\"framer-vqse3x\",\"data-framer-name\":\"Slack\",fonts:[\"CUSTOM;Studio Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"holqtJeiZ\",style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed8()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-nfbdxq\",\"data-framer-appear-id\":\"nfbdxq\",\"data-framer-name\":\"Google Meet\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"rS5doMBfY\",optimized:true,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1},variants:{gECBYZr6E:{opacity:.25},q0drR9_1_:{opacity:0}},...addPropertyOverrides({gECBYZr6E:{animate:undefined,initial:undefined,optimized:undefined},q0drR9_1_:{animate:undefined,initial:undefined,optimized:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-13672ip\",\"data-framer-name\":\"Avatar\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"W6tMPdmUN\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_642_8553)\">\\n<path d=\"M22.626 19.9998L26.525 24.4007L31.7678 27.7092L32.682 20.0269L31.7678 12.5161L26.4244 15.4229L22.626 19.9998Z\" fill=\"#00832D\"/>\\n<path d=\"M0 26.9962V33.541C0 35.0373 1.22729 36.2493 2.74254 36.2493H9.37036L10.7416 31.3023L9.37036 26.9962L4.82231 25.6421L0 26.9962Z\" fill=\"#0066DA\"/>\\n<path d=\"M9.37036 3.75098L0 13.004L4.82231 14.3581L9.37036 13.004L10.7188 8.75666L9.37036 3.75098Z\" fill=\"#E94235\"/>\\n<path d=\"M9.37036 13.0039H0V26.9963H9.37036V13.0039Z\" fill=\"#2684FC\"/>\\n<path d=\"M37.7554 7.66877L31.7676 12.5165V27.7095L37.7829 32.5798C38.6833 33.2749 39.9998 32.6407 39.9998 31.5101V8.71594C39.9998 7.57173 38.6536 6.94432 37.7554 7.66877ZM22.6257 20.0002V26.9964H9.37012V36.2494H29.025C30.5403 36.2494 31.7676 35.0375 31.7676 33.5412V27.7095L22.6257 20.0002Z\" fill=\"#00AC47\"/>\\n<path d=\"M29.025 3.75073H9.37012V13.0038H22.6257V20L31.7676 12.5208V6.45894C31.7676 4.96266 30.5403 3.75073 29.025 3.75073Z\" fill=\"#FFBA00\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_642_8553\">\\n<rect width=\"40\" height=\"32.5\" fill=\"white\" transform=\"translate(0 3.75)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:\"Google Meet\"})}),className:\"framer-byburt\",\"data-framer-name\":\"Google Meet\",fonts:[\"CUSTOM;Studio Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"LZOtI9ORu\",style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed9()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-od4g2i\",\"data-framer-appear-id\":\"od4g2i\",\"data-framer-name\":\"Zoom\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"diyrafPrC\",optimized:true,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1},variants:{q0drR9_1_:{opacity:.25}},...addPropertyOverrides({q0drR9_1_:{animate:undefined,initial:undefined,optimized:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-irriyh\",\"data-framer-name\":\"Zoom-app\",fill:\"black\",intrinsicHeight:2500,intrinsicWidth:2500,layoutDependency:layoutDependency,layoutId:\"wbCggJehc\",svg:'<svg fill=\"none\" height=\"2500\" width=\"2500\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50.667 50.667\"><path d=\"M25.333 50.667c13.992 0 25.334-11.343 25.334-25.334S39.325 0 25.333 0 0 11.342 0 25.333s11.342 25.334 25.333 25.334z\" fill=\"#2196f3\"/><path clip-rule=\"evenodd\" d=\"M14.866 32.574h16.755V20.288a3.35 3.35 0 0 0-3.351-3.351H11.515v12.286a3.35 3.35 0 0 0 3.351 3.351zm18.988-4.467 6.702 4.467V16.937l-6.701 4.468z\" fill=\"#fff\" fill-rule=\"evenodd\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:\"Zoom\"})}),className:\"framer-xh5b8\",\"data-framer-name\":\"Google meetings\",fonts:[\"CUSTOM;Studio Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"TWLBOCz8I\",style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed10()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-sub455\",\"data-framer-appear-id\":\"sub455\",\"data-framer-name\":\"Greenhouse\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"Hj58Rlt5v\",optimized:true,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mk31sz-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"e6S3tSSFV-container\",nodeId:\"e6S3tSSFV\",rendersWithMotion:true,scopeId:\"RSbJKCXDn\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(10, 168, 126)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Plugs\",id:\"e6S3tSSFV\",layoutId:\"e6S3tSSFV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:\"Greenhouse API\"})}),className:\"framer-1df3p2w\",\"data-framer-name\":\"Greenhouse\",fonts:[\"CUSTOM;Studio Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"pXuiV7OUm\",style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed11()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-1xgn42d\",\"data-framer-appear-id\":\"1xgn42d\",\"data-framer-name\":\"Ashby\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"uUFkgb6Fo\",optimized:true,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1i48oz2\",\"data-framer-name\":\"Avatar\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"zRpbyh4_P\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.9692 37.6574V39.1052H0V37.6574C3.10078 37.6574 4.34106 36.9649 5.45726 33.9433L17.1162 0.89502H22.6356L35.4729 33.9433C36.7132 37.0278 37.3332 37.6574 40 37.6574V39.1052H21.1829V37.6574C25.6468 37.6574 26.0234 37.2493 24.6823 33.9433L21.2714 24.8787H10.9148L7.87602 33.7544C6.98868 36.7571 7.18278 37.6574 11.9692 37.6574ZM15.8142 10.5263L11.597 22.9273H20.5273L15.8142 10.5263Z\" fill=\"#5246D8\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:\"Ashby\"})}),className:\"framer-1t8up62\",\"data-framer-name\":\"Ashby\",fonts:[\"CUSTOM;Studio Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"qggscFibF\",style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed12()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-1np624l\",\"data-framer-appear-id\":\"1np624l\",\"data-framer-name\":\"Lever\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"RgKzLtn_r\",optimized:true,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-xoio6c\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:150,intrinsicWidth:150,layoutDependency:layoutDependency,layoutId:\"c8RWLpW3R\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"logosandtypes_com\" viewBox=\"0 0 150 150.2\"><style>.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#afafaf}</style><g id=\"Layer_3_2_\"><g id=\"Layer_2_1_\"><path id=\"Layer_3\" d=\"M0 .2h150v150H0V.2z\" fill=\"none\"/></g></g><g id=\"lever\"><g id=\"Group-copy-6\"><path id=\"Triangle_47_copy_4-copy-2\" class=\"st1\" d=\"M99.8 106.3c1.6-1.5 4.2-1.5 5.8 0l22.3 20.9c1.6 1.5 1.1 2.7-1.2 2.7h-48c-2.3 0-2.8-1.2-1.2-2.7l22.3-20.9z\"/><path id=\"Path-copy-2\" d=\"M18.4 128.9 124.5 22.3c1.2 1.2 2.2 2.5 2.4 3.5L131 46c.5 2.3-.5 5.5-2.2 7.1l-74.5 73.7c-1.7 1.6-4.9 3-7.3 3l-26.9.3c-1.2.1-1.1-.2-1.7-1.2z\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" fill=\"#d9d9d9\"/><path id=\"Path_345_copy_7-copy-2\" class=\"st1\" d=\"M17.9 127v-26.1c0-2.4 1.3-5.6 3-7.3l73.5-74.7c1.6-1.7 4.8-2.6 7.1-2.2l20.2 4.1c1.1.2 2.3.9 3.2 1.8L19 129.9c-.7-.8-1.1-1.8-1.1-2.9z\"/></g></g></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:\"Lever\"})}),className:\"framer-1g2rt6l\",\"data-framer-name\":\"Outlook\",fonts:[\"CUSTOM;Studio Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"ieQ6iunoz\",style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed13()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-3bneq5\",\"data-framer-appear-id\":\"3bneq5\",\"data-framer-name\":\"Outlook\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"Y1hhkzMFZ\",optimized:true,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1967my7\",\"data-framer-name\":\"Avatar\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"eV3iVSwVh\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_642_8583)\">\\n<path d=\"M39.9992 20.9305C40.0014 20.6177 39.8397 20.3266 39.5731 20.1631H39.5685L39.5517 20.1538L25.6913 11.9491C25.6314 11.9087 25.5693 11.8717 25.5052 11.8384C24.9701 11.5623 24.3343 11.5623 23.7992 11.8384C23.7351 11.8717 23.673 11.9087 23.6131 11.9491L9.75269 20.1538L9.73596 20.1631C9.31234 20.4265 9.18247 20.9835 9.4459 21.4071C9.52352 21.5319 9.63043 21.6359 9.75735 21.71L23.6178 29.9147C23.6779 29.9548 23.74 29.9917 23.8039 30.0254C24.339 30.3015 24.9747 30.3015 25.5099 30.0254C25.5738 29.9917 25.6359 29.9548 25.696 29.9147L39.5564 21.71C39.8333 21.5486 40.0023 21.251 39.9992 20.9305Z\" fill=\"#0A2767\"/>\\n<path d=\"M11.3691 15.452H20.4649V23.7897H11.3691V15.452ZM38.1393 6.97666V3.1627C38.1611 2.20912 37.4064 1.41811 36.4528 1.39526H12.8491C11.8955 1.41811 11.1407 2.20912 11.1626 3.1627V6.97666L25.116 10.6976L38.1393 6.97666Z\" fill=\"#0364B8\"/>\\n<path d=\"M11.1631 6.97681H20.4654V15.3489H11.1631V6.97681Z\" fill=\"#0078D4\"/>\\n<path d=\"M29.7672 6.97681H20.4648V15.3489L29.7672 23.721H38.1393V15.3489L29.7672 6.97681Z\" fill=\"#28A8EA\"/>\\n<path d=\"M20.4648 15.3489H29.7672V23.721H20.4648V15.3489Z\" fill=\"#0078D4\"/>\\n<path d=\"M20.4648 23.7209H29.7672V32.093H20.4648V23.7209Z\" fill=\"#0364B8\"/>\\n<path d=\"M11.3682 23.7898H20.464V31.3693H11.3682V23.7898Z\" fill=\"#14447D\"/>\\n<path d=\"M29.7676 23.7209H38.1397V32.093H29.7676V23.7209Z\" fill=\"#0078D4\"/>\\n<path d=\"M39.5734 21.6588L39.5557 21.6681L25.6952 29.4634C25.6348 29.5006 25.5734 29.536 25.5092 29.5676C25.2738 29.6797 25.0181 29.743 24.7576 29.7537L24.0003 29.3109C23.9364 29.2788 23.8742 29.243 23.8143 29.2039L9.7678 21.1872H9.76129L9.30176 20.9304V36.7109C9.30892 37.7637 10.168 38.6115 11.2208 38.6048H38.1101C38.1259 38.6048 38.1399 38.5974 38.1566 38.5974C38.379 38.5832 38.5982 38.5374 38.8078 38.4616C38.8983 38.4232 38.9857 38.3778 39.0692 38.3258C39.1315 38.2904 39.2385 38.2132 39.2385 38.2132C39.715 37.8606 39.997 37.3037 39.9994 36.7109V20.9304C39.9991 21.2323 39.8363 21.5106 39.5734 21.6588Z\" fill=\"url(#paint0_linear_642_8583)\"/>\\n<path opacity=\"0.5\" d=\"M39.2548 20.868V21.8355L24.7618 31.8141L9.75714 21.1936C9.75714 21.1885 9.75296 21.1843 9.74783 21.1843L8.37109 20.3564V19.6587L8.93854 19.6494L10.1385 20.3378L10.1664 20.3471L10.2687 20.4122C10.2687 20.4122 24.3711 28.4587 24.4083 28.4773L24.9478 28.7936C24.9943 28.775 25.0408 28.7564 25.0966 28.7378C25.1245 28.7192 39.0966 20.8587 39.0966 20.8587L39.2548 20.868Z\" fill=\"#0A2767\"/>\\n<path d=\"M39.5733 21.6588L39.5557 21.669L25.6952 29.4644C25.6347 29.5016 25.5734 29.5369 25.5092 29.5685C24.9709 29.8315 24.3414 29.8315 23.8031 29.5685C23.7394 29.537 23.6773 29.5022 23.6171 29.4644L9.75664 21.669L9.7399 21.6588C9.4723 21.5137 9.30453 21.2348 9.30176 20.9304V36.7109C9.30842 37.7635 10.1672 38.6115 11.2198 38.6048C11.2198 38.6048 11.2199 38.6048 11.2199 38.6048H38.0813C39.1339 38.6115 39.9927 37.7636 39.9994 36.711C39.9994 36.711 39.9994 36.7109 39.9994 36.7109V20.9304C39.9991 21.2323 39.8363 21.5106 39.5733 21.6588Z\" fill=\"#1490DF\"/>\\n<path opacity=\"0.1\" d=\"M25.8971 29.3489L25.6897 29.4652C25.6295 29.5034 25.5674 29.5385 25.5036 29.5703C25.2751 29.6824 25.0266 29.7482 24.7725 29.7638L30.0459 36L39.245 38.2168C39.4971 38.0264 39.6976 37.776 39.8283 37.4884L25.8971 29.3489Z\" fill=\"black\"/>\\n<path opacity=\"0.05\" d=\"M26.8366 28.8206L25.6897 29.4652C25.6295 29.5035 25.5674 29.5386 25.5036 29.5703C25.2751 29.6825 25.0266 29.7483 24.7725 29.7638L27.2431 36.5759L39.2478 38.214C39.7207 37.859 39.9991 37.3022 39.9994 36.7108V36.507L26.8366 28.8206Z\" fill=\"black\"/>\\n<path d=\"M11.2459 38.6048H38.0785C38.4914 38.6069 38.894 38.4765 39.2273 38.2327L23.9994 29.3128C23.9354 29.2806 23.8733 29.2449 23.8134 29.2058L9.76686 21.189H9.76035L9.30176 20.9304V36.6569C9.30071 37.7317 10.1711 38.6038 11.2459 38.6048V38.6048Z\" fill=\"#28A8EA\"/>\\n<path opacity=\"0.1\" d=\"M22.325 10.5425V30.3844C22.3233 31.08 21.9003 31.7054 21.2552 31.9658C21.0554 32.0516 20.8402 32.096 20.6227 32.096H9.30176V9.76763H11.1622V8.8374H20.6227C21.5624 8.84096 22.323 9.60274 22.325 10.5425Z\" fill=\"black\"/>\\n<path opacity=\"0.2\" d=\"M21.3948 11.4725V31.3144C21.3971 31.5391 21.3495 31.7615 21.2552 31.9655C20.9969 32.6023 20.3796 33.02 19.6924 33.0232H9.30176V9.76741H19.6924C19.9624 9.7647 20.2284 9.83203 20.4645 9.96277C21.0348 10.2501 21.3946 10.834 21.3948 11.4725Z\" fill=\"black\"/>\\n<path opacity=\"0.2\" d=\"M21.3948 11.4725V29.4539C21.3902 30.3932 20.6318 31.1546 19.6925 31.1627H9.30176V9.76741H19.6924C19.9624 9.7647 20.2284 9.83203 20.4645 9.96277C21.0348 10.2501 21.3946 10.834 21.3948 11.4725Z\" fill=\"black\"/>\\n<path opacity=\"0.2\" d=\"M20.4645 11.4727V29.4541C20.4635 30.3949 19.703 31.1583 18.7622 31.1629H9.30176V9.76758H18.7622C19.7029 9.76808 20.465 10.5311 20.4645 11.4718C20.4645 11.4721 20.4645 11.4724 20.4645 11.4727Z\" fill=\"black\"/>\\n<path d=\"M1.70511 9.76758H18.76C19.7017 9.76758 20.4651 10.531 20.4651 11.4727V28.5276C20.4651 29.4693 19.7017 30.2327 18.76 30.2327H1.70511C0.763394 30.2327 0 29.4693 0 28.5276V11.4727C0 10.531 0.763416 9.76758 1.70511 9.76758Z\" fill=\"url(#paint1_linear_642_8583)\"/>\\n<path d=\"M5.32851 16.9191C5.74877 16.0238 6.4271 15.2744 7.27643 14.7675C8.21701 14.229 9.28794 13.9606 10.3713 13.9917C11.3754 13.9699 12.3662 14.2244 13.2355 14.7275C14.0528 15.2149 14.7111 15.9291 15.1304 16.7833C15.587 17.7246 15.8146 18.7605 15.7946 19.8066C15.8167 20.8997 15.5825 21.9829 15.1108 22.9693C14.6815 23.8541 14.0024 24.5937 13.1574 25.0968C12.2546 25.6152 11.227 25.8765 10.1862 25.8521C9.16065 25.8769 8.148 25.6195 7.25876 25.1079C6.43437 24.6199 5.76786 23.9049 5.33876 23.0484C4.8794 22.1207 4.64911 21.0964 4.66714 20.0614C4.648 18.9775 4.8741 17.9034 5.32851 16.9191ZM7.40479 21.9703C7.62886 22.5363 8.00883 23.0273 8.5006 23.3861C9.00151 23.7362 9.6013 23.9168 10.2122 23.9014C10.8628 23.9272 11.5041 23.7404 12.0392 23.3693C12.5248 23.0116 12.8947 22.5194 13.1034 21.9535C13.3366 21.3216 13.4517 20.6522 13.4429 19.9787C13.4501 19.2987 13.3419 18.6224 13.1229 17.9787C12.9295 17.3974 12.5714 16.8849 12.0922 16.5033C11.5706 16.1147 10.931 15.9176 10.2811 15.9452C9.6569 15.929 9.04367 16.111 8.52944 16.4652C8.02934 16.8255 7.64216 17.3208 7.41316 17.8931C6.90515 19.2048 6.90251 20.6585 7.40571 21.9721L7.40479 21.9703Z\" fill=\"white\"/>\\n<path d=\"M29.7676 6.97681H38.1397V15.3489H29.7676V6.97681Z\" fill=\"#50D9FF\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_642_8583\" x1=\"24.6506\" y1=\"20.9304\" x2=\"24.6506\" y2=\"38.6049\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#35B8F1\"/>\\n<stop offset=\"1\" stop-color=\"#28A8EA\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_642_8583\" x1=\"3.5552\" y1=\"8.43524\" x2=\"16.9099\" y2=\"31.565\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1784D9\"/>\\n<stop offset=\"0.5\" stop-color=\"#107AD5\"/>\\n<stop offset=\"1\" stop-color=\"#0A63C9\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_642_8583\">\\n<rect width=\"40\" height=\"37.2093\" fill=\"white\" transform=\"translate(0 1.39526)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:\"Outlook\"})}),className:\"framer-1crcq2f\",\"data-framer-name\":\"Outlook\",fonts:[\"CUSTOM;Studio Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"IQmg5W2Bx\",style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EK99Z.framer-10dmwnz, .framer-EK99Z .framer-10dmwnz { display: block; }\",\".framer-EK99Z.framer-1xs74sc { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 600px; justify-content: center; overflow: hidden; padding: 0px 0px 100px 0px; position: relative; width: 400px; }\",\".framer-EK99Z .framer-12md6j8, .framer-EK99Z .framer-2ag5u6, .framer-EK99Z .framer-1hltmc7, .framer-EK99Z .framer-4eafgw, .framer-EK99Z .framer-4x5umo, .framer-EK99Z .framer-wi5ty, .framer-EK99Z .framer-j12ojo, .framer-EK99Z .framer-1804ac1, .framer-EK99Z .framer-nfbdxq, .framer-EK99Z .framer-od4g2i, .framer-EK99Z .framer-sub455, .framer-EK99Z .framer-1xgn42d, .framer-EK99Z .framer-1np624l, .framer-EK99Z .framer-3bneq5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px 18px 16px 18px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-EK99Z .framer-wa8022, .framer-EK99Z .framer-pd0gez, .framer-EK99Z .framer-1duqygi, .framer-EK99Z .framer-es8ys7, .framer-EK99Z .framer-13672ip, .framer-EK99Z .framer-1i48oz2, .framer-EK99Z .framer-1967my7 { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-EK99Z .framer-cq3ujt, .framer-EK99Z .framer-oqcd3e, .framer-EK99Z .framer-1jqun8p, .framer-EK99Z .framer-1bq2wpc, .framer-EK99Z .framer-wm4g6d, .framer-EK99Z .framer-1ddcph5, .framer-EK99Z .framer-thvbmx, .framer-EK99Z .framer-vqse3x, .framer-EK99Z .framer-byburt, .framer-EK99Z .framer-xh5b8, .framer-EK99Z .framer-1df3p2w, .framer-EK99Z .framer-1t8up62, .framer-EK99Z .framer-1g2rt6l, .framer-EK99Z .framer-1crcq2f { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-EK99Z .framer-1rwg59c, .framer-EK99Z .framer-zxqu86, .framer-EK99Z .framer-irriyh, .framer-EK99Z .framer-xoio6c { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 40px; }\",\".framer-EK99Z .framer-lxy1t2-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); position: relative; width: 40px; }\",\".framer-EK99Z .framer-32ufgl { aspect-ratio: 0.998165137614679 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 40px; }\",\".framer-EK99Z .framer-mk31sz-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 149px); position: relative; width: 40px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EK99Z.framer-1xs74sc, .framer-EK99Z .framer-12md6j8, .framer-EK99Z .framer-2ag5u6, .framer-EK99Z .framer-1hltmc7, .framer-EK99Z .framer-4eafgw, .framer-EK99Z .framer-4x5umo, .framer-EK99Z .framer-wi5ty, .framer-EK99Z .framer-j12ojo, .framer-EK99Z .framer-1804ac1, .framer-EK99Z .framer-nfbdxq, .framer-EK99Z .framer-od4g2i, .framer-EK99Z .framer-sub455, .framer-EK99Z .framer-1xgn42d, .framer-EK99Z .framer-1np624l, .framer-EK99Z .framer-3bneq5 { gap: 0px; } .framer-EK99Z.framer-1xs74sc > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-EK99Z.framer-1xs74sc > :first-child { margin-top: 0px; } .framer-EK99Z.framer-1xs74sc > :last-child { margin-bottom: 0px; } .framer-EK99Z .framer-12md6j8 > *, .framer-EK99Z .framer-2ag5u6 > *, .framer-EK99Z .framer-1hltmc7 > *, .framer-EK99Z .framer-4eafgw > *, .framer-EK99Z .framer-4x5umo > *, .framer-EK99Z .framer-wi5ty > *, .framer-EK99Z .framer-j12ojo > *, .framer-EK99Z .framer-1804ac1 > *, .framer-EK99Z .framer-nfbdxq > *, .framer-EK99Z .framer-od4g2i > *, .framer-EK99Z .framer-sub455 > *, .framer-EK99Z .framer-1xgn42d > *, .framer-EK99Z .framer-1np624l > *, .framer-EK99Z .framer-3bneq5 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-EK99Z .framer-12md6j8 > :first-child, .framer-EK99Z .framer-2ag5u6 > :first-child, .framer-EK99Z .framer-1hltmc7 > :first-child, .framer-EK99Z .framer-4eafgw > :first-child, .framer-EK99Z .framer-4x5umo > :first-child, .framer-EK99Z .framer-wi5ty > :first-child, .framer-EK99Z .framer-j12ojo > :first-child, .framer-EK99Z .framer-1804ac1 > :first-child, .framer-EK99Z .framer-nfbdxq > :first-child, .framer-EK99Z .framer-od4g2i > :first-child, .framer-EK99Z .framer-sub455 > :first-child, .framer-EK99Z .framer-1xgn42d > :first-child, .framer-EK99Z .framer-1np624l > :first-child, .framer-EK99Z .framer-3bneq5 > :first-child { margin-left: 0px; } .framer-EK99Z .framer-12md6j8 > :last-child, .framer-EK99Z .framer-2ag5u6 > :last-child, .framer-EK99Z .framer-1hltmc7 > :last-child, .framer-EK99Z .framer-4eafgw > :last-child, .framer-EK99Z .framer-4x5umo > :last-child, .framer-EK99Z .framer-wi5ty > :last-child, .framer-EK99Z .framer-j12ojo > :last-child, .framer-EK99Z .framer-1804ac1 > :last-child, .framer-EK99Z .framer-nfbdxq > :last-child, .framer-EK99Z .framer-od4g2i > :last-child, .framer-EK99Z .framer-sub455 > :last-child, .framer-EK99Z .framer-1xgn42d > :last-child, .framer-EK99Z .framer-1np624l > :last-child, .framer-EK99Z .framer-3bneq5 > :last-child { margin-right: 0px; } }\",\".framer-EK99Z.framer-v-1jxscrw.framer-1xs74sc, .framer-EK99Z.framer-v-1f5inqy.framer-1xs74sc, .framer-EK99Z.framer-v-nehha0.framer-1xs74sc, .framer-EK99Z.framer-v-hsqust.framer-1xs74sc, .framer-EK99Z.framer-v-b3n6id.framer-1xs74sc, .framer-EK99Z.framer-v-o6ud1i.framer-1xs74sc, .framer-EK99Z.framer-v-3ny71r.framer-1xs74sc, .framer-EK99Z.framer-v-141tk7m.framer-1xs74sc, .framer-EK99Z.framer-v-wpwe10.framer-1xs74sc { aspect-ratio: 0.6666666666666666 / 1; height: var(--framer-aspect-ratio-supported, 600px); }\",\".framer-EK99Z.framer-v-3ny71r .framer-1804ac1, .framer-EK99Z.framer-v-141tk7m .framer-nfbdxq { order: 6; }\",\".framer-EK99Z.framer-v-3ny71r .framer-nfbdxq, .framer-EK99Z.framer-v-141tk7m .framer-od4g2i { order: 7; }\",\".framer-EK99Z.framer-v-3ny71r .framer-od4g2i, .framer-EK99Z.framer-v-141tk7m .framer-sub455 { order: 8; }\",\".framer-EK99Z.framer-v-3ny71r .framer-sub455, .framer-EK99Z.framer-v-141tk7m .framer-1xgn42d { order: 9; }\",\".framer-EK99Z.framer-v-3ny71r .framer-1xgn42d, .framer-EK99Z.framer-v-141tk7m .framer-1np624l { order: 10; }\",\".framer-EK99Z.framer-v-3ny71r .framer-1np624l, .framer-EK99Z.framer-v-141tk7m .framer-3bneq5 { order: 11; }\",\".framer-EK99Z.framer-v-3ny71r .framer-3bneq5, .framer-EK99Z.framer-v-141tk7m .framer-j12ojo { order: 12; }\",\".framer-EK99Z.framer-v-wpwe10 .framer-lxy1t2-container { height: var(--framer-aspect-ratio-supported, 149px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Vh_8hBl1F\":{\"layout\":[\"fixed\",\"fixed\"]},\"oG6WkoZCi\":{\"layout\":[\"fixed\",\"fixed\"]},\"foD80B3xQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"Kv5Xm_LPl\":{\"layout\":[\"fixed\",\"fixed\"]},\"w9z0lt1KK\":{\"layout\":[\"fixed\",\"fixed\"]},\"fub0vvWkF\":{\"layout\":[\"fixed\",\"fixed\"]},\"gECBYZr6E\":{\"layout\":[\"fixed\",\"fixed\"]},\"q0drR9_1_\":{\"layout\":[\"fixed\",\"fixed\"]},\"ad3fYXm4m\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRSbJKCXDn=withCSS(Component,css,\"framer-EK99Z\");export default FramerRSbJKCXDn;FramerRSbJKCXDn.displayName=\"Feature_Integrates\";FramerRSbJKCXDn.defaultProps={height:600,width:400};addPropertyControls(FramerRSbJKCXDn,{variant:{options:[\"DluJZj1kU\",\"Vh_8hBl1F\",\"oG6WkoZCi\",\"foD80B3xQ\",\"Kv5Xm_LPl\",\"w9z0lt1KK\",\"fub0vvWkF\",\"gECBYZr6E\",\"q0drR9_1_\",\"ad3fYXm4m\"],optionTitles:[\"Integrates 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\",\"Variant 8\",\"Variant 9\",\"Variant 10\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerRSbJKCXDn,[{explicitInter:true,fonts:[{family:\"Studio Pro Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/O8KsND7pYcY7CsQIXFc82FRTQ0.woff2\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRSbJKCXDn\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"600\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Vh_8hBl1F\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oG6WkoZCi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"foD80B3xQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Kv5Xm_LPl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"w9z0lt1KK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fub0vvWkF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gECBYZr6E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"q0drR9_1_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ad3fYXm4m\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RSbJKCXDn.map", "// Generated by Framer (66c1c8d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"pTENeBv6k\",\"USdkukPJR\",\"eQSwbOeW3\",\"Vj4miTj2Z\",\"O0LpAHO1n\"];const serializationHash=\"framer-rCCtB\";const variantClassNames={eQSwbOeW3:\"framer-v-12qh6kg\",O0LpAHO1n:\"framer-v-1si4j7a\",pTENeBv6k:\"framer-v-xriask\",USdkukPJR:\"framer-v-bx3dkk\",Vj4miTj2Z:\"framer-v-1nb4kts\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const transition3={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const transition4={delay:1,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition5={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:120};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:190};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:400};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:280};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition6={delay:.7,duration:1.3,ease:[.06,.11,.86,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation9={opacity:1,rotate:-360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation11={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:260};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Scheduling 1\":\"pTENeBv6k\",\"Scheduling 2\":\"USdkukPJR\",\"Scheduling 4\":\"eQSwbOeW3\",\"Scheduling 5\":\"Vj4miTj2Z\",\"Scheduling 7\":\"O0LpAHO1n\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"pTENeBv6k\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pTENeBv6k\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1l6vvlm=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"USdkukPJR\"),3500);});const onAppear1jgu2zj=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"eQSwbOeW3\"),2800);});const onAppear10umcfw=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Vj4miTj2Z\"),2500);});const onAppear12vyqma=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"O0LpAHO1n\"),3e3);});const onAppear1dcvbbm=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"pTENeBv6k\"),650);});useOnVariantChange(baseVariant,{default:onAppear1l6vvlm,eQSwbOeW3:onAppear10umcfw,O0LpAHO1n:onAppear1dcvbbm,USdkukPJR:onAppear1jgu2zj,Vj4miTj2Z:onAppear12vyqma});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"Vj4miTj2Z\",\"O0LpAHO1n\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"USdkukPJR\",\"eQSwbOeW3\",\"Vj4miTj2Z\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"eQSwbOeW3\",\"Vj4miTj2Z\",\"O0LpAHO1n\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"Vj4miTj2Z\",\"O0LpAHO1n\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({eQSwbOeW3:{value:transition2},O0LpAHO1n:{value:transition3},USdkukPJR:{value:transition2},Vj4miTj2Z:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-xriask\",className,classNames),\"data-framer-name\":\"Scheduling 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"pTENeBv6k\",ref:refBinding,style:{...style},...addPropertyOverrides({eQSwbOeW3:{\"data-framer-name\":\"Scheduling 4\"},O0LpAHO1n:{\"data-framer-name\":\"Scheduling 7\"},USdkukPJR:{\"data-framer-name\":\"Scheduling 2\"},Vj4miTj2Z:{\"data-framer-name\":\"Scheduling 5\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-10chutj\",\"data-framer-appear-id\":\"10chutj\",\"data-framer-name\":\"1 Message\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"nCHQUDOUC\",optimized:true,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1},variants:{eQSwbOeW3:{opacity:0},USdkukPJR:{opacity:.25}},...addPropertyOverrides({eQSwbOeW3:{animate:undefined,initial:undefined,optimized:undefined},USdkukPJR:{animate:undefined,initial:undefined,optimized:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fiujg4\",\"data-framer-name\":\"Agent Avatar\",layoutDependency:layoutDependency,layoutId:\"FqCU7dpth\",style:{backgroundColor:\"rgb(196, 155, 76)\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-196u5wy\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:34,intrinsicWidth:34,layoutDependency:layoutDependency,layoutId:\"OL9m4pKRa\",svg:'<svg width=\"34\" height=\"34\" viewBox=\"-1 -1 34 34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.9716 6.23195C15.1968 5.71952 15.3217 5.15312 15.3217 4.55753C15.3217 2.25634 13.4562 0.390869 11.155 0.390869C8.85386 0.390869 6.98838 2.25634 6.98838 4.55753C6.98838 6.85872 8.85386 8.7242 11.155 8.7242C11.51 8.7242 11.8546 8.67982 12.1836 8.5963C11.9584 9.10872 11.8335 9.67512 11.8335 10.2707C11.8335 11.0673 12.057 11.8116 12.4448 12.4445C11.8119 12.0567 11.0675 11.8332 10.271 11.8332C9.67538 11.8332 9.10897 11.9582 8.59653 12.1833C8.68006 11.8543 8.72445 11.5097 8.72445 11.1548C8.72445 8.85357 6.85897 6.98809 4.55778 6.98809C2.2566 6.98809 0.391113 8.85357 0.391113 11.1548C0.391113 13.4559 2.2566 15.3214 4.55778 15.3214C5.15338 15.3214 5.71979 15.1965 6.23222 14.9713C6.14869 15.3003 6.1043 15.6449 6.1043 15.9999C6.1043 16.3679 6.152 16.7247 6.24156 17.0645C5.72667 16.8368 5.157 16.7103 4.55778 16.7103C2.2566 16.7103 0.391113 18.5758 0.391113 20.877C0.391113 23.1782 2.2566 25.0437 4.55778 25.0437C6.85897 25.0437 8.72445 23.1782 8.72445 20.877C8.72445 20.509 8.67675 20.1522 8.58719 19.8123C9.10208 20.0401 9.67175 20.1665 10.271 20.1665C11.0675 20.1665 11.8119 19.943 12.4448 19.5553C12.057 20.1881 11.8335 20.9325 11.8335 21.729C11.8335 22.3387 11.9644 22.9177 12.1996 23.4396C11.8658 23.3534 11.5158 23.3075 11.155 23.3075C8.85386 23.3075 6.98838 25.173 6.98838 27.4742C6.98838 29.7754 8.85386 31.6409 11.155 31.6409C13.4562 31.6409 15.3217 29.7754 15.3217 27.4742C15.3217 26.8646 15.1908 26.2856 14.9556 25.7637C15.2894 25.8499 15.6394 25.8957 16.0001 25.8957C16.374 25.8957 16.7364 25.8465 17.0811 25.7541C16.8431 26.2785 16.7106 26.8609 16.7106 27.4742C16.7106 29.7754 18.5761 31.6409 20.8773 31.6409C23.1785 31.6409 25.0439 29.7754 25.0439 27.4742C25.0439 25.173 23.1785 23.3075 20.8773 23.3075C20.5034 23.3075 20.141 23.3568 19.7963 23.4491C20.0343 22.9248 20.1668 22.3424 20.1668 21.729C20.1668 20.9325 19.9433 20.1881 19.5555 19.5553C20.1884 19.943 20.9327 20.1665 21.7293 20.1665C22.3426 20.1665 22.925 20.034 23.4494 19.7961C23.357 20.1408 23.3078 20.5031 23.3078 20.877C23.3078 23.1782 25.1733 25.0437 27.4745 25.0437C29.7756 25.0437 31.6411 23.1782 31.6411 20.877C31.6411 18.5758 29.7756 16.7103 27.4745 16.7103C26.8611 16.7103 26.2787 16.8428 25.7544 17.0808C25.8467 16.7361 25.896 16.3737 25.896 15.9999C25.896 15.6391 25.8501 15.2891 25.7639 14.9553C26.2858 15.1905 26.8648 15.3214 27.4745 15.3214C29.7756 15.3214 31.6411 13.4559 31.6411 11.1548C31.6411 8.85357 29.7756 6.98809 27.4745 6.98809C25.1733 6.98809 23.3078 8.85357 23.3078 11.1548C23.3078 11.5155 23.3536 11.8655 23.4398 12.1994C22.9179 11.9641 22.3389 11.8332 21.7293 11.8332C20.9327 11.8332 20.1884 12.0567 19.5555 12.4445C19.9433 11.8116 20.1668 11.0673 20.1668 10.2707C20.1668 9.67149 20.0403 9.10182 19.8126 8.58694C20.1524 8.6765 20.5093 8.7242 20.8773 8.7242C23.1785 8.7242 25.0439 6.85872 25.0439 4.55753C25.0439 2.25634 23.1785 0.390869 20.8773 0.390869C18.5761 0.390869 16.7106 2.25634 16.7106 4.55753C16.7106 5.15675 16.8371 5.72642 17.0648 6.2413C16.725 6.15175 16.3681 6.10404 16.0001 6.10404C15.6452 6.10404 15.3006 6.14843 14.9716 6.23195ZM18.1739 13.8261C17.5411 14.2138 16.7967 14.4374 16.0001 14.4374C15.2036 14.4374 14.4592 14.2138 13.8264 13.8261C14.2141 14.4589 14.4376 15.2033 14.4376 15.9999C14.4376 16.7964 14.2141 17.5408 13.8264 18.1737C14.4592 17.7859 15.2036 17.5624 16.0001 17.5624C16.7967 17.5624 17.5411 17.7859 18.1739 18.1737C17.7862 17.5408 17.5626 16.7964 17.5626 15.9999C17.5626 15.2033 17.7862 14.4589 18.1739 13.8261Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tt4xom\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"NSSlzBk4W\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gTWVkaXVt\",\"--framer-font-family\":'\"Studio Pro Medium\", \"Studio Pro Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(6, 6, 6, 0.5))\"},children:\"Max, AI Recruiter\"})}),className:\"framer-1abzqmc\",\"data-framer-name\":\"Name\",fonts:[\"CUSTOM;Studio Pro Medium\"],layoutDependency:layoutDependency,layoutId:\"mOjCPoOov\",style:{\"--extracted-r6o4lv\":\"rgba(6, 6, 6, 0.5)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:\"Great news, you\u2019re advancing! What\u2019s your availability next week?\"})}),className:\"framer-mu0zrp\",\"data-framer-name\":\"Message\",fonts:[\"CUSTOM;Studio Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"ri5HjyMHz\",style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-14aohcv\",\"data-framer-appear-id\":\"14aohcv\",\"data-framer-name\":\"2 Message\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"MwVvztDZr\",optimized:true,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1},variants:{eQSwbOeW3:{opacity:.25},Vj4miTj2Z:{opacity:0}},...addPropertyOverrides({eQSwbOeW3:{animate:undefined,initial:undefined,optimized:undefined},USdkukPJR:{animate:animation4,initial:animation5},Vj4miTj2Z:{animate:undefined,initial:undefined,optimized:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7c3u3t\",\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"I572:2881;623:7705\",style:{borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2LGKZbyj5QDt8V8bUNAfncKbY9A.png\"},className:\"framer-3lkfrk\",\"data-framer-name\":\"Headshot\",layoutDependency:layoutDependency,layoutId:\"I572:2881;623:7705;623:7004\",...addPropertyOverrides({eQSwbOeW3:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||600)-253-493)/2+189+8)+20+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2LGKZbyj5QDt8V8bUNAfncKbY9A.png\"}},USdkukPJR:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||600)-130-386)/2+189+8)+20+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2LGKZbyj5QDt8V8bUNAfncKbY9A.png\"}},Vj4miTj2Z:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||600)-130-493)/2+0+0)+20+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2LGKZbyj5QDt8V8bUNAfncKbY9A.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13s3sif\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"ElQrCXOSC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gTWVkaXVt\",\"--framer-font-family\":'\"Studio Pro Medium\", \"Studio Pro Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(6, 6, 6, 0.5))\"},children:\"Logan H, Candidate\"})}),className:\"framer-ghid84\",\"data-framer-name\":\"Name\",fonts:[\"CUSTOM;Studio Pro Medium\"],layoutDependency:layoutDependency,layoutId:\"v1nwFDQ_S\",style:{\"--extracted-r6o4lv\":\"rgba(6, 6, 6, 0.5)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:\"I can do Monday between 1\u20135pm and Thursday between 9\u201311am.\"})}),className:\"framer-6rjpxv\",\"data-framer-name\":\"Message\",fonts:[\"CUSTOM;Studio Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"CxmNkbek1\",style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-1gp0s8f\",\"data-framer-appear-id\":\"1gp0s8f\",\"data-framer-name\":\"4 Message\",initial:animation6,layoutDependency:layoutDependency,layoutId:\"TsaKCggXl\",optimized:true,style:{backgroundColor:\"rgb(6, 6, 6)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1},variants:{O0LpAHO1n:{opacity:0},Vj4miTj2Z:{opacity:.25}},...addPropertyOverrides({eQSwbOeW3:{initial:animation7},O0LpAHO1n:{animate:undefined,initial:undefined,optimized:undefined},Vj4miTj2Z:{animate:undefined,initial:undefined,optimized:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15bk13y\",\"data-framer-name\":\"Agent Avatar\",layoutDependency:layoutDependency,layoutId:\"qRam5AIgP\",style:{backgroundColor:\"rgb(196, 155, 76)\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-utuy8j\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:34,intrinsicWidth:34,layoutDependency:layoutDependency,layoutId:\"ZrWlxGE9P\",svg:'<svg width=\"34\" height=\"34\" viewBox=\"-1 -1 34 34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.9716 6.23195C15.1968 5.71952 15.3217 5.15312 15.3217 4.55753C15.3217 2.25634 13.4562 0.390869 11.155 0.390869C8.85386 0.390869 6.98838 2.25634 6.98838 4.55753C6.98838 6.85872 8.85386 8.7242 11.155 8.7242C11.51 8.7242 11.8546 8.67982 12.1836 8.5963C11.9584 9.10872 11.8335 9.67512 11.8335 10.2707C11.8335 11.0673 12.057 11.8116 12.4448 12.4445C11.8119 12.0567 11.0675 11.8332 10.271 11.8332C9.67538 11.8332 9.10897 11.9582 8.59653 12.1833C8.68006 11.8543 8.72445 11.5097 8.72445 11.1548C8.72445 8.85357 6.85897 6.98809 4.55778 6.98809C2.2566 6.98809 0.391113 8.85357 0.391113 11.1548C0.391113 13.4559 2.2566 15.3214 4.55778 15.3214C5.15338 15.3214 5.71979 15.1965 6.23222 14.9713C6.14869 15.3003 6.1043 15.6449 6.1043 15.9999C6.1043 16.3679 6.152 16.7247 6.24156 17.0645C5.72667 16.8368 5.157 16.7103 4.55778 16.7103C2.2566 16.7103 0.391113 18.5758 0.391113 20.877C0.391113 23.1782 2.2566 25.0437 4.55778 25.0437C6.85897 25.0437 8.72445 23.1782 8.72445 20.877C8.72445 20.509 8.67675 20.1522 8.58719 19.8123C9.10208 20.0401 9.67175 20.1665 10.271 20.1665C11.0675 20.1665 11.8119 19.943 12.4448 19.5553C12.057 20.1881 11.8335 20.9325 11.8335 21.729C11.8335 22.3387 11.9644 22.9177 12.1996 23.4396C11.8658 23.3534 11.5158 23.3075 11.155 23.3075C8.85386 23.3075 6.98838 25.173 6.98838 27.4742C6.98838 29.7754 8.85386 31.6409 11.155 31.6409C13.4562 31.6409 15.3217 29.7754 15.3217 27.4742C15.3217 26.8646 15.1908 26.2856 14.9556 25.7637C15.2894 25.8499 15.6394 25.8957 16.0001 25.8957C16.374 25.8957 16.7364 25.8465 17.0811 25.7541C16.8431 26.2785 16.7106 26.8609 16.7106 27.4742C16.7106 29.7754 18.5761 31.6409 20.8773 31.6409C23.1785 31.6409 25.0439 29.7754 25.0439 27.4742C25.0439 25.173 23.1785 23.3075 20.8773 23.3075C20.5034 23.3075 20.141 23.3568 19.7963 23.4491C20.0343 22.9248 20.1668 22.3424 20.1668 21.729C20.1668 20.9325 19.9433 20.1881 19.5555 19.5553C20.1884 19.943 20.9327 20.1665 21.7293 20.1665C22.3426 20.1665 22.925 20.034 23.4494 19.7961C23.357 20.1408 23.3078 20.5031 23.3078 20.877C23.3078 23.1782 25.1733 25.0437 27.4745 25.0437C29.7756 25.0437 31.6411 23.1782 31.6411 20.877C31.6411 18.5758 29.7756 16.7103 27.4745 16.7103C26.8611 16.7103 26.2787 16.8428 25.7544 17.0808C25.8467 16.7361 25.896 16.3737 25.896 15.9999C25.896 15.6391 25.8501 15.2891 25.7639 14.9553C26.2858 15.1905 26.8648 15.3214 27.4745 15.3214C29.7756 15.3214 31.6411 13.4559 31.6411 11.1548C31.6411 8.85357 29.7756 6.98809 27.4745 6.98809C25.1733 6.98809 23.3078 8.85357 23.3078 11.1548C23.3078 11.5155 23.3536 11.8655 23.4398 12.1994C22.9179 11.9641 22.3389 11.8332 21.7293 11.8332C20.9327 11.8332 20.1884 12.0567 19.5555 12.4445C19.9433 11.8116 20.1668 11.0673 20.1668 10.2707C20.1668 9.67149 20.0403 9.10182 19.8126 8.58694C20.1524 8.6765 20.5093 8.7242 20.8773 8.7242C23.1785 8.7242 25.0439 6.85872 25.0439 4.55753C25.0439 2.25634 23.1785 0.390869 20.8773 0.390869C18.5761 0.390869 16.7106 2.25634 16.7106 4.55753C16.7106 5.15675 16.8371 5.72642 17.0648 6.2413C16.725 6.15175 16.3681 6.10404 16.0001 6.10404C15.6452 6.10404 15.3006 6.14843 14.9716 6.23195ZM18.1739 13.8261C17.5411 14.2138 16.7967 14.4374 16.0001 14.4374C15.2036 14.4374 14.4592 14.2138 13.8264 13.8261C14.2141 14.4589 14.4376 15.2033 14.4376 15.9999C14.4376 16.7964 14.2141 17.5408 13.8264 18.1737C14.4592 17.7859 15.2036 17.5624 16.0001 17.5624C16.7967 17.5624 17.5411 17.7859 18.1739 18.1737C17.7862 17.5408 17.5626 16.7964 17.5626 15.9999C17.5626 15.2033 17.7862 14.4589 18.1739 13.8261Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tn01s\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"SEgiCXLf0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gTWVkaXVt\",\"--framer-font-family\":'\"Studio Pro Medium\", \"Studio Pro Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.5))\"},children:\"Max, AI Recruiter\"})}),className:\"framer-1auhit5\",\"data-framer-name\":\"Name\",fonts:[\"CUSTOM;Studio Pro Medium\"],layoutDependency:layoutDependency,layoutId:\"DJNpfQhjq\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.5)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y5a8bo\",\"data-framer-name\":\"Task\",layoutDependency:layoutDependency,layoutId:\"I572:2958;569:3061\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qgh6ge\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"I572:2958;569:3062\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{className:\"framer-1utjv0u\",\"data-framer-appear-id\":\"1utjv0u\",\"data-framer-name\":\"ArrowsClockwise\",layoutDependency:layoutDependency,layoutId:\"I572:2958;569:3063\",transformTemplate:transformTemplate1,...addPropertyOverrides({eQSwbOeW3:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation8,initial:animation9,optimized:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xf3ld2\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"I572:2958;569:3063;8899:77705\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.25 2.12509V6.25009C17.25 6.43243 17.1776 6.6073 17.0486 6.73623C16.9197 6.86516 16.7448 6.93759 16.5625 6.93759H12.4375C12.2552 6.93759 12.0803 6.86516 11.9514 6.73623C11.8224 6.6073 11.75 6.43243 11.75 6.25009C11.75 6.06776 11.8224 5.89289 11.9514 5.76396C12.0803 5.63503 12.2552 5.56259 12.4375 5.56259H14.903L13.6458 4.30533C12.368 3.02177 10.6332 2.29762 8.82211 2.29181H8.78344C6.98749 2.2876 5.26208 2.99055 3.98039 4.24861C3.8491 4.37117 3.67505 4.43749 3.49548 4.43337C3.31592 4.42925 3.1451 4.35503 3.01956 4.22657C2.89402 4.09811 2.82374 3.92563 2.82375 3.74602C2.82376 3.5664 2.89406 3.39393 3.01961 3.26548C4.57296 1.74731 6.66234 0.902959 8.83434 0.915669C11.0063 0.928379 13.0857 1.79712 14.6212 3.33337L15.875 4.59064V2.12509C15.875 1.94276 15.9474 1.76789 16.0764 1.63896C16.2053 1.51003 16.3802 1.43759 16.5625 1.43759C16.7448 1.43759 16.9197 1.51003 17.0486 1.63896C17.1776 1.76789 17.25 1.94276 17.25 2.12509ZM14.0196 13.7516C12.7252 15.0159 10.9846 15.719 9.17526 15.7084C7.36589 15.6978 5.63365 14.9743 4.35422 13.6949L3.09695 12.4376H5.5625C5.74484 12.4376 5.9197 12.3652 6.04864 12.2362C6.17757 12.1073 6.25 11.9324 6.25 11.7501C6.25 11.5678 6.17757 11.3929 6.04864 11.264C5.9197 11.135 5.74484 11.0626 5.5625 11.0626H1.4375C1.25516 11.0626 1.0803 11.135 0.951364 11.264C0.822433 11.3929 0.75 11.5678 0.75 11.7501V15.8751C0.75 16.0574 0.822433 16.2323 0.951364 16.3612C1.0803 16.4902 1.25516 16.5626 1.4375 16.5626C1.61984 16.5626 1.7947 16.4902 1.92364 16.3612C2.05257 16.2323 2.125 16.0574 2.125 15.8751V13.4095L3.38227 14.6668C4.91557 16.2078 6.998 17.077 9.17188 17.0834H9.21742C11.3728 17.0889 13.4436 16.2451 14.9813 14.7347C15.1068 14.6063 15.1771 14.4338 15.1771 14.2542C15.1771 14.0746 15.1068 13.9021 14.9813 13.7736C14.8558 13.6452 14.6849 13.5709 14.5054 13.5668C14.3258 13.5627 14.1518 13.629 14.0205 13.7516H14.0196Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Scheduling\"})}),className:\"framer-1c8oanh\",\"data-framer-name\":\"Scheduling\",fonts:[\"CUSTOM;Studio Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"I572:2958;569:3064\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation10,className:\"framer-zb71y6\",\"data-framer-appear-id\":\"zb71y6\",\"data-framer-name\":\"5 Message\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"pPt6xeMAe\",optimized:true,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1},variants:{O0LpAHO1n:{opacity:0}},...addPropertyOverrides({O0LpAHO1n:{animate:undefined,initial:undefined,optimized:undefined},Vj4miTj2Z:{animate:animation4,initial:animation11}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wwtlz0\",\"data-framer-name\":\"Agent Avatar\",layoutDependency:layoutDependency,layoutId:\"XBgBeC35W\",style:{backgroundColor:\"rgb(196, 155, 76)\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1hst67e\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:34,intrinsicWidth:34,layoutDependency:layoutDependency,layoutId:\"QDwr0D9ww\",svg:'<svg width=\"34\" height=\"34\" viewBox=\"-1 -1 34 34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.9716 6.23195C15.1968 5.71952 15.3217 5.15312 15.3217 4.55753C15.3217 2.25634 13.4562 0.390869 11.155 0.390869C8.85386 0.390869 6.98838 2.25634 6.98838 4.55753C6.98838 6.85872 8.85386 8.7242 11.155 8.7242C11.51 8.7242 11.8546 8.67982 12.1836 8.5963C11.9584 9.10872 11.8335 9.67512 11.8335 10.2707C11.8335 11.0673 12.057 11.8116 12.4448 12.4445C11.8119 12.0567 11.0675 11.8332 10.271 11.8332C9.67538 11.8332 9.10897 11.9582 8.59653 12.1833C8.68006 11.8543 8.72445 11.5097 8.72445 11.1548C8.72445 8.85357 6.85897 6.98809 4.55778 6.98809C2.2566 6.98809 0.391113 8.85357 0.391113 11.1548C0.391113 13.4559 2.2566 15.3214 4.55778 15.3214C5.15338 15.3214 5.71979 15.1965 6.23222 14.9713C6.14869 15.3003 6.1043 15.6449 6.1043 15.9999C6.1043 16.3679 6.152 16.7247 6.24156 17.0645C5.72667 16.8368 5.157 16.7103 4.55778 16.7103C2.2566 16.7103 0.391113 18.5758 0.391113 20.877C0.391113 23.1782 2.2566 25.0437 4.55778 25.0437C6.85897 25.0437 8.72445 23.1782 8.72445 20.877C8.72445 20.509 8.67675 20.1522 8.58719 19.8123C9.10208 20.0401 9.67175 20.1665 10.271 20.1665C11.0675 20.1665 11.8119 19.943 12.4448 19.5553C12.057 20.1881 11.8335 20.9325 11.8335 21.729C11.8335 22.3387 11.9644 22.9177 12.1996 23.4396C11.8658 23.3534 11.5158 23.3075 11.155 23.3075C8.85386 23.3075 6.98838 25.173 6.98838 27.4742C6.98838 29.7754 8.85386 31.6409 11.155 31.6409C13.4562 31.6409 15.3217 29.7754 15.3217 27.4742C15.3217 26.8646 15.1908 26.2856 14.9556 25.7637C15.2894 25.8499 15.6394 25.8957 16.0001 25.8957C16.374 25.8957 16.7364 25.8465 17.0811 25.7541C16.8431 26.2785 16.7106 26.8609 16.7106 27.4742C16.7106 29.7754 18.5761 31.6409 20.8773 31.6409C23.1785 31.6409 25.0439 29.7754 25.0439 27.4742C25.0439 25.173 23.1785 23.3075 20.8773 23.3075C20.5034 23.3075 20.141 23.3568 19.7963 23.4491C20.0343 22.9248 20.1668 22.3424 20.1668 21.729C20.1668 20.9325 19.9433 20.1881 19.5555 19.5553C20.1884 19.943 20.9327 20.1665 21.7293 20.1665C22.3426 20.1665 22.925 20.034 23.4494 19.7961C23.357 20.1408 23.3078 20.5031 23.3078 20.877C23.3078 23.1782 25.1733 25.0437 27.4745 25.0437C29.7756 25.0437 31.6411 23.1782 31.6411 20.877C31.6411 18.5758 29.7756 16.7103 27.4745 16.7103C26.8611 16.7103 26.2787 16.8428 25.7544 17.0808C25.8467 16.7361 25.896 16.3737 25.896 15.9999C25.896 15.6391 25.8501 15.2891 25.7639 14.9553C26.2858 15.1905 26.8648 15.3214 27.4745 15.3214C29.7756 15.3214 31.6411 13.4559 31.6411 11.1548C31.6411 8.85357 29.7756 6.98809 27.4745 6.98809C25.1733 6.98809 23.3078 8.85357 23.3078 11.1548C23.3078 11.5155 23.3536 11.8655 23.4398 12.1994C22.9179 11.9641 22.3389 11.8332 21.7293 11.8332C20.9327 11.8332 20.1884 12.0567 19.5555 12.4445C19.9433 11.8116 20.1668 11.0673 20.1668 10.2707C20.1668 9.67149 20.0403 9.10182 19.8126 8.58694C20.1524 8.6765 20.5093 8.7242 20.8773 8.7242C23.1785 8.7242 25.0439 6.85872 25.0439 4.55753C25.0439 2.25634 23.1785 0.390869 20.8773 0.390869C18.5761 0.390869 16.7106 2.25634 16.7106 4.55753C16.7106 5.15675 16.8371 5.72642 17.0648 6.2413C16.725 6.15175 16.3681 6.10404 16.0001 6.10404C15.6452 6.10404 15.3006 6.14843 14.9716 6.23195ZM18.1739 13.8261C17.5411 14.2138 16.7967 14.4374 16.0001 14.4374C15.2036 14.4374 14.4592 14.2138 13.8264 13.8261C14.2141 14.4589 14.4376 15.2033 14.4376 15.9999C14.4376 16.7964 14.2141 17.5408 13.8264 18.1737C14.4592 17.7859 15.2036 17.5624 16.0001 17.5624C16.7967 17.5624 17.5411 17.7859 18.1739 18.1737C17.7862 17.5408 17.5626 16.7964 17.5626 15.9999C17.5626 15.2033 17.7862 14.4589 18.1739 13.8261Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hkxzeh\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"ExUwQJHRT\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gTWVkaXVt\",\"--framer-font-family\":'\"Studio Pro Medium\", \"Studio Pro Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(6, 6, 6, 0.5))\"},children:\"Max, AI Recruiter\"})}),className:\"framer-x6m158\",\"data-framer-name\":\"Name\",fonts:[\"CUSTOM;Studio Pro Medium\"],layoutDependency:layoutDependency,layoutId:\"ApBBnJBTS\",style:{\"--extracted-r6o4lv\":\"rgba(6, 6, 6, 0.5)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0dWRpbyBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Studio Pro Regular\", \"Studio Pro Regular Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:\"Great, you\u2019re booked for 3 interviews from 2:30 to 4:30pm on Monday. The calendar events have all the details.\"})}),className:\"framer-1tb9k98\",\"data-framer-name\":\"Message\",fonts:[\"CUSTOM;Studio Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"Gf_E8q5r5\",style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-paragraph-spacing\":\"20.31250762939453px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rCCtB.framer-1cd1dhb, .framer-rCCtB .framer-1cd1dhb { display: block; }\",\".framer-rCCtB.framer-xriask { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-rCCtB .framer-10chutj, .framer-rCCtB .framer-14aohcv, .framer-rCCtB .framer-1gp0s8f, .framer-rCCtB .framer-zb71y6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-rCCtB .framer-fiujg4, .framer-rCCtB .framer-15bk13y, .framer-rCCtB .framer-1wwtlz0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 50px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-rCCtB .framer-196u5wy, .framer-rCCtB .framer-utuy8j, .framer-rCCtB .framer-1hst67e { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 32px; }\",\".framer-rCCtB .framer-1tt4xom, .framer-rCCtB .framer-13s3sif, .framer-rCCtB .framer-tn01s { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-rCCtB .framer-1abzqmc, .framer-rCCtB .framer-ghid84, .framer-rCCtB .framer-1auhit5, .framer-rCCtB .framer-1c8oanh, .framer-rCCtB .framer-x6m158 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-rCCtB .framer-mu0zrp, .framer-rCCtB .framer-6rjpxv, .framer-rCCtB .framer-1tb9k98 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rCCtB .framer-7c3u3t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-rCCtB .framer-3lkfrk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: 50px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 50px; }\",\".framer-rCCtB .framer-1y5a8bo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-rCCtB .framer-1qgh6ge { flex: none; height: 30px; overflow: visible; position: relative; width: 30px; }\",\".framer-rCCtB .framer-1utjv0u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; width: min-content; }\",\".framer-rCCtB .framer-1xf3ld2 { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-rCCtB .framer-hkxzeh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px 6px 0px 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rCCtB.framer-xriask, .framer-rCCtB .framer-10chutj, .framer-rCCtB .framer-fiujg4, .framer-rCCtB .framer-1tt4xom, .framer-rCCtB .framer-14aohcv, .framer-rCCtB .framer-7c3u3t, .framer-rCCtB .framer-3lkfrk, .framer-rCCtB .framer-13s3sif, .framer-rCCtB .framer-1gp0s8f, .framer-rCCtB .framer-15bk13y, .framer-rCCtB .framer-tn01s, .framer-rCCtB .framer-1y5a8bo, .framer-rCCtB .framer-1utjv0u, .framer-rCCtB .framer-zb71y6, .framer-rCCtB .framer-1wwtlz0, .framer-rCCtB .framer-hkxzeh { gap: 0px; } .framer-rCCtB.framer-xriask > *, .framer-rCCtB .framer-1tt4xom > *, .framer-rCCtB .framer-13s3sif > *, .framer-rCCtB .framer-tn01s > *, .framer-rCCtB .framer-hkxzeh > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-rCCtB.framer-xriask > :first-child, .framer-rCCtB .framer-1tt4xom > :first-child, .framer-rCCtB .framer-13s3sif > :first-child, .framer-rCCtB .framer-tn01s > :first-child, .framer-rCCtB .framer-1utjv0u > :first-child, .framer-rCCtB .framer-hkxzeh > :first-child { margin-top: 0px; } .framer-rCCtB.framer-xriask > :last-child, .framer-rCCtB .framer-1tt4xom > :last-child, .framer-rCCtB .framer-13s3sif > :last-child, .framer-rCCtB .framer-tn01s > :last-child, .framer-rCCtB .framer-1utjv0u > :last-child, .framer-rCCtB .framer-hkxzeh > :last-child { margin-bottom: 0px; } .framer-rCCtB .framer-10chutj > *, .framer-rCCtB .framer-14aohcv > *, .framer-rCCtB .framer-1gp0s8f > *, .framer-rCCtB .framer-zb71y6 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-rCCtB .framer-10chutj > :first-child, .framer-rCCtB .framer-fiujg4 > :first-child, .framer-rCCtB .framer-14aohcv > :first-child, .framer-rCCtB .framer-7c3u3t > :first-child, .framer-rCCtB .framer-3lkfrk > :first-child, .framer-rCCtB .framer-1gp0s8f > :first-child, .framer-rCCtB .framer-15bk13y > :first-child, .framer-rCCtB .framer-1y5a8bo > :first-child, .framer-rCCtB .framer-zb71y6 > :first-child, .framer-rCCtB .framer-1wwtlz0 > :first-child { margin-left: 0px; } .framer-rCCtB .framer-10chutj > :last-child, .framer-rCCtB .framer-fiujg4 > :last-child, .framer-rCCtB .framer-14aohcv > :last-child, .framer-rCCtB .framer-7c3u3t > :last-child, .framer-rCCtB .framer-3lkfrk > :last-child, .framer-rCCtB .framer-1gp0s8f > :last-child, .framer-rCCtB .framer-15bk13y > :last-child, .framer-rCCtB .framer-1y5a8bo > :last-child, .framer-rCCtB .framer-zb71y6 > :last-child, .framer-rCCtB .framer-1wwtlz0 > :last-child { margin-right: 0px; } .framer-rCCtB .framer-fiujg4 > *, .framer-rCCtB .framer-15bk13y > *, .framer-rCCtB .framer-1wwtlz0 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-rCCtB .framer-7c3u3t > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-rCCtB .framer-3lkfrk > * { margin: 0px; margin-left: calc(13.541665077209473px / 2); margin-right: calc(13.541665077209473px / 2); } .framer-rCCtB .framer-1y5a8bo > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-rCCtB .framer-1utjv0u > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-rCCtB.framer-v-bx3dkk.framer-xriask, .framer-rCCtB.framer-v-1nb4kts.framer-xriask { padding: 0px 0px 130px 0px; }\",\".framer-rCCtB.framer-v-12qh6kg.framer-xriask { padding: 0px 0px 253px 0px; }\",\".framer-rCCtB.framer-v-12qh6kg .framer-15bk13y { order: 0; }\",\".framer-rCCtB.framer-v-12qh6kg .framer-tn01s { order: 1; }\",\".framer-rCCtB.framer-v-1nb4kts .framer-hkxzeh { padding: 0px; }\",\".framer-rCCtB.framer-v-1si4j7a.framer-xriask { padding: 0px 0px 392px 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"USdkukPJR\":{\"layout\":[\"fixed\",\"fixed\"]},\"eQSwbOeW3\":{\"layout\":[\"fixed\",\"fixed\"]},\"Vj4miTj2Z\":{\"layout\":[\"fixed\",\"fixed\"]},\"O0LpAHO1n\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZPWR8T5PP=withCSS(Component,css,\"framer-rCCtB\");export default FramerZPWR8T5PP;FramerZPWR8T5PP.displayName=\"Feature_Scheduling\";FramerZPWR8T5PP.defaultProps={height:600,width:400};addPropertyControls(FramerZPWR8T5PP,{variant:{options:[\"pTENeBv6k\",\"USdkukPJR\",\"eQSwbOeW3\",\"Vj4miTj2Z\",\"O0LpAHO1n\"],optionTitles:[\"Scheduling 1\",\"Scheduling 2\",\"Scheduling 4\",\"Scheduling 5\",\"Scheduling 7\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerZPWR8T5PP,[{explicitInter:true,fonts:[{family:\"Studio Pro Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/pnlRvRnLlHv3rl88nFLfCoM2WzI.woff2\"},{family:\"Studio Pro Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/O8KsND7pYcY7CsQIXFc82FRTQ0.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZPWR8T5PP\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"USdkukPJR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eQSwbOeW3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Vj4miTj2Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"O0LpAHO1n\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"600\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZPWR8T5PP.map"],
  "mappings": "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",
  "names": ["useIsOnCanvas", "se", "RenderTarget", "PlayOptions", "ThumbnailOptions", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "pre", "ext", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "description", "height", "id", "question", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "AWSjGYVqE", "ycUUKKf_G", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapv7q5tz", "args", "onTapi5k8t6", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerhiqE5nRaP", "withCSS", "hiqE5nRaP_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "r", "c", "u", "a", "s", "cubicBezier", "o", "noopReturn", "getTForX", "l", "cubicBezier", "__rest", "e", "r", "n", "o", "n", "e", "t", "r", "n", "calcGeneratorVelocity", "t", "s", "r", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "a", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "noopReturn", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "n", "createGeneratorEasing", "e", "n", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "SVG", "css", "FramerPkc2VDrnw", "withCSS", "Pkc2VDrnw_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "css", "FramerpbQK7578T", "withCSS", "pbQK7578T_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "OverlayFonts", "pbQK7578T_default", "PhosphorControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "icon", "id", "tap", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "jMQ3m6yRn", "XWMnFFtHg", "tFETGNv5I", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1xhipos", "args", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerW5ZzKivMI", "withCSS", "W5ZzKivMI_default", "addPropertyControls", "ControlType", "addFonts", "fontStack", "formatTimeOrDate", "outputType", "showYear", "showMonth", "showWeekday", "showMinutes", "showSeconds", "timeFormat", "monthFormat", "localCode", "date", "onlyYearIsShown", "defaultProps", "Time", "props", "mergedProps", "color", "font", "tabularFont", "useLocaleCode", "getTextContent", "te", "timeoutRef", "pe", "updateCountdown", "node", "prev", "tick", "next", "textContent", "visible", "setIsVisible", "ye", "isCanvas", "RenderTarget", "ue", "Z", "p", "addPropertyControls", "ControlType", "PhosphorFonts", "getFonts", "Icon", "TimeDateFonts", "Time", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "transition4", "animation", "animation1", "animation2", "animation3", "animation4", "animation5", "animation6", "animation7", "animation8", "animation9", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1x73vbb", "args", "onAppeari9w1a2", "onAppearccen2v", "onAppear5wvcos", "onAppear8sgoie", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramergutWgbBOp", "withCSS", "gutWgbBOp_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "animation2", "animation3", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear11hgyda", "args", "onAppear661q57", "onAppearvh1bej", "onAppear1x2mqv6", "onAppear16witxj", "onAppear15f1ma7", "onAppearsjxe38", "onAppearg3gu6v", "onAppearjo21pa", "onAppear8sli0k", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "LayoutGroup", "u", "SVG", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "css", "FramerRSbJKCXDn", "withCSS", "RSbJKCXDn_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "transition4", "animation", "animation1", "transition5", "animation2", "animation3", "animation4", "animation5", "animation6", "animation7", "transformTemplate1", "_", "transition6", "animation8", "animation9", "animation10", "animation11", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1l6vvlm", "args", "onAppear1jgu2zj", "onAppear10umcfw", "onAppear12vyqma", "onAppear1dcvbbm", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "SVG", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerZPWR8T5PP", "withCSS", "ZPWR8T5PP_default", "addPropertyControls", "ControlType", "addFonts"]
}
