{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/FXtieRPSI2PBOhyInVuY/HOrkTStoP4QhKof6XFnP/Rc1LbfVFe-0.js", "ssg:https://framerusercontent.com/modules/FXtieRPSI2PBOhyInVuY/HOrkTStoP4QhKof6XFnP/Rc1LbfVFe.js", "ssg:https://framerusercontent.com/modules/iDLWwphxV0Q6IHrzOlk2/GzMnum8QWGwFdVIYZAdp/Rc1LbfVFe.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", "export const v0=\"Cr\\xe9ez votre compte\";export const v1=\"En savoir plus\";export const v2=\"Parlez avec un sp\\xe9cialiste\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b5638f1)\nimport*as localizedValues from\"./Rc1LbfVFe-0.js\";const valuesByLocaleId={UMPnHZBcN:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b5638f1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/jH8udPNBnVOatFzDFxaS/A3SNdAXGy7WLTDN5F7iR/uMfesH059.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/79fZ6yBMD7UwGtCuu70P/u0Fz9Aksn8cP3IEczvQ9/YCzPhMYg1.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/FXtieRPSI2PBOhyInVuY/HOrkTStoP4QhKof6XFnP/Rc1LbfVFe.js\";import CTA from\"https://framerusercontent.com/modules/ynKajCiYARYUSiBLztsP/Pt6YWUNXW3fPwieW5D2t/ADyFJyaRp.js\";const CTAFonts=getFonts(CTA);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"goL6nwc8Q\",\"gQUR53Npd\",\"XxaxOSW8v\",\"JAgPrSDJF\"];const serializationHash=\"framer-9o97R\";const variantClassNames={goL6nwc8Q:\"framer-v-17pqpz7\",gQUR53Npd:\"framer-v-cbfba9\",JAgPrSDJF:\"framer-v-s8s9m0\",XxaxOSW8v:\"framer-v-1dy344i\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};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??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={\"Variant 1\":\"goL6nwc8Q\",\"Variant 2\":\"gQUR53Npd\",\"Variant 3\":\"XxaxOSW8v\",\"Variant 4\":\"JAgPrSDJF\"};const getProps=({advantages1,advantages2,advantages3,height,id,image,link,pastille,title,width,...props})=>{return{...props,az5QRfsUO:link??props.az5QRfsUO,BJUTniiEh:advantages2??props.BJUTniiEh??\"Powerful asset player\",KHUeYR4TA:advantages3??props.KHUeYR4TA??\"Stunning sharing links\",pdGJf3tUq:image??props.pdGJf3tUq??{src:\"https://framerusercontent.com/images/7i0Fbu6X5dWCsIOsjlxZZtIA8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/7i0Fbu6X5dWCsIOsjlxZZtIA8.png?scale-down-to=512 512w,https://framerusercontent.com/images/7i0Fbu6X5dWCsIOsjlxZZtIA8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7i0Fbu6X5dWCsIOsjlxZZtIA8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7i0Fbu6X5dWCsIOsjlxZZtIA8.png 4096w\"},Q7vs_kbHc:pastille??props.Q7vs_kbHc??\"var(--token-b62e8924-a0b2-45fc-b106-5d2206b94d48, rgb(248, 101, 49))\",tm4AsKcpz:title??props.tm4AsKcpz??\"Digital Asset Manager\",variant:humanReadableVariantMap[props.variant]??props.variant??\"goL6nwc8Q\",vn8zYIIcQ:advantages1??props.vn8zYIIcQ??\"Media indexation and search\"};};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,tm4AsKcpz,vn8zYIIcQ,BJUTniiEh,KHUeYR4TA,pdGJf3tUq,az5QRfsUO,Q7vs_kbHc,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"goL6nwc8Q\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const RzryUHgbrtxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);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-17pqpz7\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"goL6nwc8Q\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-44ea1d6f-fbff-40c1-b1c2-afb8c40498d0, rgb(39, 48, 67))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bd258ebb-4548-494e-b5b4-b9f9447c76dc, rgb(22, 29, 45))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},...addPropertyOverrides({gQUR53Npd:{\"data-framer-name\":\"Variant 2\"},JAgPrSDJF:{\"data-framer-name\":\"Variant 4\"},XxaxOSW8v:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uguaxf\",\"data-framer-name\":\"Desc\",layoutDependency:layoutDependency,layoutId:\"asIeRkgmv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-pa6lyq\",\"data-styles-preset\":\"YCzPhMYg1\",children:\"Digital Asset Manager\"})}),className:\"framer-1vrlomt\",\"data-framer-name\":\"Digital Asset Manager\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GGN_7VGLB\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:tm4AsKcpz,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jrjmms\",\"data-framer-name\":\"Advantages\",layoutDependency:layoutDependency,layoutId:\"YFPyFE3v0\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pnfa5v\",\"data-framer-name\":\"Advantage\",layoutDependency:layoutDependency,layoutId:\"RBeQ9nh8a\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18pokpa\",layoutDependency:layoutDependency,layoutId:\"LABAl9zzM\",style:{backgroundColor:Q7vs_kbHc,borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-13evc9n\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"KpK_67uLW\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11 8\"><path d=\"M 1 4.333 L 3.783 7 L 10 1\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-88083653-71d1-48d0-8a5d-3210386c205f, rgb(255, 255, 255))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11956353445,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gn1xa3\",\"data-styles-preset\":\"uMfesH059\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bca20504-934e-4e6b-a267-e2540d4a2d69, rgba(255, 255, 255, 0.8)))\"},children:\"Media indexation and search\"})}),className:\"framer-1tgr5y2\",\"data-framer-name\":\"Media indexation and search\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Qxjj3sLw8\",style:{\"--extracted-r6o4lv\":\"var(--token-bca20504-934e-4e6b-a267-e2540d4a2d69, rgba(255, 255, 255, 0.8))\",\"--framer-paragraph-spacing\":\"0px\"},text:vn8zYIIcQ,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1298wb2\",\"data-framer-name\":\"Advantage\",layoutDependency:layoutDependency,layoutId:\"JnlfuF6vu\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hee6m2\",layoutDependency:layoutDependency,layoutId:\"ERGGhCIbQ\",style:{backgroundColor:Q7vs_kbHc,borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-wcxawg\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"LISTpqULO\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11 8\"><path d=\"M 1 4.333 L 3.783 7 L 10 1\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-88083653-71d1-48d0-8a5d-3210386c205f, rgb(255, 255, 255))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11956353445,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gn1xa3\",\"data-styles-preset\":\"uMfesH059\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bca20504-934e-4e6b-a267-e2540d4a2d69, rgba(255, 255, 255, 0.8)))\"},children:\"Powerful asset player\"})}),className:\"framer-4gprar\",\"data-framer-name\":\"Powerful asset player\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b5s8VWzxt\",style:{\"--extracted-r6o4lv\":\"var(--token-bca20504-934e-4e6b-a267-e2540d4a2d69, rgba(255, 255, 255, 0.8))\",\"--framer-paragraph-spacing\":\"0px\"},text:BJUTniiEh,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2xudjs\",\"data-framer-name\":\"Advantage\",layoutDependency:layoutDependency,layoutId:\"abOJojBcO\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-f8owwv\",layoutDependency:layoutDependency,layoutId:\"dAZ2fi9pa\",style:{backgroundColor:Q7vs_kbHc,borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mbusku\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"XdOpeFSQC\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11 8\"><path d=\"M 1 4.333 L 3.783 7 L 10 1\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-88083653-71d1-48d0-8a5d-3210386c205f, rgb(255, 255, 255))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11956353445,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gn1xa3\",\"data-styles-preset\":\"uMfesH059\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bca20504-934e-4e6b-a267-e2540d4a2d69, rgba(255, 255, 255, 0.8)))\"},children:\"Stunning sharing links\"})}),className:\"framer-80hep0\",\"data-framer-name\":\"Stunning sharing links\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Qssz6di4R\",style:{\"--extracted-r6o4lv\":\"var(--token-bca20504-934e-4e6b-a267-e2540d4a2d69, rgba(255, 255, 255, 0.8))\",\"--framer-paragraph-spacing\":\"0px\"},text:KHUeYR4TA,verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:(componentViewport?.y||0)+32+0+20+638.2,...addPropertyOverrides({gQUR53Npd:{y:(componentViewport?.y||0)+32+20+638.2},JAgPrSDJF:{y:(componentViewport?.y||0)+16+0+20+638.2},XxaxOSW8v:{y:(componentViewport?.y||0)+32+20+638.2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-jaurf3-container\",id:`${layoutId}-jaurf3`,layoutDependency:layoutDependency,layoutId:\"Lh9k72xPK-container\",nodeId:\"Lh9k72xPK\",ref:ref1,rendersWithMotion:true,scopeId:\"Rc1LbfVFe\",children:[/*#__PURE__*/_jsx(CTA,{CG6PHfRg1:false,height:\"100%\",id:\"Lh9k72xPK\",krwX2YSRX:getLocalizedValue(\"v0\",activeLocale)??\"Get Started\",layoutId:\"Lh9k72xPK\",NivNT5fnt:true,Oi1Zf0Uve:az5QRfsUO,RzryUHgbr:RzryUHgbrtxyyif({overlay}),sadEpG1Hu:getLocalizedValue(\"v2\",activeLocale)??\"Talk with a specialist\",SV689BLQV:getLocalizedValue(\"v1\",activeLocale)??\"Find out more\",variant:\"u_A39Ye3F\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref1,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-jaurf3`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1yvob2u\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"rSxtyue1r\",ref:ref2,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"}})})})]})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1upqfdm\",\"data-framer-name\":\"Img container\",layoutDependency:layoutDependency,layoutId:\"zZeKHMGbN\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{gQUR53Npd:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},JAgPrSDJF:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},XxaxOSW8v:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+738.2+0+((Math.max(0,((componentViewport?.height||980)-64-738.2)/1)*1-0-(Math.max(0,(Math.max(0,((componentViewport?.height||980)-64-738.2)/1)*1-0-0)/1)*1+0))/2+0+0)),sizes:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,...toResponsiveImage(pdGJf3tUq),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1vh5950\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"xAd_Q8MfC\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({gQUR53Npd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+0+((((componentViewport?.height||442)-64)*1-0-(Math.max(0,(((componentViewport?.height||442)-64)*1-0-0)/1)*1+0))/2+0+0)),sizes:`max((${componentViewport?.width||\"100vw\"} - 64px) / 2, 1px)`,...toResponsiveImage(pdGJf3tUq),...{positionX:\"center\",positionY:\"center\"}}},JAgPrSDJF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+16+746.2+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,...toResponsiveImage(pdGJf3tUq),...{positionX:\"center\",positionY:\"center\"}}},XxaxOSW8v:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+0+((((componentViewport?.height||200)-64)*1-0-(Math.max(0,(((componentViewport?.height||200)-64)*1-0-0)/1)*1+0))/2+0+0)),sizes:`max((${componentViewport?.width||\"100vw\"} - 64px) / 2, 1px)`,...toResponsiveImage(pdGJf3tUq),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9o97R.framer-1qzl0ld, .framer-9o97R .framer-1qzl0ld { display: block; }\",\".framer-9o97R.framer-17pqpz7 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 980px; justify-content: flex-start; overflow: visible; padding: 32px; position: relative; width: 550px; }\",\".framer-9o97R .framer-1uguaxf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-9o97R .framer-1vrlomt { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9o97R .framer-jrjmms { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9o97R .framer-1pnfa5v, .framer-9o97R .framer-1298wb2, .framer-9o97R .framer-2xudjs { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9o97R .framer-18pokpa, .framer-9o97R .framer-hee6m2, .framer-9o97R .framer-f8owwv { flex: none; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-9o97R .framer-13evc9n, .framer-9o97R .framer-wcxawg, .framer-9o97R .framer-1mbusku { flex: none; height: 8px; left: 7px; position: absolute; top: 8px; width: 11px; }\",\".framer-9o97R .framer-1tgr5y2, .framer-9o97R .framer-4gprar, .framer-9o97R .framer-80hep0 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-9o97R .framer-jaurf3-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-9o97R .framer-1yvob2u { height: 150px; overflow: hidden; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9o97R .framer-1upqfdm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9o97R .framer-1vh5950 { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9o97R.framer-17pqpz7, .framer-9o97R .framer-1uguaxf, .framer-9o97R .framer-jrjmms, .framer-9o97R .framer-1pnfa5v, .framer-9o97R .framer-1298wb2, .framer-9o97R .framer-2xudjs, .framer-9o97R .framer-1upqfdm { gap: 0px; } .framer-9o97R.framer-17pqpz7 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-9o97R.framer-17pqpz7 > :first-child, .framer-9o97R .framer-1uguaxf > :first-child, .framer-9o97R .framer-jrjmms > :first-child, .framer-9o97R .framer-1upqfdm > :first-child { margin-top: 0px; } .framer-9o97R.framer-17pqpz7 > :last-child, .framer-9o97R .framer-1uguaxf > :last-child, .framer-9o97R .framer-jrjmms > :last-child, .framer-9o97R .framer-1upqfdm > :last-child { margin-bottom: 0px; } .framer-9o97R .framer-1uguaxf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-9o97R .framer-jrjmms > * { margin: 0px; margin-bottom: calc(15.100000381469727px / 2); margin-top: calc(15.100000381469727px / 2); } .framer-9o97R .framer-1pnfa5v > *, .framer-9o97R .framer-1298wb2 > *, .framer-9o97R .framer-2xudjs > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-9o97R .framer-1pnfa5v > :first-child, .framer-9o97R .framer-1298wb2 > :first-child, .framer-9o97R .framer-2xudjs > :first-child { margin-left: 0px; } .framer-9o97R .framer-1pnfa5v > :last-child, .framer-9o97R .framer-1298wb2 > :last-child, .framer-9o97R .framer-2xudjs > :last-child { margin-right: 0px; } .framer-9o97R .framer-1upqfdm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-9o97R.framer-v-cbfba9.framer-17pqpz7 { flex-direction: row; gap: 0px; height: 442px; justify-content: center; width: 864px; }\",\".framer-9o97R.framer-v-cbfba9 .framer-1uguaxf { flex: 1 0 0px; height: 100%; width: 1px; }\",\".framer-9o97R.framer-v-cbfba9 .framer-1upqfdm { height: 100%; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9o97R.framer-v-cbfba9.framer-17pqpz7 { gap: 0px; } .framer-9o97R.framer-v-cbfba9.framer-17pqpz7 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-9o97R.framer-v-cbfba9.framer-17pqpz7 > :first-child { margin-left: 0px; } .framer-9o97R.framer-v-cbfba9.framer-17pqpz7 > :last-child { margin-right: 0px; } }\",\".framer-9o97R.framer-v-1dy344i.framer-17pqpz7 { flex-direction: row; gap: 0px; height: min-content; justify-content: center; width: 864px; }\",\".framer-9o97R.framer-v-1dy344i .framer-1uguaxf { flex: 1 0 0px; width: 1px; }\",\".framer-9o97R.framer-v-1dy344i .framer-1vrlomt { width: 314px; }\",\".framer-9o97R.framer-v-1dy344i .framer-1upqfdm { align-self: stretch; height: auto; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9o97R.framer-v-1dy344i.framer-17pqpz7 { gap: 0px; } .framer-9o97R.framer-v-1dy344i.framer-17pqpz7 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-9o97R.framer-v-1dy344i.framer-17pqpz7 > :first-child { margin-left: 0px; } .framer-9o97R.framer-v-1dy344i.framer-17pqpz7 > :last-child { margin-right: 0px; } }\",\".framer-9o97R.framer-v-s8s9m0.framer-17pqpz7 { gap: 32px; height: min-content; padding: 16px; width: 358px; }\",\".framer-9o97R.framer-v-s8s9m0 .framer-1upqfdm { flex: none; height: 240px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9o97R.framer-v-s8s9m0.framer-17pqpz7 { gap: 0px; } .framer-9o97R.framer-v-s8s9m0.framer-17pqpz7 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-9o97R.framer-v-s8s9m0.framer-17pqpz7 > :first-child { margin-top: 0px; } .framer-9o97R.framer-v-s8s9m0.framer-17pqpz7 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-9o97R[data-border=\"true\"]::after, .framer-9o97R [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 980\n * @framerIntrinsicWidth 550\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"gQUR53Npd\":{\"layout\":[\"fixed\",\"fixed\"]},\"XxaxOSW8v\":{\"layout\":[\"fixed\",\"auto\"]},\"JAgPrSDJF\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"tm4AsKcpz\":\"title\",\"vn8zYIIcQ\":\"advantages1\",\"BJUTniiEh\":\"advantages2\",\"KHUeYR4TA\":\"advantages3\",\"pdGJf3tUq\":\"image\",\"az5QRfsUO\":\"link\",\"Q7vs_kbHc\":\"pastille\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerRc1LbfVFe=withCSS(Component,css,\"framer-9o97R\");export default FramerRc1LbfVFe;FramerRc1LbfVFe.displayName=\"Product\";FramerRc1LbfVFe.defaultProps={height:980,width:550};addPropertyControls(FramerRc1LbfVFe,{variant:{options:[\"goL6nwc8Q\",\"gQUR53Npd\",\"XxaxOSW8v\",\"JAgPrSDJF\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},tm4AsKcpz:{defaultValue:\"Digital Asset Manager\",displayTextArea:true,title:\"Title\",type:ControlType.String},vn8zYIIcQ:{defaultValue:\"Media indexation and search\",displayTextArea:false,title:\"Advantages 1\",type:ControlType.String},BJUTniiEh:{defaultValue:\"Powerful asset player\",displayTextArea:false,title:\"Advantages 2\",type:ControlType.String},KHUeYR4TA:{defaultValue:\"Stunning sharing links\",displayTextArea:false,title:\"Advantages 3\",type:ControlType.String},pdGJf3tUq:{__defaultAssetReference:\"data:framer/asset-reference,7i0Fbu6X5dWCsIOsjlxZZtIA8.png?originalFilename=Image.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},az5QRfsUO:{title:\"Link\",type:ControlType.Link},Q7vs_kbHc:{defaultValue:'var(--token-b62e8924-a0b2-45fc-b106-5d2206b94d48, rgb(248, 101, 49)) /* {\"name\":\"Color/Brand/Review\"} */',title:\"Pastille\",type:ControlType.Color}});addFonts(FramerRc1LbfVFe,[{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\"}]},...CTAFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRc1LbfVFe\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"tm4AsKcpz\\\":\\\"title\\\",\\\"vn8zYIIcQ\\\":\\\"advantages1\\\",\\\"BJUTniiEh\\\":\\\"advantages2\\\",\\\"KHUeYR4TA\\\":\\\"advantages3\\\",\\\"pdGJf3tUq\\\":\\\"image\\\",\\\"az5QRfsUO\\\":\\\"link\\\",\\\"Q7vs_kbHc\\\":\\\"pastille\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gQUR53Npd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XxaxOSW8v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JAgPrSDJF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"980\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"550\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "8pBAAgT,IAAIA,GAAa,SAASA,EAAY,CAACA,EAAY,OAAU,MAAMA,EAAY,KAAQ,KAAKA,EAAY,KAAQ,MAAO,GAAGA,IAAcA,EAAY,CAAC,EAAE,EAAE,IAAIC,GAAkB,SAASA,EAAiB,CAACA,EAAiB,KAAQ,eAAeA,EAAiB,OAAU,iBAAiBA,EAAiB,IAAO,cAAcA,EAAiB,IAAO,KAAM,GAAGA,IAAmBA,EAAiB,CAAC,EAAE,EAAE,IAAIC,IAAiB,SAASA,EAAgB,CAACA,EAAgB,KAAQ,OAAOA,EAAgB,IAAO,KAAM,GAAGA,KAAkBA,GAAgB,CAAC,EAAE,EAQv0B,SAASC,GAAQ,CAAC,IAAAC,EAAI,KAAAC,EAAK,WAAAC,EAAW,UAAAC,EAAU,MAAAC,EAAM,QAAAC,EAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,EAAU,MAAAC,EAAM,GAAGC,CAAK,EAAE,CAAC,IAAMC,EAASC,GAAc,EAAQC,EAAWb,IAAO,MAAYc,EAAcH,GAAUT,IAAY,OAAO,CAACW,EAAgB,CAACE,EAAaC,CAAY,EAAEC,EAAW,IAAI,GAAK,EAAK,EAAO,CAACC,EAAUC,CAAU,EAAEF,EAAW,IAAI,GAAK,CAACH,CAAa,EAAO,CAACM,EAAUC,CAAU,EAAEC,GAAS,EAAK,EAAQC,EAAaC,GAAUd,CAAK,EAAQe,GAAgBF,IAAe,mBAAmBA,IAAe,MAAM,GAAGxB,IAAM,GAAI,OAAoB2B,EAAKC,GAAa,CAAC,CAAC,EAAG,IAAMC,EAAUC,GAAc9B,CAAG,EAAE,GAAG6B,IAAY,OAAW,OAAoBF,EAAKI,GAAa,CAAC,QAAQ,sBAAsB,CAAC,EAAG,GAAK,CAACC,EAAQC,CAAQ,EAAEJ,EAC5uBK,EAAaD,EAAS,aAAaC,EAAa,IAAI,iBAAiB,GAAG,EAAEA,EAAa,IAAI,MAAM,GAAG,EAAEA,EAAa,IAAI,iBAAiB,GAAG,EAAEA,EAAa,IAAI,cAAc,GAAG,EAAMf,GACjJL,GAC1CC,GAAeI,IAAWe,EAAa,IAAI,WAAW,GAAG,EADzDA,EAAa,IAAI,WAAW,GAAG,EACgCpB,GAAYZ,GAAYgC,EAAa,IAAI,OAAO,GAAG,EAAMjC,IAAO,SAAQiC,EAAa,IAAI,OAAO,GAAG,EAAEA,EAAa,IAAI,WAAWF,CAAO,GAAO5B,GAAO8B,EAAa,IAAI,QAAQ,OAAO,EAAG,IAAMC,GAAY,CAAC,MAAMzB,GAAO,gBAAgB,MAAM,oGAAoG,IAAIuB,EAAS,KAAK,YAAY,IAAI,QAAA5B,EAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,CAAS,EAAE,OAAoB2B,EAAM,UAAU,CAAC,eAAe,IAAId,EAAW,EAAI,EAAE,eAAe,IAAIA,EAAW,EAAK,EAAE,cAAcL,EAAa,UAAUG,EAAW,QAAQA,EAAW,MAAM,CAAC,GAAGiB,GAAa,aAAAb,EAAa,UAGlsBE,KAAkBP,GAAWP,GAAU,yBAAyB,QAAQ,OAAO,UAAU,SAAS,QAAQ,EAAE,KAAK,eAAe,SAAS,CAACI,GAA2BW,EAAK,OAAO,CAAC,IAAI,aAAa,KAAK,yBAAyB,CAAC,EAAEX,GAA2BW,EAAK,OAAO,CAAC,IAAI,aAAa,KAAK,wBAAwB,CAAC,EAAeA,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGW,EAAW,WAAWvB,EAAc,sBAAsBwB,GAAgBP,EAAQ7B,EAAUqC,GAAiB,EAAE,OAAO,KAAK,CAAC,cAAc,MAAS,CAAC,CAAC,EAAG5B,EAAqJ,KAA/He,EAAK,SAAS,CAAC,QAASR,EAAiB,OAAP,OAAiB,MAAOA,EAAyCmB,EAA/B,CAAC,GAAGA,EAAW,QAAQ,MAAM,EAAa,GAAGH,EAAW,CAAC,EAAOhB,EAAU,KAAkBQ,EAAKc,GAAW,CAAC,QAAQrB,EAAW,UAAUC,EAAU,MAAMjB,CAAK,CAAC,CAAC,CAAC,CAAC,CAAE,CAACL,GAAQ,YAAY,UAAU2C,EAAoB3C,GAAQ,CAAC,IAAI,CAAC,KAAK4C,EAAY,OAAO,MAAM,OAAO,EAAE,KAAK,CAAC,KAAKA,EAAY,KAAK,MAAM,WAAW,QAAQ,OAAO,OAAO/C,CAAW,CAAC,EAAE,WAAW,CAAC,MAAM,OAAO,KAAK+C,EAAY,QAAQ,aAAa,MAAM,cAAc,KAAK,OAAOhC,EAAM,CAAC,OAAOA,EAAM,OAAO,KAAM,CAAC,EAAE,UAAU,CAAC,MAAM,YAAY,YAAY,4CAA4C,KAAKgC,EAAY,KAAK,QAAQ,OAAO,OAAO9C,CAAgB,EAAE,OAAOc,EAAM,CAAC,OAAOA,EAAM,OAAO,KAAM,CAAC,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKgC,EAAY,QAAQ,aAAa,MAAM,cAAc,OAAO,EAAE,GAAGC,GAAoB,GAAGC,EAAa,CAAC,EAAE,IAAMC,GAAa,CAAC,IAAI,+BAA+B,KAAK,MAAM,WAAW,GAAK,UAAU,iBAAiB,MAAM,EAAI,EAAE/C,GAAQ,aAAa+C,GAAa,SAAShB,GAAciB,EAAU,CAAC,IAAI/C,EAAI,GAAG,CAACA,EAAI,IAAI,IAAI+C,CAAS,CAAE,MAAM,CAAC,IAAMd,EAASe,EAAYD,CAAS,EAAE,MAAM,CAACA,EAAUd,CAAQ,CAAE,CAAC,GAAGjC,EAAI,WAAW,eAAeA,EAAI,WAAW,mBAAmBA,EAAI,WAAW,wBAAwBA,EAAI,WAAW,2BAA2B,CAAC,IAAMiD,EAAajD,EAAI,SAAS,MAAM,CAAC,EAAE,MAAM,GAAG,EACn2D,GAAGiD,EAAa,CAAC,IAAI,QAAQ,CAAC,IAAMjB,EAAQhC,EAAI,aAAa,IAAI,GAAG,EAAQiC,EAASe,EAAYhB,CAAO,EAAE,MAAM,CAACA,EAAQC,CAAQ,CAAE,CACnI,GAAGgB,EAAa,CAAC,IAAI,QAAuC,MAAM,CAAtBA,EAAa,CAAC,EAAiBjD,CAAG,CAAG,CACjF,GAAGA,EAAI,WAAW,WAAW,CAAC,IAAMgC,EAAQhC,EAAI,SAAS,MAAM,CAAC,EAAQiC,EAASe,EAAYhB,CAAO,EAAE,MAAM,CAACA,EAAQC,CAAQ,CAAE,CAAC,CAAC,SAASe,EAAYhB,EAAQ,CAAC,OAAO,IAAI,IAAI,iCAAiCA,CAAO,EAAE,CAAE,CAAC,SAASO,GAAgBP,EAAQkB,EAAIC,EAAO,MAAM,CAC7Q,IAAMC,EAAQD,IAAS,OAAaE,EAAID,EAAQ,+BAA+B,0BAAgCE,EAAIF,EAAQ,OAAO,MAAM,OAAOF,EAAI,CAAC,IAAI,cAAc,MAAM,GAAGG,CAAG,GAAGrB,CAAO,cAAcsB,CAAG,GAAG,IAAI,iBAAiB,MAAM,GAAGD,CAAG,GAAGrB,CAAO,cAAcsB,CAAG,GAAG,IAAI,eAAe,MAAM,GAAGD,CAAG,GAAGrB,CAAO,kBAAkBsB,CAAG,GAAG,QAAQ,MAAM,GAAGD,CAAG,GAAGrB,CAAO,MAAMsB,CAAG,EAAG,CAAC,CAAC,IAAIC,EAChY,SAASf,IAAkB,CAC3B,GAAG,CAACgB,EAAQ,MAAO,GAAM,GAAGD,IAAoB,OAAW,OAAOA,EAAmB,IAAME,EAAQ,SAAS,cAAc,QAAQ,EAAE,OAAGA,EAAQ,YAAYA,EAAQ,WAAW,IAAI,EAC3KF,EAAkBE,EAAQ,UAAU,YAAY,EAAE,QAAQ,iBAAiB,IAAI,EAC/EF,EAAkB,EAAO,CAChC,SAAS3B,IAAc,CAAC,OAAoBD,EAAK,MAAM,CAAC,MAAM,CAAC,GAAG+B,GAAgB,SAAS,QAAQ,EAAE,SAAsB/B,EAAK,MAAM,CAAC,MAAMgC,GAAgB,SAAS,mEAAmE,CAAC,CAAC,CAAC,CAAE,CAAC,SAAS5B,GAAa,CAAC,QAAA6B,CAAO,EAAE,CAAC,OAAoBjC,EAAK,MAAM,CAAC,UAAU,oCAAoC,MAAM,CAAC,GAAGkC,GAAgB,SAAS,QAAQ,EAAE,SAAsBzB,EAAM,MAAM,CAAC,MAAMuB,GAAgB,SAAS,CAAC,UAAUC,CAAO,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASnB,GAAW,CAAC,QAAApC,EAAQ,UAAAgB,EAAU,MAAAjB,CAAK,EAAE,CAAC,OAAoBuB,EAAK,SAAS,CAAC,QAAQtB,EAAQ,aAAa,OAAO,MAAMyD,GAAY,SAAsB1B,EAAM,MAAM,CAAC,OAAO,OAAO,QAAQ,MAAM,QAAQ,YAAY,MAAM,OAAO,SAAS,CAAcT,EAAK,OAAO,CAAC,EAAE,wTAAwT,KAAKN,EAAUjB,EAAM,OAAO,OAAO,UAAU,YAAYiB,GAAUjB,EAAM,EAAK,GAAG,MAAM,CAAC,WAAW,kFAAkF,CAAC,CAAC,EAAeuB,EAAK,OAAO,CAAC,EAAE,sBAAsB,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,IAAMmC,GAAY,CAAC,SAAS,WAAW,IAAI,MAAM,KAAK,MAAM,UAAU,wBAAwB,MAAM,GAAG,OAAO,GAAG,QAAQ,EAAE,OAAO,OAAO,WAAW,cAAc,OAAO,SAAS,EAAQzB,GAAa,CAAC,SAAS,WAAW,MAAM,OAAO,OAAO,MAAM,EAAQsB,GAAgB,CAAC,UAAU,SAAS,SAAS,GAAG,EAAQrB,EAAW,CAAC,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,OAAO,OAAO,MAAM,MAAM,ECvBxqD,IAAAyB,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,KAAO,IAAMC,GAAG,wBAAqCC,GAAG,iBAA8BC,GAAG,gCAC5EC,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECArP,IAAMC,GAAiB,CAAC,UAAUC,EAAe,EAAiB,SAARC,EAAmCC,EAAIC,EAAO,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAOF,CAAG,EAAE,GAAGG,EAAM,OAAOA,CAAM,CAACF,EAAOA,EAAO,QAAS,CAAC,CCA2sB,IAAMG,GAASC,GAASC,CAAG,EAAQC,GAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWF,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAQ,CAAC,CAAC,SAAAC,EAAS,uBAAAC,EAAuB,QAAAC,EAAQ,EAAI,IAAI,CAAC,GAAK,CAACC,EAAQC,CAAU,EAAEC,GAAgB,CAAC,uBAAAJ,CAAsB,CAAC,EAAE,OAAOD,EAAS,CAAC,KAAK,IAAII,EAAW,EAAK,EAAE,KAAK,IAAIA,EAAW,EAAI,EAAE,OAAO,IAAIA,EAAW,CAACD,CAAO,EAAE,QAAQD,GAASC,CAAO,CAAC,CAAE,EAAQG,EAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAP,CAAQ,IAAI,CAAC,IAAMS,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASb,CAAQ,CAAC,CAAE,EAAQgB,GAAS9B,EAAO,OAAa+B,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,YAAAC,EAAY,YAAAC,EAAY,YAAAC,EAAY,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,KAAAC,EAAK,SAAAC,EAAS,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUJ,GAAMI,EAAM,UAAU,UAAUT,GAAaS,EAAM,WAAW,wBAAwB,UAAUR,GAAaQ,EAAM,WAAW,yBAAyB,UAAUL,GAAOK,EAAM,WAAW,CAAC,IAAI,wFAAwF,OAAO,4VAA4V,EAAE,UAAUH,GAAUG,EAAM,WAAW,uEAAuE,UAAUF,GAAOE,EAAM,WAAW,wBAAwB,QAAQZ,GAAwBY,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUV,GAAaU,EAAM,WAAW,6BAA6B,GAAUC,GAAuB,CAACD,EAAMtC,IAAesC,EAAM,iBAAwBtC,EAAS,KAAK,GAAG,EAAEsC,EAAM,iBAAwBtC,EAAS,KAAK,GAAG,EAAUwC,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAArD,EAAQ,UAAAsD,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEpC,GAASW,CAAK,EAAO,CAAC,YAAA0B,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,GAAW,SAAAvE,EAAQ,EAAEwE,GAAgB,CAAC,WAAA7E,GAAW,eAAe,YAAY,IAAIkD,EAAW,QAAA3C,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ4E,EAAiBlC,GAAuBD,EAAMtC,EAAQ,EAAO,CAAC,sBAAA0E,GAAsB,MAAAC,EAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAgB,CAAC,CAAC,QAAAC,EAAQ,SAAAC,EAAQ,IAAIL,GAAsB,SAASM,KAAO,CAACF,EAAQ,KAAK,CAAE,CAAC,EAAmFG,GAAkBC,EAAGtF,GAAkB,GAA5F,CAAa0D,GAAuBA,EAAS,CAAuE,EAAQ6B,GAAWvC,EAAO,IAAI,EAAQwC,GAAWxC,EAAO,IAAI,EAAE,OAAoBrB,EAAK8D,GAAY,CAAC,GAAG9B,GAAUT,EAAgB,SAAsBvB,EAAKC,GAAS,CAAC,QAAQxB,GAAS,QAAQ,GAAM,SAAsBuB,EAAKP,GAAW,CAAC,MAAMb,GAAY,SAAsBmF,EAAM5F,EAAO,IAAI,CAAC,GAAGqE,EAAU,GAAGI,EAAgB,UAAUe,EAAGD,GAAkB,iBAAiB3B,EAAUW,CAAU,EAAE,cAAc,GAAK,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAI5B,EAAW,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGQ,CAAK,EAAE,GAAGvD,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEkE,EAAYI,CAAc,EAAE,SAAS,CAAckB,EAAM5F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB+E,EAAiB,SAAS,YAAY,SAAS,CAAclD,EAAKgE,EAAS,CAAC,sBAAsB,GAAK,SAAsBhE,EAAWE,EAAS,CAAC,SAAsBF,EAAK7B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,wBAAwB,MAAM,CAAC,OAAO,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKjB,EAAU,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAe8B,EAAM5F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB+E,EAAiB,SAAS,YAAY,SAAS,CAAca,EAAM5F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB+E,EAAiB,SAAS,YAAY,SAAS,CAAclD,EAAK7B,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgBX,EAAU,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBvC,EAAKiE,EAAI,CAAC,UAAU,iBAAiB,OAAO,WAAW,iBAAiBf,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,iVAAiV,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAelD,EAAKgE,EAAS,CAAC,sBAAsB,GAAK,SAAsBhE,EAAWE,EAAS,CAAC,SAAsBF,EAAK7B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,sGAAsG,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,8BAA8B,MAAM,CAAC,OAAO,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,8EAA8E,6BAA6B,KAAK,EAAE,KAAKhB,EAAU,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAM5F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB+E,EAAiB,SAAS,YAAY,SAAS,CAAclD,EAAK7B,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgBX,EAAU,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBvC,EAAKiE,EAAI,CAAC,UAAU,gBAAgB,OAAO,WAAW,iBAAiBf,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,iVAAiV,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAelD,EAAKgE,EAAS,CAAC,sBAAsB,GAAK,SAAsBhE,EAAWE,EAAS,CAAC,SAAsBF,EAAK7B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,sGAAsG,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,wBAAwB,MAAM,CAAC,OAAO,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,8EAA8E,6BAA6B,KAAK,EAAE,KAAKf,EAAU,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe4B,EAAM5F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB+E,EAAiB,SAAS,YAAY,SAAS,CAAclD,EAAK7B,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgBX,EAAU,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBvC,EAAKiE,EAAI,CAAC,UAAU,iBAAiB,OAAO,WAAW,iBAAiBf,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,iVAAiV,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAelD,EAAKgE,EAAS,CAAC,sBAAsB,GAAK,SAAsBhE,EAAWE,EAAS,CAAC,SAAsBF,EAAK7B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,sGAAsG,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,yBAAyB,MAAM,CAAC,OAAO,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,8EAA8E,6BAA6B,KAAK,EAAE,KAAKd,EAAU,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKhB,GAAQ,CAAC,uBAAuB,GAAM,SAASuE,GAAsBvD,EAAKkE,GAAU,CAAC,SAAsBlE,EAAKmE,GAA0B,CAAC,OAAO,GAAG,GAAGvC,GAAmB,GAAG,GAAG,GAAG,EAAE,GAAG,MAAM,GAAGrD,GAAqB,CAAC,UAAU,CAAC,GAAGqD,GAAmB,GAAG,GAAG,GAAG,GAAG,KAAK,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,GAAG,EAAE,GAAG,KAAK,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,GAAG,GAAG,KAAK,CAAC,EAAEa,EAAYI,CAAc,EAAE,SAAsBkB,EAAMK,GAA8B,CAAC,UAAU,0BAA0B,GAAG,GAAGpC,CAAQ,UAAU,iBAAiBkB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,IAAIU,GAAK,kBAAkB,GAAK,QAAQ,YAAY,SAAS,CAAc5D,EAAKhC,EAAI,CAAC,UAAU,GAAM,OAAO,OAAO,GAAG,YAAY,UAAUqG,EAAkB,KAAK5C,CAAY,GAAG,cAAc,SAAS,YAAY,UAAU,GAAK,UAAUa,EAAU,UAAUgB,GAAgB,CAAC,QAAAC,CAAO,CAAC,EAAE,UAAUc,EAAkB,KAAK5C,CAAY,GAAG,yBAAyB,UAAU4C,EAAkB,KAAK5C,CAAY,GAAG,gBAAgB,QAAQ,YAAY,MAAM,MAAM,CAAC,EAAezB,EAAKsE,GAAgB,CAAC,SAASf,EAAQ,SAAsBvD,EAAKuE,GAAS,CAAC,UAAU,SAAS,UAAUX,GAAK,UAAUD,EAAGD,GAAkBhB,CAAU,EAAE,mBAAmB,GAAK,0BAA0B,GAAG,wBAAwB,GAAGV,CAAQ,UAAU,QAAQ,EAAE,QAAQ,GAAG,UAAUuB,EAAQ,KAAK,UAAU,SAAS,SAAS,GAAK,OAAO,GAAG,SAAsBvD,EAAK/B,GAAgB,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQa,GAAW,UAAU,iBAAiB,KAAKD,GAAU,QAAQE,GAAW,iBAAiBmE,EAAiB,SAAS,YAAY,IAAIW,GAAK,KAAK,SAAS,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,uCAAuC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7D,EAAK7B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,EAAE,SAAsBlD,EAAKwE,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2B7C,GAAmB,GAAG,GAAG,GAAG,MAAM,IAAI,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,GAAG,OAAO,CAAC,EAAE,EAAE,GAAG,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,GAAG,OAAO,CAAC,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,GAAGrC,EAAkB8C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBa,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,GAAG3E,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQkG,GAA2B7C,GAAmB,GAAG,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,EAAE,GAAG,KAAK,IAAI,KAAKA,GAAmB,QAAQ,KAAK,IAAI,EAAE,EAAE,GAAG,CAAC,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,MAAM,QAAQA,GAAmB,OAAO,OAAO,qBAAqB,GAAGrC,EAAkB8C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQoC,GAA2B7C,GAAmB,GAAG,GAAG,GAAG,MAAM,EAAE,CAAC,EAAE,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,GAAGrC,EAAkB8C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQoC,GAA2B7C,GAAmB,GAAG,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,EAAE,GAAG,KAAK,IAAI,KAAKA,GAAmB,QAAQ,KAAK,IAAI,EAAE,EAAE,GAAG,CAAC,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,MAAM,QAAQA,GAAmB,OAAO,OAAO,qBAAqB,GAAGrC,EAAkB8C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,CAAC,EAAEI,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ6B,GAAI,CAAC,kFAAkF,kFAAkF,4QAA4Q,4SAA4S,qKAAqK,4RAA4R,+UAA+U,8KAA8K,gLAAgL,mOAAmO,wGAAwG,mKAAmK,0QAA0Q,iGAAiG,0oDAA0oD,wIAAwI,6FAA6F,0IAA0I,6aAA6a,+IAA+I,gFAAgF,mEAAmE,gKAAgK,ibAAib,gHAAgH,2IAA2I,+aAA+a,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EAUz6tBC,EAAgBC,GAAQ3D,GAAUyD,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,UAAUA,EAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,wBAAwB,gBAAgB,GAAK,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,8BAA8B,gBAAgB,GAAM,MAAM,eAAe,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,wBAAwB,gBAAgB,GAAM,MAAM,eAAe,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,yBAAyB,gBAAgB,GAAM,MAAM,eAAe,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,wBAAwB,0GAA0G,MAAM,QAAQ,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,2GAA2G,MAAM,WAAW,KAAKA,EAAY,KAAK,CAAC,CAAC,EAAEC,GAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG7G,GAAS,GAAGmH,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "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", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "Rc1LbfVFe_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v0", "v1", "v2", "__FramerMetadata__", "valuesByLocaleId", "Rc1LbfVFe_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "CTAFonts", "getFonts", "ADyFJyaRp_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "toResponsiveImage", "value", "Transition", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "advantages1", "advantages2", "advantages3", "height", "id", "image", "link", "pastille", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "tm4AsKcpz", "vn8zYIIcQ", "BJUTniiEh", "KHUeYR4TA", "pdGJf3tUq", "az5QRfsUO", "Q7vs_kbHc", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "RzryUHgbrtxyyif", "overlay", "loadMore", "args", "scopingClassNames", "cx", "ref1", "ref2", "LayoutGroup", "u", "RichText2", "SVG", "l", "ComponentViewportProvider", "SmartComponentScopedContainer", "getLocalizedValue", "AnimatePresence", "Floating", "Image2", "getLoadingLazyAtYPosition", "css", "FramerRc1LbfVFe", "withCSS", "Rc1LbfVFe_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
