{"version":3,"file":"JZrS4VK_j.BJSpmfGU.mjs","names":["PlayOptions","ThumbnailOptions","ThumbnailFormat","addPropertyOverrides","Phosphor","cycleOrder","serializationHash","variantClassNames","transition1","Transition","humanReadableVariantMap","getProps","createLayoutDependency","Variants","Component","css","CardsOtherFeatures3","Image"],"sources":["https:/framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js","https:/framerusercontent.com/modules/a3qUhoSSdKXwmUY0kSwo/kOmufOWaeQ2yC6QFjLJH/nNCxxp29T.js","https:/framerusercontent.com/modules/shhWTO5huQMcQ4oWeunL/4DRZBh8BnTBHg2qpMsxP/JZrS4VK_j.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,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,getWebPSupported()?\"webp\":\"jpg\")}) 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,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";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}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map","// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={Aa4SiWJ0A:{hover:true}};const cycleOrder=[\"HMFFlGgj7\",\"Aa4SiWJ0A\"];const serializationHash=\"framer-x3LeD\";const variantClassNames={Aa4SiWJ0A:\"framer-v-kapk8k\",HMFFlGgj7:\"framer-v-1aw4iz6\"};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 transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const transition3={delay:0,duration:10,ease:[0,0,1,1],type:\"tween\"};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 humanReadableVariantMap={Active:\"HMFFlGgj7\",Inactive:\"Aa4SiWJ0A\"};const getProps=({click,description,fontSizeActiveDescription,fontSizeActiveLink,fontSizeActiveTitle,height,id,lineColor,link,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4,_ref5,_ref6;return{...props,BiSyj0QBJ:(_ref=fontSizeActiveLink!==null&&fontSizeActiveLink!==void 0?fontSizeActiveLink:props.BiSyj0QBJ)!==null&&_ref!==void 0?_ref:16,Bu4Ywo667:click!==null&&click!==void 0?click:props.Bu4Ywo667,eYaMFDOnx:link!==null&&link!==void 0?link:props.eYaMFDOnx,pqWbCUIg6:(_ref1=description!==null&&description!==void 0?description:props.pqWbCUIg6)!==null&&_ref1!==void 0?_ref1:\"Monitor your team's productivity by viewing completed tasks and active projects. \",QJ6ZHrVMp:(_ref2=fontSizeActiveDescription!==null&&fontSizeActiveDescription!==void 0?fontSizeActiveDescription:props.QJ6ZHrVMp)!==null&&_ref2!==void 0?_ref2:18,r5d5FXC3N:(_ref3=fontSizeActiveTitle!==null&&fontSizeActiveTitle!==void 0?fontSizeActiveTitle:props.r5d5FXC3N)!==null&&_ref3!==void 0?_ref3:20,variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"HMFFlGgj7\",VxG2QM1xS:(_ref5=lineColor!==null&&lineColor!==void 0?lineColor:props.VxG2QM1xS)!==null&&_ref5!==void 0?_ref5:\"var(--token-fe65a76b-2bec-47ef-8ad1-5fc7a52718d1, rgb(255, 84, 0))\",X9WKpbPyk:(_ref6=title!==null&&title!==void 0?title:props.X9WKpbPyk)!==null&&_ref6!==void 0?_ref6:\"Manage Emails\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,X9WKpbPyk,r5d5FXC3N,pqWbCUIg6,QJ6ZHrVMp,Bu4Ywo667,VxG2QM1xS,BiSyj0QBJ,eYaMFDOnx,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"HMFFlGgj7\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1pb1fbx=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Bu4Ywo667){const res=await Bu4Ywo667(...args);if(res===false)return false;}});const onTap1txlkss=activeVariantCallback(async(...args)=>{setVariant(\"QJWosTEtN\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();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:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1aw4iz6\",className,classNames),\"data-framer-name\":\"Active\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"HMFFlGgj7\",onTap:onTap1pb1fbx,ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:1,...style},variants:{\"Aa4SiWJ0A-hover\":{opacity:.8},Aa4SiWJ0A:{opacity:.6}},...addPropertyOverrides({\"Aa4SiWJ0A-hover\":{\"data-framer-name\":undefined},Aa4SiWJ0A:{\"data-framer-name\":\"Inactive\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e4l0r8\",\"data-framer-name\":\"Icon & Title\",layoutDependency:layoutDependency,layoutId:\"IeB1OCsMC\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-r5d5FXC3N-nNCxxp29T) * 1px)\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-72e8df52-57a2-46b1-82a3-f1511a4cdd86, rgb(16, 16, 16)))\"},children:\"Manage Emails\"})}),className:\"framer-1knr05c\",fonts:[\"FS;Poppins-medium\"],layoutDependency:layoutDependency,layoutId:\"PfmjvRj9n\",style:{\"--extracted-1w1cjl5\":\"var(--token-72e8df52-57a2-46b1-82a3-f1511a4cdd86, rgb(16, 16, 16))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-r5d5FXC3N-nNCxxp29T\":r5d5FXC3N,opacity:1},text:X9WKpbPyk,variants:{Aa4SiWJ0A:{opacity:.75}},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-QJ6ZHrVMp-nNCxxp29T) * 1px)\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-083da567-1984-46de-8d11-75574a1e76b2, rgb(99, 99, 105)))\"},children:\"Monitor your team's productivity by viewing completed tasks and active projects. \"})}),className:\"framer-h9tjd0\",fonts:[\"FS;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"bCjIzNA0Q\",style:{\"--extracted-r6o4lv\":\"var(--token-083da567-1984-46de-8d11-75574a1e76b2, rgb(99, 99, 105))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-QJ6ZHrVMp-nNCxxp29T\":QJ6ZHrVMp,opacity:1},text:pqWbCUIg6,variants:{Aa4SiWJ0A:{opacity:.75}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:eYaMFDOnx,nodeId:\"QJWosTEtN\",openInNewTab:false,...addPropertyOverrides({\"Aa4SiWJ0A-hover\":{href:undefined},Aa4SiWJ0A:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-18wpfi0 framer-9we3wc\",\"data-framer-name\":\"Button with text and arrow\",layoutDependency:layoutDependency,layoutId:\"QJWosTEtN\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1},variants:{Aa4SiWJ0A:{opacity:.75}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u54qb8\",layoutDependency:layoutDependency,layoutId:\"ZctckscZg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-BiSyj0QBJ-nNCxxp29T) * 1px)\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-53793f82-d2e9-4a07-9ab9-75c763d2e1e5, rgb(0, 71, 255)))\"},children:\"Learn More\"})}),className:\"framer-6yf02y\",\"data-framer-name\":\"Text\",\"data-highlight\":true,fonts:[\"FS;Poppins-medium\"],layoutDependency:layoutDependency,layoutId:\"laTDc5QSd\",onTap:onTap1txlkss,style:{\"--extracted-r6o4lv\":\"var(--token-53793f82-d2e9-4a07-9ab9-75c763d2e1e5, rgb(0, 71, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-BiSyj0QBJ-nNCxxp29T\":BiSyj0QBJ},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nuabn3-container\",layoutDependency:layoutDependency,layoutId:\"LiMTNsBWu-container\",style:{rotate:40},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-53793f82-d2e9-4a07-9ab9-75c763d2e1e5, rgb(0, 71, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"LiMTNsBWu\",layoutId:\"LiMTNsBWu\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})})}),/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ym2psm\",\"data-framer-name\":\"Horizontal\",layoutDependency:layoutDependency,layoutId:\"xGU41CbHt\",style:{backgroundColor:\"rgb(224, 228, 236)\"},children:/*#__PURE__*/_jsx(Transition,{value:transition3,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y3fwns\",\"data-framer-name\":\"Line fill\",layoutDependency:layoutDependency,layoutId:\"dOpQZGQfQ\",style:{backgroundColor:VxG2QM1xS}})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-x3LeD.framer-9we3wc, .framer-x3LeD .framer-9we3wc { display: block; }\",\".framer-x3LeD.framer-1aw4iz6 { align-content: flex-start; align-items: flex-start; cursor: default; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px 16px 24px 16px; position: relative; width: 462px; }\",\".framer-x3LeD .framer-1e4l0r8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-x3LeD .framer-1knr05c { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-x3LeD .framer-h9tjd0 { --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-x3LeD .framer-18wpfi0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-x3LeD .framer-u54qb8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 19px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-x3LeD .framer-6yf02y { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-x3LeD .framer-nuabn3-container { flex: none; height: 23px; position: relative; width: 27px; }\",\".framer-x3LeD .framer-ym2psm { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 2px; justify-content: flex-start; left: 16px; overflow: visible; padding: 0px; position: absolute; right: 16px; z-index: 1; }\",\".framer-x3LeD .framer-1y3fwns { flex: none; height: 2px; overflow: visible; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-x3LeD.framer-1aw4iz6, .framer-x3LeD .framer-1e4l0r8, .framer-x3LeD .framer-18wpfi0, .framer-x3LeD .framer-u54qb8, .framer-x3LeD .framer-ym2psm { gap: 0px; } .framer-x3LeD.framer-1aw4iz6 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-x3LeD.framer-1aw4iz6 > :first-child, .framer-x3LeD .framer-18wpfi0 > :first-child { margin-top: 0px; } .framer-x3LeD.framer-1aw4iz6 > :last-child, .framer-x3LeD .framer-18wpfi0 > :last-child { margin-bottom: 0px; } .framer-x3LeD .framer-1e4l0r8 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-x3LeD .framer-1e4l0r8 > :first-child, .framer-x3LeD .framer-u54qb8 > :first-child, .framer-x3LeD .framer-ym2psm > :first-child { margin-left: 0px; } .framer-x3LeD .framer-1e4l0r8 > :last-child, .framer-x3LeD .framer-u54qb8 > :last-child, .framer-x3LeD .framer-ym2psm > :last-child { margin-right: 0px; } .framer-x3LeD .framer-18wpfi0 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-x3LeD .framer-u54qb8 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-x3LeD .framer-ym2psm > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-x3LeD.framer-v-kapk8k.framer-1aw4iz6 { cursor: pointer; }\",\".framer-x3LeD.framer-v-kapk8k .framer-1y3fwns { width: 0%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 174.5\n * @framerIntrinsicWidth 462\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Aa4SiWJ0A\":{\"layout\":[\"fixed\",\"auto\"]},\"Z4UCHtD0i\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"X9WKpbPyk\":\"title\",\"r5d5FXC3N\":\"fontSizeActiveTitle\",\"pqWbCUIg6\":\"description\",\"QJ6ZHrVMp\":\"fontSizeActiveDescription\",\"Bu4Ywo667\":\"click\",\"VxG2QM1xS\":\"lineColor\",\"BiSyj0QBJ\":\"fontSizeActiveLink\",\"eYaMFDOnx\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernNCxxp29T=withCSS(Component,css,\"framer-x3LeD\");export default FramernNCxxp29T;FramernNCxxp29T.displayName=\"Cards/Other features 3\";FramernNCxxp29T.defaultProps={height:174.5,width:462};addPropertyControls(FramernNCxxp29T,{variant:{options:[\"HMFFlGgj7\",\"Aa4SiWJ0A\"],optionTitles:[\"Active\",\"Inactive\"],title:\"Variant\",type:ControlType.Enum},X9WKpbPyk:{defaultValue:\"Manage Emails\",displayTextArea:false,title:\"Title\",type:ControlType.String},r5d5FXC3N:{defaultValue:20,title:\"Font Size Active title\",type:ControlType.Number},pqWbCUIg6:{defaultValue:\"Monitor your team's productivity by viewing completed tasks and active projects. \",displayTextArea:false,title:\"Description\",type:ControlType.String},QJ6ZHrVMp:{defaultValue:18,title:\"Font Size Active Description\",type:ControlType.Number},Bu4Ywo667:{title:\"Click\",type:ControlType.EventHandler},VxG2QM1xS:{defaultValue:\"var(--token-fe65a76b-2bec-47ef-8ad1-5fc7a52718d1, rgb(255, 84, 0))\",title:\"line color\",type:ControlType.Color},BiSyj0QBJ:{defaultValue:16,title:\"Font Size Active Link\",type:ControlType.Number},eYaMFDOnx:{title:\"Link\",type:ControlType.Link}});addFonts(FramernNCxxp29T,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K4RHKGAGLQZBXEZQT2O2AGSLKJF2E4YC/JRUTXNFPWLFGIEVSSEYOW7EP7TYM3V6A/UCDYLFFGLZRGCFY5GYDYM5LDB52BAR5M.woff2\",weight:\"500\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernNCxxp29T\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"174.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Aa4SiWJ0A\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Z4UCHtD0i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"X9WKpbPyk\\\":\\\"title\\\",\\\"r5d5FXC3N\\\":\\\"fontSizeActiveTitle\\\",\\\"pqWbCUIg6\\\":\\\"description\\\",\\\"QJ6ZHrVMp\\\":\\\"fontSizeActiveDescription\\\",\\\"Bu4Ywo667\\\":\\\"click\\\",\\\"VxG2QM1xS\\\":\\\"lineColor\\\",\\\"BiSyj0QBJ\\\":\\\"fontSizeActiveLink\\\",\\\"eYaMFDOnx\\\":\\\"link\\\"}\",\"framerIntrinsicWidth\":\"462\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nNCxxp29T.map","// Generated by Framer (b0164a3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import CardsOtherFeatures3 from\"https://framerusercontent.com/modules/a3qUhoSSdKXwmUY0kSwo/kOmufOWaeQ2yC6QFjLJH/nNCxxp29T.js\";const CardsOtherFeatures3Fonts=getFonts(CardsOtherFeatures3);const cycleOrder=[\"PwBj9WORk\",\"SvThOhD9p\",\"sMjbCkLWQ\",\"wyQkWfRHp\",\"zmnHvEp_P\",\"rnrysG12T\",\"TO6UxX_Br\"];const serializationHash=\"framer-aR0iQ\";const variantClassNames={PwBj9WORk:\"framer-v-141rbgs\",rnrysG12T:\"framer-v-879aw9\",sMjbCkLWQ:\"framer-v-y430bb\",SvThOhD9p:\"framer-v-187q3ql\",TO6UxX_Br:\"framer-v-1kbca74\",wyQkWfRHp:\"framer-v-tfetg3\",zmnHvEp_P:\"framer-v-1y0190w\"};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 transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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 humanReadableVariantMap={\"1 Mobile\":\"TO6UxX_Br\",\"2 Mobile \":\"zmnHvEp_P\",\"3 Mobile\":\"rnrysG12T\",\"First Tablet\":\"wyQkWfRHp\",First:\"PwBj9WORk\",Second:\"SvThOhD9p\",Third:\"sMjbCkLWQ\"};const getProps=({_1BGColor,_1Description,_1FeatureTitle,_1Image,_2BGColor,_2Description,_2Image,_2Title,_3BGColor,_3Description,_3Image,_3Title,fontSizeActiveDescription,fontSizeActiveDescription2,fontSizeActiveDescription3,fontSizeActiveLink,fontSizeActiveLink2,fontSizeActiveLink3,fontSizeActiveTitle,fontSizeActiveTitle2,fontSizeActiveTitle3,height,id,lineColor,lineColor2,lineColor3,link,link2,link3,padding,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_ref7,_ref8,_ref9,_ref10,_ref11,_ref12,_ref13,_ref14,_ref15,_ref16,_ref17,_ref18,_ref19,_ref20,_ref21,_humanReadableVariantMap_props_variant,_ref22,_ref23,_ref24,_ref25;return{...props,eyAAv7hsS:(_ref=fontSizeActiveDescription3!==null&&fontSizeActiveDescription3!==void 0?fontSizeActiveDescription3:props.eyAAv7hsS)!==null&&_ref!==void 0?_ref:18,fJH86HxZ3:(_ref1=fontSizeActiveDescription!==null&&fontSizeActiveDescription!==void 0?fontSizeActiveDescription:props.fJH86HxZ3)!==null&&_ref1!==void 0?_ref1:18,fs_kU7nEh:(_ref2=_3Image!==null&&_3Image!==void 0?_3Image:props.fs_kU7nEh)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/kRCdWfYOkizKy4OV1oaIM2sHJGI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kRCdWfYOkizKy4OV1oaIM2sHJGI.png?scale-down-to=1024 847w,https://framerusercontent.com/images/kRCdWfYOkizKy4OV1oaIM2sHJGI.png 1056w\"},GUWEbo3u9:(_ref3=lineColor3!==null&&lineColor3!==void 0?lineColor3:props.GUWEbo3u9)!==null&&_ref3!==void 0?_ref3:\"var(--token-fe65a76b-2bec-47ef-8ad1-5fc7a52718d1, rgb(255, 84, 0))\",GXtd2z04v:link!==null&&link!==void 0?link:props.GXtd2z04v,GYhVAV0cF:(_ref4=_2Image!==null&&_2Image!==void 0?_2Image:props.GYhVAV0cF)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/Yjt0qJVDIYo9jFyfabCdCylJg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Yjt0qJVDIYo9jFyfabCdCylJg.png?scale-down-to=1024 567w,https://framerusercontent.com/images/Yjt0qJVDIYo9jFyfabCdCylJg.png 1056w\"},HRGXluAxJ:(_ref5=fontSizeActiveDescription2!==null&&fontSizeActiveDescription2!==void 0?fontSizeActiveDescription2:props.HRGXluAxJ)!==null&&_ref5!==void 0?_ref5:18,i5EZ9RB9c:(_ref6=_1Image!==null&&_1Image!==void 0?_1Image:props.i5EZ9RB9c)!==null&&_ref6!==void 0?_ref6:{src:\"https://framerusercontent.com/images/tp8uu7obXmEsUQQgloRYblglo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/tp8uu7obXmEsUQQgloRYblglo.png?scale-down-to=2048 963w,https://framerusercontent.com/images/tp8uu7obXmEsUQQgloRYblglo.png 1440w\"},ICS38Ztie:(_ref7=_3Description!==null&&_3Description!==void 0?_3Description:props.ICS38Ztie)!==null&&_ref7!==void 0?_ref7:\"Assign tasks, share notes, and engage in real-time discussions with your team.\",IUTd6asXn:(_ref8=_1Description!==null&&_1Description!==void 0?_1Description:props.IUTd6asXn)!==null&&_ref8!==void 0?_ref8:\"Monitor your team's productivity by viewing completed tasks and active projects. \",JKPc3X8Sx:(_ref9=_2Title!==null&&_2Title!==void 0?_2Title:props.JKPc3X8Sx)!==null&&_ref9!==void 0?_ref9:\"Organize meeting notes\",m6Ht9ZMUn:(_ref10=padding!==null&&padding!==void 0?padding:props.m6Ht9ZMUn)!==null&&_ref10!==void 0?_ref10:\"40px 0px 0px 40px\",MD9PKxcjq:(_ref11=fontSizeActiveTitle!==null&&fontSizeActiveTitle!==void 0?fontSizeActiveTitle:props.MD9PKxcjq)!==null&&_ref11!==void 0?_ref11:20,mpSZYLdlM:(_ref12=fontSizeActiveLink!==null&&fontSizeActiveLink!==void 0?fontSizeActiveLink:props.mpSZYLdlM)!==null&&_ref12!==void 0?_ref12:16,mV_XfDaix:(_ref13=lineColor!==null&&lineColor!==void 0?lineColor:props.mV_XfDaix)!==null&&_ref13!==void 0?_ref13:\"var(--token-fe65a76b-2bec-47ef-8ad1-5fc7a52718d1, rgb(255, 84, 0))\",N3G8ERnRn:(_ref14=fontSizeActiveTitle3!==null&&fontSizeActiveTitle3!==void 0?fontSizeActiveTitle3:props.N3G8ERnRn)!==null&&_ref14!==void 0?_ref14:20,NPusQPsEB:(_ref15=_3BGColor!==null&&_3BGColor!==void 0?_3BGColor:props.NPusQPsEB)!==null&&_ref15!==void 0?_ref15:\"var(--token-3512856e-1135-4798-87b1-f312e191da1d, rgb(199, 210, 254))\",obBBWer0d:(_ref16=_2Description!==null&&_2Description!==void 0?_2Description:props.obBBWer0d)!==null&&_ref16!==void 0?_ref16:\"Use detailed task views, checklists, and due dates to stay on top of your projects.\",QZD3TptcP:(_ref17=_2BGColor!==null&&_2BGColor!==void 0?_2BGColor:props.QZD3TptcP)!==null&&_ref17!==void 0?_ref17:\"var(--token-7b61a4e7-85d0-4823-b575-fec38224f291, rgb(153, 246, 228))\",SAPkegguk:(_ref18=fontSizeActiveLink3!==null&&fontSizeActiveLink3!==void 0?fontSizeActiveLink3:props.SAPkegguk)!==null&&_ref18!==void 0?_ref18:16,sItqqV_JI:(_ref19=fontSizeActiveLink2!==null&&fontSizeActiveLink2!==void 0?fontSizeActiveLink2:props.sItqqV_JI)!==null&&_ref19!==void 0?_ref19:16,UTZFdItwp:(_ref20=_3Title!==null&&_3Title!==void 0?_3Title:props.UTZFdItwp)!==null&&_ref20!==void 0?_ref20:\"Collaborate in real time\",va31xS7ri:(_ref21=_1FeatureTitle!==null&&_1FeatureTitle!==void 0?_1FeatureTitle:props.va31xS7ri)!==null&&_ref21!==void 0?_ref21:\"Categorize contacts\",variant:(_ref22=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref22!==void 0?_ref22:\"PwBj9WORk\",wGadHjpWe:(_ref23=lineColor2!==null&&lineColor2!==void 0?lineColor2:props.wGadHjpWe)!==null&&_ref23!==void 0?_ref23:\"var(--token-fe65a76b-2bec-47ef-8ad1-5fc7a52718d1, rgb(255, 84, 0))\",Xa0UY8wDC:link2!==null&&link2!==void 0?link2:props.Xa0UY8wDC,yGAYmqxv7:(_ref24=_1BGColor!==null&&_1BGColor!==void 0?_1BGColor:props.yGAYmqxv7)!==null&&_ref24!==void 0?_ref24:\"var(--token-6e9fc4db-d362-4a6b-a98c-47b43db75fae, rgb(230, 230, 250))\",yU6srzCRp:(_ref25=fontSizeActiveTitle2!==null&&fontSizeActiveTitle2!==void 0?fontSizeActiveTitle2:props.yU6srzCRp)!==null&&_ref25!==void 0?_ref25:20,ZAOAru7t2:link3!==null&&link3!==void 0?link3:props.ZAOAru7t2};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,va31xS7ri,IUTd6asXn,i5EZ9RB9c,yGAYmqxv7,JKPc3X8Sx,obBBWer0d,GYhVAV0cF,QZD3TptcP,UTZFdItwp,ICS38Ztie,fs_kU7nEh,NPusQPsEB,m6Ht9ZMUn,mV_XfDaix,wGadHjpWe,GUWEbo3u9,MD9PKxcjq,fJH86HxZ3,mpSZYLdlM,yU6srzCRp,HRGXluAxJ,sItqqV_JI,N3G8ERnRn,eyAAv7hsS,SAPkegguk,GXtd2z04v,Xa0UY8wDC,ZAOAru7t2,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"PwBj9WORk\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1o5tnpf=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"SvThOhD9p\"),1e4);});const onAppeary2aw5b=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"sMjbCkLWQ\"),1e4);});const onAppear17fo6ni=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"PwBj9WORk\"),1e4);});const onAppearrgjwjs=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"rnrysG12T\"),1e4);});const Bu4Ywo6677uem4r=activeVariantCallback(async(...args)=>{setVariant(\"PwBj9WORk\");});const Bu4Ywo667zqm6qu=activeVariantCallback(async(...args)=>{setVariant(\"TO6UxX_Br\");});const Bu4Ywo6671d6diw5=activeVariantCallback(async(...args)=>{setVariant(\"zmnHvEp_P\");});const Bu4Ywo6671ir6le0=activeVariantCallback(async(...args)=>{setVariant(\"SvThOhD9p\");});const Bu4Ywo6671r2h1zl=activeVariantCallback(async(...args)=>{setVariant(\"sMjbCkLWQ\");});const Bu4Ywo667pa78u5=activeVariantCallback(async(...args)=>{setVariant(\"rnrysG12T\");});useOnVariantChange(baseVariant,{default:onAppear1o5tnpf,rnrysG12T:undefined,sMjbCkLWQ:onAppear17fo6ni,SvThOhD9p:onAppeary2aw5b,TO6UxX_Br:onAppearrgjwjs,zmnHvEp_P:onAppearrgjwjs});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();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:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-141rbgs\",className,classNames),\"data-framer-name\":\"First\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"PwBj9WORk\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({rnrysG12T:{\"data-framer-name\":\"3 Mobile\",\"data-highlight\":undefined},sMjbCkLWQ:{\"data-framer-name\":\"Third\"},SvThOhD9p:{\"data-framer-name\":\"Second\"},TO6UxX_Br:{\"data-framer-name\":\"1 Mobile\"},wyQkWfRHp:{\"data-framer-name\":\"First Tablet\"},zmnHvEp_P:{\"data-framer-name\":\"2 Mobile \"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-4y3jmw\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"jyDPG7oJO\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y6b6qd\",layoutDependency:layoutDependency,layoutId:\"agmjpowkz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,...addPropertyOverrides({rnrysG12T:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1189.5)-0-898)/2+0+0)+0+0+0},TO6UxX_Br:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1189.5)-0-898)/2+0+0)+0+0+0},zmnHvEp_P:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1189.5)-0-898)/2+0+0)+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fv3ws0-container\",layoutDependency:layoutDependency,layoutId:\"JpkEl911N-container\",children:/*#__PURE__*/_jsx(CardsOtherFeatures3,{BiSyj0QBJ:mpSZYLdlM,Bu4Ywo667:Bu4Ywo6677uem4r,eYaMFDOnx:GXtd2z04v,height:\"100%\",id:\"JpkEl911N\",layoutId:\"JpkEl911N\",pqWbCUIg6:IUTd6asXn,QJ6ZHrVMp:fJH86HxZ3,r5d5FXC3N:MD9PKxcjq,style:{width:\"100%\"},variant:\"HMFFlGgj7\",VxG2QM1xS:mV_XfDaix,width:\"100%\",X9WKpbPyk:va31xS7ri,...addPropertyOverrides({rnrysG12T:{Bu4Ywo667:Bu4Ywo667zqm6qu,variant:\"Aa4SiWJ0A\"},sMjbCkLWQ:{variant:\"Aa4SiWJ0A\"},SvThOhD9p:{variant:\"Aa4SiWJ0A\"},TO6UxX_Br:{Bu4Ywo667:Bu4Ywo6671d6diw5},zmnHvEp_P:{Bu4Ywo667:Bu4Ywo667zqm6qu,variant:\"Aa4SiWJ0A\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,...addPropertyOverrides({rnrysG12T:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1189.5)-0-898)/2+0+0)+0+0+174},TO6UxX_Br:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1189.5)-0-898)/2+0+0)+0+0+174},zmnHvEp_P:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1189.5)-0-898)/2+0+0)+0+0+174}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vwrksl-container\",layoutDependency:layoutDependency,layoutId:\"w4MWQ_5Bz-container\",children:/*#__PURE__*/_jsx(CardsOtherFeatures3,{BiSyj0QBJ:sItqqV_JI,Bu4Ywo667:Bu4Ywo6671ir6le0,eYaMFDOnx:Xa0UY8wDC,height:\"100%\",id:\"w4MWQ_5Bz\",layoutId:\"w4MWQ_5Bz\",pqWbCUIg6:obBBWer0d,QJ6ZHrVMp:HRGXluAxJ,r5d5FXC3N:yU6srzCRp,style:{width:\"100%\"},variant:\"Aa4SiWJ0A\",VxG2QM1xS:\"var(--token-fe65a76b-2bec-47ef-8ad1-5fc7a52718d1, rgb(255, 84, 0))\",width:\"100%\",X9WKpbPyk:JKPc3X8Sx,...addPropertyOverrides({rnrysG12T:{Bu4Ywo667:Bu4Ywo6671d6diw5},SvThOhD9p:{variant:\"HMFFlGgj7\",VxG2QM1xS:wGadHjpWe},TO6UxX_Br:{Bu4Ywo667:Bu4Ywo6671d6diw5,VxG2QM1xS:wGadHjpWe},zmnHvEp_P:{Bu4Ywo667:Bu4Ywo6671d6diw5,variant:\"HMFFlGgj7\",VxG2QM1xS:wGadHjpWe}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,...addPropertyOverrides({rnrysG12T:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1189.5)-0-898)/2+0+0)+0+0+348},TO6UxX_Br:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1189.5)-0-898)/2+0+0)+0+0+348},zmnHvEp_P:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1189.5)-0-898)/2+0+0)+0+0+348}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xhf5jj-container\",layoutDependency:layoutDependency,layoutId:\"vUmA59nEw-container\",children:/*#__PURE__*/_jsx(CardsOtherFeatures3,{BiSyj0QBJ:SAPkegguk,Bu4Ywo667:Bu4Ywo6671r2h1zl,eYaMFDOnx:ZAOAru7t2,height:\"100%\",id:\"vUmA59nEw\",layoutId:\"vUmA59nEw\",pqWbCUIg6:ICS38Ztie,QJ6ZHrVMp:eyAAv7hsS,r5d5FXC3N:N3G8ERnRn,style:{width:\"100%\"},variant:\"Aa4SiWJ0A\",VxG2QM1xS:\"var(--token-fe65a76b-2bec-47ef-8ad1-5fc7a52718d1, rgb(255, 84, 0))\",width:\"100%\",X9WKpbPyk:UTZFdItwp,...addPropertyOverrides({rnrysG12T:{Bu4Ywo667:Bu4Ywo667pa78u5,variant:\"HMFFlGgj7\",VxG2QM1xS:GUWEbo3u9},sMjbCkLWQ:{variant:\"HMFFlGgj7\",VxG2QM1xS:GUWEbo3u9},TO6UxX_Br:{Bu4Ywo667:Bu4Ywo667pa78u5},zmnHvEp_P:{Bu4Ywo667:Bu4Ywo667pa78u5}},baseVariant,gestureVariant)})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mgi2ha\",\"data-border\":true,\"data-framer-name\":\"Image container\",layoutDependency:layoutDependency,layoutId:\"B7bIdnA0h\",style:{\"--1lxxt3\":numberToPixelString(m6Ht9ZMUn),\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b5ecd879-47d5-47a3-ba13-eda05d3b0a90, rgba(184, 184, 184, 0.2))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:yGAYmqxv7,borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},variants:{rnrysG12T:{backgroundColor:NPusQPsEB},sMjbCkLWQ:{backgroundColor:NPusQPsEB},SvThOhD9p:{backgroundColor:QZD3TptcP},TO6UxX_Br:{backgroundColor:QZD3TptcP},zmnHvEp_P:{backgroundColor:QZD3TptcP}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3060,pixelWidth:1440,sizes:`calc((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 250px) - ${m6Ht9ZMUn*2}px) * 1.2)`,...toResponsiveImage(i5EZ9RB9c),...{positionX:\"left\",positionY:\"top\"}},className:\"framer-o9gu4k\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"Avkb89b8I\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-b5ecd879-47d5-47a3-ba13-eda05d3b0a90, rgb(183, 183, 183))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},...addPropertyOverrides({rnrysG12T:{background:{alt:\"\",fit:\"fill\",pixelHeight:1276,pixelWidth:1056,sizes:`calc((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 250px) - ${m6Ht9ZMUn*2}px) * 1.2)`,...toResponsiveImage(fs_kU7nEh),...{positionX:\"left\",positionY:\"top\"}}},sMjbCkLWQ:{background:{alt:\"\",fit:\"fill\",pixelHeight:1276,pixelWidth:1056,sizes:`calc((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 250px) - ${m6Ht9ZMUn*2}px) * 1.2)`,...toResponsiveImage(fs_kU7nEh),...{positionX:\"left\",positionY:\"top\"}}},SvThOhD9p:{background:{alt:\"\",fit:\"fill\",pixelHeight:1904,pixelWidth:1056,sizes:`calc((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 250px) - ${m6Ht9ZMUn*2}px) * 1.2)`,...toResponsiveImage(GYhVAV0cF),...{positionX:\"left\",positionY:\"top\"}}},TO6UxX_Br:{background:{alt:\"\",fit:\"fill\",pixelHeight:1904,pixelWidth:1056,sizes:`calc((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 250px) - ${m6Ht9ZMUn*2}px) * 1.2)`,...toResponsiveImage(i5EZ9RB9c),...{positionX:\"left\",positionY:\"top\"}}},zmnHvEp_P:{background:{alt:\"\",fit:\"fill\",pixelHeight:1904,pixelWidth:1056,sizes:`calc((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 250px) - ${m6Ht9ZMUn*2}px) * 1.2)`,...toResponsiveImage(GYhVAV0cF),...{positionX:\"left\",positionY:\"top\"}}}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aR0iQ.framer-8qteuy, .framer-aR0iQ .framer-8qteuy { display: block; }\",\".framer-aR0iQ.framer-141rbgs { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 900px; }\",\".framer-aR0iQ .framer-4y3jmw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-aR0iQ .framer-y6b6qd { 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: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-aR0iQ .framer-fv3ws0-container, .framer-aR0iQ .framer-vwrksl-container, .framer-aR0iQ .framer-1xhf5jj-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-aR0iQ .framer-mgi2ha { align-content: flex-start; align-items: flex-start; aspect-ratio: 1.25 / 1; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 364px); justify-content: flex-start; min-width: 250px; overflow: hidden; padding: var(--1lxxt3); position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-aR0iQ .framer-o9gu4k { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 373px); overflow: hidden; position: relative; width: 120%; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aR0iQ.framer-141rbgs, .framer-aR0iQ .framer-4y3jmw, .framer-aR0iQ .framer-y6b6qd, .framer-aR0iQ .framer-mgi2ha { gap: 0px; } .framer-aR0iQ.framer-141rbgs > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-aR0iQ.framer-141rbgs > :first-child, .framer-aR0iQ .framer-4y3jmw > :first-child { margin-left: 0px; } .framer-aR0iQ.framer-141rbgs > :last-child, .framer-aR0iQ .framer-4y3jmw > :last-child { margin-right: 0px; } .framer-aR0iQ .framer-4y3jmw > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-aR0iQ .framer-y6b6qd > *, .framer-aR0iQ .framer-mgi2ha > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-aR0iQ .framer-y6b6qd > :first-child, .framer-aR0iQ .framer-mgi2ha > :first-child { margin-top: 0px; } .framer-aR0iQ .framer-y6b6qd > :last-child, .framer-aR0iQ .framer-mgi2ha > :last-child { margin-bottom: 0px; } }\",\".framer-aR0iQ.framer-v-1y0190w.framer-141rbgs, .framer-aR0iQ.framer-v-879aw9.framer-141rbgs, .framer-aR0iQ.framer-v-1kbca74.framer-141rbgs { flex-direction: column; }\",\".framer-aR0iQ.framer-v-1y0190w .framer-4y3jmw, .framer-aR0iQ.framer-v-879aw9 .framer-4y3jmw, .framer-aR0iQ.framer-v-1kbca74 .framer-4y3jmw { flex: none; width: 100%; }\",\".framer-aR0iQ.framer-v-1y0190w .framer-mgi2ha, .framer-aR0iQ.framer-v-879aw9 .framer-mgi2ha, .framer-aR0iQ.framer-v-1kbca74 .framer-mgi2ha { flex: none; height: var(--framer-aspect-ratio-supported, 720px); width: 100%; }\",\".framer-aR0iQ.framer-v-1y0190w .framer-o9gu4k, .framer-aR0iQ.framer-v-879aw9 .framer-o9gu4k, .framer-aR0iQ.framer-v-1kbca74 .framer-o9gu4k { height: var(--framer-aspect-ratio-supported, 774px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aR0iQ.framer-v-1y0190w.framer-141rbgs { gap: 0px; } .framer-aR0iQ.framer-v-1y0190w.framer-141rbgs > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-aR0iQ.framer-v-1y0190w.framer-141rbgs > :first-child { margin-top: 0px; } .framer-aR0iQ.framer-v-1y0190w.framer-141rbgs > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aR0iQ.framer-v-879aw9.framer-141rbgs { gap: 0px; } .framer-aR0iQ.framer-v-879aw9.framer-141rbgs > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-aR0iQ.framer-v-879aw9.framer-141rbgs > :first-child { margin-top: 0px; } .framer-aR0iQ.framer-v-879aw9.framer-141rbgs > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aR0iQ.framer-v-1kbca74.framer-141rbgs { gap: 0px; } .framer-aR0iQ.framer-v-1kbca74.framer-141rbgs > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-aR0iQ.framer-v-1kbca74.framer-141rbgs > :first-child { margin-top: 0px; } .framer-aR0iQ.framer-v-1kbca74.framer-141rbgs > :last-child { margin-bottom: 0px; } }\",'.framer-aR0iQ[data-border=\"true\"]::after, .framer-aR0iQ [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 552.5\n * @framerIntrinsicWidth 900\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SvThOhD9p\":{\"layout\":[\"fixed\",\"auto\"]},\"sMjbCkLWQ\":{\"layout\":[\"fixed\",\"auto\"]},\"wyQkWfRHp\":{\"layout\":[\"fixed\",\"auto\"]},\"zmnHvEp_P\":{\"layout\":[\"fixed\",\"auto\"]},\"rnrysG12T\":{\"layout\":[\"fixed\",\"auto\"]},\"TO6UxX_Br\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"va31xS7ri\":\"_1FeatureTitle\",\"IUTd6asXn\":\"_1Description\",\"i5EZ9RB9c\":\"_1Image\",\"yGAYmqxv7\":\"_1BGColor\",\"JKPc3X8Sx\":\"_2Title\",\"obBBWer0d\":\"_2Description\",\"GYhVAV0cF\":\"_2Image\",\"QZD3TptcP\":\"_2BGColor\",\"UTZFdItwp\":\"_3Title\",\"ICS38Ztie\":\"_3Description\",\"fs_kU7nEh\":\"_3Image\",\"NPusQPsEB\":\"_3BGColor\",\"m6Ht9ZMUn\":\"padding\",\"mV_XfDaix\":\"lineColor\",\"wGadHjpWe\":\"lineColor2\",\"GUWEbo3u9\":\"lineColor3\",\"MD9PKxcjq\":\"fontSizeActiveTitle\",\"fJH86HxZ3\":\"fontSizeActiveDescription\",\"mpSZYLdlM\":\"fontSizeActiveLink\",\"yU6srzCRp\":\"fontSizeActiveTitle2\",\"HRGXluAxJ\":\"fontSizeActiveDescription2\",\"sItqqV_JI\":\"fontSizeActiveLink2\",\"N3G8ERnRn\":\"fontSizeActiveTitle3\",\"eyAAv7hsS\":\"fontSizeActiveDescription3\",\"SAPkegguk\":\"fontSizeActiveLink3\",\"GXtd2z04v\":\"link\",\"Xa0UY8wDC\":\"link2\",\"ZAOAru7t2\":\"link3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJZrS4VK_j=withCSS(Component,css,\"framer-aR0iQ\");export default FramerJZrS4VK_j;FramerJZrS4VK_j.displayName=\"Interactive/Feature slider 3\";FramerJZrS4VK_j.defaultProps={height:552.5,width:900};addPropertyControls(FramerJZrS4VK_j,{variant:{options:[\"PwBj9WORk\",\"SvThOhD9p\",\"sMjbCkLWQ\",\"wyQkWfRHp\",\"zmnHvEp_P\",\"rnrysG12T\",\"TO6UxX_Br\"],optionTitles:[\"First\",\"Second\",\"Third\",\"First Tablet\",\"2 Mobile \",\"3 Mobile\",\"1 Mobile\"],title:\"Variant\",type:ControlType.Enum},va31xS7ri:{defaultValue:\"Categorize contacts\",displayTextArea:false,title:\"1 - Feature title\",type:ControlType.String},IUTd6asXn:{defaultValue:\"Monitor your team's productivity by viewing completed tasks and active projects. \",displayTextArea:false,title:\"1 - Description\",type:ControlType.String},i5EZ9RB9c:{__defaultAssetReference:\"data:framer/asset-reference,tp8uu7obXmEsUQQgloRYblglo.png?originalFilename=Categories.png&preferredSize=auto\",title:\"1 - Image\",type:ControlType.ResponsiveImage},yGAYmqxv7:{defaultValue:'var(--token-6e9fc4db-d362-4a6b-a98c-47b43db75fae, rgb(230, 230, 250)) /* {\"name\":\"Lavender\"} */',title:\"1 - BG color\",type:ControlType.Color},JKPc3X8Sx:{defaultValue:\"Organize meeting notes\",displayTextArea:false,title:\"2 - Title\",type:ControlType.String},obBBWer0d:{defaultValue:\"Use detailed task views, checklists, and due dates to stay on top of your projects.\",displayTextArea:false,title:\"2 - Description\",type:ControlType.String},GYhVAV0cF:{__defaultAssetReference:\"data:framer/asset-reference,Yjt0qJVDIYo9jFyfabCdCylJg.png?originalFilename=Agenda.png&preferredSize=auto\",title:\"2 -Image\",type:ControlType.ResponsiveImage},QZD3TptcP:{defaultValue:'var(--token-7b61a4e7-85d0-4823-b575-fec38224f291, rgb(153, 246, 228)) /* {\"name\":\"Teal-200\"} */',title:\"2 - BG color\",type:ControlType.Color},UTZFdItwp:{defaultValue:\"Collaborate in real time\",displayTextArea:false,title:\"3 - Title\",type:ControlType.String},ICS38Ztie:{defaultValue:\"Assign tasks, share notes, and engage in real-time discussions with your team.\",displayTextArea:false,title:\"3 -Description\",type:ControlType.String},fs_kU7nEh:{__defaultAssetReference:\"data:framer/asset-reference,kRCdWfYOkizKy4OV1oaIM2sHJGI.png?originalFilename=Companies.png&preferredSize=auto\",title:\"3 - Image\",type:ControlType.ResponsiveImage},NPusQPsEB:{defaultValue:'var(--token-3512856e-1135-4798-87b1-f312e191da1d, rgb(199, 210, 254)) /* {\"name\":\"Indigo-200\"} */',title:\"3 - BG color\",type:ControlType.Color},m6Ht9ZMUn:{defaultValue:\"40px 0px 0px 40px\",title:\"Padding\",type:ControlType.Padding},mV_XfDaix:{defaultValue:\"var(--token-fe65a76b-2bec-47ef-8ad1-5fc7a52718d1, rgb(255, 84, 0))\",title:\"Line Color\",type:ControlType.Color},wGadHjpWe:{defaultValue:\"var(--token-fe65a76b-2bec-47ef-8ad1-5fc7a52718d1, rgb(255, 84, 0))\",title:\"Line Color 2\",type:ControlType.Color},GUWEbo3u9:{defaultValue:\"var(--token-fe65a76b-2bec-47ef-8ad1-5fc7a52718d1, rgb(255, 84, 0))\",title:\"Line Color 3\",type:ControlType.Color},MD9PKxcjq:{defaultValue:20,title:\"Font Size Active Title\",type:ControlType.Number},fJH86HxZ3:{defaultValue:18,title:\"Font Size Active Description\",type:ControlType.Number},mpSZYLdlM:{defaultValue:16,title:\"Font Size Active Link\",type:ControlType.Number},yU6srzCRp:{defaultValue:20,title:\"Font Size Active Title 2\",type:ControlType.Number},HRGXluAxJ:{defaultValue:18,title:\"Font Size Active Description 2\",type:ControlType.Number},sItqqV_JI:{defaultValue:16,title:\"Font Size Active Link 2\",type:ControlType.Number},N3G8ERnRn:{defaultValue:20,title:\"Font Size Active Title 3\",type:ControlType.Number},eyAAv7hsS:{defaultValue:18,title:\"Font Size Active Description 3\",type:ControlType.Number},SAPkegguk:{defaultValue:16,title:\"Font Size Active Link 3\",type:ControlType.Number},GXtd2z04v:{title:\"Link\",type:ControlType.Link},Xa0UY8wDC:{title:\"Link 2\",type:ControlType.Link},ZAOAru7t2:{title:\"Link 3\",type:ControlType.Link}});addFonts(FramerJZrS4VK_j,[{explicitInter:true,fonts:[]},...CardsOtherFeatures3Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJZrS4VK_j\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"va31xS7ri\\\":\\\"_1FeatureTitle\\\",\\\"IUTd6asXn\\\":\\\"_1Description\\\",\\\"i5EZ9RB9c\\\":\\\"_1Image\\\",\\\"yGAYmqxv7\\\":\\\"_1BGColor\\\",\\\"JKPc3X8Sx\\\":\\\"_2Title\\\",\\\"obBBWer0d\\\":\\\"_2Description\\\",\\\"GYhVAV0cF\\\":\\\"_2Image\\\",\\\"QZD3TptcP\\\":\\\"_2BGColor\\\",\\\"UTZFdItwp\\\":\\\"_3Title\\\",\\\"ICS38Ztie\\\":\\\"_3Description\\\",\\\"fs_kU7nEh\\\":\\\"_3Image\\\",\\\"NPusQPsEB\\\":\\\"_3BGColor\\\",\\\"m6Ht9ZMUn\\\":\\\"padding\\\",\\\"mV_XfDaix\\\":\\\"lineColor\\\",\\\"wGadHjpWe\\\":\\\"lineColor2\\\",\\\"GUWEbo3u9\\\":\\\"lineColor3\\\",\\\"MD9PKxcjq\\\":\\\"fontSizeActiveTitle\\\",\\\"fJH86HxZ3\\\":\\\"fontSizeActiveDescription\\\",\\\"mpSZYLdlM\\\":\\\"fontSizeActiveLink\\\",\\\"yU6srzCRp\\\":\\\"fontSizeActiveTitle2\\\",\\\"HRGXluAxJ\\\":\\\"fontSizeActiveDescription2\\\",\\\"sItqqV_JI\\\":\\\"fontSizeActiveLink2\\\",\\\"N3G8ERnRn\\\":\\\"fontSizeActiveTitle3\\\",\\\"eyAAv7hsS\\\":\\\"fontSizeActiveDescription3\\\",\\\"SAPkegguk\\\":\\\"fontSizeActiveLink3\\\",\\\"GXtd2z04v\\\":\\\"link\\\",\\\"Xa0UY8wDC\\\":\\\"link2\\\",\\\"ZAOAru7t2\\\":\\\"link3\\\"}\",\"framerIntrinsicHeight\":\"552.5\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"900\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SvThOhD9p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sMjbCkLWQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wyQkWfRHp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zmnHvEp_P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rnrysG12T\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TO6UxX_Br\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JZrS4VK_j.map"],"mappings":"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"}