{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js", "ssg:https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/0jtlswBvrookcx7EpjBD/Video.js", "ssg:https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/PlLMu0V3HsBupvdXeFrH/FormSpark.js", "ssg:https://framerusercontent.com/modules/cuKUFdzXlhvw8OVOBeAc/VOfaY9LHiTLKveiePI7P/border.js", "ssg:https://framerusercontent.com/modules/9muYaW1MvHoRQJ0P7dkP/V2GVvLqiMxXRSxszkCSa/focus.js", "ssg:https://framerusercontent.com/modules/YfmtnpWjJrP37sQ18QUZ/9Y2P24U2SBIbf2fPVsOX/hover.js", "ssg:https://framerusercontent.com/modules/wjZLfSMaP1TvJDu5PCwr/6SPClu354QJPCp6Xj5C0/padding.js", "ssg:https://framerusercontent.com/modules/N6MwtHbWoiZJNn1xpqxu/58OHv7BfCzgeBhiv1TYu/radius.js", "ssg:https://framerusercontent.com/modules/57FhkldN9P7x88MqAEaR/MaCiz8nzfVQ2yBstuToQ/LocaleSelector.js", "ssg:https://framerusercontent.com/modules/6vZo7lBtSJnrpcqVttZs/VvHP3e2wVUpT3XwVPUqL/foMTwrMaQ.js", "ssg:https://framerusercontent.com/modules/W1IugxdUidPlvI7URwOt/aXzFlof0AazX6g2fLqeN/lAoIvMu14.js", "ssg:https://framerusercontent.com/modules/dHFX6z7eqXejEm1wSh5a/PkLdN9cZPYHm51KmOkr1/nasKr5qj1-0.js", "ssg:https://framerusercontent.com/modules/eDUIfFbHeaoQJIqOyb8C/lUCCeCXaEpsQCTZJ5pyN/S7Z8XJajt-0.js", "ssg:https://framerusercontent.com/modules/eDUIfFbHeaoQJIqOyb8C/lUCCeCXaEpsQCTZJ5pyN/S7Z8XJajt.js", "ssg:https://framerusercontent.com/modules/dHFX6z7eqXejEm1wSh5a/PkLdN9cZPYHm51KmOkr1/nasKr5qj1.js"],
  "sourcesContent": ["import{MotionValue}from\"framer\";// Basic MotionValue check\nexport const isMotionValue=v=>v instanceof MotionValue;\nexport const __FramerMetadata__ = {\"exports\":{\"isMotionValue\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./isMotionValue.map", "import{useCallback,useEffect,useRef}from\"react\";import{motionValue,animate,RenderTarget}from\"framer\";import{isMotionValue}from\"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js\";import{useConstant}from\"https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js\";export function useAutoMotionValue(inputValue,options){// Put options on a local ref\n// Might wanna just memo instead but it works for now\nconst optionsRef=useRef(options);const animation=useRef();const didInitialMount=useRef(false);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;// in-progress - trying to figure out effect hooks\nconst onChangeDeps=(options===null||options===void 0?void 0:options.onChangeDeps)?options.onChangeDeps:[];// Memoize the onChange handler\nconst onChange=useCallback(options===null||options===void 0?void 0:options.onChange,[...onChangeDeps,]);// Optionally scale the value from props\nconst transformer=useCallback(value=>{var ref;return((ref=optionsRef.current)===null||ref===void 0?void 0:ref.transform)?optionsRef.current.transform(value):value;},[]);// Create new MotionValue from inputValue\nconst value1=useConstant(()=>isMotionValue(inputValue)?inputValue:motionValue(transformer(inputValue)));// Setting value from prop change\nuseEffect(()=>{if(!isMotionValue(inputValue)&&didInitialMount.current){var ref,ref1;const newValue=transformer(inputValue);(ref=animation.current)===null||ref===void 0?void 0:ref.stop();// Call change callback\nif(onChange)onChange(newValue,value1);// Trigger animation to new value\nif(((ref1=optionsRef.current)===null||ref1===void 0?void 0:ref1.animate)&&!isOnCanvas){var ref2;// @ts-ignore\nanimation.current=animate(value1,newValue,(ref2=optionsRef.current)===null||ref2===void 0?void 0:ref2.transition);}else{value1.set(newValue);}}didInitialMount.current=true;},[inputValue,...onChangeDeps]);return value1;}\nexport const __FramerMetadata__ = {\"exports\":{\"useAutoMotionValue\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useAutoMotionValue.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useMotionValueEvent}from\"framer-motion\";import{useRef,useEffect,useMemo,useCallback,memo}from\"react\";import{ControlType,addPropertyControls,useIsInCurrentNavigationTarget}from\"framer\";import{useOnEnter,useOnExit,defaultEvents,useIsOnCanvas,useIsBrowserSafari,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useAutoMotionValue}from\"https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export function Video(props){const newProps=getProps(props);return /*#__PURE__*/ _jsx(VideoMemo,{...newProps});}/**\n * For the useEffect hook to change progress of the video on state change.\n * It was causing the video to restart on hydration\n */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing,canvasPlay,muted,playsinline,controls,progress,objectFit,backgroundColor,radius,topLeft,topRight,bottomRight,bottomLeft,isMixed,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,restartOnEnter,posterEnabled,startTime:startTimeProp,volume,loop}=props;const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const videoRef=useRef();const isSafari=useIsBrowserSafari();const requestingPlay=useRef(false);const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Video elements behave oddly at 100% duration\nconst startTime=useMemo(()=>startTimeProp===100?99.9:startTimeProp,[startTimeProp]);const shouldPlay=!isOnCanvas||canvasPlay;const autoPlay=useMemo(()=>playing,[]);const isMuted=useMemo(()=>isOnCanvas?true:muted,[isOnCanvas,muted]);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{}) // It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);// Pause/play via props\nuseEffect(()=>{if(playing&&shouldPlay)play();else pause();},[playing,canvasPlay]);// Change progress via prop\nuseEffect(()=>{if(isMountedAndReadyForProgressChanges)setProgress(startTime*.01);else isMountedAndReadyForProgressChanges=true;},[startTime,srcFile,srcUrl]);const videoProgress=useAutoMotionValue(progress,{transform:value=>value*.01,onChange:newValue=>{setProgress(newValue);}});// Allow scrubbing with MotionValue\nuseMotionValueEvent(videoProgress,\"change\",latest=>{if(!isOnCanvas)setProgress(latest);});// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===SrcType.Url)return srcUrl+fragment;if(srcType===SrcType.Video)return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoPlay){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=volume/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(videoRef.current&&videoRef.current.currentTime<.3)setProgress(startTime*.01);if(shouldPlay&&videoRef.current&&autoPlay)play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoPlay&&shouldPlay,poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isMuted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,autoPlay:true,canvasPlay:false,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For Youtube, use the Youtube component.\"},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,]},canvasPlay:{type:ControlType.Boolean,title:\"On Canvas\",enabledTitle:\"Play\",disabledTitle:\"Pause\",hidden(props){return props.autoPlay===false;}},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{motion}from\"framer-motion\";import{containerStyles,usePadding,useRadius,paddingControl,borderRadiusControl,fontControls,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useCallback,useMemo,useState}from\"react\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};/**\n * FORMSPARK\n *\n * @framerIntrinsicWidth 550\n * @framerIntrinsicHeight 290\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ const FormSpark=withCSS(function FormSpark({formId,withName,nameField:name,withEmail,email,withMessage,message,layout,inputs,button,style,gap,onSubmit,...props}){const[nameValue,setName]=useState(name===null||name===void 0?void 0:name.value);const[emailValue,setEmail]=useState(email===null||email===void 0?void 0:email.value);const[messageValue,setMessage]=useState(message===null||message===void 0?void 0:message.value);const[isNameError,setNameError]=useState(false);const[isEmailError,setEmailError]=useState(false);const[isMessageError,setMessageError]=useState(false);const[isLoading,setLoading]=useState(false);const[isSuccess,setSuccess]=useState(false);const isCanvas=useMemo(()=>{return RenderTarget.current()===RenderTarget.canvas;},[]);const gridTemplateRows=useMemo(()=>{const rows=[];if(withName||withMessage){rows.push(\"max-content\");}if(withMessage){rows.push(\"1fr\");}return[...rows,\"max-content\"].join(\" \");},[withName,withEmail,withMessage]);const gridTemplateColumns=useMemo(()=>{const cols=[];if((withName&&!withEmail||withEmail&&!withName)&&!withMessage&&layout===\"horizontal\"){return\"1fr max-content\";}return\"1fr\";},[withName,withEmail,withMessage,layout]);const{fontFamily,fontSize,fontWeight}=useFontControls(props);const borderRadius=useRadius(props);const paddingValue=usePadding(props);const validateForm=useCallback(()=>{let error=false;setNameError(false);setEmailError(false);setMessageError(false);if(withName&&!nameValue){setNameError(true);error=true;}if(withEmail&&(!emailValue||!validateEmail(emailValue))){setEmailError(true);error=true;}if(withMessage&&!messageValue){setMessageError(true);error=true;}return error;},[validateEmail,withName,withEmail,withMessage,nameValue,emailValue,messageValue,]);const handleSubmit=useCallback(event=>{setLoading(true);event.preventDefault();if(validateForm()){setLoading(false);}else{const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://submit-form.com/${formId}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{setSuccess(true);onSubmit();}).catch(()=>setLoading(false));}},[formId,onSubmit,validateForm]);const handleNameChange=useCallback(event=>{setNameError(false);setName(event.target.value);},[]);const handleEmailChange=useCallback(event=>{setEmailError(false);setEmail(event.target.value);},[]);const handleMessageChange=useCallback(event=>{setMessageError(false);setMessage(event.target.value);},[]);return(/*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,flexDirection:\"column\",\"--framer-formspark-placeholder-color\":inputs.placeholderColor},children:isSuccess?/*#__PURE__*/ _jsx(motion.div,{style:{height:\"60px\",width:\"60px\",background:button.fill,color:button.color,borderRadius:\"50%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},initial:{scale:0},animate:{scale:1},transition:{duration:0.3},children:/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"28\",height:\"28\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M 2 14 L 10 22 L 26 6\",fill:\"transparent\",strokeWidth:\"4\",stroke:\"currentColor\",strokeLinecap:\"round\"})})}):/*#__PURE__*/ _jsxs(\"form\",{style:{display:\"grid\",gridTemplateRows,gridTemplateColumns,gap,width:\"100%\",height:\"100%\"},onSubmit:handleSubmit,method:\"POST\",children:[(withName||withEmail)&&/*#__PURE__*/ _jsxs(\"div\",{style:{width:\"100%\",display:\"grid\",gridAutoFlow:layout===\"horizontal\"?\"column\":\"row\",gap},children:[withName&&/*#__PURE__*/ _jsx(\"input\",{className:\"framer-formspark-input\",type:\"text\",name:\"name\",placeholder:name.placeholder,value:isCanvas?name.value:nameValue,onChange:handleNameChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:inputs.fill,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isNameError?inputs.error:\"transparent\"}`}}),withEmail&&/*#__PURE__*/ _jsx(\"input\",{className:\"framer-formspark-input\",type:\"email\",name:\"email\",placeholder:email.placeholder,value:isCanvas?email.value:emailValue,onChange:handleEmailChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:inputs.fill,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isEmailError?inputs.error:\"transparent\"}`}})]}),withMessage&&/*#__PURE__*/ _jsx(\"textarea\",{className:\"framer-formspark-input\",placeholder:message.placeholder,name:\"message\",value:isCanvas?message.value:messageValue,onChange:handleMessageChange,style:{...defaultStyle,minHeight:0,padding:paddingValue,resize:\"vertical\",borderRadius,background:inputs.fill,fontFamily,fontWeight,fontSize,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isMessageError?inputs.error:\"transparent\"}`}}),/*#__PURE__*/ _jsxs(\"div\",{children:[/*#__PURE__*/ _jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,borderRadius,padding:paddingValue,fontFamily,fontWeight:button.fontWeight,fontSize,background:button.fill,cursor:\"pointer\",color:button.color,zIndex:1},transition:{type:\"ease\",duration:0.3},whileHover:{opacity:0.8}}),isLoading&&/*#__PURE__*/ _jsx(\"div\",{style:{borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",left:0,top:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/ _jsx(motion.div,{style:{height:16,width:16},initial:{rotate:0},animate:{rotate:360},transition:{duration:2,repeat:Infinity},children:/*#__PURE__*/ _jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})})]})]})}));},[\".framer-formspark-input::placeholder { color: var(--framer-formspark-placeholder-color) !important; }\",]);FormSpark.defaultProps={fontSize:16,fontFamily:\"Inter\",fontWeight:400,padding:15,paddingTop:15,paddingBottom:15,paddingLeft:15,paddingRight:15,borderRadius:8,topLeftRadius:8,topRightRadius:8,bottomRightRadius:8,bottomLeftRadius:8,gap:15,nameField:{value:undefined,placeholder:\"Name\"},email:{value:undefined,placeholder:\"Email\"},message:{value:undefined,placeholder:\"Message\"},inputs:{fill:\"#EBEBEB\",color:\"#000\",placeholderColor:\"rgba(0, 0, 0, 0.5)\",error:\"#EE4444\"},layout:{fill:\"#EBEBEB\",color:\"#000\",placeholderColor:\"rgba(0, 0, 0, 0.5)\",error:\"#EE4444\"},button:{label:\"Sign Up\",fontWeight:600,fill:\"#000\",color:\"#FFF\"}};addPropertyControls(FormSpark,{formId:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,description:\"Create a [FormSpark](https://formspark.io/) account, add a new form and copy its ID. [Learn more\u2026](https://www.framer.com/sites/integrations/formspark/)\"},withName:{title:\"Name\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},nameField:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Name\"},value:{title:\"Value\",type:ControlType.String,defaultValue:\"\"}},hidden:props=>!props.withName},withEmail:{title:\"Email\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},email:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Email\"},value:{title:\"Value\",type:ControlType.String}},hidden:props=>!props.withEmail},withMessage:{title:\"Message\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},message:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Message\"},value:{title:\"Value\",type:ControlType.String}},hidden:props=>!props.withMessage},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,defaultValue:\"horizontal\"},inputs:{title:\"Inputs\",type:ControlType.Object,controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},placeholderColor:{title:\"Placeholder\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.5)\"},error:{title:\"Error\",type:ControlType.Color,defaultValue:\"#EE4444\"}}},button:{title:\"Button\",type:ControlType.Object,controls:{label:{title:\"Label\",type:ControlType.String,defaultValue:\"Sign Up\"},fontWeight:{...fontControls.fontWeight,defaultValue:600},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#000\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"}}},...fontControls,fontSize:{title:\"Font Size\",type:ControlType.Number,displayStepper:true,defaultValue:16},...paddingControl,...borderRadiusControl,gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0},onSubmit:{type:ControlType.EventHandler}});const defaultStyle={WebkitAppearance:\"none\",display:\"inline-block\",width:\"100%\",lineHeight:\"1.4em\",outline:\"none\",border:\"none\"};export default FormSpark;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FormSpark\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"290\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"550\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FormSpark.map", "import{ControlType}from\"framer\";export function getBorderStyle({color,width=0,widthPerSide=false,widthTop=0,widthRight=0,widthBottom=0,widthLeft=0,style=\"none\"}={}){const result={};if(color){result[\"--framer-border-color\"]=color;result.borderStyle=style;if(widthPerSide){result.borderTopWidth=widthTop;result.borderRightWidth=widthRight;result.borderBottomWidth=widthBottom;result.borderLeftWidth=widthLeft;}else{result.borderTopWidth=width;result.borderRightWidth=width;result.borderBottomWidth=width;result.borderLeftWidth=width;}}else{result.border=\"none\";}return result;}export const borderControls={color:{type:ControlType.Color,defaultValue:\"#444\"},width:{type:ControlType.FusedNumber,toggleKey:\"widthPerSide\",toggleTitles:[\"Width\",\"Width per side\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],defaultValue:1,min:0},style:{type:ControlType.Enum,options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"double\"],defaultValue:\"solid\"}};\nexport const __FramerMetadata__ = {\"exports\":{\"BorderOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"borderControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBorderStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./border.map", "import{ControlType}from\"framer\";export function getFocusStyle({color,width,style,offset}={}){const result={};if(color){result[\"--framer-focus-outline\"]=`${width}px ${style} ${color}`;result[\"--framer-focus-outline-offset\"]=`${offset}px`;}return result;}export const focusControls={color:{type:ControlType.Color,defaultValue:\"#09f\"},width:{type:ControlType.Number,displayStepper:true,defaultValue:1,min:0},style:{type:ControlType.Enum,options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"double\"],defaultValue:\"solid\"},offset:{type:ControlType.Number,displayStepper:true}};\nexport const __FramerMetadata__ = {\"exports\":{\"focusControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFocusStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"FocusOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./focus.map", "import{ControlType}from\"framer\";export function getHoverStyle({fillColor,textColor,borderColor}={}){return{\"--framer-hover-background-color\":fillColor,\"--framer-hover-color\":textColor,\"--framer-hover-border-color\":borderColor};}export const hoverControls={fillColor:{type:ControlType.Color,title:\"Fill\",optional:true},textColor:{type:ControlType.Color,title:\"Text\",optional:true},borderColor:{type:ControlType.Color,title:\"Border\",optional:true}};\nexport const __FramerMetadata__ = {\"exports\":{\"HoverOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getHoverStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"hoverControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hover.map", "import{ControlType}from\"framer\";export function getPaddingStyle({padding=0,paddingPerSide=false,paddingTop=0,paddingRight=0,paddingBottom=0,paddingLeft=0}={}){if(paddingPerSide){return{paddingTop:paddingTop,paddingRight:paddingRight,paddingBottom:paddingBottom,paddingLeft:paddingLeft};}else{return{paddingTop:padding,paddingRight:padding,paddingBottom:padding,paddingLeft:padding};}}export const paddingControls={padding:{type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],defaultValue:10,min:0}};\nexport const __FramerMetadata__ = {\"exports\":{\"getPaddingStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./padding.map", "import{ControlType}from\"framer\";export function getRadiusStyle({radius=0,radiusPerCorner=false,radiusTopLeft=0,radiusTopRight=0,radiusBottomRight=0,radiusBottomLeft=0}={}){const result={};if(radiusPerCorner){result.borderTopLeftRadius=radiusTopLeft;result.borderTopRightRadius=radiusTopRight;result.borderBottomRightRadius=radiusBottomRight;result.borderBottomLeftRadius=radiusBottomLeft;}else{result.borderTopLeftRadius=radius;result.borderTopRightRadius=radius;result.borderBottomRightRadius=radius;result.borderBottomLeftRadius=radius;}return result;}export const radiusControls={radius:{type:ControlType.FusedNumber,toggleKey:\"radiusPerConrner\",toggleTitles:[\"Radius\",\"Radius per side\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\",],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],defaultValue:10,min:0}};\nexport const __FramerMetadata__ = {\"exports\":{\"getRadiusStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"radiusControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./radius.map", "var e,t;import{jsx as o,jsxs as l}from\"react/jsx-runtime\";import{addPropertyControls as r,ControlType as i,// @ts-ignore Internal function\nuseLocaleInfo as a,withCSS as n}from\"framer\";import{useId as s,useRef as u,useState as d}from\"react\";import{getBorderStyle as c,borderControls as p}from\"https://framerusercontent.com/modules/cuKUFdzXlhvw8OVOBeAc/VOfaY9LHiTLKveiePI7P/border.js\";import{getFocusStyle as f,focusControls as m}from\"https://framerusercontent.com/modules/9muYaW1MvHoRQJ0P7dkP/V2GVvLqiMxXRSxszkCSa/focus.js\";import{getHoverStyle as h,hoverControls as v}from\"https://framerusercontent.com/modules/YfmtnpWjJrP37sQ18QUZ/9Y2P24U2SBIbf2fPVsOX/hover.js\";import{getPaddingStyle as g,paddingControls as y}from\"https://framerusercontent.com/modules/wjZLfSMaP1TvJDu5PCwr/6SPClu354QJPCp6Xj5C0/padding.js\";import{getRadiusStyle as b,radiusControls as w}from\"https://framerusercontent.com/modules/N6MwtHbWoiZJNn1xpqxu/58OHv7BfCzgeBhiv1TYu/radius.js\";let C=\"framer-locale-picker\";function x(e){return\"number\"==typeof e?`${e}px`:e;}function j({type:e,color:t,image:l,size:r}){return\"custom\"===e&&l?/*#__PURE__*/o(\"img\",{...l,width:r,height:r}):/*#__PURE__*/o(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",width:r,height:r,fill:t,children:/*#__PURE__*/o(\"path\",{d:\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm87.63,96H175.8c-1.41-28.46-10.27-55.47-25.12-77A88.2,88.2,0,0,1,215.63,120ZM128,215.89c-18.73-20.27-30.09-49-31.77-79.89h63.54C158.09,166.87,146.73,195.62,128,215.89ZM96.23,120c1.68-30.87,13-59.62,31.77-79.89,18.73,20.27,30.09,49,31.77,79.89Zm9.09-77C90.47,64.53,81.61,91.54,80.2,120H40.37A88.2,88.2,0,0,1,105.32,43ZM40.37,136H80.2c1.41,28.46,10.27,55.47,25.12,77A88.2,88.2,0,0,1,40.37,136Zm110.31,77c14.85-21.56,23.71-48.57,25.12-77h39.83A88.2,88.2,0,0,1,150.68,213Z\"})});}function S({type:e,color:t,image:l,size:r}){return\"custom\"===e&&l?/*#__PURE__*/o(\"img\",{...l,width:r,height:r}):/*#__PURE__*/o(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 12 12\",width:r,height:r,children:/*#__PURE__*/o(\"path\",{d:\"M 2 4.5 L 6 8.5 L 10 4.5\",fill:\"none\",stroke:t,strokeWidth:1.5,strokeLinecap:\"round\",strokeLinejoin:\"round\"})});}!function(e){e.Default=\"default\",e.Custom=\"custom\";}(e||(e={})),function(t){t.Default=\"default\",t.Custom=\"custom\";}(t||(t={}));/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any\n * @framerDisableUnlink\n * @framerIntrinsicWidth 120\n * @framerIntrinsicHeight 34\n */let T=n(({font:e,fillColor:t,textColor:r,icon:i,caret:n,options:{title:p,gap:m,border:v,hover:y,focus:w},style:x,...T})=>{var V,k;let $=s(),{activeLocale:F,locales:N,setLocale:O}=a(),Z=null!==(V=null==F?void 0:F.id)&&void 0!==V?V:\"default\",L=u(Z),[z,A]=d(Z),B=N.find(e=>e.id===z);return L.current!==Z&&(L.current=Z,z!==Z&&A(Z)),/*#__PURE__*/l(\"div\",{className:C,style:x,children:[/*#__PURE__*/o(\"label\",{htmlFor:$,children:\"Select Language\"}),/*#__PURE__*/o(\"select\",{id:$,value:z,onChange:function(e){let t=e.target.value;A(t);let o=N.find(e=>e.id===t);O(o);},children:N.map(e=>/*#__PURE__*/o(\"option\",{value:e.id,children:e.name},e.id))}),/*#__PURE__*/l(\"div\",{className:\"input\",style:{...e,\"--framer-background-color\":t,\"--framer-color\":r,...g(T),...b(T),...c(v),...h(y),...f(w),gap:m},children:[i&&/*#__PURE__*/o(\"div\",{className:\"icon\",children:/*#__PURE__*/o(j,{...i})}),p&&/*#__PURE__*/o(\"div\",{className:\"title\",children:null!==(k=null==B?void 0:B.name)&&void 0!==k?k:\"English\"}),n&&/*#__PURE__*/o(\"div\",{className:\"caret\",children:/*#__PURE__*/o(S,{...n})})]})]});},[`\n            .${C} {\n                position: relative;\n            }\n        `,`\n            .${C} label {\n                position: absolute;\n                width: 1px;\n                height: 1px;\n                margin: -1px;\n                overflow: hidden;\n                white-space: nowrap;\n                clip: rect(0 0 0 0);\n                clip-path: inset(50%);\n            }\n        `,`\n            .${C} select {\n                appearance: none;\n                position: absolute;\n                opacity: 0;\n                top: 0;\n                right: 0;\n                bottom: 0;\n                left: 0;\n                cursor: inherit;\n                width: 100%;\n            }\n        `,`\n            .${C} .input {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                height: 100%;\n                pointer-events: none;\n                overflow: hidden;\n                background-color: var(--framer-background-color);\n                color: var(--framer-color);\n                border-color: var(--framer-border-color);\n            }\n        `,`\n            .${C} select:focus-visible + .input  {\n                outline: var(--framer-focus-outline, none);\n                outline-offset: var(--framer-focus-outline-offset);\n            }\n        `,`\n            .${C}:hover .input {\n                background-color: var(--framer-hover-background-color, var(--framer-background-color));\n                color: var(--framer-hover-color, var(--framer-color));\n                border-color: var(--framer-hover-border-color, var(--framer-border-color));\n            }\n        `,`\n            .${C} .title {\n                flex: 1 1 auto;\n                white-space: nowrap;\n                text-overflow: ellipsis;\n                overflow: hidden;\n            }\n        `,`\n            .${C} .icon, .${C} .caret {\n                display: flex;\n                align-items: center;\n            }\n        `]);T.displayName=\"Locale Selector\",r(T,{font:{// @ts-ignore\ntype:i.Font,controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:\"1.5em\"}},fillColor:{type:i.Color,title:\"Fill\",optional:!0,defaultValue:\"#eee\"},textColor:{type:i.Color,title:\"Text\",defaultValue:\"#000\"},...y,...w,icon:{type:i.Object,buttonTitle:\"Size, Color\",optional:!0,controls:{type:{type:i.Enum,title:\"Icon\",options:Object.values(e),optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:!0,defaultValue:\"default\"},color:{type:i.Color,displaySegmentedControl:!0,defaultValue:\"#000\",hidden:e=>\"default\"!==e.type},image:{type:i.ResponsiveImage,title:\"File\",allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:e=>\"custom\"!==e.type},size:{type:i.Number,displayStepper:!0,defaultValue:18}}},caret:{type:i.Object,buttonTitle:\"Size, Color\",optional:!0,controls:{type:{type:i.Enum,title:\"Icon\",options:Object.values(t),optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:!0,defaultValue:\"default\"},color:{type:i.Color,displaySegmentedControl:!0,defaultValue:\"#000\",hidden:e=>\"default\"!==e.type},image:{type:i.ResponsiveImage,title:\"File\",allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:e=>\"custom\"!==e.type},size:{type:i.Number,displayStepper:!0,defaultValue:12}},defaultValue:{}},options:{type:i.Object,title:\"Options\",buttonTitle:\"Border, Hover\",controls:{title:{type:i.Boolean,defaultValue:!0},gap:{type:i.Number,displayStepper:!0,defaultValue:5},border:{type:i.Object,buttonTitle:\"Color, Width\",optional:!0,controls:p},hover:{type:i.Object,buttonTitle:\"Fill, Border\",optional:!0,controls:v},focus:{type:i.Object,buttonTitle:\"Color, Width\",controls:m}}}});export default T;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"LocaleSelector\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicHeight\":\"34\",\"framerDisableUnlink\":\"* @framerIntrinsicWidth 120\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LocaleSelector.map", "// Generated by Framer (c76752e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-x56RA\";const variantClassNames={Ad3v9h_61:\"framer-v-1yaxhif\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,image,width,...props})=>{return{...props,qdKDtJl09:image??props.qdKDtJl09??{src:\"https://framerusercontent.com/images/syW8SN9XqEEbDbNeD9ke6yVM2Q.svg\",srcSet:\"https://framerusercontent.com/images/syW8SN9XqEEbDbNeD9ke6yVM2Q.svg?scale-down-to=512 512w,https://framerusercontent.com/images/syW8SN9XqEEbDbNeD9ke6yVM2Q.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/syW8SN9XqEEbDbNeD9ke6yVM2Q.svg 1027w\"}};};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,qdKDtJl09,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Ad3v9h_61\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1yaxhif\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Ad3v9h_61\",ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:187,intrinsicWidth:1027,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||26)-0-26)/2)),pixelHeight:187,pixelWidth:1027,sizes:\"138px\",...toResponsiveImage(qdKDtJl09),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1gxrrp\",\"data-framer-name\":\"surface1\",layoutDependency:layoutDependency,layoutId:\"xokSIGsnJ\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:288,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||26)-0-25)/2)),pixelHeight:288,pixelWidth:1200,sizes:\"107px\",src:\"https://framerusercontent.com/images/bY4ZIemgnNDWw30dtIDdomWUEQ.jpg\",srcSet:\"https://framerusercontent.com/images/bY4ZIemgnNDWw30dtIDdomWUEQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bY4ZIemgnNDWw30dtIDdomWUEQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bY4ZIemgnNDWw30dtIDdomWUEQ.jpg 1200w\"},className:\"framer-gtamjw\",\"data-framer-name\":\"Logo r.normandie-paysage-cmjn_0\",layoutDependency:layoutDependency,layoutId:\"ujiWNXePw\"})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-x56RA.framer-1r22z8z, .framer-x56RA .framer-1r22z8z { display: block; }\",\".framer-x56RA.framer-1yaxhif { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 26px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1100px; }\",\".framer-x56RA .framer-1gxrrp { aspect-ratio: 5.3076923076923075 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; width: 138px; }\",\".framer-x56RA .framer-gtamjw { aspect-ratio: 4.166666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); overflow: visible; position: relative; width: 107px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-x56RA.framer-1yaxhif { gap: 0px; } .framer-x56RA.framer-1yaxhif > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-x56RA.framer-1yaxhif > :first-child { margin-left: 0px; } .framer-x56RA.framer-1yaxhif > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26\n * @framerIntrinsicWidth 1100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"qdKDtJl09\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfoMTwrMaQ=withCSS(Component,css,\"framer-x56RA\");export default FramerfoMTwrMaQ;FramerfoMTwrMaQ.displayName=\"Footer\";FramerfoMTwrMaQ.defaultProps={height:26,width:1100};addPropertyControls(FramerfoMTwrMaQ,{qdKDtJl09:{__defaultAssetReference:\"data:framer/asset-reference,syW8SN9XqEEbDbNeD9ke6yVM2Q.svg?originalFilename=Logo.svg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerfoMTwrMaQ,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfoMTwrMaQ\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1100\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"26\",\"framerVariables\":\"{\\\"qdKDtJl09\\\":\\\"image\\\"}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./foMTwrMaQ.map", "// Generated by Framer (61bac00)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import LocaleSelector from\"https://framerusercontent.com/modules/57FhkldN9P7x88MqAEaR/MaCiz8nzfVQ2yBstuToQ/LocaleSelector.js\";import Footer from\"https://framerusercontent.com/modules/6vZo7lBtSJnrpcqVttZs/VvHP3e2wVUpT3XwVPUqL/foMTwrMaQ.js\";import*as localizedValues from\"./lAoIvMu14-0.js\";const LocaleSelectorFonts=getFonts(LocaleSelector);const FooterFonts=getFonts(Footer);const cycleOrder=[\"D7egmSMls\",\"MDJeSaJyf\"];const serializationHash=\"framer-7hSpb\";const variantClassNames={D7egmSMls:\"framer-v-15flv1r\",MDJeSaJyf:\"framer-v-q2p16v\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const valuesByLocaleId={t8JpYL48c:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transformTemplate=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Variant 1\":\"D7egmSMls\",\"Variant 2\":\"MDJeSaJyf\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"D7egmSMls\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"D7egmSMls\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-15flv1r\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"D7egmSMls\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref??ref1,style:{...style},...addPropertyOverrides({MDJeSaJyf:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5406rl\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"WBAtW4PNa\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-nu73s2-container\",layoutDependency:layoutDependency,layoutId:\"rusifYN10-container\",transformTemplate:transformTemplate,...addPropertyOverrides({MDJeSaJyf:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(LocaleSelector,{caret:{color:\"rgb(0, 0, 0)\",size:12,type:\"default\"},fillColor:\"rgb(238, 238, 238)\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",letterSpacing:\"0em\",lineHeight:\"1.5em\"},height:\"100%\",id:\"rusifYN10\",layoutId:\"rusifYN10\",options:{focus:{color:\"rgb(0, 153, 255)\",offset:0,style:\"solid\",width:1},gap:5,title:true},padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:10,radiusBottomLeft:10,radiusBottomRight:10,radiusPerConrner:false,radiusTopLeft:10,radiusTopRight:10,style:{width:\"100%\"},textColor:\"rgb(0, 0, 0)\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jnxq6m-container\",layoutDependency:layoutDependency,layoutId:\"AWpnTThRp-container\",children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"AWpnTThRp\",layoutId:\"AWpnTThRp\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})]})})})})});});const css=['.framer-7hSpb [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7hSpb .framer-zhpx02 { display: block; }\",\".framer-7hSpb.framer-15flv1r { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-7hSpb .framer-5406rl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 50px 50px 50px 50px; position: relative; width: 100%; }\",\".framer-7hSpb .framer-nu73s2-container { flex: none; height: auto; left: 20px; position: absolute; top: 50%; width: 120px; z-index: 1; }\",\".framer-7hSpb .framer-jnxq6m-container { flex: none; height: 26px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7hSpb.framer-15flv1r, .framer-7hSpb .framer-5406rl { gap: 0px; } .framer-7hSpb.framer-15flv1r > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-7hSpb.framer-15flv1r > :first-child { margin-top: 0px; } .framer-7hSpb.framer-15flv1r > :last-child { margin-bottom: 0px; } .framer-7hSpb .framer-5406rl > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-7hSpb .framer-5406rl > :first-child { margin-left: 0px; } .framer-7hSpb .framer-5406rl > :last-child { margin-right: 0px; } }\",\".framer-7hSpb.framer-v-q2p16v .framer-5406rl { flex-direction: column; gap: 25px; z-index: 1; }\",\".framer-7hSpb.framer-v-q2p16v .framer-nu73s2-container { left: unset; order: 1; position: relative; top: unset; }\",\".framer-7hSpb.framer-v-q2p16v .framer-jnxq6m-container { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7hSpb.framer-v-q2p16v .framer-5406rl { gap: 0px; } .framer-7hSpb.framer-v-q2p16v .framer-5406rl > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-7hSpb.framer-v-q2p16v .framer-5406rl > :first-child { margin-top: 0px; } .framer-7hSpb.framer-v-q2p16v .framer-5406rl > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 126\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"MDJeSaJyf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n */const FramerlAoIvMu14=withCSS(Component,css,\"framer-7hSpb\");export default FramerlAoIvMu14;FramerlAoIvMu14.displayName=\"footer-large\";FramerlAoIvMu14.defaultProps={height:126,width:1200};addPropertyControls(FramerlAoIvMu14,{variant:{options:[\"D7egmSMls\",\"MDJeSaJyf\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerlAoIvMu14,[...LocaleSelectorFonts,...FooterFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlAoIvMu14\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MDJeSaJyf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"126\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{Link}from\"framer\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"iRa2Urr9s\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\"Platform\"})})})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZYBemtABE\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\"Platform\"})})})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"f0JrX_8fc\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\"Cobot for sales rep\"})})})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u0pVg0dqp\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\"Cobot for accountant\"})})})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"iRa2Urr9s\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\"Platform\"})})})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fyxHY82ZH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\"About\"})})})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"sjm4Gvk4L\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\"Contact\"})})})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Connection\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{Link}from\"framer\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Use cases\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Use cases\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Use cases\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Use cases\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Compte\"})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZYBemtABE\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\"Cobot for website\"})})})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Cobot for sales\"})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Support\"})});export const v8=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"f0JrX_8fc\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\"Cobot for salesmen\"})})})});export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Cobot for consulting\"})});export const v10=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Profil\"})});export const v11=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Profil\"})});export const v12=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Cobot for accountant\"})});export const v13=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u0pVg0dqp\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\"Cobot for Accountant\"})})})});export const v14=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"x5n_2g6RN\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\"Let's create your cobot\"})})})});export const v15=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Your cobot\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (61bac00)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/o691vCIKGN7rodBZpvWv/Fl1RMr5gHamekBn3mnOF/AS4PcgcTr.js\";import*as localizedValues from\"./S7Z8XJajt-0.js\";const cycleOrder=[\"qGhyIxquL\",\"JnXmYvrpf\",\"g0IWN1_Ye\",\"mnKShZprL\"];const serializationHash=\"framer-t6I5F\";const variantClassNames={g0IWN1_Ye:\"framer-v-u2yobo\",JnXmYvrpf:\"framer-v-brlhhq\",mnKShZprL:\"framer-v-1e5oc96\",qGhyIxquL:\"framer-v-xkivpj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const valuesByLocaleId={t8JpYL48c:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Background Default\":\"g0IWN1_Ye\",\"Background Open\":\"mnKShZprL\",Default:\"qGhyIxquL\",Open:\"JnXmYvrpf\"};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:\"qGhyIxquL\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"qGhyIxquL\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap133rv80=activeVariantCallback(async(...args)=>{setVariant(\"JnXmYvrpf\");});const onTap1x1nqvz=activeVariantCallback(async(...args)=>{setVariant(\"qGhyIxquL\");});const onTap18kb3gv=activeVariantCallback(async(...args)=>{setVariant(\"mnKShZprL\");});const onTapvox6p2=activeVariantCallback(async(...args)=>{setVariant(\"g0IWN1_Ye\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"JnXmYvrpf\",\"mnKShZprL\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-xkivpj\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"qGhyIxquL\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({g0IWN1_Ye:{\"data-framer-name\":\"Background Default\"},JnXmYvrpf:{\"data-framer-name\":\"Open\"},mnKShZprL:{\"data-framer-name\":\"Background Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13ycei1\",\"data-framer-name\":\"Menu Item\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"bnwtp7Hcs\",onTap:onTap133rv80,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:9,borderBottomRightRadius:9,borderTopLeftRadius:9,borderTopRightRadius:9,boxShadow:\"none\"},variants:{g0IWN1_Ye:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14,boxShadow:\"0px 10px 25px 0px rgba(0, 0, 0, 0.1)\"},mnKShZprL:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14,boxShadow:\"0px 10px 25px 0px rgba(0, 0, 0, 0.1)\"}},...addPropertyOverrides({g0IWN1_Ye:{onTap:onTap18kb3gv},JnXmYvrpf:{onTap:onTap1x1nqvz},mnKShZprL:{onTap:onTapvox6p2}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Cas d'usage\"})}),className:\"framer-7i4bqk\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"F7E7lKufK\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({g0IWN1_Ye:{children:(_getLocalizedValue1=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Cas d'usage\"})})},JnXmYvrpf:{children:(_getLocalizedValue2=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Cas d'usage\"})})},mnKShZprL:{children:(_getLocalizedValue3=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Cas d'usage\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2bdxqd\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Nc1MSw_vX\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8 8\"><path d=\"M 1.036 3.555 C 0.593 2.89 1.07 2 1.869 2 L 6.131 2 C 6.93 2 7.407 2.89 6.964 3.555 L 4.832 6.752 C 4.436 7.346 3.564 7.346 3.168 6.752 Z\" fill=\"#666666\"></path></svg>',svgContentId:2013132379,withExternalLayout:true,...addPropertyOverrides({JnXmYvrpf:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8 8\"><path d=\"M 1.036 1.555 C 0.593 0.89 1.07 0 1.869 0 L 6.131 0 C 6.93 0 7.407 0.89 6.964 1.555 L 4.832 4.752 C 4.436 5.346 3.564 5.346 3.168 4.752 Z\" transform=\"translate(0 1) rotate(-180 4 3)\" fill=\"#666666\"></path></svg>',svgContentId:720415025},mnKShZprL:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8 8\"><path d=\"M 1.036 1.555 C 0.593 0.89 1.07 0 1.869 0 L 6.131 0 C 6.93 0 7.407 0.89 6.964 1.555 L 4.832 4.752 C 4.436 5.346 3.564 5.346 3.168 4.752 Z\" transform=\"translate(0 1) rotate(180 4 3)\" fill=\"#666666\"></path></svg>',svgContentId:134152735}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fsu99r\",\"data-framer-name\":\"Dropdown\",layoutDependency:layoutDependency,layoutId:\"pTXw_DdRC\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14,boxShadow:\"0px 10px 25px 0px rgba(0, 0, 0, 0.1)\",opacity:0},variants:{JnXmYvrpf:{opacity:1},mnKShZprL:{opacity:1}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue4=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Account\"})}),className:\"framer-3ejcym\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"ETu3q8j0V\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JnXmYvrpf:{children:(_getLocalizedValue5=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZYBemtABE\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\"Cobot pour votre site Web\"})})})})},mnKShZprL:{children:(_getLocalizedValue6=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Cobot de vente\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue7=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Support\"})}),className:\"framer-12a4hfd\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"VXTozxdju\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JnXmYvrpf:{children:(_getLocalizedValue8=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"f0JrX_8fc\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\"Cobot pour vos commerciaux\"})})})})},mnKShZprL:{children:(_getLocalizedValue9=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Cobot de conseil\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue10=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Profile\"})}),className:\"framer-yk33bd\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"YWY2X5HIJ\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JnXmYvrpf:{children:(_getLocalizedValue11=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u0pVg0dqp\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\"Cobot pour experts-comptable\"})}),\"s\"]})})},mnKShZprL:{children:(_getLocalizedValue12=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Cobot pour experts-comptables\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue13=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u0pVg0dqp\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\"Cobot pour Expert Comptable\"})})})}),className:\"framer-pvksk8\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"d8_UUTok9\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JnXmYvrpf:{children:(_getLocalizedValue14=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"x5n_2g6RN\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\"Cr\\xe9ons votre cobot\"})})})})},mnKShZprL:{children:(_getLocalizedValue15=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Votre cobot\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=['.framer-t6I5F [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-t6I5F .framer-5k1z65 { display: block; }\",\".framer-t6I5F.framer-xkivpj { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-t6I5F .framer-13ycei1 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 25px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-t6I5F .framer-7i4bqk, .framer-t6I5F .framer-3ejcym, .framer-t6I5F .framer-12a4hfd, .framer-t6I5F .framer-yk33bd, .framer-t6I5F .framer-pvksk8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-t6I5F .framer-2bdxqd { flex: none; height: 8px; position: relative; width: 8px; }\",\".framer-t6I5F .framer-fsu99r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 20px 20px 20px; position: absolute; right: 0px; top: 30px; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-t6I5F.framer-xkivpj, .framer-t6I5F .framer-13ycei1, .framer-t6I5F .framer-fsu99r { gap: 0px; } .framer-t6I5F.framer-xkivpj > *, .framer-t6I5F .framer-fsu99r > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-t6I5F.framer-xkivpj > :first-child, .framer-t6I5F .framer-fsu99r > :first-child { margin-top: 0px; } .framer-t6I5F.framer-xkivpj > :last-child, .framer-t6I5F .framer-fsu99r > :last-child { margin-bottom: 0px; } .framer-t6I5F .framer-13ycei1 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-t6I5F .framer-13ycei1 > :first-child { margin-left: 0px; } .framer-t6I5F .framer-13ycei1 > :last-child { margin-right: 0px; } }\",\".framer-t6I5F.framer-v-brlhhq .framer-fsu99r { top: 40px; }\",\".framer-t6I5F.framer-v-u2yobo .framer-13ycei1, .framer-t6I5F.framer-v-1e5oc96 .framer-13ycei1 { height: 45px; justify-content: center; padding: 10px 15px 10px 15px; z-index: 1; }\",\".framer-t6I5F.framer-v-1e5oc96 .framer-fsu99r { top: 60px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 25\n * @framerIntrinsicWidth 108\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"JnXmYvrpf\":{\"layout\":[\"auto\",\"auto\"]},\"g0IWN1_Ye\":{\"layout\":[\"auto\",\"auto\"]},\"mnKShZprL\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n */const FramerS7Z8XJajt=withCSS(Component,css,\"framer-t6I5F\");export default FramerS7Z8XJajt;FramerS7Z8XJajt.displayName=\"Dropdown Flex\";FramerS7Z8XJajt.defaultProps={height:25,width:108};addPropertyControls(FramerS7Z8XJajt,{variant:{options:[\"qGhyIxquL\",\"JnXmYvrpf\",\"g0IWN1_Ye\",\"mnKShZprL\"],optionTitles:[\"Default\",\"Open\",\"Background Default\",\"Background Open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerS7Z8XJajt,[{family:\"Manrope\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_A87jxeN7B.woff2\",weight:\"600\"},...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerS7Z8XJajt\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"JnXmYvrpf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"g0IWN1_Ye\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mnKShZprL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"108\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"25\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./S7Z8XJajt.map", "// Generated by Framer (018ad06)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/o691vCIKGN7rodBZpvWv/Fl1RMr5gHamekBn3mnOF/AS4PcgcTr.js\";import*as localizedValues from\"./nasKr5qj1-0.js\";import DropdownFlex from\"https://framerusercontent.com/modules/eDUIfFbHeaoQJIqOyb8C/lUCCeCXaEpsQCTZJ5pyN/S7Z8XJajt.js\";const DropdownFlexFonts=getFonts(DropdownFlex);const cycleOrder=[\"e2lrBNd1S\",\"RJAzMD_Dc\",\"faQl2zuJX\",\"MVP41BS4g\"];const serializationHash=\"framer-SV0fG\";const variantClassNames={e2lrBNd1S:\"framer-v-ebkoqy\",faQl2zuJX:\"framer-v-rxq5yl\",MVP41BS4g:\"framer-v-1h2rphr\",RJAzMD_Dc:\"framer-v-grq6zu\"};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 valuesByLocaleId={t8JpYL48c:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};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(React.Fragment);const humanReadableVariantMap={\"Phone Open\":\"MVP41BS4g\",Desktop:\"e2lrBNd1S\",Phone:\"faQl2zuJX\",Tablet:\"RJAzMD_Dc\"};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:\"e2lrBNd1S\"};};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:\"e2lrBNd1S\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapt0b31n=activeVariantCallback(async(...args)=>{setVariant(\"MVP41BS4g\");});const onTaph5b5n2=activeVariantCallback(async(...args)=>{setVariant(\"faQl2zuJX\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"RJAzMD_Dc\")return false;return true;};const isDisplayed1=()=>{if([\"faQl2zuJX\",\"MVP41BS4g\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"faQl2zuJX\",\"MVP41BS4g\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"faQl2zuJX\")return false;return true;};const isDisplayed4=()=>{if(baseVariant===\"MVP41BS4g\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"RJAzMD_Dc\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ebkoqy\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"e2lrBNd1S\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.08)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({faQl2zuJX:{\"data-framer-name\":\"Phone\"},MVP41BS4g:{\"data-framer-name\":\"Phone Open\"},RJAzMD_Dc:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l6pl09\",layoutDependency:layoutDependency,layoutId:\"i3RL3fdyp\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-erp30v\",\"data-framer-name\":\"Title and Icon\",layoutDependency:layoutDependency,layoutId:\"qvR7mGqa8\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Pb65rNmPe\"},openInNewTab:false,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1tjjdla framer-1cxdiwf\",\"data-framer-name\":\"Logo\",fill:\"black\",intrinsicHeight:187,intrinsicWidth:1027,layoutDependency:layoutDependency,layoutId:\"kprUfP0dT\",svg:'<svg width=\"1027\" height=\"187\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M189.323 91.009c1.276 51.317-39.838 93.942-91.838 95.208-52 1.26-95.193-39.318-96.469-90.635C-.265 44.269 40.849 1.639 92.849.378c52-1.265 95.193 39.313 96.474 90.63Z\" fill=\"#EB5C2E\"/><path d=\"m142.813 17.582-33.859.822C83.771 19.02 62.417 34.17 52.917 55.52a13.16 13.16 0 0 1 3.104-.474c9.938-.245 18.271 10.734 18.615 24.51.333 13.527-7.156 24.699-16.823 25.334a33.651 33.651 0 0 0 24.198 9.37l92.495-2.25c18.526-.448 33.172-15.636 32.713-33.917-.854-34.26-29.687-61.354-64.406-60.51Zm-1.88 163.119-21.964.537c-22.526.547-41.234-17.031-41.786-39.261-.297-11.859 9.203-21.713 21.224-22.005l60.005-1.458c12.021-.292 22 9.088 22.297 20.948.557 22.229-17.25 40.693-39.776 41.239Z\" fill=\"#fff\"/><path d=\"m175.584 98.592-64.36 1.568c-8.718.208-16.041-6.214-16.244-14.354l-.313-12.48c-.198-8.135 6.797-14.687 15.526-14.625l64.412.464c7.791.057 14.192 6.234 14.385 13.797l.286 11.599c.193 7.562-5.901 13.843-13.692 14.031Z\" fill=\"#00568A\"/><path d=\"M131.308 78.02c.135 5.431-4.443 9.895-10.276 9.963-5.886.073-10.808-4.35-10.948-9.875-.136-5.526 4.562-9.985 10.453-9.97 5.833.022 10.635 4.444 10.771 9.881Zm43.515-.188c.131 5.255-4.146 9.567-9.588 9.63-5.49.062-10.089-4.209-10.224-9.547-.13-5.333 4.25-9.64 9.745-9.625 5.448.016 9.937 4.292 10.067 9.542Z\" fill=\"#fff\"/><path d=\"M163.672 119.582c.058 2.291-15.427 4.526-34.588 4.989-19.157.469-34.74-1.01-34.797-3.302-.057-2.286 15.432-4.521 34.594-4.989 19.156-.464 34.734 1.015 34.791 3.302Z\" fill=\"#FDE6DA\"/><path d=\"M200.599 51.852a61.181 61.181 0 0 1 6.62 26.24c.229 9.063-3.265 17.354-9.088 23.474.588.068 1.187.099 1.791.083 9.938-.239 17.714-11.604 17.37-25.385-.323-12.88-7.625-23.307-16.693-24.412Z\" fill=\"#EB5C2E\"/><path d=\"M51.907 59.321c-5.006.125-9.271 4.308-11.532 10.443a5.794 5.794 0 0 1 1.766-.333c4.344-.105 7.99 4.692 8.14 10.718.152 6.026-3.25 10.995-7.593 11.1a5.728 5.728 0 0 1-1.948-.298c2.536 6.245 7.094 10.391 12.213 10.266 7.6-.182 13.532-9.713 13.245-21.281-.291-11.568-6.687-20.797-14.291-20.615Z\" fill=\"#fff\"/><path d=\"M46.698 80.4c.13 5.103-2.49 9.312-5.838 9.39-3.36.083-6.182-3.99-6.307-9.094-.125-5.104 2.49-9.307 5.843-9.39 3.354-.078 6.177 3.99 6.302 9.093Z\" fill=\"#fff\"/><path d=\"M289.334 163.123c1.333-.87 2-2.234 2-4.099 0-3.635-2.651-5.448-7.964-5.448h-10.708v10.849h10.708c2.641 0 4.63-.432 5.964-1.302Zm-16.672-23.755V149.8h9.547c2.39 0 4.229-.442 5.515-1.323 1.292-.885 1.933-2.182 1.933-3.89 0-1.709-.641-3.005-1.933-3.891-1.286-.885-3.125-1.328-5.515-1.328h-9.547Zm21.75 14.792c1.083 1.38 1.63 3.125 1.63 5.234 0 2.828-1.068 5-3.193 6.521-2.125 1.526-5.224 2.286-9.291 2.286H268v-32.604h14.625c3.73 0 6.605.745 8.641 2.235 2.036 1.489 3.052 3.557 3.052 6.192 0 1.709-.396 3.188-1.187 4.427a7.74 7.74 0 0 1-3.193 2.844c1.896.526 3.385 1.479 4.474 2.865Zm33.906-10.646v24.687h-4.239v-3.729c-.902 1.276-2.089 2.261-3.568 2.959-1.469.697-3.078 1.046-4.813 1.046-3.297 0-5.885-.906-7.781-2.724-1.896-1.817-2.838-4.489-2.838-8.036v-14.203h4.468v13.693c0 2.39.573 4.198 1.724 5.427 1.146 1.229 2.792 1.838 4.938 1.838 2.359 0 4.218-.713 5.588-2.14 1.365-1.427 2.047-3.448 2.047-6.058v-12.76m16.953 24.151c-1.859-.542-3.323-1.234-4.375-2.078l1.86-3.537c1.088.776 2.406 1.401 3.963 1.865 1.547.463 3.12.698 4.703.698 3.912 0 5.87-1.12 5.87-3.354 0-.745-.266-1.334-.797-1.771-.526-.432-1.187-.75-1.979-.953-.792-.203-1.917-.427-3.375-.677-1.99-.308-3.609-.667-4.865-1.068a7.52 7.52 0 0 1-3.239-2.052c-.901-.964-1.349-2.313-1.349-4.052 0-2.235.932-4.026 2.792-5.38 1.864-1.349 4.364-2.026 7.5-2.026 1.645 0 3.291.203 4.937.609 1.646.401 2.995.948 4.052 1.63l-1.911 3.537c-2.016-1.303-4.391-1.954-7.125-1.954-1.896 0-3.339.308-4.334.928-.989.625-1.489 1.442-1.489 2.468 0 .808.281 1.448.838 1.912.563.463 1.25.807 2.073 1.026.823.219 1.979.463 3.469.745 1.99.343 3.594.708 4.823 1.093a7.244 7.244 0 0 1 3.146 1.979c.87.933 1.302 2.235 1.302 3.912 0 2.234-.953 4.016-2.865 5.333-1.911 1.323-4.51 1.979-7.802 1.979a20.77 20.77 0 0 1-5.823-.812Zm24.782-24.151h4.468v24.687h-4.468v-24.687Zm.067-5.589a2.744 2.744 0 0 1-.859-2.047c0-.807.286-1.5.859-2.072.573-.579 1.297-.865 2.167-.865.87 0 1.588.271 2.167.818.572.541.859 1.218.859 2.026 0 .838-.287 1.541-.859 2.114-.579.578-1.297.865-2.167.865-.87 0-1.594-.281-2.167-.839Zm36.281 8.084c1.849 1.812 2.771 4.474 2.771 7.984v14.208h-4.468v-13.698c0-2.39-.579-4.192-1.724-5.401-1.151-1.208-2.797-1.817-4.938-1.817-2.422 0-4.333.708-5.729 2.12-1.396 1.416-2.094 3.442-2.094 6.078v12.718h-4.474v-24.687h4.287v3.729c.901-1.276 2.119-2.255 3.656-2.937 1.536-.683 3.281-1.026 5.24-1.026 3.135 0 5.625.911 7.473 2.729Zm18.631 3c-1.443 1.307-2.287 3.01-2.537 5.125h15.834c-.245-2.078-1.094-3.782-2.537-5.099-1.443-1.323-3.234-1.979-5.38-1.979-2.141 0-3.938.651-5.38 1.953Zm17.489 8.338h-20.026c.281 2.172 1.235 3.922 2.865 5.24 1.63 1.323 3.656 1.979 6.078 1.979 2.948 0 5.323-.995 7.125-2.979l2.469 2.885c-1.12 1.302-2.511 2.297-4.167 2.985-1.661.682-3.516 1.02-5.568 1.02-2.609 0-4.922-.536-6.937-1.604-2.021-1.073-3.578-2.573-4.682-4.495-1.105-1.927-1.657-4.098-1.657-6.52 0-2.391.537-4.547 1.61-6.474 1.067-1.927 2.547-3.427 4.427-4.495 1.875-1.073 3.995-1.609 6.354-1.609s4.463.536 6.312 1.609c1.844 1.068 3.292 2.568 4.334 4.495 1.036 1.927 1.557 4.13 1.557 6.614 0 .339-.031.792-.094 1.349Zm10.245 10.318c-1.859-.542-3.323-1.234-4.375-2.078l1.865-3.537c1.083.776 2.406 1.401 3.953 1.865 1.557.463 3.125.698 4.708.698 3.912 0 5.87-1.12 5.87-3.354 0-.745-.266-1.334-.792-1.771-.531-.432-1.192-.75-1.979-.953-.797-.203-1.922-.427-3.38-.677-1.984-.308-3.609-.667-4.87-1.068a7.533 7.533 0 0 1-3.234-2.052c-.901-.964-1.349-2.313-1.349-4.052 0-2.235.932-4.026 2.791-5.38 1.865-1.349 4.365-2.026 7.5-2.026 1.646 0 3.292.203 4.938.609 1.646.401 2.995.948 4.052 1.63l-1.911 3.537c-2.016-1.303-4.391-1.954-7.125-1.954-1.896 0-3.339.308-4.334.928-.995.625-1.484 1.442-1.484 2.468 0 .808.276 1.448.833 1.912.557.463 1.25.807 2.073 1.026.823.219 1.979.463 3.469.745 1.989.343 3.594.708 4.823 1.093a7.19 7.19 0 0 1 3.14 1.979c.87.933 1.308 2.235 1.308 3.912 0 2.234-.953 4.016-2.865 5.333-1.911 1.323-4.51 1.979-7.802 1.979-2.016 0-3.958-.27-5.823-.812Zm26.037 0c-1.86-.542-3.323-1.234-4.375-2.078l1.859-3.537c1.088.776 2.406 1.401 3.958 1.865 1.552.463 3.12.698 4.709.698 3.911 0 5.864-1.12 5.864-3.354 0-.745-.26-1.334-.791-1.771-.527-.432-1.188-.75-1.98-.953-.791-.203-1.916-.427-3.375-.677-1.989-.308-3.609-.667-4.869-1.068a7.53 7.53 0 0 1-3.235-2.052c-.901-.964-1.349-2.313-1.349-4.052 0-2.235.927-4.026 2.792-5.38 1.864-1.349 4.364-2.026 7.5-2.026 1.646 0 3.292.203 4.937.609 1.646.401 2.995.948 4.052 1.63l-1.911 3.537c-2.016-1.303-4.396-1.954-7.125-1.954-1.896 0-3.339.308-4.333.928-.995.625-1.49 1.442-1.49 2.468 0 .808.281 1.448.839 1.912.557.463 1.25.807 2.073 1.026.822.219 1.979.463 3.468.745 1.99.343 3.594.708 4.823 1.093a7.228 7.228 0 0 1 3.141 1.979c.87.933 1.307 2.235 1.307 3.912 0 2.234-.953 4.016-2.864 5.333-1.912 1.323-4.511 1.979-7.803 1.979-2.015 0-3.958-.27-5.822-.812Z\" fill=\"#00568A\"/><path d=\"M520.74 166.405c-2.625-1.443-4.682-3.428-6.172-5.959-1.489-2.531-2.234-5.38-2.234-8.547 0-3.166.745-6.015 2.234-8.547 1.49-2.531 3.557-4.52 6.198-5.963 2.635-1.443 5.589-2.167 8.849-2.167 2.542 0 4.875.433 6.984 1.281A14.266 14.266 0 0 1 542 140.3l-3.026 2.938c-2.453-2.578-5.51-3.87-9.172-3.87-2.421 0-4.614.547-6.567 1.63-1.959 1.089-3.49 2.584-4.589 4.495-1.104 1.912-1.656 4.047-1.656 6.406 0 2.36.552 4.495 1.656 6.401 1.099 1.912 2.63 3.412 4.589 4.495 1.953 1.089 4.146 1.63 6.567 1.63 3.631 0 6.688-1.302 9.172-3.911l3.026 2.937c-1.489 1.677-3.296 2.948-5.421 3.818-2.131.87-4.469 1.302-7.011 1.302-3.26 0-6.203-.724-8.828-2.166Zm43.781-2.933c1.261-.729 2.245-1.755 2.959-3.073.713-1.323 1.073-2.833 1.073-4.541 0-1.709-.36-3.224-1.073-4.542-.714-1.318-1.698-2.339-2.959-3.047-1.255-.719-2.677-1.078-4.26-1.078-1.583 0-3.005.359-4.266 1.078-1.255.708-2.25 1.729-2.974 3.047-.734 1.318-1.099 2.833-1.099 4.542 0 1.708.365 3.218 1.099 4.541.724 1.318 1.719 2.344 2.974 3.073 1.261.729 2.683 1.094 4.266 1.094 1.583 0 3.005-.365 4.26-1.094Zm-10.875 3.375c-1.953-1.083-3.484-2.583-4.588-4.495-1.104-1.906-1.651-4.072-1.651-6.494 0-2.422.547-4.589 1.651-6.5 1.104-1.912 2.635-3.401 4.588-4.469 1.959-1.068 4.162-1.609 6.615-1.609 2.453 0 4.651.541 6.588 1.609a11.662 11.662 0 0 1 4.568 4.469c1.099 1.911 1.651 4.078 1.651 6.5 0 2.422-.552 4.588-1.651 6.494a11.83 11.83 0 0 1-4.568 4.495c-1.937 1.089-4.135 1.63-6.588 1.63-2.453 0-4.656-.541-6.615-1.63Z\" fill=\"#EB5C2E\"/><path d=\"M581.964 168.201h4.474v-34.562h-4.474v34.562Zm15.698 0h4.469v-34.562h-4.469v34.562Zm28.083-4.307c1.245-.76 2.141-1.844 2.703-3.239v-3.448h-6.896c-3.786 0-5.682 1.276-5.682 3.817 0 1.245.485 2.224 1.448 2.938.958.713 2.297 1.068 4.005 1.068 1.703 0 3.177-.375 4.422-1.136Zm4.448-18.099c1.818 1.677 2.724 4.177 2.724 7.5v14.901h-4.24v-3.255c-.739 1.146-1.807 2.026-3.187 2.63-1.385.604-3.021.906-4.911.906-2.766 0-4.98-.666-6.641-2-1.662-1.338-2.49-3.088-2.49-5.265 0-2.172.792-3.917 2.375-5.24 1.584-1.317 4.099-1.979 7.547-1.979h7.078v-.885c0-1.922-.562-3.401-1.677-4.422-1.12-1.026-2.765-1.542-4.937-1.542-1.459 0-2.891.245-4.287.724-1.396.484-2.578 1.125-3.536 1.932l-1.865-3.354c1.271-1.021 2.792-1.807 4.563-2.349 1.771-.541 3.651-.817 5.635-.817 3.417 0 6.031.838 7.849 2.515Zm30.693 17.677c1.255-.729 2.25-1.755 2.979-3.073.734-1.323 1.094-2.833 1.094-4.541 0-1.709-.36-3.224-1.094-4.542-.729-1.318-1.724-2.339-2.979-3.047-1.255-.719-2.677-1.078-4.261-1.078-1.552 0-2.968.359-4.239 1.078-1.276.708-2.266 1.729-2.979 3.047-.714 1.318-1.073 2.833-1.073 4.542 0 1.708.359 3.218 1.073 4.541.713 1.318 1.703 2.344 2.979 3.073 1.271.729 2.687 1.094 4.239 1.094 1.584 0 3.006-.365 4.261-1.094Zm2.536-18.609a11.403 11.403 0 0 1 4.453 4.427c1.068 1.896 1.605 4.083 1.605 6.568 0 2.484-.537 4.682-1.605 6.588a11.351 11.351 0 0 1-4.453 4.448c-1.89 1.057-4.036 1.583-6.427 1.583-1.833 0-3.505-.354-5.026-1.067a9.72 9.72 0 0 1-3.776-3.12v3.911h-4.281v-34.562h4.469v13.604a9.49 9.49 0 0 1 3.724-2.958c1.494-.672 3.119-1.005 4.89-1.005 2.391 0 4.537.531 6.427 1.583Zm29.787 18.609c1.26-.729 2.245-1.755 2.958-3.073.714-1.323 1.068-2.833 1.068-4.541 0-1.709-.354-3.224-1.068-4.542-.713-1.318-1.698-2.339-2.958-3.047-1.255-.719-2.677-1.078-4.261-1.078-1.583 0-3.005.359-4.26 1.078-1.26.708-2.255 1.729-2.984 3.047-.73 1.318-1.094 2.833-1.094 4.542 0 1.708.364 3.218 1.094 4.541.729 1.318 1.724 2.344 2.984 3.073 1.255.729 2.677 1.094 4.26 1.094 1.584 0 3.006-.365 4.261-1.094Zm-10.875 3.375c-1.953-1.083-3.49-2.583-4.589-4.495-1.104-1.906-1.651-4.072-1.651-6.494 0-2.422.547-4.589 1.651-6.5 1.099-1.912 2.636-3.401 4.589-4.469 1.958-1.068 4.161-1.609 6.614-1.609 2.453 0 4.651.541 6.589 1.609a11.614 11.614 0 0 1 4.562 4.469c1.105 1.911 1.657 4.078 1.657 6.5 0 2.422-.552 4.588-1.657 6.494a11.78 11.78 0 0 1-4.562 4.495c-1.938 1.089-4.136 1.63-6.589 1.63-2.453 0-4.656-.541-6.614-1.63Zm36.047-22.448c1.52-.744 3.369-1.119 5.546-1.119v4.333a8.789 8.789 0 0 0-1.026-.047c-2.421 0-4.322.724-5.708 2.167-1.38 1.442-2.068 3.5-2.068 6.172v12.296h-4.474v-24.687h4.287v4.146c.776-1.427 1.922-2.516 3.443-3.261Zm26.083 19.495c1.245-.76 2.146-1.844 2.703-3.239v-3.448h-6.896c-3.786 0-5.677 1.276-5.677 3.817 0 1.245.479 2.224 1.443 2.938.958.713 2.297 1.068 4.005 1.068 1.708 0 3.182-.375 4.422-1.136Zm4.448-18.099c1.818 1.677 2.729 4.177 2.729 7.5v14.901h-4.245v-3.255c-.739 1.146-1.807 2.026-3.187 2.63-1.38.604-3.016.906-4.912.906-2.765 0-4.979-.666-6.635-2-1.667-1.338-2.495-3.088-2.495-5.265 0-2.172.792-3.917 2.375-5.24 1.583-1.317 4.099-1.979 7.547-1.979h7.078v-.885c0-1.922-.557-3.401-1.677-4.422-1.12-1.026-2.766-1.542-4.938-1.542a13.11 13.11 0 0 0-4.281.724c-1.401.484-2.578 1.125-3.541 1.932l-1.865-3.354c1.276-1.021 2.797-1.807 4.568-2.349 1.765-.541 3.646-.817 5.635-.817 3.412 0 6.031.838 7.844 2.515Zm27.599 20.958c-.651.563-1.464.99-2.422 1.282-.964.297-1.958.442-2.984.442-2.485 0-4.407-.666-5.776-2-1.365-1.338-2.047-3.244-2.047-5.734v-13.552h-4.193v-3.677h4.193v-5.401h4.474v5.401h7.078v3.677h-7.078v13.37c0 1.333.333 2.359 1 3.073.666.718 1.619 1.073 2.864 1.073 1.365 0 2.526-.391 3.49-1.167m9.5-20.026h4.474v24.687h-4.474v-24.687Zm.073-5.589a2.73 2.73 0 0 1-.865-2.047c0-.807.287-1.5.865-2.072.573-.579 1.297-.865 2.161-.865.87 0 1.594.271 2.167.818.578.541.864 1.218.864 2.026 0 .838-.286 1.541-.864 2.114-.573.578-1.297.865-2.167.865-.864 0-1.588-.281-2.161-.839Zm37.468 5.589-10.807 24.687h-4.562l-10.802-24.687h4.656l8.474 19.797 8.666-19.797m15.297 5.495c-1.448 1.307-2.291 3.01-2.536 5.125h15.833c-.25-2.078-1.094-3.782-2.541-5.099-1.443-1.323-3.235-1.979-5.375-1.979-2.141 0-3.938.651-5.381 1.953Zm17.49 8.338h-20.026c.276 2.172 1.229 3.922 2.859 5.24 1.636 1.323 3.657 1.979 6.084 1.979 2.948 0 5.323-.995 7.119-2.979l2.469 2.885c-1.114 1.302-2.505 2.297-4.167 2.985-1.656.682-3.515 1.02-5.562 1.02-2.609 0-4.922-.536-6.943-1.604-2.015-1.073-3.578-2.573-4.682-4.495-1.099-1.927-1.651-4.098-1.651-6.52 0-2.391.536-4.547 1.609-6.474 1.068-1.927 2.542-3.427 4.422-4.495 1.88-1.073 4-1.609 6.36-1.609 2.359 0 4.463.536 6.312 1.609 1.844 1.068 3.287 2.568 4.328 4.495 1.042 1.927 1.563 4.13 1.563 6.614 0 .339-.032.792-.094 1.349Zm44.203-4.937c1.552-1.271 2.323-3.089 2.323-5.448 0-2.36-.771-4.167-2.323-5.427-1.557-1.261-3.807-1.886-6.755-1.886h-7.917v14.672h7.917c2.948 0 5.198-.635 6.755-1.911Zm2.464 15.791-7.032-10.015c-.869.062-1.552.094-2.047.094h-8.057v9.921h-4.661v-32.604h12.718c4.219 0 7.542 1.011 9.964 3.026 2.422 2.021 3.63 4.797 3.63 8.339 0 2.515-.62 4.656-1.859 6.427-1.245 1.771-3.011 3.057-5.307 3.864l7.729 10.948m23.87-4.729c1.26-.729 2.244-1.755 2.958-3.073.713-1.323 1.073-2.833 1.073-4.541 0-1.709-.36-3.224-1.073-4.542-.714-1.318-1.698-2.339-2.958-3.047-1.256-.719-2.678-1.078-4.261-1.078-1.583 0-3.005.359-4.266 1.078-1.255.708-2.25 1.729-2.979 3.047-.729 1.318-1.093 2.833-1.093 4.542 0 1.708.364 3.218 1.093 4.541.729 1.318 1.724 2.344 2.979 3.073 1.261.729 2.683 1.094 4.266 1.094 1.583 0 3.005-.365 4.261-1.094Zm-10.875 3.375a11.777 11.777 0 0 1-4.589-4.495c-1.104-1.906-1.651-4.072-1.651-6.494 0-2.422.547-4.589 1.651-6.5a11.612 11.612 0 0 1 4.589-4.469c1.958-1.068 4.161-1.609 6.614-1.609 2.453 0 4.646.541 6.589 1.609a11.62 11.62 0 0 1 4.562 4.469c1.104 1.911 1.656 4.078 1.656 6.5 0 2.422-.552 4.588-1.656 6.494a11.787 11.787 0 0 1-4.562 4.495c-1.943 1.089-4.136 1.63-6.589 1.63-2.453 0-4.656-.541-6.614-1.63Z\" fill=\"#00568A\"/><path d=\"M960.599 163.472c1.256-.729 2.245-1.755 2.98-3.073.729-1.323 1.093-2.833 1.093-4.541 0-1.709-.364-3.224-1.093-4.542-.735-1.318-1.724-2.339-2.98-3.047-1.26-.719-2.682-1.078-4.265-1.078-1.552 0-2.964.359-4.24 1.078-1.271.708-2.265 1.729-2.979 3.047s-1.073 2.833-1.073 4.542c0 1.708.359 3.218 1.073 4.541.714 1.318 1.708 2.344 2.979 3.073 1.276.729 2.688 1.094 4.24 1.094 1.583 0 3.005-.365 4.265-1.094Zm2.537-18.609a11.43 11.43 0 0 1 4.448 4.427c1.073 1.896 1.609 4.083 1.609 6.568 0 2.484-.536 4.682-1.609 6.588a11.378 11.378 0 0 1-4.448 4.448c-1.896 1.057-4.037 1.583-6.427 1.583-1.834 0-3.511-.354-5.031-1.067a9.76 9.76 0 0 1-3.777-3.12v3.911h-4.281v-34.562h4.469v13.604a9.484 9.484 0 0 1 3.729-2.958c1.49-.672 3.12-1.005 4.891-1.005 2.39 0 4.531.531 6.427 1.583Zm29.786 18.609c1.255-.729 2.24-1.755 2.953-3.073.719-1.323 1.073-2.833 1.073-4.541 0-1.709-.354-3.224-1.073-4.542-.713-1.318-1.698-2.339-2.953-3.047-1.26-.719-2.677-1.078-4.265-1.078-1.578 0-3 .359-4.261 1.078-1.255.708-2.25 1.729-2.979 3.047-.729 1.318-1.094 2.833-1.094 4.542 0 1.708.365 3.218 1.094 4.541.729 1.318 1.724 2.344 2.979 3.073 1.261.729 2.683 1.094 4.261 1.094 1.588 0 3.005-.365 4.265-1.094Zm-10.875 3.375c-1.958-1.083-3.489-2.583-4.588-4.495-1.104-1.906-1.657-4.072-1.657-6.494 0-2.422.553-4.589 1.657-6.5 1.099-1.912 2.63-3.401 4.588-4.469 1.953-1.068 4.157-1.609 6.61-1.609 2.453 0 4.651.541 6.593 1.609a11.682 11.682 0 0 1 4.563 4.469c1.107 1.911 1.657 4.078 1.657 6.5 0 2.422-.55 4.588-1.657 6.494a11.85 11.85 0 0 1-4.563 4.495c-1.942 1.089-4.14 1.63-6.593 1.63-2.453 0-4.657-.541-6.61-1.63Zm42.193-.094c-.65.563-1.46.99-2.42 1.282-.97.297-1.95.442-2.98.442-2.49 0-4.41-.666-5.78-2-1.36-1.338-2.04-3.244-2.04-5.734v-13.552h-4.2v-3.677h4.2v-5.401h4.46v5.401h7.08v3.677h-7.08v13.37c0 1.333.34 2.359 1 3.073.68.718 1.63 1.073 2.87 1.073 1.36 0 2.53-.391 3.49-1.167\" fill=\"#EB5C2E\"/><path d=\"M278.105 41.035c.385-1.932.974-3.464 1.755-4.547.708-.99 1.729-1.74 3.13-2.302 1.609-.651 3.745-1.1 6.344-1.318 2.786-.24 6.307-.36 10.453-.36h22.292c4.666 0 8.598.162 11.692.48 2.797.286 5.031.922 6.641 1.89 1.427.86 2.432 2.11 3.073 3.813.734 1.99 1.109 4.828 1.109 8.443a2.844 2.844 0 0 0 2.844 2.843h9.531a2.84 2.84 0 0 0 2.839-2.843c0-3.037-.209-5.865-.631-8.412-.447-2.677-1.26-5.125-2.406-7.276a19.211 19.211 0 0 0-4.745-5.77c-1.937-1.59-4.38-2.912-7.265-3.933-2.761-.969-6.068-1.703-9.828-2.177-3.688-.458-8.016-.693-12.854-.693h-22.292c-5.964 0-11.083.375-15.214 1.115-4.286.765-7.896 1.958-10.739 3.541-2.979 1.662-5.339 3.813-6.99 6.38-1.583 2.464-2.75 5.365-3.463 8.626-.677 3.11-1.079 6.646-1.183 10.51-.099 3.73-.151 7.86-.151 12.38 0 4.532.052 8.662.151 12.391.104 3.86.506 7.396 1.183 10.505.713 3.266 1.88 6.167 3.463 8.625 1.651 2.568 4.011 4.719 6.99 6.38 2.843 1.584 6.458 2.782 10.739 3.542 4.141.74 9.261 1.115 15.214 1.115h22.292c4.838 0 9.166-.235 12.854-.693 3.76-.469 7.078-1.224 9.859-2.234 2.896-1.063 5.344-2.448 7.281-4.115a19.695 19.695 0 0 0 4.729-6.068c1.136-2.255 1.938-4.849 2.386-7.698.411-2.708.62-5.755.62-9.041a2.84 2.84 0 0 0-2.839-2.844h-9.531a2.844 2.844 0 0 0-2.844 2.844c0 2.505-.109 4.724-.328 6.594-.193 1.65-.557 3.067-1.078 4.213a6.602 6.602 0 0 1-1.901 2.463c-.844.678-2.037 1.235-3.547 1.662-1.698.474-3.818.807-6.297.995-2.568.192-5.719.286-9.364.286h-22.292c-4.146 0-7.667-.12-10.453-.36-2.599-.218-4.735-.666-6.349-1.317-1.38-.557-2.396-1.302-3.084-2.281-.776-1.089-1.359-2.62-1.744-4.568-.427-2.182-.683-4.932-.761-8.182-.088-3.401-.13-7.474-.13-12.214s.036-8.817.104-12.224c.063-3.25.307-5.994.735-8.166Zm160.437 49.312h-28.687c-4.151 0-7.672-.12-10.454-.36-2.609-.218-4.744-.666-6.354-1.317-1.38-.557-2.39-1.302-3.088-2.281-.766-1.089-1.354-2.62-1.74-4.568-.427-2.182-.682-4.932-.76-8.177a505.763 505.763 0 0 1-.125-12.219c0-4.74.031-8.817.099-12.224.062-3.255.312-6 .739-8.166.38-1.932.969-3.464 1.755-4.547.709-.99 1.73-1.745 3.125-2.302 1.605-.651 3.74-1.1 6.349-1.318 2.782-.24 6.303-.36 10.454-.36h28.687c4.151 0 7.667.12 10.453.36 2.604.219 4.729.667 6.318 1.318 1.38.557 2.396 1.312 3.109 2.302.782 1.083 1.37 2.614 1.75 4.541.427 2.193.688 4.943.761 8.183.088 3.406.13 7.479.13 12.213 0 4.745-.042 8.818-.13 12.22-.073 3.244-.334 5.994-.761 8.176-.385 1.938-.968 3.469-1.75 4.552-.713.985-1.734 1.74-3.13 2.297-1.604.651-3.745 1.1-6.349 1.318-2.786.24-6.286.36-10.401.36Zm36.359-51.812v-.005c-.724-3.26-1.875-6.162-3.432-8.61-1.64-2.573-3.989-4.729-6.974-6.39-2.838-1.584-6.453-2.777-10.734-3.542-4.141-.74-9.255-1.115-15.219-1.115h-28.687c-5.964 0-11.084.375-15.219 1.115-4.287.765-7.896 1.958-10.735 3.541-2.979 1.662-5.333 3.808-6.989 6.38-1.589 2.464-2.755 5.36-3.464 8.626-.687 3.12-1.083 6.656-1.182 10.505a469.65 469.65 0 0 0-.151 12.385c0 4.537.052 8.662.151 12.386.099 3.86.495 7.396 1.182 10.51.709 3.266 1.875 6.167 3.464 8.63 1.656 2.573 4.01 4.72 6.989 6.375 2.844 1.584 6.454 2.776 10.735 3.542 4.151.74 9.271 1.115 15.219 1.115h28.687c5.948 0 11.068-.375 15.219-1.115 4.281-.766 7.89-1.958 10.734-3.542 2.985-1.661 5.334-3.812 6.974-6.385 1.557-2.453 2.708-5.349 3.432-8.62.678-3.104 1.084-6.64 1.204-10.495a391.9 391.9 0 0 0 .177-12.4c0-4.527-.058-8.662-.177-12.397-.12-3.854-.526-7.39-1.204-10.494Zm32.079 27.323h41.578c3.661 0 6.833.062 9.505.171 2.594.115 4.792.329 6.531.63 1.62.287 2.891.662 3.792 1.11.724.365 1.255.802 1.63 1.35.406.593.698 1.38.859 2.332.198 1.214.302 2.683.302 4.37 0 2.245-.109 4.167-.317 5.719-.188 1.338-.521 2.448-.995 3.312a4.72 4.72 0 0 1-1.703 1.776c-.86.532-2.083.959-3.63 1.271-1.735.35-3.912.584-6.464.693-2.677.11-5.849.172-9.51.172H506.98V65.858Zm58.479-15.646c-.74.469-1.787.849-3.12 1.14-1.5.334-3.365.563-5.552.683-2.302.13-5.047.198-8.229.198H506.98V34.092h48.036c3.036 0 5.552.12 7.469.354 1.604.193 2.896.563 3.729 1.063.625.37 1.01.849 1.255 1.547.354 1.015.537 2.437.537 4.218 0 1.85-.094 3.443-.276 4.755-.146 1.073-.422 1.974-.829 2.688a4.159 4.159 0 0 1-1.442 1.495Zm18.031 13.995c-.891-1.474-1.922-2.75-3.073-3.782a20.037 20.037 0 0 0-3.422-2.479c-.125-.067-.255-.14-.38-.203a17.47 17.47 0 0 0 1.812-1.687c.948-1.006 1.792-2.245 2.511-3.683.698-1.385 1.255-3.026 1.667-4.86.411-1.817.619-3.91.619-6.239 0-3.11-.297-5.932-.869-8.39-.662-2.792-1.99-5.162-3.954-7.037-1.916-1.833-4.593-3.219-7.963-4.12-3.182-.849-7.188-1.265-12.25-1.265h-63.583a2.847 2.847 0 0 0-2.844 2.844V99.55a2.847 2.847 0 0 0 2.844 2.844h57.13c4.859 0 9.114-.224 12.646-.667 3.614-.453 6.75-1.166 9.312-2.12 2.698-.994 4.927-2.301 6.636-3.885a16.495 16.495 0 0 0 3.947-5.562c.87-2.005 1.454-4.271 1.73-6.75.26-2.281.39-4.834.39-7.589 0-2.432-.265-4.635-.797-6.541-.531-1.912-1.239-3.62-2.109-5.073Zm81.641 26.14h-28.693c-4.151 0-7.667-.12-10.448-.36-2.609-.218-4.745-.666-6.354-1.317-1.386-.557-2.396-1.302-3.089-2.281-.771-1.089-1.354-2.62-1.739-4.568-.427-2.182-.688-4.932-.761-8.177a508.11 508.11 0 0 1-.13-12.219c0-4.74.037-8.817.104-12.224.063-3.255.308-6 .74-8.166.38-1.932.969-3.464 1.75-4.547.708-.99 1.734-1.745 3.125-2.302 1.609-.651 3.745-1.1 6.354-1.318 2.781-.24 6.297-.36 10.448-.36h28.693c4.145 0 7.666.12 10.453.36 2.604.219 4.724.667 6.317 1.318 1.375.557 2.391 1.312 3.105 2.302.781 1.083 1.375 2.614 1.75 4.541.432 2.193.687 4.943.765 8.183.084 3.406.13 7.479.13 12.213 0 4.745-.046 8.818-.13 12.22-.078 3.244-.333 5.994-.76 8.176-.386 1.938-.974 3.469-1.755 4.552-.709.985-1.735 1.74-3.125 2.297-1.61.651-3.745 1.1-6.349 1.318-2.787.24-6.287.36-10.401.36Zm36.354-51.812v-.005c-.719-3.26-1.875-6.162-3.433-8.61-1.635-2.573-3.984-4.729-6.968-6.39-2.844-1.584-6.453-2.777-10.74-3.542-4.135-.74-9.255-1.115-15.213-1.115h-28.693c-5.958 0-11.078.375-15.219 1.115-4.281.765-7.896 1.958-10.734 3.541-2.979 1.662-5.328 3.808-6.99 6.38-1.583 2.464-2.75 5.36-3.463 8.626-.683 3.12-1.084 6.656-1.177 10.505a443.6 443.6 0 0 0-.157 12.385c0 4.537.052 8.662.157 12.386.093 3.86.494 7.396 1.177 10.51.713 3.266 1.88 6.167 3.463 8.63 1.662 2.573 4.011 4.72 6.99 6.375 2.844 1.584 6.453 2.776 10.734 3.542 4.151.74 9.271 1.115 15.219 1.115h28.693c5.948 0 11.067-.375 15.213-1.115 4.281-.766 7.891-1.958 10.74-3.542 2.984-1.661 5.333-3.812 6.968-6.385 1.558-2.453 2.714-5.349 3.433-8.62.682-3.104 1.083-6.64 1.208-10.495.115-3.729.172-7.864.172-12.4 0-4.527-.057-8.662-.172-12.397-.125-3.854-.526-7.39-1.208-10.494Zm102.297-18.073h-85.771a2.844 2.844 0 0 0-2.844 2.844v7.942a2.84 2.84 0 0 0 2.844 2.844h35.276V99.55a2.848 2.848 0 0 0 2.849 2.844h9.526a2.844 2.844 0 0 0 2.844-2.844V34.092h35.276a2.84 2.84 0 0 0 2.843-2.844v-7.942a2.843 2.843 0 0 0-2.843-2.844Z\" fill=\"#00568A\"/><path d=\"M862.006 20.462h-9.532a2.843 2.843 0 0 0-2.843 2.844V99.55a2.843 2.843 0 0 0 2.843 2.844h9.532a2.847 2.847 0 0 0 2.843-2.844V23.306a2.847 2.847 0 0 0-2.843-2.844Zm106.937 0h-85.771a2.843 2.843 0 0 0-2.843 2.844v7.942a2.84 2.84 0 0 0 2.843 2.844h35.276V99.55a2.847 2.847 0 0 0 2.844 2.844h9.531a2.844 2.844 0 0 0 2.844-2.844V34.092h35.276a2.844 2.844 0 0 0 2.844-2.844v-7.942a2.847 2.847 0 0 0-2.844-2.844Z\" fill=\"#EB5C2E\"/><path d=\"M1023.98 87.175h-9.52a2.851 2.851 0 0 0-2.85 2.844v9.531a2.851 2.851 0 0 0 2.85 2.844h9.52c1.58 0 2.85-1.276 2.85-2.844v-9.53a2.845 2.845 0 0 0-2.85-2.845Zm-7.14-7.021h4.76c1.53 0 2.78-1.197 2.84-2.718l2.39-54a2.84 2.84 0 0 0-.79-2.094 2.817 2.817 0 0 0-2.06-.88h-9.53a2.84 2.84 0 0 0-2.83 2.974l2.38 54a2.846 2.846 0 0 0 2.84 2.718Z\" fill=\"#00568A\"/><path d=\"m661.084 58.31-13.485-7.786c-2.401-1.38-5.401.35-5.401 3.12v15.573c0 2.766 3 4.5 5.401 3.115l13.485-7.787c2.396-1.385 2.396-4.849 0-6.234Z\" fill=\"#EB5C2E\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h1027v187H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ms6528\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"k3Z06Q2ws\",...addPropertyOverrides({faQl2zuJX:{\"data-highlight\":true,onTap:onTapt0b31n},MVP41BS4g:{\"data-highlight\":true,onTap:onTaph5b5n2}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yelwlx\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"BU5jMheCh\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{MVP41BS4g:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ke8ka7\",\"data-framer-name\":\"Mid\",layoutDependency:layoutDependency,layoutId:\"u3RkHOw9U\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-djnc79\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"w6_eLagj_\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{MVP41BS4g:{rotate:45}}})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13za2zp-container\",layoutDependency:layoutDependency,layoutId:\"lAndkIjI2-container\",children:/*#__PURE__*/_jsx(DropdownFlex,{height:\"100%\",id:\"lAndkIjI2\",layoutId:\"lAndkIjI2\",variant:\"qGhyIxquL\",width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"iRa2Urr9s\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\"Solution\"})})})}),className:\"framer-1y3orqj\",\"data-framer-name\":\"Notre plateforme\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"bvsBfS5tU\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({MVP41BS4g:{children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZYBemtABE\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\" Cobot pour votre site web\"})})})})}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue2=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"f0JrX_8fc\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\" Cobot pour vos commerciaux\"})})})}),className:\"framer-1nw1nrb\",\"data-framer-name\":\"Notre plateforme\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"I8D_dW549\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue3=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u0pVg0dqp\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\" Cobot pour Expert Comptable\"})})})}),className:\"framer-c0sz2k\",\"data-framer-name\":\"Notre plateforme\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"AkmxTfZ_F\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue4=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"iRa2Urr9s\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\" Plateforme\"})})})}),className:\"framer-gjmfz5\",\"data-framer-name\":\"Notre plateforme\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"D1n0XEGeh\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue5=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fyxHY82ZH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\"\\xc0 propos\"})})})}),className:\"framer-10x845e\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"vDcx543Xf\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue6=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"sjm4Gvk4L\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\"Contact\"})})})}),className:\"framer-1y1w56d\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"aXG8prqeu\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(Link,{href:\"https://mycobot.cobot-it.com/\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-rjzozn framer-1cxdiwf\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"ITlUkZbGp\",style:{backgroundColor:\"var(--token-59eab8c0-01c9-4351-95b8-2e8db8e578ca, rgb(0, 86, 138))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.14764), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue7=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Connexion\"})}),className:\"framer-1eou691\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"gUkVWWAKS\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),isDisplayed5()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-14kqyix\",layoutDependency:layoutDependency,layoutId:\"ZqunoNpXZ\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5omyqk\",\"data-framer-name\":\"Title and Icon\",layoutDependency:layoutDependency,layoutId:\"UexZcyI_V\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"e8nxh_b1T\"},openInNewTab:false,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1jl65xm framer-1cxdiwf\",\"data-framer-name\":\"Logo\",fill:\"black\",intrinsicHeight:187,intrinsicWidth:1027,layoutDependency:layoutDependency,layoutId:\"KDa2Rn50e\",svg:'<svg width=\"1027\" height=\"187\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M189.323 91.009c1.276 51.317-39.838 93.942-91.838 95.208-52 1.26-95.193-39.318-96.469-90.635C-.265 44.269 40.849 1.639 92.849.378c52-1.265 95.193 39.313 96.474 90.63Z\" fill=\"#EB5C2E\"/><path d=\"m142.813 17.582-33.859.822C83.771 19.02 62.417 34.17 52.917 55.52a13.16 13.16 0 0 1 3.104-.474c9.938-.245 18.271 10.734 18.615 24.51.333 13.527-7.156 24.699-16.823 25.334a33.651 33.651 0 0 0 24.198 9.37l92.495-2.25c18.526-.448 33.172-15.636 32.713-33.917-.854-34.26-29.687-61.354-64.406-60.51Zm-1.88 163.119-21.964.537c-22.526.547-41.234-17.031-41.786-39.261-.297-11.859 9.203-21.713 21.224-22.005l60.005-1.458c12.021-.292 22 9.088 22.297 20.948.557 22.229-17.25 40.693-39.776 41.239Z\" fill=\"#fff\"/><path d=\"m175.584 98.592-64.36 1.568c-8.718.208-16.041-6.214-16.244-14.354l-.313-12.48c-.198-8.135 6.797-14.687 15.526-14.625l64.412.464c7.791.057 14.192 6.234 14.385 13.797l.286 11.599c.193 7.562-5.901 13.843-13.692 14.031Z\" fill=\"#00568A\"/><path d=\"M131.308 78.02c.135 5.431-4.443 9.895-10.276 9.963-5.886.073-10.808-4.35-10.948-9.875-.136-5.526 4.562-9.985 10.453-9.97 5.833.022 10.635 4.444 10.771 9.881Zm43.515-.188c.131 5.255-4.146 9.567-9.588 9.63-5.49.062-10.089-4.209-10.224-9.547-.13-5.333 4.25-9.64 9.745-9.625 5.448.016 9.937 4.292 10.067 9.542Z\" fill=\"#fff\"/><path d=\"M163.672 119.582c.058 2.291-15.427 4.526-34.588 4.989-19.157.469-34.74-1.01-34.797-3.302-.057-2.286 15.432-4.521 34.594-4.989 19.156-.464 34.734 1.015 34.791 3.302Z\" fill=\"#FDE6DA\"/><path d=\"M200.599 51.852a61.181 61.181 0 0 1 6.62 26.24c.229 9.063-3.265 17.354-9.088 23.474.588.068 1.187.099 1.791.083 9.938-.239 17.714-11.604 17.37-25.385-.323-12.88-7.625-23.307-16.693-24.412Z\" fill=\"#EB5C2E\"/><path d=\"M51.907 59.321c-5.006.125-9.271 4.308-11.532 10.443a5.794 5.794 0 0 1 1.766-.333c4.344-.105 7.99 4.692 8.14 10.718.152 6.026-3.25 10.995-7.593 11.1a5.728 5.728 0 0 1-1.948-.298c2.536 6.245 7.094 10.391 12.213 10.266 7.6-.182 13.532-9.713 13.245-21.281-.291-11.568-6.687-20.797-14.291-20.615Z\" fill=\"#fff\"/><path d=\"M46.698 80.4c.13 5.103-2.49 9.312-5.838 9.39-3.36.083-6.182-3.99-6.307-9.094-.125-5.104 2.49-9.307 5.843-9.39 3.354-.078 6.177 3.99 6.302 9.093Z\" fill=\"#fff\"/><path d=\"M289.334 163.123c1.333-.87 2-2.234 2-4.099 0-3.635-2.651-5.448-7.964-5.448h-10.708v10.849h10.708c2.641 0 4.63-.432 5.964-1.302Zm-16.672-23.755V149.8h9.547c2.39 0 4.229-.442 5.515-1.323 1.292-.885 1.933-2.182 1.933-3.89 0-1.709-.641-3.005-1.933-3.891-1.286-.885-3.125-1.328-5.515-1.328h-9.547Zm21.75 14.792c1.083 1.38 1.63 3.125 1.63 5.234 0 2.828-1.068 5-3.193 6.521-2.125 1.526-5.224 2.286-9.291 2.286H268v-32.604h14.625c3.73 0 6.605.745 8.641 2.235 2.036 1.489 3.052 3.557 3.052 6.192 0 1.709-.396 3.188-1.187 4.427a7.74 7.74 0 0 1-3.193 2.844c1.896.526 3.385 1.479 4.474 2.865Zm33.906-10.646v24.687h-4.239v-3.729c-.902 1.276-2.089 2.261-3.568 2.959-1.469.697-3.078 1.046-4.813 1.046-3.297 0-5.885-.906-7.781-2.724-1.896-1.817-2.838-4.489-2.838-8.036v-14.203h4.468v13.693c0 2.39.573 4.198 1.724 5.427 1.146 1.229 2.792 1.838 4.938 1.838 2.359 0 4.218-.713 5.588-2.14 1.365-1.427 2.047-3.448 2.047-6.058v-12.76m16.953 24.151c-1.859-.542-3.323-1.234-4.375-2.078l1.86-3.537c1.088.776 2.406 1.401 3.963 1.865 1.547.463 3.12.698 4.703.698 3.912 0 5.87-1.12 5.87-3.354 0-.745-.266-1.334-.797-1.771-.526-.432-1.187-.75-1.979-.953-.792-.203-1.917-.427-3.375-.677-1.99-.308-3.609-.667-4.865-1.068a7.52 7.52 0 0 1-3.239-2.052c-.901-.964-1.349-2.313-1.349-4.052 0-2.235.932-4.026 2.792-5.38 1.864-1.349 4.364-2.026 7.5-2.026 1.645 0 3.291.203 4.937.609 1.646.401 2.995.948 4.052 1.63l-1.911 3.537c-2.016-1.303-4.391-1.954-7.125-1.954-1.896 0-3.339.308-4.334.928-.989.625-1.489 1.442-1.489 2.468 0 .808.281 1.448.838 1.912.563.463 1.25.807 2.073 1.026.823.219 1.979.463 3.469.745 1.99.343 3.594.708 4.823 1.093a7.244 7.244 0 0 1 3.146 1.979c.87.933 1.302 2.235 1.302 3.912 0 2.234-.953 4.016-2.865 5.333-1.911 1.323-4.51 1.979-7.802 1.979a20.77 20.77 0 0 1-5.823-.812Zm24.782-24.151h4.468v24.687h-4.468v-24.687Zm.067-5.589a2.744 2.744 0 0 1-.859-2.047c0-.807.286-1.5.859-2.072.573-.579 1.297-.865 2.167-.865.87 0 1.588.271 2.167.818.572.541.859 1.218.859 2.026 0 .838-.287 1.541-.859 2.114-.579.578-1.297.865-2.167.865-.87 0-1.594-.281-2.167-.839Zm36.281 8.084c1.849 1.812 2.771 4.474 2.771 7.984v14.208h-4.468v-13.698c0-2.39-.579-4.192-1.724-5.401-1.151-1.208-2.797-1.817-4.938-1.817-2.422 0-4.333.708-5.729 2.12-1.396 1.416-2.094 3.442-2.094 6.078v12.718h-4.474v-24.687h4.287v3.729c.901-1.276 2.119-2.255 3.656-2.937 1.536-.683 3.281-1.026 5.24-1.026 3.135 0 5.625.911 7.473 2.729Zm18.631 3c-1.443 1.307-2.287 3.01-2.537 5.125h15.834c-.245-2.078-1.094-3.782-2.537-5.099-1.443-1.323-3.234-1.979-5.38-1.979-2.141 0-3.938.651-5.38 1.953Zm17.489 8.338h-20.026c.281 2.172 1.235 3.922 2.865 5.24 1.63 1.323 3.656 1.979 6.078 1.979 2.948 0 5.323-.995 7.125-2.979l2.469 2.885c-1.12 1.302-2.511 2.297-4.167 2.985-1.661.682-3.516 1.02-5.568 1.02-2.609 0-4.922-.536-6.937-1.604-2.021-1.073-3.578-2.573-4.682-4.495-1.105-1.927-1.657-4.098-1.657-6.52 0-2.391.537-4.547 1.61-6.474 1.067-1.927 2.547-3.427 4.427-4.495 1.875-1.073 3.995-1.609 6.354-1.609s4.463.536 6.312 1.609c1.844 1.068 3.292 2.568 4.334 4.495 1.036 1.927 1.557 4.13 1.557 6.614 0 .339-.031.792-.094 1.349Zm10.245 10.318c-1.859-.542-3.323-1.234-4.375-2.078l1.865-3.537c1.083.776 2.406 1.401 3.953 1.865 1.557.463 3.125.698 4.708.698 3.912 0 5.87-1.12 5.87-3.354 0-.745-.266-1.334-.792-1.771-.531-.432-1.192-.75-1.979-.953-.797-.203-1.922-.427-3.38-.677-1.984-.308-3.609-.667-4.87-1.068a7.533 7.533 0 0 1-3.234-2.052c-.901-.964-1.349-2.313-1.349-4.052 0-2.235.932-4.026 2.791-5.38 1.865-1.349 4.365-2.026 7.5-2.026 1.646 0 3.292.203 4.938.609 1.646.401 2.995.948 4.052 1.63l-1.911 3.537c-2.016-1.303-4.391-1.954-7.125-1.954-1.896 0-3.339.308-4.334.928-.995.625-1.484 1.442-1.484 2.468 0 .808.276 1.448.833 1.912.557.463 1.25.807 2.073 1.026.823.219 1.979.463 3.469.745 1.989.343 3.594.708 4.823 1.093a7.19 7.19 0 0 1 3.14 1.979c.87.933 1.308 2.235 1.308 3.912 0 2.234-.953 4.016-2.865 5.333-1.911 1.323-4.51 1.979-7.802 1.979-2.016 0-3.958-.27-5.823-.812Zm26.037 0c-1.86-.542-3.323-1.234-4.375-2.078l1.859-3.537c1.088.776 2.406 1.401 3.958 1.865 1.552.463 3.12.698 4.709.698 3.911 0 5.864-1.12 5.864-3.354 0-.745-.26-1.334-.791-1.771-.527-.432-1.188-.75-1.98-.953-.791-.203-1.916-.427-3.375-.677-1.989-.308-3.609-.667-4.869-1.068a7.53 7.53 0 0 1-3.235-2.052c-.901-.964-1.349-2.313-1.349-4.052 0-2.235.927-4.026 2.792-5.38 1.864-1.349 4.364-2.026 7.5-2.026 1.646 0 3.292.203 4.937.609 1.646.401 2.995.948 4.052 1.63l-1.911 3.537c-2.016-1.303-4.396-1.954-7.125-1.954-1.896 0-3.339.308-4.333.928-.995.625-1.49 1.442-1.49 2.468 0 .808.281 1.448.839 1.912.557.463 1.25.807 2.073 1.026.822.219 1.979.463 3.468.745 1.99.343 3.594.708 4.823 1.093a7.228 7.228 0 0 1 3.141 1.979c.87.933 1.307 2.235 1.307 3.912 0 2.234-.953 4.016-2.864 5.333-1.912 1.323-4.511 1.979-7.803 1.979-2.015 0-3.958-.27-5.822-.812Z\" fill=\"#00568A\"/><path d=\"M520.74 166.405c-2.625-1.443-4.682-3.428-6.172-5.959-1.489-2.531-2.234-5.38-2.234-8.547 0-3.166.745-6.015 2.234-8.547 1.49-2.531 3.557-4.52 6.198-5.963 2.635-1.443 5.589-2.167 8.849-2.167 2.542 0 4.875.433 6.984 1.281A14.266 14.266 0 0 1 542 140.3l-3.026 2.938c-2.453-2.578-5.51-3.87-9.172-3.87-2.421 0-4.614.547-6.567 1.63-1.959 1.089-3.49 2.584-4.589 4.495-1.104 1.912-1.656 4.047-1.656 6.406 0 2.36.552 4.495 1.656 6.401 1.099 1.912 2.63 3.412 4.589 4.495 1.953 1.089 4.146 1.63 6.567 1.63 3.631 0 6.688-1.302 9.172-3.911l3.026 2.937c-1.489 1.677-3.296 2.948-5.421 3.818-2.131.87-4.469 1.302-7.011 1.302-3.26 0-6.203-.724-8.828-2.166Zm43.781-2.933c1.261-.729 2.245-1.755 2.959-3.073.713-1.323 1.073-2.833 1.073-4.541 0-1.709-.36-3.224-1.073-4.542-.714-1.318-1.698-2.339-2.959-3.047-1.255-.719-2.677-1.078-4.26-1.078-1.583 0-3.005.359-4.266 1.078-1.255.708-2.25 1.729-2.974 3.047-.734 1.318-1.099 2.833-1.099 4.542 0 1.708.365 3.218 1.099 4.541.724 1.318 1.719 2.344 2.974 3.073 1.261.729 2.683 1.094 4.266 1.094 1.583 0 3.005-.365 4.26-1.094Zm-10.875 3.375c-1.953-1.083-3.484-2.583-4.588-4.495-1.104-1.906-1.651-4.072-1.651-6.494 0-2.422.547-4.589 1.651-6.5 1.104-1.912 2.635-3.401 4.588-4.469 1.959-1.068 4.162-1.609 6.615-1.609 2.453 0 4.651.541 6.588 1.609a11.662 11.662 0 0 1 4.568 4.469c1.099 1.911 1.651 4.078 1.651 6.5 0 2.422-.552 4.588-1.651 6.494a11.83 11.83 0 0 1-4.568 4.495c-1.937 1.089-4.135 1.63-6.588 1.63-2.453 0-4.656-.541-6.615-1.63Z\" fill=\"#EB5C2E\"/><path d=\"M581.964 168.201h4.474v-34.562h-4.474v34.562Zm15.698 0h4.469v-34.562h-4.469v34.562Zm28.083-4.307c1.245-.76 2.141-1.844 2.703-3.239v-3.448h-6.896c-3.786 0-5.682 1.276-5.682 3.817 0 1.245.485 2.224 1.448 2.938.958.713 2.297 1.068 4.005 1.068 1.703 0 3.177-.375 4.422-1.136Zm4.448-18.099c1.818 1.677 2.724 4.177 2.724 7.5v14.901h-4.24v-3.255c-.739 1.146-1.807 2.026-3.187 2.63-1.385.604-3.021.906-4.911.906-2.766 0-4.98-.666-6.641-2-1.662-1.338-2.49-3.088-2.49-5.265 0-2.172.792-3.917 2.375-5.24 1.584-1.317 4.099-1.979 7.547-1.979h7.078v-.885c0-1.922-.562-3.401-1.677-4.422-1.12-1.026-2.765-1.542-4.937-1.542-1.459 0-2.891.245-4.287.724-1.396.484-2.578 1.125-3.536 1.932l-1.865-3.354c1.271-1.021 2.792-1.807 4.563-2.349 1.771-.541 3.651-.817 5.635-.817 3.417 0 6.031.838 7.849 2.515Zm30.693 17.677c1.255-.729 2.25-1.755 2.979-3.073.734-1.323 1.094-2.833 1.094-4.541 0-1.709-.36-3.224-1.094-4.542-.729-1.318-1.724-2.339-2.979-3.047-1.255-.719-2.677-1.078-4.261-1.078-1.552 0-2.968.359-4.239 1.078-1.276.708-2.266 1.729-2.979 3.047-.714 1.318-1.073 2.833-1.073 4.542 0 1.708.359 3.218 1.073 4.541.713 1.318 1.703 2.344 2.979 3.073 1.271.729 2.687 1.094 4.239 1.094 1.584 0 3.006-.365 4.261-1.094Zm2.536-18.609a11.403 11.403 0 0 1 4.453 4.427c1.068 1.896 1.605 4.083 1.605 6.568 0 2.484-.537 4.682-1.605 6.588a11.351 11.351 0 0 1-4.453 4.448c-1.89 1.057-4.036 1.583-6.427 1.583-1.833 0-3.505-.354-5.026-1.067a9.72 9.72 0 0 1-3.776-3.12v3.911h-4.281v-34.562h4.469v13.604a9.49 9.49 0 0 1 3.724-2.958c1.494-.672 3.119-1.005 4.89-1.005 2.391 0 4.537.531 6.427 1.583Zm29.787 18.609c1.26-.729 2.245-1.755 2.958-3.073.714-1.323 1.068-2.833 1.068-4.541 0-1.709-.354-3.224-1.068-4.542-.713-1.318-1.698-2.339-2.958-3.047-1.255-.719-2.677-1.078-4.261-1.078-1.583 0-3.005.359-4.26 1.078-1.26.708-2.255 1.729-2.984 3.047-.73 1.318-1.094 2.833-1.094 4.542 0 1.708.364 3.218 1.094 4.541.729 1.318 1.724 2.344 2.984 3.073 1.255.729 2.677 1.094 4.26 1.094 1.584 0 3.006-.365 4.261-1.094Zm-10.875 3.375c-1.953-1.083-3.49-2.583-4.589-4.495-1.104-1.906-1.651-4.072-1.651-6.494 0-2.422.547-4.589 1.651-6.5 1.099-1.912 2.636-3.401 4.589-4.469 1.958-1.068 4.161-1.609 6.614-1.609 2.453 0 4.651.541 6.589 1.609a11.614 11.614 0 0 1 4.562 4.469c1.105 1.911 1.657 4.078 1.657 6.5 0 2.422-.552 4.588-1.657 6.494a11.78 11.78 0 0 1-4.562 4.495c-1.938 1.089-4.136 1.63-6.589 1.63-2.453 0-4.656-.541-6.614-1.63Zm36.047-22.448c1.52-.744 3.369-1.119 5.546-1.119v4.333a8.789 8.789 0 0 0-1.026-.047c-2.421 0-4.322.724-5.708 2.167-1.38 1.442-2.068 3.5-2.068 6.172v12.296h-4.474v-24.687h4.287v4.146c.776-1.427 1.922-2.516 3.443-3.261Zm26.083 19.495c1.245-.76 2.146-1.844 2.703-3.239v-3.448h-6.896c-3.786 0-5.677 1.276-5.677 3.817 0 1.245.479 2.224 1.443 2.938.958.713 2.297 1.068 4.005 1.068 1.708 0 3.182-.375 4.422-1.136Zm4.448-18.099c1.818 1.677 2.729 4.177 2.729 7.5v14.901h-4.245v-3.255c-.739 1.146-1.807 2.026-3.187 2.63-1.38.604-3.016.906-4.912.906-2.765 0-4.979-.666-6.635-2-1.667-1.338-2.495-3.088-2.495-5.265 0-2.172.792-3.917 2.375-5.24 1.583-1.317 4.099-1.979 7.547-1.979h7.078v-.885c0-1.922-.557-3.401-1.677-4.422-1.12-1.026-2.766-1.542-4.938-1.542a13.11 13.11 0 0 0-4.281.724c-1.401.484-2.578 1.125-3.541 1.932l-1.865-3.354c1.276-1.021 2.797-1.807 4.568-2.349 1.765-.541 3.646-.817 5.635-.817 3.412 0 6.031.838 7.844 2.515Zm27.599 20.958c-.651.563-1.464.99-2.422 1.282-.964.297-1.958.442-2.984.442-2.485 0-4.407-.666-5.776-2-1.365-1.338-2.047-3.244-2.047-5.734v-13.552h-4.193v-3.677h4.193v-5.401h4.474v5.401h7.078v3.677h-7.078v13.37c0 1.333.333 2.359 1 3.073.666.718 1.619 1.073 2.864 1.073 1.365 0 2.526-.391 3.49-1.167m9.5-20.026h4.474v24.687h-4.474v-24.687Zm.073-5.589a2.73 2.73 0 0 1-.865-2.047c0-.807.287-1.5.865-2.072.573-.579 1.297-.865 2.161-.865.87 0 1.594.271 2.167.818.578.541.864 1.218.864 2.026 0 .838-.286 1.541-.864 2.114-.573.578-1.297.865-2.167.865-.864 0-1.588-.281-2.161-.839Zm37.468 5.589-10.807 24.687h-4.562l-10.802-24.687h4.656l8.474 19.797 8.666-19.797m15.297 5.495c-1.448 1.307-2.291 3.01-2.536 5.125h15.833c-.25-2.078-1.094-3.782-2.541-5.099-1.443-1.323-3.235-1.979-5.375-1.979-2.141 0-3.938.651-5.381 1.953Zm17.49 8.338h-20.026c.276 2.172 1.229 3.922 2.859 5.24 1.636 1.323 3.657 1.979 6.084 1.979 2.948 0 5.323-.995 7.119-2.979l2.469 2.885c-1.114 1.302-2.505 2.297-4.167 2.985-1.656.682-3.515 1.02-5.562 1.02-2.609 0-4.922-.536-6.943-1.604-2.015-1.073-3.578-2.573-4.682-4.495-1.099-1.927-1.651-4.098-1.651-6.52 0-2.391.536-4.547 1.609-6.474 1.068-1.927 2.542-3.427 4.422-4.495 1.88-1.073 4-1.609 6.36-1.609 2.359 0 4.463.536 6.312 1.609 1.844 1.068 3.287 2.568 4.328 4.495 1.042 1.927 1.563 4.13 1.563 6.614 0 .339-.032.792-.094 1.349Zm44.203-4.937c1.552-1.271 2.323-3.089 2.323-5.448 0-2.36-.771-4.167-2.323-5.427-1.557-1.261-3.807-1.886-6.755-1.886h-7.917v14.672h7.917c2.948 0 5.198-.635 6.755-1.911Zm2.464 15.791-7.032-10.015c-.869.062-1.552.094-2.047.094h-8.057v9.921h-4.661v-32.604h12.718c4.219 0 7.542 1.011 9.964 3.026 2.422 2.021 3.63 4.797 3.63 8.339 0 2.515-.62 4.656-1.859 6.427-1.245 1.771-3.011 3.057-5.307 3.864l7.729 10.948m23.87-4.729c1.26-.729 2.244-1.755 2.958-3.073.713-1.323 1.073-2.833 1.073-4.541 0-1.709-.36-3.224-1.073-4.542-.714-1.318-1.698-2.339-2.958-3.047-1.256-.719-2.678-1.078-4.261-1.078-1.583 0-3.005.359-4.266 1.078-1.255.708-2.25 1.729-2.979 3.047-.729 1.318-1.093 2.833-1.093 4.542 0 1.708.364 3.218 1.093 4.541.729 1.318 1.724 2.344 2.979 3.073 1.261.729 2.683 1.094 4.266 1.094 1.583 0 3.005-.365 4.261-1.094Zm-10.875 3.375a11.777 11.777 0 0 1-4.589-4.495c-1.104-1.906-1.651-4.072-1.651-6.494 0-2.422.547-4.589 1.651-6.5a11.612 11.612 0 0 1 4.589-4.469c1.958-1.068 4.161-1.609 6.614-1.609 2.453 0 4.646.541 6.589 1.609a11.62 11.62 0 0 1 4.562 4.469c1.104 1.911 1.656 4.078 1.656 6.5 0 2.422-.552 4.588-1.656 6.494a11.787 11.787 0 0 1-4.562 4.495c-1.943 1.089-4.136 1.63-6.589 1.63-2.453 0-4.656-.541-6.614-1.63Z\" fill=\"#00568A\"/><path d=\"M960.599 163.472c1.256-.729 2.245-1.755 2.98-3.073.729-1.323 1.093-2.833 1.093-4.541 0-1.709-.364-3.224-1.093-4.542-.735-1.318-1.724-2.339-2.98-3.047-1.26-.719-2.682-1.078-4.265-1.078-1.552 0-2.964.359-4.24 1.078-1.271.708-2.265 1.729-2.979 3.047s-1.073 2.833-1.073 4.542c0 1.708.359 3.218 1.073 4.541.714 1.318 1.708 2.344 2.979 3.073 1.276.729 2.688 1.094 4.24 1.094 1.583 0 3.005-.365 4.265-1.094Zm2.537-18.609a11.43 11.43 0 0 1 4.448 4.427c1.073 1.896 1.609 4.083 1.609 6.568 0 2.484-.536 4.682-1.609 6.588a11.378 11.378 0 0 1-4.448 4.448c-1.896 1.057-4.037 1.583-6.427 1.583-1.834 0-3.511-.354-5.031-1.067a9.76 9.76 0 0 1-3.777-3.12v3.911h-4.281v-34.562h4.469v13.604a9.484 9.484 0 0 1 3.729-2.958c1.49-.672 3.12-1.005 4.891-1.005 2.39 0 4.531.531 6.427 1.583Zm29.786 18.609c1.255-.729 2.24-1.755 2.953-3.073.719-1.323 1.073-2.833 1.073-4.541 0-1.709-.354-3.224-1.073-4.542-.713-1.318-1.698-2.339-2.953-3.047-1.26-.719-2.677-1.078-4.265-1.078-1.578 0-3 .359-4.261 1.078-1.255.708-2.25 1.729-2.979 3.047-.729 1.318-1.094 2.833-1.094 4.542 0 1.708.365 3.218 1.094 4.541.729 1.318 1.724 2.344 2.979 3.073 1.261.729 2.683 1.094 4.261 1.094 1.588 0 3.005-.365 4.265-1.094Zm-10.875 3.375c-1.958-1.083-3.489-2.583-4.588-4.495-1.104-1.906-1.657-4.072-1.657-6.494 0-2.422.553-4.589 1.657-6.5 1.099-1.912 2.63-3.401 4.588-4.469 1.953-1.068 4.157-1.609 6.61-1.609 2.453 0 4.651.541 6.593 1.609a11.682 11.682 0 0 1 4.563 4.469c1.107 1.911 1.657 4.078 1.657 6.5 0 2.422-.55 4.588-1.657 6.494a11.85 11.85 0 0 1-4.563 4.495c-1.942 1.089-4.14 1.63-6.593 1.63-2.453 0-4.657-.541-6.61-1.63Zm42.193-.094c-.65.563-1.46.99-2.42 1.282-.97.297-1.95.442-2.98.442-2.49 0-4.41-.666-5.78-2-1.36-1.338-2.04-3.244-2.04-5.734v-13.552h-4.2v-3.677h4.2v-5.401h4.46v5.401h7.08v3.677h-7.08v13.37c0 1.333.34 2.359 1 3.073.68.718 1.63 1.073 2.87 1.073 1.36 0 2.53-.391 3.49-1.167\" fill=\"#EB5C2E\"/><path d=\"M278.105 41.035c.385-1.932.974-3.464 1.755-4.547.708-.99 1.729-1.74 3.13-2.302 1.609-.651 3.745-1.1 6.344-1.318 2.786-.24 6.307-.36 10.453-.36h22.292c4.666 0 8.598.162 11.692.48 2.797.286 5.031.922 6.641 1.89 1.427.86 2.432 2.11 3.073 3.813.734 1.99 1.109 4.828 1.109 8.443a2.844 2.844 0 0 0 2.844 2.843h9.531a2.84 2.84 0 0 0 2.839-2.843c0-3.037-.209-5.865-.631-8.412-.447-2.677-1.26-5.125-2.406-7.276a19.211 19.211 0 0 0-4.745-5.77c-1.937-1.59-4.38-2.912-7.265-3.933-2.761-.969-6.068-1.703-9.828-2.177-3.688-.458-8.016-.693-12.854-.693h-22.292c-5.964 0-11.083.375-15.214 1.115-4.286.765-7.896 1.958-10.739 3.541-2.979 1.662-5.339 3.813-6.99 6.38-1.583 2.464-2.75 5.365-3.463 8.626-.677 3.11-1.079 6.646-1.183 10.51-.099 3.73-.151 7.86-.151 12.38 0 4.532.052 8.662.151 12.391.104 3.86.506 7.396 1.183 10.505.713 3.266 1.88 6.167 3.463 8.625 1.651 2.568 4.011 4.719 6.99 6.38 2.843 1.584 6.458 2.782 10.739 3.542 4.141.74 9.261 1.115 15.214 1.115h22.292c4.838 0 9.166-.235 12.854-.693 3.76-.469 7.078-1.224 9.859-2.234 2.896-1.063 5.344-2.448 7.281-4.115a19.695 19.695 0 0 0 4.729-6.068c1.136-2.255 1.938-4.849 2.386-7.698.411-2.708.62-5.755.62-9.041a2.84 2.84 0 0 0-2.839-2.844h-9.531a2.844 2.844 0 0 0-2.844 2.844c0 2.505-.109 4.724-.328 6.594-.193 1.65-.557 3.067-1.078 4.213a6.602 6.602 0 0 1-1.901 2.463c-.844.678-2.037 1.235-3.547 1.662-1.698.474-3.818.807-6.297.995-2.568.192-5.719.286-9.364.286h-22.292c-4.146 0-7.667-.12-10.453-.36-2.599-.218-4.735-.666-6.349-1.317-1.38-.557-2.396-1.302-3.084-2.281-.776-1.089-1.359-2.62-1.744-4.568-.427-2.182-.683-4.932-.761-8.182-.088-3.401-.13-7.474-.13-12.214s.036-8.817.104-12.224c.063-3.25.307-5.994.735-8.166Zm160.437 49.312h-28.687c-4.151 0-7.672-.12-10.454-.36-2.609-.218-4.744-.666-6.354-1.317-1.38-.557-2.39-1.302-3.088-2.281-.766-1.089-1.354-2.62-1.74-4.568-.427-2.182-.682-4.932-.76-8.177a505.763 505.763 0 0 1-.125-12.219c0-4.74.031-8.817.099-12.224.062-3.255.312-6 .739-8.166.38-1.932.969-3.464 1.755-4.547.709-.99 1.73-1.745 3.125-2.302 1.605-.651 3.74-1.1 6.349-1.318 2.782-.24 6.303-.36 10.454-.36h28.687c4.151 0 7.667.12 10.453.36 2.604.219 4.729.667 6.318 1.318 1.38.557 2.396 1.312 3.109 2.302.782 1.083 1.37 2.614 1.75 4.541.427 2.193.688 4.943.761 8.183.088 3.406.13 7.479.13 12.213 0 4.745-.042 8.818-.13 12.22-.073 3.244-.334 5.994-.761 8.176-.385 1.938-.968 3.469-1.75 4.552-.713.985-1.734 1.74-3.13 2.297-1.604.651-3.745 1.1-6.349 1.318-2.786.24-6.286.36-10.401.36Zm36.359-51.812v-.005c-.724-3.26-1.875-6.162-3.432-8.61-1.64-2.573-3.989-4.729-6.974-6.39-2.838-1.584-6.453-2.777-10.734-3.542-4.141-.74-9.255-1.115-15.219-1.115h-28.687c-5.964 0-11.084.375-15.219 1.115-4.287.765-7.896 1.958-10.735 3.541-2.979 1.662-5.333 3.808-6.989 6.38-1.589 2.464-2.755 5.36-3.464 8.626-.687 3.12-1.083 6.656-1.182 10.505a469.65 469.65 0 0 0-.151 12.385c0 4.537.052 8.662.151 12.386.099 3.86.495 7.396 1.182 10.51.709 3.266 1.875 6.167 3.464 8.63 1.656 2.573 4.01 4.72 6.989 6.375 2.844 1.584 6.454 2.776 10.735 3.542 4.151.74 9.271 1.115 15.219 1.115h28.687c5.948 0 11.068-.375 15.219-1.115 4.281-.766 7.89-1.958 10.734-3.542 2.985-1.661 5.334-3.812 6.974-6.385 1.557-2.453 2.708-5.349 3.432-8.62.678-3.104 1.084-6.64 1.204-10.495a391.9 391.9 0 0 0 .177-12.4c0-4.527-.058-8.662-.177-12.397-.12-3.854-.526-7.39-1.204-10.494Zm32.079 27.323h41.578c3.661 0 6.833.062 9.505.171 2.594.115 4.792.329 6.531.63 1.62.287 2.891.662 3.792 1.11.724.365 1.255.802 1.63 1.35.406.593.698 1.38.859 2.332.198 1.214.302 2.683.302 4.37 0 2.245-.109 4.167-.317 5.719-.188 1.338-.521 2.448-.995 3.312a4.72 4.72 0 0 1-1.703 1.776c-.86.532-2.083.959-3.63 1.271-1.735.35-3.912.584-6.464.693-2.677.11-5.849.172-9.51.172H506.98V65.858Zm58.479-15.646c-.74.469-1.787.849-3.12 1.14-1.5.334-3.365.563-5.552.683-2.302.13-5.047.198-8.229.198H506.98V34.092h48.036c3.036 0 5.552.12 7.469.354 1.604.193 2.896.563 3.729 1.063.625.37 1.01.849 1.255 1.547.354 1.015.537 2.437.537 4.218 0 1.85-.094 3.443-.276 4.755-.146 1.073-.422 1.974-.829 2.688a4.159 4.159 0 0 1-1.442 1.495Zm18.031 13.995c-.891-1.474-1.922-2.75-3.073-3.782a20.037 20.037 0 0 0-3.422-2.479c-.125-.067-.255-.14-.38-.203a17.47 17.47 0 0 0 1.812-1.687c.948-1.006 1.792-2.245 2.511-3.683.698-1.385 1.255-3.026 1.667-4.86.411-1.817.619-3.91.619-6.239 0-3.11-.297-5.932-.869-8.39-.662-2.792-1.99-5.162-3.954-7.037-1.916-1.833-4.593-3.219-7.963-4.12-3.182-.849-7.188-1.265-12.25-1.265h-63.583a2.847 2.847 0 0 0-2.844 2.844V99.55a2.847 2.847 0 0 0 2.844 2.844h57.13c4.859 0 9.114-.224 12.646-.667 3.614-.453 6.75-1.166 9.312-2.12 2.698-.994 4.927-2.301 6.636-3.885a16.495 16.495 0 0 0 3.947-5.562c.87-2.005 1.454-4.271 1.73-6.75.26-2.281.39-4.834.39-7.589 0-2.432-.265-4.635-.797-6.541-.531-1.912-1.239-3.62-2.109-5.073Zm81.641 26.14h-28.693c-4.151 0-7.667-.12-10.448-.36-2.609-.218-4.745-.666-6.354-1.317-1.386-.557-2.396-1.302-3.089-2.281-.771-1.089-1.354-2.62-1.739-4.568-.427-2.182-.688-4.932-.761-8.177a508.11 508.11 0 0 1-.13-12.219c0-4.74.037-8.817.104-12.224.063-3.255.308-6 .74-8.166.38-1.932.969-3.464 1.75-4.547.708-.99 1.734-1.745 3.125-2.302 1.609-.651 3.745-1.1 6.354-1.318 2.781-.24 6.297-.36 10.448-.36h28.693c4.145 0 7.666.12 10.453.36 2.604.219 4.724.667 6.317 1.318 1.375.557 2.391 1.312 3.105 2.302.781 1.083 1.375 2.614 1.75 4.541.432 2.193.687 4.943.765 8.183.084 3.406.13 7.479.13 12.213 0 4.745-.046 8.818-.13 12.22-.078 3.244-.333 5.994-.76 8.176-.386 1.938-.974 3.469-1.755 4.552-.709.985-1.735 1.74-3.125 2.297-1.61.651-3.745 1.1-6.349 1.318-2.787.24-6.287.36-10.401.36Zm36.354-51.812v-.005c-.719-3.26-1.875-6.162-3.433-8.61-1.635-2.573-3.984-4.729-6.968-6.39-2.844-1.584-6.453-2.777-10.74-3.542-4.135-.74-9.255-1.115-15.213-1.115h-28.693c-5.958 0-11.078.375-15.219 1.115-4.281.765-7.896 1.958-10.734 3.541-2.979 1.662-5.328 3.808-6.99 6.38-1.583 2.464-2.75 5.36-3.463 8.626-.683 3.12-1.084 6.656-1.177 10.505a443.6 443.6 0 0 0-.157 12.385c0 4.537.052 8.662.157 12.386.093 3.86.494 7.396 1.177 10.51.713 3.266 1.88 6.167 3.463 8.63 1.662 2.573 4.011 4.72 6.99 6.375 2.844 1.584 6.453 2.776 10.734 3.542 4.151.74 9.271 1.115 15.219 1.115h28.693c5.948 0 11.067-.375 15.213-1.115 4.281-.766 7.891-1.958 10.74-3.542 2.984-1.661 5.333-3.812 6.968-6.385 1.558-2.453 2.714-5.349 3.433-8.62.682-3.104 1.083-6.64 1.208-10.495.115-3.729.172-7.864.172-12.4 0-4.527-.057-8.662-.172-12.397-.125-3.854-.526-7.39-1.208-10.494Zm102.297-18.073h-85.771a2.844 2.844 0 0 0-2.844 2.844v7.942a2.84 2.84 0 0 0 2.844 2.844h35.276V99.55a2.848 2.848 0 0 0 2.849 2.844h9.526a2.844 2.844 0 0 0 2.844-2.844V34.092h35.276a2.84 2.84 0 0 0 2.843-2.844v-7.942a2.843 2.843 0 0 0-2.843-2.844Z\" fill=\"#00568A\"/><path d=\"M862.006 20.462h-9.532a2.843 2.843 0 0 0-2.843 2.844V99.55a2.843 2.843 0 0 0 2.843 2.844h9.532a2.847 2.847 0 0 0 2.843-2.844V23.306a2.847 2.847 0 0 0-2.843-2.844Zm106.937 0h-85.771a2.843 2.843 0 0 0-2.843 2.844v7.942a2.84 2.84 0 0 0 2.843 2.844h35.276V99.55a2.847 2.847 0 0 0 2.844 2.844h9.531a2.844 2.844 0 0 0 2.844-2.844V34.092h35.276a2.844 2.844 0 0 0 2.844-2.844v-7.942a2.847 2.847 0 0 0-2.844-2.844Z\" fill=\"#EB5C2E\"/><path d=\"M1023.98 87.175h-9.52a2.851 2.851 0 0 0-2.85 2.844v9.531a2.851 2.851 0 0 0 2.85 2.844h9.52c1.58 0 2.85-1.276 2.85-2.844v-9.53a2.845 2.845 0 0 0-2.85-2.845Zm-7.14-7.021h4.76c1.53 0 2.78-1.197 2.84-2.718l2.39-54a2.84 2.84 0 0 0-.79-2.094 2.817 2.817 0 0 0-2.06-.88h-9.53a2.84 2.84 0 0 0-2.83 2.974l2.38 54a2.846 2.846 0 0 0 2.84 2.718Z\" fill=\"#00568A\"/><path d=\"m661.084 58.31-13.485-7.786c-2.401-1.38-5.401.35-5.401 3.12v15.573c0 2.766 3 4.5 5.401 3.115l13.485-7.787c2.396-1.385 2.396-4.849 0-6.234Z\" fill=\"#EB5C2E\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h1027v187H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m9erwr\",\"data-framer-name\":\"Icon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"qy1fhT58s\",onTap:onTapt0b31n,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wey434\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"xEKEiznUs\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o9rt8t\",\"data-framer-name\":\"Mid\",layoutDependency:layoutDependency,layoutId:\"vtG0hwm2m\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-aue4ko\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"uWUH_v2m1\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SV0fG.framer-1cxdiwf, .framer-SV0fG .framer-1cxdiwf { display: block; }\",\".framer-SV0fG.framer-ebkoqy { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 80px; justify-content: center; padding: 24px 0px 24px 0px; position: relative; width: 1200px; }\",\".framer-SV0fG .framer-1l6pl09, .framer-SV0fG .framer-14kqyix { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 40px; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-SV0fG .framer-erp30v, .framer-SV0fG .framer-5omyqk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 32px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-SV0fG .framer-1tjjdla, .framer-SV0fG .framer-1jl65xm { aspect-ratio: 5.491978609625669 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); position: relative; text-decoration: none; width: 168px; }\",\".framer-SV0fG .framer-1ms6528 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: hidden; position: relative; width: 32px; }\",\".framer-SV0fG .framer-1yelwlx, .framer-SV0fG .framer-1wey434 { bottom: 7px; flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-SV0fG .framer-1ke8ka7, .framer-SV0fG .framer-o9rt8t { flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-SV0fG .framer-djnc79, .framer-SV0fG .framer-aue4ko { flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; top: 7px; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-SV0fG .framer-13za2zp-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-SV0fG .framer-1y3orqj, .framer-SV0fG .framer-1nw1nrb, .framer-SV0fG .framer-c0sz2k, .framer-SV0fG .framer-gjmfz5, .framer-SV0fG .framer-10x845e, .framer-SV0fG .framer-1y1w56d { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-SV0fG .framer-rjzozn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-SV0fG .framer-1eou691 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SV0fG .framer-m9erwr { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: hidden; position: relative; width: 32px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SV0fG.framer-ebkoqy, .framer-SV0fG .framer-1l6pl09, .framer-SV0fG .framer-rjzozn, .framer-SV0fG .framer-14kqyix { gap: 0px; } .framer-SV0fG.framer-ebkoqy > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-SV0fG.framer-ebkoqy > :first-child, .framer-SV0fG .framer-1l6pl09 > :first-child, .framer-SV0fG .framer-rjzozn > :first-child, .framer-SV0fG .framer-14kqyix > :first-child { margin-left: 0px; } .framer-SV0fG.framer-ebkoqy > :last-child, .framer-SV0fG .framer-1l6pl09 > :last-child, .framer-SV0fG .framer-rjzozn > :last-child, .framer-SV0fG .framer-14kqyix > :last-child { margin-right: 0px; } .framer-SV0fG .framer-1l6pl09 > *, .framer-SV0fG .framer-14kqyix > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-SV0fG .framer-rjzozn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-SV0fG.framer-v-grq6zu.framer-ebkoqy { width: 810px; }\",\".framer-SV0fG.framer-v-grq6zu .framer-5omyqk, .framer-SV0fG.framer-v-grq6zu .framer-m9erwr, .framer-SV0fG.framer-v-rxq5yl .framer-erp30v { order: 0; }\",\".framer-SV0fG.framer-v-grq6zu .framer-1jl65xm, .framer-SV0fG.framer-v-rxq5yl .framer-1tjjdla { order: 1; }\",\".framer-SV0fG.framer-v-rxq5yl.framer-ebkoqy { width: 390px; }\",\".framer-SV0fG.framer-v-rxq5yl .framer-1l6pl09 { order: 0; padding: 0px 20px 0px 20px; }\",\".framer-SV0fG.framer-v-rxq5yl .framer-1ms6528 { cursor: pointer; order: 0; }\",\".framer-SV0fG.framer-v-1h2rphr.framer-ebkoqy { flex-direction: column; height: min-content; padding: 24px 0px 60px 0px; width: 390px; }\",\".framer-SV0fG.framer-v-1h2rphr .framer-1l6pl09 { flex-direction: column; height: min-content; }\",\".framer-SV0fG.framer-v-1h2rphr .framer-erp30v { flex: none; width: 100%; }\",\".framer-SV0fG.framer-v-1h2rphr .framer-1ms6528 { cursor: pointer; }\",\".framer-SV0fG.framer-v-1h2rphr .framer-1yelwlx { bottom: 15px; }\",\".framer-SV0fG.framer-v-1h2rphr .framer-1ke8ka7 { left: calc(50.00000000000002% - 2px / 2); width: 2px; }\",\".framer-SV0fG.framer-v-1h2rphr .framer-djnc79 { top: 15px; }\",\".framer-SV0fG.framer-v-1h2rphr .framer-rjzozn { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SV0fG.framer-v-1h2rphr.framer-ebkoqy, .framer-SV0fG.framer-v-1h2rphr .framer-1l6pl09 { gap: 0px; } .framer-SV0fG.framer-v-1h2rphr.framer-ebkoqy > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-SV0fG.framer-v-1h2rphr.framer-ebkoqy > :first-child, .framer-SV0fG.framer-v-1h2rphr .framer-1l6pl09 > :first-child { margin-top: 0px; } .framer-SV0fG.framer-v-1h2rphr.framer-ebkoqy > :last-child, .framer-SV0fG.framer-v-1h2rphr .framer-1l6pl09 > :last-child { margin-bottom: 0px; } .framer-SV0fG.framer-v-1h2rphr .framer-1l6pl09 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",...sharedStyle.css,'.framer-SV0fG[data-border=\"true\"]::after, .framer-SV0fG [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"RJAzMD_Dc\":{\"layout\":[\"fixed\",\"fixed\"]},\"faQl2zuJX\":{\"layout\":[\"fixed\",\"fixed\"]},\"MVP41BS4g\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernasKr5qj1=withCSS(Component,css,\"framer-SV0fG\");export default FramernasKr5qj1;FramernasKr5qj1.displayName=\"Navbar\";FramernasKr5qj1.defaultProps={height:80,width:1200};addPropertyControls(FramernasKr5qj1,{variant:{options:[\"e2lrBNd1S\",\"RJAzMD_Dc\",\"faQl2zuJX\",\"MVP41BS4g\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\",\"Phone Open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramernasKr5qj1,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...DropdownFlexFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernasKr5qj1\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RJAzMD_Dc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"faQl2zuJX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MVP41BS4g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"80\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nasKr5qj1.map"],
  "mappings": "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",
  "names": ["isMotionValue", "v", "MotionValue", "useAutoMotionValue", "inputValue", "options", "optionsRef", "pe", "animation", "didInitialMount", "isOnCanvas", "RenderTarget", "onChangeDeps", "onChange", "te", "transformer", "value", "ref", "value1", "useConstant", "isMotionValue", "motionValue", "ue", "ref1", "newValue", "ref2", "animate2", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "playing", "canvasPlay", "muted", "playsinline", "controls", "progress", "objectFit", "backgroundColor", "radius", "isMixed", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "restartOnEnter", "posterEnabled", "startTimeProp", "volume", "loop", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "videoRef", "pe", "isSafari", "useIsBrowserSafari", "requestingPlay", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "startTime", "se", "shouldPlay", "autoPlay", "isMuted", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "ue", "videoProgress", "useAutoMotionValue", "value", "newValue", "useMotionValueEvent", "latest", "useOnEnter", "useOnExit", "src", "fragment", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "emailRegex", "validateEmail", "email", "FormSpark", "withCSS", "formId", "withName", "name", "withEmail", "withMessage", "message", "layout", "inputs", "button", "style", "gap", "onSubmit", "props", "nameValue", "setName", "ye", "emailValue", "setEmail", "messageValue", "setMessage", "isNameError", "setNameError", "isEmailError", "setEmailError", "isMessageError", "setMessageError", "isLoading", "setLoading", "isSuccess", "setSuccess", "isCanvas", "se", "RenderTarget", "gridTemplateRows", "rows", "gridTemplateColumns", "cols", "fontFamily", "fontSize", "fontWeight", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "validateForm", "te", "error", "handleSubmit", "event", "data", "entries", "handleNameChange", "handleEmailChange", "handleMessageChange", "p", "motion", "containerStyles", "u", "defaultStyle", "addPropertyControls", "ControlType", "fontControls", "paddingControl", "borderRadiusControl", "FormSpark_default", "getBorderStyle", "color", "width", "widthPerSide", "widthTop", "widthRight", "widthBottom", "widthLeft", "style", "result", "borderControls", "ControlType", "getFocusStyle", "color", "width", "style", "offset", "result", "focusControls", "ControlType", "getHoverStyle", "fillColor", "textColor", "borderColor", "hoverControls", "ControlType", "getPaddingStyle", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "paddingControls", "ControlType", "getRadiusStyle", "radius", "radiusPerCorner", "radiusTopLeft", "radiusTopRight", "radiusBottomRight", "radiusBottomLeft", "result", "radiusControls", "ControlType", "e", "t", "C", "j", "e", "t", "l", "r", "p", "S", "T", "withCSS", "n", "m", "y", "w", "V", "k", "$", "ae", "F", "N", "O", "useLocaleInfo", "Z", "L", "pe", "z", "A", "ye", "B", "u", "C", "o", "getPaddingStyle", "getRadiusStyle", "getBorderStyle", "getHoverStyle", "getFocusStyle", "addPropertyControls", "ControlType", "paddingControls", "radiusControls", "borderControls", "hoverControls", "focusControls", "LocaleSelector_default", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "qdKDtJl09", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "css", "FramerfoMTwrMaQ", "withCSS", "foMTwrMaQ_default", "addPropertyControls", "ControlType", "addFonts", "LocaleSelectorFonts", "getFonts", "LocaleSelector_default", "FooterFonts", "foMTwrMaQ_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "transformTemplate", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "transitions", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "serializationHash", "addPropertyOverrides", "u", "LocaleSelector_default", "foMTwrMaQ_default", "css", "FramerlAoIvMu14", "withCSS", "lAoIvMu14_default", "addPropertyControls", "ControlType", "addFonts", "LocaleSelectorFonts", "FooterFonts", "nasKr5qj1_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v0", "p", "x", "motion", "Link", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "__FramerMetadata__", "S7Z8XJajt_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v13", "v14", "v15", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "Link", "v6", "v7", "v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15", "__FramerMetadata__", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "valuesByLocaleId", "S7Z8XJajt_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap133rv80", "args", "onTap1x1nqvz", "onTap18kb3gv", "onTapvox6p2", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "LayoutGroup", "motion", "u", "cx", "RichText2", "x", "SVG", "Link", "css", "FramerS7Z8XJajt", "withCSS", "S7Z8XJajt_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "DropdownFlexFonts", "getFonts", "S7Z8XJajt_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "nasKr5qj1_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "Transition", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapt0b31n", "args", "onTaph5b5n2", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "LayoutGroup", "u", "cx", "Link", "SVG", "ComponentViewportProvider", "RichText2", "css", "FramernasKr5qj1", "withCSS", "nasKr5qj1_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
