{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js", "ssg:https://framerusercontent.com/modules/xNziRZIvZpyxinDzmq2Z/JYxiUtDEGSuoZCTaVBZ9/JGHshZ_2m.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const MAX_AREA=5e6;const CSS_VAR_NAME=\"--ticker-offset\";const supportsWaapi=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";let supportsRegisterProperty=true;if(typeof window!==\"undefined\"){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){supportsRegisterProperty=false;}}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const axis=isHorizontal?\"X\":\"Y\";const minus=direction===\"left\"||direction===\"top\"?\"-\":\"\";const transform=useTransform(()=>`translate${axis}(${minus}${offset.get()}px)`);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null,childrenArea:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}const fullChildrenArea=size.childrenArea===null?null:size.childrenArea*(duplicateBy+1);const isLayerTooBig=fullChildrenArea===null?null:fullChildrenArea>MAX_AREA;/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const[firstChild,lastChild]=childrenRef;const childrenLeft=firstChild.current?firstChild.current.offsetLeft:0;const childrenRight=lastChild.current?lastChild.current.offsetLeft+lastChild.current.offsetWidth:0;const childrenTop=firstChild.current?firstChild.current.offsetTop:0;const childrenBottom=lastChild.current?lastChild.current.offsetTop+lastChild.current.offsetHeight:0;const childrenWidth=childrenRight-childrenLeft;const childrenHeight=childrenBottom-childrenTop;const childrenArea=childrenWidth*childrenHeight;const childrenLength=(isHorizontal?childrenWidth:childrenHeight)+gap;setSize({parent:parentLength,children:childrenLength,childrenArea});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})},index+\"-original\");});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:isLayerTooBig===true?\"auto\":\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsWaapi&&(!isLayerTooBig||isLayerTooBig&&supportsRegisterProperty)){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed||isLayerTooBig===null){return;}if(isLayerTooBig){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){}}/**\n                 * If the layer is too big we want to animate a CSS variable instead of the transform\n                 * to avoid promoting the layer to the GPU.\n                 */const keyframes=isLayerTooBig?{[CSS_VAR_NAME]:[\"0px\",`${minus}${animateToValue}px`]}:{transform:[`translate${axis}(0px)`,`translate${axis}(${minus}${animateToValue}px)`]};animationRef.current=listRef.current.animate(keyframes,{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed,isLayerTooBig]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsWaapi){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||isLayerTooBig?\"auto\":\"transform\",transform:supportsWaapi?isLayerTooBig?`translate${axis}(var(${CSS_VAR_NAME}))`:\"none\":transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (677c5d1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Image,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import AtomsSpacer from\"https://framerusercontent.com/modules/rfpQAUzIpqRCiLjdA2Wx/ueypK1Vo1WdIXR7vukMm/g_7PKXfpm.js\";const AtomsSpacerFonts=getFonts(AtomsSpacer);const TickerFonts=getFonts(Ticker);const AtomsSpacerControls=getPropertyControls(AtomsSpacer);const serializationHash=\"framer-TyI72\";const variantClassNames={XUwzVMPnF:\"framer-v-1j7v42s\"};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 transformTemplate1=(_,t)=>`translate(-50%, -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 Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Horizontal 0\":\"CNjlsReHU\",\"Horizontal 128\":\"J6AgXzZci\",\"Horizontal 16\":\"qmMaeqg1S\",\"Horizontal 24\":\"VCQ2cgk2Y\",\"Horizontal 32\":\"n4UOgNJIW\",\"Horizontal 40\":\"eZ0GVB4MN\",\"Horizontal 48\":\"xOSgefVEY\",\"Horizontal 64\":\"slxzRC5Ur\",\"Horizontal 80\":\"K98rSN956\",\"Horizontal 96\":\"JmjeYi_5M\",\"Vertical 0\":\"TYTblXU1k\",\"Vertical 128\":\"OkBKY1fRK\",\"Vertical 16\":\"dQfCqjjGS\",\"Vertical 24\":\"QzsAbtnce\",\"Vertical 32\":\"CbrZWrv5v\",\"Vertical 40\":\"N0PJwhw2u\",\"Vertical 48\":\"buD6m0O7y\",\"Vertical 64\":\"aZG74rG3a\",\"Vertical 8\":\"rekf8ZfEx\",\"Vertical 80\":\"Zko4DZfmq\",\"Vertical 96\":\"NrKplTxJ8\"};const getProps=({background,gap,height,horizontalPadding,id,verticalPadding,width,...props})=>{return{...props,ntFpAZASG:background??props.ntFpAZASG??\"var(--token-75699816-2bb2-44a7-8c94-a87ab6635b3d, rgb(245, 245, 245))\",V1DmaTYZL:humanReadableEnumMap[verticalPadding]??verticalPadding??props.V1DmaTYZL??\"buD6m0O7y\",w_tY_7j4j:humanReadableEnumMap[horizontalPadding]??horizontalPadding??props.w_tY_7j4j??\"n4UOgNJIW\",zTEEDbGHO:humanReadableEnumMap[gap]??gap??props.zTEEDbGHO??\"CbrZWrv5v\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,V1DmaTYZL,w_tY_7j4j,ntFpAZASG,zTEEDbGHO,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"XUwzVMPnF\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1j7v42s\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"XUwzVMPnF\",ref:refBinding,style:{backgroundColor:ntFpAZASG,...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||388)-0-232)/2+0+0),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6bl9gi-container\",layoutDependency:layoutDependency,layoutId:\"aVeFmsSPr-container\",nodeId:\"aVeFmsSPr\",rendersWithMotion:true,scopeId:\"JGHshZ_2m\",children:/*#__PURE__*/_jsx(AtomsSpacer,{height:\"100%\",id:\"aVeFmsSPr\",layoutId:\"aVeFmsSPr\",style:{width:\"100%\"},variant:V1DmaTYZL,width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v1mmzh\",layoutDependency:layoutDependency,layoutId:\"uV7nRPFDo\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:230,y:(componentViewport?.y||0)+0+(((componentViewport?.height||388)-0-232)/2+1+0)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-105oa7j-container\",layoutDependency:layoutDependency,layoutId:\"M9E42bx3j-container\",nodeId:\"M9E42bx3j\",rendersWithMotion:true,scopeId:\"JGHshZ_2m\",children:/*#__PURE__*/_jsx(AtomsSpacer,{height:\"100%\",id:\"M9E42bx3j\",layoutId:\"M9E42bx3j\",style:{height:\"100%\"},variant:w_tY_7j4j,width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qtqz8a\",layoutDependency:layoutDependency,layoutId:\"dbWEW8_Li\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tsbvey-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ohWxjdZuc-container\",nodeId:\"ohWxjdZuc\",rendersWithMotion:true,scopeId:\"JGHshZ_2m\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"ohWxjdZuc\",layoutId:\"ohWxjdZuc\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-baegpv\",\"data-framer-name\":\"First row\",layoutDependency:layoutDependency,layoutId:\"ONMCssSoX\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-v8y5q0\",\"data-framer-name\":\"$3\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"SIBx4KjSR\",svg:'<svg data-name=\"Livello 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\"><path d=\"M30.683 32.73s1.664 2.207 2.256 2.892c.586.685 1.238 1.571 1.957 1.622.802.054 1.842-1.274 2.118-1.478a1.739 1.739 0 0 1 1.178-.392c.979-.067 3.019 1.13 4.307 1.109 3.473-.06 6.265-2.645 7.603-3.884s2.218-1.96 2.218-1.96.459.067.149.736c-.26.558-3.854 6.283-9.86 6.446-2.62.07-3.073-1.313-4.605-1.192-.962.06-1.902 1.995-3.732 2.007-1.45.01-3.716-4.584-3.716-4.584s-.664-1.281.127-1.323\"/><path d=\"M37.174 34.243a1.222 1.222 0 0 0 1.001-1.373 1.224 1.224 0 0 0-1.592-.59c-.713.217-1.167.832-1.001 1.373a1.224 1.224 0 0 0 1.592.59M35.77 49.36h2.212v-8.047H35.77Zm4.03-8.047h2.721l4.197 6.018h.033v-6.018h2.118v8.048h-2.704l-4.213-6.019h-.033v6.019H39.8m10.822-8.048h3.014c3.378 0 6.364.831 6.364 4.024 0 3.195-2.986 4.024-6.364 4.024h-3.014Zm2.212 6.78h1.227c1.853 0 3.633-1.004 3.633-2.756s-1.78-2.756-3.633-2.756h-1.227m-20.315-1.268-2.068 6.435h-.034l-1.94-6.435h-2.19l-1.88 6.435h-.033l-2.052-6.435H20l2.92 8.048h2.858l1.576-5.168 1.598 5.168h2.842l2.876-8.048\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-vujtni\",\"data-framer-name\":\"$11\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"RNflT_5MS\",svg:'<svg id=\"Livello_1\" data-name=\"Livello 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\"><defs><style>.cls-1{fill:#171919}</style></defs><path class=\"cls-1\" d=\"M54.12 40.575c-.037 1.898.37 2.903 1.935 2.903 1.562 0 1.784-1.711 1.784-3.014s-.296-2.567-1.933-2.567c-1.005 0-1.748.782-1.786 2.678M50.958 48.5V35.665h3.2v.521c0 .695.277.407.507.137a3.007 3.007 0 0 1 2.357-.92c1.6 0 4.091 1.117 4.091 5.061 0 3.051-1.487 5.283-4.055 5.283a3.405 3.405 0 0 1-2.418-.78c-.186-.224-.445-.262-.445 0V48.5Zm-24.742-17h3.46v9.076c0 1.563-.67 4.836-5.469 4.836-4.798 0-5.32-3.052-5.32-4.762v-1.673h3.348v1.636a1.853 1.853 0 0 0 1.934 1.935 1.822 1.822 0 0 0 2.047-1.898Zm10.697 7.7a1.665 1.665 0 0 0-1.711-1.824c-1.153 0-1.564.819-1.564 1.824Zm-2.044-3.907c2.716 0 5.097 1.042 5.097 5.84h-6.437c0 1.526.633 2.16 1.75 2.16a1.6 1.6 0 0 0 1.488-.894h3.161c0 1.376-1.897 3.236-4.762 3.2a4.668 4.668 0 0 1-4.874-4.911c0-2.493 1.415-5.395 4.577-5.395M47.2 39.2a1.666 1.666 0 0 0-1.711-1.824c-1.154 0-1.562.819-1.562 1.824Zm-2.043-3.907c2.715 0 5.096 1.042 5.096 5.84h-6.437c0 1.526.633 2.16 1.75 2.16a1.595 1.595 0 0 0 1.486-.894h3.164c0 1.376-1.897 3.236-4.761 3.2a4.667 4.667 0 0 1-4.874-4.911c0-2.493 1.413-5.395 4.576-5.395m14.76 10.775a.894.894 0 1 0 .895.894.895.895 0 0 0-.895-.894m0 1.952a1.059 1.059 0 1 1 1.06-1.058 1.06 1.06 0 0 1-1.06 1.058\"/><path class=\"cls-1\" d=\"m60.331 47.488-.215-.505a.245.245 0 0 0 .13-.078.317.317 0 0 0 .074-.202.31.31 0 0 0-.343-.305h-.43v1.09h.128v-.472h.312l.203.472Zm-.658-.583v-.388h.302c.127 0 .209.07.209.181a.2.2 0 0 1-.226.207Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gqd20\",\"data-framer-name\":\"$4\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"eRDFxDXal\",svg:'<svg data-name=\"Livello 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\"><path d=\"M34.924 49.27h-1.669l-.411.914h-.849l1.669-3.916h.874l1.669 3.916h-.871Zm-.823-2.038-.597 1.382h1.143Zm7.628 2.181h2.153v.77h-3.009v-3.915h3.009v.713h-2.153v.842h1.905v.714h-1.905Zm3.853-3.145v3.117h1.91v.799H44.7v-3.916Zm3.492 0v3.117h1.91v.799H48.19v-3.916Zm2.544 3.916v-3.916h.827v3.916Zm-21.077-3.916h.975v3.916l-.86-.007v-2.645l-1.144 1.741-1.144-1.741v2.645l-.861.007v-3.916h.976l1.029 1.661 1.029-1.661zm8.623 2.517a1.419 1.419 0 0 0 .909-1.268c0-.937-.915-1.25-1.567-1.25h-1.76v3.917h.8v-1.29h.783l.888 1.29h.98Zm-.692-.598h-.93v-1.19h.949s.779-.017.779.595c0 .338-.262.595-.798.595Zm-6.984-11.468 4.513 2.619 3.972-2.283L27.5 29.816l.007 14.402 3.984-2.289-.003-5.21zm17.024 0-4.513 2.619-3.972-2.283L52.5 29.816l-.007 14.402-3.984-2.289.003-5.21z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-v1zppd\",\"data-framer-name\":\"Costa\",layoutDependency:layoutDependency,layoutId:\"Sa3jtXHet\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1dc59qe\",\"data-framer-name\":\"Costa_logo_2021\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"lLchaLWWl\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 42\"><path d=\"M 36.747 16.974 C 34.756 20.458 31.807 21.824 27.704 21.824 C 24.298 21.824 21.258 20.569 19.262 18.604 C 21.351 23.082 25.903 26.187 31.186 26.187 C 35.639 26.187 39.575 23.98 41.951 20.604 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 18.045 13.091 C 18.045 17.238 22.369 20.599 27.704 20.599 C 29.185 20.605 30.654 20.335 32.034 19.804 C 31.753 19.839 31.47 19.856 31.187 19.856 C 27.437 19.856 24.397 16.828 24.397 13.092 C 24.397 9.355 27.437 6.327 31.187 6.327 C 33.406 6.328 35.485 7.406 36.748 9.212 L 41.952 5.582 C 39.576 2.207 35.64 0 31.187 0 C 23.93 0 18.046 5.861 18.045 13.09 Z M 12.891 36.24 C 11.941 37.597 10.379 38.408 8.71 38.408 C 5.891 38.408 3.606 36.132 3.606 33.321 C 3.606 30.51 5.891 28.233 8.71 28.233 C 10.379 28.234 11.941 29.045 12.891 30.403 L 15.845 28.343 C 14.223 26.026 11.557 24.643 8.71 24.641 C 3.9 24.642 0 28.527 0 33.319 C 0 38.111 3.9 41.996 8.711 41.996 C 11.558 41.995 14.223 40.612 15.845 38.295 Z M 28.525 33.187 C 27.885 31.677 26.679 30.473 25.159 29.828 C 22.781 28.828 20.028 29.364 18.208 31.181 C 16.388 32.983 15.841 35.693 16.823 38.049 C 17.805 40.405 20.123 41.944 22.697 41.95 C 24.377 41.952 25.988 41.287 27.17 40.105 C 28.989 38.281 29.524 35.553 28.525 33.188 Z M 20.459 33.423 C 21.051 32.831 21.857 32.499 22.697 32.502 C 24.429 32.502 25.837 33.91 25.837 35.64 C 25.841 36.473 25.509 37.272 24.917 37.862 C 24.326 38.449 23.524 38.779 22.687 38.779 C 21.85 38.779 21.048 38.449 20.457 37.862 C 19.229 36.632 19.229 34.653 20.457 33.423 Z M 46.831 39.005 C 46.46 39.084 46.169 39.14 45.801 39.15 C 45.334 39.164 44.999 39.066 44.779 38.85 C 44.544 38.622 44.433 38.259 44.441 37.742 L 44.441 31.76 L 46.793 31.76 L 46.793 29.046 L 44.441 29.046 L 44.441 25.817 L 41.505 26.8 L 41.465 29.056 L 39.673 29.056 L 39.673 31.761 L 41.241 31.761 L 41.241 37.743 C 41.241 38.981 41.504 39.968 42.024 40.681 C 42.543 41.393 43.318 41.824 44.318 41.951 C 44.485 41.971 44.653 41.981 44.822 41.98 C 45.747 41.98 46.815 41.746 46.868 41.734 L 46.938 41.718 L 46.938 38.985 Z M 38.014 35.874 C 37.491 35.361 36.704 34.892 35.382 34.304 L 35.006 34.136 C 34.619 33.967 34.234 33.795 33.85 33.62 C 33.406 33.414 33.197 33.132 33.276 32.846 C 33.38 32.473 33.97 32.12 34.744 32.195 C 35.289 32.251 35.667 32.381 36.22 32.952 C 36.241 32.978 36.325 33.085 36.427 33.221 L 36.484 33.297 L 38.541 31.576 L 38.514 31.515 C 37.946 30.248 36.233 29.329 34.442 29.329 C 33.334 29.329 32.24 29.683 31.436 30.3 C 31.029 30.608 30.693 30.999 30.452 31.446 C 30.204 31.915 30.076 32.437 30.079 32.966 C 30.074 33.451 30.185 33.93 30.403 34.364 C 30.606 34.755 30.882 35.104 31.216 35.393 C 31.57 35.709 32.102 36.105 33.354 36.648 C 33.615 36.759 33.857 36.859 34.088 36.954 C 34.879 37.276 35.447 37.508 35.635 37.848 C 35.682 37.946 35.704 38.054 35.699 38.162 C 35.686 38.337 35.6 38.499 35.461 38.609 C 35.19 38.847 34.558 39.078 33.922 39.036 C 32.895 38.969 31.858 38.359 31.4 37.551 L 31.396 37.543 L 31.381 37.524 L 31.367 37.504 L 31.301 37.409 L 29.502 39.491 L 29.529 39.543 C 29.851 40.19 30.452 40.786 31.222 41.22 C 32.091 41.703 33.072 41.953 34.069 41.947 C 35.337 41.947 36.527 41.566 37.419 40.873 C 37.86 40.538 38.222 40.112 38.482 39.624 C 38.745 39.119 38.881 38.558 38.877 37.989 C 38.878 37.127 38.603 36.454 38.014 35.874 Z M 57.158 41.887 L 59.995 41.887 L 59.995 29.097 L 57.22 29.97 L 57.144 30.518 C 56.682 30.146 55.585 29.333 53.578 29.331 C 52.731 29.331 51.539 29.68 50.874 30.017 C 49.978 30.474 49.204 31.135 48.615 31.945 C 47.419 33.587 47.089 35.697 47.726 37.621 C 48.04 38.569 48.575 39.431 49.289 40.136 C 50.464 41.3 52.059 41.953 53.721 41.95 L 53.754 41.95 C 54.44 41.946 56.004 41.678 57.141 40.699 Z M 56.891 35.64 C 56.891 35.696 56.891 35.749 56.887 35.802 C 56.887 35.81 56.887 35.817 56.887 35.824 L 56.887 35.846 C 56.887 35.886 56.882 35.924 56.878 35.962 C 56.802 36.731 56.441 37.444 55.866 37.965 C 54.622 39.087 52.707 39.041 51.519 37.861 C 50.849 37.197 50.514 36.27 50.606 35.335 C 50.699 34.401 51.209 33.556 51.997 33.033 C 52.518 32.688 53.13 32.503 53.757 32.502 C 55.483 32.502 56.891 33.91 56.891 35.64 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:10443844e3,withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1w2vdq5\",\"data-framer-name\":\"$9\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"P3LgfiI__\",svg:'<svg id=\"Livello_1\" data-name=\"Livello 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\"><defs><style>.cls-1{fill-rule:evenodd}</style></defs><path class=\"cls-1\" d=\"M31.624 53.266h.453a4.427 4.427 0 0 1-.057.654.599.599 0 0 1-.518.479 7.318 7.318 0 0 1-1.257.072 9.71 9.71 0 0 1-1.583-.083.67.67 0 0 1-.527-.41A3.647 3.647 0 0 1 28 52.77a5.138 5.138 0 0 1 .102-1.214.695.695 0 0 1 .632-.523 10.355 10.355 0 0 1 1.44-.074 6.485 6.485 0 0 1 1.296.09.746.746 0 0 1 .338.17.558.558 0 0 1 .18.293 3.285 3.285 0 0 1 .043.611h-.432l-.003-.12a.93.93 0 0 0-.049-.357.328.328 0 0 0-.19-.163 4.156 4.156 0 0 0-1.206-.105c-.46 0-.803.013-1.033.037a.99.99 0 0 0-.45.12.565.565 0 0 0-.148.338 4.127 4.127 0 0 0-.047.711c0 .143.006.328.018.556q.017.338.036.467a.47.47 0 0 0 .129.294.553.553 0 0 0 .318.11q.397.041 1.134.042.225 0 .589-.014a6.85 6.85 0 0 0 .464-.028.835.835 0 0 0 .29-.077.271.271 0 0 0 .13-.158 2.28 2.28 0 0 0 .043-.51Zm3.075-2.308a9.409 9.409 0 0 1 1.263.058.965.965 0 0 1 .536.223.675.675 0 0 1 .16.25 1.79 1.79 0 0 1 .085.405 7.497 7.497 0 0 1 .038.835 5.881 5.881 0 0 1-.06.975.922.922 0 0 1-.209.485.881.881 0 0 1-.504.224 7.718 7.718 0 0 1-1.153.06 33.281 33.281 0 0 1-1.504-.038 1.564 1.564 0 0 1-.412-.085.725.725 0 0 1-.268-.184.867.867 0 0 1-.209-.46 6.613 6.613 0 0 1-.052-1.004 4.228 4.228 0 0 1 .115-1.183.715.715 0 0 1 .632-.49 11.825 11.825 0 0 1 1.542-.07Zm-.268.42a7.01 7.01 0 0 0-1.075.058.572.572 0 0 0-.288.114.473.473 0 0 0-.124.262 4.64 4.64 0 0 0-.058.855 7.71 7.71 0 0 0 .032.843.648.648 0 0 0 .116.355.38.38 0 0 0 .192.107 2.205 2.205 0 0 0 .397.051q.447.03 1.04.031a7.672 7.672 0 0 0 1.228-.069.405.405 0 0 0 .359-.356 5.25 5.25 0 0 0 .058-.89 6.214 6.214 0 0 0-.051-.97.415.415 0 0 0-.397-.34 3.93 3.93 0 0 0-.455-.04q-.254-.01-.974-.012Zm2.803-.41h.93l1.896 2.96 1.864-2.96h.937v3.492h-.466V51.4H42.2l-1.948 3.06h-.379l-1.97-3.06H37.7v3.06h-.465v-3.49Zm10.018 3.492-.414-.737h-2.824l-.416.737h-.528l1.98-3.492h.745l1.974 3.492Zm-.636-1.146-1.088-1.936h-.186l-1.103 1.936Zm1.262-2.345h.465v1.716c0 .506.005.812.016.916a.443.443 0 0 0 .114.289.555.555 0 0 0 .315.118 9.45 9.45 0 0 0 1.046.044 9.737 9.737 0 0 0 1.289-.056.491.491 0 0 0 .296-.13.51.51 0 0 0 .098-.314c.008-.13.014-.42.018-.867V50.97H52v1.716q-.005.698-.025.964a.785.785 0 0 1-.335.635 1.056 1.056 0 0 1-.435.135q-.256.029-1.261.052-.883-.013-1.056-.022a2.558 2.558 0 0 1-.381-.052.712.712 0 0 1-.507-.39 1.006 1.006 0 0 1-.096-.367c-.013-.142-.022-.46-.026-.955V50.97Zm-7.796-25.438A11.121 11.121 0 0 0 29.06 36.723c.033 7.073 7.114 11.643 12.52 10.575v-1.84c-.104-1.344-.783-2.05-2.142-1.97h-1.899A2.098 2.098 0 0 1 35.2 41.13v-9.253c.147-2.002 1.633-1.948 2.713-1.99a1.944 1.944 0 0 0 2.187-2.161l-.017-2.195Z\"/><path class=\"cls-1\" d=\"M42.146 25.687v2.869c-.172.719-.454 1.22-1.664 1.528-1.514-.004-2.579.019-2.825 1.556v8.956c.028.99.055 2.538 2.906 2.313 2.587-.223 2.977.74 3.135 1.664v2.271a8.732 8.732 0 0 0 2.313-1.093v-1.598a2.021 2.021 0 0 0-2.485-1.905c-1.914.223-3.419-.454-3.26-2.127v-8.54a1.406 1.406 0 0 1 1.438-1.406c1.155.029 2.364-.284 2.605-1.92v-1.897a9.07 9.07 0 0 0-2.163-.671Z\"/><path class=\"cls-1\" d=\"m45.964 27.143.006 1.566a1.586 1.586 0 0 1-1.291 1.406c-1.223-.003-2.045.147-2.243 1.388v8.2a1.926 1.926 0 0 0 2.346 1.93c2.126-.293 2.762.932 2.89 1.677v1.207a14.763 14.763 0 0 0 1.297-1.39l.004-.817a1.49 1.49 0 0 0-1.828-1.193c-2.025.18-2.769-.447-2.64-1.798v-7.864a1.116 1.116 0 0 1 .977-1.242c.933.023 1.766-.027 1.984-1.348v-.646a12.525 12.525 0 0 0-1.502-1.076Z\"/><path class=\"cls-1\" d=\"M48.74 29.538c-.25.628-.266.593-.93.763-.833-.002-1.393.075-1.528.92v7.875a1.376 1.376 0 0 0 1.63 1.377c1.446-.2 2.063.416 2.15.923a5.831 5.831 0 0 0 .406-.93c-.198-.384-.714-.407-1.048-.387-1.38.123-1.52-.387-1.713-1.245l-.016-7.362c-.026-.64.377-.877.665-.845.635.015.669-.118.92-.41-.129-.178-.508-.66-.536-.68Z\"/><path class=\"cls-1\" d=\"M49.804 31.046a.714.714 0 0 0-.53.548V38.6c.037.89.897.942 1.554.886.041-.136.082-.3.113-.434-.748-.04-.79-.18-.89-.594l-.01-6.612a.733.733 0 0 1 .041-.29c-.056-.095-.185-.35-.278-.51Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-dij99l\",\"data-framer-name\":\"$10\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"r1HOCuBP9\",svg:'<svg data-name=\"Livello 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\"><path d=\"M25.985 41.63H23.54l-.024.212a2.422 2.422 0 0 1-2.632 2.17c-2.057 0-3.439-1.603-3.439-3.989 0-2.422 1.382-4.05 3.439-4.05a2.474 2.474 0 0 1 2.561 1.943l.047.179h2.421l-.067-.292c-.561-2.442-2.357-3.786-5.054-3.786a5.606 5.606 0 0 0-4.202 1.663A6.222 6.222 0 0 0 15 39.947c0 3.61 2.297 6.036 5.716 6.036 2.868 0 4.82-1.524 5.225-4.077Z\"/><path d=\"M32.984 43.563V41c0-2.262-.975-3.184-3.366-3.184-2.021 0-3.214.814-3.544 2.418l-.06.287h2.142l.034-.199c.14-.823.984-.946 1.474-.946.754 0 1.242.296 1.242.754 0 .319-.094.616-1.222.74l-.402.042a4.564 4.564 0 0 0-2.838.865 2.22 2.22 0 0 0-.635 1.633 2.528 2.528 0 0 0 2.772 2.558 3.235 3.235 0 0 0 2.447-1.041 5.124 5.124 0 0 0 .115.573l.046.178h2.235l-.137-.33a4.544 4.544 0 0 1-.303-1.785Zm-2.017-1.51c0 1.552-.639 2.34-1.898 2.34-.7 0-1.136-.377-1.136-.983 0-.497.21-.812 1.308-1.048.136-.03.27-.056.397-.081a4.316 4.316 0 0 0 1.325-.403c.002.06.004.118.004.175Z\"/><path d=\"M44.045 40.972c-1.313-.26-1.738-.385-1.738-.873 0-.432.512-.723 1.274-.723.9 0 1.367.36 1.393 1.068l.009.23h2.001l-.007-.246c-.05-1.66-1.293-2.612-3.412-2.612-1.993 0-3.183.933-3.183 2.497 0 1.696 1.149 2.08 2.903 2.475l.342.074c1.07.228 1.44.33 1.44.777 0 .482-.476.769-1.274.769-.752 0-1.652-.208-1.668-1.2l-.004-.234H40.18c-.185-1.313-1.31-1.659-2.999-2.002-1.314-.26-1.739-.385-1.739-.873 0-.432.512-.723 1.273-.723.9 0 1.368.36 1.394 1.067l.008.23h2.002l-.008-.245c-.05-1.66-1.293-2.612-3.412-2.612-1.993 0-3.183.933-3.183 2.497 0 1.695 1.15 2.08 2.903 2.475l.342.074c1.07.228 1.44.33 1.44.777 0 .482-.476.769-1.273.769-.752 0-1.652-.208-1.669-1.2l-.004-.234h-2.09l.033.267c.226 1.835 1.447 2.727 3.73 2.727 1.9 0 3.053-.79 3.25-2.174.392 1.458 1.577 2.174 3.616 2.174 2.092 0 3.291-.95 3.291-2.603 0-1.653-1.187-2.017-3.039-2.393Zm3.418-2.866h2.08v7.572h-2.08zm0-3.052h2.08v2.125h-2.08zm7.067 2.762a2.889 2.889 0 0 0-2.174.86l.03-.57h-2.092v7.572h2.079v-3.946c0-1.422.535-2.142 1.592-2.142.546 0 1.105.171 1.105 1.44v4.648h2.093v-4.846c0-1.945-.934-3.016-2.632-3.016Zm10.332 7.532a4.547 4.547 0 0 1-.301-1.785V41c0-2.262-.976-3.184-3.367-3.184-2.022 0-3.214.814-3.546 2.418l-.058.287h2.14l.034-.199c.142-.823.985-.946 1.475-.946.754 0 1.242.296 1.242.754 0 .319-.093.616-1.222.74l-.4.042a4.57 4.57 0 0 0-2.84.865 2.223 2.223 0 0 0-.634 1.633 2.528 2.528 0 0 0 2.77 2.558 3.232 3.232 0 0 0 2.448-1.04 5.604 5.604 0 0 0 .114.572l.047.178H65Zm-2.32-3.296c0 1.553-.638 2.34-1.897 2.34-.701 0-1.136-.376-1.136-.982 0-.497.209-.812 1.307-1.048.137-.03.27-.056.398-.081a4.324 4.324 0 0 0 1.325-.403l.003.175Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-p75kkk\",\"data-framer-name\":\"$12\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"UT3qsbaQV\",svg:'<svg id=\"Livello_1\" data-name=\"Livello 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\"><defs><style>.cls-1{fill-rule:evenodd}</style></defs><path class=\"cls-1\" d=\"m25.453 42.145 2.768-3.642c-7.186.825-12.704 2.915-13.201 6.215-.264 1.748 2.148 2.331 5.208 2.339v-.342c-5.208-.612-1.25-4.08 5.225-4.57Z\"/><path class=\"cls-1\" d=\"m32.436 36.898 3.084-3.955c-10.723.429-17.365 3.589-19.866 9.52h.207c2.587-2.9 7.253-5.061 16.575-5.565Zm.607 5.96 4.152-6.046h8.085l-1.044 1.506h-4.929l-.62.898h3.914l-1.036 1.505h-3.916l-1.474 2.137h-3.132zm9.602 0 4.152-6.046h4.783c2.12 0 3.245.893 3.166 1.85-.092 1.103-1.785 2.29-5.399 2.29h-2.283l-1.238 1.906Zm5.422-3.323h1.99c2.02 0 2.06-1.232.753-1.304h-1.905Zm6.834 3.323 3.211-4.524H55.15l.947-1.522H65l-1.001 1.474H61.28l-3.107 4.572h-3.272z\"/><path d=\"m32.929 46.84.002-1.28a1.535 1.535 0 0 1 .17-.021q.095-.007.224-.007a.631.631 0 0 1 .397.104.355.355 0 0 1 .101.13.394.394 0 0 1 .038.17.405.405 0 0 1-.12.309.6.6 0 0 1-.421.136l-.1-.006v.464Zm.29-1.077v.385a.438.438 0 0 0 .097.008.284.284 0 0 0 .186-.056.19.19 0 0 0 .068-.156.173.173 0 0 0-.06-.141.262.262 0 0 0-.17-.05c-.036 0-.058 0-.067.002a.498.498 0 0 0-.054.008Zm1.551 1.097a.566.566 0 0 1-.447-.186.69.69 0 0 1-.165-.474.698.698 0 0 1 .175-.488.589.589 0 0 1 .457-.191.576.576 0 0 1 .458.192.68.68 0 0 1 .158.464.697.697 0 0 1-.174.5.606.606 0 0 1-.461.184Zm.01-.232a.264.264 0 0 0 .23-.124.554.554 0 0 0 .084-.317.531.531 0 0 0-.08-.304.268.268 0 0 0-.234-.13.263.263 0 0 0-.229.127.549.549 0 0 0-.084.312.537.537 0 0 0 .084.313.265.265 0 0 0 .23.123Zm1.507.212h-.321l-.308-1.298h.314l.098.535.03.174.047.279.04-.216q.022-.12.048-.24l.11-.532h.312l.104.547q.023.125.038.217t.031.218q.033-.202.08-.45l.105-.532h.299l-.335 1.297h-.318l-.11-.558q-.023-.117-.036-.2t-.025-.2q-.025.136-.03.156-.026.136-.05.244Zm2.122-.788v.239h-.478v.308h.533v.24h-.827v-1.297h.801v.24h-.507v.27h.478zm.427.788v-1.28q.075-.012.176-.02t.214-.008a1.097 1.097 0 0 1 .25.024.439.439 0 0 1 .17.078.329.329 0 0 1 .12.272.32.32 0 0 1-.072.206.358.358 0 0 1-.158.113.254.254 0 0 1 .106.093.568.568 0 0 1 .068.156l.07.265a.687.687 0 0 0 .036.1h-.3a1.48 1.48 0 0 1-.091-.302.33.33 0 0 0-.073-.163.19.19 0 0 0-.137-.045h-.089v.51Zm.29-1.08v.357h.116a.265.265 0 0 0 .171-.05.167.167 0 0 0 .062-.136q0-.181-.216-.181-.036 0-.07.002a.453.453 0 0 0-.063.007Zm1.259 1.079v-1.051h-.349v-.246h.998v.246h-.354v1.051h-.295zm.975.001v-1.28q.076-.012.177-.02t.214-.008a1.097 1.097 0 0 1 .25.024.439.439 0 0 1 .17.078.329.329 0 0 1 .12.272.32.32 0 0 1-.072.206.358.358 0 0 1-.158.113.254.254 0 0 1 .106.093.568.568 0 0 1 .068.156q.034.132.071.265a.682.682 0 0 0 .035.1h-.3a1.48 1.48 0 0 1-.091-.302.33.33 0 0 0-.073-.163.19.19 0 0 0-.137-.045h-.089v.51Zm.291-1.08v.357h.116a.265.265 0 0 0 .171-.05.167.167 0 0 0 .062-.136q0-.181-.216-.181-.036 0-.07.002a.452.452 0 0 0-.063.007Zm1.713.746h-.371l-.093.333h-.304l.397-1.297h.385l.402 1.297h-.316l-.1-.333Zm-.329-.22h.287l-.08-.274q-.016-.054-.036-.133l-.03-.118q-.016.05-.033.125l-.03.126Zm1.089-.744h.295v1.298h-.295zm.989 1.298h-.269v-1.298h.343l.27.475a3.613 3.613 0 0 1 .211.445q-.02-.244-.02-.54v-.38h.27v1.297h-.308l-.277-.5q-.062-.112-.117-.223-.062-.124-.108-.235h-.006c0 .085 0 .15.002.196l.01.371Zm2.125-.001v-1.051h-.349v-.246h.998v.246h-.355v1.051h-.294zm1.724-.787v.239h-.477v.308h.533v.24h-.828v-1.297h.801v.24h-.506v.27h.477zm1.312.522.045.229a.614.614 0 0 1-.135.04 1.003 1.003 0 0 1-.198.018.679.679 0 0 1-.509-.187.635.635 0 0 1-.171-.464.654.654 0 0 1 .206-.51.717.717 0 0 1 .503-.177 1.007 1.007 0 0 1 .191.016.49.49 0 0 1 .128.04l-.06.232a.743.743 0 0 0-.112-.033.609.609 0 0 0-.134-.015.406.406 0 0 0-.295.106.495.495 0 0 0-.01.634.406.406 0 0 0 .307.113.619.619 0 0 0 .244-.042Zm.385-1.032h.294v.5h.484v-.5h.292v1.297h-.292v-.541h-.484v.541h-.294v-1.297zm1.743 1.298h-.27v-1.298h.344l.27.475a3.609 3.609 0 0 1 .21.445q-.018-.244-.018-.54v-.38h.27v1.297h-.309l-.277-.5q-.062-.112-.118-.223-.061-.124-.107-.235h-.006c0 .085 0 .15.002.196l.01.371Zm1.759.02a.566.566 0 0 1-.447-.186.69.69 0 0 1-.165-.474.698.698 0 0 1 .174-.488.589.589 0 0 1 .458-.191.576.576 0 0 1 .458.192.68.68 0 0 1 .158.464.697.697 0 0 1-.174.5.606.606 0 0 1-.462.184Zm.01-.232a.264.264 0 0 0 .23-.124.554.554 0 0 0 .084-.317.531.531 0 0 0-.081-.304.268.268 0 0 0-.233-.13.263.263 0 0 0-.23.127.549.549 0 0 0-.084.312.537.537 0 0 0 .085.313.265.265 0 0 0 .229.123Zm.966.211v-1.297h.294v1.051h.516v.246h-.81zm1.611.021a.566.566 0 0 1-.448-.186.69.69 0 0 1-.165-.474.698.698 0 0 1 .175-.488.589.589 0 0 1 .457-.191.576.576 0 0 1 .458.192.68.68 0 0 1 .158.464.697.697 0 0 1-.174.5.606.606 0 0 1-.461.184Zm.01-.232a.264.264 0 0 0 .23-.124.554.554 0 0 0 .083-.317.531.531 0 0 0-.08-.304.268.268 0 0 0-.234-.13.263.263 0 0 0-.229.127.549.549 0 0 0-.085.312.537.537 0 0 0 .085.313.265.265 0 0 0 .23.123Zm2.049-.532v.684a1.506 1.506 0 0 1-.2.05 1.235 1.235 0 0 1-.233.023.976.976 0 0 1-.306-.043.577.577 0 0 1-.222-.13.56.56 0 0 1-.136-.208.74.74 0 0 1-.047-.266.626.626 0 0 1 .206-.498.784.784 0 0 1 .536-.18 1.14 1.14 0 0 1 .21.018.576.576 0 0 1 .15.046l-.062.235a.63.63 0 0 0-.131-.04.857.857 0 0 0-.171-.016.44.44 0 0 0-.306.104.404.404 0 0 0-.124.316.426.426 0 0 0 .112.312.397.397 0 0 0 .297.113.365.365 0 0 0 .144-.02v-.27h-.2v-.23Zm.377-.554h.295v1.298h-.295zm1.468.51v.239h-.478v.308h.534v.24h-.828v-1.297h.801v.24h-.507v.27h.478zm.353.728.06-.243a.788.788 0 0 0 .151.058.652.652 0 0 0 .174.023.263.263 0 0 0 .154-.037.12.12 0 0 0 .053-.103.125.125 0 0 0-.05-.1.588.588 0 0 0-.168-.083.68.68 0 0 1-.258-.149.32.32 0 0 1-.098-.235.346.346 0 0 1 .133-.279.545.545 0 0 1 .358-.11.902.902 0 0 1 .185.017.736.736 0 0 1 .146.047l-.066.237a.586.586 0 0 0-.136-.047.661.661 0 0 0-.135-.015.239.239 0 0 0-.14.035.107.107 0 0 0-.049.09.119.119 0 0 0 .056.099.94.94 0 0 0 .185.084.614.614 0 0 1 .255.157.337.337 0 0 1 .082.23.357.357 0 0 1-.127.283.589.589 0 0 1-.397.122.882.882 0 0 1-.205-.024.697.697 0 0 1-.163-.057Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ujfs1j\",\"data-framer-name\":\"$6\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"n4XYu0p75\",svg:'<svg data-name=\"Livello 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\"><path d=\"M20.976 40.46h-3.044c-.139 0-.202.062-.202.175a1.053 1.053 0 0 0 .453.793 1.503 1.503 0 0 0 .982.377 2.471 2.471 0 0 0 .692-.113 2.25 2.25 0 0 0 .629-.29.71.71 0 0 1 .352-.15.413.413 0 0 1 .327.201.653.653 0 0 1 .164.428 1.154 1.154 0 0 1-.58.893 3.807 3.807 0 0 1-2.364.768 3.37 3.37 0 0 1-2.278-.793 3.113 3.113 0 0 1-.73-.93A3.297 3.297 0 0 1 15 40.282a3.143 3.143 0 0 1 .654-1.95 3.444 3.444 0 0 1 1.447-1.12 3.581 3.581 0 0 1 1.422-.277 3.215 3.215 0 0 1 2.088.692 2.6 2.6 0 0 1 .692.83 2.186 2.186 0 0 1 .302 1.058 1.313 1.313 0 0 1-.176.692.565.565 0 0 1-.453.251Zm-2.868-1.209h.654q.415 0 .415-.377a.781.781 0 0 0-.201-.566.658.658 0 0 0-.529-.214.67.67 0 0 0-.566.29.912.912 0 0 0-.188.54.367.367 0 0 0 .088.277.874.874 0 0 0 .327.05Zm7.599-2.34a3.12 3.12 0 0 1 1.9.566 1.664 1.664 0 0 1 .579.692 2.766 2.766 0 0 1 .163 1.07l-.012.956a3.88 3.88 0 0 0 .138 1.296.354.354 0 0 0 .138.176.975.975 0 0 0 .277.076c.139.025.202.113.202.276a1.094 1.094 0 0 1-.252.642 2.164 2.164 0 0 1-1.66.856 1.314 1.314 0 0 1-1.07-.466.347.347 0 0 0-.252-.164.586.586 0 0 0-.34.164 2.63 2.63 0 0 1-2.83.1 1.758 1.758 0 0 1-.541-.628 1.662 1.662 0 0 1-.202-.806 1.558 1.558 0 0 1 .541-1.182 3.533 3.533 0 0 1 2.53-.818.871.871 0 0 0 .465-.076.435.435 0 0 0 .1-.34 2.69 2.69 0 0 0-.138-.993.488.488 0 0 0-.466-.302.552.552 0 0 0-.34.113 1.961 1.961 0 0 0-.377.428 1.555 1.555 0 0 1-1.195.818.724.724 0 0 1-.516-.19.627.627 0 0 1-.201-.49 1 1 0 0 1 .251-.616 2.15 2.15 0 0 1 .68-.541 5.013 5.013 0 0 1 2.428-.617Zm-.44 3.737a.645.645 0 0 0-.491.226.863.863 0 0 0-.063 1.057.471.471 0 0 0 .39.189c.34 0 .516-.29.516-.868a1.03 1.03 0 0 0-.076-.478.295.295 0 0 0-.276-.126Zm6.832-3.737a7.08 7.08 0 0 1 1.057.139 2.221 2.221 0 0 0 .239.025 1.629 1.629 0 0 0 .427-.114.808.808 0 0 1 .252-.062.818.818 0 0 1 .604.377 2.77 2.77 0 0 1 .402.667 1.677 1.677 0 0 1 .151.629.578.578 0 0 1-.176.428.66.66 0 0 1-.453.176.718.718 0 0 1-.402-.113 4.906 4.906 0 0 1-.566-.478 1.165 1.165 0 0 0-.68-.403.474.474 0 0 0-.453.453c0 .214.201.403.604.591a5.566 5.566 0 0 1 1.673 1.07 1.633 1.633 0 0 1 .491 1.195 1.808 1.808 0 0 1-.792 1.497 2.623 2.623 0 0 1-1.661.529 7.436 7.436 0 0 1-.919-.088c-.415-.05-.654-.076-.704-.076a1.117 1.117 0 0 0-.19.025c-.125.013-.213.025-.276.025a.703.703 0 0 1-.478-.15 2.302 2.302 0 0 1-.49-.755 2.27 2.27 0 0 1-.227-.881c0-.39.15-.592.465-.592a.517.517 0 0 1 .328.114 7.054 7.054 0 0 1 .641.641 2.624 2.624 0 0 0 .44.39.655.655 0 0 0 .378.101.504.504 0 0 0 .34-.113.373.373 0 0 0 .126-.302c0-.189-.164-.365-.504-.529a4.537 4.537 0 0 1-1.497-1.057 1.92 1.92 0 0 1-.465-1.258 1.95 1.95 0 0 1 .465-1.32 2.38 2.38 0 0 1 1.85-.78Zm9.864 3.183-.856 2.34a9.153 9.153 0 0 1-.641 1.422 4.277 4.277 0 0 1-.73.944 2.842 2.842 0 0 1-2.026.805 2.27 2.27 0 0 1-1.547-.503 1.252 1.252 0 0 1-.453-.981 1.16 1.16 0 0 1 .314-.83 1.04 1.04 0 0 1 .78-.34.97.97 0 0 1 .755.314.839.839 0 0 1 .176.252c.025.075.076.239.139.478.05.188.15.29.327.29a.436.436 0 0 0 .34-.177.626.626 0 0 0 .138-.428 2.884 2.884 0 0 0-.34-1.019l-1.56-3.309a3.538 3.538 0 0 0-.365-.642 2.01 2.01 0 0 0-.54-.314.49.49 0 0 1-.227-.202.547.547 0 0 1-.088-.289c0-.377.377-.642 1.145-.78a10.116 10.116 0 0 1 1.736-.138 3.533 3.533 0 0 1 1.082.138.62.62 0 0 1 .377 1.02.633.633 0 0 0-.138.364 1.07 1.07 0 0 0 .063.327 6.156 6.156 0 0 0 .29.566c.163.302.301.453.427.453.138 0 .277-.138.415-.402a1.65 1.65 0 0 0 .214-.768.65.65 0 0 0-.163-.478.856.856 0 0 1-.252-.503c0-.214.15-.39.44-.529a2.965 2.965 0 0 1 1.17-.2c.919 0 1.372.213 1.372.653a.567.567 0 0 1-.139.39 1.293 1.293 0 0 1-.503.277.991.991 0 0 0-.49.39 7.86 7.86 0 0 0-.642 1.41Zm7.373-5.699a8.513 8.513 0 0 1 1.472.126 2.167 2.167 0 0 1 .88.289.584.584 0 0 1 .265.503.47.47 0 0 1-.101.315 1.52 1.52 0 0 1-.415.277.706.706 0 0 0-.428.453 19.186 19.186 0 0 0-.1 2.025 73.636 73.636 0 0 1-.038 2.051 5.687 5.687 0 0 1-.076.667 2.744 2.744 0 0 1-.755 1.485 3.255 3.255 0 0 1-1.195.692 4.788 4.788 0 0 1-1.535.251 5.616 5.616 0 0 1-1.434-.188 4.693 4.693 0 0 1-1.246-.516 2.06 2.06 0 0 1-.956-1.711 1.504 1.504 0 0 1 .402-1.07 1.397 1.397 0 0 1 1.02-.428 1.5 1.5 0 0 1 1.019.353 1.139 1.139 0 0 1 .415.893 2.32 2.32 0 0 1-.076.453.472.472 0 0 0-.012.138.43.43 0 0 0 .15.34.56.56 0 0 0 .39.126.789.789 0 0 0 .693-.39 1.803 1.803 0 0 0 .264-1.02l-.013-.59-.012-1.586c-.038-.956-.063-1.522-.088-1.699a.777.777 0 0 0-.151-.415.507.507 0 0 0-.176-.163c-.05-.025-.189-.063-.403-.126a.451.451 0 0 1-.264-.176.508.508 0 0 1-.113-.315.652.652 0 0 1 .276-.553 2.357 2.357 0 0 1 .894-.34 6.975 6.975 0 0 1 1.447-.151Zm8.92 6.065h-3.032c-.138 0-.201.062-.201.175a1.053 1.053 0 0 0 .453.793 1.503 1.503 0 0 0 .981.377 2.471 2.471 0 0 0 .692-.113 2.25 2.25 0 0 0 .63-.29.71.71 0 0 1 .351-.15.413.413 0 0 1 .328.201.654.654 0 0 1 .163.428 1.154 1.154 0 0 1-.579.893 3.807 3.807 0 0 1-2.365.768 3.37 3.37 0 0 1-2.277-.793 3.113 3.113 0 0 1-.73-.93 3.297 3.297 0 0 1-.378-1.536 3.143 3.143 0 0 1 .655-1.95 3.444 3.444 0 0 1 1.447-1.12 3.581 3.581 0 0 1 1.421-.277 3.215 3.215 0 0 1 2.089.692 2.6 2.6 0 0 1 .692.83 2.186 2.186 0 0 1 .302 1.058 1.313 1.313 0 0 1-.176.692.57.57 0 0 1-.466.251Zm-2.868-1.209h.654q.415 0 .415-.377a.781.781 0 0 0-.201-.566.658.658 0 0 0-.529-.214.67.67 0 0 0-.566.29.912.912 0 0 0-.189.54.367.367 0 0 0 .088.277.928.928 0 0 0 .328.05Zm7.662-.641v2.176a.986.986 0 0 0 .189.63.597.597 0 0 0 .49.251 1.53 1.53 0 0 0 .667-.226.374.374 0 0 1 .189-.063.37.37 0 0 1 .29.188.691.691 0 0 1 .125.403 1.03 1.03 0 0 1-.44.767 3.338 3.338 0 0 1-2.227.78 2.324 2.324 0 0 1-1.661-.578 2.02 2.02 0 0 1-.63-1.535V38.42a.173.173 0 0 0-.226-.226h-.641a.34.34 0 0 1-.24-.063.484.484 0 0 1-.05-.29v-.29a.322.322 0 0 1 .151-.289l2.957-1.862a.6.6 0 0 1 .277-.063h.528a.243.243 0 0 1 .214.076.538.538 0 0 1 .05.29v.867a.38.38 0 0 0 .063.252.397.397 0 0 0 .265.063h1.195c.163 0 .264.025.314.088a.623.623 0 0 1 .076.378v.377a.722.722 0 0 1-.088.428.412.412 0 0 1-.327.113h-1.17a.34.34 0 0 0-.24.063.344.344 0 0 0-.1.277Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-n1ea68\",\"data-framer-name\":\"$8\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"zVK_KhDWM\",svg:'<svg id=\"Livello_1\" data-name=\"Livello 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\"><defs><style>.cls-1{fill-rule:evenodd}</style></defs><path class=\"cls-1\" d=\"m39.314 37.034-.024.07.535.884.07.023 1.674-.977.023-.07a2.226 2.226 0 0 1 .047-1.232c-.837.442-1.605.907-2.325 1.302Zm-24.506.21a4.305 4.305 0 0 0-4.208.976 3.705 3.705 0 0 0-.907 3.51 1.728 1.728 0 0 0 1.627 1.21h3.953l.093-.047.767-2.999c-.814-.023-1.674 0-2.557 0 0 0-.628 2.255-.628 2.302a1.609 1.609 0 0 1-.814 0 .332.332 0 0 1-.163-.395l.884-3.418a.761.761 0 0 1 .349-.372 1.497 1.497 0 0 1 1.302.093s.209.116.395.232a8.794 8.794 0 0 0 .395-.813 5.243 5.243 0 0 0-.488-.28Zm30.225-.07.024.07.93 3.162-.651 2.557h2.766l.698-2.534 2.697-3.232-.023-.023h-1.256c-.558.628-1.14 1.325-1.72 1.976-.094.07-.094.093-.14-.07-.186-.627-.372-1.278-.581-1.906Zm7.022 0c-.488 1.906-.953 3.79-1.488 5.696l-.023.093h4.766a4.396 4.396 0 0 0 .232-.953H53.59l-.14-.023.35-1.349.116-.093h1.302l.07-.07c.07-.302.162-.627.209-.93l-1.372-.023v-.07c.14-.418.21-.883.372-1.278.674-.047 1.488.023 2.116-.024.093-.302.163-.65.232-.976Zm-11.509.93a6.482 6.482 0 0 0 1.163.046c.023-.232.07-.534.116-.767a9.95 9.95 0 0 0-1.279.72Zm-.442.326a3.776 3.776 0 0 1-.07.883c.442-.186.907-.465 1.372-.72l-1.302-.164Zm.07 1.301c.325.744.744 1.465 1.093 2.186h.07a15.664 15.664 0 0 1 2.417-1.767l-.488-.837c-.21.186-.418.581-.72.697a2.345 2.345 0 0 1-.698-1.139c-.581.279-1.14.535-1.674.86Zm-.372.279a15.576 15.576 0 0 0-1.163 2.883 7.517 7.517 0 0 1-1.069 1.372.521.521 0 0 0-.163.512c.023.07.07.162.163.14 1.395-.42 2.395-1.652 3.418-2.698-.326-.744-.744-1.441-1.093-2.162l-.093-.047Z\"/><path class=\"cls-1\" d=\"m43.94 40.452-1.115.72c-1.651 1.07-2.72 2.884-4.465 3.767a3.908 3.908 0 0 0-.697.35c.07.092.07.232.21.208a7.116 7.116 0 0 0 1.929-1.162 23.08 23.08 0 0 1 4.325-3.65.634.634 0 0 0-.187-.233Zm6.348-5.952a1.277 1.277 0 0 1-.581.953 6.281 6.281 0 0 1-3.604.28c-.023.023-.047.023-.07.07.093.185.349.232.581.301a1.297 1.297 0 0 1-1.092.326.51.51 0 0 0 .348.186c.07.093-.232.186-.348.209a1.401 1.401 0 0 1-.977-.046c-.14.162.023.395-.07.627a1.287 1.287 0 0 1-.232.512c-.163-.023-.326-.349-.372-.14a1.355 1.355 0 0 1-.186.698c-.21.046-.396-.581-.488-.093a2.545 2.545 0 0 1-.489.93c-.163-.023-.255-.21-.325-.349a2.86 2.86 0 0 1-.117-1.65 1.72 1.72 0 0 1-.162-1.675c.604-1.185 2.046-1.023 3.208-1.023a16.187 16.187 0 0 0 4.976-.116Zm-6.045.628a1.46 1.46 0 0 1-.28.256c-.139.07-.348-.093-.441.07-.093.278-.372.302-.581.325.046.14.232.163.372.186a.582.582 0 0 0 .511-.21.561.561 0 0 0 .605-.302.634.634 0 0 0 .418-.116c.024-.046.093-.14 0-.163a1.732 1.732 0 0 1-.604-.046Zm-1.814 1.418c-.116.256.326.21.302.488a.3.3 0 0 0 .303.186v-.07a3.48 3.48 0 0 1-.117-.511 3.034 3.034 0 0 1-.488-.093Zm-6.231.581h-3.65l-1.488 5.836h4.022a2.6 2.6 0 0 0 1.232-.465 3.887 3.887 0 0 0 1.651-3.952 1.9 1.9 0 0 0-1.767-1.419Zm25.552.047h-2.37c-1.163 1.906-2.372 3.86-3.534 5.743l-.024.046h1.116c.186-.256.326-.581.582-.883h2.115v.07c.024.325.024.534.047.813.86 0 1.674-.023 2.58 0l-.464-5.65-.047-.14Zm-39.293.256a3.702 3.702 0 0 0-5.464 3.603 2.294 2.294 0 0 0 1.558 1.907 3.828 3.828 0 0 0 3.906-1.023c.86-.953 1.349-2.767.767-3.674a2.097 2.097 0 0 0-.767-.813Zm8.091.813c.582.907.093 2.72-.767 3.674a3.84 3.84 0 0 1-3.906 1.023 2.224 2.224 0 0 1-1.558-1.907A3.825 3.825 0 0 1 26.2 37.43a3.779 3.779 0 0 1 3.558 0 2.01 2.01 0 0 1 .79.813Zm-3.58 4.116a.641.641 0 0 0 .628-.465l.883-3.488a.454.454 0 0 0-.442-.535.644.644 0 0 0-.604.512l-.884 3.487c-.07.186.14.489.419.489Zm-7.324 0a.442.442 0 0 1-.419-.489l.884-3.487a.644.644 0 0 1 .604-.512.408.408 0 0 1 .419.512l-.884 3.487a.595.595 0 0 1-.604.489Zm39.735-2.953.162 1.697-.046.047c-.419-.024-.977 0-1.442-.024.326-.65.814-1.348 1.21-1.976.116.047.046.186.116.256Zm-23.67-1.232a.887.887 0 0 1 .024.418l-.86 3.185a.465.465 0 0 1-.442.372h-.674v-.046c-.023.07 1.046-4.115 1.046-4.115.28 0 .744-.117.907.186Zm28.785-1c-.465 1.86-1.023 3.743-1.535 5.79.767.022 1.558 0 2.465 0h.186l.418-1.605.047-.116c.093 0 .279-.024.302.046l.419 1.674h.092c1.093-.046 1.79 0 2.628 0-.163-.697-.349-1.348-.465-2.07a3.717 3.717 0 0 0 1.046-.952 1.92 1.92 0 0 0 .163-1.837 1.809 1.809 0 0 0-1.605-.93 123.487 123.487 0 0 0-4.161 0Zm3.301.953a.991.991 0 0 1 .024.442l-.372 1.441a.496.496 0 0 1-.465.35h-.675v-.047c-.023.07.582-2.349.582-2.349.279 0 .744-.116.906.163Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ufq7hl\",\"data-framer-name\":\"$1\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"OlXDIK1LN\",svg:'<svg id=\"Livello_1\" data-name=\"Livello 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\"><defs><clipPath id=\"clip-path\"><path style=\"fill:none\" d=\"M27.5 27.5h25v24.999h-25z\"/></clipPath><style>.cls-3{fill:#010101}</style></defs><g style=\"clip-path:url(#clip-path)\"><path class=\"cls-3\" d=\"M50.12 40.045c-.532 0-.97-.48-1.09-1.194-.13-.784.205-1.427.797-1.53a.95.95 0 0 1 .154-.013c.525 0 .973.49 1.09 1.191.13.786-.203 1.43-.793 1.532a.94.94 0 0 1-.158.014m-.107-2.181a.596.596 0 0 0-.094.008c-.358.062-.537.417-.456.903.073.44.314.714.627.714a.582.582 0 0 0 .096-.008c.356-.062.534-.418.452-.906-.072-.432-.317-.711-.625-.711m-20.86.919-.002-.002a.263.263 0 0 0-.128-.033.257.257 0 0 0-.102.02l.118-.758 2.116-.711-.08.53-.38.127-.194 1.275.323.243-.08.531Zm.239-.392.729.55.127-.837Zm18.28-3.452 1.512-.82a.428.428 0 0 0 .172-.196l1.056 2.03-.364.197-.764-1.468-.31.168.531 1.02-.364.197-.53-1.02-.324.176.799 1.535-.364.198Zm-17.867 1.053a.397.397 0 0 0-.16-.032.454.454 0 0 0-.095.01l.287-.574 1.392.73.68-1.353.374.195-.923 1.838Zm1.599-2.685-.002-.001a.438.438 0 0 0-.229-.084l1.548-1.68.3.288-1.115 1.212.358.343.775-.84.301.288-.775.841.464.446-.365.396Zm15.493.659.798-1.08-1.452.34-.024-.023.192-1.516-.962.929-.393-.367 1.254-1.22a.382.382 0 0 0 .099-.243l.057.054.472.439-.155 1.32 1.266-.284.45.42-1.21 1.596Zm-12.742-3.178v-.004a.266.266 0 0 0-.134-.185l.667-.38 1.875 1.211-.465.268-.335-.218-1.119.643.011.404-.465.268Zm.479.857.734-.422-.758-.491Zm9.154-.014a1.778 1.778 0 0 1-.6-.11c-.735-.264-1.124-.875-.924-1.454a1.008 1.008 0 0 1 1.02-.645 1.749 1.749 0 0 1 .592.107 1.612 1.612 0 0 1 .8.59.958.958 0 0 1 .127.862 1.005 1.005 0 0 1-1.015.65Zm-.436-1.749a.556.556 0 0 0-.573.372c-.12.348.097.679.553.843a1.137 1.137 0 0 0 .382.072.557.557 0 0 0 .574-.374c.12-.347-.099-.677-.557-.842a1.123 1.123 0 0 0-.379-.07m-4.474-.76a.434.434 0 0 0-.096-.231h.094v-.001l1.623-.014a.709.709 0 0 1 .76.745.648.648 0 0 1-.355.623l-.055.027.448.593-.593.005-.39-.55-.893.007.004.554-.532.005Zm.534.185.005.597 1.03-.01a.27.27 0 0 0 .287-.296.278.278 0 0 0-.284-.3Z\"/><path class=\"cls-3\" d=\"M40 27.5A12.5 12.5 0 1 0 52.5 40 12.5 12.5 0 0 0 40 27.5M40 52a12 12 0 1 1 12-12 12 12 0 0 1-12 12\"/><path class=\"cls-3\" d=\"M41.603 33.13a.225.225 0 1 0-.225-.224.225.225 0 0 0 .225.225m-.906 0a.225.225 0 1 0-.225-.225.225.225 0 0 0 .225.225m-.614 2.763.028-.027-.028-.027a2.143 2.143 0 0 1-.75-1.019 1.356 1.356 0 0 0-.305-.51.56.56 0 0 0-.437-.2 1.014 1.014 0 0 0-.24.03l-.047.012.03.055a.522.522 0 0 0 .268.276.12.12 0 0 0 .037.005c.011 0 .023 0 .034-.002l.028-.002.013.002c.154.089.235.746.235 1.074 0 .056-.023.08-.075.08a.258.258 0 0 1-.16-.066.488.488 0 0 0-.36-.152.464.464 0 0 0-.488.417v.053a.464.464 0 0 0 .487.417.487.487 0 0 0 .361-.152.259.259 0 0 1 .16-.066c.052 0 .075.025.075.08 0 .328-.081.986-.235 1.075h-.041a.195.195 0 0 0-.034-.003.126.126 0 0 0-.037.005.522.522 0 0 0-.268.277l-.03.055.048.011a1.014 1.014 0 0 0 .24.03.559.559 0 0 0 .436-.2 1.356 1.356 0 0 0 .305-.51 2.141 2.141 0 0 1 .75-1.018m-.073-4.289a8.396 8.396 0 1 0 8.395 8.396 8.395 8.395 0 0 0-8.395-8.396M34.7 45.937a7.947 7.947 0 0 1-2.597-4.985H34.7Zm0-6.947h-2.59a7.948 7.948 0 0 1 2.59-4.925Zm7.872 8.554a7.99 7.99 0 0 1-5.91-.315v-6.277h2.256a2.54 2.54 0 0 1 .155-1.962h-2.41v-6.217a7.977 7.977 0 0 1 7.182.246.58.58 0 0 1-.309 1.072h-.991a.755.755 0 0 0-.527.166c-.277.24-.182.524-.75.524h-1.564a2.434 2.434 0 0 0 .818.922h1.922a.186.186 0 0 1 .172.117.165.165 0 0 1 .01.101.186.186 0 0 1-.182.154h-1.957a1.744 1.744 0 0 0-.817 1.007h3.53a.417.417 0 0 1 0 .834h-1.789a2.232 2.232 0 1 0 0 4.465h2.231a.175.175 0 0 1 .173.175.17.17 0 0 1-.173.17h-2.285a1.635 1.635 0 1 0 0 3.27l.863.004a.804.804 0 0 1 .795.798.874.874 0 0 1-.444.746m.708-.28-.028.014.002-.002.026-.012a1.34 1.34 0 0 0-.574-2.55l-1.411-.002a.172.172 0 1 1 0-.344h2.383a2.031 2.031 0 0 0 0-4.062h-2.301a.172.172 0 1 1 0-.345l1.757-.002a3.357 3.357 0 0 0 2.804-5.203l-.009-.012a.025.025 0 0 1-.005-.014.025.025 0 0 1 .025-.025.016.016 0 0 1 .016.008l.003.003a7.965 7.965 0 0 1-2.688 12.548m-3.583-13.566h1.981a.15.15 0 0 0 0-.3h-1.981a.15.15 0 1 0 0 .3m.075-.567a.225.225 0 1 0-.225-.225.225.225 0 0 0 .225.225\"/></g></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9aww3b\",\"data-framer-name\":\"$5\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"oOMnj8iM5\",svg:'<svg data-name=\"Livello 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\"><path d=\"M30.751 49.402v-2.051c1.278 0 1.749-.068 1.984 1.513h.135v-1.749h-3.531v.236h.605v4.54h-.673v.235h3.633v-1.85h-.169c-.168 1.413-.538 1.615-1.547 1.615h-.47v-2.186h.269c.437 0 .706.269.807 1.042h.168V48.46h-.168s-.034.976-.807.976h-.236Zm-1.446.068H27.32v.235h.672v1.614c-.1.404-.74.572-.908.572-1.278 0-1.177-1.85-1.177-2.354 0-.438-.034-2.355 1.177-2.355.875 0 1.312.841 1.48 1.615h.135V46.98a6.309 6.309 0 0 1-.606.403 1.225 1.225 0 0 0-1.042-.403c-1.48 0-2.052 1.48-2.052 2.522 0 .942.437 2.59 2.052 2.59a1.276 1.276 0 0 0 1.042-.538l.64.504V49.67h.537v-.202Zm23.173.773c-.169 1.413-.539 1.614-1.548 1.614h-.067v-4.506h.64v-.236h-2.086v.236h.639v4.54h-.504l-1.85-4.91h-.27s-1.546 4.44-1.546 4.473c0 0-.101.37-.37.437-.236 0-.202-.101-.202-.168v-.875a1.745 1.745 0 0 0-.236-.975 1.612 1.612 0 0 0-.706-.303 1.418 1.418 0 0 0 1.144-1.311c0-.774-.538-1.144-1.413-1.177h-2.489v.235h.64v4.54h-.64v.236h2.052v-.236h-.64v-2.186h.842c1.48.135-.27 2.422 1.681 2.422h1.211v-.236c-.067 0-.504 0-.538-.302a3.94 3.94 0 0 1 .303-1.043h1.681s.505 1.345.538 1.345h-.571v.236h4.54v-1.85Zm-8.644-.807h-.807V47.35h1.043c.605.1.639.807.639 1.009 0 .538-.236 1.076-.875 1.076m2.825.874.74-2.152.774 2.152Zm-7.533-2.992c1.278 0 1.782-.067 1.984 1.513h.134v-1.748h-5.112v.235h.135c.168 0 .605 0 .639.404v2.892l-2.388-3.531h-1.312v.235h.202c.27 0 .605 0 .64.404v3.7c0 .37-.539.504-.774.504v.168h1.782v-.168c-.235 0-.774-.135-.774-.505v-3.262c.942 1.345 2.725 3.935 2.758 3.935h.101V47.72c.034-.37.437-.404.64-.404h.571v4.54h-.673v.236h3.633v-1.85h-.168c-.169 1.413-.539 1.614-1.548 1.614h-.47V49.67h.269c.437 0 .706.27.807 1.043h.168v-2.287h-.168s-.034.975-.807.975h-.236v-2.085Zm13.789-.235v.269h.639v4.506h-.639v.236h2.051v-.236h-.672v-4.506h.672v-.269h-2.051zm-3.363-3.095.639-.235c.908-.37 1.042-.605.975-1.21V40.12c.673 1.749 1.345 2.96 2.657 2.96a3.745 3.745 0 0 0 .572-.068l.504-.1-.37-.404a2.727 2.727 0 0 1-.47-.673c-.068-.101-.102-.202-.169-.303a1.318 1.318 0 0 0-1.648-.403c-.269-.539-.538-1.245-.874-2.12l-.068-.167c-.067-.135-.1-.27-.168-.404v-.034a16.72 16.72 0 0 0-.672-1.345 6.355 6.355 0 0 0-.74-1.043 4.6 4.6 0 0 0-2.724-1.513 14.638 14.638 0 0 0-2.018-.202 1.918 1.918 0 0 1-.438-.033c-.302-.034-.941-.068-1.58-.135a60.637 60.637 0 0 1-1.177-.1.931.931 0 0 0 .033-.304 1.261 1.261 0 0 0-.033-.37h4.439a2.515 2.515 0 0 0 2.455-1.513 2.597 2.597 0 0 0 2.455-1.513h.168a2.594 2.594 0 0 0 2.523-1.615l.168-.302h-15a2.28 2.28 0 0 0-2.152 1.648v.033a3.299 3.299 0 0 0-1.312-1.681 3.19 3.19 0 0 0-2.522-.438 2.636 2.636 0 0 0-.707.303 2.903 2.903 0 0 0-.605.538 4.048 4.048 0 0 0-.505.807.571.571 0 0 0-.201.202l-.169.336v.034a4.99 4.99 0 0 1-.672 1.076.853.853 0 0 0-.202.606.767.767 0 0 0 .202.403.649.649 0 0 0-.101.337.728.728 0 0 0 .773.706 1.404 1.404 0 0 0 .841-.336 1.844 1.844 0 0 1 .505-.27.23.23 0 0 1 .235.236c0 .336-.403.504-.706.504l-.606.068c-.437.033-.639.269-.639.47a.566.566 0 0 0 .169.404l.033.034.168.134-.706 1.076a2.514 2.514 0 0 0-1.48-.706 1.04 1.04 0 0 0-.773.27.59.59 0 0 0-.135.167 1.344 1.344 0 0 0-1.11.572 1.323 1.323 0 0 0 .135 1.345l-1.682.471v7.803H55v-1.547h-5.448Zm3.867-2.118a1.878 1.878 0 0 0 .168.269 2.957 2.957 0 0 1 .202.336 1.474 1.474 0 0 1-1.143-.774.65.65 0 0 1 .773.169m-6.49-6.66a3.973 3.973 0 0 1 2.354 1.278 5.749 5.749 0 0 1 .37.471 3.383 3.383 0 0 1-3.095-1.816 1.43 1.43 0 0 1 .37.067m-.706-2.354h-3.06a2.8 2.8 0 0 0 .638-.874h4.137a1.777 1.777 0 0 1-1.715.874m2.421-1.48h-3.06a2.67 2.67 0 0 0 .673-.908h4.136a1.82 1.82 0 0 1-1.748.908m.235-2.32h4.103a1.977 1.977 0 0 1-1.715.807h-3.06a3.074 3.074 0 0 0 .672-.807m-16.682.134a2.585 2.585 0 0 1 .438-.403 1.312 1.312 0 0 1 .538-.236 2.38 2.38 0 0 1 .975 0l-1.11.673c-.134 0-.269-.034-.403-.034a2.227 2.227 0 0 0-.505.034c.034 0 .034 0 .067-.034m-1.278 4.843a.072.072 0 0 1 .068-.067l.538.034c.639-.034 1.311-.303 1.379-.976a.862.862 0 0 0-.774-.908 1.79 1.79 0 0 0-.84.37 1.187 1.187 0 0 1-.472.236.15.15 0 0 1-.134-.101v-.034l.336-.47-.302-.203c-.068-.033-.169-.134-.169-.168s.034-.067.034-.1a2.482 2.482 0 0 0 .404-.539c.1-.134.134-.202.269-.202a.265.265 0 0 1 .269.27c0 .1.1.168.235.168s.202-.101.27-.169c0 0 .302-.269.134-.403s-.908.168-.707-.505l.068-.1a1.502 1.502 0 0 1 1.143-.37 2.069 2.069 0 0 1 .437.033h.101l1.547-.942a.117.117 0 0 0 .034.068 1.325 1.325 0 0 1-.673 1.278l-.201.1.134.707a.883.883 0 0 0-.673.807 2.638 2.638 0 0 0 .068.47 5.101 5.101 0 0 1 .1.707c0 .74-1.008 1.21-1.85 1.177h-.033a2.13 2.13 0 0 1-.706-.134c-.034.033-.034 0-.034-.034m-3.834 2.287a.774.774 0 0 1 .74-.303l.27.034.1-.235a.735.735 0 0 1 .101-.169.502.502 0 0 1 .336-.1 1.86 1.86 0 0 1 1.211.672 2.784 2.784 0 0 1 .37.505c.034.033.034.067.067.1a.484.484 0 0 1 .068.101c0 .034.201.303.201.337a5.132 5.132 0 0 0 .37-.538v-.034c-.033-.067-.1-.168-.134-.235l-.034-.034a.117.117 0 0 1-.033-.067 1.047 1.047 0 0 0-.135-.202l.807-1.278a2.747 2.747 0 0 0 .471.034h.034c1.143 0 2.32-.673 2.32-1.75v-.033a5.278 5.278 0 0 0-.1-.807 2.998 2.998 0 0 1-.068-.37c0-.135.168-.269.404-.269h.37l-.168-.942a1.945 1.945 0 0 0 .807-1.58 2.78 2.78 0 0 1 1.009 1.95 2.903 2.903 0 0 1-.101.875l-.034.134a13.899 13.899 0 0 1-.437 1.38l-.1.235.234.134c.404.235.673.404.673.942a1.325 1.325 0 0 1-1.11 1.21l-.773.135.639.437a.751.751 0 0 1 .336.606.718.718 0 0 1-.74.706h-.235l-.068.202c-.235.74-.47 1.11-1.278 1.21v-1.11l-.033-.706-.505.505a1.64 1.64 0 0 1-.807.37v-.606l-3.531-.941-1.245.336a.973.973 0 0 1-.269-.84m-1.009 7.667 2.556-.672 2.556.672Zm5.449-.538-2.926-.773-2.926.773v-5.213l2.926-.773 2.926.773Zm1.379-1.009a1.716 1.716 0 0 0-.101 1.547h-.64V39.01a2.792 2.792 0 0 0 .707-.202 3.706 3.706 0 0 1-.067.605c0 .068-.034.101-.034.169l-.067.37h.37a3.332 3.332 0 0 0 1.278-.236v2.085a.09.09 0 0 1-.101.101h-.101a1.336 1.336 0 0 0-1.244.538m6.726.135a1.574 1.574 0 0 0-.303 1.412h-3.8a1.402 1.402 0 0 0 .908-.336 1.278 1.278 0 0 0 .27-.874c0-.034.033-.101.234-.202l.337-.135-.202-.302a3.702 3.702 0 0 1-.067-2.187h.033a9.165 9.165 0 0 0 2.994-.538 5.796 5.796 0 0 0 .706-.235s.269-.067.605-.168l1.245 2.051v.034c.134.168.134.303-.101.538l-.606.673-1.009-.202a1.468 1.468 0 0 0-1.244.47m.336 1.413a1.105 1.105 0 0 1 .135-1.009.862.862 0 0 1 .706-.269l1.177.202h.202l.84-.908a1.016 1.016 0 0 0 .135-1.312l-1.11-1.816a2.892 2.892 0 0 1 .539-.033 2.679 2.679 0 0 1 1.177.336c.067.168.202.404.302.673a12.609 12.609 0 0 1 .606 1.311c.034.068.1.303-.168.606l-2.12 2.253h-2.42Zm7.265 0h-4.036l1.715-1.816a1.134 1.134 0 0 0 .303-1.21 12.776 12.776 0 0 0-.538-1.211 11.425 11.425 0 0 0 3.834.773c.269.034.336.101.37.337l.1.908-1.109.235a1.032 1.032 0 0 0-.807.673 1.672 1.672 0 0 0 .168 1.311m.437-1.076a.439.439 0 0 1 .337-.303l1.648-.37-.135-1.48v-.033a.955.955 0 0 0-.942-.84c-2.96-.236-3.632-.673-4.372-1.144l-.034-.034a3.116 3.116 0 0 0-1.614-.504 7.51 7.51 0 0 0-1.984.37c-.27.067-.505.168-.74.235a7.479 7.479 0 0 1-3.06.504h-.236l-.067.236a5.252 5.252 0 0 0-.068 2.623.753.753 0 0 0-.336.606c0 .336-.067.403-.1.437-.169.168-.673.168-1.11.168h-.169l-.1.135a1.203 1.203 0 0 1-1.212.37 1.248 1.248 0 0 1 0-1.11.933.933 0 0 1 .74-.303h.101a.71.71 0 0 0 .707-.706V39.11a2.82 2.82 0 0 0 .302-.64 1.338 1.338 0 0 0 1.144-1.311 1.243 1.243 0 0 0-.202-.706 1.863 1.863 0 0 0 1.11-1.648 1.414 1.414 0 0 0-.774-1.346c.101-.302.27-.807.404-1.345l.504-1.85a1.636 1.636 0 0 1 1.547-1.21h9.148a1.977 1.977 0 0 1-1.715.807h-5.482l-.303.605h4.978a1.98 1.98 0 0 1-1.783.908h-3.598l-.303.606h3.195a1.899 1.899 0 0 1-1.749.874h-1.95l-.303.605h2.052c.033.034.067.135.067.37a.718.718 0 0 1-.74.707 1.013 1.013 0 0 1-.471-.135c-.1-.033-.168-.067-.27-.1l-.47.436c.101.034.168.068.27.101a2.384 2.384 0 0 0 .94.27 1.498 1.498 0 0 0 .976-.404c.337.033.908.067 1.48.1.673.068 1.278.102 1.614.135a2.22 2.22 0 0 1 .471.034c.27 0 .538.034.774.034 1.244 2.017 1.883 2.287 4.305 2.59a8.714 8.714 0 0 1 .47.975v4.237a2.355 2.355 0 0 1-.571.303l-2.052.84a1.184 1.184 0 0 1-.269-1.042\"/><path d=\"m28.935 39.178 1.951.504v-.639l-1.951-.504v.639zm-.639-.639-1.951.504v.639l1.951-.504v-.639zm0 1.278-1.951.504v.639l1.951-.504v-.639zm.639.639 1.951.504v-.639l-1.951-.504v.639zm0 1.278 1.951.504v-.639l-1.951-.504v.639zm-.639-.639-1.951.504v.639l1.951-.504v-.639z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1cdmk7e\",\"data-framer-name\":\"$2\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"M52zs_vBA\",svg:'<svg data-name=\"Livello 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\"><path d=\"M45.52 41.172a20.38 20.38 0 0 1-2.019 2.174c-.056.024-.117.061-.178.01-.033-.282.155-.526.057-.822a.662.662 0 0 0-.404-.418 2.68 2.68 0 0 0-2.517.935 9.806 9.806 0 0 1-1.361 1.319 2.344 2.344 0 0 1-1.49.441.109.109 0 0 1-.065-.16c.24-.286.554-.554.822-.821.32-.366.76-.69.71-1.207-.085-.422-.569-.253-.846-.404.16-.21.385-.394.37-.676a.175.175 0 0 0-.13-.145c-.071-.038-.132.01-.193.019a.864.864 0 0 0-.362.802 9.262 9.262 0 0 1-1.32 1.057c-.042.004-.098.051-.135 0-.01-.038.018-.066.023-.099a2.757 2.757 0 0 0 .033-.756.732.732 0 0 0-.71-.427 3.137 3.137 0 0 0-2.464 1.465 4.583 4.583 0 0 1-2.437.958 18.805 18.805 0 0 1-2.568-.056c-.02-.014-.057-.014-.057-.047a13.996 13.996 0 0 0 4.461-3.855 16.206 16.206 0 0 0 3.348-1.53c1.084-.72 2.465-1.624 2.906-2.922a.832.832 0 0 0-.324-.9 2.276 2.276 0 0 0-2.118.28 17.931 17.931 0 0 0-4.192 4.208c-.202.253-.371.53-.597.765a3.079 3.079 0 0 1-3.338-.892 1.96 1.96 0 0 1 .305-2.038 6.582 6.582 0 0 1 6.038-2.366c.02-.019.047-.01.057-.033 0-.019.009-.037-.01-.047a7.396 7.396 0 0 0-2.592.033 8.334 8.334 0 0 0-1.412.38 5.367 5.367 0 0 0-2.78 2.122 1.984 1.984 0 0 0 .239 2.358 2.996 2.996 0 0 0 1.738.879 7.79 7.79 0 0 0 1.436.022v.033a34.387 34.387 0 0 1-1.145 1.507c-.015.019-.602.653-.62.643a12.225 12.225 0 0 1-1.254.935 4.194 4.194 0 0 1-.756.375c-.22-.056-.456-.075-.685-.113a4.546 4.546 0 0 0-2.827.203.375.375 0 0 0-.113.29c.066.278.38.31.606.372a5.774 5.774 0 0 0 2.83-.291 8.248 8.248 0 0 0 4.115-.104 8.5 8.5 0 0 0 1.394-.596l.023.023c-.042.31-.051.68.249.855.812.385 1.568-.193 2.197-.662.23-.122.353-.507.662-.442a4.235 4.235 0 0 0 1.198-.732 7.793 7.793 0 0 1 .718-.606 2.579 2.579 0 0 1 .634.113c.052.164-.169.22-.249.347-.511.526-1.441 1.015-1.249 1.85a.74.74 0 0 0 .775.268 3.75 3.75 0 0 0 1.859-.902 1.546 1.546 0 0 0 .104.53.745.745 0 0 0 .755.372 3.73 3.73 0 0 0 2.048-1.136c.117-.028.212.038.361-.033.836-.305 1.408-1.178 2.005-1.84a4.779 4.779 0 0 0 .53-.799c-.013-.038-.032-.084-.089-.066Zm-10.053-4.474a3.586 3.586 0 0 1 2.752-1.48c.193.052.432.142.493.362.117.503-.244.864-.516 1.23a12.52 12.52 0 0 1-4.7 3.076 2.431 2.431 0 0 1-.394.103 22.845 22.845 0 0 1 2.366-3.291Zm-9.385 8.08a4.523 4.523 0 0 1-1.488-.023c-.076-.038-.17-.056-.212-.146-.037-.084.061-.131.113-.16a3.55 3.55 0 0 1 2.432.146 2 2 0 0 1-.845.184Zm10.165-1.93a.92.92 0 0 0-.596.61.933.933 0 0 0-.014.226 3.942 3.942 0 0 1-1.657 1.057.586.586 0 0 1-.583-.179.446.446 0 0 1 .09-.328 12.467 12.467 0 0 1 1.385-1.475 1.356 1.356 0 0 1 1.272-.417.3.3 0 0 1 .145.248.933.933 0 0 1-.042.259Zm6.85.048a.764.764 0 0 0-.515.37.91.91 0 0 0-.104.442 4.394 4.394 0 0 1-1.376.967.859.859 0 0 1-.765-.023.29.29 0 0 1-.103-.315 2.216 2.216 0 0 1 .408-.582 4.196 4.196 0 0 1 1.925-1.38.706.706 0 0 1 .418.023.354.354 0 0 1 .16.282c-.005.08.01.169-.047.216Zm26.896-.836a.196.196 0 0 0-.178.07 8.502 8.502 0 0 1-3.113 2.512.58.58 0 0 1-.357-.01.115.115 0 0 1 .01-.15c.479-.544 1.797-2.026 1.961-2.261-.266 0-.542 0-.825-.002-.068.072-.197.207-.291.216-.024-.014-.024-.037-.033-.056a.638.638 0 0 0-.62-.263 3.626 3.626 0 0 0-2.56 1.714 4.185 4.185 0 0 1-1.215.859c-.136.042-.315.155-.45.033a.22.22 0 0 1 .088-.202c.404-.432.813-.86 1.217-1.287a.736.736 0 0 0 .136-.225.771.771 0 0 0-.113-.789.945.945 0 0 0-.854-.01 1.657 1.657 0 0 0-.353.189c-.152.108-.31.31-.507.352-.056-.197-.046-.428-.225-.578a.88.88 0 0 0-.79-.033 7.757 7.757 0 0 0-1.948 1.705 2.57 2.57 0 0 1-1.305.836.368.368 0 0 1-.279-.047.115.115 0 0 1 .01-.15c.478-.545 1.797-2.027 1.961-2.262-.266 0-.542 0-.826-.002-.067.072-.197.207-.29.216-.025-.014-.025-.037-.033-.056a.64.64 0 0 0-.62-.263 3.693 3.693 0 0 0-2.041 1.05 6.252 6.252 0 0 1-1.84 1.467c-.197.088-.535.211-.732.01-.052-.142.077-.25.16-.339a103.13 103.13 0 0 1 2.048-2.083c.014.005-.617 0-.898 0a14.439 14.439 0 0 1-3.653 2.726c-.033.132.136.029.201.043a9.552 9.552 0 0 0 1.794-.958 1.23 1.23 0 0 0-.024.755.481.481 0 0 0 .292.217 3.104 3.104 0 0 0 1.953-.78c.015-.004.042-.023.057 0a.93.93 0 0 0-.005.104.99.99 0 0 0 .025.178.661.661 0 0 0 .499.484 1.873 1.873 0 0 0 1.319-.357c.094.009.054.14.136.211a.716.716 0 0 0 .75.169 2.691 2.691 0 0 0 .525-.225 4.26 4.26 0 0 0 1.178-.991 5.633 5.633 0 0 1 1.803-1.488c.117-.005.272-.047.347.08a.78.78 0 0 1-.29.61c-.574.659-1.306 1.323-1.907 1.957.01.01.663 0 .949 0 .704-.76 1.422-1.45 2.14-2.206a1.258 1.258 0 0 1 .8-.418c.083.019.182.028.224.122a.23.23 0 0 1-.009.207c-.395.432-.798.859-1.217 1.281-.183.235-.46.446-.408.766.021.125.145.3.24.305a2.656 2.656 0 0 0 1.845-.7.368.368 0 0 1 .033.193.661.661 0 0 0 .498.484 1.87 1.87 0 0 0 1.318-.357c.095.009.055.14.137.211a.715.715 0 0 0 .75.169 8.155 8.155 0 0 0 3.326-2.737c.042-.066.107-.137.08-.216Zm-14.51 2.695a.206.206 0 0 1-.136-.122c-.056-.364.426-.845.722-1.183a3.807 3.807 0 0 1 1.339-1.029.47.47 0 0 1 .487.07.3.3 0 0 1 .067.268 2.402 2.402 0 0 1-.531.677c-.568.544-1.075 1.431-1.949 1.319Zm8.956 0a.206.206 0 0 1-.136-.122c-.056-.364.426-.845.723-1.183a3.802 3.802 0 0 1 1.338-1.029.47.47 0 0 1 .488.07.3.3 0 0 1 .066.268 2.401 2.401 0 0 1-.53.677c-.569.544-1.076 1.431-1.95 1.319Zm-11.11-2.94a13.516 13.516 0 0 0 1.564-2.29 20.7 20.7 0 0 1 2.005-3.1 1.48 1.48 0 0 1 .545.658 2.143 2.143 0 0 1-.732 2.455.86.86 0 0 1-.667.306.426.426 0 0 1-.314-.296 1.812 1.812 0 0 1 1.037-1.488.937.937 0 0 1 .493-.156c-.01-.051-.075-.056-.122-.07a1.725 1.725 0 0 0-1.174.521 1.32 1.32 0 0 0-.437 1.376.771.771 0 0 0 .822.37 2.115 2.115 0 0 0 1.554-1.408 2.278 2.278 0 0 0-.789-2.455c-.042-.118.104-.183.16-.273a7.984 7.984 0 0 1 2.714-1.915v-.01c-.015-.023-.047-.01-.066-.014-1.274.236-3.057 2.019-3.066 2.019a4.445 4.445 0 0 0-2.897-.465 7.921 7.921 0 0 0-5.433 3.348 2.171 2.171 0 0 0-.225 1.906 1.904 1.904 0 0 0 1.826.718 5.962 5.962 0 0 0 3.978-2.826 4.692 4.692 0 0 0 .934-2.456h-.01c-.075.282-.16.56-.258.832a7.104 7.104 0 0 1-4.869 4.127 1.39 1.39 0 0 1-1.408-.54 1.418 1.418 0 0 1 .258-1.376 9.785 9.785 0 0 1 3.338-2.817 4.826 4.826 0 0 1 4.574-.249 30.972 30.972 0 0 0-2.705 3.414c-1.536 1.877-3.071 4.878-5.827 4.915a1.182 1.182 0 0 1-1.16-.676.838.838 0 0 0 .371-.352.693.693 0 0 0 0-.742.289.289 0 0 0-.267-.056.699.699 0 0 0-.395.404 1.176 1.176 0 0 0 .357 1.295 2.569 2.569 0 0 0 2.291.193 9.205 9.205 0 0 0 4-2.826Zm2.546-1.028a.609.609 0 0 0-.474.09.672.672 0 0 0-.305.586.3.3 0 0 0 .136.216.557.557 0 0 0 .577-.047.628.628 0 0 0 .268-.652.35.35 0 0 0-.202-.193Zm-40.228-6.116c-.012-.003-.025-.022-.043-.015a.101.101 0 0 0-.006.12c.037-.013.015-.077.049-.105Zm.163-.043a.161.161 0 0 0 .03-.12c-.012-.021-.021-.064-.058-.058-.034.043.019.083.006.132-.021.052-.07.049-.104.083.04.043.083-.03.126-.037Zm-.39.802c.003-.17.202-.074.264-.206.043-.03.028-.095.03-.132-.024-.09.034-.163.037-.252-.003-.043-.046-.052-.08-.037a.56.56 0 0 1 .013.126c-.086.086.018.221-.059.31-.067.065-.215.016-.227.132-.018.028-.034.083-.083.074.03.007.083.025.104-.015Zm.595-.185c.108.126.21-.049.332.01-.009-.028-.04-.019-.065-.025-.064-.077-.116.028-.193.015-.033-.006-.042-.043-.064-.064-.03-.025-.046.024-.068.037-.034.034-.101.021-.116.064.061.04.12-.015.174-.037ZM23.5 39.4a.934.934 0 0 0-.012-.694c-.148.126-.065.372-.246.464a.19.19 0 0 1-.206-.064.366.366 0 0 1-.022-.216c.105-.396.32-.946.016-1.312l-.037.163c-.03.086-.05.2-.141.243-.01-.012-.025-.024-.028-.037a1.022 1.022 0 0 0-.126-.627c-.018-.049.006-.113-.021-.156-.055.046-.138.086-.126.172-.012.074.009.16-.03.221a.38.38 0 0 1-.102-.194.594.594 0 0 1 .197-.617.479.479 0 0 0-.308.027c-.074.028-.141.09-.215.096a.707.707 0 0 0-.2-.486.392.392 0 0 1-.154.375.422.422 0 0 1-.205-.307.6.6 0 0 1 .043-.32c-.101.019-.136.13-.17.21-.018.03.007.082-.021.11-.028 0-.037-.034-.061-.037a2.687 2.687 0 0 0 .23.996c.04.138.215.202.274.338.02.033-.007.073-.037.089a.79.79 0 0 0-.532.101 3.716 3.716 0 0 1 .722.516.82.82 0 0 1 .326.91.218.218 0 0 1-.21.122c-.082.004-.153-.076-.19-.147-.012-.056-.018-.132.043-.16.087-.043.136.046.21.059a.383.383 0 0 0-.179-.268.61.61 0 0 0-.411-.036.514.514 0 0 1-.062-.406h-.022c-.211.043-.217.27-.258.436-.033.086-.113-.006-.184.021a.588.588 0 0 0-.295.243 1.113 1.113 0 0 1 .737.305c.219.255.477.568.317.906a.228.228 0 0 1-.197.117c-.064 0-.104-.059-.126-.111-.049-.098.022-.184.053-.27l-.099-.01a.464.464 0 0 0-.258.384 1.052 1.052 0 0 1-.442-.147 2.404 2.404 0 0 0 .32.495c.018.036-.028.067-.053.095a.513.513 0 0 0-.089.457c.043-.015.053-.073.09-.104.042-.055.122-.046.183-.037a.171.171 0 0 1 .09.163.23.23 0 0 1-.135.178.35.35 0 0 1-.375-.073c-.08-.087-.046-.219-.022-.32a.72.72 0 0 0-.39.393.861.861 0 0 0-.332-.147l.049.058a.955.955 0 0 1-.037 1.002.479.479 0 0 0-.396-.323.39.39 0 0 0-.363.17.325.325 0 0 1 .222-.016.293.293 0 0 1 .126.132.234.234 0 0 1-.096.252c-.135.107-.28-.015-.414-.037-.077-.01-.166-.05-.234-.021l.086.095a.337.337 0 0 1 .01.331c-.056.077-.117.182-.231.163a.493.493 0 0 1-.154-.347c-.202.19-.152.507-.263.75a6.072 6.072 0 0 1-1.07 1.057c-.046-.059-.01-.136.015-.194a.313.313 0 0 1 .274-.147c-.018-.056-.086-.077-.141-.086h-.133c-.015-.059.053-.105.096-.142.055-.033.129-.027.184-.058a.301.301 0 0 0-.317-.083.106.106 0 0 1-.082.025 1.002 1.002 0 0 1 .135-.23 1.554 1.554 0 0 1 .286-.323.13.13 0 0 1 .089.08c.021.048-.04.082-.006.116a.086.086 0 0 0 .085-.064l.031-.111c.326-.03.514-.356.707-.59a.489.489 0 0 0 .104-.427.372.372 0 0 0-.236-.209c-.332-.055-.547.323-.728.54a.597.597 0 0 0-.142.419.206.206 0 0 0-.162.098c.006.018-.016.025-.007.043.046-.003.111-.03.154.022a2.972 2.972 0 0 1-.354.378 6.295 6.295 0 0 1-.03-.636c.046-.022.086.033.11.067.016.01-.003.037.025.037.049.003.046-.052.064-.083.01-.068-.027-.117-.043-.175a.921.921 0 0 0 .111-.922.386.386 0 0 0-.688 0 .922.922 0 0 0 .11.922.421.421 0 0 0-.043.175c.019.03.016.086.065.083.028 0 .01-.028.025-.037.024-.034.064-.089.11-.067a6.153 6.153 0 0 1-.03.636 2.973 2.973 0 0 1-.354-.378c.043-.053.108-.025.154-.022.009-.018-.013-.025-.006-.043a.208.208 0 0 0-.163-.098.596.596 0 0 0-.142-.418c-.18-.218-.396-.596-.728-.541a.373.373 0 0 0-.236.21.488.488 0 0 0 .104.426c.194.234.381.56.707.59l.03.11a.086.086 0 0 0 .086.065c.035-.034-.027-.068-.006-.117a.13.13 0 0 1 .09-.08 1.575 1.575 0 0 1 .285.323 1.024 1.024 0 0 1 .135.23.107.107 0 0 1-.082-.024.3.3 0 0 0-.317.083c.055.03.129.025.184.058.043.037.11.083.095.142H16.6c-.055.009-.123.03-.14.086a.312.312 0 0 1 .272.147c.025.058.062.135.016.194a5.92 5.92 0 0 1-1.063-1.033c-.101-.242-.083-.534-.243-.752-.015.003-.021-.031-.037-.006-.012.135-.04.294-.175.343-.12-.009-.193-.14-.23-.233a.338.338 0 0 1 .132-.356c-.194-.019-.354.092-.544.104a.278.278 0 0 1-.206-.163.216.216 0 0 1 .074-.227.278.278 0 0 1 .264-.015v-.031a.414.414 0 0 0-.368-.138.491.491 0 0 0-.39.322.965.965 0 0 1-.053-.98.456.456 0 0 0 .058-.089c-.043-.012-.258.135-.338.147a.654.654 0 0 0-.399-.38c0 .033.028.055.03.086a.263.263 0 0 1-.094.282.355.355 0 0 1-.259.037.232.232 0 0 1-.193-.147.175.175 0 0 1 .046-.178.263.263 0 0 1 .11-.038c.062-.002.105.044.148.09.015.021.022.061.05.064.012-.006.012-.018.024-.027a.6.6 0 0 0-.172-.51c.113-.157.32-.516.32-.516a1.389 1.389 0 0 1-.342.14c-.178.075-.092-.16-.175-.22-.064-.09-.15-.182-.273-.157-.053.037.033.08.037.126a.239.239 0 0 1-.074.252.144.144 0 0 1-.132 0 .356.356 0 0 1-.172-.363 1.408 1.408 0 0 1 .304-.574.991.991 0 0 1 .817-.354 2.045 2.045 0 0 0-.147-.178.31.31 0 0 0-.332-.074.704.704 0 0 0-.2-.448.14.14 0 0 0-.138-.016l.037.074a.394.394 0 0 1-.053.338.57.57 0 0 0-.42.015.387.387 0 0 0-.19.28.165.165 0 0 0 .1-.05c.05-.017.105-.036.142.013a.169.169 0 0 1-.007.178.204.204 0 0 1-.22.105c-.117-.021-.163-.15-.194-.246a.767.767 0 0 1 .252-.67 8.097 8.097 0 0 1 .832-.642 1.65 1.65 0 0 0-.568-.126c-.01-.135.15-.2.221-.307a2.294 2.294 0 0 0 .267-1.094l-.067.025a.283.283 0 0 0-.163-.283.563.563 0 0 1-.163.615.391.391 0 0 1-.175-.384.751.751 0 0 0-.163.258c-.04.067-.012.16-.052.227a.782.782 0 0 0-.522-.126.758.758 0 0 1 .19.274.553.553 0 0 1-.08.537c-.046-.129.015-.31-.141-.39a5.585 5.585 0 0 0-.169.79c-.006.015-.022.04-.043.03a.91.91 0 0 1-.163-.415 1.213 1.213 0 0 0-.052 1.085c.043.148.141.338.03.486-.353.205-.251-.302-.42-.434a.952.952 0 0 0-.016.701c-.027.028-.073.01-.11.015-.203.04-.292.258-.332.433.074-.002.12-.076.19-.08a.898.898 0 0 1 .974.28.428.428 0 0 1 .01.421.225.225 0 0 1-.179.101c-.18.007-.316-.295-.316-.295a1.482 1.482 0 0 0 .015.237.881.881 0 0 0 .544.71c.13.095.255.224.221.39-.027.037-.07.068-.116.043-.102-.03-.179-.227-.179-.227a.562.562 0 0 0-.037.543.874.874 0 0 0-.073.664c.018.028.024.077.058.074a.712.712 0 0 1 .4-.516.807.807 0 0 1 .817.082.205.205 0 0 1 .046.222c-.092.156-.329.129-.489.11a.627.627 0 0 0 .172.28.576.576 0 0 0-.104.485l.19-.169a.956.956 0 0 1 .71-.175.2.2 0 0 1 .117.206c.006.123-.135.138-.2.221a.225.225 0 0 0-.049.175 3.563 3.563 0 0 1 .575-.147c.295-.018.688-.089.87.184a.276.276 0 0 1-.096.252c-.058.062-.135.074-.2.117a.094.094 0 0 0 .037.062.537.537 0 0 0 .531.02c.053.1-.036.2-.036.296a.452.452 0 0 0 .405-.193.943.943 0 0 0 .627.294c.03-.061-.028-.132-.01-.196.022-.006.035.006.053.006a2.36 2.36 0 0 1 .848.937.388.388 0 0 0-.227.117c-.025.046-.065.098-.037.156.046-.003.076-.043.117-.06.147-.016.242.156.325.257.09.138-.141.062-.147.172a.582.582 0 0 1 .227.295.36.36 0 0 0 .03.11h.79a1.477 1.477 0 0 1 .096-.23c.037-.08.12-.129.168-.2-.046-.055-.12-.049-.178-.08a.7.7 0 0 1 .268-.325c.064-.04.14.043.206.046a.202.202 0 0 0-.03-.126.278.278 0 0 0-.244-.126 2.154 2.154 0 0 1 .501-.679 1.44 1.44 0 0 1 .393-.286c.03.062-.03.13-.015.19a.945.945 0 0 0 .633-.294.42.42 0 0 0 .415.178.58.58 0 0 1-.068-.252c.009-.027.04-.009.058-.015a.479.479 0 0 0 .517-.074c.009-.058-.09-.061-.133-.095a.36.36 0 0 1-.169-.274c.117-.242.452-.24.68-.227a2.599 2.599 0 0 1 .774.163c.04-.23-.283-.212-.258-.436a.216.216 0 0 1 .147-.175 1.038 1.038 0 0 1 .87.359.742.742 0 0 0-.046-.384c-.02-.04-.068-.08-.059-.123a.487.487 0 0 0 .157-.267c-.028.01-.059.003-.083.015-.144-.003-.347.028-.405-.141a.221.221 0 0 1 .073-.228.865.865 0 0 1 .642-.11.757.757 0 0 1 .553.559h.016a.721.721 0 0 0 .058-.38 1.282 1.282 0 0 0-.105-.364.538.538 0 0 0-.042-.522c-.034.077-.06.19-.163.227a.097.097 0 0 1-.127-.052.427.427 0 0 1 .222-.39.88.88 0 0 0 .532-.67c-.004-.095.039-.196-.007-.282-.073.08-.077.184-.157.258a.221.221 0 0 1-.233.024.281.281 0 0 1-.12-.178.44.44 0 0 1 .126-.42.922.922 0 0 1 .937-.176c.046.013.09.062.139.043l-.065-.178a.398.398 0 0 0-.378-.234Zm-4.479-4.192c-.104-.24-.182-.515-.292-.751-.11.236-.185.511-.29.751l-.765-.002s.406.314.603.474c-.05.27-.14.511-.212.78l.668-.464.663.464c-.069-.261-.162-.51-.211-.78.196-.16.601-.474.601-.474Zm-5.574-1.06v6.1a.988.988 0 0 0 .415.913 1 1 0 0 0 .626.169h1.998a.712.712 0 0 1 .522.384.699.699 0 0 1 .513-.384h1.998a1.003 1.003 0 0 0 .626-.169.984.984 0 0 0 .415-.913l-.003-6.1a.579.579 0 0 1 .35-.45.853.853 0 0 1 .11-.028H12.99a.91.91 0 0 1 .11.028.574.574 0 0 1 .347.45Zm3.705 5.464c.022-.209.099-.4.132-.605-.126-.132-.045-.341.016-.48.116-.254.242-.506.347-.764a.33.33 0 0 1 .347-.059.266.266 0 0 1 .16.25c.028.183-.11.316-.05.494-.051-.016-.15-.003-.184-.08-.064-.043-.162-.006-.22-.061-.295.012-.295.338-.384.53a.158.158 0 0 0-.01.12c.107.038.016.145.03.222a3.098 3.098 0 0 1-.162.464c-.028.012-.003-.025-.022-.03Zm1.026-.921c.016-.053.016-.166.11-.111.038.043.02.117.013.17-.018.048-.015.103-.058.14-.034.003-.074 0-.09-.03.031-.056-.023-.139.025-.17Zm.06.5-.038-.006c.016-.074-.009-.175.058-.215.037.074-.003.154-.02.221Zm-.754-.344c-.033-.052 0-.113 0-.172l.08-.227c.03-.022.055-.05.099-.037a.125.125 0 0 1 .005.11l-.094.317c-.026.015-.065.037-.09.01Zm.037.258a1.067 1.067 0 0 1-.132.418.033.033 0 0 1-.037-.012 2.037 2.037 0 0 1 .126-.516c.01-.025.034-.013.05-.016.036.037 0 .083-.007.126Zm.043.212.083-.316a.067.067 0 0 1 .09-.022 2.152 2.152 0 0 1-.112.434c-.018.009-.03.021-.051.015-.026-.028-.016-.077-.01-.11Zm.148-.47a1.591 1.591 0 0 1 .082-.405c.035-.007.071 0 .08.037a1.175 1.175 0 0 1-.08.39c-.027.012-.08.012-.082-.022Zm.14.138.032-.027a.046.046 0 0 1 .058.027.982.982 0 0 1-.104.354.05.05 0 0 1-.037.01c-.053-.124.043-.24.052-.364Zm.074-.125a.915.915 0 0 1 .007-.222l.03-.101a.108.108 0 0 1 .117.021 1.27 1.27 0 0 1-.05.295.088.088 0 0 1-.104.007Zm.17.098c.07-.003.021.077.03.117-.024.049-.012.117-.058.153l-.037-.006c.01-.092-.018-.215.065-.264Zm-.332 1.201h-.028a.61.61 0 0 1 .206-.295.439.439 0 0 1-.178.295Zm.304-.147a.14.14 0 0 1-.061.064h-.028a.318.318 0 0 1 .117-.22c.043.04-.016.107-.028.156Zm.043-.237a.079.079 0 0 1-.08.016c0-.096.08-.157.16-.206.052-.016.126-.062.172 0 .01.003.012-.012.021-.016a.143.143 0 0 0-.052-.083c-.171-.027-.301.108-.412.237l-.414.605c-.022.09.08.059.11.11a.224.224 0 0 0-.242.075c-.019-.044-.043-.117-.105-.117.037-.03.095-.006.136-.025.227-.307.43-.623.648-.934a.283.283 0 0 1 .28-.089.207.207 0 0 1 .125.102c.077.19-.037.353-.104.51a.478.478 0 0 0 .01-.133.09.09 0 0 0-.12-.046c-.038.007-.087-.03-.133-.006Zm.405-1.727c.059-.018.142.016.191-.027a.351.351 0 0 0 .184.037c-.015.067-.107.04-.123.11v.176c-.024 0-.045-.025-.067-.007-.021.013-.016.034-.037.043-.034-.012-.061-.064-.105-.036-.012.006-.018.021-.036.015-.01-.034.024-.077 0-.117-.043-.064-.114-.061-.184-.058a.274.274 0 0 0 .177-.136Zm-.036-.331c.036.009.067.049.104.03.068-.03.006-.153.111-.132.037.04.009.12.08.132.045.004.101-.083.126-.015a.198.198 0 0 1-.059.126 1.857 1.857 0 0 0-.347 0c-.021-.04-.062-.104-.015-.141Zm-.206 2.132c.021.052-.01.098-.03.141-.016.006-.035.025-.053.006.022-.052.015-.135.083-.147Zm.98.553c-.132.01-.182-.141-.273-.215-.022-.019-.05.01-.06.03a2.165 2.165 0 0 0 .29.412c-.09.003-.172-.092-.236-.169-.062-.067-.053-.19-.157-.212l-.021.022a.916.916 0 0 1-.016.427c-.043.027-.07-.025-.08-.058a2.35 2.35 0 0 1-.021-.39c-.01-.025-.034-.013-.053-.016-.08.166-.144.415-.353.458a3.255 3.255 0 0 0 .249-.43c.003-.025.003-.059-.028-.065-.077.028-.086.123-.163.169-.043.022-.077.064-.132.059a1.708 1.708 0 0 1 .139-.258c.107-.237.356-.48.199-.76a.86.86 0 0 1-.101-.804c.043-.062.064-.191.175-.17.027.022.055.077.09.037a.064.064 0 0 1 .073-.037c.022.022.028.068.067.059.01-.019.028-.012.043-.012a.87.87 0 0 1 .105.611 1.194 1.194 0 0 1-.135.396c-.05.172.052.298.12.43l.279.455Zm-.185-.5a.145.145 0 0 1 .016-.09c.04 0 .043.056.052.09v.057c-.046.016-.052-.036-.067-.058Zm.216.131a.247.247 0 0 1-.062-.227c.022-.003.04.022.046.037-.003.065.074.135.016.19Zm.264.09c-.07.036-.105-.062-.132-.105-.019-.062-.108-.154-.03-.2.082.065.104.166.168.246Zm.326.31a.222.222 0 0 0-.185-.111c.046-.024.05-.089.037-.135l-.4-.596c-.08-.058-.162-.169-.264-.105a.054.054 0 0 0-.024.053c.037.04.08-.013.12.015a.217.217 0 0 1 .126.178.135.135 0 0 0-.148.006c-.058-.021-.135.046-.162-.03-.01-.093-.053-.21.006-.295a.346.346 0 0 1 .28-.059c.066.025.107.096.146.148l.415.71c.044.049.11.045.163.085a.227.227 0 0 0-.11.136Zm-.437-1.58c-.163.04-.108-.153-.169-.227a.077.077 0 0 1 .058-.09c.13-.002.105.152.154.228.01.031.003.086-.043.09Zm.022.354c-.016.021-.031-.003-.043-.015a1.02 1.02 0 0 1-.058-.212l.012-.016a.443.443 0 0 1 .089.243Zm-.153-.163c.011.05.036.108.005.157h-.015a.906.906 0 0 1-.064-.221c.046-.022.058.033.074.064Zm-.112-.138c-.147.003-.085-.172-.126-.258a.043.043 0 0 1 .031-.053c.05-.03.086.019.102.059-.003.083.107.2-.007.252Zm-.015.3c-.055.032-.043-.048-.067-.073.006-.061-.044-.114-.013-.175.062-.015.059.064.08.101.004.05.028.108 0 .148Zm.59-.116a.942.942 0 0 1 .09.332.03.03 0 0 1-.047.006 4.735 4.735 0 0 1-.196-.458c-.003-.027-.003-.064.027-.073.077.03.095.125.126.193Zm-.08-.664.037-.03c.132.04.13.2.184.304a.089.089 0 0 1-.052.095c-.028.01-.043-.015-.058-.03-.025-.118-.114-.219-.11-.339Zm-.03.384c-.016.013-.04.004-.059.007a3.005 3.005 0 0 1-.11-.289.069.069 0 0 1 .043-.059c.107.007.095.139.147.206.006.043.024.114-.022.135Zm-.08.27a2.119 2.119 0 0 1 .058.237c-.05.006-.056-.064-.083-.095-.01-.098-.098-.181-.064-.28a.343.343 0 0 1 .089.139Zm.418.385c-.12-.15-.123-.347-.222-.507.019-.015-.006-.043.025-.052.036-.012.065.03.074.058a2.71 2.71 0 0 1 .153.495c-.006.012-.018.003-.03.006Zm-.028-.495c-.037-.098.098-.132.052-.227a.839.839 0 0 0-.23-.427c-.12-.056-.172.098-.295.064-.074.111-.228.031-.31.126a.258.258 0 0 1 .015-.153c-.013-.203-.105-.427-.007-.621l.08-.058a.358.358 0 0 1 .384.058c.13.212.216.442.326.664a.765.765 0 0 1 .074.473c-.05.095.03.175.058.258a2.243 2.243 0 0 1 .111.433 3.705 3.705 0 0 1-.258-.59Zm-2.962-5.168h3.548a.782.782 0 0 0-.16.561v3.096h-3.388Zm-3.063 1.276a.149.149 0 0 1 .08-.163c.046-.012.098 0 .135-.037-.019-.083-.043-.206.049-.264.028-.007.064.012.083-.016a.185.185 0 0 1 .037-.169c.068-.046.19-.046.184-.162a.112.112 0 0 1 .096-.059c.08-.025.184.092.19-.052.108-.15.3-.015.451-.059.099.028.099.142.154.2a.268.268 0 0 1 .28-.095c.058.021.138.043.157.116.009.02.003.047.027.06.052-.023.098-.075.163-.044.095.04.11.135.11.227.05.01.109-.024.148.031.034.043-.068.12.03.132a.052.052 0 0 1 .022.074c.03.03.096.034.096.089.04.098-.077.172 0 .249.015.037-.028.07.009.098.046-.015.073.022.11.037a.19.19 0 0 1 .022.154c.018.12-.228.095-.095.215a.123.123 0 0 1-.084.123c-.036.018-.064-.031-.088 0a.22.22 0 0 1-.132.215.396.396 0 0 1-.206 0l-.096-.11a.246.246 0 0 1-.242.067c-.166-.062-.01-.286-.163-.357-.138-.033-.243.108-.317.2l-.037-.006a2.657 2.657 0 0 1-.245-.473c-.019-.003-.04 0-.043.021a1.189 1.189 0 0 0 .258.516c.024.022.046.065.08.037.076-.083.132-.181.245-.205a.288.288 0 0 1 .028.214c-.19.182-.095.492-.11.738a1.596 1.596 0 0 0 .162.759.301.301 0 0 1-.295-.043c-.08-.01-.138.074-.227.064-.028-.018-.07.01-.09-.021.219-.19.136-.52.154-.774-.07-.265.071-.615-.175-.806a1.883 1.883 0 0 1-.172-.405c-.012-.021-.034-.021-.058-.021-.046.046-.028.125-.095.156-.102.062-.166-.123-.252-.015a.106.106 0 0 1-.102-.058c-.009-.013-.006-.028-.021-.037-.022-.01-.025.012-.037.021a.155.155 0 0 0 .08.148.163.163 0 0 0 .126-.01c.03-.08.089-.003.132-.006l.184-.006a2.1 2.1 0 0 0 .243.455c.006.04 0 .086-.043.089-.08-.086-.083.061-.157.058a.145.145 0 0 1-.123-.037l-.067-.086c-.05.007-.123.019-.148-.03-.012-.025-.006-.056-.015-.08-.05-.003-.114.015-.163-.025-.077-.043.012-.203-.123-.175a.204.204 0 0 1-.126-.194c.006-.061.028-.156-.058-.175a.226.226 0 0 1 .08-.288Zm-.347 2.434h3.41v3.964a.755.755 0 0 0-.688-.284h-2.023a.876.876 0 0 1-.678-.628l-.021-.21Zm5.008.672c.015-.006.037-.025.037-.037a.08.08 0 0 0-.068-.025.052.052 0 0 0-.043.046c.009.028.049.01.074.016Zm-4.114-3.159c.067.01.16.028.205-.043.065-.067.105.059.176.037.12.012.064-.169.193-.126a.205.205 0 0 0 .154-.126c-.043-.11.077-.15.067-.258-.009-.034-.04-.086-.082-.064 0 .006 0 .018.009.021a.093.093 0 0 1-.016.117c-.086.022-.018.132-.058.184-.03.15-.209.013-.221.136a.1.1 0 0 1-.12.064c-.083-.126-.142.07-.249.015a.164.164 0 0 1-.095-.067c-.03-.028.003-.111-.062-.102a.085.085 0 0 0-.021.074.188.188 0 0 0 .12.138Zm.132 5.199.668-.464.664.464c-.07-.261-.163-.51-.212-.78.196-.16.602-.474.602-.474l-.765.002c-.105-.24-.183-.515-.294-.751-.11.236-.184.511-.288.75h-.765s.405.312.602.472c-.05.27-.14.512-.212.78Z\" style=\"fill-rule:evenodd\"/></svg>',withExternalLayout:true})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,y:(componentViewport?.y||0)+0+(((componentViewport?.height||388)-0-232)/2+1+0)+0+0+76,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-asv6zh-container\",layoutDependency:layoutDependency,layoutId:\"jnJwAfL6K-container\",nodeId:\"jnJwAfL6K\",rendersWithMotion:true,scopeId:\"JGHshZ_2m\",children:/*#__PURE__*/_jsx(AtomsSpacer,{height:\"100%\",id:\"jnJwAfL6K\",layoutId:\"jnJwAfL6K\",style:{width:\"100%\"},variant:zTEEDbGHO,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bwbr62-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"l_eP7IkMg-container\",nodeId:\"l_eP7IkMg\",rendersWithMotion:true,scopeId:\"JGHshZ_2m\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"l_eP7IkMg\",layoutId:\"l_eP7IkMg\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wloybp\",\"data-framer-name\":\"Second row\",layoutDependency:layoutDependency,layoutId:\"loCsQJruj\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-qwcm1k\",\"data-framer-name\":\"$18\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"OtsCkHrng\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 80 80\" style=\"enable-background:new 0 0 80 80\" xml:space=\"preserve\"><defs><path id=\"a\" d=\"M26.1 26.1h27.8v27.8H26.1z\"/></defs><clipPath id=\"b\"><use xlink:href=\"#a\" style=\"overflow:visible\"/></clipPath><path style=\"clip-path:url(#b)\" d=\"M25.6 25.6h28.8v28.8H25.6z\"/><defs><path id=\"c\" d=\"m43.3 39.8 10.6-13.7h-1.6L41.7 39.8h1.6z\"/></defs><use xlink:href=\"#c\" style=\"overflow:visible;fill:#fff\"/><clipPath id=\"d\"><use xlink:href=\"#c\" style=\"overflow:visible\"/></clipPath><path style=\"clip-path:url(#d);fill:#fff\" d=\"M41.2 25.6h13.1v14.7H41.2z\"/><defs><path id=\"e\" d=\"M26.1 26.1h27.8v27.8H26.1z\"/></defs><defs><path id=\"g\" d=\"M47.3 45.9c.5 1.4 1.5 4.9 1.9 5.2h-2.6c0-.3 0-.6-.1-.9-.1-.4-1.1-3.5-1.1-3.5h-4.2l-.7.9s.8 2.5.8 2.6c.1.2.5.9.5.9h-2.5s-.1-.4-.1-.5c0-.1-.2-.8-.2-.8s-.6.6-.7.9c-.2.3-.2.4-.2.4h-2s-.1-.4-.1-.5c0-.1-.3-.9-.3-.9s-.5.7-.7 1c-.2.3-.2.4-.2.4h-1.9l.7-.7 1.5-2-.5-1.7h-4.1s-2.4 3.1-2.4 3.2c-.1.1-.8 1.1-.8 1.2h-1.2v-.8s1.8-2.2 3.4-4.3c1.4-1.9 2.8-3.7 2.9-3.9.3-.4.7-1.3.7-1.3h2.1s.1.8.1 1c.1.2 1.4 4.4 1.4 4.5l.7-.9-1.2-3.8s-.3-.7-.4-.8h2.5c0 .2 0 .5.1.7.1.3.6 2.2.6 2.2s1.7-2.1 1.8-2.3c.1-.2.2-.4.2-.6h2.1s-.4.3-1 1.1c-.2.3-2.4 3.1-2.4 3.1s.2.7.3 1v.2s0-.1.1-.2c.6-.7 3.1-4.1 3.3-4.4.1-.2.3-.5.4-.8h2s0 .6.1.8l1.4 4.3zm-3.1-3.2c-.3.6-2 2.8-2 2.8H45s-.5-1.7-.6-2c-.1-.3-.1-.5-.2-.8.1 0 .1 0 0 0zm-10.6 0c-.3.6-2 2.8-2 2.8h2.8s-.5-1.7-.6-2c-.2-.3-.2-.5-.2-.8zm4.1 6.5.8-1c-.1-.1-.5-1.4-.5-1.4l-.7 1 .4 1.4z\"/></defs><clipPath id=\"f\"><use xlink:href=\"#e\" style=\"overflow:visible\"/></clipPath><clipPath id=\"h\" style=\"clip-path:url(#f)\"><use xlink:href=\"#g\" style=\"overflow:visible\"/></clipPath><path style=\"clip-path:url(#h);fill:#fff\" d=\"M25.6 40.3h24.1v11.3H25.6z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5wvqp4\",\"data-framer-name\":\"$13\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"pygkfTB38\",svg:'<svg data-name=\"Livello 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\"><path data-name=\"Wortmarke pos\" d=\"M49.832 43.571h2.146l-1.528-2.645a2.021 2.021 0 0 0 1.322-1.94c0-1.352-.881-2.234-2.645-2.234h-3.38v6.82h1.851V41.19h.941l1.293 2.381Zm.06-4.585c0 .47-.324.823-1.03.823H47.57v-1.646h1.293c.706 0 1.03.353 1.03.823Zm-7.467-.323v2.175c0 1-.47 1.322-1.117 1.322-.617 0-1.117-.352-1.117-1.322v-2.205H38.31v2.293c0 1.793 1 2.792 3.027 2.792s2.999-.999 2.999-2.763v-2.292Zm-2.234-.618v-1.293H38.31v1.293Zm2.234 0h1.881v-1.293h-1.881v1.293ZM30.491 41.28l-.97-4.527H27.64l1.734 6.82h1.999l1.175-4.469 1.176 4.468h2l1.733-6.82h-1.88l-.97 4.528-1.177-4.527h-1.763l-1.176 4.527Zm32.598-2.087h-2.292v-2.44h-1.882v6.82h1.882V40.72h2.292v2.851H65v-6.82h-1.91v2.44Zm-8.877-.941v5.35h1.881v-5.35h1.764v-1.5H52.45v1.5Z\"/><path d=\"M24.788 38.839H15v-4.203h4.086v1.646h1.646v-1.646h4.086v4.203Zm-4.085 4.88v1.645a4.948 4.948 0 0 0 4.085-4.761v-.089H15v.089a4.942 4.942 0 0 0 4.086 4.732V43.69h1.617Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19lwy4t\",\"data-framer-name\":\"$19\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"nmX3y2pHi\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 120 120\"><path d=\"M 58.944 38.392 C 50.761 38.38 43.287 43.032 39.686 50.38 C 36.085 57.728 36.987 66.486 42.011 72.945 L 48.953 67.533 C 46.471 64.333 45.676 60.137 46.816 56.252 C 47.955 52.366 50.89 49.264 54.707 47.912 L 54.707 71.291 L 63.181 71.291 L 63.181 47.913 C 66.996 49.265 69.931 52.365 71.071 56.249 C 72.212 60.132 71.42 64.327 68.941 67.527 L 75.903 72.913 C 80.911 66.451 81.801 57.7 78.196 50.361 C 74.59 43.023 67.12 38.378 58.944 38.392 Z M 81.213 80.4 L 81.213 80.113 L 81.39 80.113 C 81.486 80.113 81.618 80.122 81.618 80.244 C 81.618 80.376 81.55 80.4 81.436 80.4 Z M 81.213 80.601 L 81.333 80.601 L 81.606 81.097 L 81.906 81.097 L 81.603 80.58 C 81.684 80.583 81.762 80.55 81.816 80.491 C 81.871 80.431 81.897 80.351 81.888 80.271 C 81.888 79.999 81.708 79.911 81.402 79.911 L 80.96 79.911 L 80.96 81.097 L 81.213 81.097 Z M 82.5 80.505 C 82.502 80.057 82.233 79.653 81.82 79.48 C 81.407 79.308 80.931 79.402 80.614 79.718 C 80.297 80.034 80.202 80.51 80.373 80.924 C 80.544 81.337 80.948 81.607 81.396 81.606 C 81.692 81.617 81.978 81.505 82.188 81.296 C 82.397 81.087 82.51 80.801 82.5 80.505 Z M 82.183 80.505 C 82.196 80.723 82.119 80.937 81.971 81.097 C 81.822 81.257 81.614 81.349 81.396 81.352 L 81.396 81.349 C 81.049 81.374 80.721 81.184 80.571 80.869 C 80.421 80.555 80.479 80.181 80.716 79.926 C 80.954 79.671 81.323 79.588 81.647 79.716 C 81.971 79.844 82.184 80.157 82.183 80.505 Z M 53.835 76.452 L 49.755 76.455 C 48.733 76.483 48.222 76.958 48.221 77.88 L 48.221 80.023 C 48.183 80.427 48.327 80.825 48.612 81.112 C 48.975 81.366 49.416 81.485 49.857 81.448 C 49.857 81.448 53.895 81.447 53.93 81.447 C 54.951 81.42 55.462 80.945 55.463 80.022 L 55.463 77.88 C 55.463 76.93 54.92 76.455 53.835 76.455 Z M 54.093 78.016 L 54.093 80.232 L 49.59 80.232 L 49.59 77.67 L 54.093 77.67 Z M 57.569 77.668 L 61.721 77.668 C 61.955 77.668 62.072 77.781 62.072 78.004 L 62.072 78.285 C 62.084 78.381 62.051 78.477 61.982 78.545 C 61.913 78.613 61.816 78.645 61.721 78.63 L 57.569 78.63 L 57.569 77.67 Z M 56.199 81.427 L 57.568 81.427 L 57.568 79.848 L 61.804 79.848 C 62.895 79.848 63.44 79.371 63.439 78.418 L 63.439 77.881 C 63.439 76.928 62.895 76.452 61.806 76.452 L 56.199 76.452 Z M 65.553 78.672 L 65.553 78.027 C 65.538 77.93 65.57 77.831 65.638 77.761 C 65.707 77.69 65.805 77.656 65.903 77.668 L 69.687 77.668 C 69.784 77.656 69.882 77.69 69.95 77.76 C 70.019 77.83 70.051 77.928 70.037 78.025 L 70.037 78.672 Z M 71.406 77.877 C 71.406 76.927 70.904 76.452 69.901 76.452 L 65.808 76.452 C 64.724 76.452 64.182 76.927 64.182 77.877 L 64.182 81.447 L 65.553 81.447 L 65.553 79.89 L 70.038 79.89 L 70.038 81.45 L 71.406 81.45 L 71.406 77.88 Z M 73.512 77.668 L 77.665 77.668 C 77.898 77.668 78.016 77.781 78.016 78.004 L 78.016 78.285 C 78.029 78.381 77.996 78.477 77.927 78.545 C 77.858 78.612 77.761 78.644 77.665 78.63 L 73.512 78.63 L 73.512 77.67 Z M 72.144 81.427 L 73.512 81.427 L 73.512 79.848 L 76.008 79.848 L 77.799 81.435 L 79.233 81.435 C 79.399 81.441 79.565 81.439 79.731 81.427 C 78.513 80.38 77.908 79.853 77.916 79.845 C 78.313 79.909 78.717 79.781 79.006 79.502 C 79.295 79.223 79.436 78.823 79.386 78.424 L 79.386 77.884 C 79.386 76.929 78.843 76.452 77.758 76.452 L 72.144 76.452 Z M 38.159 81.447 L 38.159 76.461 L 39.554 76.461 L 42.812 79.726 L 46.097 76.452 L 47.487 76.452 L 47.487 81.447 L 46.097 81.447 L 46.097 78.177 L 42.812 81.439 L 39.537 78.177 L 39.537 81.447 L 38.157 81.447 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:11646854180,withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ialso0\",layoutDependency:layoutDependency,layoutId:\"wZi0UCX2g\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:344.5,intrinsicWidth:1500,pixelHeight:689,pixelWidth:3e3,sizes:\"98px\",src:\"https://framerusercontent.com/images/194KcBWNEA4Q8sMAOLgGM9K7A.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/194KcBWNEA4Q8sMAOLgGM9K7A.png?scale-down-to=512 512w,https://framerusercontent.com/images/194KcBWNEA4Q8sMAOLgGM9K7A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/194KcBWNEA4Q8sMAOLgGM9K7A.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/194KcBWNEA4Q8sMAOLgGM9K7A.png 3000w\"},className:\"framer-1kejzhz\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"m9DoJocdz\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-awdls9\",\"data-framer-name\":\"$14\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"AQL1KiT9D\",svg:'<svg id=\"Livello_1\" data-name=\"Livello 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\"><defs><style>.cls-1{fill:#010101}</style></defs><path class=\"cls-1\" d=\"M40 52.5A12.5 12.5 0 1 1 52.5 40 12.514 12.514 0 0 1 40 52.5Zm0-24.51A12.01 12.01 0 1 0 52.01 40 12.023 12.023 0 0 0 40 27.99Z\"/><path class=\"cls-1\" d=\"M49.767 33.956a5.093 5.093 0 0 0-1.97-2.3 14.662 14.662 0 0 0-6.92-2.245 14.16 14.16 0 0 0-.867-.027h-.022c-.29 0-.58.01-.866.027a14.663 14.663 0 0 0-6.92 2.245 5.094 5.094 0 0 0-1.971 2.3 13.044 13.044 0 0 0-.562 7.023 17.38 17.38 0 0 0 2.737 7.204c.053.056.193.208.248.262 2.235 1.83 4.23 2.315 7.334 2.315h.022c3.105 0 5.1-.485 7.334-2.315.056-.054.195-.206.248-.262a17.38 17.38 0 0 0 2.737-7.204 13.043 13.043 0 0 0-.562-7.023Zm-1.61 6.214a35.26 35.26 0 0 1-1.781 7.166 1.413 1.413 0 0 1-.565.75 6.683 6.683 0 0 1-2.608 1.1 16.89 16.89 0 0 1-3.187.29h-.03a16.888 16.888 0 0 1-3.187-.29 6.684 6.684 0 0 1-2.608-1.1 1.414 1.414 0 0 1-.565-.75 35.266 35.266 0 0 1-1.78-7.166c-.4-2.755-.375-5.184.194-6.634a1.964 1.964 0 0 1 .203-.393.93.93 0 0 1 .083-.107c1.145-1.145 4.351-1.767 7.675-1.767 3.323 0 6.53.622 7.674 1.767a.935.935 0 0 1 .083.107 1.97 1.97 0 0 1 .204.393c.569 1.45.593 3.879.194 6.634Z\"/><path d=\"M43.306 35.392v1.134h1.035l-.043 8.555h1.192l.286-8.555h1.018v-1.148Zm-9.044 9.676 1.182.013-.017-4.4h1.053v-1.155h-1.053V36.55h1.36v-1.153l-2.803-.017.278 9.687m3.224.013h1.22l.026-9.702-1.434.002.188 9.7m3.182-5.503.027-3.087.709.006h.015a8.27 8.27 0 0 1 .537 1.914c.115.633.171 1.167.171 1.167h-1.46m-1.21-4.186.113 9.684h1.151l.01-4.373h1.455c.129.799.143 4.097.143 4.353v.025h1.12c.043-2.461.234-7.04-1.141-9.689h-2.851\" style=\"fill:#fff\"/><path class=\"cls-1\" d=\"M43.306 35.392v1.134h1.035l-.043 8.555h1.192l.286-8.555h1.018v-1.148Zm-9.044 9.676 1.182.013-.017-4.4h1.053v-1.155h-1.053V36.55h1.36v-1.153l-2.803-.017.278 9.687m3.224.013h1.22l.026-9.702-1.434.002.188 9.7m3.182-5.503.027-3.087.709.006h.015a8.27 8.27 0 0 1 .537 1.914c.115.633.171 1.167.171 1.167h-1.46m-1.21-4.186.113 9.684h1.151l.01-4.373h1.455c.129.799.143 4.097.143 4.353v.025h1.12c.043-2.461.234-7.04-1.141-9.689h-2.851\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-runc0y\",layoutDependency:layoutDependency,layoutId:\"iruwl44d1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1j1217t\",\"data-framer-name\":\"Azimut_Benetti_Group\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"XsXmcRi9T\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 120 26\"><path d=\"M 115.668 7.626 C 116.793 7.626 116.964 7.869 116.964 8.858 L 116.964 12.823 C 116.964 13.876 116.819 14.055 115.707 14.055 L 115.707 14.347 L 119.543 14.347 L 119.543 14.055 C 118.391 14.055 118.221 13.835 118.221 12.835 L 118.221 8.845 C 118.221 7.759 118.326 7.626 119.491 7.626 L 119.491 7.333 L 115.669 7.333 Z M 107.225 8.881 L 107.5 8.881 C 107.827 7.807 107.893 7.733 108.573 7.733 L 110.157 7.733 L 110.157 13.066 C 110.157 13.944 110.053 14.054 108.717 14.054 L 108.717 14.347 L 112.801 14.347 L 112.801 14.054 C 111.492 14.054 111.414 13.937 111.414 12.883 L 111.414 7.73 L 112.828 7.73 C 113.626 7.73 113.783 7.876 114.018 8.878 L 114.306 8.878 L 114.162 7.084 L 113.914 7.084 C 113.835 7.29 113.744 7.328 113.286 7.328 L 108.063 7.328 C 107.814 7.328 107.722 7.266 107.605 7.083 L 107.354 7.083 Z M 98.691 8.881 L 98.965 8.881 C 99.294 7.807 99.358 7.733 100.039 7.733 L 101.623 7.733 L 101.623 13.066 C 101.623 13.944 101.518 14.054 100.184 14.054 L 100.184 14.347 L 104.267 14.347 L 104.267 14.054 C 102.959 14.054 102.879 13.937 102.879 12.883 L 102.879 7.73 L 104.293 7.73 C 105.092 7.73 105.248 7.876 105.485 8.878 L 105.773 8.878 L 105.628 7.084 L 105.377 7.084 C 105.299 7.29 105.206 7.328 104.748 7.328 L 99.527 7.328 C 99.278 7.328 99.186 7.266 99.069 7.083 L 98.82 7.083 Z M 90.942 14.347 L 97.219 14.347 L 97.364 12.638 L 97.035 12.638 C 96.735 13.692 96.448 13.944 95.525 13.944 L 94.215 13.944 C 93.457 13.944 93.444 13.931 93.444 13.26 L 93.444 10.932 L 95.198 10.932 C 96.062 10.932 96.154 11.041 96.193 11.883 L 96.543 11.883 L 96.543 9.712 L 96.203 9.712 C 96.151 10.492 96.02 10.602 95.352 10.602 L 93.454 10.602 L 93.454 7.698 L 95.34 7.698 C 96.255 7.698 96.465 7.881 96.635 8.869 L 96.948 8.869 L 96.871 7.333 L 90.942 7.333 L 90.942 7.625 C 91.977 7.625 92.199 7.772 92.199 8.562 L 92.199 13.15 C 92.199 13.907 91.95 14.065 90.942 14.065 L 90.942 14.347 Z M 80.681 14.347 L 83.887 14.347 L 83.887 14.054 C 82.591 14.054 82.474 13.944 82.474 12.931 L 82.474 8.613 L 88.063 14.385 L 88.443 14.385 L 88.443 8.565 C 88.443 7.795 88.652 7.628 89.686 7.628 L 89.686 7.335 L 86.623 7.335 L 86.623 7.628 L 86.846 7.628 C 87.736 7.628 87.919 7.737 87.919 8.565 L 87.919 12.591 L 82.804 7.333 L 80.696 7.333 L 80.696 7.625 C 81.652 7.625 81.914 7.869 81.914 8.679 L 81.914 13.145 C 81.914 13.902 81.681 14.061 80.683 14.061 Z M 72.958 14.347 L 79.241 14.347 L 79.385 12.638 L 79.057 12.638 C 78.756 13.692 78.469 13.944 77.552 13.944 L 76.243 13.944 C 75.484 13.944 75.471 13.931 75.471 13.26 L 75.471 10.932 L 77.225 10.932 C 78.089 10.932 78.181 11.041 78.22 11.883 L 78.56 11.883 L 78.56 9.712 L 78.22 9.712 C 78.154 10.492 78.037 10.602 77.343 10.602 L 75.471 10.602 L 75.471 7.698 L 77.355 7.698 C 78.273 7.698 78.482 7.881 78.652 8.869 L 78.965 8.869 L 78.888 7.333 L 72.959 7.333 L 72.959 7.625 C 73.994 7.625 74.215 7.772 74.215 8.562 L 74.215 13.15 C 74.215 13.907 73.967 14.065 72.959 14.065 L 72.958 14.347 Z M 71.074 23.961 L 71.074 21.935 C 71.243 21.923 71.335 21.923 71.414 21.923 C 72.121 21.923 72.605 22.313 72.605 22.898 C 72.605 23.546 72.121 23.986 71.375 23.986 C 71.274 23.987 71.173 23.979 71.074 23.961 Z M 69.581 21.948 C 70.17 21.948 70.279 22.058 70.279 22.68 L 70.279 25.022 C 70.279 25.572 70.174 25.681 69.663 25.705 L 69.663 25.876 L 71.872 25.876 L 71.872 25.705 C 71.217 25.705 71.074 25.588 71.074 25.071 L 71.074 24.168 C 71.277 24.192 71.483 24.205 71.688 24.205 C 72.696 24.205 73.377 23.704 73.377 22.948 C 73.377 22.094 72.775 21.741 71.285 21.741 C 70.82 21.741 70.055 21.765 69.583 21.777 Z M 65.38 8.564 L 65.38 4.575 C 65.667 4.564 65.995 4.551 66.557 4.551 C 68.272 4.551 69.058 5.344 69.058 6.735 C 69.058 7.98 68.22 8.566 66.597 8.566 L 65.38 8.566 Z M 65.38 12.261 L 65.38 8.919 L 66.924 8.919 C 68.953 8.919 69.961 9.943 69.961 11.322 C 69.961 12.968 68.887 13.92 67.356 13.92 C 65.89 13.92 65.38 13.493 65.38 12.261 Z M 62.948 21.949 C 63.446 21.949 63.564 22.059 63.564 22.485 L 63.564 24.303 C 63.564 25.401 64.271 26 65.58 26 C 66.797 26 67.595 25.377 67.595 24.341 L 67.595 22.547 C 67.595 22.059 67.712 21.949 68.236 21.949 L 68.236 21.778 L 66.535 21.778 L 66.535 21.949 C 67.137 21.949 67.242 22.047 67.242 22.547 L 67.242 24.291 C 67.242 25.111 66.678 25.609 65.789 25.609 C 64.9 25.609 64.361 25.108 64.361 24.303 L 64.361 22.546 C 64.361 22.058 64.467 21.949 64.99 21.949 L 64.99 21.778 L 62.948 21.778 Z M 58.839 19.85 L 59.228 19.85 L 59.228 0 L 58.835 0 L 58.839 19.85 Z M 57.186 23.767 C 57.186 22.607 57.788 21.9 58.813 21.9 C 59.874 21.9 60.632 22.73 60.632 23.902 C 60.632 25.072 60.03 25.768 59.005 25.768 C 57.945 25.768 57.186 24.938 57.186 23.767 Z M 56.322 23.913 C 56.322 25.121 57.409 25.987 58.927 25.987 C 60.419 25.987 61.493 25.059 61.493 23.755 C 61.493 22.546 60.406 21.681 58.888 21.681 C 57.395 21.681 56.322 22.607 56.322 23.913 Z M 51.741 23.938 L 51.741 21.936 C 51.854 21.921 51.968 21.914 52.081 21.913 C 52.814 21.913 53.219 22.291 53.219 22.966 C 53.219 23.642 52.814 23.967 51.963 23.967 C 51.888 23.969 51.813 23.96 51.741 23.942 M 50.277 25.877 L 52.474 25.877 L 52.474 25.706 C 51.833 25.706 51.741 25.633 51.741 25.059 L 51.741 24.123 C 51.845 24.133 51.95 24.137 52.055 24.136 L 52.316 24.136 C 52.529 24.271 52.715 24.444 52.866 24.647 L 53.272 25.148 C 53.861 25.867 54.317 26.003 55.458 25.978 L 55.458 25.758 C 54.961 25.733 54.49 25.524 53.947 24.879 L 53.566 24.411 C 53.422 24.241 53.264 24.082 53.096 23.935 C 53.777 23.715 54.079 23.386 54.079 22.874 C 54.079 22.171 53.357 21.726 52.18 21.726 C 52.036 21.726 51.683 21.726 51.303 21.739 C 50.792 21.751 50.426 21.776 50.269 21.776 L 50.269 21.947 C 50.832 21.947 50.923 22.032 50.923 22.508 L 50.923 25.131 C 50.923 25.631 50.819 25.704 50.269 25.704 Z M 48.56 8.881 L 48.835 8.881 C 49.163 7.807 49.228 7.733 49.909 7.733 L 51.492 7.733 L 51.492 13.066 C 51.492 13.944 51.387 14.054 50.052 14.054 L 50.052 14.347 L 54.137 14.347 L 54.137 14.054 C 52.827 14.054 52.748 13.937 52.748 12.883 L 52.748 7.73 L 54.162 7.73 C 54.961 7.73 55.117 7.876 55.354 8.878 L 55.641 8.878 L 55.498 7.084 L 55.249 7.084 C 55.17 7.29 55.078 7.328 54.62 7.328 L 49.397 7.328 C 49.208 7.353 49.024 7.255 48.939 7.083 L 48.69 7.083 L 48.561 8.881 Z M 44.057 23.901 C 44.057 25.158 45.026 26 46.505 26 C 47.12 26 47.617 25.889 48.468 25.584 L 48.468 24.755 C 48.468 24.352 48.585 24.206 48.933 24.206 L 48.933 24.035 L 46.841 24.035 L 46.841 24.206 C 47.538 24.206 47.665 24.291 47.665 24.742 L 47.665 25.536 C 47.375 25.69 47.05 25.761 46.723 25.744 C 45.624 25.744 44.917 24.974 44.917 23.828 C 44.917 22.681 45.637 21.9 46.737 21.9 C 47.535 21.9 48.032 22.303 48.19 23.01 L 48.399 23.01 L 48.399 21.778 L 48.19 21.778 C 48.146 21.835 48.077 21.867 48.006 21.863 C 47.757 21.863 47.339 21.681 46.611 21.681 C 45.099 21.681 44.054 22.607 44.054 23.906 M 38.303 7.626 C 39.482 7.626 39.573 7.784 39.573 8.698 L 39.573 11.846 C 39.573 12.822 39.874 13.543 40.555 13.994 C 41.105 14.36 41.865 14.579 42.741 14.579 C 43.617 14.579 44.403 14.345 44.875 14.043 C 45.646 13.53 45.883 12.664 45.883 11.583 L 45.883 8.565 C 45.883 7.795 46.144 7.628 47.125 7.628 L 47.125 7.335 L 44.019 7.335 L 44.019 7.628 C 45.262 7.628 45.366 7.745 45.366 8.932 L 45.366 11.313 C 45.366 12.202 45.302 13.155 44.595 13.605 C 44.097 13.894 43.529 14.037 42.954 14.018 C 42.338 14.018 41.803 13.86 41.436 13.578 C 40.834 13.127 40.808 12.371 40.808 11.651 L 40.808 8.723 C 40.808 7.856 41.04 7.626 42.104 7.626 L 42.104 7.333 L 38.303 7.333 Z M 26.086 14.348 L 29.018 14.348 L 29.018 14.056 C 28.312 14.056 27.958 13.896 27.958 13.567 C 27.958 13.482 27.971 13.225 27.984 13.091 L 28.429 8.259 L 31.323 14.349 L 31.636 14.349 L 34.515 8.259 L 35.001 12.746 C 35.026 12.965 35.026 13.32 35.026 13.489 C 35.026 13.881 34.752 14.052 33.769 14.052 L 33.769 14.344 L 37.373 14.344 L 37.373 14.052 C 36.273 14.052 36.286 13.807 36.181 12.832 L 35.763 9.001 C 35.729 8.696 35.716 8.39 35.724 8.084 C 35.724 7.706 35.933 7.616 36.81 7.616 L 36.81 7.324 L 34.369 7.324 L 31.817 12.68 L 29.29 7.324 L 26.806 7.324 L 26.806 7.616 C 27.683 7.677 27.866 7.725 27.866 8.14 C 27.868 8.226 27.864 8.311 27.854 8.396 L 27.473 12.68 C 27.369 13.875 27.329 14.046 26.086 14.046 Z M 20.916 7.625 C 22.041 7.625 22.212 7.868 22.212 8.857 L 22.212 12.822 C 22.212 13.875 22.068 14.054 20.955 14.054 L 20.955 14.347 L 24.792 14.347 L 24.792 14.054 C 23.639 14.054 23.47 13.835 23.47 12.834 L 23.47 8.844 C 23.47 7.758 23.575 7.625 24.739 7.625 L 24.739 7.333 L 20.916 7.333 L 20.916 7.625 Z M 12.813 14.349 L 19.044 14.349 L 19.096 12.225 L 18.782 12.225 C 18.666 13.104 18.506 13.556 18.298 13.748 C 18.141 13.894 17.932 13.93 17.198 13.93 L 14.306 13.93 L 18.926 7.606 L 18.926 7.326 L 12.892 7.326 L 12.846 8.98 L 13.159 8.98 C 13.356 7.857 13.54 7.699 14.652 7.699 L 17.379 7.699 L 12.811 13.933 Z M 3.874 9.467 L 5.471 5.379 L 7.134 9.467 L 3.875 9.467 Z M 0 14.347 L 4.084 14.347 L 4.084 14.041 L 3.795 14.041 C 2.788 14.041 2.382 13.883 2.382 13.517 C 2.382 13.237 2.591 12.748 2.71 12.431 L 3.677 9.953 L 7.329 9.953 L 8.313 12.394 C 8.47 12.797 8.639 13.298 8.639 13.492 C 8.639 13.919 8.365 14.041 7.317 14.041 L 6.871 14.041 L 6.871 14.347 L 11.637 14.347 L 11.637 14.041 C 10.747 14.041 10.406 13.822 10.092 13.053 L 6.426 4.079 L 4.947 4.079 L 5.17 4.615 L 2.055 12.448 C 1.545 13.742 1.165 14.047 0.079 14.047 L 0.001 14.047 Z M 61.924 14.347 L 67.239 14.347 C 70.039 14.347 71.492 13.077 71.492 11.271 C 71.492 9.953 70.641 9.039 69.018 8.649 L 69.018 8.625 C 69.804 8.429 70.53 7.587 70.53 6.586 C 70.53 4.976 69.129 4.17 66.747 4.17 C 66.157 4.17 65.386 4.183 64.259 4.22 C 63.736 4.231 63.097 4.269 62.086 4.305 L 62.086 4.597 L 62.701 4.597 C 63.71 4.597 63.998 4.916 63.998 6.012 L 63.998 12.724 C 63.998 13.785 63.684 14.041 62.362 14.041 L 61.93 14.041 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:12814844693,withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-z0sk2o\",\"data-framer-name\":\"$22\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"Ja4oFhUH7\",svg:'<svg data-name=\"Livello 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\"><path d=\"M51.735 46.859v-6.587H47.89v6.587Zm0-7.131H47.89V33.14h3.845v6.587Zm4.943.549a4.342 4.342 0 0 1 .822 2.465 4.129 4.129 0 0 1-4.117 4.117h-1.099v-6.587l4.394.005Zm-4.394-.55 3.903.01a4.078 4.078 0 0 0-1.288-.811 3.147 3.147 0 0 0 1.57-2.698 3.11 3.11 0 0 0-3.086-3.087h-1.099v6.587ZM41.026 46.86H37.19v-6.587h3.836v6.587Zm0-7.131H37.19V33.14h3.836v6.587Zm.549 7.131v-6.587l4.394.005a4.341 4.341 0 0 1 .822 2.465 4.128 4.128 0 0 1-4.117 4.117h-1.099Zm0-7.131V33.14h1.099a3.114 3.114 0 0 1 3.091 3.087 3.152 3.152 0 0 1-1.575 2.698 4.078 4.078 0 0 1 1.288.811l-3.903-.01Zm-12.483 0h-4.093l2.304-6.587h1.789v6.587Zm4.637 0L31.42 33.14h-1.779v6.587Zm2.499 7.131h-3.432l-.958-2.742h-2.197v-3.845h4.283l2.304 6.587Zm-13.728 0h3.432l.963-2.742h2.197v-3.845h-4.283L22.5 46.86Z\" style=\"fill-rule:evenodd\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1oqeqld\",\"data-framer-name\":\"$24\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"XBdPI2npH\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\" style=\"enable-background:new 0 0 80 80\" xml:space=\"preserve\"><path d=\"M27 45.8c-3.4 0-7-1.4-7-5.5 0-4 3.6-5.5 7-5.5h6.3v3.5h-6.5c-1.1 0-2 .9-2 2s.9 2 2 2h6.5v3.5H27zm28.7-15.5H60v3.6h-4.3zm0 4.5v3.7H50v-3.7h-4.3v6.3l-5.9-5.7c-.6-.5-1.4-.7-2.1-.6h-3.4v10.9h4.3v-6.2l5.7 5.3c.7.6 1.6.9 2.5.9h3.3v-3.8h5.7v3.8H60V34.8h-4.3zM20.8 49.6V47h.9v2.6h-.9zm4.9 0-1.3-1.7v1.7h-.8V47h.9l1.3 1.7V47h.8v2.6h-.9zm6-1.3c0 .2-.1.4-.2.6-.1.2-.3.3-.4.4-.2.1-.4.2-.6.2-.2.1-.4.1-.7.1h-1.2V47h1.2c.2 0 .5 0 .7.1.2 0 .4.1.6.2.2.1.3.2.4.4.1.2.2.4.2.6zm-.9 0c0-.2-.1-.5-.3-.6-.1-.1-.2-.1-.3-.1h-.8v1.5h.8c.1 0 .2-.1.4-.1.1-.2.2-.4.2-.7zm5.3.8-.3.3c-.1.1-.3.2-.5.2-.4.1-.9.1-1.3 0-.2 0-.3-.1-.5-.2l-.3-.3c-.1-.1-.1-.3-.1-.4V47h.9v1.8c0 .1.1.1.1.2.1.1.1.1.2.1.2.1.4.1.6 0 .1 0 .1-.1.2-.1s.1-.1.1-.2V47h.9v1.6c.1.2.1.4 0 .5zm3.9-1.4c-.1-.1-.2-.1-.3-.2-.1 0-.2-.1-.4-.1h-.4s-.1 0-.1.1l-.1.1v.1l.1.1c.1 0 .1 0 .2.1.1 0 .2 0 .2.1.1 0 .3.1.4.1.1 0 .3.1.4.1.1.1.2.1.3.2.1.1.1.2.1.3 0 .1 0 .3-.1.4l-.3.3c-.1.1-.3.1-.5.2-.2 0-.4.1-.5.1-.3 0-.5 0-.8-.1-.2-.1-.4-.1-.6-.3l.6-.4c.1.1.2.2.4.2.1.1.3.1.5.1h.4l.1-.1V49s0-.1-.1-.1c0 0-.1-.1-.2-.1s-.2-.1-.2-.1c-.1 0-.2 0-.3-.1-.1 0-.2-.1-.4-.1-.1 0-.2-.1-.3-.1-.1-.1-.2-.1-.2-.2-.1-.1-.1-.2-.1-.3 0-.1 0-.3.1-.4l.3-.3c.1-.1.3-.1.5-.1h.5c.2 0 .4 0 .7.1.2 0 .4.1.6.2l-.5.3zm3.8-.1v2.1h-.9v-2.1h-1V47h2.9v.5h-1zm4.3 2-.7-.8H47v.8h-.9V47h2c.2 0 .3.1.5.1.1.1.2.1.3.2.1.1.1.2.1.4s-.1.4-.2.5c-.1.2-.3.3-.5.3l.9 1-1.1.1zm0-1.7c0-.1 0-.1-.1-.2l-.1-.1H47v.7h.6c.1 0 .1 0 .2-.1.1 0 .1-.1.2-.1.1-.1.1-.2.1-.2zm2.6 1.7V47h.9v2.6h-.9zm5 0-.3-.5H54l-.3.5h-.9l1.5-2.6h.8l1.5 2.6h-.9zm-1-1.9-.5.9h.9l-.4-.9zm2.8 1.9V47h.9v2.1h1.5v.6h-2.4z\" style=\"fill:#1d1d1b\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1x6f044\",\"data-framer-name\":\"$20\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"GFLOPbEzk\",svg:'<svg data-name=\"Livello 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\"><path d=\"M21.903 36.057v3.222h.021a1.98 1.98 0 0 1 1.717-.869c1.36 0 2.02.912 2.02 2.29v3.327h-1.905V41.24c0-.636-.095-1.293-.858-1.293-.753 0-.995.657-.995 1.293v2.787H20v-7.97h1.903m10.212 5.576h-4.007A1.074 1.074 0 0 0 29.3 42.84a.95.95 0 0 0 .91-.498h1.831a2.605 2.605 0 0 1-2.73 1.865 2.808 2.808 0 0 1-3.108-2.892 2.758 2.758 0 0 1 2.971-2.905 2.746 2.746 0 0 1 2.94 3.02v.203m-1.768-1.114a1.14 1.14 0 0 0-2.209 0Zm2.324-4.462h1.903v7.97H32.67zm5.516 5.321 1.277-2.788h2.134l-2.804 5.437h-1.215l-2.814-5.437h2.134l1.288 2.788m8.852.255h-4.007a1.074 1.074 0 0 0 1.193 1.207.95.95 0 0 0 .91-.498h1.83a2.605 2.605 0 0 1-2.73 1.865 2.808 2.808 0 0 1-3.107-2.892 2.956 2.956 0 1 1 5.911.116v.202m-1.768-1.114a1.139 1.139 0 0 0-2.207 0Zm4.577 3.508h-1.904v-3.846h-.618V38.59h.618v-1.631h1.904v1.631h1.077v1.591h-1.077v3.846m3.457-7.153a1.067 1.067 0 1 1-1.067-1.08 1.077 1.077 0 0 1 1.067 1.08m-.114 7.153h-1.904V38.59h1.904Zm6.81 0h-1.904v-.604h-.02a1.876 1.876 0 0 1-1.622.784 2.906 2.906 0 0 1-.02-5.797 2.174 2.174 0 0 1 1.662.71v-.53H60v5.437m-4.288-2.712a1.224 1.224 0 0 0 2.448 0 1.224 1.224 0 1 0-2.448 0Z\" style=\"fill:#1d1d1b\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sygtcb\",\"data-framer-name\":\"Toyota financial services\",layoutDependency:layoutDependency,layoutId:\"ucG2jyebH\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:257,intrinsicWidth:163,pixelHeight:514,pixelWidth:326,sizes:\"37px\",src:\"https://framerusercontent.com/images/8aBIxhvMV7HiqHWr5NT9JerZH0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/8aBIxhvMV7HiqHWr5NT9JerZH0.png 326w\"},className:\"framer-9a4ypl\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"OauM7w_ag\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1d4v3e4\",\"data-framer-name\":\"$21\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"uDb4ngdHG\",svg:'<svg data-name=\"Livello 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\"><path style=\"fill-rule:evenodd\" d=\"m21.25 42.727-3.75 4.432h40.933l1.539-4.432H21.25z\"/><path d=\"M28.494 36.846h3.239s1.023-4.005-4.261-4.005c-4.773 0-6.052 3.75-6.052 4.943-.085.085-.51 3.92 4.773 3.92 4.347 0 5.199-3.238 5.199-3.238h-3.41a1.945 1.945 0 0 1-1.618.852A1.391 1.391 0 0 1 25 37.358a2.75 2.75 0 0 1 2.472-1.875 1.052 1.052 0 0 1 1.022 1.363Zm24.972-3.579H62.5l-.597 2.301h-5.625l-.17.767h5.625l-.512 2.046h-5.625l-.17.681h5.54l-.597 2.387H51.25l2.216-8.182zm-19.432 8.182h-3.835l6.221-8.182h3.41l1.619 8.267h-3.75l-.085-.682h-3.069l-.511.597Zm1.62-2.301h1.79l-.171-2.302-1.62 2.302Zm16.107-3.068-3.409-.086v-.34c-.17-.342-.426-.512-1.022-.512-.853 0-1.108.17-1.108.426 0 .17.17.341.681.511s2.131.427 2.983.767c1.023.341 1.45.853 1.364 1.79a2.596 2.596 0 0 1-1.534 2.301 7.878 7.878 0 0 1-3.494.767 9.025 9.025 0 0 1-3.665-.852 3.553 3.553 0 0 1-1.023-2.386h3.58s-.17 1.108 1.363 1.108c1.023 0 1.108-.341 1.193-.426 0-.17 0-.256-.426-.427a23.714 23.714 0 0 1-3.75-1.193 2.317 2.317 0 0 1-.937-1.704c.085-1.279 1.534-2.898 4.687-2.813 3.154 0 3.92 1.108 4.006 1.193a2.445 2.445 0 0 1 .511 1.875Z\" style=\"fill-rule:evenodd;fill:#1d1d1b\"/><path d=\"m28.732 45.483.372.094a1.254 1.254 0 0 1-.42.7 1.16 1.16 0 0 1-.745.24 1.337 1.337 0 0 1-.74-.185 1.155 1.155 0 0 1-.433-.536 1.913 1.913 0 0 1-.149-.754 1.658 1.658 0 0 1 .168-.767 1.151 1.151 0 0 1 .478-.497 1.396 1.396 0 0 1 .682-.17 1.156 1.156 0 0 1 .71.215 1.117 1.117 0 0 1 .401.604l-.366.087a.87.87 0 0 0-.284-.448.757.757 0 0 0-.468-.14.908.908 0 0 0-.543.156.82.82 0 0 0-.306.417 1.68 1.68 0 0 0-.088.54 1.715 1.715 0 0 0 .105.627.78.78 0 0 0 .325.4.912.912 0 0 0 .478.133.801.801 0 0 0 .53-.18.924.924 0 0 0 .293-.536Zm.718-.384a1.528 1.528 0 0 1 .376-1.097 1.278 1.278 0 0 1 .97-.396 1.347 1.347 0 0 1 .703.186 1.217 1.217 0 0 1 .477.52 1.688 1.688 0 0 1 .164.755 1.656 1.656 0 0 1-.173.765 1.178 1.178 0 0 1-.489.511 1.396 1.396 0 0 1-.683.174 1.328 1.328 0 0 1-.71-.192 1.234 1.234 0 0 1-.474-.524 1.588 1.588 0 0 1-.161-.702Zm.383.006a1.127 1.127 0 0 0 .274.801.954.954 0 0 0 1.378-.003 1.194 1.194 0 0 0 .271-.838 1.443 1.443 0 0 0-.116-.6.894.894 0 0 0-.34-.397.92.92 0 0 0-.501-.141.952.952 0 0 0-.68.271 1.213 1.213 0 0 0-.286.907Zm2.783 1.365v-2.814h.382l1.478 2.209v-2.21h.357v2.814h-.382l-1.478-2.21v2.21Zm2.716-.905.35-.03a.776.776 0 0 0 .117.346.634.634 0 0 0 .283.219 1.072 1.072 0 0 0 .432.083 1.036 1.036 0 0 0 .376-.063.522.522 0 0 0 .243-.174.402.402 0 0 0 .08-.24.365.365 0 0 0-.077-.232.569.569 0 0 0-.254-.166 4.897 4.897 0 0 0-.5-.137 2.563 2.563 0 0 1-.544-.176.764.764 0 0 1-.3-.262.641.641 0 0 1-.099-.35.716.716 0 0 1 .121-.398.747.747 0 0 1 .353-.281 1.338 1.338 0 0 1 .516-.096 1.412 1.412 0 0 1 .552.1.795.795 0 0 1 .368.297.852.852 0 0 1 .138.443l-.357.027a.577.577 0 0 0-.195-.403.76.76 0 0 0-.49-.136.788.788 0 0 0-.492.124.371.371 0 0 0-.155.298.32.32 0 0 0 .11.25 1.48 1.48 0 0 0 .56.2 3.703 3.703 0 0 1 .623.18.854.854 0 0 1 .363.287.7.7 0 0 1 .117.4.765.765 0 0 1-.128.423.847.847 0 0 1-.37.309 1.287 1.287 0 0 1-.542.11 1.62 1.62 0 0 1-.64-.111.896.896 0 0 1-.405-.335.949.949 0 0 1-.154-.506Zm3.464.905v-2.482h-.927v-.332h2.23v.332h-.931v2.481Zm1.69 0v-2.814h1.248a1.659 1.659 0 0 1 .572.076.626.626 0 0 1 .312.267.8.8 0 0 1 .117.425.708.708 0 0 1-.193.504.981.981 0 0 1-.6.261.966.966 0 0 1 .225.14 1.936 1.936 0 0 1 .31.374l.489.766h-.469l-.372-.585q-.163-.254-.269-.388a.844.844 0 0 0-.189-.188.546.546 0 0 0-.17-.075 1.102 1.102 0 0 0-.207-.013h-.431v1.25Zm.373-1.572h.8a1.192 1.192 0 0 0 .399-.053.424.424 0 0 0 .219-.17.456.456 0 0 0 .075-.252.419.419 0 0 0-.145-.328.678.678 0 0 0-.458-.128h-.89Zm4.306-1.242h.372v1.625a1.93 1.93 0 0 1-.095.674.823.823 0 0 1-.347.406 1.224 1.224 0 0 1-.657.156 1.348 1.348 0 0 1-.647-.136.777.777 0 0 1-.359-.394 1.881 1.881 0 0 1-.107-.706v-1.625h.372v1.623a1.58 1.58 0 0 0 .068.54.516.516 0 0 0 .234.268.813.813 0 0 0 .406.094.776.776 0 0 0 .585-.186 1.073 1.073 0 0 0 .175-.716Zm3 1.827.372.094a1.254 1.254 0 0 1-.422.7 1.16 1.16 0 0 1-.743.24 1.337 1.337 0 0 1-.74-.185 1.154 1.154 0 0 1-.434-.536 1.913 1.913 0 0 1-.148-.754 1.654 1.654 0 0 1 .168-.767 1.15 1.15 0 0 1 .477-.497 1.395 1.395 0 0 1 .683-.17 1.155 1.155 0 0 1 .71.215 1.117 1.117 0 0 1 .4.604l-.366.087a.869.869 0 0 0-.284-.448.757.757 0 0 0-.468-.14.909.909 0 0 0-.542.156.82.82 0 0 0-.306.417 1.676 1.676 0 0 0-.088.54 1.715 1.715 0 0 0 .104.627.78.78 0 0 0 .325.4.91.91 0 0 0 .478.133.802.802 0 0 0 .53-.18.925.925 0 0 0 .294-.536Zm1.546.987v-2.482h-.927v-.332h2.23v.332h-.93v2.481Zm1.749 0v-2.814h.372v2.813Zm.915-1.371a1.528 1.528 0 0 1 .376-1.097 1.279 1.279 0 0 1 .971-.396 1.348 1.348 0 0 1 .702.186 1.217 1.217 0 0 1 .477.52 1.683 1.683 0 0 1 .164.755 1.658 1.658 0 0 1-.172.765 1.18 1.18 0 0 1-.49.511 1.396 1.396 0 0 1-.683.174 1.33 1.33 0 0 1-.71-.192 1.232 1.232 0 0 1-.474-.524 1.585 1.585 0 0 1-.161-.702Zm.384.006a1.127 1.127 0 0 0 .273.801.954.954 0 0 0 1.378-.003 1.194 1.194 0 0 0 .272-.838 1.44 1.44 0 0 0-.117-.6.891.891 0 0 0-.34-.397.92.92 0 0 0-.5-.141.951.951 0 0 0-.681.271 1.212 1.212 0 0 0-.285.907Zm2.783 1.365v-2.814h.381l1.478 2.209v-2.21h.357v2.814h-.382l-1.478-2.21v2.21Z\" style=\"fill:#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ggo9as\",\"data-framer-name\":\"$17\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"ES1LDDI0r\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\" style=\"enable-background:new 0 0 80 80\" xml:space=\"preserve\"><path d=\"M52.6 38c.1 0 .1-.1.1-.1 0-.1-.1-.1-.1-.1l-.1.1c0 .1 0 .1.1.1m-7.2-3.6c0 .2.1.3.3.3.2 0 .3-.1.3-.3 0-.2-.1-.3-.3-.3-.1-.1-.3.1-.3.3m2.1.7c0 .2.1.3.3.3.2 0 .3-.1.3-.3 0-.2-.1-.3-.3-.3-.1-.1-.3.1-.3.3m-7.8 8.5c0 .2.1.3.3.3.2 0 .3-.1.3-.3 0-.2-.1-.3-.3-.3-.2 0-.3.1-.3.3m1.6 1.4c0 .2.1.3.3.3.2 0 .3-.1.3-.3 0-.2-.1-.3-.3-.3-.1 0-.3.1-.3.3m2.1.6c0 .2.1.3.3.3.2 0 .3-.1.3-.3 0-.2-.1-.3-.3-.3-.2 0-.3.1-.3.3m2.1 0c0 .2.2.3.3.3.2 0 .3-.2.3-.3s-.2-.3-.3-.3c-.2 0-.3.1-.3.3m2-.7c0 .2.2.3.3.3.2 0 .3-.2.3-.3 0-.2-.1-.3-.3-.3-.1 0-.3.2-.3.3m1.6-1.3c0 .2.1.3.3.3.2 0 .3-.1.3-.3 0-.2-.1-.3-.3-.3-.1 0-.3.2-.3.3m0-7.2c0 .2.2.3.3.3.2 0 .3-.2.3-.3 0-.2-.1-.3-.3-.3-.1-.1-.3.1-.3.3m-2.3-.9c0-.2-.2-.4-.4-.4s-.4.2-.4.4.2.4.4.4.4-.2.4-.4m1.4.9c0-.2-.2-.4-.4-.4s-.4.2-.4.4.2.4.4.4.4-.2.4-.4m1.1 1.2c0-.2-.2-.4-.4-.4s-.4.2-.4.4.2.4.4.4.4-.2.4-.4m-3-4.7c0-.1 0-.1-.1-.1s-.1 0-.1.1 0 .1.1.1.1 0 .1-.1m2.8 1c0-.1 0-.1-.1-.1s-.1.1-.1.1c0 .1 0 .1.1.1 0 0 .1 0 .1-.1m2.2 1.6c0-.1 0-.1-.1-.1s-.1 0-.1.1 0 .1.1.1c0 0 .1 0 .1-.1M47.5 34c0-.1-.1-.2-.2-.2s-.2.1-.2.2.1.2.2.2c.1.1.2 0 .2-.2m2.1 1.1c0-.1-.1-.2-.2-.2s-.2.1-.2.2.1.2.2.2.2-.1.2-.2m1.5 1.5c-.1 0-.2.1-.2.2s.1.2.2.2.2-.1.2-.2-.1-.2-.2-.2m-6.4-3.1c-.1 0-.2.1-.2.2s.1.2.2.2.2-.1.2-.2 0-.2-.2-.2m-1 .5c-.2 0-.3.1-.3.3 0 .2.1.3.3.3.2 0 .3-.1.3-.3 0-.1-.1-.3-.3-.3m-2.1.7c-.2 0-.3.1-.3.3 0 .2.1.3.3.3.2 0 .3-.1.3-.3 0-.1-.1-.3-.3-.3m-3 5c-.2 0-.3.1-.3.3 0 .2.1.3.3.3.2 0 .3-.1.3-.3 0-.2-.1-.3-.3-.3m.4-1.9c-.2 0-.3.1-.3.3 0 .2.1.3.3.3.2 0 .3-.1.3-.3 0-.2-.1-.3-.3-.3m1-1.8c-.2 0-.3.1-.3.3 0 .2.1.3.3.3.2 0 .3-.1.3-.3.1-.1-.1-.3-.3-.3m4.7 9.2c.2 0 .4-.2.4-.4s-.2-.4-.4-.4-.4.2-.4.4.2.4.4.4m0-9.5c.2 0 .4-.2.4-.4s-.2-.4-.4-.4-.4.2-.4.4.2.4.4.4m-1.6.2c.2 0 .4-.2.4-.4s-.2-.4-.4-.4-.4.2-.4.4c-.1.2.1.4.4.4m-1.4.9c.2 0 .4-.2.4-.4s-.2-.4-.4-.4-.4.2-.4.4c-.1.2.1.4.4.4M40.6 38c.2 0 .4-.2.4-.4s-.2-.4-.4-.4-.4.2-.4.4.1.4.4.4m-.5 1.6c.2 0 .4-.2.4-.4s-.2-.4-.4-.4-.4.2-.4.4.2.4.4.4m3.2-6.6c.1 0 .1-.1.1-.1 0-.1-.1-.1-.1-.1l-.1.1c0 .1 0 .1.1.1m-2.8 1c.1 0 .1-.1.1-.1 0-.1-.1-.1-.1-.1l-.1.1c0 .1 0 .1.1.1m12.1 8.8c.1 0 .1-.1.1-.1 0-.1-.1-.1-.1-.1-.1 0-.1.1-.1.1s0 .1.1.1m-1.4 1.8c.1 0 .1-.1.1-.1 0-.1-.1-.1-.1-.1-.1 0-.1.1-.1.1 0 .1.1.1.1.1M49 46.2c.1 0 .1-.1.1-.1 0-.1-.1-.1-.1-.1-.1 0-.1.1-.1.1 0 .1 0 .1.1.1m-2.8 1c.1 0 .1-.1.1-.1 0-.1-.1-.1-.1-.1-.1 0-.1.1-.1.1 0 .1.1.1.1.1m-2.9 0c.1 0 .1-.1.1-.1 0-.1-.1-.1-.1-.1-.1 0-.1.1-.1.1 0 .1 0 .1.1.1m-2.8-1c.1 0 .1-.1.1-.1 0-.1-.1-.1-.1-.1l-.1.1c0 .1 0 .1.1.1m-2.2-1.6c.1 0 .1-.1.1-.1 0-.1-.1-.1-.1-.1-.1 0-.1.1-.1.1 0 .1 0 .1.1.1m-1.4-1.8c.1 0 .1-.1.1-.1 0-.1-.1-.1-.1-.1-.1 0-.1.1-.1.1s0 .1.1.1m1.4-7.2c.1 0 .1-.1.1-.1 0-.1-.1-.1-.1-.1l-.1.1s0 .1.1.1m3.9-1.4c.1 0 .2-.1.2-.2s-.1-.2-.2-.2c-.2 0-.2.1-.2.2s.1.2.2.2M40 35.3c.1 0 .2-.1.2-.2s-.1-.2-.2-.2-.2.1-.2.2.1.2.2.2m-1.8 1.5c0 .1.1.2.2.2s.2-.1.2-.2-.1-.2-.2-.2c-.2 0-.2.1-.2.2m13.7 4.1c-.1 0-.2.1-.2.2s.1.2.2.2.2-.1.2-.2-.1-.2-.2-.2m-.8 2c-.1 0-.2.1-.2.2s.1.2.2.2.2-.1.2-.2-.1-.2-.2-.2m-1.6 1.8c-.1 0-.2.1-.2.2s.1.2.2.2.2-.1.2-.2-.1-.2-.2-.2m-2.2 1.1c-.1 0-.2.1-.2.2s.1.2.2.2.2-.1.2-.2c0-.2-.1-.3-.2-.2m-2.6.3c-.1 0-.2.1-.2.2s.1.2.2.2.2-.1.2-.2-.1-.2-.2-.2m-2.5-.3c-.1 0-.2.1-.2.2s.1.2.2.2.2-.1.2-.2c.1-.1 0-.2-.2-.2M40 44.7c-.1 0-.2.1-.2.2s.1.2.2.2.2-.1.2-.2-.1-.2-.2-.2M38.4 43c-.1 0-.2.1-.2.2s.1.2.2.2.2-.1.2-.2c0-.2-.1-.2-.2-.2m-.9-4.1c-.1 0-.2.1-.2.2s.1.2.2.2.2-.1.2-.2c-.1-.1-.1-.2-.2-.2m6 5.6c0-.2-.2-.4-.4-.4s-.4.2-.4.4.2.4.4.4.4-.2.4-.4m2.9-.4c-.2 0-.4.2-.4.4s.2.4.4.4.4-.2.4-.4-.2-.4-.4-.4m1.4-.8c-.2 0-.4.2-.4.4s.2.4.4.4.4-.2.4-.4c0-.3-.2-.4-.4-.4 0-.1 0-.1 0 0m1.5-.9c0-.2-.2-.4-.4-.4s-.4.2-.4.4.2.4.4.4.4-.2.4-.4m-7.6.8c-.2 0-.4.2-.4.4s.2.4.4.4.4-.2.4-.4-.2-.4-.4-.4M40.6 42c-.2 0-.4.2-.4.4s.2.4.4.4.4-.2.4-.4-.2-.4-.4-.4m16.7-3.6h2.6v3.4h.9v-3.4h2.4l.2-.6h-5.8l-.3.6zm-20.9-.6h-.9v4h4.1l.2-.6h-3.5v-3.4zm8.4 0 2.2 4h1l-2.2-4h-1zm-3.3 4h1l2.2-4h-1l-2.2 4zm13-1-3.8-3h-.9v4h.9v-3l3.8 3h.9v-4h-.9v3zm18.4-1.3h-2.8c-.3 0-.5-.2-.5-.5v-.1c0-.3.2-.5.5-.5h3.8l.2-.6h-4.2c-.8 0-1.2.5-1.2 1v.3c0 .5.4 1.1 1.2 1.1h2.8c.3 0 .5.2.5.5v.1c0 .3-.2.5-.5.5h-3.8l-.2.6h4.2c.8 0 1.2-.5 1.2-1v-.3c0-.6-.4-1.1-1.2-1.1m-62.7 0H7.4c-.3 0-.5-.2-.5-.5v-.1c0-.3.2-.5.5-.5h3.8l.2-.6H7.1c-.8 0-1.2.5-1.2 1v.3c0 .5.4 1.1 1.2 1.1h2.8c.3 0 .5.2.5.5v.1c0 .3-.2.5-.5.5H6.1l-.2.6h4.2c.8 0 1.2-.5 1.2-1v-.3c0-.6-.4-1.1-1.1-1.1m55.1 2.3h.9v-4h-.9v4zm-52-3.4h2.6v3.4h.9v-3.4h2.4l.2-.6h-5.8l-.3.6zm12.4 0 .2-.6h-4.6v4h4.4l.2-.6h-3.7v-1.1h2.6l.2-.6h-2.8v-1.1h3.5zm3.9 2.8h3.5l-.2.6h-4.1v-4h.9v3.4z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ly23pe\",\"data-framer-name\":\"$23\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"VuzJ3rbd0\",svg:'<svg data-name=\"Livello 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\"><path d=\"M48.602 34.379v5.323l-.072-.323-.076-.325-.12-.299-.124-.268-.127-.25-.148-.248-.174-.226-.2-.199-.198-.198-.223-.148-.25-.175-.27-.124-.297-.1-.299-.074-.35-.049-.37-.027h-.374l-.35.051-.322.049-.298.1-.299.099-.269.123-.247.15-.223.176-.234.164-.199.199-.172.223-.175.223-.123.25-.15.269-.1.268-.075.299-.081-.387-.148-.398-.15-.374-.21-.304-.223-.298-.248-.269-.298-.199-.336-.217-.199-.049-.199-.075-.223-.048-.247-.027h-.476l-.223.027-.226.048-.172.051-.185.073-.175.1-.148.099-.25.225-.223.248-.01.043-.052.024v-.764h-1.057l-1.021.025v2.362l-.1-.422-.147-.373-.15-.347-.2-.325-.247-.299-.269-.247-.304-.199-.346-.175-.2-.048-.21-.075-.222-.024-.226-.027h-.435l-.191.027-.223.048-.175.051-.175.073-.148.1-.15.099-.27.225-.198.248-.024.05-.024.025h-.038v-.772h-2.07v2.388l-.019 3.997-.05-.172-.05-.2-.05-.424v-3.699l-.049-.322-.05-.29-.1-.27-.124-.247-.175-.199-.172-.175-.236-.14-.223-.123-.347-.124-.387-.067-.425-.08-.446-.027h-.45l-.445.027-.422.048-.398.075-.35.124-.322.148-.299.201-.25.223-.1.124-.099.15-.099.148-.073.183-.05.175-.05.172-.026.199-.024.226h2.013l.076-.25.099-.2.075-.074.076-.073.099-.075.1-.051.247-.073.269-.027.268.027.27.048.225.1.1.075.072.075.051.1.049.1.026.123v.148l-.026.126-.049.124-.075.075-.1.073-.1.05-.123.025-.25.051-.537.1-.538.072-.422.051-.374.092-.37.1-.35.123-.298.174-.148.1-.127.1-.1.123-.099.124-.096.15-.076.148H19.68v.027l-.075.269-.075.226-.124.223-.175.148-.223.126-.247.1-.15.024h-.305l-.147-.025-.127-.05-.123-.05-.2-.125-.174-.172-.116-.197-.123-.25-.076-.247-.048-.269v-.726l.048-.373.092-.31.05-.174.073-.124.1-.126.1-.124.099-.1.126-.074.148-.049.175-.051.175-.048h.346l.124.048.15.027.1.073.199.126.1.072.075.1.048.1.051.126.048.148.025.15h2.096l-.056-.368-.075-.299-.1-.298-.123-.247-.183-.231-.175-.224-.199-.174-.199-.172-.234-.14-.25-.148-.268-.1-.299-.099-.325-.075-.323-.051-.373-.024-.371.024-.35.027-.33.08-.299.076-.269.123-.247.124-.25.15-.223.175-.199.199-.175.199-.172.199-.15.247-.124.25-.126.269-.102.296-.076.322-.05.328L15 40.1l.024.347.027.36.048.323.076.298.123.299.124.25.15.247.148.223.2.2.198.198.2.175.25.15.247.124.25.124.298.078.322.075.347.048.35.027.346-.027.35-.024.323-.075.298-.073.269-.1.223-.126.223-.123.199-.124.199-.175.175-.147.147-.2.15-.198.125-.2.05-.126.076-.123.048.373.049.175.075.148.051.15.1.148.099.124.1.126.247.2.269.147.322.124.374.075.398.051.422-.027.398-.048.349-.075.298-.124.27-.15.25-.148.222-.2.025-.024h.026l.049.299.075.298h2.089v2.2h2.15v-1.444l.027-1.468.024.027.025.048.223.223.25.226.298.172.323.126.223.049.199.024.226.027.223-.027h.223l.223-.048.199-.051.175-.049.349-.15.317-.2.248-.222.223-.27.199-.298.174-.322.124-.347.124-.374-.016 4.347h2.15v-1.443l.024-1.468.051.027.024.048.224.25.25.2.147.099.148.072.175.075.175.051.223.049.226.024.223.027.223-.027.247-.024.2-.024.225-.051.172-.073.35-.175.298-.199.247-.25.226-.298.199-.323.148-.346.145-.374.1-.398.075.269.1.269.123.25.126.223.124.223.175.199.172.199.198.175.2.15.225.124.247.123.25.1.299.1.269.05.325.049.323.024.346.027.326-.027.322-.024.299-.075.298-.073.269-.1.25-.099.223-.126.223-.148.199-.175.175-.175.174-.199.148-.223.127-.223.099-.25.073-.269H46.48l-.1.2-.147.147-.175.15-.199.1-.247.073-.25.05h-.298l-.27-.05-.222-.1-.2-.1-.174-.147-.167-.172-.1-.175-.099-.247-.05-.25-.025-.269 4.823.024-.025 2.761h2.151v-4.57l.046-4.508-2.15-.024Zm-22.688 6.492-.024.223-.049.223-.05.223-.076.175-.1.175-.123.148-.148.1-.175.074-.223.076-.226.024h-.223l-.223-.024-.199-.076-.174-.123-.076-.076-.048-.075-.075-.199v-.322l.024-.1.1-.175.126-.147.147-.1.175-.075.2-.075.198-.049.422-.1.422-.074.226-.076.172-.072Zm6.938-.806v.37l-.075.372-.075.298-.124.269-.075.123-.1.124-.1.1-.099.099-.123.075-.148.049-.15.027-.149.024h-.199l-.174-.024-.15-.027-.124-.062-.127-.067-.123-.1-.097-.102-.075-.124-.076-.123-.075-.127-.091-.32-.049-.346v-.648l.024-.269.051-.247.049-.223.1-.2.123-.174.126-.175.172-.123.127-.076.148-.048.15-.051.172-.024h.175l.175.024.147.05.15.073.125.076.099.1.1.099.075.123.123.25.1.299.075.322Zm6.76.123-.023.269-.049.247-.05.25-.076.223-.1.2-.171.222-.1.1-.1.1-.123.075-.15.048-.148.027-.175.024h-.175l-.175-.024-.148-.035-.15-.048-.118-.076-.1-.1-.1-.099-.07-.099-.083-.148-.05-.124-.1-.298-.035-.35-.027-.373v-.374l.027-.347.11-.284.124-.27.124-.174.15-.148.175-.126.196-.073.175-.05.175-.025.25.024.247.051.199.1.175.123.123.175.124.199.072.194.076.223.048.247.024.269Zm4.151-.71.076-.268.075-.223.124-.226.123-.2.175-.171.199-.126.247-.073.27-.051.147-.024.15.024.148.024.127.051.123.075.124.049.175.175.148.198.126.224.072.25.052.298Zm7.283-5.123h2.126l-.024 9.14h-2.126Zm2.42 0h2.125v1.613h-2.15v-1.613Zm11.534 0v1.613l-2.15-.024v-1.59Zm-2.42 4.908v.033l-.02.508v3.691h-2.2v-4.06l-.016-.23v-.114l-.027-.147v-.04l-.037-.108v-.03l-.062-.118-.076-.1-.102-.1-.126-.072-.15-.048-.151-.051h-.538l-.177.051-.127.048-.067.04-.059.033-.126.1-.065.085v.014l-.035.032-.064.065-.027.061-.024.062-.062.145-.065.151-.027.148-.024.172-.024.344.024.395v.046l-.024 3.226H55.86v-.27l.024-6.548h2.127l.016.562v.35l.027-.025.024-.024.019-.035v-.016l.153-.196.132-.129.045-.043.049-.035.153-.113.188-.115h.014l.252-.124.256-.102.048-.02h.03l.298-.066.325-.04h.318l.268.024.253.048.229.051.328.124.268.172.186.142.067.054.04.054.137.193.178.269.102.32.075.37.051.37Zm-9.09-2.489h2.101v3.385l-.024 3.336h-2.126l.024-6.697Zm9.384 0H65v6.72h-2.15Z\" style=\"fill:#221f20\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qae5o9\",\"data-framer-name\":\"$16\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"CkePpf6Wu\",svg:'<svg data-name=\"Livello 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\"><path d=\"M37.551 32.25h4.869a.846.846 0 0 0 .179.018h1.14c.398-.006.795.015 1.193.008.328-.007.655.013.983.009.432-.005.865.015 1.298.008.302.02.604-.001.906.015 1.115.01 2.23.031 3.345.05 2.73.055 5.462.113 8.19.265a17.673 17.673 0 0 1 2.06.204 6.07 6.07 0 0 1 1.261.355 1.778 1.778 0 0 1 .533.32 2.71 2.71 0 0 1 .498.714 7.122 7.122 0 0 1 .483 1.33 17.24 17.24 0 0 1 .502 3.805 20.64 20.64 0 0 1-.262 4.015c-5.236-.527-10.494-.826-15.753-.99q-4.25-.126-8.502-.132-7.65-.015-15.293.375a208.42 208.42 0 0 0-9.911.747l.005.03A19.766 19.766 0 0 1 15 40.104a19.438 19.438 0 0 1 .368-3.968 8.588 8.588 0 0 1 .574-1.83 2.48 2.48 0 0 1 .624-.875 2.625 2.625 0 0 1 .598-.304 7.802 7.802 0 0 1 2.08-.428c1.415-.113 2.833-.163 4.251-.215 2.58-.085 5.16-.136 7.74-.17.263-.014.527.005.79-.013.457.005.914-.015 1.372-.009.405-.021.812.004 1.217-.017.415-.004.83.01 1.244-.01.51.002 1.02 0 1.531.002a.701.701 0 0 0 .162-.018Zm-15.816 2.44a3.747 3.747 0 0 0-1.09.282.416.416 0 0 0-.208.156.134.134 0 0 0 .045.154l1.508 1.456a.13.13 0 0 0 .131.046c.055-.03.058-.099.057-.154-.01-.591-.004-1.184-.049-1.774a.177.177 0 0 0-.091-.16.659.659 0 0 0-.303-.006Zm.993.01a.181.181 0 0 0-.085.166c-.044.596-.04 1.195-.048 1.793-.009.07.044.153.124.125a1.435 1.435 0 0 0 .217-.195q.674-.648 1.346-1.299a.14.14 0 0 0 .055-.16.424.424 0 0 0-.216-.162 3.833 3.833 0 0 0-1.195-.29.349.349 0 0 0-.198.021Zm-2.7.772a.488.488 0 0 0-.193.19 2.37 2.37 0 0 0-.31.725.665.665 0 0 0-.007.36.612.612 0 0 0 .175.213l2.316 2.218a.09.09 0 0 0 .16-.034c.013-.198.001-.397-.004-.596a2.803 2.803 0 0 0-.245-1.04 3.329 3.329 0 0 0-.691-.996c-.334-.33-.674-.655-1.01-.983a.176.176 0 0 0-.191-.057Zm4.594.005a.846.846 0 0 0-.15.132l-.685.665a4.662 4.662 0 0 0-.649.726 3.03 3.03 0 0 0-.468 1.059 4.145 4.145 0 0 0-.072.93.69.69 0 0 0 .011.178.092.092 0 0 0 .148.018q1.193-1.14 2.384-2.283a.363.363 0 0 0 .134-.244 1.312 1.312 0 0 0-.092-.493 2.099 2.099 0 0 0-.315-.596.208.208 0 0 0-.246-.092Zm2.41.958c-.049 0-.05.056-.049.091v3.318c.001.033-.003.094.046.093.333.005.667.002 1 .002a.055.055 0 0 0 .06-.068c.003-.564 0-1.128.002-1.693.221.374.44.75.66 1.124.128.21.24.43.379.633.29.01.58.002.871.004a.056.056 0 0 0 .07-.068v-3.346c0-.034.004-.09-.044-.09-.328-.007-.657-.001-.986-.002a.06.06 0 0 0-.074.065c-.005.565.003 1.13-.004 1.694q-.505-.858-1.008-1.717c-.021-.056-.086-.04-.131-.043-.264.003-.529-.004-.792.003Zm3.711.235a1.652 1.652 0 0 0-.294.852 6.286 6.286 0 0 0-.004 1.26 1.723 1.723 0 0 0 .288.877.732.732 0 0 0 .592.266c.561.002 1.123 0 1.685 0 .039.003.096-.005.092-.057.001-.18.003-.36-.001-.54.001-.048-.057-.05-.091-.05-.39 0-.778.002-1.167 0-.1.007-.163-.087-.195-.168a2.147 2.147 0 0 1-.104-.65h1.31c.034 0 .093.002.094-.045.008-.171.002-.343.004-.515 0-.03-.002-.09-.047-.083-.454-.008-.908 0-1.362-.004a2.164 2.164 0 0 1 .106-.654c.032-.08.094-.17.191-.165.4-.003.8.002 1.199-.002.036.005.063-.043.05-.075-.021-.138-.049-.276-.072-.414-.008-.031-.012-.09-.057-.084-.546-.006-1.091 0-1.637-.002a.735.735 0 0 0-.58.253Zm2.582-.145.592 3.322c.003.042.026.087.075.078.355.003.71 0 1.064.001.043-.002.114.01.117-.053.132-.693.244-1.39.383-2.083.126.694.249 1.388.377 2.08.001.059.065.056.107.056.363-.002.727.003 1.09-.003.046.005.054-.05.06-.083l.558-3.129a1.874 1.874 0 0 0 .04-.26c-.02-.045-.076-.031-.114-.035-.286.002-.571-.001-.856.002-.038-.008-.06.027-.063.059-.116.675-.217 1.353-.34 2.027l-.36-2.006c-.007-.035-.015-.089-.065-.08-.302 0-.605-.007-.906.003-.04.042-.035.107-.048.16-.118.647-.226 1.295-.353 1.94a2.429 2.429 0 0 0-.024-.184c-.104-.62-.203-1.24-.308-1.86a.06.06 0 0 0-.073-.06c-.303 0-.607-.003-.91.002-.058-.002-.052.067-.043.106Zm5.8-.025v3.345c-.004.033.01.082.053.078.31.007.621 0 .932.003.045 0 .123.008.12-.058.003-.458 0-.916.001-1.374h.9c0 .458-.004.917.001 1.374-.003.052.052.06.092.058h.934c.033.003.083-.012.076-.055q.003-1.7 0-3.399c.007-.044-.041-.061-.077-.055h-.959c-.05-.009-.073.04-.068.082v1.309h-.899c0-.444.002-.888-.001-1.332.007-.054-.055-.064-.095-.06-.32.003-.64-.003-.96.003-.043-.005-.053.05-.05.081Zm4.16-.06a.728.728 0 0 0-.494.409 2.639 2.639 0 0 0-.205 1.023 5.196 5.196 0 0 0 .077 1.245 1.146 1.146 0 0 0 .334.644.79.79 0 0 0 .533.165h1.037a3.107 3.107 0 0 0 .55-.023.713.713 0 0 0 .47-.359 2.23 2.23 0 0 0 .224-.915 6.026 6.026 0 0 0-.034-1.223 1.472 1.472 0 0 0-.294-.755.736.736 0 0 0-.553-.234h-1.4a1.059 1.059 0 0 0-.246.023Zm2.887.06v3.345a.067.067 0 0 0 .082.08h1.839c.038.002.105.003.102-.052 0-.19.008-.38-.004-.57l-.029-.02c-.294-.01-.589 0-.883-.004v-2.78c.006-.042-.018-.09-.067-.082-.329 0-.658-.003-.988.002-.045-.006-.056.048-.052.081Zm2.338 0v3.344a.065.065 0 0 0 .076.08c.561.003 1.123 0 1.684.002.04-.002.103.006.11-.048.048-.184.102-.368.142-.554l-.03-.039c-.29-.015-.583-.002-.875-.006 0-.935.003-1.87-.001-2.805.002-.068-.077-.057-.123-.058-.311.003-.623-.004-.934.003-.043-.004-.05.05-.049.08Zm3.013-.025-.87 3.312a.23.23 0 0 0-.015.105c.022.048.083.028.125.034.293-.003.587.004.881-.003.046.005.049-.051.06-.082.05-.212.097-.425.15-.637.314.003.629-.001.943.002.052.223.102.446.157.667.004.06.07.051.113.053h.807a.277.277 0 0 0 .122-.015c.035-.033.006-.082 0-.12l-.73-2.757c-.06-.202-.097-.411-.17-.609a.863.863 0 0 0-.182-.009c-.44.002-.881-.001-1.322.001-.04-.006-.063.024-.068.058Zm2.692.025v3.346a.063.063 0 0 0 .072.079c.311.002.622 0 .933 0 .038.002.105 0 .103-.054.005-.565-.006-1.131.002-1.697.34.563.666 1.134 1.001 1.7a.078.078 0 0 0 .087.051c.285-.001.57.006.854-.004l.032-.025c.01-1.123 0-2.247.005-3.37.001-.042.003-.115-.06-.108-.337 0-.675-.006-1.012.002l-.03.03c-.01.576-.001 1.153-.005 1.73-.34-.572-.673-1.148-1.01-1.72-.025-.06-.097-.04-.146-.044-.26.004-.52-.004-.779.004-.043-.005-.049.05-.047.08Zm3.6-.075c-.03.026-.022.068-.024.102v3.291c.002.034-.005.075.026.1a.857.857 0 0 0 .177.008h1.426a2.558 2.558 0 0 0 .662-.045.98.98 0 0 0 .516-.336 1.615 1.615 0 0 0 .298-.711 3.924 3.924 0 0 0 .05-.91 2.554 2.554 0 0 0-.17-.83 1.148 1.148 0 0 0-.397-.519.946.946 0 0 0-.543-.159h-1.557c-.155.006-.311-.01-.465.01Zm-38.333.885c-.044.012-.054.06-.057.1a6.996 6.996 0 0 0 .035 1.437 2.2 2.2 0 0 0 .604 1.32 2.694 2.694 0 0 0 1.571.698 1.216 1.216 0 0 0 .436.019.17.17 0 0 0 .101-.212 2.873 2.873 0 0 0-.626-1.366 7.748 7.748 0 0 0-.867-.919c-.356-.344-.716-.685-1.073-1.027-.033-.032-.075-.072-.124-.05Zm5.737.007a1.271 1.271 0 0 0-.136.123c-.442.422-.884.843-1.321 1.27a4.774 4.774 0 0 0-.78.953 2.274 2.274 0 0 0-.384 1.09c.004.125.151.158.252.145a3.521 3.521 0 0 0 1.28-.321 2.047 2.047 0 0 0 .955-.937 2.975 2.975 0 0 0 .263-1.173 5.843 5.843 0 0 0-.004-1.083.082.082 0 0 0-.125-.067Zm18.713-.307a.646.646 0 0 1 .222-.017 1.761 1.761 0 0 1 .31.011.383.383 0 0 1 .165.262 3.983 3.983 0 0 1 .078.893 3.451 3.451 0 0 1-.094.9c-.032.094-.086.217-.201.219-.138.002-.276.002-.413 0-.116 0-.172-.12-.204-.214a2.955 2.955 0 0 1-.092-.8 4.214 4.214 0 0 1 .072-.987.416.416 0 0 1 .157-.267Zm14.969.017c.181.002.363-.003.544.001a.345.345 0 0 1 .26.223 1.881 1.881 0 0 1 .128.754 2.4 2.4 0 0 1-.13.85.699.699 0 0 1-.364.408 1.077 1.077 0 0 1-.44.05c.001-.762-.003-1.524.002-2.286Zm-6.887 1.492c.103-.441.202-.885.313-1.325.101.442.206.883.309 1.324l-.622.001Z\" style=\"fill:#fff\"/><path d=\"M25.181 42.619q7.64-.4 15.293-.375 4.252.002 8.502.133c5.26.163 10.517.462 15.753.989a9.583 9.583 0 0 1-.657 2.3 2.135 2.135 0 0 1-.8 1.011 5.116 5.116 0 0 1-1.415.476 15.497 15.497 0 0 1-2.125.224c-2.047.118-4.096.174-6.145.226q-2.695.062-5.39.095c-.346-.002-.692.017-1.038.008-.31.017-.622.007-.932.01-.354.016-.709.003-1.063.008-.362.02-.724.004-1.087.008-.268-.007-.536.018-.805.01-.752.002-1.503-.01-2.255.008h-2.022c-.855-.019-1.71-.005-2.566-.008-.474-.022-.95-.002-1.425-.01-.181-.014-.363-.008-.545-.009-.449.005-.897-.015-1.346-.007-.276-.017-.553-.006-.83-.01-.268-.02-.538 0-.807-.013-1.615-.019-3.23-.05-4.845-.084-2.221-.057-4.443-.112-6.662-.25a13.405 13.405 0 0 1-1.867-.215 4.923 4.923 0 0 1-1.366-.46 1.529 1.529 0 0 1-.492-.467 4.13 4.13 0 0 1-.452-.87 10.34 10.34 0 0 1-.517-1.952l-.005-.03c3.297-.332 6.602-.571 9.911-.746Zm4.777 1.299a1.296 1.296 0 0 0-.52.676 1.348 1.348 0 0 0 .172 1.194 1.333 1.333 0 0 0 .935.533 2.238 2.238 0 0 0 1.186-.204c-.003-.363-.001-.725 0-1.088a56.798 56.798 0 0 0-.864 0l.001.325h.49c.002.18 0 .36.002.54a1.307 1.307 0 0 1-1.282-.138 1.007 1.007 0 0 1-.084-1.408.991.991 0 0 1 .707-.328 1.959 1.959 0 0 1 .98.252c-.005-.123-.001-.246-.005-.368a3.393 3.393 0 0 0-.538-.182 1.545 1.545 0 0 0-1.18.196Zm6.562.033a1.306 1.306 0 0 0-.536.927 1.282 1.282 0 0 0 .216.875 1.311 1.311 0 0 0 .901.56 1.913 1.913 0 0 0 1.205-.213c-.003-.13-.001-.26-.002-.39a1.72 1.72 0 0 1-.89.288 1.09 1.09 0 0 1-.758-.263 1.003 1.003 0 0 1-.014-1.427 1.014 1.014 0 0 1 .669-.286 1.728 1.728 0 0 1 .967.263c0-.131.003-.261-.002-.392a3.893 3.893 0 0 0-.527-.169 1.55 1.55 0 0 0-1.23.227Zm-8.764-.242c-.361.865-.737 1.725-1.101 2.589h.37c.11-.254.215-.509.326-.762q.551.003 1.103 0c.105.226.207.454.309.682.015.025.02.061.049.077.12.007.239 0 .358.003-.382-.863-.77-1.725-1.148-2.59a3.66 3.66 0 0 0-.266.001Zm4.71.005c-.004.861 0 1.723-.002 2.584h.371v-1.125a.667.667 0 0 1 .411.076 1.403 1.403 0 0 1 .3.32c.168.238.316.488.478.729h.432c-.094-.13-.19-.258-.276-.392a2.78 2.78 0 0 0-.648-.834.68.68 0 0 0 .305-1.049.767.767 0 0 0-.517-.288 8.392 8.392 0 0 0-.854-.021Zm2.477.004c.004.86 0 1.72.002 2.58l.36-.001v-2.582c-.12 0-.241-.002-.362.003Zm3.96-.003v1.418a1.79 1.79 0 0 0 .033.496.888.888 0 0 0 .437.558 1.387 1.387 0 0 0 .914.119.978.978 0 0 0 .648-.381 1.172 1.172 0 0 0 .186-.69v-1.52c-.121.002-.242-.004-.362.002l-.01.065c.002.502 0 1.003.002 1.504a.71.71 0 0 1-.163.506.87.87 0 0 1-.607.206.75.75 0 0 1-.625-.294.762.762 0 0 1-.094-.418c0-.523-.001-1.046.001-1.569-.12-.004-.24-.002-.36-.002Zm2.92-.001c-.004.861-.001 1.723-.002 2.584h1.538v-.327c-.392 0-.783-.003-1.174.001-.004-.753.002-1.505-.003-2.258q-.18.002-.36 0Zm1.419 0c-.004.11-.003.22-.002.33h.888v2.254h.371c0-.752.002-1.503-.001-2.255.297 0 .593.002.89-.001-.002-.11-.001-.218-.001-.327-.715-.001-1.43.001-2.145-.001Zm2.64.004c.003.549 0 1.097 0 1.646a.964.964 0 0 0 .257.658 1.094 1.094 0 0 0 .687.306 1.497 1.497 0 0 0 .778-.132.882.882 0 0 0 .444-.54 2.535 2.535 0 0 0 .053-.731c0-.403-.001-.805.001-1.208-.123-.004-.247-.001-.37-.003-.004.455 0 .91-.002 1.366a1.323 1.323 0 0 1-.067.579.621.621 0 0 1-.439.311.9.9 0 0 1-.744-.123.503.503 0 0 1-.209-.303 2.657 2.657 0 0 1-.029-.517v-1.312c-.12 0-.24-.002-.36.003Zm2.927 0c.003.86 0 1.72.001 2.58h.372v-1.125a.882.882 0 0 1 .337.035 1.059 1.059 0 0 1 .383.373c.164.234.31.48.47.717h.429c-.135-.191-.275-.379-.393-.581a2.098 2.098 0 0 0-.529-.647.747.747 0 0 0 .259-.17.704.704 0 0 0-.055-.984 1.015 1.015 0 0 0-.669-.201c-.202.001-.404-.003-.605.003Zm2.483-.003-.001 2.582c.498.003.996 0 1.493.001v-.328h-1.132v-.804h1.063l.001-.335q-.53-.005-1.061 0c-.008-.263 0-.525-.005-.788h1.1v-.327c-.486-.003-.972 0-1.458-.001Zm-18.457.32a1.107 1.107 0 0 1 .616.087.415.415 0 0 1-.052.66 1.23 1.23 0 0 1-.565.064c.002-.27 0-.541.001-.812Zm16.347 0a1.39 1.39 0 0 1 .559.054.412.412 0 0 1 .077.644.964.964 0 0 1-.636.114v-.813Zm-21.371.399a1.02 1.02 0 0 1 .079-.166c.135.316.278.628.417.941-.271 0-.544.002-.816 0 .106-.259.215-.516.32-.775Zm-2.592-7.117a.082.082 0 0 1 .125.067 5.843 5.843 0 0 1 .004 1.083 2.975 2.975 0 0 1-.263 1.173 2.047 2.047 0 0 1-.955.937 3.521 3.521 0 0 1-1.28.321c-.1.013-.248-.02-.252-.144a2.274 2.274 0 0 1 .384-1.091 4.774 4.774 0 0 1 .78-.953c.437-.427.88-.848 1.321-1.27a1.274 1.274 0 0 1 .136-.123Zm-5.737-.007c.05-.022.091.018.124.05.357.342.717.683 1.073 1.027a7.748 7.748 0 0 1 .867.919 2.873 2.873 0 0 1 .626 1.366.17.17 0 0 1-.101.212 1.216 1.216 0 0 1-.436-.019 2.693 2.693 0 0 1-1.571-.698 2.2 2.2 0 0 1-.604-1.32 6.996 6.996 0 0 1-.035-1.438c.003-.038.013-.087.057-.099Zm39.419-.283c-.005.762 0 1.524-.002 2.286a1.076 1.076 0 0 0 .44-.05.7.7 0 0 0 .365-.407 2.4 2.4 0 0 0 .13-.851 1.881 1.881 0 0 0-.128-.754.345.345 0 0 0-.26-.223c-.182-.004-.364.001-.545-.001Zm-1.087-.602c.154-.02.31-.003.465-.008h1.557a.946.946 0 0 1 .543.158 1.147 1.147 0 0 1 .397.518 2.553 2.553 0 0 1 .17.83 3.924 3.924 0 0 1-.05.91 1.615 1.615 0 0 1-.298.712.98.98 0 0 1-.516.336 2.558 2.558 0 0 1-.662.045h-1.426a.857.857 0 0 1-.177-.008c-.03-.025-.024-.066-.026-.1v-3.291c.002-.034-.005-.076.023-.102Zm-3.6.075c0-.03.005-.085.048-.08.26-.008.52 0 .78-.004.048.004.12-.016.144.043.338.573.671 1.149 1.011 1.72.004-.576-.005-1.153.004-1.73l.031-.029c.337-.008.675-.002 1.012-.002.063-.007.061.066.06.109-.005 1.122.004 2.246-.005 3.369l-.032.025c-.284.01-.57.003-.854.004a.078.078 0 0 1-.087-.051c-.335-.566-.66-1.137-1.001-1.7-.008.566.003 1.132-.002 1.697.002.054-.065.056-.103.055-.31-.001-.622.001-.933-.001a.063.063 0 0 1-.072-.079V36.5Zm-2.2 2.02c.207-.003.414 0 .622-.001-.103-.442-.208-.883-.31-1.325-.11.44-.21.884-.312 1.326Zm-.49-2.045c.005-.034.029-.064.068-.058.44-.002.881 0 1.322 0a.863.863 0 0 1 .182.008c.072.198.11.407.17.609l.73 2.756c.006.039.035.088 0 .121a.277.277 0 0 1-.122.015h-.807c-.043-.002-.11.007-.113-.053-.056-.221-.105-.444-.157-.667-.314-.003-.629 0-.943-.002-.053.212-.1.425-.15.637-.011.03-.014.087-.06.082-.294.007-.588 0-.881.003-.043-.006-.103.014-.125-.034a.23.23 0 0 1 .014-.105q.438-1.655.871-3.312Zm-3.014.024c-.002-.03.006-.084.05-.08.31-.007.622 0 .933-.003.046.001.126-.01.123.058.004.935 0 1.87.001 2.805.292.004.585-.009.876.006l.029.04c-.04.185-.094.369-.143.553-.006.054-.07.046-.109.048-.561-.001-1.123.001-1.684-.001a.065.065 0 0 1-.076-.08V36.5Zm-2.338 0c-.004-.032.007-.086.052-.08.33-.005.66-.002.988-.002.049-.009.073.04.067.081v2.781c.294.003.59-.007.883.005l.03.02c.011.189.003.38.003.569.003.055-.064.054-.102.053h-1.839a.067.067 0 0 1-.082-.082V36.5Zm-2.24.511a.416.416 0 0 0-.157.267 4.215 4.215 0 0 0-.072.987 2.955 2.955 0 0 0 .092.8c.032.093.088.215.204.214.137.002.275.002.413 0 .115-.002.17-.125.201-.218a3.451 3.451 0 0 0 .094-.901 3.983 3.983 0 0 0-.078-.893.383.383 0 0 0-.165-.262 1.761 1.761 0 0 0-.31-.011.646.646 0 0 0-.222.017Zm-.648-.57a1.061 1.061 0 0 1 .247-.024h1.399a.736.736 0 0 1 .553.235 1.471 1.471 0 0 1 .294.755 6.029 6.029 0 0 1 .034 1.223 2.23 2.23 0 0 1-.223.915.713.713 0 0 1-.47.359 3.107 3.107 0 0 1-.551.023H43.53a.79.79 0 0 1-.533-.165 1.146 1.146 0 0 1-.334-.644 5.195 5.195 0 0 1-.077-1.245 2.639 2.639 0 0 1 .205-1.023.728.728 0 0 1 .493-.41Zm-4.158.06c-.004-.032.006-.086.05-.081.32-.006.64 0 .96-.003.039-.004.101.006.094.06.003.444 0 .888.001 1.331h.9V36.5c-.006-.041.018-.09.067-.082h.96c.035-.006.083.011.077.055q.002 1.7 0 3.399c.006.043-.043.058-.077.054-.311.002-.622 0-.934 0-.04.004-.095-.005-.092-.057-.005-.457 0-.916-.002-1.374h-.899c-.001.458.002.916-.001 1.374.003.066-.075.057-.12.058-.31-.003-.621.004-.932-.003-.043.004-.057-.045-.052-.078V36.5Zm-5.8.025c-.01-.04-.016-.108.042-.106.303-.005.607-.002.91-.002a.06.06 0 0 1 .073.06c.105.62.204 1.24.308 1.86.01.06.019.122.024.184.127-.645.235-1.293.353-1.94.013-.053.008-.118.048-.16.302-.01.604-.003.906-.003.05-.009.058.045.066.08l.36 2.005c.122-.673.223-1.351.339-2.026.003-.032.025-.067.063-.06.285-.002.57.001.856-.001.038.004.094-.01.113.035a1.874 1.874 0 0 1-.039.26l-.558 3.13c-.006.032-.014.087-.06.082-.363.006-.727 0-1.09.003-.042 0-.106.002-.107-.055-.128-.693-.251-1.388-.377-2.08-.139.691-.25 1.389-.383 2.082-.003.062-.074.05-.117.053-.355-.002-.71.002-1.064-.001-.05.009-.072-.036-.074-.078l-.593-3.322Zm-2.583.145a.735.735 0 0 1 .58-.253c.546.001 1.091-.004 1.637.002.045-.005.05.053.057.084.023.138.05.276.073.414.012.032-.015.08-.051.075-.4.004-.8-.001-1.199.002-.097-.005-.159.086-.19.165a2.164 2.164 0 0 0-.107.654c.454.004.908-.004 1.362.004.045-.007.046.053.047.083-.002.172.004.344-.004.515-.001.047-.06.045-.093.045h-1.31a2.147 2.147 0 0 0 .103.65c.032.081.095.175.195.168.389.002.778 0 1.167 0 .034 0 .092.002.09.05.006.18.003.36.002.54.005.052-.053.06-.092.058-.562 0-1.124.001-1.685-.001a.732.732 0 0 1-.592-.266 1.723 1.723 0 0 1-.288-.876 6.286 6.286 0 0 1 .004-1.26 1.652 1.652 0 0 1 .294-.853Zm-3.711-.235c.263-.007.528 0 .792-.003.045.002.11-.013.13.043q.506.858 1.009 1.717c.007-.564 0-1.13.004-1.694a.06.06 0 0 1 .074-.065c.329 0 .658-.005.986.002.048 0 .044.056.044.09v3.346a.056.056 0 0 1-.07.068c-.29-.002-.581.006-.871-.004-.139-.203-.251-.423-.38-.633-.22-.374-.438-.75-.66-1.124 0 .565.002 1.129 0 1.693a.055.055 0 0 1-.06.068c-.334 0-.668.003-1.001-.002-.049 0-.045-.06-.046-.093v-3.318c0-.035 0-.09.049-.091Zm-2.41-.958a.208.208 0 0 1 .246.092 2.099 2.099 0 0 1 .314.596 1.312 1.312 0 0 1 .093.493.363.363 0 0 1-.134.244q-1.193 1.14-2.384 2.283a.092.092 0 0 1-.148-.018.69.69 0 0 1-.01-.178 4.145 4.145 0 0 1 .071-.93 3.03 3.03 0 0 1 .468-1.06 4.662 4.662 0 0 1 .648-.725l.685-.665a.846.846 0 0 1 .151-.132Zm-4.594-.005a.176.176 0 0 1 .191.057c.336.328.676.652 1.01.983a3.329 3.329 0 0 1 .691.997 2.803 2.803 0 0 1 .245 1.039c.005.199.017.398.005.596a.09.09 0 0 1-.161.034q-1.159-1.108-2.316-2.218a.612.612 0 0 1-.175-.214.665.665 0 0 1 .007-.359 2.37 2.37 0 0 1 .31-.725.488.488 0 0 1 .193-.19Zm2.7-.773a.349.349 0 0 1 .198-.02 3.833 3.833 0 0 1 1.195.29.424.424 0 0 1 .216.16.14.14 0 0 1-.055.161l-1.346 1.3a1.435 1.435 0 0 1-.217.194c-.08.028-.133-.055-.124-.125.008-.598.004-1.197.048-1.793a.181.181 0 0 1 .085-.167Zm-.993-.01a.659.659 0 0 1 .303.006.177.177 0 0 1 .091.16c.045.591.04 1.184.05 1.775 0 .055-.003.124-.058.154a.13.13 0 0 1-.131-.046l-1.508-1.456a.134.134 0 0 1-.045-.154.416.416 0 0 1 .208-.157 3.747 3.747 0 0 1 1.09-.281Z\" style=\"fill-rule:evenodd\"/><path d=\"M29.958 43.918a1.296 1.296 0 0 0-.52.676 1.348 1.348 0 0 0 .172 1.194 1.333 1.333 0 0 0 .935.533 2.238 2.238 0 0 0 1.187-.204c-.004-.363-.002-.725-.001-1.088a56.798 56.798 0 0 0-.864 0l.001.325h.49c.002.18 0 .36.002.54a1.307 1.307 0 0 1-1.282-.138 1.007 1.007 0 0 1-.084-1.408.991.991 0 0 1 .707-.328 1.959 1.959 0 0 1 .98.252c-.005-.123-.001-.246-.005-.368a3.393 3.393 0 0 0-.538-.182 1.545 1.545 0 0 0-1.18.196Zm6.562.033a1.306 1.306 0 0 0-.536.927 1.282 1.282 0 0 0 .216.875 1.311 1.311 0 0 0 .901.56 1.913 1.913 0 0 0 1.205-.213c-.003-.13-.001-.26-.002-.39a1.72 1.72 0 0 1-.89.288 1.09 1.09 0 0 1-.758-.263 1.003 1.003 0 0 1-.014-1.427 1.014 1.014 0 0 1 .669-.286 1.728 1.728 0 0 1 .967.263c0-.131.003-.261-.002-.392a3.893 3.893 0 0 0-.526-.169 1.55 1.55 0 0 0-1.23.227Zm-8.764-.242c-.361.865-.737 1.725-1.101 2.589h.37c.11-.254.215-.509.326-.762q.551.003 1.103 0c.105.226.207.454.309.682.015.025.02.061.049.077.12.007.239 0 .358.003-.382-.863-.77-1.725-1.148-2.59a3.66 3.66 0 0 0-.266.001Zm4.71.005c-.004.861 0 1.723-.002 2.584h.371v-1.125a.667.667 0 0 1 .411.076 1.403 1.403 0 0 1 .3.32c.168.238.316.488.478.729h.432c-.094-.13-.19-.258-.276-.392a2.78 2.78 0 0 0-.648-.834.68.68 0 0 0 .305-1.049.767.767 0 0 0-.517-.288 8.392 8.392 0 0 0-.854-.021Zm2.477.004c.004.86 0 1.72.002 2.58l.36-.001v-2.582c-.12 0-.241-.002-.362.003Zm3.96-.003v1.418a1.79 1.79 0 0 0 .033.496.888.888 0 0 0 .437.558 1.387 1.387 0 0 0 .914.119.978.978 0 0 0 .648-.381 1.172 1.172 0 0 0 .186-.69v-1.52c-.121.002-.242-.004-.362.002l-.01.065c.002.502 0 1.003.002 1.504a.71.71 0 0 1-.163.506.87.87 0 0 1-.607.206.75.75 0 0 1-.625-.294.762.762 0 0 1-.094-.418c0-.523-.001-1.046.001-1.569-.12-.004-.24-.002-.36-.002Zm2.92-.001c-.004.861-.001 1.723-.002 2.584h1.538v-.327c-.392 0-.783-.003-1.174.001-.004-.753.002-1.505-.003-2.258q-.18.002-.36 0Zm1.419 0c-.004.11-.003.22-.002.33h.888v2.254h.371c0-.752.002-1.503-.001-2.255.297 0 .593.002.89-.001-.002-.11-.001-.218-.001-.327-.715-.001-1.43.001-2.145-.001Zm2.64.004c.003.549 0 1.097 0 1.646a.964.964 0 0 0 .257.658 1.094 1.094 0 0 0 .687.306 1.497 1.497 0 0 0 .778-.132.882.882 0 0 0 .444-.54 2.535 2.535 0 0 0 .053-.731c0-.403-.001-.805.001-1.208-.123-.004-.247-.001-.37-.003-.004.455 0 .91-.002 1.366a1.323 1.323 0 0 1-.067.579.621.621 0 0 1-.439.311.9.9 0 0 1-.744-.123.503.503 0 0 1-.209-.303 2.657 2.657 0 0 1-.029-.517v-1.312c-.12 0-.24-.002-.36.003Zm2.927 0c.003.86 0 1.72.001 2.58h.372v-1.125a.882.882 0 0 1 .337.035 1.059 1.059 0 0 1 .383.373c.164.234.31.48.47.717h.429c-.135-.191-.275-.379-.393-.581a2.098 2.098 0 0 0-.529-.647.747.747 0 0 0 .259-.17.704.704 0 0 0-.055-.984 1.015 1.015 0 0 0-.669-.201c-.202.001-.404-.003-.605.003Zm2.483-.003-.001 2.582c.498.003.996 0 1.493.001v-.328h-1.132v-.804h1.063l.001-.335q-.53-.005-1.061 0c-.008-.263 0-.525-.005-.788h1.1v-.327c-.486-.003-.972 0-1.458-.001Zm-18.457.32a1.107 1.107 0 0 1 .616.087.415.415 0 0 1-.052.66 1.23 1.23 0 0 1-.565.064c.002-.27 0-.541.001-.812Zm16.347 0a1.39 1.39 0 0 1 .559.054.412.412 0 0 1 .077.644.964.964 0 0 1-.636.114v-.813Zm-21.371.399a1.02 1.02 0 0 1 .079-.166c.135.316.278.628.417.941-.271 0-.544.002-.816 0 .106-.259.215-.516.32-.775Z\" style=\"fill-rule:evenodd;fill:#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1e2fza3\",\"data-framer-name\":\"$15\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"LVeoINT5F\",svg:'<svg data-name=\"Livello 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\"><path d=\"m37.612 48.287.534-.033v.017l-.067 1.317-.283-.017v-.016l.066-1.15-.25.016Zm1.651-.033a.418.418 0 0 1 .467.417.36.36 0 0 1-.1.267l-.417.683h-.3l.017-.016.283-.467a.414.414 0 0 1-.15.016h-.017a.367.367 0 0 1-.367-.416c-.016-.267.234-.484.584-.484Zm-.067.117c-.25 0-.266.267-.283.35 0 .05 0 .283.233.3.2 0 .284-.183.284-.35a.336.336 0 0 0-.05-.184.18.18 0 0 0-.184-.116Zm1.451-.084-.533.067h-.017v.133l.233-.033.017 1.15v.017h.283l-.016-1.317v-.017Zm1.668 1.118-.634.033.317-.334.016-.016a.016.016 0 0 1 .017-.017.813.813 0 0 0 .234-.417c-.017-.217-.217-.367-.534-.367h-.05a.596.596 0 0 0-.45.184.349.349 0 0 0-.067.283v.017l.167-.017v-.016a.218.218 0 0 1 .05-.217.338.338 0 0 1 .233-.1h.034c.15 0 .3.05.3.217 0 .1-.117.233-.267.416a.954.954 0 0 0-.117.134l-.367.417-.016.033 1.134-.05h.016l-.016-.183ZM59.223 35.13c-.184.1-.434.233-.417.317.033 0 .117-.017.167-.017a.608.608 0 0 1 .617.117.549.549 0 0 1 .066.617 1.487 1.487 0 0 1-1.25.767h-.017a.181.181 0 0 0 .084.117.779.779 0 0 0 .166.083c.134.067.317.133.334.35.05.367-.217.584-.55.717a5.309 5.309 0 0 1 .733 1.534v.217c0 .017-.016.05-.016.067a.43.43 0 0 1-.134.216 1.686 1.686 0 0 0-.367.467c-.033.284.617.234.55.884-.016.25-.316.517-.9.717-.033.017-.067.017-.1.033v.017a.514.514 0 0 1 .217.284.472.472 0 0 1-.2.5c-.017.017-.2.183-.184.217.05.066.684-.467 1.05-.134a.43.43 0 0 1 .168.317c.033.2-.117.417-.434.634a.349.349 0 0 1-.1.066c.25-.066.7-.066.834.317a.446.446 0 0 1-.217.534c-.117.1-.133.133-.117.167a.413.413 0 0 0 .1.066 1.007 1.007 0 0 1 .384.367.482.482 0 0 1-.167.6l-.1.05a.925.925 0 0 1-.667-.016v.033a.655.655 0 0 1-.4.617c-.217.133-.267.184-.2.317.016.017.033.067.183.067.067 0 .15-.017.25-.017a1.812 1.812 0 0 1 .3-.017.521.521 0 0 1 .567.384.46.46 0 0 1-.283.55.362.362 0 0 0-.117.1.023.023 0 0 0 0 .033c0 .017.033.084.2.15a.816.816 0 0 1 .484.534.521.521 0 0 1-.134.45.606.606 0 0 1-.433.184.7.7 0 0 1-.4-.117 2.454 2.454 0 0 1-.217-.167.333.333 0 0 0-.184-.116.061.061 0 0 0-.05.016c-.05.034-.05.1-.016.25.033.184.083.45-.184.567a.635.635 0 0 1-.283.067c-.334 0-.5-.333-.617-.6-.083-.184-.167-.367-.267-.367-.083 0-.1.017-.133.267s-.084.65-.6.717h-.1c-.518 0-.6-.534-.668-.917-.033-.167-.066-.4-.133-.434a.237.237 0 0 0-.1-.033c-.15 0-.217.266-.25.433a.642.642 0 0 1-.134.284.575.575 0 0 1-.45.2.696.696 0 0 1-.383-.117c-.4-.3-.384-.6-.35-1.034 0-.066.016-.117.016-.183a.31.31 0 0 0-.05-.25.016.016 0 0 1-.017-.017c-.05 0-.133.067-.233.233a.544.544 0 0 1-.467.384h-.017a.625.625 0 0 1-.383-.183c.05.133.083.266.1.316a.78.78 0 0 1-.117.8 1.047 1.047 0 0 1-1.534-.133 4.861 4.861 0 0 0-2.718-.433c-.45.117-.884.233-1.334.333l-.2.05a.52.52 0 0 1-.283.284.626.626 0 0 1-.467.016.395.395 0 0 1-.3.25.434.434 0 0 1-.467-.083.555.555 0 0 1-.484.217.468.468 0 0 1-.433-.317 39.407 39.407 0 0 1-4.186.25 35.81 35.81 0 0 1-4.202-.283.485.485 0 0 1-.45.35.537.537 0 0 1-.484-.217.47.47 0 0 1-.467.084.395.395 0 0 1-.3-.25.632.632 0 0 1-.467-.017.487.487 0 0 1-.283-.334l-.2-.05c-.35-.083-.684-.166-1.05-.267a5.112 5.112 0 0 0-2.902.4 1.047 1.047 0 0 1-1.534.134.745.745 0 0 1-.117-.8c.017-.05.05-.184.1-.317a.795.795 0 0 1-.383.183h-.017a.544.544 0 0 1-.467-.383c-.083-.184-.183-.25-.233-.25a.016.016 0 0 0-.017.016c-.033.034-.05.1-.05.25 0 .067.017.134.017.184.033.433.066.734-.35 1.034a.615.615 0 0 1-.384.116.527.527 0 0 1-.45-.2.898.898 0 0 1-.134-.283c-.05-.167-.116-.45-.25-.45a.237.237 0 0 0-.1.033c-.067.033-.1.267-.133.434-.067.383-.15.917-.667.917h-.1c-.517-.067-.567-.45-.6-.717-.034-.25-.05-.267-.134-.267-.1 0-.183.183-.267.367-.116.267-.283.6-.617.6a.635.635 0 0 1-.283-.067c-.267-.116-.217-.4-.184-.567s.034-.233-.016-.25a.061.061 0 0 0-.05-.016c-.05 0-.117.066-.184.133a2.448 2.448 0 0 1-.216.167.856.856 0 0 1-.4.116.578.578 0 0 1-.434-.183.45.45 0 0 1-.134-.45.84.84 0 0 1 .5-.534c.167-.067.2-.133.2-.15v-.033a.362.362 0 0 0-.116-.1.46.46 0 0 1-.283-.55.53.53 0 0 1 .566-.384c.1 0 .2.017.3.017a1.262 1.262 0 0 0 .25.016c.15 0 .167-.05.184-.066.067-.134.017-.184-.2-.317a.655.655 0 0 1-.4-.617v-.034a.925.925 0 0 1-.667.017l-.1-.05a.463.463 0 0 1-.167-.6 1.007 1.007 0 0 1 .384-.367.413.413 0 0 0 .1-.067c.016-.033 0-.066-.117-.166-.117-.117-.317-.267-.217-.534.134-.384.567-.367.834-.317-.033-.017-.067-.05-.1-.067-.467-.183-.6-.383-.567-.583a.495.495 0 0 1 .167-.317c.367-.334.984.2 1.034.133.033-.033-.167-.2-.184-.216a.502.502 0 0 1-.2-.5.466.466 0 0 1 .217-.284c-.034-.017-.084-.017-.117-.033-.584-.2-.884-.467-.9-.717-.067-.65.583-.584.55-.868a1.686 1.686 0 0 0-.367-.466.635.635 0 0 1-.133-.217c0-.017-.017-.05-.017-.067v-.217a5.31 5.31 0 0 1 .734-1.534c-.35-.133-.6-.367-.567-.717.016-.217.2-.3.333-.35a1.55 1.55 0 0 0 .167-.083.181.181 0 0 0 .083-.117h-.016a1.523 1.523 0 0 1-1.25-.767.58.58 0 0 1 .066-.617.615.615 0 0 1 .617-.117.3.3 0 0 0 .166.017c.017-.083-.216-.217-.416-.317-.4-.217-.95-.5-.817-1.084a.48.48 0 0 1 .2-.317.692.692 0 0 1 .517 0c.066.017.166.05.2.034v-.017c.016-.05-.134-.2-.217-.283-.267-.267-.667-.667-.217-1.168l.05-.066a.676.676 0 0 1 .767 0c.167.083.2.083.217.066.05-.083-.033-.25-.134-.417-.166-.283-.383-.667.017-1a.543.543 0 0 1 .7 0c.05.017.117.067.15.067 0 0 .067-.034.117-.284a1.147 1.147 0 0 1 .484-.784.546.546 0 0 1 .483-.016c.35.133.334.517.334.75v.017a1.24 1.24 0 0 1-.05.283c-.033.117-.033.134.017.167a.353.353 0 0 0 .116-.05.504.504 0 0 1 .5-.067.88.88 0 0 1 .134-.367.817.817 0 0 1 .6-.333h.084c.35 0 .517.35.617.55.016.034.033.05.033.067l.017.05c.033.05.05.067.066.067h.05v-.05a.903.903 0 0 1 .467-1.084.837.837 0 0 1 .2-.034.444.444 0 0 1 .2.05.737.737 0 0 1 .234.217 1.467 1.467 0 0 1 .1.167.555.555 0 0 0 .05.1h.033c.017-.017.034-.05.05-.067a2.082 2.082 0 0 0 .15-.2.68.68 0 0 1 .534-.3.624.624 0 0 1 .3.083.349.349 0 0 1 .1.067.59.59 0 0 1 .084.917c-.017.034-.05.05-.067.084-.05.05-.184.183-.167.25.017.033.017.05.183.05a.476.476 0 0 1 .534.333 1.309 1.309 0 0 1 .033.234 28.993 28.993 0 0 1 11.156-2.085 29.654 29.654 0 0 1 11.155 2.035.608.608 0 0 1 .034-.234.485.485 0 0 1 .533-.333c.167 0 .184-.017.184-.05.016-.067-.117-.2-.167-.25l-.083-.084a.59.59 0 0 1 .083-.917c.033-.017.067-.05.1-.067a.68.68 0 0 1 .3-.083.658.658 0 0 1 .534.3q.1.125.15.2a.23.23 0 0 0 .05.067h.033a.19.19 0 0 0 .05-.1 1.466 1.466 0 0 1 .1-.167.737.737 0 0 1 .234-.217.444.444 0 0 1 .2-.05.71.71 0 0 1 .183.034.868.868 0 0 1 .467 1.084v.05h.05c.017 0 .033-.017.067-.067l.016-.05c.017-.017.017-.05.034-.067.1-.2.283-.55.617-.55h.083a.792.792 0 0 1 .567.3.842.842 0 0 1 .15.384.504.504 0 0 1 .5.066.605.605 0 0 0 .117.05c.05-.05.05-.05.017-.166a1.088 1.088 0 0 1-.05-.284v-.017c0-.216-.034-.617.317-.75a.608.608 0 0 1 .483.017 1.221 1.221 0 0 1 .484.783c.066.25.116.284.116.284a.513.513 0 0 0 .15-.067.567.567 0 0 1 .7 0c.418.334.184.717.018 1-.1.167-.184.318-.134.418.017.033.05.016.217-.05a.647.647 0 0 1 .767 0l.017.016c.433.5.033.9-.234 1.167-.083.084-.233.234-.217.284v.017a1.607 1.607 0 0 0 .2-.034.621.621 0 0 1 .517 0 .443.443 0 0 1 .2.317c.2.634-.333.917-.733 1.134Zm-7.77-3.485a.413.413 0 0 0 0 .283 19.206 19.206 0 0 1 2.8 1.468 6.567 6.567 0 0 0-.933-1.551c-.083-.117-.083-.2-.017-.233.1-.05.2.083.25.15a6.476 6.476 0 0 1 1.084 1.9 4.13 4.13 0 0 1 .434.317.686.686 0 0 1-.05-.35.306.306 0 0 1 .133-.217.56.56 0 0 1 .517.017 1.168 1.168 0 0 1-.167-.133c-.25-.167-.617-.434-.483-.867a.415.415 0 0 1 .233-.284.694.694 0 0 1 .567.084c.084.033.234.1.267.083.017 0 .017-.017.017-.05a1.281 1.281 0 0 0-.184-.25c-.166-.2-.367-.417-.35-.65a.282.282 0 0 1 .05-.167.563.563 0 0 0-.533-.65h-.05c-.234 0-.367.333-.45.5l-.034.05a.295.295 0 0 1-.267.2.211.211 0 0 1-.1-.017.278.278 0 0 1-.183-.333s.15-.65-.317-.818a.325.325 0 0 0-.117-.016c-.033 0-.067.016-.1.016a.786.786 0 0 0-.167.167c-.066.067-.133.267-.2.317h-.116a.336.336 0 0 1-.184-.05 3.979 3.979 0 0 1-.25-.317.411.411 0 0 0-.35-.2.583.583 0 0 0-.2.05c-.017.017-.05.033-.067.05-.1.084-.3.25-.05.584.067.083.367.3.284.55-.134.367-.634.05-.717.367Zm-26.447-1.117a.56.56 0 0 0-.533.65.282.282 0 0 1 .05.167c.016.233-.184.45-.35.65-.067.083-.184.2-.184.25a.058.058 0 0 0 .017.034.527.527 0 0 0 .266-.084.694.694 0 0 1 .567-.083.506.506 0 0 1 .234.283c.133.434-.234.684-.484.867a1.169 1.169 0 0 0-.166.134.56.56 0 0 1 .516-.017.306.306 0 0 1 .134.217.686.686 0 0 1-.05.35c.133-.1.283-.2.433-.317a6.296 6.296 0 0 1 1.084-1.9c.05-.067.15-.217.25-.15.067.033.067.116-.016.233a6.596 6.596 0 0 0-.934 1.567 16.236 16.236 0 0 1 2.268-1.234c.166-.083.35-.15.533-.233a.413.413 0 0 0 0-.284c-.083-.317-.583 0-.717-.367-.083-.25.217-.466.284-.55.267-.333.05-.517-.05-.583-.017-.017-.05-.034-.067-.05a.356.356 0 0 0-.2-.05.456.456 0 0 0-.35.2 3.98 3.98 0 0 1-.25.316.25.25 0 0 1-.184.067.314.314 0 0 1-.133-.033c-.084-.05-.15-.25-.2-.317a.53.53 0 0 0-.167-.167.125.125 0 0 0-.083-.016.325.325 0 0 0-.117.016c-.467.167-.317.817-.317.817a.278.278 0 0 1-.183.334.211.211 0 0 1-.1.016.295.295 0 0 1-.267-.2l-.034-.05c-.083-.166-.216-.5-.45-.5a.061.061 0 0 1-.05.017Zm-3.668 6.986c-.017.084-.034.3.417.484a7.077 7.077 0 0 1 .717-1.417 9.154 9.154 0 0 1 .05-3.269c.05-.283.1-.6.166-.933a.128.128 0 1 1 .25.05 10.63 10.63 0 0 0-.3 3.268c.034.2.1.35.217.333.1-.116.183-.233.284-.366a11.84 11.84 0 0 1 1.384-1.351 1.074 1.074 0 0 0 .3-.684.126.126 0 0 0-.034-.067c-.066-.05-.183-.016-.3.034-.1.033-.2.083-.283.017a.24.24 0 0 1-.067-.217c.017-.134.15-.234.3-.35.284-.2.467-.35.384-.6a.216.216 0 0 0-.1-.15.596.596 0 0 0-.384.083.602.602 0 0 1-.467.066.336.336 0 0 1-.15-.183c-.05-.15.084-.284.234-.467.133-.15.3-.35.3-.484 0-.033-.017-.066-.067-.116-.133-.117-.217-.067-.35.016a.322.322 0 0 1-.4.034c-.167-.134-.117-.284-.084-.417a.814.814 0 0 0 .05-.234v-.016c.017-.25 0-.45-.166-.517a.335.335 0 0 0-.284.016.957.957 0 0 0-.367.634c-.066.267-.133.4-.25.45a.425.425 0 0 1-.35-.066c-.167-.1-.283-.15-.434-.017-.233.2-.15.4.034.7.133.217.25.45.133.65-.117.25-.35.15-.517.067-.217-.1-.35-.15-.5-.05-.267.317-.083.534.217.85.167.167.317.318.283.484a.24.24 0 0 1-.1.167.445.445 0 0 1-.383-.017.612.612 0 0 0-.334-.033c-.05.033-.066.083-.1.167-.083.383.25.583.7.833.3.167.584.317.534.567a.24.24 0 0 1-.1.167.421.421 0 0 1-.35.017c-.183-.033-.317-.05-.4.033a.321.321 0 0 0-.034.367 1.292 1.292 0 0 0 1.051.634.235.235 0 0 1 .233.166.38.38 0 0 1-.166.384 1.379 1.379 0 0 1-.217.117c-.134.066-.184.1-.2.166Zm-.184 2.402a.818.818 0 0 0 .267.35c0-.1-.017-.184-.017-.284a5.436 5.436 0 0 1 .117-1.167 1.91 1.91 0 0 0-.383.95c.016.034 0 .117.016.15Zm.284 2.05a1.74 1.74 0 0 0 .4.184 7.403 7.403 0 0 1-.317-1.034h-.017a.606.606 0 0 0-.383.417.582.582 0 0 0 .317.434Zm-.734 4.17a.766.766 0 0 0 .784-.084.545.545 0 0 1 .483-.25 1.962 1.962 0 0 1 .667.167c.1.033.2.066.284.1h.016a.325.325 0 0 0 .117.016c.017 0 .034 0 .034-.016.05-.067.033-.134-.017-.284a.451.451 0 0 1 .017-.533.84.84 0 0 1 .65-.267h.083a10.286 10.286 0 0 1-.6-.634.52.52 0 0 0-.384.05c-.016 0-.016.017-.033.017s-.017.016-.033.016a.988.988 0 0 0-.1.067 1.756 1.756 0 0 0-.25.25c-.067.084-.167.234-.234.217-.05-.017-.117-.033.034-.267l.116-.133a1.61 1.61 0 0 1 .484-.367c.117-.067.133-.133.133-.167a7.43 7.43 0 0 1-.733-1.1 2.51 2.51 0 0 1-.184-.367.224.224 0 0 0-.1.117.352.352 0 0 0 .117.333.636.636 0 0 1 .233.35.193.193 0 0 1-.066.167.232.232 0 0 1-.234.017 2.036 2.036 0 0 0-.5-.217.372.372 0 0 0-.3.067.3.3 0 0 0-.1.166c-.017.084.033.217.35.434a1.542 1.542 0 0 0 .133.083l.017.034a.214.214 0 0 1 .117.266c-.034.067-.117.134-.284.1 0 0-.533-.166-.65.167-.05.117.017.184.15.3.117.1.267.234.167.417a.352.352 0 0 1-.184.167.806.806 0 0 0-.3.267.26.26 0 0 0 .1.333Zm6.553 2.467a1.094 1.094 0 0 0 .55-.433 1.794 1.794 0 0 0 .234-.35h-.017a15.247 15.247 0 0 1-1.8-.968 1.506 1.506 0 0 0-.35.034 8.322 8.322 0 0 0-2.585 1.2.061.061 0 0 1-.05.017.092.092 0 0 1-.084-.05.109.109 0 0 1 .034-.15c.016-.017.033-.017.05-.033 0-.017.016-.017.033-.034l.25-.15a9.286 9.286 0 0 1 1.834-.884c.167-.083.45-.233.25-.366l.034.016-.15-.1c-.034-.033-.084-.05-.117-.083a.442.442 0 0 1-.1-.084c-.117-.083-.217-.15-.317-.233-.167-.117-.3-.25-.45-.367-.05-.033-.1-.083-.15-.117-.05-.05-.117-.1-.167-.15a1.045 1.045 0 0 0-.45-.1.602.602 0 0 0-.467.184c-.067.083-.05.15.017.3a.453.453 0 0 1-.017.517.269.269 0 0 1-.217.1.709.709 0 0 1-.183-.034h-.017a3.16 3.16 0 0 1-.3-.1 1.885 1.885 0 0 0-.584-.15c-.15 0-.316.05-.383.384-.017.167.1.267.3.383.183.117.434.284.283.617a.411.411 0 0 1-.4.2c-.083 0-.183-.016-.267-.016a1.618 1.618 0 0 0-.283-.017c-.2 0-.3.067-.333.217-.034.133.016.183.183.283a.431.431 0 0 1 .2.184.367.367 0 0 1 .033.233.549.549 0 0 1-.333.3c-.15.067-.334.217-.35.367a.306.306 0 0 0 .083.25.311.311 0 0 0 .267.117.562.562 0 0 0 .283-.083.653.653 0 0 0 .167-.134.555.555 0 0 1 .35-.183.322.322 0 0 1 .167.05c.2.116.15.333.133.5-.033.2-.033.283.05.317a.435.435 0 0 0 .184.05c.183 0 .283-.184.4-.467.117-.25.233-.5.484-.5.316 0 .35.266.366.467.034.25.067.466.4.517.35.05.418-.25.5-.717.05-.284.084-.517.268-.6a.444.444 0 0 1 .2-.05c.317 0 .417.383.483.616a.557.557 0 0 0 .084.2.328.328 0 0 0 .267.1.41.41 0 0 0 .25-.083c.3-.217.283-.417.25-.817 0-.067-.017-.134-.017-.2a.523.523 0 0 1 .1-.417.276.276 0 0 1 .2-.083c.167 0 .317.133.434.366.083.117.133.2.283.217Zm1.818.6a1.24 1.24 0 0 1 .5-.767 17.35 17.35 0 0 1-1.117-.433h-.084a.636.636 0 0 0-.383.4c-.117.267-.45.95-.183 1.184a.755.755 0 0 0 1.117-.033.565.565 0 0 0 .15-.35Zm.15.134a5.665 5.665 0 0 1 2.068-.334c-.5-.15-1-.3-1.468-.467a.503.503 0 0 0-.183.117.364.364 0 0 1-.084.067 1.572 1.572 0 0 0-.166.167.574.574 0 0 0-.167.433Zm-5.836-6.153c.066.1.133.183.2.283l.65-.35c-.067-.1-.133-.183-.2-.283Zm25.729 4.869a20.675 20.675 0 0 0 2.034-.767l-.367-.717a20.593 20.593 0 0 1-1.95.717Zm-6.953-.434a.89.89 0 0 1 .617-.35 1.174 1.174 0 0 1 .633.15c.084.034.167.067.217.084a.423.423 0 0 0 .367-.084.58.58 0 0 1 .25-.133 1.469 1.469 0 0 1 .283-.033 1.448 1.448 0 0 1 .65.166.593.593 0 0 0-.15-.066c.234-.034.468-.067.668-.117 6.07-1.149 10.42-4.068 10.42-7.236 0-4.252-7.203-7.72-16.058-7.72S24.007 35.748 24.007 40c0 1.667 1.117 3.218 3.185 4.552a20.911 20.911 0 0 0 7.053 2.652c.083.016.684.133.8.15a1.447 1.447 0 0 1 .467-.084.78.78 0 0 1 .284.034.701.701 0 0 1 .25.133.423.423 0 0 0 .367.083.856.856 0 0 0 .2-.083 1.265 1.265 0 0 1 .633-.15.89.89 0 0 1 .617.35c.667.05 1.351.083 2.068.083.734-.016 1.5-.05 2.235-.1Zm10.788-2.851a21.998 21.998 0 0 1-7.604 2.751 3.757 3.757 0 0 1 .4.35l-.05-.05a1.126 1.126 0 0 1 .234-.033c6.353-1.234 10.855-4.369 10.855-7.77 0-4.57-7.503-8.288-16.741-8.288-9.221 0-16.742 3.719-16.742 8.288 0 1.784 1.134 3.485 3.285 4.935a21.53 21.53 0 0 0 7.52 2.852c.067.017.134.017.2.033a3.334 3.334 0 0 1 .368-.317 40.97 40.97 0 0 1-.517-.1c-6.153-1.2-10.405-4.135-10.405-7.42 0-4.369 7.303-7.937 16.29-7.937 8.972 0 16.275 3.568 16.275 7.937.017 1.75-1.167 3.385-3.368 4.769Zm-1.6 2.435c.1-.05.216-.1.316-.15l-.367-.718c-.1.05-.216.1-.316.15Zm.516-.25c.1-.05.2-.1.317-.15l-.367-.701c-.1.05-.2.1-.317.15Zm.517-.25a13.408 13.408 0 0 0 1.984-1.235l-.483-.583c-.133.083-.267.183-.4.267a13.86 13.86 0 0 1-1.484.85l.383.7Zm2.168-1.368a10.285 10.285 0 0 0 1.634-1.517l-.667-.367a9.306 9.306 0 0 1-1.45 1.3Zm1.784-1.684c.083-.1.15-.2.234-.3l-.65-.35c-.084.1-.15.2-.234.283Zm.367-.484c.067-.1.133-.2.2-.283l-.65-.35a1.731 1.731 0 0 1-.2.283Zm.317-.483a5.546 5.546 0 0 0 .767-2.435h-.767a4.735 4.735 0 0 1-.634 2.068Zm.767-2.652V40a5.293 5.293 0 0 0-.467-2.134l-.667.366A4.66 4.66 0 0 1 57.022 40v.033Zm-.567-2.384a2.699 2.699 0 0 0-.167-.3l-.667.367a2.52 2.52 0 0 1 .15.3Zm-.267-.5c-.067-.1-.117-.2-.183-.3l-.667.366a2.9 2.9 0 0 1 .183.3Zm-.317-.467a8.405 8.405 0 0 0-1.5-1.601l-.517.55a8.253 8.253 0 0 1 1.35 1.418Zm-1.667-1.751a13.94 13.94 0 0 0-2.068-1.384l-.35.684a13.391 13.391 0 0 1 1.9 1.25Zm-2.268-1.484c-.1-.05-.2-.117-.3-.167l-.35.684a2.697 2.697 0 0 1 .3.166Zm-.5-.267c-.1-.05-.2-.1-.317-.15l-.367.7c.1.05.217.1.317.15Zm-.517-.25a22.755 22.755 0 0 0-2.135-.834l-.233.767a20.002 20.002 0 0 1 2.001.767Zm-2.351-.9a27.952 27.952 0 0 0-2.268-.634l-.133.817c.75.167 1.467.367 2.167.583l.234-.767Zm-2.485-.684a2.361 2.361 0 0 0-.333-.067l-.134.817c.117.017.234.05.334.067Zm-.567-.117c-.117-.017-.217-.05-.333-.067l-.134.817c.117.017.234.05.334.067Zm-.567-.1a34.711 34.711 0 0 0-2.4-.333l-.05.833c.8.084 1.567.184 2.317.317Zm-2.618-.367a35.672 35.672 0 0 0-2.35-.133v.834c.783.016 1.55.05 2.3.116Zm-2.584-.133h-.35v.834h.35Zm-.567 0h-.35v.834h.35Zm-.567.016c-.8.017-1.584.067-2.368.134l.05.834c.75-.067 1.517-.117 2.301-.117v-.85Zm-2.585.15c-.8.067-1.567.184-2.318.317l.134.817a42.658 42.658 0 0 1 2.234-.3Zm-2.534.35a1.967 1.967 0 0 0-.334.067l.134.817c.116-.016.216-.05.333-.066Zm-.567.1c-.117.017-.217.05-.334.067l.134.817c.116-.016.216-.05.333-.066Zm-.55.117c-.818.184-1.585.4-2.335.634l.233.784c.7-.217 1.451-.417 2.218-.584Zm-2.552.717a23.456 23.456 0 0 0-2.25.884l.366.7a21.111 21.111 0 0 1 2.134-.817Zm-2.451.984c-.1.05-.2.1-.317.15l.367.684c.1-.05.2-.1.317-.15Zm-.517.25a2.697 2.697 0 0 0-.3.167l.35.684a2.699 2.699 0 0 0 .3-.167Zm-.5.267a14.416 14.416 0 0 0-2.034 1.368l.516.55a12.137 12.137 0 0 1 1.868-1.25Zm-2.201 1.534a8.417 8.417 0 0 0-1.4 1.501l.666.367a9.114 9.114 0 0 1 1.25-1.3Zm-1.534 1.668c-.067.1-.134.2-.184.283l.667.367a1.731 1.731 0 0 1 .2-.283Zm-.317.483c-.05.1-.117.2-.167.3l.667.367a2.696 2.696 0 0 1 .167-.3Zm-.267.517a5.216 5.216 0 0 0-.5 2.168h.767a4.869 4.869 0 0 1 .4-1.8Zm-.5 2.385a5.207 5.207 0 0 0 .667 2.334l.65-.35a4.727 4.727 0 0 1-.55-1.984Zm.784 2.534a2.9 2.9 0 0 0 .183.3l.65-.35c-.066-.1-.116-.2-.183-.3Zm.65.934a10.012 10.012 0 0 0 1.65 1.584l.484-.533a9.222 9.222 0 0 1-1.484-1.401Zm1.834 1.718a14.13 14.13 0 0 0 1.968 1.234l.333-.65a14.873 14.873 0 0 1-1.834-1.118Zm2.168 1.35c.1.05.2.1.317.15l.35-.667c-.1-.05-.217-.1-.317-.15Zm.5.25c.1.05.217.1.317.15l.35-.667c-.1-.05-.217-.1-.317-.15Zm.534.25a21.024 21.024 0 0 0 2.25.85l.268-.733a21.852 21.852 0 0 1-2.168-.783Zm2.468.918a30.607 30.607 0 0 0 2.417.633 3.705 3.705 0 0 1 .484-.733c-.1-.017-.267-.05-.267-.05a22.733 22.733 0 0 1-2.334-.584Zm4.018 1.917c.2.034.3-.1.35-.35.017-.067.084-.333.134-.517a2.19 2.19 0 0 1 1.684-1.567s0-.134-.3-.134a2.036 2.036 0 0 0-.55.167.68.68 0 0 1-.267.067.857.857 0 0 1-.5-.134.74.74 0 0 0-.334-.083c-.984-.067-1.784 1.734-1.834 1.918a.174.174 0 0 0 .116.233.337.337 0 0 0 .434-.167c.117-.233.25-.15.167.084-.084.216-.017.333.133.366s.317-.05.417-.333c.05-.15.183-.133.167.05-.067.267.033.367.183.4Zm4.752-.05a38.432 38.432 0 0 0 4.12-.25v-.017c-.034-.116-.068-.266-.118-.433a1.947 1.947 0 0 0-1.55-1.467h-.034c-.817.066-1.734.1-2.518.1s-1.6-.034-2.35-.1a1.947 1.947 0 0 0-1.551 1.467c-.05.167-.084.317-.117.417a38.266 38.266 0 0 0 4.118.283Zm6.237-.333a.18.18 0 0 0 .117-.234c-.05-.183-.85-1.984-1.835-1.917a1.059 1.059 0 0 0-.333.083.78.78 0 0 1-.5.133 1.031 1.031 0 0 1-.267-.066 2.036 2.036 0 0 0-.55-.167c-.3 0-.3.133-.3.133a2.19 2.19 0 0 1 1.684 1.568c.05.167.116.45.133.517.05.25.15.383.35.35.15-.033.234-.133.2-.4-.033-.167.1-.184.167-.05.1.283.267.367.417.333s.217-.15.133-.367.05-.316.167-.083a.314.314 0 0 0 .417.167Zm.467-.317a22.467 22.467 0 0 0 8.037-3.352c2.418-1.734 3.685-3.818 3.685-5.986 0-5.503-8.254-9.988-18.392-9.988a28.155 28.155 0 0 0-12.64 2.734 13.47 13.47 0 0 0-3.918 2.902A6.473 6.473 0 0 0 21.655 40a5.977 5.977 0 0 0 .85 3.001 9.499 9.499 0 0 0 2.318 2.585c.166.133.35.267.533.4.067.05.15.1.217.15a19.087 19.087 0 0 0 2.535 1.451 29.254 29.254 0 0 0 5.119 1.684.593.593 0 0 0 .167.034c.033-.1.083-.217.133-.35l-.4-.1c-4.336-1.001-7.77-2.852-9.605-5.12l-.033-.05a5.94 5.94 0 0 1-1.434-3.702c.033-5.269 8.087-9.571 17.992-9.571S58.022 34.714 58.022 40c0 3.935-4.635 7.487-11.322 8.954l-.217.05a3.023 3.023 0 0 1-.1-.216l.284-.05a22.174 22.174 0 0 0 2.25-.6l-.283-.768c-.833.25-1.7.467-2.584.65a.75.75 0 0 0-.134.034l-.05-.05a4.19 4.19 0 0 1 .8 1.467c0 .034.017.05 0 .084v-.084a.722.722 0 0 1-.016-.083c0-.033.067-.05.067-.05Zm2.167-.334a6.433 6.433 0 0 1 1.985.334v-.033a.845.845 0 0 0-.334-.6c-.033-.017-.05-.05-.066-.067a.503.503 0 0 0-.184-.117c-.45.167-.917.333-1.4.483Zm3.402.584c.267-.233-.05-.917-.183-1.184a.676.676 0 0 0-.384-.4h-.15c-.35.15-.7.3-1.05.433a1.298 1.298 0 0 1 .517.768.929.929 0 0 0 .133.366.753.753 0 0 0 1.117.017Zm5.936-2.785c.184-.116.3-.216.3-.383-.083-.334-.233-.384-.383-.384a2.153 2.153 0 0 0-.584.15 2.111 2.111 0 0 1-.3.1h-.016a.6.6 0 0 1-.184.034.269.269 0 0 1-.217-.1.484.484 0 0 1-.016-.517c.066-.15.083-.217.016-.3a.602.602 0 0 0-.467-.184.956.956 0 0 0-.416.1 11.747 11.747 0 0 1-1.084.867c-.134.1-.267.184-.417.284l.033-.017c-.2.134.084.284.25.367a9.287 9.287 0 0 1 1.835.884l.25.15c.016 0 .016.017.033.033s.033.017.05.034a.109.109 0 0 1 .033.15.092.092 0 0 1-.083.05.061.061 0 0 1-.05-.017 8.533 8.533 0 0 0-2.635-1.217 1.102 1.102 0 0 0-.316-.017 20.93 20.93 0 0 1-1.835.95 1.514 1.514 0 0 0 .25.367 1.166 1.166 0 0 0 .55.434c.134 0 .184-.1.268-.25.116-.234.283-.367.433-.367a.346.346 0 0 1 .2.083.523.523 0 0 1 .1.417c0 .067-.017.134-.017.2-.033.4-.05.6.25.817a.45.45 0 0 0 .25.084.328.328 0 0 0 .268-.1.556.556 0 0 0 .083-.2c.067-.234.167-.617.483-.617a.444.444 0 0 1 .2.05c.184.083.217.333.267.6.084.467.15.767.5.717.334-.05.367-.267.4-.517.034-.2.068-.467.368-.467.25 0 .367.25.483.5.134.284.234.467.4.467a.435.435 0 0 0 .184-.05c.083-.033.083-.116.05-.317-.033-.166-.067-.383.133-.5a.322.322 0 0 1 .167-.05.6.6 0 0 1 .35.184 1.168 1.168 0 0 0 .167.133.562.562 0 0 0 .283.083.332.332 0 0 0 .267-.116.26.26 0 0 0 .084-.25.63.63 0 0 0-.35-.367.6.6 0 0 1-.334-.3.282.282 0 0 1 .017-.234.691.691 0 0 1 .2-.183c.166-.1.233-.15.183-.284-.05-.15-.133-.217-.35-.217-.083 0-.183.017-.284.017a1.526 1.526 0 0 1-.266.017.424.424 0 0 1-.4-.2c-.067-.317.183-.484.366-.6Zm-.05-4.118c0-.034-.05-.084-.083-.117a8.202 8.202 0 0 1-.917 1.467c0 .034.033.1.133.167a1.413 1.413 0 0 1 .484.367l.117.133c.166.234.1.25.033.267-.05.017-.15-.133-.234-.217a1.755 1.755 0 0 0-.25-.25c-.016-.016-.033-.016-.05-.033a.016.016 0 0 1-.016-.017c-.017-.016-.034-.016-.067-.033-.017 0-.017-.017-.033-.017a.488.488 0 0 0-.367-.05q-.275.325-.6.65h.066a.865.865 0 0 1 .65.267.45.45 0 0 1 .017.534c-.067.15-.083.2-.016.283a.058.058 0 0 0 .033.017c.033 0 .067-.017.117-.017h.016a1.066 1.066 0 0 0 .267-.1 1.787 1.787 0 0 1 .667-.166.527.527 0 0 1 .484.25.766.766 0 0 0 .783.083.25.25 0 0 0 .084-.333.806.806 0 0 0-.3-.267c-.134-.084-.167-.134-.184-.167-.1-.183.05-.317.167-.417.133-.117.2-.183.15-.3-.117-.333-.65-.167-.65-.167-.167.034-.267-.016-.284-.1a.214.214 0 0 1 .117-.267l.033-.033a1.536 1.536 0 0 0 .134-.083c.3-.217.35-.35.35-.434a.228.228 0 0 0-.1-.167.405.405 0 0 0-.3-.066 2.961 2.961 0 0 0-.5.216.232.232 0 0 1-.234-.016.159.159 0 0 1-.067-.167.636.636 0 0 1 .234-.35.352.352 0 0 0 .116-.35Zm.8-1.168a.606.606 0 0 0-.383-.416h-.016a5.635 5.635 0 0 1-.3 1.033 1.573 1.573 0 0 0 .383-.166c.2-.134.333-.284.317-.45Zm-.033-1.6v-.134a1.901 1.901 0 0 0-.4-.984 5.601 5.601 0 0 1 .134 1.184 1.812 1.812 0 0 1-.017.3c.133-.083.283-.233.283-.366Zm-.366-4.436c-.05-.25.233-.4.533-.567.467-.25.784-.45.7-.834a.311.311 0 0 0-.083-.166c-.083-.05-.217 0-.333.033-.15.033-.284.083-.384.017a.295.295 0 0 1-.117-.184c-.033-.166.117-.317.284-.483.3-.317.483-.534.217-.85-.15-.117-.3-.05-.5.05-.167.083-.384.183-.518-.034-.116-.2 0-.434.134-.65.183-.317.283-.517.033-.7-.167-.134-.267-.084-.433.016a.34.34 0 0 1-.35.067c-.117-.05-.184-.184-.25-.45a1.027 1.027 0 0 0-.367-.634.335.335 0 0 0-.284-.017c-.183.067-.183.267-.167.517v.017a1.168 1.168 0 0 0 .05.233.35.35 0 0 1-.083.417.324.324 0 0 1-.4-.033c-.134-.084-.217-.117-.35-.017-.05.05-.067.083-.067.117 0 .133.167.317.3.483.167.184.283.317.233.467a.279.279 0 0 1-.15.184.603.603 0 0 1-.467-.067c-.133-.05-.3-.117-.383-.083q-.075.025-.1.15c-.083.25.117.4.383.6.15.117.3.217.3.35a.25.25 0 0 1-.066.217c-.083.067-.184.017-.284-.017-.133-.05-.233-.083-.3-.033a.087.087 0 0 0-.033.067 1.088 1.088 0 0 0 .283.667 9.6 9.6 0 0 1 1.685 1.717c.1.033.166-.1.2-.283a10.79 10.79 0 0 0-.284-3.319.128.128 0 1 1 .25-.05c.067.334.134.65.167.934a9.057 9.057 0 0 1 .05 3.252 7.549 7.549 0 0 1 .717 1.417c.467-.183.434-.4.417-.484 0-.083-.05-.1-.2-.166-.067-.034-.134-.067-.217-.117a.354.354 0 0 1-.167-.384.235.235 0 0 1 .234-.166 1.292 1.292 0 0 0 1.05-.634.321.321 0 0 0-.033-.367c-.083-.1-.2-.083-.4-.033a.416.416 0 0 1-.35-.017q-.075 0-.1-.15Zm-19.577 6.837a.772.772 0 0 0-.467.117c-.283.15-.25.05-.266-.034-.034-.067-.05-.15-.167-.15-.05 0-.033.017-.234.05a2.051 2.051 0 0 1-.45.067c-.167 0-.367.016-.367.117 0 .083.117.15.184.216a.325.325 0 0 1 .1.284v1.917c0 .35.033.35-.117.434-.1.05-.333.1-.333.217s.166.05.316.05a3.608 3.608 0 0 1 .484-.05 1.87 1.87 0 0 1 .4.05c.234.033.45.033.45-.067s-.25-.15-.35-.217c-.117-.066-.083-.417-.083-.417v-1.6a.768.768 0 0 1 .6-.75c.2 0 .184.066.134.133a.58.58 0 0 0-.167.366.492.492 0 0 0 .517.5.501.501 0 0 0 .567-.55c.033-.566-.517-.683-.75-.683ZM36.712 41.2a.552.552 0 0 1 .25.066 2.11 2.11 0 0 1 .417.317c.15.15.283.067.233-.083-.033-.1-.266-.567-.367-.8-.05-.117-.133-.05-.183 0a.365.365 0 0 1-.283.15h-2.535a3.164 3.164 0 0 1-.6-.017c-.134-.034-.25-.034-.25.1s.083.167.25.2c.333.067.35.283.35.283v3.435c0 .35-.067.384-.167.45-.1.05-.333.1-.333.217s.166.067.316.05.467-.066.667-.066a1.869 1.869 0 0 1 .4.05c.234.033.45.033.45-.067s-.2-.167-.316-.233-.117-.384-.117-.384V42.65h1.268c.083 0 .183-.033.283.2.033.1.1.317.183.317s.084-.167.05-.35a1.368 1.368 0 0 1 0-.6c.017-.167.017-.35-.05-.35s-.133.216-.183.316a.248.248 0 0 1-.283.184h-1.268V41.25h1.818Zm9.905 1.3a3.08 3.08 0 0 1-.45.05 2.27 2.27 0 0 1-.35-.033c-.234-.017-.45-.033-.45.067s.25.15.366.216.083.417.083.417v1.334a.754.754 0 0 1-.683.684.494.494 0 0 1-.45-.5v-2.018c0-.267-.2-.15-.367-.15a1.868 1.868 0 0 1-.4-.05c-.234-.033-.45-.033-.45.067s.25.15.366.216.083.417.083.417v1.818a.665.665 0 0 0 .684.684 1.516 1.516 0 0 0 .8-.367c.267-.167.267-.05.3.016s-.033.217.117.2l.367-.033c.167 0 .584.1.584 0 0-.083-.134-.133-.2-.2a.415.415 0 0 1-.1-.334v-1.8c0-.35-.05-.35.116-.434.1-.05.25-.133.25-.217.034-.116-.066-.066-.216-.05Zm-3.035 2.902a1.122 1.122 0 0 1-.7.216.9.9 0 0 1-.767-.5 1.34 1.34 0 0 1-1.051.55c-.684 0-1.234-.333-1.234-1.083s.817-1.234 1.534-1.234h.334a1.042 1.042 0 0 0-.15-.45.58.58 0 0 0-.467-.3c-.15 0-.134.05-.134.05s.1.033.084.25a.456.456 0 0 1-.517.366.292.292 0 0 1-.317-.267c0-.35.534-.65 1.1-.65a1.232 1.232 0 0 1 1.051.55 6.866 6.866 0 0 1 .55 1.618c.1.317.384.75.6.8.1 0 .15.067.084.084Zm-2.301-.134a.753.753 0 0 0 .717-.934c-.05-.55-.367-.767-.7-.767a.781.781 0 0 0-.684.884c.033.534.3.834.667.817ZM31.193 35.064c.633 0 1.684.117 1.684 1.501 0 1.25-1.234 1.55-1.568 1.634a4.279 4.279 0 0 1-.783.083v1.168s0 .317.116.383.317.15.317.25-.233.1-.45.067a1.869 1.869 0 0 0-.4-.05 6.417 6.417 0 0 0-.667.067c-.15.016-.317.066-.317-.05s.233-.15.333-.217c.1-.05.167-.1.167-.45v-3.752a.398.398 0 0 0-.233-.25c-.167-.05-.25-.117-.25-.234 0-.133.133-.116.25-.1a1.881 1.881 0 0 0 .467.017c.2 0 .7-.067 1.333-.067Zm-.668 2.902c.467-.017 1.368-.067 1.368-1.284 0-1.301-.684-1.334-.834-1.334s-.55 0-.55.05c.017.066.017 1.434.017 2.568Zm5.637 2.184a5.124 5.124 0 0 1 .567-.05 1.869 1.869 0 0 1 .4.05c.233.033.467.033.467-.067s-.25-.15-.367-.216-.084-.417-.084-.417v-4.052c0-.45.067-.484-.033-.534-.083-.033-.1.084-.3.134a1.482 1.482 0 0 1-.434.033c-.166 0-.366.05-.366.15 0 .083.116.15.183.217a.325.325 0 0 1 .1.283v3.785c0 .334-.017.367-.117.434-.1.05-.333.1-.333.217s.167.05.317.033Zm9.971.05a3.33 3.33 0 0 1 .484-.05 1.87 1.87 0 0 1 .4.05c.233.033.467.033.467-.067s-.25-.15-.367-.216-.083-.417-.083-.417v-1.601c0-.45.533-.684.733-.684a.494.494 0 0 1 .45.5v1.818c0 .35.05.35-.116.434-.1.05-.334.1-.334.216s.167.05.317.05a3.608 3.608 0 0 1 .484-.05 1.87 1.87 0 0 1 .4.05c.233.034.467.034.467-.066s-.25-.15-.35-.217c-.117-.067-.084-.417-.084-.417v-1.817c0-.45-.333-.634-.75-.717a1.485 1.485 0 0 0-.817.1c-.3.116-.284.05-.3-.017-.034-.067.033-.217-.117-.2-.167.016-.033.016-.234.05a2.051 2.051 0 0 1-.45.066c-.167 0-.367.017-.367.117 0 .084.117.15.184.217a.325.325 0 0 1 .1.283v1.918c0 .35.05.35-.117.434-.1.05-.333.1-.333.216.016.1.183.034.333.017Zm-6.286.05a3.61 3.61 0 0 1 .483-.05 1.869 1.869 0 0 1 .4.05c.234.033.45.033.45-.067s-.25-.15-.35-.216c-.116-.067-.1-.417-.1-.417v-1.601a.79.79 0 0 1 .6-.767c.2 0 .184.067.134.133a.507.507 0 0 0-.167.367.543.543 0 0 0 1.084-.05c0-.55-.55-.683-.783-.683a.702.702 0 0 0-.45.116c-.284.15-.25.05-.267-.033-.034-.067-.05-.15-.15-.15-.05 0-.034.017-.234.05a2.051 2.051 0 0 1-.45.067c-.167 0-.367.033-.367.133 0 .083.117.15.183.217a.373.373 0 0 1 .117.283v1.918c0 .35.05.35-.117.433-.1.067-.333.1-.333.217s.167.05.317.05Zm-4.052-1.567a1.431 1.431 0 0 1-1.634 1.484 1.69 1.69 0 0 1-1.585-1.785 1.55 1.55 0 0 1 1.668-1.55 1.83 1.83 0 0 1 1.55 1.85Zm-2.368-1.418c-.367.25-.4.617.25 1.584s1 1.084 1.367.834.4-.617-.25-1.584c-.65-.95-1-1.084-1.367-.834Zm10.688 2.902a1.69 1.69 0 0 1-1.584-1.785 1.542 1.542 0 0 1 1.668-1.55 1.83 1.83 0 0 1 1.55 1.85 1.44 1.44 0 0 1-1.634 1.485Zm-.733-2.902c-.367.25-.4.617.25 1.584.634.968 1 1.084 1.367.834s.4-.617-.25-1.584c-.65-.95-1-1.084-1.367-.834Zm-5.803-.066h.333v2.25c0 .568.184.851.784.851a.7.7 0 0 0 .7-.7c0-.134-.1-.117-.133-.034-.033.117-.2.317-.3.317-.117 0-.217-.083-.217-.433v-2.268h.6c.15 0 .1-.2 0-.2h-.6v-1a.076.076 0 1 0-.15 0 1.421 1.421 0 0 1-.4.766.98.98 0 0 1-.65.267c-.117 0-.1.184.033.184Zm13.173 3.068c-.684 0-1.234-.334-1.234-1.084s.817-1.234 1.534-1.234h.35a1.042 1.042 0 0 0-.15-.45.604.604 0 0 0-.467-.3c-.15 0-.133.05-.133.05s.1.033.083.25a.444.444 0 0 1-.517.367.292.292 0 0 1-.316-.267c0-.35.533-.65 1.1-.65a1.232 1.232 0 0 1 1.05.55 6.866 6.866 0 0 1 .551 1.617c.1.317.383.75.6.8.1.017.15.084.084.117a1.181 1.181 0 0 1-.7.217.9.9 0 0 1-.768-.5 1.41 1.41 0 0 1-1.067.517Zm.25-2.085a.781.781 0 0 0-.683.884c.016.517.283.817.667.8a.753.753 0 0 0 .717-.933c-.05-.534-.367-.75-.7-.75Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1okuro2\",\"data-framer-name\":\"Eolo\",layoutDependency:layoutDependency,layoutId:\"TN4oEGbUn\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1onkxpd\",\"data-framer-name\":\"Eolo_1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"nq42RLPVe\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 66 35\"><g transform=\"translate(0.196 0.047)\" id=\"ss10323198285_1\"><path d=\"M 9.83 0.122 C 9.778 0.203 9.513 0.247 8.837 0.299 C 8.329 0.335 7.822 0.402 7.711 0.446 C 7.594 0.49 7.424 0.527 7.321 0.527 C 7.123 0.527 6.652 0.799 6.409 1.056 C 6.071 1.416 5.953 1.761 5.983 2.32 C 6.005 2.754 6.042 2.901 6.225 3.173 C 6.512 3.591 7.035 3.922 7.498 3.959 C 7.689 3.981 8.211 3.937 8.653 3.871 C 10.403 3.606 12.728 3.65 14.463 3.988 C 16.14 4.304 18.833 5.37 19.774 6.083 C 19.899 6.179 20.032 6.259 20.054 6.259 C 20.105 6.259 21.466 7.281 21.797 7.568 C 21.922 7.678 22.209 7.928 22.429 8.134 C 23.143 8.788 23.297 8.861 23.93 8.891 C 24.408 8.92 24.555 8.898 24.813 8.758 C 25.195 8.56 25.43 8.31 25.622 7.876 C 25.967 7.134 25.725 6.289 24.96 5.591 C 24.379 5.061 23.143 4.04 22.702 3.731 C 21.591 2.952 19.87 2.033 18.546 1.526 C 18.362 1.453 18.119 1.35 17.994 1.306 C 17.788 1.217 17.442 1.107 16.56 0.857 C 16.03 0.703 15.523 0.585 15.125 0.519 C 14.927 0.49 14.64 0.424 14.5 0.387 C 14.36 0.343 14.059 0.306 13.831 0.306 C 13.184 0.306 12.735 0.225 12.735 0.115 C 12.735 -0.047 9.933 -0.032 9.83 0.122 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 10.05 5.76 C 9.646 5.789 9.101 5.87 8.837 5.929 C 8.572 5.988 8.3 6.039 8.226 6.039 C 8.027 6.039 7.557 6.362 7.314 6.678 C 6.792 7.355 6.806 8.215 7.351 8.891 C 7.814 9.471 8.572 9.64 9.609 9.413 C 10.293 9.266 12.478 9.28 13.213 9.442 C 15.324 9.905 16.942 10.713 18.391 12.022 C 19.333 12.874 19.826 13.029 20.62 12.72 C 21.539 12.367 21.966 11.507 21.694 10.581 C 21.62 10.353 21.436 10.103 21.01 9.677 C 19.936 8.589 18.516 7.612 17.075 6.972 C 16.332 6.642 16.082 6.539 15.861 6.48 C 15.743 6.443 15.545 6.384 15.42 6.348 C 14.559 6.054 13.507 5.848 12.294 5.745 C 11.293 5.664 11.154 5.664 10.05 5.76 Z M 48.519 7.487 C 48.276 7.546 47.894 7.641 47.673 7.693 C 47.452 7.744 47.107 7.832 46.901 7.876 C 46.702 7.928 46.401 7.994 46.239 8.023 C 46.077 8.053 45.783 8.119 45.577 8.17 C 45.378 8.215 45.025 8.303 44.804 8.354 C 44.584 8.406 44.179 8.501 43.907 8.567 C 43.642 8.633 43.355 8.685 43.275 8.685 C 43.157 8.685 43.098 8.795 42.966 9.214 C 42.87 9.508 42.76 9.883 42.708 10.045 C 42.657 10.206 42.561 10.522 42.502 10.743 C 42.223 11.742 42.134 12.036 42.076 12.176 C 42.046 12.257 42.002 12.419 41.973 12.544 C 41.951 12.661 41.848 13.029 41.752 13.352 C 41.656 13.675 41.502 14.19 41.421 14.491 C 41.333 14.793 41.237 15.123 41.208 15.226 C 41.112 15.513 40.95 16.072 40.391 18.056 C 40.104 19.063 39.766 20.224 39.648 20.628 C 39.384 21.532 38.883 23.282 38.729 23.826 C 38.663 24.046 38.567 24.377 38.508 24.561 C 38.398 24.935 38.015 26.222 37.846 26.839 C 37.78 27.06 37.684 27.376 37.633 27.537 C 37.552 27.809 37.456 28.14 37.228 28.934 C 37.037 29.625 36.868 31.095 36.934 31.558 C 37.096 32.653 37.221 33.042 37.604 33.572 C 38.067 34.211 38.663 34.608 39.435 34.777 C 40.229 34.953 41.943 34.718 42.642 34.351 C 42.723 34.307 42.98 34.182 43.216 34.064 C 43.672 33.851 43.922 33.557 43.922 33.233 C 43.929 33.131 43.973 32.969 44.032 32.866 C 44.091 32.763 44.135 32.601 44.143 32.498 C 44.143 32.403 44.187 32.19 44.245 32.021 C 44.532 31.175 44.591 30.948 44.569 30.793 C 44.547 30.639 44.518 30.624 44.201 30.646 C 43.738 30.683 43.591 30.624 43.407 30.338 C 43.223 30.036 43.216 29.514 43.378 28.963 C 43.436 28.743 43.547 28.383 43.606 28.162 C 43.672 27.942 43.753 27.677 43.789 27.581 C 43.826 27.478 43.885 27.265 43.922 27.104 C 43.951 26.935 44.017 26.699 44.054 26.582 C 44.135 26.347 44.268 25.891 44.459 25.222 C 44.702 24.377 44.834 23.929 44.915 23.642 C 44.966 23.48 45.069 23.149 45.135 22.907 C 45.202 22.664 45.305 22.319 45.356 22.135 C 45.408 21.951 45.503 21.606 45.569 21.363 C 45.717 20.849 45.9 20.195 45.989 19.93 C 46.018 19.827 46.114 19.497 46.202 19.195 C 46.283 18.894 46.379 18.541 46.415 18.423 C 46.518 18.071 46.687 17.468 47.011 16.329 C 47.739 13.771 48.997 9.354 49.1 9.016 C 49.166 8.81 49.284 8.413 49.365 8.134 C 49.446 7.847 49.534 7.56 49.556 7.487 C 49.593 7.384 49.549 7.362 49.277 7.369 C 49.1 7.377 48.762 7.428 48.519 7.487 Z M 10.227 12.316 C 10.212 12.33 9.874 12.382 9.484 12.426 C 9.094 12.47 8.697 12.536 8.601 12.573 C 8.506 12.61 8.219 12.698 7.954 12.764 C 7.498 12.882 7.358 12.933 6.718 13.212 C 6.35 13.374 5.806 13.653 5.321 13.94 C 3.879 14.778 2.379 16.285 1.466 17.799 C 1.128 18.372 0.672 19.291 0.672 19.416 C 0.672 19.452 0.628 19.592 0.569 19.724 C -0.108 21.312 -0.196 24.12 0.385 25.854 C 1.04 27.846 2.445 29.287 4.387 29.963 C 4.593 30.029 4.821 30.117 4.901 30.146 C 5.475 30.382 7.196 30.602 8.351 30.595 C 10.234 30.573 12.625 30.132 14.206 29.5 C 14.971 29.191 15.258 29.073 15.677 28.882 C 15.942 28.757 16.214 28.61 16.28 28.552 C 16.427 28.419 16.427 28.405 15.714 26.876 C 15.626 26.67 15.456 26.295 15.346 26.031 C 15.236 25.766 15.125 25.516 15.089 25.479 C 15.059 25.435 15.015 25.318 14.986 25.215 C 14.919 24.935 14.758 24.906 14.368 25.104 C 13.949 25.318 12.536 25.869 11.779 26.126 C 10.536 26.538 9.491 26.766 8.866 26.766 C 8.307 26.766 7.395 26.582 6.939 26.383 C 6.476 26.178 5.887 25.568 5.718 25.119 C 5.585 24.781 5.585 24.752 5.703 24.663 C 5.769 24.619 6.167 24.553 6.578 24.524 C 8.895 24.362 11.021 23.936 12.772 23.282 C 13.228 23.113 14.338 22.539 14.831 22.223 C 15.508 21.79 16.449 20.827 16.832 20.173 C 17.339 19.313 17.59 18.431 17.641 17.394 C 17.663 16.873 17.648 16.336 17.597 16.079 C 17.472 15.395 17.06 14.638 16.538 14.109 C 16.008 13.565 15.824 13.433 15.125 13.102 C 14.846 12.963 14.552 12.823 14.478 12.786 C 14.405 12.749 14.206 12.691 14.037 12.654 C 13.868 12.617 13.596 12.558 13.434 12.522 C 12.801 12.367 12.029 12.286 11.161 12.286 C 10.668 12.286 10.241 12.301 10.227 12.316 Z M 11.757 16.248 C 12.639 16.652 12.772 18.122 11.999 18.997 C 11.749 19.283 10.852 19.93 10.705 19.93 C 10.683 19.93 10.558 19.974 10.433 20.033 C 9.94 20.246 9.079 20.496 8.248 20.658 C 7.66 20.775 5.814 20.959 5.725 20.908 C 5.644 20.856 5.718 20.342 5.85 20.085 C 5.902 19.982 6.042 19.695 6.159 19.46 C 6.417 18.931 7.042 18.1 7.505 17.666 C 8.792 16.476 10.786 15.807 11.757 16.248 Z M 26.6 12.867 C 25.313 13.029 23.856 13.646 22.679 14.521 C 20.671 16.02 19.487 18.071 19.215 20.533 C 19.097 21.599 19.274 23.348 19.583 24.23 C 19.803 24.84 20.142 25.59 20.326 25.869 C 20.436 26.045 20.532 26.2 20.532 26.222 C 20.532 26.317 21.275 27.214 21.709 27.633 C 22.143 28.066 22.782 28.581 23.143 28.801 C 23.636 29.11 24.629 29.558 25.099 29.698 C 25.401 29.786 25.747 29.889 25.864 29.926 C 25.989 29.963 26.526 30.029 27.063 30.073 C 28.049 30.161 29.373 30.088 29.91 29.919 C 30.035 29.882 30.351 29.786 30.616 29.713 C 31.263 29.522 32.293 29.015 32.926 28.566 C 33.624 28.081 34.698 26.979 35.147 26.295 C 35.794 25.318 36.419 23.884 36.419 23.399 C 36.419 23.311 36.471 23.054 36.53 22.819 C 36.596 22.561 36.64 22.069 36.64 21.547 C 36.64 18.578 35.242 15.925 32.786 14.241 C 32.043 13.734 30.962 13.242 30.278 13.095 C 30.116 13.058 29.888 12.999 29.77 12.948 C 29.513 12.852 27.21 12.793 26.6 12.867 Z M 28.755 17.755 C 30.05 18.034 31.138 19.034 31.602 20.371 C 31.874 21.15 31.807 22.289 31.44 23.083 C 30.873 24.296 29.608 25.156 28.203 25.274 C 27.107 25.362 25.945 24.906 25.18 24.09 C 24.393 23.245 24.07 22.297 24.173 21.069 C 24.356 18.828 26.512 17.277 28.755 17.755 Z M 55.948 12.867 C 54.227 13.036 52.292 13.962 50.954 15.256 C 49.026 17.108 48.107 19.548 48.328 22.157 C 48.512 24.325 49.291 26.031 50.784 27.545 C 51.358 28.133 52.079 28.75 52.189 28.75 C 52.211 28.75 52.351 28.838 52.506 28.941 C 53.234 29.434 54.595 29.926 55.639 30.066 C 58.875 30.514 61.943 29.294 63.921 26.773 C 64.443 26.111 64.458 26.097 64.907 25.185 C 65.245 24.502 65.451 23.884 65.65 22.973 C 65.804 22.282 65.804 20.702 65.657 20.129 C 65.598 19.893 65.547 19.629 65.547 19.541 C 65.547 19.452 65.458 19.144 65.355 18.864 C 65.253 18.578 65.142 18.269 65.113 18.166 C 64.907 17.534 64.039 16.219 63.34 15.491 C 62.296 14.403 60.633 13.396 59.368 13.095 C 59.228 13.065 59 12.999 58.861 12.955 C 58.53 12.852 56.691 12.801 55.948 12.867 Z M 58.11 17.799 C 59.346 18.144 60.324 19.129 60.773 20.481 C 60.92 20.93 60.898 22.091 60.736 22.576 C 60.317 23.789 59.405 24.693 58.155 25.119 C 57.676 25.281 56.529 25.288 56.014 25.134 C 54.903 24.788 54.102 24.112 53.594 23.069 C 53.374 22.613 53.16 21.599 53.219 21.261 C 53.359 20.423 53.418 20.202 53.646 19.739 C 54.411 18.144 56.338 17.314 58.11 17.799 Z\" fill=\"rgb(0, 0, 0)\"></path></g></svg>',svgContentId:10323198285,withExternalLayout:true})})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,y:(componentViewport?.y||0)+0+(((componentViewport?.height||388)-0-232)/2+1+0)+0+0+153,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ajrop6-container\",layoutDependency:layoutDependency,layoutId:\"sS3djk6MS-container\",nodeId:\"sS3djk6MS\",rendersWithMotion:true,scopeId:\"JGHshZ_2m\",children:/*#__PURE__*/_jsx(AtomsSpacer,{height:\"100%\",id:\"sS3djk6MS\",layoutId:\"sS3djk6MS\",style:{width:\"100%\"},variant:zTEEDbGHO,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qhiug8-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"viV0JkOcI-container\",nodeId:\"viV0JkOcI\",rendersWithMotion:true,scopeId:\"JGHshZ_2m\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"viV0JkOcI\",layoutId:\"viV0JkOcI\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13nw53d\",\"data-framer-name\":\"Third row\",layoutDependency:layoutDependency,layoutId:\"u6pTjMoH1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-139yco5\",\"data-framer-name\":\"$25\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"iUsls9u4U\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\" style=\"enable-background:new 0 0 80 80\" xml:space=\"preserve\"><path d=\"M40 24c-5.6 0-10 7.2-10 16s4.4 16 10 16 10-7.2 10-16-4.4-16-10-16zm0 31.7c-2.6 0-5-1.7-6.8-4.6-1.8-2.8-2.8-6.8-2.8-11.1 0-4.4 1.1-8.3 2.8-11.1 1.8-2.8 4.2-4.6 6.8-4.6 2.6 0 5 1.7 6.8 4.6 1.8 2.8 2.9 6.8 2.8 11.1 0 4.4-1.1 8.3-2.8 11.1-1.8 2.9-4.2 4.6-6.8 4.6zm0-30.5c-4.9 0-8.8 6.7-8.8 14.8 0 8.1 3.9 14.8 8.8 14.8s8.8-6.7 8.8-14.8c0-8.1-3.9-14.8-8.8-14.8zm-5.7 4.9c1.5-2.5 3.5-4.1 5.7-4.1s4.2 1.6 5.7 4.1c.9 1.6 1.6 3.6 2 5.8-1.1-2-3-3.6-5.2-4.2-.8-.2-1.6-.3-2.4-.3-3.3 0-6.2 1.8-7.7 4.6.3-2.4 1-4.3 1.9-5.9zM48 38.5h-2.6v-4.6c1.3 1.2 2.3 2.8 2.6 4.6zm-5.6-6.3v6.3h-1.9v-6.6c.6 0 1.3.1 1.9.3zm-1.9 9h1.9v6.6c-.6.2-1.3.3-1.9.4v-7zm-1.6-9.3v16.2l-1.5-.3V32.3c.5-.2 1-.3 1.5-.4zm-3 1.1v14c-.6-.3-1.1-.7-1.5-1.1V34.1c.4-.4.9-.8 1.5-1.1zm-3.1 3.1v7.8c-.6-1.2-1-2.5-1-3.9s.4-2.7 1-3.9zm12.9 13.8C44.2 52.5 42.2 54 40 54s-4.2-1.6-5.7-4.1c-.9-1.6-1.6-3.6-2-5.8 1.5 2.7 4.3 4.6 7.7 4.6 3.3 0 6.2-1.8 7.7-4.6-.4 2.3-1.1 4.2-2 5.8zm-.3-3.8v-4.8H48c-.2 1.9-1.2 3.5-2.6 4.8zm-.5-5.4v5.8c-.6.4-1.2.8-1.9 1.1v-6.9h-2.5v-1.6H43v-6.6c.7.3 1.3.6 1.9 1.1v5.6h3.2c0 .3.1.6.1.9v.7h-3.3zm-7.6-13.1-.7.4-2.2 4.5.9-.6.5-1.1 1.7-.7.2.7c.2 0 .4-.1.5-.1l-.9-3.1zm-1.1 2.5.8-1.7.4 1.2-1.2.5zm5-.5c-.3.3-.6.4-1 .4-.8 0-1.4-.6-1.4-1.4 0-.8.6-1.4 1.4-1.4.4 0 .8.2 1 .4l.4-.4c-.4-.4-.9-.6-1.4-.6-1.1 0-1.9.9-1.9 1.9 0 1.1.9 1.9 1.9 1.9.6 0 1.1-.2 1.4-.6l-.4-.2zm3.2-.7-.4-.2-.5 1.2-.4-1.9-.5-.3-1 3.2c.2 0 .4.1.5.1l.6-1.8.4 2.2c.1 0 .2.1.3.1l.6-1.4.6 2.1c.2.2.5.3.7.5l-.9-3.8zm-7.8 19.7c0 .1-.4.4-.8.2h-.1l-.1.3-.1.2h.1c.3.1.5.1.6 0l-.6 1.7.5.2.8-2.5-.3-.1zm2.7 1.4c.1-.4-.2-.7-.8-.8-.5-.1-.9.1-1 .6 0 .2.1.4.3.6-.5.1-.5.5-.6.6-.1.4.1.8.9 1 .8.1 1.1-.3 1.1-.7.1-.3-.1-.5-.3-.7.3-.2.4-.4.4-.6zm-.6 1.1c0 .2-.2.4-.5.3-.3 0-.4-.2-.4-.5s.3-.4.5-.3c.3 0 .4.3.4.5zm.1-1.2c0 .2-.2.3-.4.3s-.4-.2-.3-.4c0-.2.2-.3.5-.3.1.1.2.2.2.4zm5.5-.2c-.1-.3-.5-1.3-1.4-1-.6.3-.9.7-.6 1.3.1.4.6.7 1.1.5.2-.1.4-.2.5-.4.2.5 0 .7-.2.9-.2.1-.4 0-.5-.1l-.4.2c.2.3.6.4 1 .3.4-.2.8-.7.5-1.7zm-1 .4c-.2.1-.5.1-.6-.3-.1-.4.2-.5.3-.6.3-.1.5 0 .6.3.1.3-.1.5-.3.6zm-1.4.4c0-.4-.1-1.4-1.1-1.3-.6 0-1 .4-.9 1 0 .4.4.8.9.7.2 0 .4-.1.5-.3 0 .6-.2.7-.4.8-.2.1-.4 0-.5-.2l-.4.2c.1.3.5.5.9.5.5 0 1-.4 1-1.4zm-1.1.1c-.2 0-.5 0-.5-.4s.3-.5.4-.5c.3 0 .5.1.5.4.1.3-.2.4-.4.5z\" style=\"fill:#222221\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q1kceg\",layoutDependency:layoutDependency,layoutId:\"Q5fQnMiom\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4u0hms\",\"data-framer-name\":\"Unipol_Gruppo_logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"TcigqqLWp\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 78 32\"><path d=\"M 40.212 30.46 L 40.212 31.927 L 12.476 31.927 C 8.364 31.927 4.18 31.298 2.44 30.602 L 2.44 27.595 C 3.762 28.501 6.76 30.46 13.73 30.46 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 17.146 27.595 L 40.217 27.595 L 40.217 29.062 L 15.266 29.062 C 9.827 29.067 4.253 25.783 1.254 21.028 L 1.254 15.094 C 1.463 15.791 4.806 27.595 17.146 27.595 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 54.354 30.24 L 55.075 30.24 L 55.075 31.146 C 54.971 31.172 54.814 31.193 54.616 31.193 C 53.905 31.193 53.613 30.785 53.613 29.779 C 53.613 28.784 53.916 28.365 54.616 28.365 C 54.966 28.365 55.269 28.433 55.661 28.596 L 55.828 28.664 L 55.828 27.805 L 55.76 27.773 C 55.551 27.669 55.169 27.548 54.537 27.548 C 53.346 27.548 52.74 28.297 52.74 29.779 C 52.74 31.262 53.341 32.01 54.522 32.01 C 55.107 32.01 55.619 31.88 55.864 31.743 L 55.927 31.707 L 55.927 29.444 L 54.349 29.444 L 54.349 30.24 Z M 59.448 28.947 C 59.448 29.282 59.365 29.481 58.926 29.481 L 58.241 29.481 L 58.241 28.418 L 58.926 28.418 C 59.365 28.412 59.448 28.601 59.448 28.947 M 60.357 28.947 C 60.357 28.046 59.861 27.611 58.842 27.611 L 57.395 27.611 L 57.395 31.942 L 58.247 31.942 L 58.247 30.277 L 58.894 30.277 L 59.636 31.942 L 60.618 31.942 L 59.736 30.104 C 60.159 29.905 60.357 29.533 60.357 28.947 M 64.04 30.476 C 64.04 30.979 63.811 31.204 63.293 31.204 C 62.776 31.204 62.546 30.979 62.546 30.476 L 62.546 27.606 L 61.695 27.606 L 61.695 30.534 C 61.695 31.9 62.922 32.005 63.293 32.005 C 63.67 32.005 64.892 31.9 64.892 30.534 L 64.892 27.611 L 64.04 27.611 Z M 67.692 29.607 L 67.086 29.607 L 67.086 28.412 L 67.692 28.412 C 68.095 28.412 68.293 28.606 68.293 29.009 C 68.293 29.413 68.095 29.607 67.692 29.607 M 67.666 27.606 L 66.235 27.606 L 66.235 31.937 L 67.086 31.937 L 67.086 30.403 L 67.666 30.403 C 69.051 30.403 69.202 29.428 69.202 29.004 C 69.202 28.13 68.627 27.606 67.666 27.606 M 71.903 29.607 L 71.297 29.607 L 71.297 28.412 L 71.903 28.412 C 72.311 28.412 72.504 28.606 72.504 29.009 C 72.504 29.413 72.305 29.607 71.903 29.607 M 71.877 27.606 L 70.446 27.606 L 70.446 31.937 L 71.297 31.937 L 71.297 30.403 L 71.877 30.403 C 73.261 30.403 73.413 29.428 73.413 29.004 C 73.408 28.13 72.833 27.606 71.877 27.606 M 76.292 31.204 C 75.68 31.204 75.466 30.827 75.466 29.774 C 75.466 28.716 75.68 28.339 76.292 28.339 C 76.903 28.339 77.117 28.716 77.117 29.774 C 77.117 30.832 76.903 31.204 76.292 31.204 M 76.292 27.543 C 74.792 27.543 74.599 28.737 74.599 29.774 C 74.599 30.811 74.792 32.005 76.292 32.005 C 77.791 32.005 77.984 30.811 77.984 29.774 C 77.984 28.732 77.791 27.543 76.292 27.543\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 66.418 11.768 C 64.009 11.768 63.602 13.156 63.602 16.262 C 63.602 19.373 64.009 20.761 66.418 20.761 C 68.826 20.761 69.233 19.373 69.233 16.262 C 69.233 13.156 68.826 11.768 66.418 11.768 M 66.418 23.971 C 60.608 23.971 59.866 19.855 59.866 16.267 C 59.866 12.68 60.613 8.563 66.418 8.563 C 72.227 8.563 72.969 12.68 72.969 16.267 C 72.969 19.855 72.227 23.971 66.418 23.971 M 33.473 8.563 C 32.245 8.563 31.012 8.862 29.857 9.432 C 29.601 8.594 28.818 7.976 27.898 7.976 L 26.237 7.976 L 26.237 23.631 L 29.946 23.631 L 29.946 12.512 C 30.557 12.187 31.508 11.8 32.929 11.8 C 34.309 11.8 34.894 12.344 34.894 13.627 L 34.894 23.631 L 38.603 23.631 L 38.603 13.345 C 38.613 10.171 36.884 8.563 33.473 8.563 M 51.894 20.735 C 50.53 20.735 49.611 20.295 49.109 20.022 L 49.109 12.512 C 49.616 12.24 50.541 11.8 51.894 11.8 C 54.334 11.8 54.825 13.507 54.825 16.267 C 54.819 19.022 54.328 20.735 51.894 20.735 M 52.625 8.563 C 51.293 8.563 50.102 8.841 48.999 9.401 C 48.733 8.579 47.955 7.976 47.051 7.976 L 45.389 7.976 L 45.389 31.937 L 49.099 31.937 L 49.099 23.065 C 50.159 23.641 51.418 23.971 52.62 23.971 C 56.611 23.971 58.55 21.452 58.55 16.267 C 58.56 11.082 56.617 8.563 52.625 8.563 M 43.859 23.631 L 43.859 7.976 L 40.149 7.976 L 40.149 21.573 C 40.149 22.704 41.074 23.631 42.203 23.631 Z M 42.004 6.74 C 43.294 6.74 44.339 5.688 44.339 4.399 C 44.339 3.111 43.294 2.058 42.004 2.058 C 40.714 2.058 39.669 3.106 39.669 4.399 C 39.669 5.693 40.714 6.74 42.004 6.74 M 74.28 0 L 74.28 21.573 C 74.28 22.704 75.205 23.631 76.328 23.631 L 77.99 23.631 L 77.99 2.053 C 77.99 0.922 77.065 0 75.936 0 Z M 23.05 0 C 21.922 0 20.997 0.927 20.997 2.058 L 20.997 16.377 C 20.997 17.901 20.997 19.965 18.949 21.787 C 16.149 24.28 12.46 23.055 12.366 23.023 C 14.043 23.856 15.861 23.971 16.739 23.971 C 18.609 23.971 24.706 23.442 24.706 16.665 L 24.706 0 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 16.739 20.53 C 13.876 20.53 12.481 19.174 12.481 16.372 L 12.481 2.058 C 12.481 0.927 11.556 0 10.428 0 L 8.767 0 L 8.767 16.655 C 8.767 19.546 9.874 21.295 11.29 22.358 C 12.188 22.578 17.799 23.736 20.25 19.142 C 19.565 20.075 18.395 20.53 16.739 20.53\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:12277004564,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p494t9\",\"data-framer-name\":\"Geox\",layoutDependency:layoutDependency,layoutId:\"yfG1UePKe\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9ppaf5\",\"data-framer-name\":\"Geox_Logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"HIXmPIHOR\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 84 14\"><path d=\"M 50.711 13.334 C 45.592 13.334 41.43 10.956 40.686 8.171 C 40.583 7.781 40.531 7.379 40.532 6.976 C 40.532 6.042 40.802 5.174 41.294 4.394 C 42.637 2.265 46.379 0.371 51.001 0.371 L 52.143 0.371 C 54.752 0.371 57.69 1.298 59.205 2.28 C 61.018 3.456 62.127 5.079 62.127 6.976 C 62.129 7.765 61.928 8.541 61.543 9.231 C 60.326 11.433 56.389 13.334 52.016 13.334 Z M 45.258 6.858 C 45.258 9.427 47.977 11.51 51.33 11.51 C 54.683 11.51 57.402 9.427 57.402 6.858 C 57.402 4.29 54.683 2.207 51.33 2.207 C 47.976 2.207 45.258 4.29 45.258 6.858\" fill=\"rgb(0,0,0)\"></path><path d=\"M 23.548 11.897 L 23.548 1.824 C 23.548 1.275 23.789 0.744 24.642 0.744 L 39.669 0.744 C 39.669 0.744 40.222 0.744 40.222 1.299 L 40.222 2.072 C 40.222 2.072 40.222 2.645 39.669 2.645 L 28.948 2.645 C 28.948 2.645 28.452 2.657 28.452 3.201 L 28.452 5.312 C 28.452 5.312 28.355 5.919 29.116 5.919 L 37.684 5.919 C 37.684 5.919 38.214 5.919 38.214 6.468 L 38.214 7.272 C 38.214 7.821 37.684 7.821 37.684 7.821 L 29.117 7.821 C 28.376 7.821 28.453 8.428 28.453 8.428 L 28.453 10.536 C 28.453 11.075 28.948 11.075 28.948 11.075 L 39.669 11.075 C 40.222 11.075 40.222 11.648 40.222 11.648 L 40.222 12.422 C 40.222 12.976 39.669 12.976 39.669 12.976 L 24.642 12.976 C 23.789 12.977 23.548 12.446 23.548 11.897\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 78.419 0.744 C 77.566 0.744 77.228 1.085 77.228 1.085 L 73.129 4.848 C 73.129 4.848 72.947 5 72.738 5 C 72.529 5 72.347 4.848 72.347 4.848 L 68.25 1.085 C 68.25 1.085 67.911 0.744 67.057 0.744 L 62.151 0.744 C 61.714 0.744 61.645 1.254 62.151 1.551 L 69.351 6.327 C 69.83 6.783 69.533 7.341 69.418 7.404 C 69.424 7.41 62.071 12.426 62.071 12.426 C 62.071 12.426 61.315 12.98 62.468 12.98 L 67.888 12.98 C 67.888 12.98 68.464 13.035 68.97 12.534 L 72.44 9.116 C 72.44 9.116 72.558 9.031 72.738 9.031 C 72.918 9.031 73.036 9.116 73.036 9.116 L 76.507 12.534 C 77.012 13.035 77.588 12.98 77.588 12.98 L 83.012 12.98 C 84.166 12.98 83.409 12.426 83.409 12.426 C 83.409 12.426 76.057 7.41 76.062 7.404 C 75.947 7.341 75.651 6.783 76.13 6.327 L 83.329 1.551 C 83.836 1.254 83.766 0.744 83.329 0.744 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 15.481 3.619 C 15.556 3.663 15.643 3.685 15.731 3.681 L 20.141 3.681 C 20.335 3.681 20.614 3.378 20.334 3.105 C 20.03 2.808 19.547 2.495 19.218 2.28 C 17.705 1.298 14.514 0.371 11.905 0.371 L 10.512 0.371 C 5.889 0.371 2.146 2.264 0.805 4.393 C 0.313 5.173 0.043 6.042 0.043 6.976 C 0.043 7.391 0.095 7.79 0.198 8.171 C 0.941 10.956 5.103 13.334 10.222 13.334 L 11.528 13.334 C 15.9 13.334 19.837 11.432 21.054 9.231 C 21.439 8.541 21.64 7.765 21.638 6.976 L 21.638 6.463 C 21.638 5.881 21.108 5.881 21.108 5.881 L 10.489 5.882 C 10.489 5.882 9.959 5.882 9.959 6.464 L 9.959 7.293 C 9.959 7.876 10.489 7.876 10.489 7.876 L 16.347 7.876 C 16.772 7.876 16.659 8.189 16.659 8.189 C 15.912 10.109 13.589 11.509 10.84 11.509 C 7.487 11.509 4.768 9.426 4.768 6.857 C 4.768 4.289 7.487 2.206 10.84 2.206 C 10.902 2.206 11.214 2.207 11.275 2.208 C 12.803 2.243 14.189 2.711 15.258 3.456 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:11655484359,withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-futsi2\",\"data-framer-name\":\"$32\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"GMzvhPJZy\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\" style=\"enable-background:new 0 0 80 80\" xml:space=\"preserve\"><path d=\"M32.9 47.9h.4V47h.8c.4 0 1 0 1-.7s-.6-.7-1-.7h-1.3l.1 2.3zm.4-1.3V46h.9c.3 0 .5 0 .5.3s-.2.3-.5.3h-.9zm2.4 1.3h.5l.2-.5h1.3l.2.5h.5l-1.1-2.2h-.5l-1.1 2.2zm.8-.9.5-1 .5 1h-1zm3 .9h.4V47h.7l.7.9h.5l-.7-.9c.2 0 .3-.1.5-.2.1-.1.2-.3.2-.5 0-.5-.4-.7-.9-.7h-1.4v2.3zm.4-1.3V46h.9c.4 0 .5.1.5.3 0 .3-.2.3-.5.3h-.9zm3.2-1h.4v2.2h-.4v-2.2zm3.6.7c-.1-.2-.3-.4-.8-.4-.3 0-.6.1-.6.3 0 .1.1.2.5.2l.5.1c.5.1.8.3.8.6 0 .5-.5.7-1.1.7-1 0-1.2-.5-1.3-.6l.4-.1c.1.2.3.4.8.4.4 0 .7-.1.7-.3 0-.1-.2-.2-.5-.3l-.5-.1c-.5-.1-.8-.3-.8-.6 0-.7.9-.7 1-.7 1 0 1.1.4 1.2.6l-.3.2zm16.9-4.2c.2 1.6 1 1.3 1 1.5h-3.1c0-.1.9 0 .7-1.4l-.8-6.1c0-.2 0-.3-.1-.3s-2.8 6.5-2.8 6.5c0 .1-.1.2-.2 0-.1-.1-2.5-5.5-2.5-5.5-.1-.3-.3-.7-.4-.8-.1-.1-.2-.2-.2.3l-.6 6.1c-.2 1.1.9 1 .8 1.1h-2.2c0-.1.7 0 .9-1.1l.7-6.8c-.1-1.3-1-1.2-1-1.4h2.3v.1l2.5 5.4c0 .1.1.1.1.1.1.2.1.3.2.1l2.4-5.7h2.3c0 .1-.9 0-.9 1.2l.9 6.7zm-51.4 1.2c2.2 0 2.1-1.7 2.2-1.7l-.4 2H7.3c0-.1 1.3-.1 1.3-1v-6.9c0-1.1-1.2-1.2-1.2-1.2h3.8c-.1.1-1.3.1-1.3 1.2v7.1c0 .5.5.4 1 .5h1.3m14.3-.7c.1 1.1 1 .8 1 1h-2.4c0-.1 1 0 1-1v-6.9c0-1.2-1-1.2-1.1-1.3h2.4l5.1 6.2v-5c0-1.2-1-1.1-1-1.2H34c0 .1-1 .1-1.1 1.2v7.8s.1.6-.3.1c-.2-.2-6.1-7.6-6.1-7.6-.1-.1-.1 0-.1.2v6.5h.1zm-8.2-3.5c-.2 0-.2-.1-.1-.4 0 0 .8-2.1.9-2.3.1-.3.3-.3.4 0l.8 2.3c.1.3.2.3-.1.3l-1.9.1m4.9 3.3-3.4-8c-.2-.3-.3 0-.3 0-.3.8-3.4 8.2-3.4 8.2-.4 1-1 .9-1 .9h2.2c0-.1-1.2.1-.8-1l1.2-2.9c.1-.2.1-.2.4-.2h2.2c.3 0 .3 0 .4.3l1.1 2.7c.3 1.1-.7 1-.6 1.1h3.1s-.5.3-1.1-1.1m25.1-9.6-3.7 1.1 3.7-1.8 3.7 1.8-3.7-1.1zm0 10.4c-1.8 0-3-1.7-3-4.3 0-3 1.2-4.4 3-4.4s3 1.4 3 4.4c-.1 2.6-1.3 4.3-3 4.3m0-9c-1.3 0-2.5.5-3.4 1.4-.9.9-1.4 2.1-1.4 3.4 0 2.4 1.9 4.6 4.8 4.6s4.8-2.2 4.8-4.6c0-1.3-.5-2.5-1.4-3.4-.9-.9-2.2-1.4-3.4-1.4m-8.9 9c2.1 0 3-1.5 3.2-1.5.1 0-1 1.9-3.3 1.9-5 0-4.9-4.5-4.9-4.5.2-3.2 2.7-5.1 5.2-4.8.5 0 1 .2 1.4.3.2.1.8.4 1.1.3.2-.1.3-.4.3-.4V37c-.2 0-.7-2.4-3.1-2.4-2 0-3.4 2.2-3.4 4.4.2 3.6 2.7 4.2 3.5 4.2M68 39v3.5c0 .7-.1.8.4.8h2.5c.6 0 1-.2 1.2-.4.6-.4.4-1.1.6-1.1l-.1 1.8h-7c0-.1 1 .1 1-1.4v-6.4c0-1.5-1-1.3-1-1.4h6.9l.1 1.8c-.1 0 .2-1.4-1.8-1.5h-2.3c-.4 0-.6 0-.6.8v2.4c0 .3 0 .4.5.4h2.2c1.1 0 1-1 1.1-1v2.4c-.1 0 0-1.1-1-1.1h-2.2c-.5-.1-.5.1-.5.4z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:272.8,intrinsicWidth:272.8,pixelHeight:341,pixelWidth:341,src:\"https://framerusercontent.com/images/BGlAukNpsNvmZ7tpf2kDUGlSAYc.png\"},className:\"framer-vru40y\",\"data-framer-name\":\"Logo Genertel 1\",layoutDependency:layoutDependency,layoutId:\"o925KCkbi\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2pq1fv\",\"data-framer-name\":\"$26\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"YLCJHweMo\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\" style=\"enable-background:new 0 0 80 80\" xml:space=\"preserve\"><path d=\"M23.8 35.3h5.6v1.6h-1.1v6.4h1.1v1.6h-7.3v-1.6h1.1v-4.1l-4.1 5.7-4.1-5.8v4.1h1.1v1.6h-4v-1.6h1.1v-6.4h-1.1v-1.6h6.3l2.7 3.7 2.7-3.6m12.7 2.3h-6.1v1.6h1.1v4h-1.1v1.6h7.2v-1.6h-1.1v-5.6zm-.9-1.3-.7-1.4-2.3 1.2.7 1.4 2.3-1.2zm7.1 4.2h1.6v-1c0-.3-.2-.8-.8-.8-.5 0-.8.5-.8.8v1zm0 1.2v.7c0 .6.6 1.2 1.4 1.2 1.2 0 1.7-.9 1.8-1.3h2.8c-.4 1.3-2.1 2.8-5.3 2.8-4.1 0-5.4-2.2-5.4-3.9 0-1.8 1.5-4 5.4-4 3.4 0 5.4 1.9 5.4 4v.5h-6.1zm7.7 1.5h-1.1v1.6h7.5v-1.6h-1.1v-7.9h-6.3v1.6h1.1v6.3zm11.3-2.7h1.6v-1c0-.3-.2-.8-.8-.8-.5 0-.8.5-.8.8v1zm0 1.2v.7c0 .6.6 1.2 1.4 1.2 1.2 0 1.7-.9 1.8-1.3h2.8c-.4 1.3-2.1 2.8-5.3 2.8-4.1 0-5.4-2.2-5.4-3.9 0-1.8 1.5-4 5.4-4 3.4 0 5.4 1.9 5.4 4v.5h-6.1z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1pgvzf4\",\"data-framer-name\":\"$31\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"q9BR_SXL9\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\" style=\"enable-background:new 0 0 80 80\" xml:space=\"preserve\"><path d=\"M31.3 44.5v-1.8h1.1c.6 0 .8-.2.8-.9v-9.1c0-.7-.2-.9-.8-.9h-1.1V30h12.4v5.6H42v-1.1c0-1.8-.9-2.7-2.2-2.7h-2.3c-.6 0-.8.2-.8.9v3.6H38c.6 0 .9-.5.9-1.2v-1.3h1.5v6.9h-1.5v-1.6c0-.8-.3-1.1-.9-1.1h-1.2v3.8c0 .7.2.9.8.9h2.1c1.8 0 2.7-.7 2.7-3.1v-1h1.7v5.8H31.3z\" style=\"fill:#707070\"/><path d=\"M51 30.1c2.3 0 3.7.5 4.9 1.4 1.7 1.3 2.8 3.5 2.8 5.8 0 2.4-1.1 4.5-2.8 5.8-1.2.9-2.6 1.4-4.9 1.4h-4.5V30.1H51zm4 4.1c-.8-1-1.9-1.6-3.6-1.6h-2V42h2c1.7 0 2.8-.6 3.6-1.6.7-.8 1-1.9 1-3.1 0-1.2-.4-2.3-1-3.1m6-4.1h2.7v14.4H61zm-42 7.1c0 2.8 2.1 5 4.9 5 1.3 0 2.4-.5 3.2-1.1v-2.9h-3.4v-2.5h6.2v6.2c-1.3 1.6-3.4 2.8-6 2.8-4.5 0-7.6-3.3-7.6-7.5s3.1-7.5 7.6-7.5c2.2 0 4 .8 5.3 2.1l-1.8 1.9c-.9-.9-2.1-1.5-3.5-1.5-2.8.1-4.9 2.3-4.9 5m-2.1 11.4c0 .6.5 1.1 1.1 1.1.3 0 .5-.1.7-.3v-.7h-.8v-.5h1.4v1.4c-.3.4-.7.7-1.3.7-1 0-1.7-.7-1.7-1.6 0-.9.7-1.6 1.6-1.6.5 0 .9.2 1.1.5l-.4.4c-.2-.2-.5-.3-.8-.3-.4-.2-.9.3-.9.9m3.8.2v1.4h-.6V47h1.1c.3 0 .5.1.7.2.2.2.3.4.3.7 0 .3-.1.5-.3.7-.1.1-.2.2-.3.2l1.2 1.5H22l-1.1-1.4h-.2zm.5-.5c.2 0 .3 0 .3-.1.1-.1.1-.2.1-.2 0-.1 0-.2-.1-.3-.1-.1-.1-.1-.3-.1h-.5v.7h.5zm2.3 1.6c-.3-.2-.4-.6-.4-1.1V47h.6v1.9c0 .3.1.5.2.6s.3.2.5.2.4-.1.5-.2c.1-.1.2-.3.2-.6V47h.6v1.8c0 .5-.2.8-.4 1.1-.3.2-.6.3-.9.3-.3 0-.7-.1-.9-.3m3.7-1v1.3h-.6V47h1.2c.4 0 .6.1.8.3.2.2.3.4.3.7s-.1.5-.3.7c-.2.2-.4.3-.8.3l-.6-.1zm.6-.5c.2 0 .3-.1.4-.1.1-.1.1-.2.1-.3 0-.1 0-.2-.1-.3-.1-.1-.2-.1-.4-.1h-.6v.8h.6zm2.3.5v1.3h-.6V47h1.2c.4 0 .6.1.8.3.2.2.3.4.3.7s-.1.5-.3.7c-.2.2-.4.3-.8.3l-.6-.1zm.5-.5c.2 0 .3-.1.4-.1.1-.1.1-.2.1-.3 0-.1 0-.2-.1-.3-.1-.1-.2-.1-.4-.1H30v.8h.6zm3.2-1.4c1 0 1.6.7 1.6 1.6s-.7 1.6-1.6 1.6c-1 0-1.6-.7-1.6-1.6 0-.9.7-1.6 1.6-1.6m0 2.7c.6 0 1-.5 1-1.1s-.4-1.1-1-1.1-1 .5-1 1.1.4 1.1 1 1.1m4.3-2.1v.6h1v.6h-1v.8h1.3v.6h-1.9V47h1.9v.6zm3-.6c.5 0 .8.1 1.1.3.4.3.6.8.6 1.3s-.2 1-.6 1.3c-.3.2-.6.3-1.1.3h-1V47h1zm.9.9c-.2-.2-.4-.4-.8-.4h-.5v2.1h.5c.4 0 .6-.1.8-.4.2-.2.2-.4.2-.7s-.1-.4-.2-.6m1.5-.9h.6v3.2h-.6zm3.5 0v.6h-.8v2.6h-.6v-2.6h-.9V47zm2 0c1 0 1.6.7 1.6 1.6s-.6 1.7-1.6 1.7-1.6-.7-1.6-1.6c-.1-1 .6-1.7 1.6-1.7m0 2.7c.6 0 1-.5 1-1.1s-.4-1.1-1-1.1-1 .5-1 1.1c-.1.6.4 1.1 1 1.1m2.9-.9v1.4h-.6V47h1.1c.3 0 .5.1.7.2.2.2.3.4.3.7 0 .3-.1.5-.3.7-.1.1-.2.2-.3.2l1.2 1.5h-.8l-1.1-1.4h-.2zm.5-.5c.2 0 .3 0 .3-.1.1-.1.1-.2.1-.2 0-.1 0-.2-.1-.3-.1-.1-.1-.1-.3-.1h-.5v.7h.5zm2.1-1.3h.6v3.2h-.6zm1.1 3.2 1.3-3.2h.4l1.3 3.2H58l-.3-.7h-1.3l-.3.7h-.5zm1.1-1.3h.8l-.4-.9-.4.9zm2.5-1.9h.6v2.6h1.3v.6h-1.9zm3.2.6v.6h1v.6h-1v.8h1.3v.6h-1.9V47h1.9v.6z\" style=\"fill:#12100b\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bqy1a6\",\"data-framer-name\":\"$35\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"EQpLxyIeu\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\" style=\"enable-background:new 0 0 80 80\" xml:space=\"preserve\"><path d=\"M51.9 43.7v-5.2h-6.7v5.2h-1.9V32h1.9v5.1h6.7V32h1.9v11.7h-1.9zM23.3 48h.3l-1-2.5-1 2.5h.3l.3-.7h1l.1.7zm-1.1-.9.4-1 .4 1h-.8zm17.9.9h.3l-1-2.5-1 2.5h.3l.3-.7h1l.1.7zm-1.1-.9.4-1 .4 1H39z\" style=\"fill:#1d1d1b;fill-rule:evenodd;clip-rule:evenodd\"/><path d=\"M50.8 45.7V48h.3v-2.3h-.3zM26.6 32v11.7h1.9V32h-1.9zM22 32l-3.8 8-3.8-7.9h-2l5.8 11.7L24 32h-2zm15.4 10.2c-2.8 0-4.8-1.8-4.8-4.3s2-4.3 4.8-4.3c1.2 0 2.4.4 3.2 1v-1.9c-1-.5-2.1-.8-3.2-.8-3.6 0-6.6 2.6-6.6 5.9 0 3.2 2.9 5.9 6.6 5.9 1.2 0 2.3-.3 3.2-.8V41c-.8.8-2 1.2-3.2 1.2zm-11 4.7v.9h.3c.4 0 .6-.2.6-.4 0-.3-.2-.5-.6-.5h-.3zm0-1v.7h.1c.2 0 .3 0 .4-.1.1-.1.2-.1.2-.3 0-.2 0-.3-.1-.3s-.2-.1-.4-.1h-.2v.1zm-.2 2.1v-2.3h.4c.5 0 .8.2.8.6 0 .2-.1.4-.2.4.1 0 .2.1.3.2.1.1.1.2.1.4s-.1.4-.2.5c-.3.1-.4.2-.7.2h-.5zm5.1-2.2c-.3 0-.5.1-.7.3-.2.2-.3.4-.3.7 0 .3.1.5.3.7.2.2.4.3.7.3.3 0 .5-.1.7-.3.2-.2.3-.4.3-.7 0-.3-.1-.5-.3-.7-.2-.2-.5-.3-.7-.3zm0-.2c.3 0 .6.1.9.3.2.2.4.5.4.8 0 .3-.1.6-.4.8-.2.2-.5.3-.9.3-.3 0-.6-.1-.9-.3-.2-.2-.4-.5-.4-.8 0-.3.1-.6.4-.8.2-.2.5-.3.9-.3zm15.7.2c-.3 0-.5.1-.7.3-.2.2-.3.4-.3.7 0 .3.1.5.3.7.2.2.4.3.7.3.3 0 .5-.1.7-.3.2-.2.3-.4.3-.7 0-.3-.1-.5-.3-.7-.2-.2-.5-.3-.7-.3zm0-.2c.3 0 .6.1.9.3.2.2.4.5.4.8 0 .3-.1.6-.4.8-.3.4-.6.5-.9.5-.3 0-.6-.1-.9-.3-.2-.2-.4-.5-.4-.8 0-.3.1-.6.4-.8.3-.4.5-.5.9-.5zm15.6.4-.2.1c-.1-.2-.2-.2-.4-.2-.1 0-.2 0-.3.1-.1.1-.1.2-.1.3 0 .1 0 .2.1.2 0 0 .1.1.2.1l.2.1c.2.1.3.2.4.2.1.1.2.2.2.4s-.1.4-.2.5c-.2.1-.3.2-.5.2s-.3-.1-.5-.2c-.1-.1-.2-.3-.2-.4l.2-.1c0 .1.1.2.2.3.1.1.2.1.3.1.1 0 .2 0 .3-.1.1-.1.1-.2.1-.3 0-.1 0-.2-.1-.3-.1 0-.2-.1-.3-.2l-.1-.1c-.2-.1-.3-.1-.4-.2-.1-.1-.1-.2-.1-.4s.1-.3.2-.4c.1-.1.3-.2.4-.2.3.1.5.2.6.5zm-4.8 2v-2.3H59v.2h-1v.7h.9v.2H58v.9h1v.3h-1.2zm-39.3-2.3v2h.6v.3h-.9v-2.3h.3zm24.7.2V48h-.3v-2.1h-.5v-.2h1.3v.2h-.5zm-8.1 0v.8h.1c.2 0 .3 0 .4-.1.1-.1.2-.2.2-.3 0-.2-.1-.3-.2-.4h-.5zm0 1.1v1h-.3v-2.3h.3c.6 0 .8.2.8.6 0 .2-.1.3-.2.4-.1.1-.2.2-.4.2l.7 1h-.3l-.6-.9zm19-1.1v.8h.1c.2 0 .3 0 .4-.1.1-.1.2-.2.2-.3 0-.2-.1-.3-.2-.4h-.5zm0 1.1v1h-.3v-2.3h.3c.6 0 .8.2.8.6 0 .2-.1.3-.2.4-.1.1-.2.2-.4.2l.7 1h-.3l-.6-.9zm13.4-15-5.2 6.7v5h-1.7v-5L55.4 32h2l4.1 5.3 4-5.3h2z\" style=\"fill:#1d1d1b\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:272.8,intrinsicWidth:272.8,pixelHeight:341,pixelWidth:341,src:\"https://framerusercontent.com/images/XxLTqT3kOhXAwi2neOaFgQMtaU.png\"},className:\"framer-ktgji4\",\"data-framer-name\":\"Alpitour World BN\",layoutDependency:layoutDependency,layoutId:\"Op9sOrNza\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ftfiq5\",\"data-framer-name\":\"$34\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"UwQANJFwK\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\" style=\"enable-background:new 0 0 80 80\" xml:space=\"preserve\"><path d=\"M17.8 40h-1.5v-.1c.2 0 .2 0 .2-.3v-1.3c0-.2-.1-.2-.2-.3v-.1h1.5v.4h-.1c0-.3-.1-.3-.4-.3h-.4c-.1 0-.1 0-.1.1v.6h.4c.3 0 .3-.1.3-.3h.1v.7h-.1c0-.2-.1-.3-.3-.3h-.4v.7c0 .1 0 .1.4.1s.5-.1.6-.4h.1l-.1.8zm-3.3-1.3c-.1-.3-.3-.5-.6-.5-.1 0-.3.1-.4.2-.1.1-.2.3-.2.7 0 .6.3.9.7.9.4 0 .6-.2.6-.3l.1.1s-.2.4-.8.4c-.5 0-1-.3-1-1 0-.6.5-1 1-1 .3 0 .4.1.5.1 0 0 .1 0 .1-.1h.1l-.1.5zm-2.9-.6c-.2 0-.3 0-.3.4V40L10 38.4v1.1c0 .3.1.4.3.4v.1h-.7v-.1c.2 0 .3-.1.3-.4v-1.3c-.1-.1-.2-.2-.3-.2v-.1h.5l1.1 1.4v-1c0-.3-.1-.4-.3-.4v-.1l.7.3zm-4.4 1.8c.2 0 .3-.1.3-.3v-1.3c0-.2 0-.2-.3-.3v-.1H8v.1c-.2 0-.3 0-.3.3v1.3c0 .2.1.3.3.3v.1l-.8-.1zm-1.8-1.3c-.1-.2-.3-.5-.6-.5-.1 0-.3.1-.3.3 0 .4 1 .5 1 1.1 0 .2-.2.5-.6.5-.2 0-.4-.1-.4-.1-.1 0-.1 0-.1.1h-.1l-.1-.6h.1c.1.1.2.5.6.5.2 0 .3-.2.3-.3 0-.2 0-.3-.5-.5-.3-.2-.4-.3-.4-.6s.3-.5.5-.5.3.1.4.1c.1 0 .1-.1.1-.1h.1v.6zm49.3 0c1.4-1.5 2.9-3.2 3.3-4.8.3-1.1 0-1.8-1-1.8-2.4.1-5.8 4.1-6.2 8.1v1.1c-.7.6-1.2 1.1-2 1.5-.3.2-.7.3-.9 0-.1-.1-.2-.5 0-.9.3-.7.8-1.4 1.3-2.2.3-.5.4-1.2.2-1.5-.1-.4-.6-.6-1-.6-.8 0-1.6.4-2.2.9 0 0 2.8-4.7 3.1-5.2.3-.5 0-.6-.3-.6h-.7c-.2 0-.3.1-.5.4-2.1 3.7-3.5 6-4.3 7.5-.2.2-.4.4-.6.7-1 1-2.3 2-3.2 2.2-.5.1-.9-.1-1.1-.5 1.3-.8 2.8-1.7 3.4-2.8.3-.6.5-1 .4-1.6-.1-.5-.5-.8-1.1-.8-.9-.1-1.9.3-2.8 1-.8.8-1.2 1.5-1.4 2.3-.2.6-.1 1.4.1 2-.5.3-1 .5-1.4.6-1.1.3-1.6-.5-1-1.8.3-.6 1.3-2.5 1.8-3.3.2-.3.1-.5-.2-.4h-.9c-.2 0-.4.1-.5.3-.4.6-1.3 2.6-1.9 3.6-.4.7-.8 1.2-1.4 1.6-.6.5-1.2.3-1.3-.4-.1-.8.2-1.8.2-2.6 0-1.2-.2-1.9-.7-2.5 3.8-1.4 6-5.3 8.3-6.4.1-.1.3-.1.4-.2.7-.2 1.3-.2 1.4.2.2.5-.4 1.2-1.1 1.4-.6.2-.9.4-.8.6.1.2.4.2.8.1 1.1-.1 2.3-1.2 2-2.4-.2-.8-.9-1.2-1.9-1.1-.2 0-.4 0-.6.1-2.9.7-5.2 4.7-7.8 6.5-.4.3-.7.5-1.1.6-.4-.4-.9-.6-1.7-.6.7-1.5 1.2-2.8 2.2-4 .4-.2.9-.4 1.3-.6.4-.3.5-.6.4-.9-.2-.3-.7-.3-1-.2-.3.1-.4.3-.8.7-.4.3-1.2.4-2.1.3-.4-.1-.8-.2-1.2-.4-.9-.4-1.9-.8-3.1-.8-1.7 0-3 .8-3 2.1s1.2 2 2.6 1.7c.3-.1.7-.3.7-.5s-.5-.2-.7-.2c-1.1 0-1.7-.3-1.7-1 0-.6.6-1 1.6-1 1.1 0 2 .5 3.4.7.7.1 1.6.2 2.6.1-1.1 1.2-2.7 3.5-3.8 5.6-1.9 3.4-2.7 4.8-4.1 5.5-1 .5-2.3.6-3 0-.3-.2-.4-.5-.4-.8 0-.1 0-.2.1-.2.6 0 .9-.3 1-.7.1-.5-.3-.9-.8-.9-.8.1-1.2.7-1.2 1.6 0 1.1.9 2.2 2.7 2.2 4 0 6.2-3.7 7.7-6.5.1-.2.2-.4.3-.5.4.1.9.2 1.7 0 .3.9-.1 2.3-.1 3.5 0 1.8.6 2.8 1.8 2.8 1 0 2.1-.7 2.7-1.7.1 1.1.9 1.5 1.7 1.4.7 0 1.7-.4 2.6-1 .3.4.8.7 1.5.7 1.1 0 2.2-.7 3.3-1.7-.4.7-.5.8-.6 1-.1.2 0 .5.2.5h.7c.3 0 .4-.1.5-.3.1-.2 1.2-2.2 1.7-3 .8-1.2 1.8-1.8 2.3-2 .8-.3 1.1.2.6.9-.7.9-1.2 1.8-1.3 2.5-.1.9.3 1.7 1.3 1.7.5 0 1-.1 1.5-.5.8-.5 1.1-.7 1.6-1.2.3.8.9 1.4 1.9 1.5 1.7.1 2.6-.7 3.3-1.5.3-.3.3-.5.1-.7-.1-.2-.5-.1-.7.1-.6.6-1.3 1.2-2.2 1.1-.8 0-1.2-.7-1.3-1.6 1-.7 1.6-1.3 2.4-2.1m-27-.6c-.4 0-.6-.1-.5-.3 0-.1.2-.2.3-.2.5 0 .7.1.9.4-.2.1-.5.1-.7.1m10.6 3c.3-1.1 1-1.9 1.6-2.3.3-.2.7-.2.8-.1.3.2.4 1-.5 1.9-.5.5-1 1.1-2.1 1.7 0-.3.1-.7.2-1.2m13.9-1v-.2c.4-2.7 2.6-5.7 4-6.6.6-.4 1-.2.8.4-.3 1.1-1.5 2.7-2.4 3.8-.8.9-1.6 1.8-2.4 2.6m9.9-1.7c-.1-.3-.2-.7-.2-.9.1-.3.3-.3.4-.7.1-.3.1-.7-.3-.8-.4 0-.7.3-.9.9-.7 1.3-2.7 3-3.4 3.5-.6.5-.7.6-.5.9.2.2.5.2 1.1-.3.8-.6 2.3-2 2.8-2.9 0 .9.4 1.7.2 2.9-.1.6-.4 1.3-1.1 1.6-.5.2-1.2.1-1.4-.4.4-.1.6-.3.6-.7 0-.4-.2-.6-.6-.7-.3 0-.6 0-.8.3-.1.2-.2.6-.1 1 .2.9 1 1.3 1.9 1.3 1.1 0 2.3-.6 2.6-1.8.5-1.1 0-2.3-.3-3.2m-26-2.6c-.1.4.1.8.7.9.5 0 .8-.3.9-.6.1-.5-.2-.9-.7-.9-.4 0-.7.2-.9.6M58.3 46c0-.2-.2-.3-.5-.3-7.8-.3-20.6-.8-32.9 2.5-.5.1-.8.2-.8.5 0 .2.1.4.5.5.7.2 1.4.3 1.8.3.3 0 .7.1 1 0 .5-.1 1-.2 1.3-.3 8.4-2.8 18.9-3.1 29-2.9.5 0 .6-.1.6-.3m.8-9.7c.5-.3 1-.7 1.2-1.2.2-.5.1-1-.3-1.1-.3-.1-.8.1-.9.4-.2.4-.1.9.3 1-.1.1-.4.3-.5.4-.2.1-.3.3-.2.4.1.2.3.1.4.1M75 39.9c.2 0 .3 0 .3-.2v-1.3c0-.1 0-.1-.1-.1l-.2.1.5-.3v1.8c0 .1.1.2.3.2l-.8-.2zm-3-1.4c.2 0 .5.1.7.3.1.2.2.2.2.5 0 .4-.3.7-.8.7-.2 0-.4-.1-.4-.2 0 0 0-.1.1-.1.2 0 .3.2.4.2.2 0 .4-.2.4-.5 0-.5-.5-.6-.8-.6l.3-.7h.6c.1 0 .1 0 .1-.1l-.1.3H72v.2zm-2.9.5c-.3-.2-.4-.3-.4-.6s.3-.5.6-.5.5.2.5.4c0 .3-.2.4-.4.5.4.3.5.5.5.7 0 .2-.1.5-.6.5-.4 0-.6-.2-.6-.5.1-.2.2-.3.4-.5m-.1.5c0 .2.1.4.4.4.2 0 .3-.1.3-.3 0-.2-.1-.3-.5-.6-.1.1-.2.2-.2.5m.4-.7c.1-.1.3-.2.3-.4s-.1-.3-.3-.3c-.2 0-.3.2-.3.3-.1.2.2.3.3.4m-3.5 1.1c.2 0 .3 0 .3-.2v-1.3c0-.1 0-.1-.1-.1l-.2.1.5-.3v1.8c0 .1.1.2.3.2l-.8-.2z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1lnqu6u\",\"data-framer-name\":\"$27\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"WEhKYQD8R\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\" style=\"enable-background:new 0 0 80 80\" xml:space=\"preserve\"><path d=\"M16.1 30.8s-.2 0-.4.1c-.2 0-.4.1-.4.1 0 .1.1.6.2 1.1 0 .2.1.4.1.4.1.3.2 1 .6 2.6.2.9.4 1.7.5 1.9 0 .1.1.3.1.5s.1.5.2.7c.2.7.3 1 .3 1.3 0 .2.1.4.1.5 0 .1.1.4.1.6.1.2.2.7.3 1.2.1.5.3 1 .3 1.1 0 .1.1.4.2.7.1.3.2.6.2.7 0 .1.1.3.1.5s.1.4.2.6c.1.5.3 1 .4 1.5.1.2.1.5.1.6.1.2.4 1 .5 1.1.1.1.3.1 2.6.1 2.4 0 2.5 0 2.7-.1.1-.1.2-.2.2-.3 0-.1 0-.3.1-.4.1-.2.1-.5.2-.7.1-.2.1-.5.2-.6 0-.1.1-.3.1-.4 0-.1.1-.4.2-.7.1-.3.2-.6.2-.7 0-.1.1-.4.2-.7.1-.3.2-.6.2-.7 0-.1.1-.4.2-.7.1-.3.2-.6.2-.7 0-.1.1-.4.2-.7.1-.3.2-.6.2-.7 0-.1.1-.4.2-.7.1-.3.2-.6.2-.7 0-.1.1-.4.2-.7.1-.3.2-.6.2-.7 0-.1.1-.4.2-.7.1-.3.2-.6.2-.7.2-1 .5-1.7.8-1.9 0-.5 2.6-.5 16.1-.5 12.5 0 16.1 0 16.2-.1.2-.2.3-.4.3-1.5v-1.1l-.2-.3c-.1-.1-.2-.2-.3-.2-.1 0-7-.1-17.7-.1-17 0-17.5 0-17.7.1-.3.2-.3.2-.9 2.6-.1.2-.1.5-.2.8-.1.2-.1.6-.2.8-.2.9-.4 1.7-.6 2.2-.2.6-.3 1.1-.4 1.5-.2.8-.3 1.1-.4 1.4 0 .2-.1.4-.1.5-.1.4-.5 2-.6 2.5-.1.3-.3.5-.4.5-.1 0-.2-.2-.3-.9-.1-.3-.2-.7-.2-.9-.1-.2-.1-.6-.2-.8s-.1-.6-.2-.8c0-.2-.1-.6-.2-.9-.1-.3-.1-.7-.2-.9 0-.2-.1-.6-.2-.9-.5-2.4-.9-3.9-1.3-5.5-.3-1-.3-1-.6-1.1-.2-.1-.5-.1-1.5-.1-.7-.1-1.4-.1-1.4 0zm47.2 3.3c-.1 0-.3.2-.4.3-.3.3-.4 1.1 0 1.4.2.2.6.4.8.4.3 0 .7-.2.9-.5.3-.4.3-1-.2-1.4-.3-.3-.8-.4-1.1-.2zm.9.3c.2.1.4.5.4.7 0 .2-.2.6-.3.6l-.2.2c-.2.2-.4.2-.7 0-.4-.2-.5-.4-.5-.8 0-.3 0-.4.2-.5.1-.1.3-.2.3-.2.2-.2.6-.1.8 0z\"/><path d=\"M64.1 35.4c-.1-.3-.1-.3 0-.5.1-.3-.1-.4-.5-.4s-.4 0-.4.2c-.1.3 0 .8 0 .9.1.1.3 0 .3-.2s.2-.2.3 0c0 .1.1.2.2.2.2 0 .2 0 .1-.2zm-.4-.4c-.1 0-.2-.2 0-.3.1 0 .2 0 .2.2-.1.1-.2.1-.2.1zm-7.4.6c-1.4.2-2.7.7-3.3 1.5-.9 1.1-1.1 2.8-.4 4.2.4.7 1.4 1.6 2.1 1.8.1 0 .4.1.6.2.3.1.8.2 1.2.2.8.1 1.5.2 1.8.3.3.2.5.5.6.9.1.3.1.4 0 .6-.1.3-.4.5-.8.7-.2.1-.4.1-1 .1-.9 0-1.1-.1-2.5-.7-.5-.2-.9-.4-1.1-.4-.2 0-.5.3-1 1.1s-.7 1.2-.6 1.4c.1.2 1.6 1.1 1.8 1.1 0 0 .1 0 .2.1.4.2 1.2.5 1.6.6.8.2 2.5.2 3.2 0 1.2-.3 2-.7 2.7-1.5.6-.6.9-1.2 1-2.2.1-.8-.1-1.9-.4-2.5-.1-.2-.4-.6-.5-.7-.2-.2-.7-.5-.9-.6-.5-.2-.7-.3-1.9-.6-.9-.2-1.2-.3-1.5-.4-.5-.2-1-.4-1.3-.6-.1-.1-.2-.2-.2-.5 0-.4.3-.9.8-1.1.2-.1.4-.1.9-.1.7 0 1 .1 2.2.7.5.2.8.4.9.3.2-.1.9-.8 1.1-1.2.2-.4.3-.8.3-1 0-.2-.5-.5-1.1-.8-.8-.4-1.5-.6-2.4-.7-.6-.3-1.2-.3-2.1-.2zM38.9 47.3c-.1-.5-.3-1.1-.3-1.2-.1-.2-.2-.8-.7-2.7-.1-.2-.1-.6-.2-.8-.1-.2-.1-.5-.2-.8-.1-.2-.1-.6-.2-.8-.3-1.4-.3-1.7-.8-3-.5-1.4-.5-1.7-.7-1.7-.3-.1-3.3-.2-4.3-.1-.6.1-.7.1-.8.5 0 .1-.1.4-.2.8-.1.3-.2.7-.3.9-.1.2-.1.5-.2.6 0 .1-.1.4-.2.6-.1.2-.1.5-.2.6 0 .1-.1.4-.2.6-.1.2-.1.5-.2.6s-.1.4-.2.7c-.1.2-.1.5-.2.7 0 .1-.1.4-.2.7s-.1.5-.2.7c0 .1-.1.4-.2.7-.1.2-.1.5-.2.7 0 .2-.1.5-.2.7-.1.2-.1.6-.2.8-.1.2-.1.5-.2.7-.1.2-.1.4-.1.6v.3l.5.1c.6.1 2.2.1 2.5 0 .2-.1.3-.1.4-.5.4-1.4.4-1.4.7-1.6.4-.3.9-.4 2.1-.3.5 0 1.1.1 1.2.1.4.1.6.4.7.9l.3.9c.1.4.2.4.3.5.2.1 2.7.1 2.9 0 .1 0 .2-.1.2-.1.1-.4 0-.9-.2-1.4zm-5-4.5c-.1.1-.7.2-1.1.2-.1 0-.3-.1-.3-.1-.1-.1-.1-.1 0-.5.1-.2.1-.5.1-.6 0-.4.4-1.5.5-1.5l.1.1c.1.1.1.2.4.8.2.4.3.8.3 1.1.1.4.1.4 0 .5zm14.4-6.6c-.2 0-.5.1-.6.1-.2.1-.2.1-.2.5 0 .2 0 1-.1 1.7 0 .7-.1 1.6-.1 2 0 .4 0 .7-.1.8-.1.1-.3.1-.4-.1 0-.1-.2-.4-.4-.8-.2-.3-.4-.8-.5-.9-.1-.2-.3-.5-.4-.6s-.2-.3-.2-.3-.2-.4-.5-.9-.5-.9-.5-.9-.1-.2-.2-.3l-.1-.3h-1.3c-1.3 0-2.2.1-2.3.2-.1.1-.2 1.8-.2 6.5 0 4.9 0 5 .1 5.3l.1.3h1.4c1.3 0 1.4 0 1.5-.2.1-.1.1-.2.2-2.6.1-2.5.1-2.7.3-2.7.1 0 .9 1.3 1.5 2.4 1.3 2.5 1.5 2.9 1.7 2.9.1 0 1 .1 1.9.1 1.3 0 1.8 0 1.9-.1.1-.1.1-.3.1-1 .1-1.2 0-9.8 0-10.5v-.5l-.3-.1c-.4 0-1.8-.1-2.3 0z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-zbljwv\",\"data-framer-name\":\"$28\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"HTSkI7hK9\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 80 80\" style=\"enable-background:new 0 0 80 80\" xml:space=\"preserve\"><path d=\"M46.8 30.7v-1.2H42V36h4.7v-1.1h-3.4v-1.8h3V32h-3v-1.3h3.5zm-1.4 5.9v2.5h-2.6v-2.5h-1.3v6.5h1.3v-2.9h2.6v2.9h1.3v-6.5h-1.3zm1.4 8.3v-1.2H42v6.6h4.7v-1.2h-3.4v-1.7h3v-1.1h-3v-1.4h3.5zm-5.5-15.4H40V32h-2.6v-2.5h-1.3V36h1.3v-2.9H40V36h1.3v-6.5zm-10.9 0v1.2h2V36h1.3v-5.3h2v-1.2h-5.3zm-4.1 7c-2.1 0-3.2 1.2-3.2 3.4 0 2.3 1.1 3.5 3.2 3.5s3.1-1.2 3.1-3.5c0-2.2-1.1-3.4-3.1-3.4zm-1.8 3.4c0-1.5.6-2.2 1.7-2.2 1.2 0 1.8.7 1.8 2.2 0 1.6-.6 2.3-1.8 2.3-1.1 0-1.7-.7-1.7-2.3zm-3.3-3.3v4.6l-2.6-4.6h-1.4v6.5h1.2v-4.5l2.7 4.5h1.4v-6.5h-1.3zm6.1 9.8v-1.5h3.3v-1.2H26v6.6h1.3v-2.7h2.9v-1.2h-2.9zM41 37.8v-1.2h-5.3v1.2h2v5.3H39v-5.3h2zm-8.2 2.8c.4 0 .8.1.9.2l.2 2.2h1.5c-.2-.1-.2-.5-.2-1.2 0-.9-.3-1.4-.8-1.6.7-.3 1-.8 1-1.6 0-1.2-.7-1.8-2.1-1.8H30v6.5h1.3v-2.5h1.5zm-1.4-1.1v-1.7H33c.7 0 1 .2 1 .8s-.3.9-1.1.9h-1.5zm2.3 4.3h-1.6l-2.3 6.6h1.4l.5-1.4h2.4l.4 1.4H36l-2.3-6.6zm-.8 1.5.8 2.6h-1.6l.8-2.6zm7.3.6h1.3c-.1-.6-.2-1.1-.6-1.5-.6-.5-1.2-.8-2.2-.8-.9 0-1.6.3-2.2.9-.5.6-.8 1.4-.8 2.5 0 2.3 1 3.5 2.9 3.5 1.7 0 2.6-.8 2.9-2.4h-1.3c-.2.8-.8 1.2-1.5 1.2-1.1 0-1.6-.7-1.6-2.2 0-1.6.5-2.3 1.6-2.3.8 0 1.2.4 1.5 1.1zm-16.5 4.4zm0 0c.2 0 .4-.1.5-.2.1-.1.2-.3.2-.6s-.1-.4-.2-.6c-.1-.1-.3-.2-.5-.2-.3 0-.4.1-.6.2-.1.1-.2.3-.2.6 0 .2.1.4.2.5.1.2.3.3.6.3zm0 .1c-.3 0-.5-.1-.7-.3-.2-.2-.2-.4-.2-.6 0-.3.1-.5.2-.7.2-.2.4-.2.7-.2.3 0 .5.1.6.2.2.2.3.4.3.7 0 .3-.1.5-.3.7-.1.1-.4.2-.6.2zm.1-1c.1 0 .2 0 .2-.2h-.3v.2h.1zm.1.2.2.2v.1H24l-.2-.3h-.2v.2s0 .1-.1.1-.1 0-.1-.1v-.7s0-.1.1-.1h.4c.1 0 .2 0 .2.1v.1c0 .2 0 .3-.2.4zm23.8-20.1c4.1 0 7.7 1.5 10.6 4.4 3 3 4.5 6.5 4.5 10.7v5.7h-6.1v-5.9c0-2.3-.8-4.3-2.5-6-.4-.4-.8-.8-1.3-1.1-1.3-.9-2.9-1.3-4.6-1.3h-.7l.1-6.5zm8.4 20.8h-4.7v-4.6c0-.8-.2-1.3-.8-1.8-.5-.5-1.2-.8-1.8-.8h-1.2v-6.5h.7c1.7 0 3.2.5 4.6 1.5.3.2.7.5.9.7 1.6 1.6 2.3 3.4 2.3 5.6v5.9zm-5.3 0h-3.2v-6.6h1.2c.5 0 1 .2 1.4.6.3.3.6.8.6 1.4v4.6z\" style=\"fill-rule:evenodd;clip-rule:evenodd\"/></svg>',withExternalLayout:true})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:230,y:(componentViewport?.y||0)+0+(((componentViewport?.height||388)-0-232)/2+1+0)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6dqwvb-container\",layoutDependency:layoutDependency,layoutId:\"MjilCHE0p-container\",nodeId:\"MjilCHE0p\",rendersWithMotion:true,scopeId:\"JGHshZ_2m\",children:/*#__PURE__*/_jsx(AtomsSpacer,{height:\"100%\",id:\"MjilCHE0p\",layoutId:\"MjilCHE0p\",style:{height:\"100%\"},variant:w_tY_7j4j,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||388)-0-232)/2+231+0),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10ir1hn-container\",layoutDependency:layoutDependency,layoutId:\"sX2Llb95T-container\",nodeId:\"sX2Llb95T\",rendersWithMotion:true,scopeId:\"JGHshZ_2m\",children:/*#__PURE__*/_jsx(AtomsSpacer,{height:\"100%\",id:\"sX2Llb95T\",layoutId:\"sX2Llb95T\",style:{width:\"100%\"},variant:V1DmaTYZL,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TyI72.framer-1rp839f, .framer-TyI72 .framer-1rp839f { display: block; }\",\".framer-TyI72.framer-1j7v42s { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-TyI72 .framer-6bl9gi-container, .framer-TyI72 .framer-asv6zh-container, .framer-TyI72 .framer-1ajrop6-container, .framer-TyI72 .framer-10ir1hn-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-TyI72 .framer-v1mmzh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TyI72 .framer-105oa7j-container, .framer-TyI72 .framer-6dqwvb-container { align-self: stretch; flex: none; height: auto; position: relative; width: auto; }\",\".framer-TyI72 .framer-1qtqz8a { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-TyI72 .framer-1tsbvey-container, .framer-TyI72 .framer-bwbr62-container, .framer-TyI72 .framer-1qhiug8-container { flex: none; height: 76px; position: relative; width: 100%; }\",\".framer-TyI72 .framer-baegpv { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 120px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-TyI72 .framer-v8y5q0, .framer-TyI72 .framer-vujtni, .framer-TyI72 .framer-1gqd20, .framer-TyI72 .framer-1w2vdq5, .framer-TyI72 .framer-dij99l, .framer-TyI72 .framer-p75kkk, .framer-TyI72 .framer-ujfs1j, .framer-TyI72 .framer-n1ea68, .framer-TyI72 .framer-ufq7hl, .framer-TyI72 .framer-9aww3b, .framer-TyI72 .framer-1cdmk7e, .framer-TyI72 .framer-qwcm1k, .framer-TyI72 .framer-5wvqp4, .framer-TyI72 .framer-awdls9, .framer-TyI72 .framer-z0sk2o, .framer-TyI72 .framer-1oqeqld, .framer-TyI72 .framer-1x6f044, .framer-TyI72 .framer-1d4v3e4, .framer-TyI72 .framer-ggo9as, .framer-TyI72 .framer-1ly23pe, .framer-TyI72 .framer-1qae5o9, .framer-TyI72 .framer-1e2fza3, .framer-TyI72 .framer-139yco5, .framer-TyI72 .framer-futsi2, .framer-TyI72 .framer-2pq1fv, .framer-TyI72 .framer-1pgvzf4, .framer-TyI72 .framer-bqy1a6, .framer-TyI72 .framer-1ftfiq5, .framer-TyI72 .framer-1lnqu6u, .framer-TyI72 .framer-zbljwv { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 120px); position: relative; width: 120px; }\",\".framer-TyI72 .framer-v1zppd, .framer-TyI72 .framer-ialso0, .framer-TyI72 .framer-runc0y, .framer-TyI72 .framer-1sygtcb, .framer-TyI72 .framer-1okuro2, .framer-TyI72 .framer-q1kceg, .framer-TyI72 .framer-1p494t9 { flex: none; height: 120px; overflow: hidden; position: relative; width: 120px; }\",\".framer-TyI72 .framer-1dc59qe { flex: none; height: 42px; left: calc(50.00000000000002% - 60px / 2); position: absolute; top: calc(50.00000000000002% - 42px / 2); width: 60px; }\",\".framer-TyI72 .framer-1wloybp, .framer-TyI72 .framer-13nw53d { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 120px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-TyI72 .framer-19lwy4t { flex: none; height: 120px; position: relative; width: 120px; }\",\".framer-TyI72 .framer-1kejzhz { aspect-ratio: 4.354136429608127 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 98px; }\",\".framer-TyI72 .framer-1j1217t { flex: none; height: 26px; left: calc(50.00000000000002% - 120px / 2); position: absolute; top: calc(50.00000000000002% - 26px / 2); width: 120px; }\",\".framer-TyI72 .framer-9a4ypl { aspect-ratio: 0.6342412451361867 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 58px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 37px; }\",\".framer-TyI72 .framer-1onkxpd { flex: none; height: 35px; left: calc(50.00000000000002% - 66px / 2); position: absolute; top: calc(50.00000000000002% - 35px / 2); width: 66px; }\",\".framer-TyI72 .framer-4u0hms { flex: none; height: 32px; left: calc(50.00000000000002% - 78px / 2); position: absolute; top: calc(50.00000000000002% - 32px / 2); width: 78px; }\",\".framer-TyI72 .framer-9ppaf5 { flex: none; height: 14px; left: calc(50.00000000000002% - 84px / 2); position: absolute; top: calc(50.00000000000002% - 14px / 2); width: 84px; }\",\".framer-TyI72 .framer-vru40y, .framer-TyI72 .framer-ktgji4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 120px); overflow: visible; position: relative; width: 120px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TyI72.framer-1j7v42s, .framer-TyI72 .framer-v1mmzh, .framer-TyI72 .framer-1qtqz8a, .framer-TyI72 .framer-baegpv, .framer-TyI72 .framer-1wloybp, .framer-TyI72 .framer-13nw53d { gap: 0px; } .framer-TyI72.framer-1j7v42s > *, .framer-TyI72 .framer-1qtqz8a > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-TyI72.framer-1j7v42s > :first-child, .framer-TyI72 .framer-1qtqz8a > :first-child { margin-top: 0px; } .framer-TyI72.framer-1j7v42s > :last-child, .framer-TyI72 .framer-1qtqz8a > :last-child { margin-bottom: 0px; } .framer-TyI72 .framer-v1mmzh > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-TyI72 .framer-v1mmzh > :first-child, .framer-TyI72 .framer-baegpv > :first-child, .framer-TyI72 .framer-1wloybp > :first-child, .framer-TyI72 .framer-13nw53d > :first-child { margin-left: 0px; } .framer-TyI72 .framer-v1mmzh > :last-child, .framer-TyI72 .framer-baegpv > :last-child, .framer-TyI72 .framer-1wloybp > :last-child, .framer-TyI72 .framer-13nw53d > :last-child { margin-right: 0px; } .framer-TyI72 .framer-baegpv > *, .framer-TyI72 .framer-1wloybp > *, .framer-TyI72 .framer-13nw53d > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 388\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"V1DmaTYZL\":\"verticalPadding\",\"w_tY_7j4j\":\"horizontalPadding\",\"ntFpAZASG\":\"background\",\"zTEEDbGHO\":\"gap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJGHshZ_2m=withCSS(Component,css,\"framer-TyI72\");export default FramerJGHshZ_2m;FramerJGHshZ_2m.displayName=\"Sections/clients\";FramerJGHshZ_2m.defaultProps={height:388,width:1200};addPropertyControls(FramerJGHshZ_2m,{V1DmaTYZL:AtomsSpacerControls?.[\"variant\"]&&{...AtomsSpacerControls[\"variant\"],defaultValue:\"buD6m0O7y\",description:undefined,hidden:undefined,title:\"Vertical Padding\"},w_tY_7j4j:AtomsSpacerControls?.[\"variant\"]&&{...AtomsSpacerControls[\"variant\"],defaultValue:\"n4UOgNJIW\",description:undefined,hidden:undefined,title:\"Horizontal Padding\"},ntFpAZASG:{defaultValue:'var(--token-75699816-2bb2-44a7-8c94-a87ab6635b3d, rgb(245, 245, 245)) /* {\"name\":\"Cultured Grey\"} */',title:\"Background\",type:ControlType.Color},zTEEDbGHO:AtomsSpacerControls?.[\"variant\"]&&{...AtomsSpacerControls[\"variant\"],defaultValue:\"CbrZWrv5v\",description:undefined,hidden:undefined,title:\"Gap\"}});addFonts(FramerJGHshZ_2m,[{explicitInter:true,fonts:[]},...AtomsSpacerFonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJGHshZ_2m\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"388\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"V1DmaTYZL\\\":\\\"verticalPadding\\\",\\\"w_tY_7j4j\\\":\\\"horizontalPadding\\\",\\\"ntFpAZASG\\\":\\\"background\\\",\\\"zTEEDbGHO\\\":\\\"gap\\\"}\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JGHshZ_2m.map"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "MAX_AREA", "CSS_VAR_NAME", "supportsWaapi", "supportsRegisterProperty", "window", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "offset", "useMotionValue", "axis", "minus", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "fullChildrenArea", "isLayerTooBig", "measure", "te", "parentLength", "firstChild", "lastChild", "childrenLeft", "childrenRight", "childrenTop", "childrenBottom", "childrenWidth", "childrenHeight", "childrenArea", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "keyframes", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "AtomsSpacerFonts", "getFonts", "g_7PKXfpm_default", "TickerFonts", "Ticker", "AtomsSpacerControls", "getPropertyControls", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "background", "gap", "height", "horizontalPadding", "id", "verticalPadding", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "V1DmaTYZL", "w_tY_7j4j", "ntFpAZASG", "zTEEDbGHO", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "g_7PKXfpm_default", "Ticker", "SVG", "Image2", "css", "FramerJGHshZ_2m", "withCSS", "JGHshZ_2m_default", "addPropertyControls", "AtomsSpacerControls", "ControlType", "addFonts", "AtomsSpacerFonts", "TickerFonts"]
}
