{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js", "ssg:https://framerusercontent.com/modules/6yWUv61ndnXb6jfRp0Ne/qdfbyZYKHM3k7nORznwg/blUivggxX-0.js", "ssg:https://framerusercontent.com/modules/6yWUv61ndnXb6jfRp0Ne/qdfbyZYKHM3k7nORznwg/blUivggxX.js", "ssg:https://framerusercontent.com/modules/y6RmW7cIQqcOv0Hjz3RJ/WCW4NpbHbzsz6aPENABu/blUivggxX.js", "ssg:https://framerusercontent.com/modules/TUxpjrjI4CzYnqnIaCjk/XbzjUMcXktXUYRwRgU2b/J0ADioHxn.js", "ssg:https://framerusercontent.com/modules/tH63W0vIoPg3iZUT8XGe/pYSW7YhZHRlyQ7GFdDg9/TuRskxh5v.js", "ssg:https://framerusercontent.com/modules/wphMHxbC4j3W3dzz9dQ3/eewSb02wwUq0akBOqH8b/TuRskxh5v.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState,useSyncExternalStore}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={}));let _isBot=null;function isBot(){if(_isBot===null)_isBot=/bot|-Google|Google-|yandex|ia_archiver/iu.test(navigator.userAgent);return _isBot;}const emptySubscribe=()=>()=>{};/**\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);// https://tkdodo.eu/blog/avoiding-hydration-mismatches-with-use-sync-external-store#usesyncexternalstore\nconst iframeIsDefaultVisible=useSyncExternalStore(emptySubscribe,// bots should not have display:none on the iframe\n()=>isBot(),()=>false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\");// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(// bots shouldn't autoplay the video but see the iframe in the DOM\n!iframeIsDefaultVisible&&(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\");}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(${thumbnailURL}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{title:title||\"Youtube Video\",style:{...videoStyle,display:showVideo||iframeIsDefaultVisible?undefined:\"none\"},src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp,loading:\"lazy\"}):null,showVideo||iframeIsDefaultVisible?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 element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicWidth\":\"560\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-7gvcta\",\"data-styles-preset\":\"NLBEe4aVc\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10)))\"},children:\"Our clients talk about it\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-13hr9vk\",\"data-styles-preset\":\"rjFWX9qGy\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115)))\"},children:/*#__PURE__*/_jsx(motion.em,{children:\"\\\"The podcast, a genuine means of communication and information! At Cr\\xe9dit Agricole Centre Loire, we have chosen to take the 'Path of Voice' to inform all our employees and provide them with a collaborative tool to facilitate cross-communication!\\\"\"})})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-70ylq7\",\"data-styles-preset\":\"fSreB4YpK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10)))\"},children:\"C\\xe9line Coll\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115)))\"},children:\"Communication Manager\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-13hr9vk\",\"data-styles-preset\":\"rjFWX9qGy\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115)))\"},children:/*#__PURE__*/_jsx(motion.em,{children:'\"Driven by a desire to strengthen communication between headquarters and the field, audio presented itself to us as THE solution. A way to easily transmit, through a channel adapted to the constraints of the GMS sales profession (a population often in cars), all types of information that may interest them. \"'})})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-70ylq7\",\"data-styles-preset\":\"fSreB4YpK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10)))\"},children:\"Alexandre Herreyre\"})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115)))\"},children:\"In charge of HR development\"})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-13hr9vk\",\"data-styles-preset\":\"rjFWX9qGy\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115)))\"},children:/*#__PURE__*/_jsx(motion.em,{children:\"This app is incredible! It gives access to great content, I like that my company cares and offers dedicated audio information adapted to my journey.\"})})});export const v8=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-70ylq7\",\"data-styles-preset\":\"fSreB4YpK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10)))\"},children:\"Benjamin C.\"})});export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115)))\"},children:\"Sales Engineer\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (13d9867)\nimport*as localizedValues from\"./blUivggxX-0.js\";const valuesByLocaleId={XziDpfZU9: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 (13d9867)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/vfJ1lvRv3f6A38kqqNOF/gtqLUJnCScek6kSDf6ew/fSreB4YpK.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/krT6OkV5Eos9xqRbf1sR/E7HiM1swcvccIviuzz4Q/GygTAX8TE.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/47kiNXReoUnY5UqZ8EuS/WoVt5KLAS1DFJJoSHWG6/NLBEe4aVc.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/z04LDdbM3KDPDNHOSf7U/gHm43LWTWyzZIuWPzhUR/rjFWX9qGy.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/6yWUv61ndnXb6jfRp0Ne/qdfbyZYKHM3k7nORznwg/blUivggxX.js\";const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"MOGdP6zgp\",\"w1j5qNBog\",\"byOtbUZsS\",\"m656sm_9c\",\"oRP05nERi\",\"EGCKq6zQB\"];const serializationHash=\"framer-0WHSF\";const variantClassNames={byOtbUZsS:\"framer-v-1gr1ixq\",EGCKq6zQB:\"framer-v-17hi0wc\",m656sm_9c:\"framer-v-4tmc44\",MOGdP6zgp:\"framer-v-8j9ic3\",oRP05nERi:\"framer-v-6vrvy\",w1j5qNBog:\"framer-v-1kn4zdn\"};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={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop - G\\xe9n\\xe9ral \":\"MOGdP6zgp\",\"Desktop - M\\xe9dia\":\"m656sm_9c\",\"Phone - G\\xe9n\\xe9ral \":\"byOtbUZsS\",\"Phone - M\\xe9dia\":\"EGCKq6zQB\",\"Tablet - G\\xe9n\\xe9ral \":\"w1j5qNBog\",\"Tablet - M\\xe9dia\":\"oRP05nERi\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"MOGdP6zgp\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MOGdP6zgp\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9;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__*/_jsx(motion.section,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-8j9ic3\",className,classNames),\"data-framer-name\":\"Desktop - G\\xe9n\\xe9ral \",layoutDependency:layoutDependency,layoutId:\"MOGdP6zgp\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-92fddb23-b2ef-429e-b64a-b8220fed5a33, rgb(255, 255, 255))\",...style},...addPropertyOverrides({byOtbUZsS:{\"data-framer-name\":\"Phone - G\\xe9n\\xe9ral \"},EGCKq6zQB:{\"data-framer-name\":\"Phone - M\\xe9dia\"},m656sm_9c:{\"data-framer-name\":\"Desktop - M\\xe9dia\"},oRP05nERi:{\"data-framer-name\":\"Tablet - M\\xe9dia\"},w1j5qNBog:{\"data-framer-name\":\"Tablet - G\\xe9n\\xe9ral \"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ek3a7a\",\"data-framer-name\":\"Container + Padding\",layoutDependency:layoutDependency,layoutId:\"xNjKcvwgk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-7gvcta\",\"data-styles-preset\":\"NLBEe4aVc\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10)))\"},children:\"Nos clients en parlent\"})}),className:\"framer-5hu5i3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ayzhC3VrI\",style:{\"--extracted-1of0zx5\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qe2g56-container\",layoutDependency:layoutDependency,layoutId:\"a1BWsgYru-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(245, 245, 245, 0.6)\",arrowPadding:0,arrowRadius:32,arrowSize:32,leftArrow:\"https://framerusercontent.com/images/jMUT5WIwRY0DT5inUQoa4JCiF3c.png\",rightArrow:\"https://framerusercontent.com/images/KNdd86GW7iREOmT0Srar80pE.png\",showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:24,height:\"100%\",id:\"a1BWsgYru\",layoutId:\"a1BWsgYru\",padding:10,paddingBottom:64,paddingLeft:56,paddingPerSide:true,paddingRight:56,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:4,dotsFill:\"var(--token-f5bbcd0c-3b82-4dbd-94cb-c69bafd7aca8, rgb(10, 10, 10))\",dotsGap:12,dotsInset:10,dotSize:10,dotsOpacity:.25,dotsPadding:0,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1agogi0\",\"data-framer-name\":\"Testimonial 1 - G\\xe9n\\xe9ral \",layoutDependency:layoutDependency,layoutId:\"F0oAysD0Y\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-13hr9vk\",\"data-styles-preset\":\"rjFWX9qGy\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115)))\"},children:/*#__PURE__*/_jsx(motion.em,{children:\"\u201CLe podcast, un moyen \\xe0 part enti\\xe8re de communication et d\u2019information ! Au Cr\\xe9dit Agricole Centre Loire, nous avons fait le choix de prendre la \\xab Voie de la Voix \\xbb pour informer l\u2019ensemble de nos collaborateurs et leur offrir un outil collaboratif pour faciliter une communication transverse !\u201D\"})})}),className:\"framer-uxpjru\",fonts:[\"Inter\",\"Inter-Italic\"],layoutDependency:layoutDependency,layoutId:\"YPJgC6TvI\",style:{\"--extracted-1eung3n\":\"var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gbuu4p\",\"data-framer-name\":\"Avatar Wrapper\",layoutDependency:layoutDependency,layoutId:\"HYlt8o3di\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6tsqnr\",\"data-framer-name\":\"Text Wrap\",layoutDependency:layoutDependency,layoutId:\"LJ4jLl0Wr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue2=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-70ylq7\",\"data-styles-preset\":\"fSreB4YpK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10)))\"},children:\"Ce\u0301line Coll\"})}),className:\"framer-67nx7b\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Iia0Tp_rR\",style:{\"--extracted-r6o4lv\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue3=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115)))\"},children:\"Responsable Communication\"})}),className:\"framer-11gwkth\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b8sWjHr3b\",style:{\"--extracted-r6o4lv\":\"var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jkna71\",\"data-framer-name\":\"Testimonial 2 - G\\xe9n\\xe9ral \",layoutDependency:layoutDependency,layoutId:\"GCQWOJgbc\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue4=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-13hr9vk\",\"data-styles-preset\":\"rjFWX9qGy\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115)))\"},children:/*#__PURE__*/_jsx(motion.em,{children:\"\\\"Forts d'une envie de renforcer la communication entre le sie\u0300ge et le terrain, l'audio s'est pre\u0301sente\u0301 a\u0300 nous comme LA solution. Un moyen de transmettre facilement, et par un canal adapte\u0301 aux contraintes du me\u0301tier de commercial GMS (population souvent en voiture), tous types d'informations pouvant les inte\u0301resser. \\\"\"})})}),className:\"framer-1drqi0a\",fonts:[\"Inter\",\"Inter-Italic\"],layoutDependency:layoutDependency,layoutId:\"Rm2SgBYFr\",style:{\"--extracted-1eung3n\":\"var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19v3nu6\",\"data-framer-name\":\"Avatar Wrapper\",layoutDependency:layoutDependency,layoutId:\"SWYhKXgyx\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16kpbbl\",\"data-framer-name\":\"Text Wrap\",layoutDependency:layoutDependency,layoutId:\"ZW7cAv3Kn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue5=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-70ylq7\",\"data-styles-preset\":\"fSreB4YpK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10)))\"},children:\"Alexandre Herreyre\"})}),className:\"framer-bblimg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"E0rRxdfmk\",style:{\"--extracted-r6o4lv\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue6=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115)))\"},children:\"Charge\u0301 de de\u0301veloppement RH\"})}),className:\"framer-j1a7gz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qga8DtA5H\",style:{\"--extracted-r6o4lv\":\"var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-esuj34\",\"data-framer-name\":\"Testimonial 3 - G\\xe9n\\xe9ral \",layoutDependency:layoutDependency,layoutId:\"JpaX2HKqI\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue7=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-13hr9vk\",\"data-styles-preset\":\"rjFWX9qGy\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115)))\"},children:/*#__PURE__*/_jsx(motion.em,{children:\"Cette application est incroyable, elle donne acc\\xe8s \\xe0 d'excellent contenu ! Jaime que mon entreprise offre des informations audio d\\xe9di\\xe9es et adapt\\xe9es \\xe0 mon parcours.\"})})}),className:\"framer-78svfg\",fonts:[\"Inter\",\"Inter-Italic\"],layoutDependency:layoutDependency,layoutId:\"vCsIpnoRI\",style:{\"--extracted-1eung3n\":\"var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uotc1o\",\"data-framer-name\":\"Avatar Wrapper\",layoutDependency:layoutDependency,layoutId:\"ORvdETPho\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-al4dmh\",\"data-framer-name\":\"Text Wrap\",layoutDependency:layoutDependency,layoutId:\"T8z3xXoue\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue8=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-70ylq7\",\"data-styles-preset\":\"fSreB4YpK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10)))\"},children:\"Benjamin C.\"})}),className:\"framer-1yexed8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cpvc_AGSf\",style:{\"--extracted-r6o4lv\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue9=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115)))\"},children:\"Sales Engineer\"})}),className:\"framer-i01pf7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iryDtU8Sc\",style:{\"--extracted-r6o4lv\":\"var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({byOtbUZsS:{arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:0,arrowRadius:40,arrowSize:40,showMouseControls:false},paddingLeft:20,paddingRight:20},EGCKq6zQB:{arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:0,arrowRadius:40,arrowSize:40,showMouseControls:false},paddingLeft:20,paddingRight:20}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0WHSF.framer-mmczln, .framer-0WHSF .framer-mmczln { display: block; }\",\".framer-0WHSF.framer-8j9ic3 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-0WHSF .framer-ek3a7a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1280px; padding: 48px 80px 48px 80px; position: relative; width: 100%; }\",\".framer-0WHSF .framer-5hu5i3, .framer-0WHSF .framer-67nx7b, .framer-0WHSF .framer-11gwkth, .framer-0WHSF .framer-bblimg, .framer-0WHSF .framer-j1a7gz, .framer-0WHSF .framer-1yexed8, .framer-0WHSF .framer-i01pf7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0WHSF .framer-1qe2g56-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-0WHSF .framer-1agogi0, .framer-0WHSF .framer-1jkna71, .framer-0WHSF .framer-esuj34 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 800px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0WHSF .framer-uxpjru, .framer-0WHSF .framer-1drqi0a, .framer-0WHSF .framer-78svfg { flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0WHSF .framer-1gbuu4p, .framer-0WHSF .framer-19v3nu6, .framer-0WHSF .framer-uotc1o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0WHSF .framer-6tsqnr, .framer-0WHSF .framer-16kpbbl, .framer-0WHSF .framer-al4dmh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0WHSF.framer-8j9ic3, .framer-0WHSF .framer-ek3a7a, .framer-0WHSF .framer-1agogi0, .framer-0WHSF .framer-1gbuu4p, .framer-0WHSF .framer-6tsqnr, .framer-0WHSF .framer-1jkna71, .framer-0WHSF .framer-19v3nu6, .framer-0WHSF .framer-16kpbbl, .framer-0WHSF .framer-esuj34, .framer-0WHSF .framer-uotc1o, .framer-0WHSF .framer-al4dmh { gap: 0px; } .framer-0WHSF.framer-8j9ic3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-0WHSF.framer-8j9ic3 > :first-child, .framer-0WHSF .framer-ek3a7a > :first-child, .framer-0WHSF .framer-1agogi0 > :first-child, .framer-0WHSF .framer-1gbuu4p > :first-child, .framer-0WHSF .framer-6tsqnr > :first-child, .framer-0WHSF .framer-1jkna71 > :first-child, .framer-0WHSF .framer-19v3nu6 > :first-child, .framer-0WHSF .framer-16kpbbl > :first-child, .framer-0WHSF .framer-esuj34 > :first-child, .framer-0WHSF .framer-uotc1o > :first-child, .framer-0WHSF .framer-al4dmh > :first-child { margin-top: 0px; } .framer-0WHSF.framer-8j9ic3 > :last-child, .framer-0WHSF .framer-ek3a7a > :last-child, .framer-0WHSF .framer-1agogi0 > :last-child, .framer-0WHSF .framer-1gbuu4p > :last-child, .framer-0WHSF .framer-6tsqnr > :last-child, .framer-0WHSF .framer-1jkna71 > :last-child, .framer-0WHSF .framer-19v3nu6 > :last-child, .framer-0WHSF .framer-16kpbbl > :last-child, .framer-0WHSF .framer-esuj34 > :last-child, .framer-0WHSF .framer-uotc1o > :last-child, .framer-0WHSF .framer-al4dmh > :last-child { margin-bottom: 0px; } .framer-0WHSF .framer-ek3a7a > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-0WHSF .framer-1agogi0 > *, .framer-0WHSF .framer-1jkna71 > *, .framer-0WHSF .framer-esuj34 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-0WHSF .framer-1gbuu4p > *, .framer-0WHSF .framer-19v3nu6 > *, .framer-0WHSF .framer-uotc1o > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-0WHSF .framer-6tsqnr > *, .framer-0WHSF .framer-16kpbbl > *, .framer-0WHSF .framer-al4dmh > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",\".framer-0WHSF.framer-v-1kn4zdn.framer-8j9ic3, .framer-0WHSF.framer-v-6vrvy.framer-8j9ic3 { width: 810px; }\",\".framer-0WHSF.framer-v-1kn4zdn .framer-ek3a7a, .framer-0WHSF.framer-v-6vrvy .framer-ek3a7a { gap: 30px; padding: 48px 40px 48px 40px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0WHSF.framer-v-1kn4zdn .framer-ek3a7a { gap: 0px; } .framer-0WHSF.framer-v-1kn4zdn .framer-ek3a7a > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-0WHSF.framer-v-1kn4zdn .framer-ek3a7a > :first-child { margin-top: 0px; } .framer-0WHSF.framer-v-1kn4zdn .framer-ek3a7a > :last-child { margin-bottom: 0px; } }\",\".framer-0WHSF.framer-v-1gr1ixq.framer-8j9ic3, .framer-0WHSF.framer-v-17hi0wc.framer-8j9ic3 { width: 390px; }\",\".framer-0WHSF.framer-v-1gr1ixq .framer-ek3a7a, .framer-0WHSF.framer-v-17hi0wc .framer-ek3a7a { gap: 18px; padding: 48px 20px 48px 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0WHSF.framer-v-1gr1ixq .framer-ek3a7a { gap: 0px; } .framer-0WHSF.framer-v-1gr1ixq .framer-ek3a7a > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-0WHSF.framer-v-1gr1ixq .framer-ek3a7a > :first-child { margin-top: 0px; } .framer-0WHSF.framer-v-1gr1ixq .framer-ek3a7a > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0WHSF.framer-v-6vrvy .framer-ek3a7a { gap: 0px; } .framer-0WHSF.framer-v-6vrvy .framer-ek3a7a > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-0WHSF.framer-v-6vrvy .framer-ek3a7a > :first-child { margin-top: 0px; } .framer-0WHSF.framer-v-6vrvy .framer-ek3a7a > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0WHSF.framer-v-17hi0wc .framer-ek3a7a { gap: 0px; } .framer-0WHSF.framer-v-17hi0wc .framer-ek3a7a > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-0WHSF.framer-v-17hi0wc .framer-ek3a7a > :first-child { margin-top: 0px; } .framer-0WHSF.framer-v-17hi0wc .framer-ek3a7a > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 466\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"w1j5qNBog\":{\"layout\":[\"fixed\",\"auto\"]},\"byOtbUZsS\":{\"layout\":[\"fixed\",\"auto\"]},\"m656sm_9c\":{\"layout\":[\"fixed\",\"auto\"]},\"oRP05nERi\":{\"layout\":[\"fixed\",\"auto\"]},\"EGCKq6zQB\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerblUivggxX=withCSS(Component,css,\"framer-0WHSF\");export default FramerblUivggxX;FramerblUivggxX.displayName=\"Testimonial / Carousel - G\\xe9n\\xe9ral\";FramerblUivggxX.defaultProps={height:466,width:1200};addPropertyControls(FramerblUivggxX,{variant:{options:[\"MOGdP6zgp\",\"w1j5qNBog\",\"byOtbUZsS\",\"m656sm_9c\",\"oRP05nERi\",\"EGCKq6zQB\"],optionTitles:[\"Desktop - G\\xe9n\\xe9ral \",\"Tablet - G\\xe9n\\xe9ral \",\"Phone - G\\xe9n\\xe9ral \",\"Desktop - M\\xe9dia\",\"Tablet - M\\xe9dia\",\"Phone - M\\xe9dia\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerblUivggxX,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]},...CarouselFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerblUivggxX\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w1j5qNBog\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"byOtbUZsS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"m656sm_9c\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oRP05nERi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EGCKq6zQB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"466\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (21e8ff0)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-SemiBold\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/qrVgiXNd6RuQjETYQiVQ9nqCk.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"}]}];export const css=['.framer-78rWp .framer-styles-preset-169ldrz:not(.rich-text-wrapper), .framer-78rWp .framer-styles-preset-169ldrz.rich-text-wrapper h1 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.04em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, #0a0a0a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-78rWp\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1f5f6d9)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={XziDpfZU9:new LazyValue(()=>import(\"./TuRskxh5v-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1f5f6d9)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js\";import ButtonPrimary from\"https://framerusercontent.com/modules/qgTaayAuFkWr3KGuqbhK/aCB9sDqkg1XLHJ2nEG95/wZ6tVEahQ.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";import TestimonialCarouselGNRal from\"#framer/local/canvasComponent/blUivggxX/blUivggxX.js\";import NavbarVfinalCopy from\"#framer/local/canvasComponent/cmFEwCIMZ/cmFEwCIMZ.js\";import AccordionStyle1 from\"#framer/local/canvasComponent/knOTVjt3A/knOTVjt3A.js\";import SectionBadge from\"#framer/local/canvasComponent/lSgPJfOgF/lSgPJfOgF.js\";import Footer from\"#framer/local/canvasComponent/ssaWiEw3h/ssaWiEw3h.js\";import ButtonPrimary1 from\"#framer/local/canvasComponent/wZ6tVEahQ/wZ6tVEahQ.js\";import ButtonLink from\"#framer/local/canvasComponent/XwX16kBru/XwX16kBru.js\";import ContactFormHubspot from\"#framer/local/canvasComponent/ZwLALpDFj/ZwLALpDFj.js\";import*as sharedStyle3 from\"#framer/local/css/GygTAX8TE/GygTAX8TE.js\";import*as sharedStyle from\"#framer/local/css/J0ADioHxn/J0ADioHxn.js\";import*as sharedStyle2 from\"#framer/local/css/NLBEe4aVc/NLBEe4aVc.js\";import*as sharedStyle6 from\"#framer/local/css/r_EkJQedq/r_EkJQedq.js\";import*as sharedStyle5 from\"#framer/local/css/rncFq5P_8/rncFq5P_8.js\";import*as sharedStyle1 from\"#framer/local/css/TEgDFMRVa/TEgDFMRVa.js\";import*as sharedStyle7 from\"#framer/local/css/ycNLZdWxd/ycNLZdWxd.js\";import*as sharedStyle4 from\"#framer/local/css/Ym6cjYUno/Ym6cjYUno.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/TuRskxh5v/TuRskxh5v.js\";import metadataProvider from\"#framer/local/webPageMetadata/TuRskxh5v/TuRskxh5v.js\";const NavbarVfinalCopyFonts=getFonts(NavbarVfinalCopy);const ButtonPrimaryFonts=getFonts(ButtonPrimary);const ButtonPrimary1Fonts=getFonts(ButtonPrimary1);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const SectionBadgeFonts=getFonts(SectionBadge);const ContainerWithFX=withFX(Container);const PhosphorFonts=getFonts(Phosphor);const ButtonLinkFonts=getFonts(ButtonLink);const MotionDivWithFX=withFX(motion.div);const SlideshowFonts=getFonts(Slideshow);const MaterialFonts=getFonts(Material);const ImageWithFX=withFX(Image);const YouTubeFonts=getFonts(YouTube);const TestimonialCarouselGNRalFonts=getFonts(TestimonialCarouselGNRal);const ContactFormHubspotFonts=getFonts(ContactFormHubspot);const AccordionStyle1Fonts=getFonts(AccordionStyle1);const FooterFonts=getFonts(Footer);const breakpoints={cBFEJUO7Z:\"(min-width: 810px) and (max-width: 1199px)\",gzMicRvtv:\"(max-width: 809px)\",Hykml7LlA:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-lThQ4\";const variantClassNames={cBFEJUO7Z:\"framer-v-jghalf\",gzMicRvtv:\"framer-v-13zjgx5\",Hykml7LlA:\"framer-v-1oq9nmo\"};const transition1={damping:50,delay:.1,mass:1,stiffness:160,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition2={damping:50,delay:.6,mass:1,stiffness:160,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={damping:50,delay:.8,mass:1,stiffness:160,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-160,y:-200};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition4={damping:40,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition5={damping:60,delay:.1,mass:1,stiffness:300,type:\"spring\"};const transition6={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={damping:60,delay:.2,mass:1,stiffness:300,type:\"spring\"};const transition8={damping:60,delay:.3,mass:1,stiffness:300,type:\"spring\"};const transition9={damping:60,delay:.4,mass:1,stiffness:300,type:\"spring\"};const transition10={damping:60,delay:.6,mass:1,stiffness:300,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:440};const transition11={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:460,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"Hykml7LlA\",Phone:\"gzMicRvtv\",Tablet:\"cBFEJUO7Z\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Hykml7LlA\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"gzMicRvtv\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"cBFEJUO7Z\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"gzMicRvtv\")return true;return false;};const router=useRouter();const elementId=useRouteElementId(\"ZILqWOZNs\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"urwad0IOP\");const ref2=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Hykml7LlA\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: none; }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1oq9nmo\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzMicRvtv:{height:65}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h1fnf-container\",nodeId:\"KuuGuGhCt\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{variant:\"zC4BJdwis\"},gzMicRvtv:{style:{width:\"100%\"},variant:\"ai917YGd8\"}},children:/*#__PURE__*/_jsx(NavbarVfinalCopy,{height:\"100%\",id:\"KuuGuGhCt\",layoutId:\"KuuGuGhCt\",style:{height:\"100%\",width:\"100%\"},variant:\"vbVgHK35p\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-azm4qb\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18pmzji\",\"data-framer-name\":\"Main Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dallil\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d8fxu0\",\"data-framer-name\":\"Heading and supporting text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dy6jls\",\"data-framer-name\":\"Heading and badge\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mymqlo\",\"data-framer-name\":\"heading-container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\"},children:\"Majelan Pro devient\"})}),fonts:[\"Inter-SemiBold\"]},gzMicRvtv:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-169ldrz\",\"data-styles-preset\":\"J0ADioHxn\",style:{\"--framer-text-alignment\":\"center\"},children:\"Majelan Pro devient\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-169ldrz\",\"data-styles-preset\":\"J0ADioHxn\",children:\"Majelan Pro devient\"})}),className:\"framer-uzftbz\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+20+0+0+0+0+0+0+0+0+0+0+42),pixelHeight:230,pixelWidth:1067,sizes:\"278.8732px\",src:\"https://framerusercontent.com/images/SL6tU3H0wALxOnYMpTXORAV5dAU.png\",srcSet:\"https://framerusercontent.com/images/SL6tU3H0wALxOnYMpTXORAV5dAU.png?scale-down-to=512 512w,https://framerusercontent.com/images/SL6tU3H0wALxOnYMpTXORAV5dAU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SL6tU3H0wALxOnYMpTXORAV5dAU.png 1067w\"}},gzMicRvtv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+65+80+0+0+0+0+0+0+0+0+0+0+42),pixelHeight:230,pixelWidth:1067,sizes:\"278.8732px\",src:\"https://framerusercontent.com/images/SL6tU3H0wALxOnYMpTXORAV5dAU.png\",srcSet:\"https://framerusercontent.com/images/SL6tU3H0wALxOnYMpTXORAV5dAU.png?scale-down-to=512 512w,https://framerusercontent.com/images/SL6tU3H0wALxOnYMpTXORAV5dAU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SL6tU3H0wALxOnYMpTXORAV5dAU.png 1067w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+80+0+0+0+0+0+0+0+0+0+42),pixelHeight:230,pixelWidth:1067,sizes:\"278.8732px\",src:\"https://framerusercontent.com/images/SL6tU3H0wALxOnYMpTXORAV5dAU.png\",srcSet:\"https://framerusercontent.com/images/SL6tU3H0wALxOnYMpTXORAV5dAU.png?scale-down-to=512 512w,https://framerusercontent.com/images/SL6tU3H0wALxOnYMpTXORAV5dAU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SL6tU3H0wALxOnYMpTXORAV5dAU.png 1067w\"},className:\"framer-qu6zji\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qaor0k\",\"data-framer-name\":\"descr-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.012em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\",\"--framer-text-stroke-color\":\"rgb(0, 0, 0)\"},children:\"Majelan X devient d\\xe9sormais le nom officiel de l\u2019entreprise ainsi que celui du produit, anciennement Majelan Pro.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.012em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\",\"--framer-text-stroke-color\":\"rgb(0, 0, 0)\"},children:\"Majelan X est une plateforme de contenu audio IA qui a pour but de simplifier la cr\\xe9ation, l\u2019orchestration et la diffusion de contenu audio intelligent.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.012em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\",\"--framer-text-stroke-color\":\"rgb(0, 0, 0)\"},children:\"La plateforme permet d\u2019\\xe9couter ce que nous n\u2019avons pas le temps de lire, que ce soit en transport en commun, au volant ou en faisant du sport, am\\xe9liorant l'efficience personnelle et professionnelle gr\\xe2ce \\xe0 l\u2019IA.\"})]})},gzMicRvtv:{children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.012em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\",\"--framer-text-stroke-color\":\"rgb(0, 0, 0)\"},children:\"Majelan X devient d\\xe9sormais le nom officiel de l\u2019entreprise ainsi que celui du produit, anciennement Majelan Pro.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.012em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\",\"--framer-text-stroke-color\":\"rgb(0, 0, 0)\"},children:\"Majelan X est une plateforme de contenu audio IA qui a pour but de simplifier la cr\\xe9ation, l\u2019orchestration et la diffusion de contenu audio intelligent.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.012em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\",\"--framer-text-stroke-color\":\"rgb(0, 0, 0)\"},children:\"La plateforme permet d\u2019\\xe9couter ce que nous n\u2019avons pas le temps de lire, que ce soit en transport en commun, au volant ou en faisant du sport, am\\xe9liorant l'efficience personnelle et professionnelle gr\\xe2ce \\xe0 l\u2019IA.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.012em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\",\"--framer-text-stroke-color\":\"rgb(0, 0, 0)\"},children:\"Majelan X devient d\\xe9sormais le nom officiel de l\u2019entreprise ainsi que celui du produit, anciennement Majelan Pro.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.012em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\",\"--framer-text-stroke-color\":\"rgb(0, 0, 0)\"},children:\"Majelan X est une plateforme de contenu audio IA qui a pour but de simplifier la cr\\xe9ation, l\u2019orchestration et la diffusion de contenu audio intelligent.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.012em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\",\"--framer-text-stroke-color\":\"rgb(0, 0, 0)\"},children:\"La plateforme permet d\u2019\\xe9couter ce que nous n\u2019avons pas le temps de lire, que ce soit en transport en commun, au volant ou en faisant du sport, am\\xe9liorant l'efficience personnelle et professionnelle gr\\xe2ce \\xe0 l\u2019IA.\"})]}),className:\"framer-118qpgb\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18lepch hidden-13zjgx5\",\"data-framer-name\":\"Actions\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{y:(componentViewport?.y||0)+0+80+20+0+0+0+503.5- -17+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:(componentViewport?.y||0)+0+80+80+0+0+0+535.5+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xozhcd-container\",isModuleExternal:true,nodeId:\"lL8fc4hUO\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(ButtonPrimary,{DZf1o6TOU:true,fB79YgjuY:8,GrjfbeKC3:false,height:\"100%\",id:\"lL8fc4hUO\",KXJ3N9Ejk:\"Circle\",layoutId:\"lL8fc4hUO\",MoT2QQ5gx:true,NP5yQIcR3:getLocalizedValue(\"v5\",activeLocale)??\"D\\xe9couvrir majelan X\",RWkv57tSu:\"https://majelanx.com/\",tXS3YmhNZ:\"Circle\",variant:\"sM1ypiimf\",width:\"100%\",YZAlJBSOC:false})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RnVubmVsIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Funnel Sans\", \"Funnel Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://2136919.fs1.hubspotusercontent-na1.net/hubfs/2136919/Communiqu%C3%A9s%20de%20presse/CP-FR-Annonce-ETXMajelan-majelanX1102.pdf\",motionChild:true,nodeId:\"BzeSaTXk2\",openInNewTab:true,scopeId:\"TuRskxh5v\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wbuva2\",\"data-styles-preset\":\"TEgDFMRVa\",children:\"Lire le communiqu\\xe9  de presse\"})})})}),className:\"framer-s6mymj hidden-jghalf\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Funnel Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"RonFNgdTg\"},implicitPathVariables:undefined},{href:{webPageId:\"RonFNgdTg\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzMicRvtv:{height:52,y:(componentViewport?.y||0)+0+65+80+0+0+574.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4eann9-container hidden-1oq9nmo hidden-jghalf\",nodeId:\"yXrtLHgKs\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzMicRvtv:{RWkv57tSu:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonPrimary1,{DZf1o6TOU:false,fB79YgjuY:8,GrjfbeKC3:false,height:\"100%\",id:\"yXrtLHgKs\",KXJ3N9Ejk:\"Circle\",layoutId:\"yXrtLHgKs\",MoT2QQ5gx:true,NP5yQIcR3:getLocalizedValue(\"v7\",activeLocale)??\"Demander une d\\xe9mo\",RWkv57tSu:resolvedLinks[0],tXS3YmhNZ:\"Circle\",variant:\"sM1ypiimf\",width:\"100%\",YZAlJBSOC:false})})})})})}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",positionX:\"center\",positionY:\"top\"},className:\"framer-1popli8\",\"data-framer-name\":\"Visual Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1664,intrinsicWidth:2564,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+20+0+0+503.5+0-413),pixelHeight:1996,pixelWidth:3336,positionX:\"left\",positionY:\"top\",sizes:\"776px\",src:\"https://framerusercontent.com/images/ITDq40qQXphEnMbKiulSaj3s.png\",srcSet:\"https://framerusercontent.com/images/ITDq40qQXphEnMbKiulSaj3s.png?scale-down-to=512 512w,https://framerusercontent.com/images/ITDq40qQXphEnMbKiulSaj3s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ITDq40qQXphEnMbKiulSaj3s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ITDq40qQXphEnMbKiulSaj3s.png 3336w\"}},gzMicRvtv:{animate:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1664,intrinsicWidth:2564,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+65+80+0+0+697.5+4),pixelHeight:1996,pixelWidth:3336,positionX:\"left\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1280px) * 1.0555)`,src:\"https://framerusercontent.com/images/ITDq40qQXphEnMbKiulSaj3s.png\",srcSet:\"https://framerusercontent.com/images/ITDq40qQXphEnMbKiulSaj3s.png?scale-down-to=512 512w,https://framerusercontent.com/images/ITDq40qQXphEnMbKiulSaj3s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ITDq40qQXphEnMbKiulSaj3s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ITDq40qQXphEnMbKiulSaj3s.png 3336w\"},initial:undefined,optimized:undefined}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1664,intrinsicWidth:2564,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+80+0+293.75+0),pixelHeight:1996,pixelWidth:3336,positionX:\"left\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 160px, 1280px) * 0.4827 + 169px)`,src:\"https://framerusercontent.com/images/ITDq40qQXphEnMbKiulSaj3s.png\",srcSet:\"https://framerusercontent.com/images/ITDq40qQXphEnMbKiulSaj3s.png?scale-down-to=512 512w,https://framerusercontent.com/images/ITDq40qQXphEnMbKiulSaj3s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ITDq40qQXphEnMbKiulSaj3s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ITDq40qQXphEnMbKiulSaj3s.png 3336w\"},className:\"framer-noi60o\",\"data-framer-appear-id\":\"noi60o\",\"data-framer-name\":\"Hero-img\",initial:animation1,optimized:true,children:isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzMicRvtv:{animate:undefined,background:{alt:\"\",fit:\"fit\",intrinsicHeight:1136.5,intrinsicWidth:563,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+65+80+0+0+697.5+4+358-254),pixelHeight:2269,pixelWidth:1103,positionX:\"center\",positionY:\"center\",sizes:\"126px\",src:\"https://framerusercontent.com/images/kgZK6mxV2goz17rH5vbt1ZHcI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/kgZK6mxV2goz17rH5vbt1ZHcI.png?scale-down-to=2048 995w,https://framerusercontent.com/images/kgZK6mxV2goz17rH5vbt1ZHcI.png 1103w\"},initial:undefined,optimized:undefined}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation2,background:{alt:\"\",fit:\"fit\",intrinsicHeight:1136.5,intrinsicWidth:563,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+80+0+293.75+0+-18-349),pixelHeight:2269,pixelWidth:1103,positionX:\"center\",positionY:\"center\",sizes:\"173px\",src:\"https://framerusercontent.com/images/kgZK6mxV2goz17rH5vbt1ZHcI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/kgZK6mxV2goz17rH5vbt1ZHcI.png?scale-down-to=2048 995w,https://framerusercontent.com/images/kgZK6mxV2goz17rH5vbt1ZHcI.png 1103w\"},className:\"framer-casg0k hidden-jghalf\",\"data-framer-appear-id\":\"casg0k\",\"data-framer-name\":\"iPhone_14_Pro\",id:\"casg0k\",initial:animation1,optimized:true})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzMicRvtv:{animate:undefined,initial:undefined,optimized:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-yx1x8m\",\"data-framer-appear-id\":\"yx1x8m\",\"data-framer-name\":\"glow\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 590 639\"><g transform=\"translate(1.423 126.908)\" id=\"ss10962737930_1\"><path d=\"M 222.046 318.058 C 154.76 283.748 31.55 108.147 0 66.084 C 201.393 -72.547 351.899 43.125 413.525 87.126 C 462.827 122.327 551.487 238.151 582.54 323.886 C 399.787 398.743 276.763 345.959 222.046 318.058 Z\" fill=\"rgba(90, 66, 255, 0.2)\"></path><path d=\"M 222.046 318.058 C 154.76 283.748 31.55 108.147 0 66.084 C 201.393 -72.547 351.899 43.125 413.525 87.126 C 462.827 122.327 551.487 238.151 582.54 323.886 C 399.787 398.743 276.763 345.959 222.046 318.058 Z\" fill=\"transparent\" stroke-width=\"0.67\" stroke=\"rgb(0,0,0)\" stroke-miterlimit=\"10\"></path></g></svg>',svgContentId:10962737930},gzMicRvtv:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 393 426\"><g transform=\"translate(0.929 82.818)\" id=\"ss9952890553_1\"><path d=\"M 147.925 213.826 C 103.105 190.953 21.035 73.886 0.019 45.843 C 134.167 -46.577 234.42 30.537 275.469 59.871 C 308.309 83.339 367.366 160.555 388.05 217.712 C 266.318 267.616 184.372 232.426 147.925 213.826 Z\" fill=\"rgba(90, 66, 255, 0.2)\"></path><path d=\"M 147.925 213.826 C 103.105 190.953 21.035 73.886 0.019 45.843 C 134.167 -46.577 234.42 30.537 275.469 59.871 C 308.309 83.339 367.366 160.555 388.05 217.712 C 266.318 267.616 184.372 232.426 147.925 213.826 Z\" fill=\"transparent\" stroke-width=\"0.45\" stroke=\"rgb(0,0,0)\" stroke-miterlimit=\"10\"></path></g></svg>',svgContentId:9952890553}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19sy64h\",\"data-framer-name\":\"glow\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 795 862\"><g transform=\"translate(1.918 171.197)\" id=\"ss10304246701_1\"><path d=\"M 299.198 429.055 C 208.532 382.771 42.513 145.889 0 89.146 C 271.368 -97.865 474.169 58.175 557.208 117.531 C 623.64 165.017 743.106 321.261 784.948 436.917 C 538.696 537.898 372.926 466.692 299.198 429.055 Z\" fill=\"rgba(90, 66, 255, 0.2)\"></path><path d=\"M 299.198 429.055 C 208.532 382.771 42.513 145.889 0 89.146 C 271.368 -97.865 474.169 58.175 557.208 117.531 C 623.64 165.017 743.106 321.261 784.948 436.917 C 538.696 537.898 372.926 466.692 299.198 429.055 Z\" fill=\"transparent\" stroke-width=\"0.91\" stroke=\"rgb(0,0,0)\" stroke-miterlimit=\"10\"></path></g></svg>',svgContentId:10304246701,withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1fa4b1s\",\"data-framer-name\":\"section-features\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ii6n5w\",\"data-framer-name\":\"Container + Padding\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p6ivhq\",\"data-framer-name\":\"Layout\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6xa0ty\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{y:(componentViewport?.y||0)+0+723.5+0+0+35+0+0+0+0+0},gzMicRvtv:{y:(componentViewport?.y||0)+0+1202.5+0+0+50+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+725+0+0+16+0+0+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzMicRvtv:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-o2yhs6-container\",nodeId:\"aYiq_18FF\",rendersWithMotion:true,scopeId:\"TuRskxh5v\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SectionBadge,{height:\"100%\",id:\"aYiq_18FF\",layoutId:\"aYiq_18FF\",variant:\"Ppr2HuXmH\",VshpJedt4:getLocalizedValue(\"v8\",activeLocale)??\"NOTRE APPROCHE\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1afpdhq\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18n7dbp\",\"data-framer-name\":\"Heading Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7gvcta\",\"data-styles-preset\":\"NLBEe4aVc\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\"},children:\"Cr\\xe9ez et pilotez efficacement tous vos projets audio avec un partenaire unique\"})}),className:\"framer-mt8srb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5e34ca85-650e-4845-8b6a-e411ea113e40, rgb(64, 64, 64))\"},children:\"Nous allions le savoir-faire humain et les derni\\xe8res technologies d'Intelligence Artificielle pour imaginer, cr\\xe9er et diffuser des contenus audio qui font la diff\\xe9rence.\"})}),className:\"framer-x4iach\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18oepw6\",\"data-framer-name\":\"Feature Grid\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzMicRvtv:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19vc2nh\",\"data-framer-name\":\"Feature Wrapper\",id:\"19vc2nh\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1by276j-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"lDBdN0ccN\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f5bbcd0c-3b82-4dbd-94cb-c69bafd7aca8, rgb(90, 66, 255))\",height:\"100%\",iconSearch:getLocalizedValue(\"v11\",activeLocale)??\"House\",iconSelection:\"Lightbulb\",id:\"lDBdN0ccN\",layoutId:\"lDBdN0ccN\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vafo3i\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-nz380f\",\"data-styles-preset\":\"Ym6cjYUno\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\"},children:\"Strat\\xe9gie audio personnalis\\xe9e\"})}),className:\"framer-1wtegxd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115))\"},children:\"D\\xe9cuplez votre impact avec une strat\\xe9gie audio sur-mesure bas\\xe9e sur vos enjeux, vos ressources et parfaitement align\\xe9e avec vos objectifs.\"})}),className:\"framer-eazwor\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"EiSY7VWBN\"},implicitPathVariables:undefined},{href:{webPageId:\"EiSY7VWBN\"},implicitPathVariables:undefined},{href:{webPageId:\"EiSY7VWBN\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{y:(componentViewport?.y||0)+0+723.5+0+0+35+0+0+319.2+0+0+0+246},gzMicRvtv:{y:(componentViewport?.y||0)+0+1202.5+0+0+50+0+0+319.2+0+0+0+246}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+725+0+0+16+0+0+319.2+0+0+0+246,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5rg0yq-container\",nodeId:\"OBj3iRJ8N\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{RWkv57tSu:resolvedLinks1[1]},gzMicRvtv:{RWkv57tSu:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ButtonLink,{GrjfbeKC3:false,height:\"100%\",id:\"OBj3iRJ8N\",KXJ3N9Ejk:\"ArrowRightAlt\",layoutId:\"OBj3iRJ8N\",MoT2QQ5gx:true,NP5yQIcR3:getLocalizedValue(\"v14\",activeLocale)??\"En savoir plus\",RWkv57tSu:resolvedLinks1[0],tXS3YmhNZ:\"Circle\",TyNgdA24P:false,variant:\"D_E_5lakE\",width:\"100%\",YZAlJBSOC:true})})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzMicRvtv:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pjuu0n\",\"data-framer-name\":\"Feature Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rfd5rv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jhDu5QsfO\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f5bbcd0c-3b82-4dbd-94cb-c69bafd7aca8, rgb(90, 66, 255))\",height:\"100%\",iconSearch:getLocalizedValue(\"v11\",activeLocale)??\"House\",iconSelection:\"Microphone\",id:\"jhDu5QsfO\",layoutId:\"jhDu5QsfO\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7gf63m\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-nz380f\",\"data-styles-preset\":\"Ym6cjYUno\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\"},children:\"Production audio simplifi\\xe9e\"})}),className:\"framer-5sqmw3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115))\"},children:\"G\\xe9n\\xe9rez automatiquement des contenus audio gr\\xe2ce \\xe0 notre plateforme d'IA ou profitez de notre studio d'enregistrement pour la cr\\xe9ation de vos podcasts.\"})}),className:\"framer-1xbr122\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"P5WxMuKbC\"},implicitPathVariables:undefined},{href:{webPageId:\"P5WxMuKbC\"},implicitPathVariables:undefined},{href:{webPageId:\"P5WxMuKbC\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{y:(componentViewport?.y||0)+0+723.5+0+0+35+0+0+319.2+0+0+0+246},gzMicRvtv:{y:(componentViewport?.y||0)+0+1202.5+0+0+50+0+0+319.2+0+326+0+246}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+725+0+0+16+0+0+319.2+0+0+0+246,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oyggnj-container\",nodeId:\"CQyL2hx58\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{RWkv57tSu:resolvedLinks2[1]},gzMicRvtv:{RWkv57tSu:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(ButtonLink,{GrjfbeKC3:false,height:\"100%\",id:\"CQyL2hx58\",KXJ3N9Ejk:\"ArrowRightAlt\",layoutId:\"CQyL2hx58\",MoT2QQ5gx:true,NP5yQIcR3:getLocalizedValue(\"v14\",activeLocale)??\"En savoir plus\",RWkv57tSu:resolvedLinks2[0],tXS3YmhNZ:\"Circle\",TyNgdA24P:false,variant:\"D_E_5lakE\",width:\"100%\",YZAlJBSOC:true})})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzMicRvtv:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xpfj0v\",\"data-framer-name\":\"Feature Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fhdmlg-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZVF0SiA80\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f5bbcd0c-3b82-4dbd-94cb-c69bafd7aca8, rgb(90, 66, 255))\",height:\"100%\",iconSearch:getLocalizedValue(\"v11\",activeLocale)??\"House\",iconSelection:\"MegaphoneSimple\",id:\"ZVF0SiA80\",layoutId:\"ZVF0SiA80\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ngtb2u\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-nz380f\",\"data-styles-preset\":\"Ym6cjYUno\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\"},children:\"Diffusion audio optimale\"})}),className:\"framer-dnikib\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115))\"},children:\"Diffusez vos contenus via notre application multi-plateforme (mobile, web, automobile) et offrez une exp\\xe9rience exceptionnelle \\xe0 tous vos collaborateurs.\"})}),className:\"framer-13ncpih\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"l7z1yu94y\"},implicitPathVariables:undefined},{href:{webPageId:\"l7z1yu94y\"},implicitPathVariables:undefined},{href:{webPageId:\"l7z1yu94y\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{y:(componentViewport?.y||0)+0+723.5+0+0+35+0+0+319.2+0+0+0+246},gzMicRvtv:{y:(componentViewport?.y||0)+0+1202.5+0+0+50+0+0+319.2+0+652+0+246}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+725+0+0+16+0+0+319.2+0+0+0+246,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1764pim-container\",nodeId:\"MMQSufjQu\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{RWkv57tSu:resolvedLinks3[1]},gzMicRvtv:{RWkv57tSu:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(ButtonLink,{GrjfbeKC3:false,height:\"100%\",id:\"MMQSufjQu\",KXJ3N9Ejk:\"ArrowRightAlt\",layoutId:\"MMQSufjQu\",MoT2QQ5gx:true,NP5yQIcR3:getLocalizedValue(\"v14\",activeLocale)??\"En savoir plus\",RWkv57tSu:resolvedLinks3[0],tXS3YmhNZ:\"Circle\",TyNgdA24P:false,variant:\"D_E_5lakE\",width:\"100%\",YZAlJBSOC:true})})})})})})]})})]})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1uh7ae\",\"data-framer-name\":\"section-reasons\",children:/*#__PURE__*/_jsx(\"section\",{className:\"framer-1y3ki1o\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vwaols\",\"data-framer-name\":\"Padding\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1idcrx6\",\"data-framer-name\":\"Layout\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p9zhxg\",\"data-framer-name\":\"Heading Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzMicRvtv:{children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\"},children:\"Votre entreprise a besoin d'une voix !\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\"},children:\"Votre entreprise a besoin d'une voix !\"})}),className:\"framer-1x2r8zj\",fonts:[\"GF;Manrope-800\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5e34ca85-650e-4845-8b6a-e411ea113e40, rgb(64, 64, 64))\"},children:\"L'audio est le m\\xe9dia strat\\xe9gique pour amplifier votre communication, optimiser l'int\\xe9gration et la formation de vos talents et nouer un lien fort avec vos audiences.\"})}),className:\"framer-1cbz6ia\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-f0vvmn-container\",isModuleExternal:true,nodeId:\"wCyw99DUo\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{itemAmount:2},gzMicRvtv:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.5)\",arrowGap:10,arrowPadding:9,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:30,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:50,showMouseControls:true},itemAmount:1}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:60,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:50,showMouseControls:true},autoPlayControl:true,borderRadius:30,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",id:\"wCyw99DUo\",intervalControl:3,itemAmount:3,layoutId:\"wCyw99DUo\",padding:30,paddingBottom:30,paddingLeft:30,paddingPerSide:false,paddingRight:30,paddingTop:30,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wfsdci\",\"data-framer-name\":\"Feature Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8xlcsu-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ynPPbFTqU\",rendersWithMotion:true,scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f5bbcd0c-3b82-4dbd-94cb-c69bafd7aca8, rgb(90, 66, 255))\",height:\"100%\",iconSearch:getLocalizedValue(\"v11\",activeLocale)??\"House\",iconSelection:\"Ear\",id:\"ynPPbFTqU\",layoutId:\"ynPPbFTqU\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c5gfg6\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.015em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\"},children:\"Rendez l'information accessible\"})}),className:\"framer-12837o6\",fonts:[\"GF;Manrope-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115))\"},children:\"Depuis un t\\xe9l\\xe9phone, sur un ordinateur, en voiture ou dans le m\\xe9tro, l'audio est un m\\xe9dia qui peut \\xeatre \\xe9cout\\xe9 partout et \\xe0 tout moment.\"})}),className:\"framer-12a3qfe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jovrcv\",\"data-framer-name\":\"Feature Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-63icdi-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PPdGzow4s\",rendersWithMotion:true,scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f5bbcd0c-3b82-4dbd-94cb-c69bafd7aca8, rgb(90, 66, 255))\",height:\"100%\",iconSearch:getLocalizedValue(\"v11\",activeLocale)??\"House\",iconSelection:\"TrendUp\",id:\"PPdGzow4s\",layoutId:\"PPdGzow4s\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y7nd7e\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.015em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\"},children:\"Am\\xe9liorez la productivit\\xe9 de vos \\xe9quipes\"})}),className:\"framer-1wxqrq1\",fonts:[\"GF;Manrope-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115))\"},children:\"Simplifiez le partage de connaissance, l\u2019onboarding et la formation de vos collaborateurs gr\\xe2ce \\xe0 un support multit\\xe2che et engageant.\"})}),className:\"framer-s6kdpm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-eqnmy6\",\"data-framer-name\":\"Feature Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1prodhf-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"K368N9g6b\",rendersWithMotion:true,scopeId:\"TuRskxh5v\",style:{rotate:180},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f5bbcd0c-3b82-4dbd-94cb-c69bafd7aca8, rgb(90, 66, 255))\",height:\"100%\",iconSearch:getLocalizedValue(\"v11\",activeLocale)??\"House\",iconSelection:\"ArrowsSplit\",id:\"K368N9g6b\",layoutId:\"K368N9g6b\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17ehhrr\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.015em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\"},children:\"Proposez une communication transverse\"})}),className:\"framer-1edzac\",fonts:[\"GF;Manrope-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115))\"},children:\"Diversifiez vos canaux de communication pour maximiser votre port\\xe9e et assurer une communication globale et coh\\xe9rente.\"})}),className:\"framer-151v5vv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rvvr0x\",\"data-framer-name\":\"Feature Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kmj5dj-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"bKbyXuUmY\",rendersWithMotion:true,scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f5bbcd0c-3b82-4dbd-94cb-c69bafd7aca8, rgb(90, 66, 255))\",height:\"100%\",iconSearch:getLocalizedValue(\"v11\",activeLocale)??\"House\",iconSelection:\"Chat\",id:\"bKbyXuUmY\",layoutId:\"bKbyXuUmY\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mnxm0l\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.015em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\"},children:\"Cr\\xe9ez du lien et engagez votre audience\"})}),className:\"framer-kw886d\",fonts:[\"GF;Manrope-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115))\"},children:\"Humanisez votre communication en offrant des contenus plus authentiques, \\xe9motionnels et engageants gr\\xe2ce \\xe0 la voix.\"})}),className:\"framer-v6ld6s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kg2kif\",\"data-framer-name\":\"Feature Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cmihep-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Ic_O3_WIj\",rendersWithMotion:true,scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f5bbcd0c-3b82-4dbd-94cb-c69bafd7aca8, rgb(90, 66, 255))\",height:\"100%\",iconSearch:getLocalizedValue(\"v11\",activeLocale)??\"House\",iconSelection:\"SketchLogo\",id:\"Ic_O3_WIj\",layoutId:\"Ic_O3_WIj\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1akqsji\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.015em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\"},children:\"Renforcez votre image de marque \"})}),className:\"framer-1gk9adl\",fonts:[\"GF;Manrope-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115))\"},children:\"Valorisez votre expertise, partagez vos valeurs et consolidez votre notori\\xe9t\\xe9 aussi bien en interne qu'en externe.\"})}),className:\"framer-t8kri0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yqwho0\",\"data-framer-name\":\"Feature Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mpuck9-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yddYU7x0R\",rendersWithMotion:true,scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f5bbcd0c-3b82-4dbd-94cb-c69bafd7aca8, rgb(90, 66, 255))\",height:\"100%\",iconSearch:getLocalizedValue(\"v11\",activeLocale)??\"House\",iconSelection:\"GraduationCap\",id:\"yddYU7x0R\",layoutId:\"yddYU7x0R\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oznwah\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.015em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\"},children:\"Formez de fa\\xe7on plus efficace et innovante\"})}),className:\"framer-1c7hdsv\",fonts:[\"GF;Manrope-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115))\"},children:\"Offrez une exp\\xe9rience d'apprentissage personnalis\\xe9e, flexible et adapt\\xe9e aux modes de consommation modernes.\"})}),className:\"framer-1wd8p20\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:60,delay:0,mass:1,stiffness:120,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"RonFNgdTg\"},implicitPathVariables:undefined},{href:{webPageId:\"RonFNgdTg\"},implicitPathVariables:undefined},{href:{webPageId:\"RonFNgdTg\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{y:(componentViewport?.y||0)+0+1453.7+0+0+0+0+80+639.2},gzMicRvtv:{y:(componentViewport?.y||0)+0+2559.7+0+0+0+0+80+619.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:(componentViewport?.y||0)+0+1436.2+0+0+0+0+80+639.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hjxbjn-container\",nodeId:\"VMN1I2KCS\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{RWkv57tSu:resolvedLinks4[1]},gzMicRvtv:{RWkv57tSu:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(ButtonPrimary1,{DZf1o6TOU:false,fB79YgjuY:8,GrjfbeKC3:false,height:\"100%\",id:\"VMN1I2KCS\",KXJ3N9Ejk:\"Circle\",layoutId:\"VMN1I2KCS\",MoT2QQ5gx:true,NP5yQIcR3:getLocalizedValue(\"v7\",activeLocale)??\"Demander une d\\xe9mo\",RWkv57tSu:resolvedLinks4[0],tXS3YmhNZ:\"Circle\",variant:\"sM1ypiimf\",width:\"100%\",YZAlJBSOC:false})})})})})})]})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-4vn4t\",\"data-framer-name\":\"section-products\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-od5lk8\",\"data-framer-name\":\"Container + Padding\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10))\"},children:\"Votre solution d'IA audio professionnelle\"})}),className:\"framer-cbpcqy hidden-1oq9nmo hidden-jghalf\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-t17mc3 hidden-13zjgx5\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v35\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7gvcta\",\"data-styles-preset\":\"NLBEe4aVc\",style:{\"--framer-text-alignment\":\"center\"},children:\"Votre solution d'IA audio professionnelle\"})}),className:\"framer-6jtjib\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5h8wez\",\"data-framer-name\":\"Layout\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6oygpw\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-163ltbs\",\"data-framer-name\":\"Heading Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{y:(componentViewport?.y||0)+0+2304.9+0+0+80+123.19999999999999+0+0+0+0+0+0},gzMicRvtv:{y:(componentViewport?.y||0)+0+3391.2999999999997+0+0+51+79.6+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+2287.4+0+0+80+123.19999999999999+0+0+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzMicRvtv:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jdrn05-container\",nodeId:\"IjMOlnhBj\",rendersWithMotion:true,scopeId:\"TuRskxh5v\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SectionBadge,{height:\"100%\",id:\"IjMOlnhBj\",layoutId:\"IjMOlnhBj\",variant:\"aZytoNrz6\",VshpJedt4:getLocalizedValue(\"v36\",activeLocale)??\"POUR VOS EMPLOY\\xc9S\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7gvcta\",\"data-styles-preset\":\"NLBEe4aVc\",children:\"Une application 100% audio\"})}),className:\"framer-9tdsy2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fcm6as\",\"data-styles-preset\":\"rncFq5P_8\",style:{\"--framer-text-color\":\"var(--token-c9883a06-0714-4bde-a248-d9d8eb496918, rgb(219, 218, 230))\"},children:\"Propulsez vos contenus avec une application personnalis\\xe9e et multiplateforme permettant \\xe0 vos \\xe9quipes :\"})}),className:\"framer-1q1w5ym\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-e53zwj\",\"data-framer-name\":\"Feature Highlight Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j76xy8\",\"data-framer-name\":\"Feature Highlight Wrapper\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16cg1wm\",\"data-framer-name\":\"Highlight Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-r7lsn5\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fapyf4-container\",\"data-framer-name\":\"Icon L\",isAuthoredByUser:true,isModuleExternal:true,name:\"Icon L\",nodeId:\"IYmLnBEv0\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-f5bbcd0c-3b82-4dbd-94cb-c69bafd7aca8, rgb(10, 10, 10))\",height:\"100%\",iconSearch:getLocalizedValue(\"v39\",activeLocale)??\"Home\",iconSelection:\"Done\",iconStyle15:\"Outlined\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"IYmLnBEv0\",layoutId:\"IYmLnBEv0\",mirrored:false,name:\"Icon L\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l5leyk\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v40\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-color\":\"var(--token-c9883a06-0714-4bde-a248-d9d8eb496918, rgb(219, 218, 230))\"},children:\"D'acc\\xe9der aux actualit\\xe9s et contenus audio de l'entreprise, partout et \\xe0 tout moment gr\\xe2ce \\xe0 une application disponible sur mobile, web et m\\xeame en voiture !\"})}),className:\"framer-1ekflpe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mgslvr\",\"data-framer-name\":\"Highlight Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mqmbtz\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9mm9px-container\",\"data-framer-name\":\"Icon L\",isAuthoredByUser:true,isModuleExternal:true,name:\"Icon L\",nodeId:\"mZoALi1z7\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-f5bbcd0c-3b82-4dbd-94cb-c69bafd7aca8, rgb(10, 10, 10))\",height:\"100%\",iconSearch:getLocalizedValue(\"v39\",activeLocale)??\"Home\",iconSelection:\"Done\",iconStyle15:\"Outlined\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"mZoALi1z7\",layoutId:\"mZoALi1z7\",mirrored:false,name:\"Icon L\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s34wtj\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v41\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-color\":\"var(--token-c9883a06-0714-4bde-a248-d9d8eb496918, rgb(219, 218, 230))\"},children:\"D'explorer un catalogue de plus de 5000 podcasts inspirants de d\\xe9veloppement personnel et professionnel, bien-\\xeatre ou encore de divertissement.\"})}),className:\"framer-1i2hvd1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sclkm7\",\"data-framer-name\":\"Highlight Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-crgwc8\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sqdmde-container\",\"data-framer-name\":\"Icon L\",isAuthoredByUser:true,isModuleExternal:true,name:\"Icon L\",nodeId:\"lekHqJeGG\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-f5bbcd0c-3b82-4dbd-94cb-c69bafd7aca8, rgb(10, 10, 10))\",height:\"100%\",iconSearch:getLocalizedValue(\"v39\",activeLocale)??\"Home\",iconSelection:\"Done\",iconStyle15:\"Outlined\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"lekHqJeGG\",layoutId:\"lekHqJeGG\",mirrored:false,name:\"Icon L\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mayg20\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v42\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-color\":\"var(--token-c9883a06-0714-4bde-a248-d9d8eb496918, rgb(219, 218, 230))\"},children:\"De profiter de la meilleure exp\\xe9rience d'\\xe9coute avec une interface intuitive, ergonomique et personnalis\\xe9e gr\\xe2ce \\xe0 nos recommandations intelligentes.\"})}),className:\"framer-1b8i4nr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2304.9+0+0+80+123.19999999999999+0+754.2),pixelHeight:968,pixelWidth:968,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 160px, 1200px)`,src:\"https://framerusercontent.com/images/PpBpue7AI56MPmhtC6KyoMXDkOE.png\",srcSet:\"https://framerusercontent.com/images/PpBpue7AI56MPmhtC6KyoMXDkOE.png?scale-down-to=512 512w,https://framerusercontent.com/images/PpBpue7AI56MPmhtC6KyoMXDkOE.png 968w\"}},gzMicRvtv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3391.2999999999997+0+0+51+79.6+0+754.2),pixelHeight:968,pixelWidth:968,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/PpBpue7AI56MPmhtC6KyoMXDkOE.png\",srcSet:\"https://framerusercontent.com/images/PpBpue7AI56MPmhtC6KyoMXDkOE.png?scale-down-to=512 512w,https://framerusercontent.com/images/PpBpue7AI56MPmhtC6KyoMXDkOE.png 968w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2287.4+0+0+80+123.19999999999999+97.10000000000002),pixelHeight:968,pixelWidth:968,sizes:`max((min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 160px, 1200px) - 80px) / 2, 1px)`,src:\"https://framerusercontent.com/images/PpBpue7AI56MPmhtC6KyoMXDkOE.png\",srcSet:\"https://framerusercontent.com/images/PpBpue7AI56MPmhtC6KyoMXDkOE.png?scale-down-to=512 512w,https://framerusercontent.com/images/PpBpue7AI56MPmhtC6KyoMXDkOE.png 968w\"},className:\"framer-8d9b7l\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1136.5,intrinsicWidth:563,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2304.9+0+0+80+123.19999999999999+0+754.2+480-427),pixelHeight:2269,pixelWidth:1103,positionX:\"center\",positionY:\"center\",sizes:\"250px\",src:\"https://framerusercontent.com/images/kgZK6mxV2goz17rH5vbt1ZHcI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/kgZK6mxV2goz17rH5vbt1ZHcI.png?scale-down-to=2048 995w,https://framerusercontent.com/images/kgZK6mxV2goz17rH5vbt1ZHcI.png 1103w\"}},gzMicRvtv:{__framer__styleAppearEffectEnabled:undefined,background:{alt:\"\",fit:\"fit\",intrinsicHeight:1136.5,intrinsicWidth:563,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3391.2999999999997+0+0+51+79.6+0+754.2+450-427),pixelHeight:2269,pixelWidth:1103,positionX:\"center\",positionY:\"center\",sizes:\"250px\",src:\"https://framerusercontent.com/images/kgZK6mxV2goz17rH5vbt1ZHcI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/kgZK6mxV2goz17rH5vbt1ZHcI.png?scale-down-to=2048 995w,https://framerusercontent.com/images/kgZK6mxV2goz17rH5vbt1ZHcI.png 1103w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:1136.5,intrinsicWidth:563,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2287.4+0+0+80+123.19999999999999+97.10000000000002+480-427),pixelHeight:2269,pixelWidth:1103,positionX:\"center\",positionY:\"center\",sizes:\"250px\",src:\"https://framerusercontent.com/images/kgZK6mxV2goz17rH5vbt1ZHcI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/kgZK6mxV2goz17rH5vbt1ZHcI.png?scale-down-to=2048 995w,https://framerusercontent.com/images/kgZK6mxV2goz17rH5vbt1ZHcI.png 1103w\"},className:\"framer-m6id8k\",\"data-framer-name\":\"iPhone_14_Pro\",transformTemplate:transformTemplate1})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1bhpsyx hidden-13zjgx5\",\"data-framer-appear-id\":\"1bhpsyx\",\"data-framer-name\":\"glow\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-16e7r6b\",\"data-framer-name\":\"glow\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 795 862\"><g transform=\"translate(1.918 171.197)\" id=\"ss10304246701_1\"><path d=\"M 299.198 429.055 C 208.532 382.771 42.513 145.889 0 89.146 C 271.368 -97.865 474.169 58.175 557.208 117.531 C 623.64 165.017 743.106 321.261 784.948 436.917 C 538.696 537.898 372.926 466.692 299.198 429.055 Z\" fill=\"rgba(90, 66, 255, 0.2)\"></path><path d=\"M 299.198 429.055 C 208.532 382.771 42.513 145.889 0 89.146 C 271.368 -97.865 474.169 58.175 557.208 117.531 C 623.64 165.017 743.106 321.261 784.948 436.917 C 538.696 537.898 372.926 466.692 299.198 429.055 Z\" fill=\"transparent\" stroke-width=\"0.91\" stroke=\"rgb(0,0,0)\" stroke-miterlimit=\"10\"></path></g></svg>',svgContentId:10304246701,withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ecdj1w\",\"data-framer-name\":\"Container + Padding\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p4ft11\",\"data-framer-name\":\"Layout\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2304.9+0+1517.4+80+0+0+754.2),pixelHeight:968,pixelWidth:968,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 160px, 1200px)`,src:\"https://framerusercontent.com/images/PpBpue7AI56MPmhtC6KyoMXDkOE.png\",srcSet:\"https://framerusercontent.com/images/PpBpue7AI56MPmhtC6KyoMXDkOE.png?scale-down-to=512 512w,https://framerusercontent.com/images/PpBpue7AI56MPmhtC6KyoMXDkOE.png 968w\"}},gzMicRvtv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3391.2999999999997+0+1385.8+21+0+0+754.2),pixelHeight:968,pixelWidth:968,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 40px, 1200px)`,src:\"https://framerusercontent.com/images/PpBpue7AI56MPmhtC6KyoMXDkOE.png\",srcSet:\"https://framerusercontent.com/images/PpBpue7AI56MPmhtC6KyoMXDkOE.png?scale-down-to=512 512w,https://framerusercontent.com/images/PpBpue7AI56MPmhtC6KyoMXDkOE.png 968w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2287.4+0+957.4000000000001+80+0+97.10000000000002),pixelHeight:968,pixelWidth:968,sizes:`max((min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 160px, 1200px) - 80px) / 2, 1px)`,src:\"https://framerusercontent.com/images/PpBpue7AI56MPmhtC6KyoMXDkOE.png\",srcSet:\"https://framerusercontent.com/images/PpBpue7AI56MPmhtC6KyoMXDkOE.png?scale-down-to=512 512w,https://framerusercontent.com/images/PpBpue7AI56MPmhtC6KyoMXDkOE.png 968w\"},className:\"framer-19jd6fn\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1136.5,intrinsicWidth:563,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2304.9+0+1517.4+80+0+0+754.2+54.500000000000114),pixelHeight:1996,pixelWidth:3336,positionX:\"center\",positionY:\"center\",sizes:\"565px\",src:\"https://framerusercontent.com/images/IpXEkcwOSmgi8lGqsu6xxzesA.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/IpXEkcwOSmgi8lGqsu6xxzesA.png?scale-down-to=512 512w,https://framerusercontent.com/images/IpXEkcwOSmgi8lGqsu6xxzesA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IpXEkcwOSmgi8lGqsu6xxzesA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IpXEkcwOSmgi8lGqsu6xxzesA.png 3336w\"}},gzMicRvtv:{__framer__styleAppearEffectEnabled:undefined,background:{alt:\"\",fit:\"fit\",intrinsicHeight:1136.5,intrinsicWidth:563,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3391.2999999999997+0+1385.8+21+0+0+754.2+67.50000000000011),pixelHeight:1996,pixelWidth:2341,positionX:\"center\",positionY:\"center\",sizes:\"350px\",src:\"https://framerusercontent.com/images/Zoj2PizrDgvtrGjiB6bOQcqRs9k.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Zoj2PizrDgvtrGjiB6bOQcqRs9k.png?scale-down-to=512 512w,https://framerusercontent.com/images/Zoj2PizrDgvtrGjiB6bOQcqRs9k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Zoj2PizrDgvtrGjiB6bOQcqRs9k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Zoj2PizrDgvtrGjiB6bOQcqRs9k.png 2341w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:false,__framer__enter:animation10,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:1136.5,intrinsicWidth:563,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2287.4+0+957.4000000000001+80+0+97.10000000000002+82.50000000000011),pixelHeight:1996,pixelWidth:3336,positionX:\"center\",positionY:\"center\",sizes:\"480px\",src:\"https://framerusercontent.com/images/IpXEkcwOSmgi8lGqsu6xxzesA.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/IpXEkcwOSmgi8lGqsu6xxzesA.png?scale-down-to=512 512w,https://framerusercontent.com/images/IpXEkcwOSmgi8lGqsu6xxzesA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IpXEkcwOSmgi8lGqsu6xxzesA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IpXEkcwOSmgi8lGqsu6xxzesA.png 3336w\"},className:\"framer-11ib9pd\",\"data-framer-name\":\"iPhone_14_Pro\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1joe88u\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o3ip3c\",\"data-framer-name\":\"Heading Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{y:(componentViewport?.y||0)+0+2304.9+0+1517.4+80+0+0+0+0+0+0+0},gzMicRvtv:{y:(componentViewport?.y||0)+0+3391.2999999999997+0+1385.8+21+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+2287.4+0+957.4000000000001+80+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzMicRvtv:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ibfasb-container\",nodeId:\"TR_gZa195\",rendersWithMotion:true,scopeId:\"TuRskxh5v\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SectionBadge,{height:\"100%\",id:\"TR_gZa195\",layoutId:\"TR_gZa195\",variant:\"aZytoNrz6\",VshpJedt4:getLocalizedValue(\"v43\",activeLocale)??\"POUR VOUS\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7gvcta\",\"data-styles-preset\":\"NLBEe4aVc\",children:\"Un back-office 360\\xb0\"})}),className:\"framer-13h4uzs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v45\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fcm6as\",\"data-styles-preset\":\"rncFq5P_8\",style:{\"--framer-text-color\":\"var(--token-c9883a06-0714-4bde-a248-d9d8eb496918, rgb(219, 218, 230))\"},children:\"Pilotez votre strat\\xe9gie audio depuis un Back Office tout-en-un, cr\\xe9ez des contenus audio par IA et orchestrez leur diffusion :\"})}),className:\"framer-116c6p8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mkoefg\",\"data-framer-name\":\"Feature Highlight Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzMicRvtv:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vzt2bv\",\"data-framer-name\":\"Highlight Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-glluja\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14hlsy1-container\",\"data-framer-name\":\"Icon L\",isAuthoredByUser:true,isModuleExternal:true,name:\"Icon L\",nodeId:\"rtME6Zgbi\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-f5bbcd0c-3b82-4dbd-94cb-c69bafd7aca8, rgb(10, 10, 10))\",height:\"100%\",iconSearch:getLocalizedValue(\"v39\",activeLocale)??\"Home\",iconSelection:\"Done\",iconStyle15:\"Outlined\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"rtME6Zgbi\",layoutId:\"rtME6Zgbi\",mirrored:false,name:\"Icon L\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7kaj4s\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v46\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-color\":\"var(--token-c9883a06-0714-4bde-a248-d9d8eb496918, rgb(219, 218, 230))\"},children:\"G\\xe9n\\xe9rez, personnalisez, traduisez et organisez vos contenus audio en toute simplicit\\xe9 gr\\xe2ce \\xe0 l\u2019IA.\"})}),className:\"framer-18dxi2g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzMicRvtv:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-127nmdu\",\"data-framer-name\":\"Highlight Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4q6u50\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1twdy0s-container\",\"data-framer-name\":\"Icon L\",isAuthoredByUser:true,isModuleExternal:true,name:\"Icon L\",nodeId:\"Sew2NBkuO\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-f5bbcd0c-3b82-4dbd-94cb-c69bafd7aca8, rgb(10, 10, 10))\",height:\"100%\",iconSearch:getLocalizedValue(\"v39\",activeLocale)??\"Home\",iconSelection:\"Done\",iconStyle15:\"Outlined\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"Sew2NBkuO\",layoutId:\"Sew2NBkuO\",mirrored:false,name:\"Icon L\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17tm48e\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v47\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-color\":\"var(--token-c9883a06-0714-4bde-a248-d9d8eb496918, rgb(219, 218, 230))\"},children:\"Maximisez votre impact en segmentant votre audience et en diffusant des contenus audio d\\xe9di\\xe9s \\xe0 chaque segment.\"})}),className:\"framer-175w24m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzMicRvtv:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-344n2m\",\"data-framer-name\":\"Highlight Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-inomzy\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18cxxwc-container\",\"data-framer-name\":\"Icon L\",isAuthoredByUser:true,isModuleExternal:true,name:\"Icon L\",nodeId:\"mx_bkUjM9\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-f5bbcd0c-3b82-4dbd-94cb-c69bafd7aca8, rgb(10, 10, 10))\",height:\"100%\",iconSearch:getLocalizedValue(\"v39\",activeLocale)??\"Home\",iconSelection:\"Done\",iconStyle15:\"Outlined\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"mx_bkUjM9\",layoutId:\"mx_bkUjM9\",mirrored:false,name:\"Icon L\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17ca5p8\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v48\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-color\":\"var(--token-c9883a06-0714-4bde-a248-d9d8eb496918, rgb(219, 218, 230))\"},children:\"Monitorez vos performances en direct, analysez les usages, adaptez votre offre de contenus pour optimiser sa diffusion.\"})}),className:\"framer-1jtc7wg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"l7z1yu94y\"},implicitPathVariables:undefined},{href:{webPageId:\"l7z1yu94y\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzMicRvtv:{height:52,y:(componentViewport?.y||0)+0+3391.2999999999997+0+1385.8+21+1254.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n5qtdf-container hidden-1oq9nmo hidden-jghalf\",nodeId:\"RRZtAfgzp\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzMicRvtv:{RWkv57tSu:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(ButtonPrimary1,{DZf1o6TOU:false,fB79YgjuY:8,GrjfbeKC3:false,height:\"100%\",id:\"RRZtAfgzp\",KXJ3N9Ejk:\"Circle\",layoutId:\"RRZtAfgzp\",MoT2QQ5gx:true,NP5yQIcR3:getLocalizedValue(\"v14\",activeLocale)??\"En savoir plus\",RWkv57tSu:resolvedLinks5[0],tXS3YmhNZ:\"Circle\",variant:\"n1Ughs2Se\",width:\"100%\",YZAlJBSOC:false})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"l7z1yu94y\"},motionChild:true,nodeId:\"kgf57dXdJ\",openInNewTab:false,scopeId:\"TuRskxh5v\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1yad09o hidden-13zjgx5 framer-16k2f4\",\"data-framer-name\":\"Button / Primary Copy\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f1bdw2\",\"data-framer-name\":\"Label Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v49\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\"},children:\"En savoir plus\"})}),className:\"framer-s8y4qx\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1j8ipiv hidden-13zjgx5\",\"data-framer-appear-id\":\"1j8ipiv\",\"data-framer-name\":\"glow\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ks6iqm\",\"data-framer-name\":\"glow\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 795 862\"><g transform=\"translate(1.918 171.197)\" id=\"ss10304246701_1\"><path d=\"M 299.198 429.055 C 208.532 382.771 42.513 145.889 0 89.146 C 271.368 -97.865 474.169 58.175 557.208 117.531 C 623.64 165.017 743.106 321.261 784.948 436.917 C 538.696 537.898 372.926 466.692 299.198 429.055 Z\" fill=\"rgba(90, 66, 255, 0.2)\"></path><path d=\"M 299.198 429.055 C 208.532 382.771 42.513 145.889 0 89.146 C 271.368 -97.865 474.169 58.175 557.208 117.531 C 623.64 165.017 743.106 321.261 784.948 436.917 C 538.696 537.898 372.926 466.692 299.198 429.055 Z\" fill=\"transparent\" stroke-width=\"0.91\" stroke=\"rgb(0,0,0)\" stroke-miterlimit=\"10\"></path></g></svg>',svgContentId:10304246701,withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c6ixz8\",\"data-framer-name\":\"section-video\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ogh48d\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uyr65f\",\"data-framer-name\":\"Heading Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v50\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7gvcta\",\"data-styles-preset\":\"NLBEe4aVc\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\"},children:\"D\\xe9couvrez majelan X (ex Majelan Pro) en vid\\xe9o\"})}),className:\"framer-rp5slq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v51\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fcm6as\",\"data-styles-preset\":\"rncFq5P_8\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5e34ca85-650e-4845-8b6a-e411ea113e40, rgb(64, 64, 64))\"},children:\"Rendez votre entreprise et vos collaborateurs plus efficients gr\\xe2ce \\xe0 notre plateforme d'audio IA omnicanale !\"})}),className:\"framer-1i060rt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m26kis\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s2eyxu-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"TntSmXhmM\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,height:\"100%\",id:\"TntSmXhmM\",isMixedBorderRadius:false,isRed:true,layoutId:\"TntSmXhmM\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:10,topRightRadius:10,url:getLocalizedValue(\"v52\",activeLocale)??\"https://www.youtube.com/watch?v=ZiVCnvmCcbA\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{y:(componentViewport?.y||0)+0+6034.900000000001},gzMicRvtv:{y:(componentViewport?.y||0)+0+6661.499999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:466,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5089.400000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fcem5m-container\",nodeId:\"RUYAyIaiT\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{variant:\"w1j5qNBog\"},gzMicRvtv:{variant:\"byOtbUZsS\"}},children:/*#__PURE__*/_jsx(TestimonialCarouselGNRal,{height:\"100%\",id:\"RUYAyIaiT\",layoutId:\"RUYAyIaiT\",style:{width:\"100%\"},variant:\"MOGdP6zgp\",width:\"100%\"})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzMicRvtv:{height:1050,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7127.499999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qr14bq-container hidden-1oq9nmo hidden-jghalf\",nodeId:\"c7PT9ibvk\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(ContactFormHubspot,{height:\"100%\",id:\"c7PT9ibvk\",layoutId:\"c7PT9ibvk\",style:{height:\"100%\",width:\"100%\"},variant:\"lGxXIxJ0P\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-122t8uy hidden-13zjgx5\",\"data-framer-name\":\"CTA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{height:720,y:(componentViewport?.y||0)+0+6500.900000000001+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:700,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5555.400000000001+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6ohuq8-container\",nodeId:\"EYmAYBbLp\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{variant:\"b6F43U9vF\"}},children:/*#__PURE__*/_jsx(ContactFormHubspot,{height:\"100%\",id:\"EYmAYBbLp\",layoutId:\"EYmAYBbLp\",style:{height:\"100%\",width:\"100%\"},variant:\"Zb95xwYOF\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-4f4d4c\",\"data-framer-name\":\"section-FAQ\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-92bu5u\",\"data-framer-name\":\"Container + Padding\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4l1gkz\",\"data-framer-name\":\"Layout\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1knrmv0\",\"data-framer-name\":\"Heading Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v53\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7gvcta\",\"data-styles-preset\":\"NLBEe4aVc\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\"},children:\"FAQ\"})}),className:\"framer-1tz2288\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v54\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fcm6as\",\"data-styles-preset\":\"rncFq5P_8\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-523feafa-3ea5-446f-bbb6-1692ac92395a, rgb(115, 115, 115))\"},children:\"Vous avez une question ? On a s\\xfbrement la r\\xe9ponse !\"})}),className:\"framer-1ud8alo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-108exs7\",\"data-framer-name\":\"Accordion Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{y:(componentViewport?.y||0)+0+7220.900000000001+0+0+80+0+234.2+0+0},gzMicRvtv:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 1px) - 48px)`,y:(componentViewport?.y||0)+0+8177.499999999999+0+0+80+0+234.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:171,width:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1000px) - 100px, 1px) - 48px)`,y:(componentViewport?.y||0)+0+6255.400000000001+0+0+80+0+234.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yb7yw6-container\",nodeId:\"qwgDmozAD\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(AccordionStyle1,{eEvLkW4gn:getLocalizedValue(\"v55\",activeLocale)??\"Pourquoi adopter la solution majelan X ?\",height:\"100%\",id:\"qwgDmozAD\",K69WR0DKh:getLocalizedValue(\"v56\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Majelan X aide les entreprises \\xe0 cr\\xe9er, g\\xe9rer et diffuser des contenus audio engageants via une strat\\xe9gie audio personnalis\\xe9e, une production simplifi\\xe9e par IA ou studio, et une diffusion optimale via une application multiplateforme. Notre Back Office 360\\xb0 permet de cr\\xe9er, traduire, r\\xe9sumer, organiser et suivre les performances de tous vos contenus en temps r\\xe9el.\"})}),layoutId:\"qwgDmozAD\",style:{width:\"100%\"},variant:\"NpdRTgEod\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{y:(componentViewport?.y||0)+0+7220.900000000001+0+0+80+0+234.2+0+171},gzMicRvtv:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 1px) - 48px)`,y:(componentViewport?.y||0)+0+8177.499999999999+0+0+80+0+234.2+0+171}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:171,width:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1000px) - 100px, 1px) - 48px)`,y:(componentViewport?.y||0)+0+6255.400000000001+0+0+80+0+234.2+0+171,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1huyl2o-container\",nodeId:\"KdDHebSg4\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(AccordionStyle1,{eEvLkW4gn:getLocalizedValue(\"v57\",activeLocale)??\"Comment garantissez-vous la s\\xe9curit\\xe9 et la confidentialit\\xe9 de nos donn\\xe9es et de nos contenus audio ?\",height:\"100%\",id:\"KdDHebSg4\",K69WR0DKh:getLocalizedValue(\"v58\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Chez majelan X, nous utilisons une architecture s\\xe9curis\\xe9e et des partenaires europ\\xe9ens pour prot\\xe9ger vos donn\\xe9es et vos contenus. Notre politique conforme au RGPD inclut consentement, minimisation des donn\\xe9es et transparence. Toutes les communications sont chiffr\\xe9es et des m\\xe9canismes d'authentification robustes garantissent un acc\\xe8s s\\xe9curis\\xe9.\"})}),layoutId:\"KdDHebSg4\",style:{width:\"100%\"},variant:\"STmhLfnNO\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{y:(componentViewport?.y||0)+0+7220.900000000001+0+0+80+0+234.2+0+342},gzMicRvtv:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 1px) - 48px)`,y:(componentViewport?.y||0)+0+8177.499999999999+0+0+80+0+234.2+0+342}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:171,width:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1000px) - 100px, 1px) - 48px)`,y:(componentViewport?.y||0)+0+6255.400000000001+0+0+80+0+234.2+0+342,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6oribg-container\",nodeId:\"L0ACZgSSE\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(AccordionStyle1,{eEvLkW4gn:getLocalizedValue(\"v59\",activeLocale)??\"Quelle est la dur\\xe9e moyenne de mise en place de votre solution audio pour une entreprise ?\",height:\"100%\",id:\"L0ACZgSSE\",K69WR0DKh:getLocalizedValue(\"v60\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"La dur\\xe9e de mise en place d\\xe9pend de la complexit\\xe9 de vos besoins et du volume de contenus \\xe0 cr\\xe9er. En g\\xe9n\\xe9ral, la configuration initiale et la formation peuvent \\xeatre compl\\xe9t\\xe9es entre quelques jours et quelques semaines.\"})}),layoutId:\"L0ACZgSSE\",style:{width:\"100%\"},variant:\"STmhLfnNO\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{y:(componentViewport?.y||0)+0+7220.900000000001+0+0+80+0+234.2+0+513},gzMicRvtv:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 1px) - 48px)`,y:(componentViewport?.y||0)+0+8177.499999999999+0+0+80+0+234.2+0+513}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:171,width:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1000px) - 100px, 1px) - 48px)`,y:(componentViewport?.y||0)+0+6255.400000000001+0+0+80+0+234.2+0+513,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1edyxwi-container\",nodeId:\"tJJ7tHqIC\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(AccordionStyle1,{eEvLkW4gn:getLocalizedValue(\"v61\",activeLocale)??\"Comment puis-je mesurer l'impact de mes contenus audio sur mon audience ?\",height:\"100%\",id:\"tJJ7tHqIC\",K69WR0DKh:getLocalizedValue(\"v62\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Notre Back Office inclut des analyses d\\xe9taill\\xe9es qui vous permettent de suivre les performances de vos contenus audio en temps r\\xe9el (nombre d'\\xe9coutes, la dur\\xe9e d'\\xe9coute, et l'engagement des utilisateurs\u2026.) et comprendre leur impact.\"})}),layoutId:\"tJJ7tHqIC\",style:{width:\"100%\"},variant:\"STmhLfnNO\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{y:(componentViewport?.y||0)+0+7220.900000000001+0+0+80+0+234.2+0+684},gzMicRvtv:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 1px) - 48px)`,y:(componentViewport?.y||0)+0+8177.499999999999+0+0+80+0+234.2+0+684}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:171,width:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1000px) - 100px, 1px) - 48px)`,y:(componentViewport?.y||0)+0+6255.400000000001+0+0+80+0+234.2+0+684,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jur4qz-container\",nodeId:\"XUJJXXz3f\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(AccordionStyle1,{eEvLkW4gn:getLocalizedValue(\"v63\",activeLocale)??\"Quelles sont les diff\\xe9rentes offres d'abonnement ?\",height:\"100%\",id:\"XUJJXXz3f\",K69WR0DKh:getLocalizedValue(\"v64\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Nous proposons des licences mensuelles bas\\xe9es sur le nombre d'utilisateurs, la volum\\xe9trie de contenus audio \\xe0 produire et l'acc\\xe8s aux diff\\xe9rentes fonctionalit\\xe9s d'IA d\\xe9sir\\xe9es. \",/*#__PURE__*/_jsx(\"br\",{}),\"N'h\\xe9sitez pas \\xe0 nous contacter pour en savoir plus !\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),layoutId:\"XUJJXXz3f\",style:{width:\"100%\"},variant:\"STmhLfnNO\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hf21ub\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o8hpwc\",\"data-framer-name\":\"Heading Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e2pe34\",\"data-framer-name\":\"Avatar group\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7220.900000000001+0+1249.2+30+0+0+0+8),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EKJA1HfrRm1PCsQONQe4f7KRNY.png\"}},gzMicRvtv:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8177.499999999999+0+1249.2+30+0+0+0+8),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EKJA1HfrRm1PCsQONQe4f7KRNY.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6255.400000000001+0+1249.2+30+0+0+0+8),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EKJA1HfrRm1PCsQONQe4f7KRNY.png\"},className:\"framer-14t1ebk\",\"data-border\":true,\"data-framer-name\":\"Avatar\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-wm7qf6\",\"data-border\":true,\"data-framer-name\":\"Contrast border\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7220.900000000001+0+1249.2+30+0+0+0+8),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qSfUtWJAI2cfHiaktESkO0DsatM.png\"}},gzMicRvtv:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8177.499999999999+0+1249.2+30+0+0+0+8),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qSfUtWJAI2cfHiaktESkO0DsatM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6255.400000000001+0+1249.2+30+0+0+0+8),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qSfUtWJAI2cfHiaktESkO0DsatM.png\"},className:\"framer-2m94mm\",\"data-border\":true,\"data-framer-name\":\"Avatar\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-h2llf7\",\"data-border\":true,\"data-framer-name\":\"Contrast border\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7220.900000000001+0+1249.2+30+0+0+0+0),pixelHeight:192,pixelWidth:192,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/98tPWZqm4nux1JOkA96QE6VIwo.png\"}},gzMicRvtv:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8177.499999999999+0+1249.2+30+0+0+0+0),pixelHeight:192,pixelWidth:192,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/98tPWZqm4nux1JOkA96QE6VIwo.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6255.400000000001+0+1249.2+30+0+0+0+0),pixelHeight:192,pixelWidth:192,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/98tPWZqm4nux1JOkA96QE6VIwo.png\"},className:\"framer-1kmooq0\",\"data-border\":true,\"data-framer-name\":\"Avatar\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-tcof72\",\"data-border\":true,\"data-framer-name\":\"Contrast border\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v65\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-108a0d4\",\"data-styles-preset\":\"r_EkJQedq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61a3ab36-64f3-4a4e-9282-13c42d3f3834, rgb(10, 10, 10))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Il vous reste une question ?\"})})}),className:\"framer-ev6pzu\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-52onmo\",\"data-framer-name\":\"Button Row\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzMicRvtv:{href:\"tel:0189623360\"}},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"RonFNgdTg\"},motionChild:true,nodeId:\"flTQEtudH\",openInNewTab:false,scopeId:\"TuRskxh5v\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-u3robg framer-16k2f4\",\"data-framer-name\":\"Button / Primary\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-p5ee5s\",\"data-framer-name\":\"Label Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v66\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-luqx8h\",\"data-styles-preset\":\"ycNLZdWxd\",style:{\"--framer-text-color\":\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10))\"},children:\"Contactez-nous \uD83D\uDCDE\"})}),className:\"framer-1f2op1h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})})]})]}),/*#__PURE__*/_jsx(\"footer\",{className:\"framer-ib9jza\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{y:(componentViewport?.y||0)+0+8789.300000000001+0+0},gzMicRvtv:{y:(componentViewport?.y||0)+0+9745.9+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:448,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7823.800000000001+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-23vpfy-container\",nodeId:\"KES_AMhxC\",scopeId:\"TuRskxh5v\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cBFEJUO7Z:{variant:\"r4tsc9DHu\"},gzMicRvtv:{variant:\"rO96_jDsC\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"KES_AMhxC\",layoutId:\"KES_AMhxC\",style:{width:\"100%\"},variant:\"KielSjf5y\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lThQ4.framer-16k2f4, .framer-lThQ4 .framer-16k2f4 { display: block; }\",\".framer-lThQ4.framer-1oq9nmo { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-lThQ4 .framer-1h1fnf-container { flex: none; height: 80px; position: sticky; top: 0px; width: 100%; z-index: 2; }\",\".framer-lThQ4 .framer-azm4qb { align-content: center; align-items: center; background-color: var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 645px; justify-content: flex-start; overflow: hidden; padding: 80px 80px 120px 80px; position: relative; width: 100%; z-index: 0; }\",\".framer-lThQ4 .framer-18pmzji { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 57px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-lThQ4 .framer-1dallil { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-lThQ4 .framer-d8fxu0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 840px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-1dy6jls { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-1mymqlo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-uzftbz { --framer-paragraph-spacing: 60px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-lThQ4 .framer-qu6zji { aspect-ratio: 4.647887323943662 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: hidden; position: relative; width: 279px; }\",\".framer-lThQ4 .framer-qaor0k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-118qpgb { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-lThQ4 .framer-18lepch { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-1xozhcd-container, .framer-lThQ4 .framer-o2yhs6-container, .framer-lThQ4 .framer-5rg0yq-container, .framer-lThQ4 .framer-oyggnj-container, .framer-lThQ4 .framer-1764pim-container, .framer-lThQ4 .framer-hjxbjn-container, .framer-lThQ4 .framer-1jdrn05-container, .framer-lThQ4 .framer-ibfasb-container, .framer-lThQ4 .framer-1n5qtdf-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-lThQ4 .framer-s6mymj { --framer-paragraph-spacing: 60px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-lThQ4 .framer-4eann9-container { flex: none; height: auto; position: relative; width: auto; z-index: 3; }\",\".framer-lThQ4 .framer-1popli8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 503px; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 48%; }\",\".framer-lThQ4 .framer-noi60o { border-top-left-radius: 12px; bottom: 18px; flex: none; left: 0px; position: absolute; right: -169px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-lThQ4 .framer-casg0k { aspect-ratio: 0.49538055433348 / 1; bottom: 1px; flex: none; height: var(--framer-aspect-ratio-supported, 349px); overflow: visible; position: absolute; right: 101px; width: 173px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-lThQ4 .framer-yx1x8m { -webkit-filter: blur(58px); bottom: -180px; filter: blur(58px); flex: none; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 1104px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-lThQ4 .framer-19sy64h, .framer-lThQ4 .framer-16e7r6b, .framer-lThQ4 .framer-1ks6iqm { flex: none; height: 862px; position: absolute; right: -3px; top: -15px; width: 795px; }\",\".framer-lThQ4 .framer-1fa4b1s { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-ii6n5w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1280px; padding: 16px 80px 50px 80px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-1p6ivhq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1200px; padding: 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-6xa0ty { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-1afpdhq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 768px; padding: 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-18n7dbp, .framer-lThQ4 .framer-1uyr65f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-mt8srb, .framer-lThQ4 .framer-x4iach, .framer-lThQ4 .framer-1wtegxd, .framer-lThQ4 .framer-eazwor, .framer-lThQ4 .framer-5sqmw3, .framer-lThQ4 .framer-1xbr122, .framer-lThQ4 .framer-dnikib, .framer-lThQ4 .framer-13ncpih, .framer-lThQ4 .framer-1x2r8zj, .framer-lThQ4 .framer-1cbz6ia, .framer-lThQ4 .framer-12837o6, .framer-lThQ4 .framer-12a3qfe, .framer-lThQ4 .framer-1wxqrq1, .framer-lThQ4 .framer-s6kdpm, .framer-lThQ4 .framer-1edzac, .framer-lThQ4 .framer-151v5vv, .framer-lThQ4 .framer-kw886d, .framer-lThQ4 .framer-v6ld6s, .framer-lThQ4 .framer-1gk9adl, .framer-lThQ4 .framer-t8kri0, .framer-lThQ4 .framer-1c7hdsv, .framer-lThQ4 .framer-1wd8p20, .framer-lThQ4 .framer-cbpcqy, .framer-lThQ4 .framer-9tdsy2, .framer-lThQ4 .framer-1q1w5ym, .framer-lThQ4 .framer-1ekflpe, .framer-lThQ4 .framer-1i2hvd1, .framer-lThQ4 .framer-1b8i4nr, .framer-lThQ4 .framer-13h4uzs, .framer-lThQ4 .framer-116c6p8, .framer-lThQ4 .framer-18dxi2g, .framer-lThQ4 .framer-175w24m, .framer-lThQ4 .framer-1jtc7wg, .framer-lThQ4 .framer-rp5slq, .framer-lThQ4 .framer-1i060rt, .framer-lThQ4 .framer-1tz2288, .framer-lThQ4 .framer-ev6pzu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-lThQ4 .framer-18oepw6 { display: grid; flex: none; gap: 40px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-19vc2nh, .framer-lThQ4 .framer-1pjuu0n, .framer-lThQ4 .framer-xpfj0v { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-1by276j-container, .framer-lThQ4 .framer-rfd5rv-container, .framer-lThQ4 .framer-1fhdmlg-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 47px); position: relative; width: 44px; }\",\".framer-lThQ4 .framer-1vafo3i, .framer-lThQ4 .framer-7gf63m, .framer-lThQ4 .framer-ngtb2u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-1uh7ae { align-content: center; align-items: center; background-color: var(--token-92fddb23-b2ef-429e-b64a-b8220fed5a33, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-1y3ki1o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-1vwaols { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-1idcrx6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 632px; padding: 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-1p9zhxg, .framer-lThQ4 .framer-1knrmv0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-f0vvmn-container { flex: none; height: 410px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-wfsdci, .framer-lThQ4 .framer-1jovrcv, .framer-lThQ4 .framer-eqnmy6, .framer-lThQ4 .framer-1rvvr0x, .framer-lThQ4 .framer-1kg2kif, .framer-lThQ4 .framer-yqwho0 { align-content: center; align-items: center; background-color: #f4f3fb; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 332px; justify-content: center; padding: 32px 0px 32px 0px; position: relative; width: 316px; }\",\".framer-lThQ4 .framer-8xlcsu-container, .framer-lThQ4 .framer-63icdi-container, .framer-lThQ4 .framer-1prodhf-container, .framer-lThQ4 .framer-kmj5dj-container, .framer-lThQ4 .framer-1cmihep-container, .framer-lThQ4 .framer-mpuck9-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); position: relative; width: 44px; }\",\".framer-lThQ4 .framer-c5gfg6, .framer-lThQ4 .framer-y7nd7e, .framer-lThQ4 .framer-17ehhrr, .framer-lThQ4 .framer-1mnxm0l, .framer-lThQ4 .framer-1akqsji, .framer-lThQ4 .framer-1oznwah { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 250px; z-index: 1; }\",\".framer-lThQ4 .framer-4vn4t, .framer-lThQ4 .framer-122t8uy { align-content: center; align-items: center; background-color: var(--token-ee7ff27e-bc2d-40a1-8a1f-b3d025af745d, #1e1d2a); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-od5lk8, .framer-lThQ4 .framer-ecdj1w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1280px; padding: 80px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-t17mc3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50%; }\",\".framer-lThQ4 .framer-6jtjib { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 521px; word-break: break-word; word-wrap: break-word; }\",\".framer-lThQ4 .framer-5h8wez, .framer-lThQ4 .framer-1p4ft11 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1200px; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-lThQ4 .framer-6oygpw, .framer-lThQ4 .framer-1joe88u { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-lThQ4 .framer-163ltbs, .framer-lThQ4 .framer-o3ip3c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-e53zwj, .framer-lThQ4 .framer-j76xy8, .framer-lThQ4 .framer-mkoefg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-16cg1wm, .framer-lThQ4 .framer-mgslvr, .framer-lThQ4 .framer-1sclkm7, .framer-lThQ4 .framer-vzt2bv, .framer-lThQ4 .framer-127nmdu, .framer-lThQ4 .framer-344n2m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-r7lsn5, .framer-lThQ4 .framer-mqmbtz, .framer-lThQ4 .framer-crgwc8, .framer-lThQ4 .framer-glluja, .framer-lThQ4 .framer-4q6u50, .framer-lThQ4 .framer-inomzy { align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 4px; position: relative; width: min-content; }\",\".framer-lThQ4 .framer-fapyf4-container, .framer-lThQ4 .framer-9mm9px-container, .framer-lThQ4 .framer-1sqdmde-container, .framer-lThQ4 .framer-14hlsy1-container, .framer-lThQ4 .framer-1twdy0s-container, .framer-lThQ4 .framer-18cxxwc-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); position: relative; width: 16px; }\",\".framer-lThQ4 .framer-l5leyk, .framer-lThQ4 .framer-s34wtj, .framer-lThQ4 .framer-1mayg20, .framer-lThQ4 .framer-7kaj4s, .framer-lThQ4 .framer-17tm48e, .framer-lThQ4 .framer-17ca5p8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-lThQ4 .framer-8d9b7l, .framer-lThQ4 .framer-19jd6fn { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: 1 0 0px; height: 480px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-lThQ4 .framer-m6id8k { aspect-ratio: 0.49538055433348 / 1; bottom: -78px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625); flex: none; height: var(--framer-aspect-ratio-supported, 504px); left: 50%; overflow: visible; position: absolute; transform: translateX(-50%); width: 250px; }\",\".framer-lThQ4 .framer-1bhpsyx { -webkit-filter: blur(58px); bottom: -124px; filter: blur(58px); flex: none; height: 900px; overflow: hidden; position: absolute; right: -225px; width: 1200px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-lThQ4 .framer-11ib9pd { flex: none; height: 315px; overflow: visible; position: absolute; right: -29px; top: calc(50.00000000000002% - 315px / 2); width: 480px; }\",\".framer-lThQ4 .framer-1yad09o { align-content: center; align-items: center; background-color: var(--token-ba69a90e-8dae-4e7a-a86f-9592619cff63, #e5e5e5); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1), 0px 2px 4px 0px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-lThQ4 .framer-1f1bdw2, .framer-lThQ4 .framer-p5ee5s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 4px 0px 4px; position: relative; width: min-content; }\",\".framer-lThQ4 .framer-s8y4qx, .framer-lThQ4 .framer-1f2op1h { -webkit-user-select: none; flex: none; height: auto; overflow: visible; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-lThQ4 .framer-1j8ipiv { -webkit-filter: blur(58px); bottom: -156px; filter: blur(58px); flex: none; left: -639px; overflow: hidden; position: absolute; top: -103px; width: 1200px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-lThQ4 .framer-c6ixz8 { align-content: center; align-items: center; background-color: var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 77px 80px 30px 80px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-1ogh48d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 550px; padding: 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-m26kis { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-1s2eyxu-container { flex: none; height: 540px; position: relative; width: 1040px; }\",\".framer-lThQ4 .framer-fcem5m-container, .framer-lThQ4 .framer-yb7yw6-container, .framer-lThQ4 .framer-1huyl2o-container, .framer-lThQ4 .framer-6oribg-container, .framer-lThQ4 .framer-1edyxwi-container, .framer-lThQ4 .framer-jur4qz-container, .framer-lThQ4 .framer-23vpfy-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-qr14bq-container { flex: none; height: 1050px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-6ohuq8-container { flex: none; height: 700px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-4f4d4c { align-content: center; align-items: center; background: linear-gradient(180deg, #ffffff 0%, rgba(245, 243, 251, 1) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-92bu5u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1000px; padding: 80px 50px 80px 50px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-4l1gkz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-lThQ4 .framer-1ud8alo { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-lThQ4 .framer-108exs7 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-1hf21ub { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.8); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0.6021873017743928px 3.010936508871964px -1px rgba(0, 0, 0, 0.03), 0px 2.288533303243457px 11.442666516217285px -2px rgba(0, 0, 0, 0.02771), 0px 10px 50px -3px rgba(0, 0, 0, 0.02); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 600px; padding: 30px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-o8hpwc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-e2pe34 { flex: none; height: 56px; overflow: visible; position: relative; width: 120px; }\",\".framer-lThQ4 .framer-14t1ebk { --border-bottom-width: 1.5px; --border-color: #ffffff; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; flex: none; height: 48px; left: 0px; overflow: visible; position: absolute; top: 8px; width: 48px; }\",\".framer-lThQ4 .framer-wm7qf6, .framer-lThQ4 .framer-h2llf7 { --border-bottom-width: 0.75px; --border-color: rgba(255, 255, 255, 0.12); --border-left-width: 0.75px; --border-right-width: 0.75px; --border-style: solid; --border-top-width: 0.75px; aspect-ratio: 1 / 1; border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 48px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-lThQ4 .framer-2m94mm { --border-bottom-width: 1.5px; --border-color: #ffffff; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; flex: none; height: 48px; left: 72px; overflow: visible; position: absolute; top: 8px; width: 48px; }\",\".framer-lThQ4 .framer-1kmooq0 { --border-bottom-width: 1.5px; --border-color: #ffffff; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; flex: none; height: 56px; left: 32px; overflow: visible; position: absolute; top: 0px; width: 56px; }\",\".framer-lThQ4 .framer-tcof72 { --border-bottom-width: 0.75px; --border-color: rgba(255, 255, 255, 0.12); --border-left-width: 0.75px; --border-right-width: 0.75px; --border-style: solid; --border-top-width: 0.75px; aspect-ratio: 1 / 1; border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 56px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-lThQ4 .framer-52onmo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-lThQ4 .framer-u3robg { align-content: center; align-items: center; background-color: var(--token-f5bbcd0c-3b82-4dbd-94cb-c69bafd7aca8, #5a42ff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1), 0px 2px 4px 0px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-lThQ4 .framer-ib9jza { align-content: center; align-items: center; background-color: var(--token-80553515-7ab0-44ac-b981-96d7680674fd, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-lThQ4.framer-1oq9nmo, .framer-lThQ4 .framer-azm4qb, .framer-lThQ4 .framer-18pmzji, .framer-lThQ4 .framer-1dallil, .framer-lThQ4 .framer-d8fxu0, .framer-lThQ4 .framer-1dy6jls, .framer-lThQ4 .framer-1mymqlo, .framer-lThQ4 .framer-qaor0k, .framer-lThQ4 .framer-18lepch, .framer-lThQ4 .framer-1popli8, .framer-lThQ4 .framer-1fa4b1s, .framer-lThQ4 .framer-ii6n5w, .framer-lThQ4 .framer-1p6ivhq, .framer-lThQ4 .framer-6xa0ty, .framer-lThQ4 .framer-1afpdhq, .framer-lThQ4 .framer-18n7dbp, .framer-lThQ4 .framer-19vc2nh, .framer-lThQ4 .framer-1vafo3i, .framer-lThQ4 .framer-1pjuu0n, .framer-lThQ4 .framer-7gf63m, .framer-lThQ4 .framer-xpfj0v, .framer-lThQ4 .framer-ngtb2u, .framer-lThQ4 .framer-1uh7ae, .framer-lThQ4 .framer-1y3ki1o, .framer-lThQ4 .framer-1vwaols, .framer-lThQ4 .framer-1idcrx6, .framer-lThQ4 .framer-1p9zhxg, .framer-lThQ4 .framer-wfsdci, .framer-lThQ4 .framer-c5gfg6, .framer-lThQ4 .framer-1jovrcv, .framer-lThQ4 .framer-y7nd7e, .framer-lThQ4 .framer-eqnmy6, .framer-lThQ4 .framer-17ehhrr, .framer-lThQ4 .framer-1rvvr0x, .framer-lThQ4 .framer-1mnxm0l, .framer-lThQ4 .framer-1kg2kif, .framer-lThQ4 .framer-1akqsji, .framer-lThQ4 .framer-yqwho0, .framer-lThQ4 .framer-1oznwah, .framer-lThQ4 .framer-4vn4t, .framer-lThQ4 .framer-od5lk8, .framer-lThQ4 .framer-t17mc3, .framer-lThQ4 .framer-5h8wez, .framer-lThQ4 .framer-6oygpw, .framer-lThQ4 .framer-163ltbs, .framer-lThQ4 .framer-e53zwj, .framer-lThQ4 .framer-j76xy8, .framer-lThQ4 .framer-16cg1wm, .framer-lThQ4 .framer-r7lsn5, .framer-lThQ4 .framer-l5leyk, .framer-lThQ4 .framer-mgslvr, .framer-lThQ4 .framer-mqmbtz, .framer-lThQ4 .framer-s34wtj, .framer-lThQ4 .framer-1sclkm7, .framer-lThQ4 .framer-crgwc8, .framer-lThQ4 .framer-1mayg20, .framer-lThQ4 .framer-ecdj1w, .framer-lThQ4 .framer-1p4ft11, .framer-lThQ4 .framer-1joe88u, .framer-lThQ4 .framer-o3ip3c, .framer-lThQ4 .framer-mkoefg, .framer-lThQ4 .framer-vzt2bv, .framer-lThQ4 .framer-glluja, .framer-lThQ4 .framer-7kaj4s, .framer-lThQ4 .framer-127nmdu, .framer-lThQ4 .framer-4q6u50, .framer-lThQ4 .framer-17tm48e, .framer-lThQ4 .framer-344n2m, .framer-lThQ4 .framer-inomzy, .framer-lThQ4 .framer-17ca5p8, .framer-lThQ4 .framer-1yad09o, .framer-lThQ4 .framer-1f1bdw2, .framer-lThQ4 .framer-c6ixz8, .framer-lThQ4 .framer-1ogh48d, .framer-lThQ4 .framer-1uyr65f, .framer-lThQ4 .framer-m26kis, .framer-lThQ4 .framer-122t8uy, .framer-lThQ4 .framer-4f4d4c, .framer-lThQ4 .framer-92bu5u, .framer-lThQ4 .framer-4l1gkz, .framer-lThQ4 .framer-1knrmv0, .framer-lThQ4 .framer-108exs7, .framer-lThQ4 .framer-1hf21ub, .framer-lThQ4 .framer-o8hpwc, .framer-lThQ4 .framer-52onmo, .framer-lThQ4 .framer-u3robg, .framer-lThQ4 .framer-p5ee5s, .framer-lThQ4 .framer-ib9jza { gap: 0px; } .framer-lThQ4.framer-1oq9nmo > *, .framer-lThQ4 .framer-1popli8 > *, .framer-lThQ4 .framer-1fa4b1s > *, .framer-lThQ4 .framer-ii6n5w > *, .framer-lThQ4 .framer-1uh7ae > *, .framer-lThQ4 .framer-1y3ki1o > *, .framer-lThQ4 .framer-4vn4t > *, .framer-lThQ4 .framer-122t8uy > *, .framer-lThQ4 .framer-4f4d4c > *, .framer-lThQ4 .framer-108exs7 > *, .framer-lThQ4 .framer-ib9jza > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-lThQ4.framer-1oq9nmo > :first-child, .framer-lThQ4 .framer-azm4qb > :first-child, .framer-lThQ4 .framer-1dallil > :first-child, .framer-lThQ4 .framer-d8fxu0 > :first-child, .framer-lThQ4 .framer-1dy6jls > :first-child, .framer-lThQ4 .framer-1mymqlo > :first-child, .framer-lThQ4 .framer-1popli8 > :first-child, .framer-lThQ4 .framer-1fa4b1s > :first-child, .framer-lThQ4 .framer-ii6n5w > :first-child, .framer-lThQ4 .framer-1p6ivhq > :first-child, .framer-lThQ4 .framer-6xa0ty > :first-child, .framer-lThQ4 .framer-1afpdhq > :first-child, .framer-lThQ4 .framer-18n7dbp > :first-child, .framer-lThQ4 .framer-19vc2nh > :first-child, .framer-lThQ4 .framer-1vafo3i > :first-child, .framer-lThQ4 .framer-1pjuu0n > :first-child, .framer-lThQ4 .framer-7gf63m > :first-child, .framer-lThQ4 .framer-xpfj0v > :first-child, .framer-lThQ4 .framer-ngtb2u > :first-child, .framer-lThQ4 .framer-1uh7ae > :first-child, .framer-lThQ4 .framer-1y3ki1o > :first-child, .framer-lThQ4 .framer-1vwaols > :first-child, .framer-lThQ4 .framer-1idcrx6 > :first-child, .framer-lThQ4 .framer-1p9zhxg > :first-child, .framer-lThQ4 .framer-wfsdci > :first-child, .framer-lThQ4 .framer-c5gfg6 > :first-child, .framer-lThQ4 .framer-1jovrcv > :first-child, .framer-lThQ4 .framer-y7nd7e > :first-child, .framer-lThQ4 .framer-eqnmy6 > :first-child, .framer-lThQ4 .framer-17ehhrr > :first-child, .framer-lThQ4 .framer-1rvvr0x > :first-child, .framer-lThQ4 .framer-1mnxm0l > :first-child, .framer-lThQ4 .framer-1kg2kif > :first-child, .framer-lThQ4 .framer-1akqsji > :first-child, .framer-lThQ4 .framer-yqwho0 > :first-child, .framer-lThQ4 .framer-1oznwah > :first-child, .framer-lThQ4 .framer-4vn4t > :first-child, .framer-lThQ4 .framer-od5lk8 > :first-child, .framer-lThQ4 .framer-6oygpw > :first-child, .framer-lThQ4 .framer-163ltbs > :first-child, .framer-lThQ4 .framer-e53zwj > :first-child, .framer-lThQ4 .framer-j76xy8 > :first-child, .framer-lThQ4 .framer-l5leyk > :first-child, .framer-lThQ4 .framer-s34wtj > :first-child, .framer-lThQ4 .framer-1mayg20 > :first-child, .framer-lThQ4 .framer-ecdj1w > :first-child, .framer-lThQ4 .framer-1joe88u > :first-child, .framer-lThQ4 .framer-o3ip3c > :first-child, .framer-lThQ4 .framer-mkoefg > :first-child, .framer-lThQ4 .framer-7kaj4s > :first-child, .framer-lThQ4 .framer-17tm48e > :first-child, .framer-lThQ4 .framer-17ca5p8 > :first-child, .framer-lThQ4 .framer-c6ixz8 > :first-child, .framer-lThQ4 .framer-1ogh48d > :first-child, .framer-lThQ4 .framer-1uyr65f > :first-child, .framer-lThQ4 .framer-m26kis > :first-child, .framer-lThQ4 .framer-122t8uy > :first-child, .framer-lThQ4 .framer-4f4d4c > :first-child, .framer-lThQ4 .framer-4l1gkz > :first-child, .framer-lThQ4 .framer-1knrmv0 > :first-child, .framer-lThQ4 .framer-108exs7 > :first-child, .framer-lThQ4 .framer-1hf21ub > :first-child, .framer-lThQ4 .framer-o8hpwc > :first-child, .framer-lThQ4 .framer-ib9jza > :first-child { margin-top: 0px; } .framer-lThQ4.framer-1oq9nmo > :last-child, .framer-lThQ4 .framer-azm4qb > :last-child, .framer-lThQ4 .framer-1dallil > :last-child, .framer-lThQ4 .framer-d8fxu0 > :last-child, .framer-lThQ4 .framer-1dy6jls > :last-child, .framer-lThQ4 .framer-1mymqlo > :last-child, .framer-lThQ4 .framer-1popli8 > :last-child, .framer-lThQ4 .framer-1fa4b1s > :last-child, .framer-lThQ4 .framer-ii6n5w > :last-child, .framer-lThQ4 .framer-1p6ivhq > :last-child, .framer-lThQ4 .framer-6xa0ty > :last-child, .framer-lThQ4 .framer-1afpdhq > :last-child, .framer-lThQ4 .framer-18n7dbp > :last-child, .framer-lThQ4 .framer-19vc2nh > :last-child, .framer-lThQ4 .framer-1vafo3i > :last-child, .framer-lThQ4 .framer-1pjuu0n > :last-child, .framer-lThQ4 .framer-7gf63m > :last-child, .framer-lThQ4 .framer-xpfj0v > :last-child, .framer-lThQ4 .framer-ngtb2u > :last-child, .framer-lThQ4 .framer-1uh7ae > :last-child, .framer-lThQ4 .framer-1y3ki1o > :last-child, .framer-lThQ4 .framer-1vwaols > :last-child, .framer-lThQ4 .framer-1idcrx6 > :last-child, .framer-lThQ4 .framer-1p9zhxg > :last-child, .framer-lThQ4 .framer-wfsdci > :last-child, .framer-lThQ4 .framer-c5gfg6 > :last-child, .framer-lThQ4 .framer-1jovrcv > :last-child, .framer-lThQ4 .framer-y7nd7e > :last-child, .framer-lThQ4 .framer-eqnmy6 > :last-child, .framer-lThQ4 .framer-17ehhrr > :last-child, .framer-lThQ4 .framer-1rvvr0x > :last-child, .framer-lThQ4 .framer-1mnxm0l > :last-child, .framer-lThQ4 .framer-1kg2kif > :last-child, .framer-lThQ4 .framer-1akqsji > :last-child, .framer-lThQ4 .framer-yqwho0 > :last-child, .framer-lThQ4 .framer-1oznwah > :last-child, .framer-lThQ4 .framer-4vn4t > :last-child, .framer-lThQ4 .framer-od5lk8 > :last-child, .framer-lThQ4 .framer-6oygpw > :last-child, .framer-lThQ4 .framer-163ltbs > :last-child, .framer-lThQ4 .framer-e53zwj > :last-child, .framer-lThQ4 .framer-j76xy8 > :last-child, .framer-lThQ4 .framer-l5leyk > :last-child, .framer-lThQ4 .framer-s34wtj > :last-child, .framer-lThQ4 .framer-1mayg20 > :last-child, .framer-lThQ4 .framer-ecdj1w > :last-child, .framer-lThQ4 .framer-1joe88u > :last-child, .framer-lThQ4 .framer-o3ip3c > :last-child, .framer-lThQ4 .framer-mkoefg > :last-child, .framer-lThQ4 .framer-7kaj4s > :last-child, .framer-lThQ4 .framer-17tm48e > :last-child, .framer-lThQ4 .framer-17ca5p8 > :last-child, .framer-lThQ4 .framer-c6ixz8 > :last-child, .framer-lThQ4 .framer-1ogh48d > :last-child, .framer-lThQ4 .framer-1uyr65f > :last-child, .framer-lThQ4 .framer-m26kis > :last-child, .framer-lThQ4 .framer-122t8uy > :last-child, .framer-lThQ4 .framer-4f4d4c > :last-child, .framer-lThQ4 .framer-4l1gkz > :last-child, .framer-lThQ4 .framer-1knrmv0 > :last-child, .framer-lThQ4 .framer-108exs7 > :last-child, .framer-lThQ4 .framer-1hf21ub > :last-child, .framer-lThQ4 .framer-o8hpwc > :last-child, .framer-lThQ4 .framer-ib9jza > :last-child { margin-bottom: 0px; } .framer-lThQ4 .framer-azm4qb > *, .framer-lThQ4 .framer-4l1gkz > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-lThQ4 .framer-18pmzji > * { margin: 0px; margin-left: calc(57px / 2); margin-right: calc(57px / 2); } .framer-lThQ4 .framer-18pmzji > :first-child, .framer-lThQ4 .framer-qaor0k > :first-child, .framer-lThQ4 .framer-18lepch > :first-child, .framer-lThQ4 .framer-t17mc3 > :first-child, .framer-lThQ4 .framer-5h8wez > :first-child, .framer-lThQ4 .framer-16cg1wm > :first-child, .framer-lThQ4 .framer-r7lsn5 > :first-child, .framer-lThQ4 .framer-mgslvr > :first-child, .framer-lThQ4 .framer-mqmbtz > :first-child, .framer-lThQ4 .framer-1sclkm7 > :first-child, .framer-lThQ4 .framer-crgwc8 > :first-child, .framer-lThQ4 .framer-1p4ft11 > :first-child, .framer-lThQ4 .framer-vzt2bv > :first-child, .framer-lThQ4 .framer-glluja > :first-child, .framer-lThQ4 .framer-127nmdu > :first-child, .framer-lThQ4 .framer-4q6u50 > :first-child, .framer-lThQ4 .framer-344n2m > :first-child, .framer-lThQ4 .framer-inomzy > :first-child, .framer-lThQ4 .framer-1yad09o > :first-child, .framer-lThQ4 .framer-1f1bdw2 > :first-child, .framer-lThQ4 .framer-92bu5u > :first-child, .framer-lThQ4 .framer-52onmo > :first-child, .framer-lThQ4 .framer-u3robg > :first-child, .framer-lThQ4 .framer-p5ee5s > :first-child { margin-left: 0px; } .framer-lThQ4 .framer-18pmzji > :last-child, .framer-lThQ4 .framer-qaor0k > :last-child, .framer-lThQ4 .framer-18lepch > :last-child, .framer-lThQ4 .framer-t17mc3 > :last-child, .framer-lThQ4 .framer-5h8wez > :last-child, .framer-lThQ4 .framer-16cg1wm > :last-child, .framer-lThQ4 .framer-r7lsn5 > :last-child, .framer-lThQ4 .framer-mgslvr > :last-child, .framer-lThQ4 .framer-mqmbtz > :last-child, .framer-lThQ4 .framer-1sclkm7 > :last-child, .framer-lThQ4 .framer-crgwc8 > :last-child, .framer-lThQ4 .framer-1p4ft11 > :last-child, .framer-lThQ4 .framer-vzt2bv > :last-child, .framer-lThQ4 .framer-glluja > :last-child, .framer-lThQ4 .framer-127nmdu > :last-child, .framer-lThQ4 .framer-4q6u50 > :last-child, .framer-lThQ4 .framer-344n2m > :last-child, .framer-lThQ4 .framer-inomzy > :last-child, .framer-lThQ4 .framer-1yad09o > :last-child, .framer-lThQ4 .framer-1f1bdw2 > :last-child, .framer-lThQ4 .framer-92bu5u > :last-child, .framer-lThQ4 .framer-52onmo > :last-child, .framer-lThQ4 .framer-u3robg > :last-child, .framer-lThQ4 .framer-p5ee5s > :last-child { margin-right: 0px; } .framer-lThQ4 .framer-1dallil > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-lThQ4 .framer-d8fxu0 > *, .framer-lThQ4 .framer-6xa0ty > *, .framer-lThQ4 .framer-18n7dbp > *, .framer-lThQ4 .framer-e53zwj > *, .framer-lThQ4 .framer-j76xy8 > *, .framer-lThQ4 .framer-mkoefg > *, .framer-lThQ4 .framer-1uyr65f > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-lThQ4 .framer-1dy6jls > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-lThQ4 .framer-1mymqlo > *, .framer-lThQ4 .framer-m26kis > *, .framer-lThQ4 .framer-o8hpwc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-lThQ4 .framer-qaor0k > *, .framer-lThQ4 .framer-t17mc3 > *, .framer-lThQ4 .framer-r7lsn5 > *, .framer-lThQ4 .framer-mqmbtz > *, .framer-lThQ4 .framer-crgwc8 > *, .framer-lThQ4 .framer-glluja > *, .framer-lThQ4 .framer-4q6u50 > *, .framer-lThQ4 .framer-inomzy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-lThQ4 .framer-18lepch > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-lThQ4 .framer-1p6ivhq > *, .framer-lThQ4 .framer-1idcrx6 > *, .framer-lThQ4 .framer-od5lk8 > *, .framer-lThQ4 .framer-ecdj1w > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-lThQ4 .framer-1afpdhq > *, .framer-lThQ4 .framer-1p9zhxg > *, .framer-lThQ4 .framer-wfsdci > *, .framer-lThQ4 .framer-c5gfg6 > *, .framer-lThQ4 .framer-1jovrcv > *, .framer-lThQ4 .framer-y7nd7e > *, .framer-lThQ4 .framer-eqnmy6 > *, .framer-lThQ4 .framer-17ehhrr > *, .framer-lThQ4 .framer-1rvvr0x > *, .framer-lThQ4 .framer-1mnxm0l > *, .framer-lThQ4 .framer-1kg2kif > *, .framer-lThQ4 .framer-1akqsji > *, .framer-lThQ4 .framer-yqwho0 > *, .framer-lThQ4 .framer-1oznwah > *, .framer-lThQ4 .framer-6oygpw > *, .framer-lThQ4 .framer-1joe88u > *, .framer-lThQ4 .framer-1ogh48d > *, .framer-lThQ4 .framer-1knrmv0 > *, .framer-lThQ4 .framer-1hf21ub > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-lThQ4 .framer-19vc2nh > *, .framer-lThQ4 .framer-1pjuu0n > *, .framer-lThQ4 .framer-xpfj0v > *, .framer-lThQ4 .framer-163ltbs > *, .framer-lThQ4 .framer-o3ip3c > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-lThQ4 .framer-1vafo3i > *, .framer-lThQ4 .framer-7gf63m > *, .framer-lThQ4 .framer-ngtb2u > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-lThQ4 .framer-1vwaols > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-lThQ4 .framer-5h8wez > *, .framer-lThQ4 .framer-1p4ft11 > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-lThQ4 .framer-16cg1wm > *, .framer-lThQ4 .framer-mgslvr > *, .framer-lThQ4 .framer-1sclkm7 > *, .framer-lThQ4 .framer-vzt2bv > *, .framer-lThQ4 .framer-127nmdu > *, .framer-lThQ4 .framer-344n2m > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-lThQ4 .framer-l5leyk > *, .framer-lThQ4 .framer-s34wtj > *, .framer-lThQ4 .framer-1mayg20 > *, .framer-lThQ4 .framer-7kaj4s > *, .framer-lThQ4 .framer-17tm48e > *, .framer-lThQ4 .framer-17ca5p8 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-lThQ4 .framer-1yad09o > *, .framer-lThQ4 .framer-1f1bdw2 > *, .framer-lThQ4 .framer-92bu5u > *, .framer-lThQ4 .framer-u3robg > *, .framer-lThQ4 .framer-p5ee5s > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-lThQ4 .framer-c6ixz8 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-lThQ4 .framer-52onmo > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-lThQ4[data-border=\"true\"]::after, .framer-lThQ4 [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; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-lThQ4.framer-1oq9nmo { width: 810px; } .framer-lThQ4 .framer-azm4qb { height: min-content; padding: 20px 40px 120px 40px; } .framer-lThQ4 .framer-18pmzji { flex-direction: column; gap: 0px; order: 0; } .framer-lThQ4 .framer-1dallil, .framer-lThQ4 .framer-6oygpw, .framer-lThQ4 .framer-8d9b7l { flex: none; width: 100%; } .framer-lThQ4 .framer-1mymqlo { align-content: center; align-items: center; } .framer-lThQ4 .framer-18lepch { bottom: -69px; left: 50%; position: absolute; transform: translateX(-50%); width: min-content; z-index: 1; } .framer-lThQ4 .framer-1popli8 { width: 65%; } .framer-lThQ4 .framer-noi60o { bottom: -51px; height: 464px; left: unset; right: -151px; top: unset; width: 776px; } .framer-lThQ4 .framer-yx1x8m { align-content: center; align-items: center; bottom: 0px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; order: 1; padding: 0px; top: unset; width: min-content; } .framer-lThQ4 .framer-19sy64h { height: 639px; position: relative; right: unset; top: unset; width: 590px; } .framer-lThQ4 .framer-ii6n5w { padding: 35px 40px 50px 40px; } .framer-lThQ4 .framer-t17mc3 { width: 60%; } .framer-lThQ4 .framer-5h8wez, .framer-lThQ4 .framer-1p4ft11 { flex-direction: column; } .framer-lThQ4 .framer-m6id8k { height: var(--framer-aspect-ratio-supported, 505px); } .framer-lThQ4 .framer-19jd6fn { flex: none; order: 1; width: 100%; } .framer-lThQ4 .framer-11ib9pd { height: 371px; left: calc(50.00000000000002% - 565px / 2); right: unset; top: calc(50.00000000000002% - 371px / 2); width: 565px; } .framer-lThQ4 .framer-1joe88u { flex: none; order: 0; width: 100%; } .framer-lThQ4 .framer-1j8ipiv { height: 976px; left: 0px; top: unset; width: 396px; } .framer-lThQ4 .framer-1s2eyxu-container { height: 348px; width: 100%; } .framer-lThQ4 .framer-6ohuq8-container { height: 720px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-lThQ4 .framer-18pmzji, .framer-lThQ4 .framer-yx1x8m, .framer-lThQ4 .framer-5h8wez, .framer-lThQ4 .framer-1p4ft11 { gap: 0px; } .framer-lThQ4 .framer-18pmzji > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-lThQ4 .framer-18pmzji > :first-child, .framer-lThQ4 .framer-5h8wez > :first-child, .framer-lThQ4 .framer-1p4ft11 > :first-child { margin-top: 0px; } .framer-lThQ4 .framer-18pmzji > :last-child, .framer-lThQ4 .framer-5h8wez > :last-child, .framer-lThQ4 .framer-1p4ft11 > :last-child { margin-bottom: 0px; } .framer-lThQ4 .framer-yx1x8m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-lThQ4 .framer-yx1x8m > :first-child { margin-left: 0px; } .framer-lThQ4 .framer-yx1x8m > :last-child { margin-right: 0px; } .framer-lThQ4 .framer-5h8wez > *, .framer-lThQ4 .framer-1p4ft11 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }}\",\"@media (max-width: 809px) { .framer-lThQ4.framer-1oq9nmo { width: 390px; } .framer-lThQ4 .framer-1h1fnf-container { height: auto; } .framer-lThQ4 .framer-azm4qb { height: min-content; padding: 80px 20px 0px 20px; } .framer-lThQ4 .framer-18pmzji { flex-direction: column; gap: 71px; order: 0; z-index: 1; } .framer-lThQ4 .framer-1dallil { align-content: center; align-items: center; flex: none; order: 0; width: 100%; } .framer-lThQ4 .framer-d8fxu0 { align-content: center; align-items: center; order: 0; } .framer-lThQ4 .framer-1mymqlo { align-content: center; align-items: center; } .framer-lThQ4 .framer-4eann9-container { order: 1; } .framer-lThQ4 .framer-1popli8 { aspect-ratio: 0.9706666666666667 / 1; height: var(--framer-aspect-ratio-supported, 206px); min-height: unset; order: 2; width: 100%; } .framer-lThQ4 .framer-noi60o { aspect-ratio: 1.0317460317460319 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 194px); overflow: visible; right: unset; top: 4px; width: 106%; will-change: unset; } .framer-lThQ4 .framer-casg0k { bottom: 0px; height: var(--framer-aspect-ratio-supported, 254px); right: 44px; width: 126px; will-change: unset; } .framer-lThQ4 .framer-yx1x8m { bottom: -181px; left: 0px; order: 1; top: 0px; width: unset; will-change: unset; z-index: 0; } .framer-lThQ4 .framer-19sy64h { height: 426px; left: calc(50.25641025641028% - 393px / 2); right: unset; top: 203px; width: 393px; } .framer-lThQ4 .framer-ii6n5w { padding: 50px 20px 50px 20px; } .framer-lThQ4 .framer-18oepw6 { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-lThQ4 .framer-1by276j-container, .framer-lThQ4 .framer-rfd5rv-container, .framer-lThQ4 .framer-1fhdmlg-container { height: var(--framer-aspect-ratio-supported, 44px); } .framer-lThQ4 .framer-1vwaols { padding: 80px 20px 80px 20px; } .framer-lThQ4 .framer-f0vvmn-container { height: 400px; } .framer-lThQ4 .framer-od5lk8 { gap: 46px; max-width: unset; padding: 51px 20px 51px 20px; } .framer-lThQ4 .framer-5h8wez { flex-direction: column; } .framer-lThQ4 .framer-6oygpw { flex: none; width: 100%; } .framer-lThQ4 .framer-fapyf4-container, .framer-lThQ4 .framer-9mm9px-container, .framer-lThQ4 .framer-1sqdmde-container, .framer-lThQ4 .framer-14hlsy1-container, .framer-lThQ4 .framer-1twdy0s-container, .framer-lThQ4 .framer-18cxxwc-container { height: var(--framer-aspect-ratio-supported, 16px); } .framer-lThQ4 .framer-8d9b7l { flex: none; height: 450px; width: 100%; } .framer-lThQ4 .framer-m6id8k { height: var(--framer-aspect-ratio-supported, 505px); } .framer-lThQ4 .framer-ecdj1w { gap: 50px; padding: 21px 20px 30px 20px; } .framer-lThQ4 .framer-1p4ft11 { flex-direction: column; order: 0; } .framer-lThQ4 .framer-19jd6fn { flex: none; height: 450px; order: 1; width: 100%; } .framer-lThQ4 .framer-11ib9pd { right: -20px; width: 350px; } .framer-lThQ4 .framer-1joe88u { flex: none; order: 0; width: 100%; } .framer-lThQ4 .framer-1n5qtdf-container { order: 3; } .framer-lThQ4 .framer-c6ixz8 { padding: 77px 20px 30px 20px; } .framer-lThQ4 .framer-1s2eyxu-container { height: 188px; width: 100%; } .framer-lThQ4 .framer-4f4d4c { padding: 0px 20px 80px 20px; } .framer-lThQ4 .framer-92bu5u { padding: 80px 0px 80px 0px; } .framer-lThQ4 .framer-1hf21ub { max-width: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-lThQ4 .framer-18pmzji, .framer-lThQ4 .framer-od5lk8, .framer-lThQ4 .framer-5h8wez, .framer-lThQ4 .framer-ecdj1w, .framer-lThQ4 .framer-1p4ft11 { gap: 0px; } .framer-lThQ4 .framer-18pmzji > * { margin: 0px; margin-bottom: calc(71px / 2); margin-top: calc(71px / 2); } .framer-lThQ4 .framer-18pmzji > :first-child, .framer-lThQ4 .framer-od5lk8 > :first-child, .framer-lThQ4 .framer-5h8wez > :first-child, .framer-lThQ4 .framer-ecdj1w > :first-child, .framer-lThQ4 .framer-1p4ft11 > :first-child { margin-top: 0px; } .framer-lThQ4 .framer-18pmzji > :last-child, .framer-lThQ4 .framer-od5lk8 > :last-child, .framer-lThQ4 .framer-5h8wez > :last-child, .framer-lThQ4 .framer-ecdj1w > :last-child, .framer-lThQ4 .framer-1p4ft11 > :last-child { margin-bottom: 0px; } .framer-lThQ4 .framer-od5lk8 > * { margin: 0px; margin-bottom: calc(46px / 2); margin-top: calc(46px / 2); } .framer-lThQ4 .framer-5h8wez > *, .framer-lThQ4 .framer-1p4ft11 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-lThQ4 .framer-ecdj1w > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7376\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cBFEJUO7Z\":{\"layout\":[\"fixed\",\"auto\"]},\"gzMicRvtv\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"ZILqWOZNs\":{\"pattern\":\":ZILqWOZNs\",\"name\":\"img\"},\"urwad0IOP\":{\"pattern\":\":urwad0IOP\",\"name\":\"img-2\"}}\n * @framerResponsiveScreen\n */const FramerTuRskxh5v=withCSS(Component,css,\"framer-lThQ4\");export default FramerTuRskxh5v;FramerTuRskxh5v.displayName=\"Home\";FramerTuRskxh5v.defaultProps={height:7376,width:1200};addFonts(FramerTuRskxh5v,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Funnel Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/funnelsans/v1/OpNfno8Dg9bX6Bsp3Wq69RB-VukSVv3aISFAlXmEe29NnDyL7w.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_A87jxeN7B.woff2\",weight:\"800\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...NavbarVfinalCopyFonts,...ButtonPrimaryFonts,...ButtonPrimary1Fonts,...SectionBadgeFonts,...PhosphorFonts,...ButtonLinkFonts,...SlideshowFonts,...MaterialFonts,...YouTubeFonts,...TestimonialCarouselGNRalFonts,...ContactFormHubspotFonts,...AccordionStyle1Fonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTuRskxh5v\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"ZILqWOZNs\\\":{\\\"pattern\\\":\\\":ZILqWOZNs\\\",\\\"name\\\":\\\"img\\\"},\\\"urwad0IOP\\\":{\\\"pattern\\\":\\\":urwad0IOP\\\",\\\"name\\\":\\\"img-2\\\"}}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cBFEJUO7Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gzMicRvtv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"7376\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "_isBot", "isBot", "navigator", "emptySubscribe", "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", "iframeIsDefaultVisible", "de", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "blUivggxX_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "__FramerMetadata__", "valuesByLocaleId", "blUivggxX_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "CarouselFonts", "getFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "LayoutGroup", "cx", "u", "RichText", "getLocalizedValue", "ComponentViewportProvider", "css", "FramerblUivggxX", "withCSS", "blUivggxX_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "NavbarVfinalCopyFonts", "getFonts", "cmFEwCIMZ_default", "ButtonPrimaryFonts", "wZ6tVEahQ_default", "ButtonPrimary1Fonts", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "MotionDivWithOptimizedAppearEffect", "motion", "SectionBadgeFonts", "lSgPJfOgF_default", "ContainerWithFX", "withFX", "Container", "PhosphorFonts", "Icon", "ButtonLinkFonts", "XwX16kBru_default", "MotionDivWithFX", "SlideshowFonts", "Slideshow", "MaterialFonts", "ImageWithFX", "YouTubeFonts", "Youtube", "TestimonialCarouselGNRalFonts", "blUivggxX_default", "ContactFormHubspotFonts", "ZwLALpDFj_default", "AccordionStyle1Fonts", "knOTVjt3A_default", "FooterFonts", "ssaWiEw3h_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "animation4", "animation5", "transition4", "animation6", "transition5", "transition6", "animation7", "transition7", "transition8", "transition9", "transition10", "animation8", "transition11", "animation9", "transformTemplate1", "_", "t", "animation10", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "usePreloadLocalizedValues", "isDisplayed", "isDisplayed1", "isDisplayed2", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "getLocalizedValue", "x", "RichText", "getLoadingLazyAtYPosition", "Link", "ResolveLinks", "resolvedLinks", "SVG", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "css", "FramerTuRskxh5v", "withCSS", "TuRskxh5v_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
