{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/kJ8I2Zp8FFqwRdFKVFW6/NURhkxtkJuqEE4feKc91/RQH2l0eyM.js", "ssg:https://framerusercontent.com/modules/h20VTYvYYqLp1TyMCnU3/mnAk4SE5kU7BVIzm15AX/WcLdWvncu.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 directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\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 transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children: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;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);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)})});});}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:\"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(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// 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||supportsAcceleratedAnimations){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?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):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\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"HsuWXrkFy\",\"KcE3M32iW\",\"L_KB7XSm4\"];const serializationHash=\"framer-DXTpa\";const variantClassNames={HsuWXrkFy:\"framer-v-11dlacp\",KcE3M32iW:\"framer-v-i639cd\",L_KB7XSm4:\"framer-v-5b0iur\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"HsuWXrkFy\",Phone:\"L_KB7XSm4\",Tablet:\"KcE3M32iW\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"HsuWXrkFy\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"HsuWXrkFy\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-11dlacp\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"HsuWXrkFy\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-9eab8de4-3091-46b2-9abf-a9376c1a4280, rgb(230, 220, 211))\",...style},...addPropertyOverrides({KcE3M32iW:{\"data-framer-name\":\"Tablet\"},L_KB7XSm4:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11y2vw2-container\",layoutDependency:layoutDependency,layoutId:\"Zx6AYmuNi-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"Zx6AYmuNi\",layoutId:\"Zx6AYmuNi\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lfbthf\",layoutDependency:layoutDependency,layoutId:\"Syjz4OclZ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1iejss2\",\"data-framer-name\":\"Gucci\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"kPB3qpIzT\",opacity:1,radius:20,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 180 180\"><path d=\"M 11.25 180 C 5.037 180 0 180 0 180 L 0 0 C 0 0 5.037 0 11.25 0 L 168.75 0 C 174.963 0 180 0 180 0 L 180 180 C 180 180 174.963 180 168.75 180 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 148.02 85.052 L 152.437 85.052 C 151.948 85.433 151.654 85.9 151.654 86.54 L 151.654 101.826 C 151.654 102.465 151.96 102.92 152.437 103.301 L 148.02 103.301 C 148.497 102.92 148.79 102.453 148.79 101.826 L 148.79 86.539 C 148.791 85.899 148.51 85.432 148.02 85.052 Z M 45.637 91.618 C 44.915 90.056 44.12 88.519 42.786 87.401 C 41.367 86.195 39.567 85.47 37.707 85.47 C 32.764 85.47 30.548 89.958 30.548 94.373 C 30.548 98.641 32.666 102.957 37.438 102.957 C 39.383 102.957 41.281 102.108 42.479 100.571 L 42.479 97.127 C 42.479 96.193 42.173 95.591 41.451 95.038 L 46.505 95.038 C 45.966 95.652 45.637 96.279 45.637 97.127 L 45.637 100.571 C 43.324 102.736 40.449 104.063 37.255 104.063 C 31.614 104.063 27 99.894 27 94.09 C 27 88.323 31.552 84.375 37.12 84.375 C 40.583 84.375 43.385 85.654 45.637 88.224 L 45.637 91.618 Z M 58.02 85.052 L 62.781 85.052 C 62.131 85.53 61.912 86.072 61.912 86.871 L 61.912 98.026 C 61.912 101.086 65.484 102.588 68.104 102.588 C 70.674 102.588 74.026 101.076 74.026 98.087 L 74.026 86.871 C 74.026 86.12 73.842 85.605 73.342 85.052 L 75.935 85.052 C 75.409 85.593 75.214 86.133 75.214 86.871 L 75.214 98.087 C 75.214 102.12 70.478 103.669 67.198 103.669 C 63.822 103.669 58.89 102.17 58.89 98.026 L 58.89 86.871 C 58.889 86.109 58.583 85.543 58.02 85.052 Z M 105.694 91.68 C 105.058 90.068 104.312 88.655 103.002 87.486 C 101.595 86.232 99.881 85.445 97.986 85.445 C 93.092 85.445 90.583 89.749 90.583 94.213 C 90.583 98.701 93.189 102.944 98.022 102.944 C 101.62 102.944 104.19 100.398 105.695 97.336 L 105.695 100.656 C 103.457 102.882 100.568 104.014 97.411 104.014 C 91.561 104.014 87.181 100.214 87.181 94.152 C 87.181 88.262 91.389 84.389 97.129 84.389 C 100.311 84.389 103.393 85.496 105.694 87.697 Z M 136.384 91.68 C 135.748 90.068 135 88.655 133.692 87.486 C 132.285 86.232 130.571 85.445 128.675 85.445 C 123.78 85.445 121.283 89.749 121.283 94.213 C 121.283 98.701 123.878 102.944 128.712 102.944 C 132.31 102.944 134.891 100.398 136.384 97.336 L 136.384 100.656 C 134.145 102.882 131.269 104.014 128.101 104.014 C 122.251 104.014 117.871 100.214 117.871 94.152 C 117.871 88.262 122.081 84.389 127.818 84.389 C 131 84.389 134.084 85.496 136.384 87.697 Z\" fill=\"rgb(115,35,55)\"></path></svg>',svgContentId:9761090318,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-137qyoi\",layoutDependency:layoutDependency,layoutId:\"gdMWnfcAi\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jy4ldm\",\"data-framer-name\":\"Silhouette\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"ELUbwSEz3\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M264.73 143.28a5.097 5.097 0 0 1-5.093-5.093 5.097 5.097 0 0 1 5.093-5.094 5.097 5.097 0 0 1 5.093 5.094c0 2.81-2.459 5.093-5.093 5.093Zm0-9.309a4.348 4.348 0 0 0-4.391 4.391 4.348 4.348 0 0 0 4.391 4.391 4.348 4.348 0 0 0 4.391-4.391c0-2.459-2.108-4.391-4.391-4.391Z\" fill=\"#732337\"/><path d=\"M266.829 140.821h-1.054l-1.23-2.283h-.878v2.283h-.878v-5.445h2.108c1.053 0 1.756.703 1.756 1.581 0 .703-.351 1.23-1.054 1.405l1.23 2.459Zm-3.162-2.986h1.23c.527 0 .878-.351.878-.702 0-.527-.351-.703-.878-.703h-1.23v1.405ZM59.592 164.18c-6.499-1.581-4.918-7.552.35-9.66 4.04-1.581 5.094-2.107 29.682-2.107 18.617 0 26.345.175 26.345.175l2.459-3.512s-5.094-.527-20.549-.352c-11.767 0-44.083-.702-44.435 10.714-.175 9.835 15.632 10.713 33.37 10.713 17.739 0 20.198 3.864 20.198 6.499 0 1.931-.703 9.308-19.847 9.308-19.143 0-36.004-.878-36.004-.878L48 189.646s23.008.351 28.979.527c5.971.176 31.789.527 31.789-13.172 0-14.753-32.667-8.606-49.176-12.821Z\" fill=\"#732337\"/><path d=\"M245.764 188.592c-1.756 0-5.093-.175-7.025-3.863 2.283-3.513 4.039-8.079 5.269-12.295 2.458-8.079.878-11.942.878-11.942l-4.04-2.986s-6.147 3.337-6.849 12.997c-.527 5.795.878 10.889 2.634 13.874-1.58 2.284-2.986 3.864-4.742 3.864-4.566 0-5.62-12.821-4.039-25.993.351-3.688 1.58-10.538 1.58-10.538l32.492.703 2.81-4.04h-34.775c1.23-6.323 2.108-10.713 2.108-10.713l-3.513-2.459s-1.58 4.917-2.986 13.172h-6.498c1.23-6.498 2.283-10.713 2.283-10.713l-3.512-2.459s-1.405 5.269-2.81 13.172h-67.794c2.284-10.362 2.284-16.509 2.284-16.509l-4.391-3.688s-6.323 5.444-10.187 26.871c-1.405 8.43-2.107 18.968-2.107 24.061 0 0-2.459 9.836-6.674 9.66-1.932 0-2.635-2.634-3.162-6.498 1.581-3.337 2.81-7.025 3.864-10.538.878-2.81 3.337-11.065 4.215-15.456 3.337-15.279 2.459-24.412 2.459-24.412L128.794 128s-6.498 5.445-8.079 27.047c-.351 4.391-1.229 18.441.351 27.398-1.756 3.337-3.688 6.147-5.62 6.147-2.985 0-2.985-9.132-2.81-14.401.351-7.201 1.581-11.592 1.581-11.592l-2.986-2.107s-1.581 7.727-1.405 15.455c.176 7.552.703 14.577 5.62 14.577 2.283 0 4.391-2.458 6.147-5.62.879 3.337 2.284 5.445 4.567 5.62 3.337.176 5.444-2.985 6.849-6.147a46.12 46.12 0 0 0 .703 5.796h1.405s-.878-6.674 4.566-17.563c2.635-5.62 4.04-8.606 8.782-10.713 0 0-1.405 2.458-2.986 11.591-1.581 9.484 1.581 17.212 6.147 17.212 3.161 0 4.742-3.688 5.445-5.971 1.053 3.512 3.161 5.971 5.62 5.971 3.161 0 6.674-6.147 7.552-12.118a3.486 3.486 0 0 0 1.932.526c1.581 0 2.986-1.405 3.864-2.985-.352 7.727 1.405 14.577 4.39 14.577 3.689 0 5.796-5.62 6.499-7.376.702 2.283 3.161 7.376 6.849 7.376 1.757 0 3.513-1.229 5.269-3.161 1.405 2.634 3.513 3.161 5.269 3.161 5.093 0 8.606-9.66 8.782-10.362.351 5.269 1.756 10.362 6.147 10.362 4.742 0 6.147-7.903 6.147-7.903 1.229 3.688 3.512 7.903 6.849 7.903 1.932 0 4.04-1.581 5.796-4.215 3.162 4.215 7.377 4.215 8.079 4.215 14.226 0 18.266-15.631 18.266-15.631l-1.757-2.108c-.175-.175-4.039 15.807-16.86 15.631ZM123.35 154.871c1.053-9.659 4.917-22.129 6.849-21.953 2.459.175 1.054 12.294-1.054 23.007-.878 4.742-3.161 12.821-3.863 15.631-.527 2.108-1.581 4.742-2.635 7.552-.527-9.659.527-22.832.703-24.237Zm12.118 23.184c0-9.484 2.108-21.779 2.459-23.008 1.756-9.66 6.674-21.954 8.43-21.954 2.459.176.176 12.294-2.81 22.832-1.229 4.742-6.323 17.739-8.079 22.13Zm27.223 10.362c-2.986 0-4.391-6.323-3.162-14.578 1.23-8.078 5.094-13.172 7.201-13.172.527 0 1.405.527 1.405 3.513-.175.351-1.405 2.283-1.405 7.025 0 2.459.527 4.391 1.581 5.796-1.229 7.376-3.513 11.416-5.62 11.416Zm36.882-4.918c-.527-3.161-.351-7.201.351-11.24.703-5.093 3.162-11.592 4.918-11.592 2.108 0 1.405 6.147.176 11.767-.878 3.162-2.986 7.553-5.445 11.065Zm13.524-8.079c-.352 1.054-4.567 13.172-8.957 13.172-1.932 0-3.162-1.053-3.864-2.81 2.634-3.688 5.093-8.606 6.322-13.172 2.459-8.079.879-11.943.879-11.943l-4.04-2.985s-6.147 4.039-7.025 14.928c-.351 5.445.351 9.484 1.756 12.645-1.581 1.932-3.337 3.337-4.566 3.337-2.986 0-4.918-5.093-4.567-8.43.879-7.552 3.689-17.563 3.689-17.563l-2.81-2.107s-1.932 9.132-2.811 13.523c-1.405 7.903-3.863 14.753-6.674 14.753-2.985 0-1.58-12.118-1.229-15.455.527-4.567 2.81-12.295 2.81-12.295l-2.81-2.107s-1.229 5.796-2.107 9.133c-.703 3.337-2.108 9.132-4.918 9.132-1.581 0-2.635-2.81-1.932-6.673.527-3.337 1.054-4.391 1.054-4.391l-1.054-.703s0-.702-.351-2.459c-.176-1.756-.527-2.458-.527-2.458l-4.04-2.81s-6.849 1.229-8.957 15.631c-.351 2.985-.351 5.795 0 8.254-.702 3.337-1.932 6.85-4.742 6.85-2.986 0-4.215-6.323-2.81-14.753 1.229-8.079 4.918-14.929 4.918-14.929s-2.81-.175-5.796 1.23c-2.108 1.053-3.688 2.634-4.918 3.864.878-2.459 1.757-4.918 2.459-7.553.527-2.283 1.054-4.215 1.581-6.147l67.969 1.581c-1.054 6.85-2.108 15.104-1.932 23.71Zm11.24-13.875c-.878 11.943.176 17.739.176 17.739-1.054 3.864-2.459 9.308-5.094 9.308-2.458 0-4.215-6.849-1.932-26.168a507.54 507.54 0 0 1 1.581-10.714l6.498.176c-.526 2.985-1.053 6.147-1.229 9.659Zm13.172 10.538c.527-5.269 3.162-11.591 4.918-11.591 2.108 0 1.405 6.147.176 11.767-.703 2.986-2.459 7.025-4.391 10.362-.878-2.283-1.23-5.62-.703-10.538Zm-124.006-28.276c.351.702.878 1.054 1.581 1.054 0 0 .527-.527.878-2.108.176-.878.351-2.108.527-3.688 0-.878-.351-1.757-.703-2.283-.351-.703-.878-1.054-1.58-1.054 0 0-.703.527-1.23 2.985-.175 1.23-.351 2.108-.351 2.986.176 1.054.703 1.757.878 2.108Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11bnm2d\",layoutDependency:layoutDependency,layoutId:\"zVoSH5AcD\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-bi71ht\",\"data-framer-name\":\"Rayban\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"zPLkOJZat\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M241.996 131.191a3.482 3.482 0 1 0 1.333 6.695 3.475 3.475 0 0 0 2.14-3.224 3.471 3.471 0 0 0-3.473-3.471Zm0 6.542a3.058 3.058 0 0 1-3.061-3.071 3.068 3.068 0 0 1 .898-2.16 3.05 3.05 0 0 1 2.163-.891 3.051 3.051 0 0 1 3.052 3.051 3.05 3.05 0 0 1-.888 2.17 3.056 3.056 0 0 1-2.164.901Z\" fill=\"#732337\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M243.787 133.752c0-.328-.145-.674-.437-.838-.292-.173-.62-.191-.95-.191h-1.693v3.89h.473v-1.795h.875l1.111 1.795h.566l-1.177-1.795c.694-.019 1.232-.301 1.232-1.066Zm-1.878.692h-.729v-1.375h1.112c.483 0 1.011.073 1.011.674.001.792-.848.701-1.394.701Zm-116.451 57.63-22.683-11.076c-.499-.258-.756-.918-.746-1.35l.06-6.114c.009-.431.094-.873.66-1.279 2.425-1.546 9.934-5.702 17.692-17.025 10.333-15.08 0-27.75-16.148-24.301-14.342 3.063-28.943 10.829-35.276 15.051-5.645 3.763-4.86 8.309-5.017 12.386.313 1.724.94 1.567 2.352-.157 10.504-9.72 26.496-17.089 29.475-18.344 2.979-1.254 10.035-5.487 18.344-3.606 7.982 1.808 6.042 12.66 3.606 17.246-2.666 5.017-10.269 12.308-13.719 14.111-1.31.685-1.802 0-1.802-1.098l.549-23.596c0-1.568-.706-2.274-2.274-1.725l-2.508 1.254c-1.724 1.02-1.646 1.412-1.803 2.666l-.38 27.202c-.013.587-.287 1.058-.61 1.197l-8.182 4.603c-1.881.941-1.412 2.352 0 2.822l6.585 3.135c1.568.627 2.039 1.097 2.039 2.665l-.236 13.17c5.88-1.175 6.271-3.998 6.428-5.88v-3.998c.156-.941.705-1.254 1.489-1.097l19.127 9.25c1.725.784 2.666.469 3.92-1.724 1.253-2.193 1.41-3.29-.942-4.388Zm33.427-33.229c-2.658 1.535-3.888 4.407-2.84 6.22 1.045 1.814 4.207 2.118 6.867.582s3.81-4.329 2.763-6.142c-1.046-1.813-4.131-2.196-6.79-.66Z\" fill=\"#732337\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M149.075 160.797c-.722.881-2.116 3.567-2.9 5.213-.784 1.646-2.43 5.369-4.076 5.369-1.74 0-1.96-4.31-1.96-5.879 0-1.568-.941-1.803-1.411-1.724-.471.078-1.803.548-2.195 2.195-.392 1.646-2.509 8.78-4.861 8.78-1.489 0-2.587-4.312-2.664-5.644-.079-1.332-.707-2.43-2.039-2.43-.941 0-2.117.47-2.587 1.019-.471.549-.548 1.411-3.058.863-2.273-.079-4.468 1.098-7.133 5.565-1.604 2.69-2.908 7.703-.47 9.721 2.273 1.88 6.271-1.49 7.447-2.902 1.176-1.41 2.195-2.429 2.666-3.212.469-.785.941-.706 1.175.077.235.785 1.568 3.841 3.293 3.764 1.725-.079 3.92-1.411 6.507-5.959.47-.941 1.176-.862 1.333-.078.157.784 1.175 3.371 2.9 3.371 1.646 0 3.477-2.615 4.39-4.154.627-1.058 1.568-.548 1.568.47 0 1.019-.471 25.085-.471 25.085 0 1.097.431 1.41 1.215 1.41h3.41c.627 0 1.176-.548 1.176-1.41l.705-39c.001-.942-1.057-1.607-1.96-.51Zm-26.652 15.364c-.706 1.177-2.587 4.312-4.233 3.764-.862-.471.287-3.607.863-4.704.862-1.646 3.39-4.268 4.546-3.606 1.098.627-.471 3.371-1.176 4.546Zm119.443-24.044c-.312.275-.823.745-1.959.235-1.961-.784-2.117-4.468-3.135-7.839-.917-3.029-3.123-2.838-3.92-1.45l-2.391 3.841c-.432.783-1.372 2.587-2.313 2.587-1.098 0-.607-1.569-.548-3.136.038-1.059-.628-2.39-1.725-2.39-1.254 0-2.586 1.919-3.606 4.115-.712 1.536-2.548 7.408-4.861 7.408-1.489 0-1.646-4.312-1.724-5.644-.077-1.333-.549-2.979-1.881-2.979-.902 0-1.488.469-1.96 1.018-.469.549-.547 1.019-2.194.784-2.274-.078-6.036 2.039-8.702 6.507-1.604 2.69-3.535 8.33-1.097 10.348 2.274 1.88 6.349-2.51 7.525-3.92 1.175-1.411 2.194-2.431 2.666-3.214.469-.784.94-.706 1.175.079.234.784 1.568 3.841 3.293 3.762 1.725-.078 3.135-.47 5.722-5.017.47-.94 1.332-1.058 1.489-.274.158.784.315 2.862 1.961 2.862 2.82 0 6.019-6.867 6.82-8.467.705-1.412 1.841-1.02 2.234.038.56 1.516 1.057 6.39 4.114 6.39 3.058 0 5.134-3.254 5.761-4.273.707-1.018.339-2.318-.744-1.371Zm-33.237 4.704c-.706 1.175-2.274 3.762-3.92 3.213-.862-.47.208-2.743.785-3.841.862-1.646 3.389-4.306 4.547-3.645 1.096.628-.707 3.096-1.412 4.273Zm-15.145-4.109s-6.663-4.861-8.544-7.055c-1.264-1.474-.392-2.587.392-3.213 4.702-3.136 12.071-7.997 14.972-15.522 2.795-7.253-1.568-13.561-4.704-14.581-4.297-1.396-13.405 1.412-17.953 9.878-2.944 5.483-4.309 7.29-4.702 22.184-.076 2.821-.157 6.036-.157 9.564 0 3.528-.392 13.091-.785 14.893-1.489 4.233 2.98 1.725 5.017.08 2.039-1.647 1.881-4.116 1.881-5.174 0-1.334.079-24.85.784-30.103.44-3.266.942-9.328 4.389-14.58 3.451-5.253 6.978-3.135 7.919-2.274.94.862 2.274 3.057 1.567 7.526-1.095 6.935-9.094 14.502-11.133 16.854-2.037 2.351-1.566 4.39-.39 6.036.836 1.171 2.901 3.449 5.017 5.566 2.117 2.116 1.881 3.998 1.569 5.409-1.099 4.232-12.544 15.678-12.544 15.678-2.431 2.587.077 6.82.94 8.23.864 1.412 1.96.942 2.665-.234 2.823-5.252 14.973-17.952 14.973-17.952 3.532-4.469 2.041-8.78-1.173-11.21Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10fooyn\",layoutDependency:layoutDependency,layoutId:\"RW50eS_EY\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4ppgfl\",\"data-framer-name\":\"CHLOE\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"wPuljaJHr\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M91.389 187.852c8.274 0 11.825-4.858 12.997-6.834.938-1.541 2.178-4.121 3.35-6.801.972-2.244 1.876-3.249 2.948-3.249.938 0 1.541.737 1.541 1.943 0 .636-1.775 9.681-1.842 10.117-.402 2.445-.771 3.45-1.541 4.254-.335.369-.771.67-1.575 1.139-5.125 2.981-10.82 4.522-16.582 4.522-17.352 0-30.685-13.165-30.685-30.316 0-12.529 6.6-23.115 17.688-28.475 2.076-1.005 7.101-3.483 14.74-3.115 7.737.369 13.566 4.69 15.208 5.628 2.713 1.574 2.412 4.053 2.479 4.824.268 3.149.435 6.867.435 7.671 0 2.11-.435 2.981-1.541 2.981-.938 0-1.474-.636-2.311-2.813-3.216-8.476-8.308-12.898-14.874-12.898-6.834 0-13.165 4.322-16.18 11.089-1.775 3.919-2.613 8.609-2.613 14.337 0 9.581 2.412 16.683 7.203 21.239 3.684 3.517 7.57 4.757 11.155 4.757Zm37.319-52.527c0 1.507-.1 17.352-.1 17.721 0 1.172.301 1.742.938 1.742.435 0 .803-.168 1.607-.67 2.278-1.374 5.025-2.077 7.906-2.144 3.049-.101 6.499 1.005 8.442 2.412a10.399 10.399 0 0 1 3.551 4.857c.469 1.407.603 2.513.636 5.394.067 2.545.235 17.922.235 17.922 0 3.617.469 4.756 2.512 5.962.972.603 1.273.871 1.24 1.24-.101 1.005-1.91 1.105-5.628 1.105l-9.346.134c-2.245 0-3.149-.301-3.149-1.005 0-.435.435-.971 1.507-1.775 1.474-1.106 2.077-2.513 2.077-4.556 0-.335-.301-21.071-.301-21.071-.067-3.752-3.149-4.522-5.528-4.623-2.278-.1-4.723 1.307-5.895 2.881-.603.804-.704 2.546-.704 4.255.034 2.344-.1 17.151-.1 17.62 0 1.642.201 2.881.569 3.651.335.737.67 1.039 1.809 1.742 1.373.871 1.943 1.407 1.943 1.876 0 .771-1.273 1.039-2.814 1.039h-12.562c-2.077 0-3.015-.302-2.948-.972.033-.77 1.474-1.34 2.077-2.01.603-.67 1.239-1.742 1.273-2.881.033-.803.067-39.629.067-39.629-.101-3.685-.771-4.221-1.675-4.924-.871-.67-1.34-1.139-1.34-1.608 0-.369.368-.771 1.34-1.106 1.842-.67 4.924-1.842 6.063-2.479 2.982-1.675 3.518-3.45 5.025-3.35 1.273.101 1.273 1.742 1.273 3.25Zm44.786-.435s.335 46.262.335 46.898c0 2.982.201 4.422.938 5.36.603.804 3.417 1.575 3.249 2.915-.067.603-1.675.703-3.316.703-.402 0-12.16.101-12.16.101-2.613-.067-3.384-.268-3.384-.804 0-.603 1.441-1.374 2.211-2.01 1.139-.972 1.474-1.34 1.474-3.585l-.167-40.534c0-1.541-.57-2.646-1.709-3.35-.804-.502-1.44-1.038-1.105-1.708.335-.67 1.172-.972 2.177-1.24 1.039-.268 2.647-.904 3.886-1.473 1.441-.637 2.077-1.072 4.187-2.68.905-.704 1.173-1.139 1.977-1.206.938-.101 1.474.502 1.407 2.613Zm78.627 3.55c2.143.503 3.215 1.307 3.215 2.781 0 1.842-1.842 3.986-5.125 5.963-2.311 1.373-5.326 2.479-6.867 2.479-.704 0-2.211-.067-2.211-1.407 0-.67.67-1.374 2.311-2.412 1.039-.637 1.307-.905 1.709-1.541.402-.637.603-1.273.603-1.943 0-.972-.335-1.675-1.24-2.613-.804-.838-1.105-1.34-1.105-1.843 0-1.306 1.876-1.574 2.914-1.239 1.541.502 5.528 1.708 5.796 1.775Zm-15.746 27.604c.804-3.25 2.11-9.514 6.867-9.514 3.886 0 5.728 5.025 6.231 9.949.134 1.24.268 2.379-2.647 2.379h-8.006c-2.881-.034-2.881-1.005-2.445-2.814Zm16.883 7.369c1.675 0 6.398.235 7.169-.502.636-.637.569-1.206.569-2.345 0-9.212-6.498-18.525-17.654-18.525-12.227 0-19.295 11.356-19.295 19.664 0 11.122 8.911 20.133 19.898 20.133 5.762 0 11.357-2.345 14.874-6.264.871-.972 1.239-1.709 1.239-2.446 0-.938-.737-1.675-1.641-1.675-.603 0-1.239.369-2.244 1.273-1.675 1.541-6.432 5.059-11.156 4.087-9.145-1.943-8.977-12.127-8.542-13.366 0-.034 16.214-.034 16.783-.034Zm-52.066 14.003c-7.303 0-9.414-7.571-9.414-15.577 0-10.385 4.657-15.309 8.007-15.309 8.006 0 9.245 9.011 9.245 15.309-.033 10.82-4.053 15.577-7.838 15.577Zm-.201-35.442c-14.506 0-21.038 11.423-21.038 19.43 0 10.183 7.001 20.568 20.368 20.568 11.523 0 20.233-8.71 20.233-19.965 0-11.089-8.81-20.033-19.563-20.033Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pwkbng\",layoutDependency:layoutDependency,layoutId:\"CP1ifw1r0\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1tpa6gn\",\"data-framer-name\":\"Dita\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"XIvr5z7MA\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M164.384 143.272c-.97.382-2.113 1.511-3.273 3.231-1.109 1.633-1.299 2.588-.52 2.675.312.035.745-.174 1.472-.695.554-.417 1.178-.851 1.403-.973.953-.538 2.511-1.285 2.944-1.424.26-.087.901-.313 1.42-.504 1.195-.452 2.84-.886 3.377-.886 1.022 0 2.165.886 2.702 2.067.312.73.329 1.251.329 12.334v11.569l-.416.626c-.311.469-.658.712-1.299.92-.467.157-1.004.278-1.195.278-.484 0-.796.417-.502.66.347.296 15.638.313 15.985.018.363-.296.104-.487-1.161-.817-.606-.173-1.281-.417-1.489-.573-.918-.643-.918-.643-.918-12.785 0-12.108 0-11.917.918-13.151.987-1.302 2.632-1.476 4.399-.486.208.122.485.209.623.209.225 0 .884.26 3.066 1.233.433.191.9.434 1.039.521.138.087.502.261.779.382.294.139 1.212.73 2.078 1.32.849.574 1.68 1.06 1.819 1.06.363 0 .692-.347.692-.729 0-.4-2.719-4.048-3.948-5.316l-.901-.903h-3.498c-1.94 0-8.382-.035-14.339-.087-10.027-.087-10.876-.07-11.586.226Zm47.521-.139-5.889.086-.051.383c-.07.416.675.92 1.35.92.364 0 1.576.608 2.459 1.234.572.417 1.68 1.91 2.096 2.814.554 1.268.433 1.754-1.334 5.194a270.134 270.134 0 0 1-1.801 3.526c-.103.191-.692 1.355-1.298 2.606-.624 1.233-1.628 3.231-2.252 4.43a335.546 335.546 0 0 0-2.113 4.117c-1.091 2.154-1.749 2.953-2.77 3.439-1.334.608-1.559.765-1.559 1.077 0 .296.26.313 3.896.365 2.148.017 4.07 0 4.295-.052.572-.139.468-.504-.277-.921-1.593-.903-1.732-1.928-.606-4.377.381-.817.935-1.998 1.23-2.623.294-.626.658-1.251.831-1.39.242-.191 1.437-.261 6.408-.295 3.359-.035 6.355.017 6.667.104.624.156.675.208 2.113 2.988a144.95 144.95 0 0 0 1.403 2.675c.779 1.459.519 2.362-.849 2.918-.519.209-.693.365-.693.66v.383l8.209-.018c4.52-.017 8.278-.069 8.365-.121.225-.139.156-.539-.139-.834-.156-.174-.571-.278-.987-.278-1.264 0-2.199-1.042-5.247-5.82-.485-.764-.728-1.163-.936-1.563a11.269 11.269 0 0 0-.519-.869 15.954 15.954 0 0 1-.52-.868 12.18 12.18 0 0 0-.484-.817c-.156-.26-2.286-3.769-4.711-7.782-2.425-4.03-4.555-7.522-4.711-7.782a12.18 12.18 0 0 1-.484-.817 11.132 11.132 0 0 0-.52-.868c-.19-.296-.45-.73-.589-.973-.26-.469-.883-.799-1.662-.904-.243-.017-3.083 0-6.321.053Zm3.065 9.154c.138.174.658.973 1.126 1.79.484.816 1.039 1.754 1.246 2.084.191.33.433.764.537.956.104.191.329.573.52.868.19.278.398.643.467.782.07.139.468.834.884 1.529.623 1.024.727 1.302.554 1.511-.191.226-1.005.26-5.438.226l-5.213-.052-.052-.417c-.069-.4.295-1.164 1.819-4.013.329-.626 1.073-2.033 1.645-3.127 1.368-2.64 1.42-2.693 1.905-2.137ZM92.462 143.41c-.485.139-.364.574.173.678 1.386.278 2.061.486 2.338.747.831.747.814.452.814 13.741v12.507l-.64.521c-.364.296-.815.539-1.005.539-.52 0-1.784.417-2.026.66-.139.139-.156.26-.035.382.19.191 19.552.261 21.63.087 2.408-.226 5.386-1.147 6.928-2.171.294-.192.64-.4.779-.47.138-.052.693-.469 1.212-.903 4.174-3.474 6.079-8.46 5.092-13.341-.555-2.779-.918-3.804-2.304-6.445-.363-.695-2.597-2.849-3.758-3.613-1.229-.817-2.961-1.668-4.139-2.033-2.926-.92-2.199-.868-13.854-.92-5.992-.018-11.05 0-11.205.034Zm20.782 1.911c1.247.521 2.476 2.05 2.944 3.683.242.851.277 2.172.294 9.85 0 10.04.104 9.311-1.472 10.735-1.68 1.512-3.169 2.033-5.819 2.033-1.922 0-1.957 0-2.684-.556-.416-.33-.831-.834-.952-1.181-.174-.47-.226-3.388-.226-12.317l-.017-11.726.381-.399c.364-.382.45-.4 3.637-.4 2.563 0 3.411.053 3.914.278Zm22.773-1.893c-.329.121-.277.538.087.729.173.087.744.226 1.264.296.727.104 1.056.243 1.506.695l.555.556v25.205l-.503.574c-.381.451-.744.642-1.524.816-1.264.278-1.524.417-1.385.782.104.243.918.278 7.949.278 4.312 0 7.949-.07 8.087-.157.399-.26.052-.521-1.177-.885-.728-.226-1.351-.556-1.645-.852l-.451-.469v-12.542c0-9.849.035-12.612.208-12.889.347-.556 1.178-.991 2.13-1.13 1.074-.139 1.351-.295 1.264-.712-.051-.313-.38-.33-8.104-.365-4.434-.017-8.157.018-8.261.07Zm56.266 41.865c-.727 1.129-1.368 2.119-1.42 2.224-.052.086-.537.851-1.074 1.685-.554.833-1.004 1.632-1.004 1.771 0 .452 1.247.365 1.697-.121.208-.226.381-.487.381-.573 0-.105.173-.348.399-.556.363-.348.588-.382 2.511-.382h2.112l.468.746c.71 1.077.831 1.164 1.593 1.164.589 0 .71-.052.71-.33 0-.191-.069-.382-.156-.434-.086-.052-.484-.66-.9-1.338-.416-.677-.883-1.407-1.022-1.632-.138-.226-.606-.973-1.039-1.651-.433-.677-.918-1.442-1.074-1.702a6.512 6.512 0 0 1-.415-.695c-.052-.104-.173-.208-.26-.208-.087 0-.762.92-1.507 2.032Zm1.888 1.129c.173.226.312.487.329.591 0 .104.121.295.26.417.138.121.26.364.26.538 0 .295-.139.33-1.299.33-.987 0-1.299-.052-1.299-.243 0-.295 1.074-1.998 1.264-2.015.087 0 .294.174.485.382Zm-30.618-1.98c-.849 1.667-1.975 3.752-2.044 3.821-.156.174-.641-.399-1.056-1.25a47.693 47.693 0 0 0-.641-1.234c-.121-.191-.433-.764-.71-1.268-.485-.868-.537-.903-1.247-.903-.849 0-1.004.139-.71.66.121.191.416.747.658 1.199.26.451.623 1.111.814 1.442.19.33.554.955.779 1.389.243.435.589 1.06.797 1.39.19.33.433.764.519.955.191.435.676.869.814.73.156-.156 1.04-1.807 1.75-3.283.433-.869.744-1.338.917-1.303.139.017.762 1.06 1.386 2.293 1.126 2.223 1.593 2.745 1.853 2.05.069-.174.675-1.251 1.351-2.397a97.058 97.058 0 0 0 1.35-2.346c.07-.139.278-.503.468-.781.191-.296.398-.643.45-.782.07-.139.243-.4.364-.556.139-.156.208-.382.139-.469-.122-.208-1.282-.261-1.576-.052-.104.069-.572.782-1.039 1.598-.468.817-.936 1.633-1.057 1.824a5.882 5.882 0 0 0-.381.73c-.364.799-.623.503-1.991-2.241-.555-1.112-1.109-2.067-1.23-2.12-.139-.052-.416.278-.727.904Zm-43.053-.73c-.225.226-.139 7.105.087 7.331.138.139 1.039.208 2.926.208 2.581 0 2.737-.017 2.84-.347.052-.191.052-.417 0-.521-.069-.104-.917-.174-1.991-.174-1.697 0-1.905-.035-2.078-.33-.243-.486-.225-1.841.052-2.067.121-.104 1.039-.226 2.043-.243 1.715-.052 1.801-.07 1.853-.435.087-.573-.519-.747-2.268-.642-1.351.086-1.507.052-1.663-.261-.26-.469-.242-1.146.035-1.372.121-.105 1.073-.226 2.13-.244 1.887-.052 1.887-.052 1.887-.486v-.434l-2.874-.052c-1.576-.018-2.91.017-2.979.069Zm11.309.07c0 .156 1.766 2.466 2.39 3.109.658.678.814 1.181.9 2.693l.087 1.58.71.053c.866.069.935-.087.935-2.068 0-1.268.173-1.771.866-2.414.398-.382 2.251-2.797 2.251-2.936 0-.104-.346-.191-.848-.191-.814 0-.866.035-1.542.903-1.368 1.772-1.541 1.928-1.818 1.772-.139-.087-.676-.712-1.195-1.372-.918-1.199-.935-1.216-1.836-1.268-.554-.035-.9.017-.9.139Zm13.889 3.596.052 3.786 2.788.053c2.372.034 2.823 0 2.909-.226.243-.66-.034-.782-1.957-.782-1.212 0-1.922-.069-2.06-.208-.33-.33-.278-2.154.069-2.293.156-.053 1.039-.105 1.991-.105 1.438 0 1.75-.052 1.836-.278a.746.746 0 0 0-.069-.573c-.139-.226-.468-.278-1.784-.243-2.009.052-2.286-.07-2.217-1.042l.052-.73 2.078-.087c2.079-.087 2.079-.087 2.079-.521v-.434l-2.91-.052-2.892-.035.035 3.77Zm31.588-3.492c-.139.347-.139 6.462 0 6.983.104.382.121.382 2.909.348l2.788-.053.052-.469.052-.469-2.043-.052-2.044-.052v-2.432l1.992-.087c1.766-.069 1.991-.121 2.043-.417.122-.59-.242-.694-2.112-.642-1.801.052-1.819.034-1.923-.382a2.754 2.754 0 0 1-.052-.921l.052-.504 2.044-.052 2.026-.052v-1.025h-2.84c-2.425 0-2.858.035-2.944.278Zm27.155-.052c-.035.121-.052 1.824-.035 3.769l.052 3.561.727.053c.71.052.728.034.831-.539.07-.33.087-.973.052-1.442-.034-.503.018-.851.156-.886.104-.034.849.591 1.646 1.407 1.42 1.46 1.472 1.494 2.268 1.494.502 0 .814-.069.814-.208 0-.104-.589-.817-1.316-1.546-1.247-1.303-1.437-1.72-.797-1.72.364-.017 1.143-.66 1.403-1.164.485-.955-.069-2.102-1.264-2.658-.624-.278-1.126-.347-2.615-.347-1.316 0-1.853.069-1.922.226Zm3.706 1.164c.71.434.779 1.233.121 1.667-.572.382-1.905.521-2.078.244-.156-.244-.139-1.859.017-2.102.173-.278 1.368-.157 1.94.191Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16dtjru\",\"data-framer-name\":\"Etnia-Barcelona\",layoutDependency:layoutDependency,layoutId:\"Z80y1OwbC\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15uq7qh\",\"data-framer-name\":\"Etnia-Barcelona\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"v8S5QPtir\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M220.366 156.836c0-2.129-1.388-4.304-4.119-4.304h-4.581v12.911h2.036v-10.736h2.499c1.296 0 2.036 1.111 2.036 2.129s-.648 1.99-2.036 1.99h-2.221v1.11l4.489 5.507h2.684l-3.888-4.72c1.805-.463 3.008-1.944 3.008-3.887h.093Zm10.968 3.748c-.602 1.759-2.037 2.869-3.841 2.869-1.805 0-2.222-.462-2.962-1.249-.74-.787-1.157-1.897-1.157-3.054 0-1.157.417-2.268 1.203-3.101.787-.833 1.851-1.342 2.916-1.342 1.758 0 3.146.972 3.748 2.731v.092h2.082v-.185c-.786-2.915-3.054-4.766-5.83-4.766-2.777 0-3.24.74-4.397 1.943a6.903 6.903 0 0 0-1.758 4.582c0 1.712.648 3.285 1.805 4.535a5.914 5.914 0 0 0 4.35 1.897c2.869 0 5.136-1.897 5.877-4.859v-.185h-1.99v.092h-.046Zm5.692-.601h5.507v-2.129h-5.507v-3.147h5.599v-2.128h-7.682v12.864h7.728v-2.128h-5.645v-3.332Zm9.672-7.265h-2.083v12.726h7.775v-2.129h-5.692v-10.597Zm12.123-.278c-3.563 0-6.432 2.962-6.432 6.617 0 3.656 2.869 6.618 6.432 6.618s6.432-2.962 6.432-6.618c0-3.655-2.915-6.617-6.432-6.617Zm0 11.06c-2.406 0-4.304-1.944-4.304-4.396 0-2.453 1.944-4.443 4.304-4.443 2.36 0 4.304 1.99 4.304 4.443 0 2.452-1.944 4.396-4.304 4.396Zm15.41-2.453-5.646-8.329h-1.573v12.726h2.082v-8.284l5.553 8.284h1.666v-12.726h-2.082v8.329Zm10.272-8.515h-1.527l-4.997 12.911h2.267l1.157-3.147h4.674l1.157 3.147h2.221l-4.952-12.911Zm-2.36 7.775 1.574-4.258 1.573 4.258h-3.147Zm-101.251-1.805c.139-11.153-8.792-20.315-19.945-20.5-11.152-.139-20.361 8.746-20.5 19.945-.139 11.152 8.746 20.315 19.945 20.5 11.152.139 20.315-8.746 20.5-19.945Zm-20.408 12.356c-6.987-.093-12.54-5.831-12.448-12.819.093-6.988 5.831-12.541 12.819-12.448 6.987.092 12.54 5.831 12.448 12.818-.093 6.988-5.831 12.541-12.819 12.449Zm19.111 3.285c-2.73 0-4.951 2.129-4.997 4.859 0 2.73 2.128 4.952 4.859 4.998 2.73 0 4.951-2.129 4.997-4.859 0-2.73-2.128-4.952-4.859-4.998Zm17.262-15.734c.972-.879 1.296-2.221.88-3.517a3.392 3.392 0 0 0-3.24-2.313h-5.183v12.864h5.646c2.406 0 3.656-1.99 3.656-3.887s-.648-2.545-1.759-3.1v-.047Zm-5.506-3.794h3.146c.417 0 .741.139.972.463.232.277.324.601.324 1.018 0 .786-.463 1.573-1.342 1.573h-3.1v-3.054Zm3.563 8.746h-3.563v-3.61h3.563c1.11 0 1.573.926 1.573 1.805 0 .879-.555 1.805-1.573 1.805Zm8.976-10.829-4.997 12.911h2.221l1.157-3.147h4.674l1.157 3.147h2.221l-4.952-12.911h-1.527.046Zm-.786 7.775 1.573-4.258 1.573 4.258h-3.146ZM51.782 148.321C46.6 148.321 41 151.653 41 158.965c0 7.311 5.46 10.597 10.505 10.689h.185c4.674 0 8.607-2.591 10.134-6.571h-6.386c-.88.926-2.175 1.435-3.61 1.435-2.128 0-3.98-1.25-4.673-3.101l-.093-.231h15.271c.14-.74.232-1.481.232-2.268 0-7.265-5.507-10.643-10.736-10.643l-.047.046Zm-4.488 8.469v-.232c.647-1.99 2.267-3.193 4.35-3.193 2.082 0 3.887 1.157 4.442 3.193v.232h-8.839.047Zm26.655 8.19c-1.944 0-3.008-.925-3.008-2.637v-8.515h4.396v-4.952h-4.396v-4.581l-5.785.509v17.492c0 5.044 2.407 7.497 7.312 7.497h.139c.925 0 1.943-.093 3.193-.278l-.185-4.72c-.556.093-1.111.185-1.574.185h-.092Zm17.031-16.659c-1.944 0-4.582.417-6.11 2.36l-.323.37v-2.406H78.67v20.824h6.2v-11.337c0-2.731 2.176-4.443 4.212-4.443 2.036 0 3.47 1.342 3.47 4.304v11.43h5.924v-11.476c0-6.433-2.406-9.58-7.45-9.672l-.047.046Zm16.611.324h-5.923v20.824h5.923v-20.824Zm18.416 2.499-.324-.37c-1.249-1.62-3.146-2.499-5.321-2.499-7.358 0-9.996 5.368-10.089 10.412 0 3.286 1.111 6.34 3.101 8.33 1.758 1.758 4.165 2.73 6.895 2.73 2.73 0 4.165-.787 5.414-2.314l.324-.37v2.406h5.785v-20.824h-5.785v2.499Zm-4.951 13.05c-1.342 0-2.545-.463-3.378-1.342-.972-.972-1.528-2.453-1.481-3.98 0-2.499 1.573-5.229 4.905-5.229 3.332 0 4.998 2.36 4.998 5.275 0 2.916-2.221 5.276-4.998 5.276h-.046Zm-16.426-25.59a3.516 3.516 0 1 0 0 7.033 3.515 3.515 0 0 0 3.517-3.517 3.515 3.515 0 0 0-3.517-3.516Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-100vukl\",layoutDependency:layoutDependency,layoutId:\"LNiWeBDSs\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1tpor8r\",\"data-framer-name\":\"Serengeti\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"oDYX9YtRi\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M142.441 147.202c-.122.204-.163 2.841-.218 12.017-.054 10.766-.068 11.8-.258 12.207-.231.517-.625.734-1.631.843-.544.068-.666.136-.639.286.027.163.408.19 3.874.19 3.385 0 3.834-.027 3.875-.19.013-.136-.164-.218-.979-.313-.558-.082-1.142-.231-1.292-.34-.353-.217-.611-.788-.747-1.672-.096-.639-.612-17.767-.544-17.849.027-.027.625.612 1.318 1.4 5.057 5.696 10.413 11.487 14.94 16.109 3.263 3.331 3.535 3.535 3.657 2.76.027-.204.082-5.519.109-11.8.054-8.822.095-11.5.217-11.854.177-.557.571-.87 1.197-.951.829-.123.992-.163.992-.34 0-.095-.041-.177-.082-.19-.326-.055-7.014-.068-7.232-.014-.176.027-.258.122-.231.245.041.136.231.204.938.258 1.428.122 1.768.353 2.053 1.359.122.463.517 15.43.449 17.605l-.028 1.169-3.561-3.929a993.177 993.177 0 0 0-6.104-6.688c-1.4-1.523-4.133-4.5-6.063-6.593-1.944-2.121-3.602-3.875-3.697-3.915-.109-.041-.232.027-.313.19Zm-89.787.163c-3.1.666-5.098 3.304-4.84 6.349.15 1.631.653 2.868 1.809 4.322.68.843 1.29 1.414 4.458 4.119 2.515 2.148 3.33 3.521 3.33 5.588 0 1.155-.625 2.542-1.48 3.303-1.727 1.55-5.207 1.454-6.988-.19-.653-.585-1.074-1.496-1.142-2.434-.068-1.033-.136-1.264-.313-1.264-.258 0-.312.245-.421 2.297-.123 1.917-.082 2.556.163 2.869.177.244 1.06.584 2.161.856 1.373.34 3.739.326 5.03-.013 1.305-.354 2.311-.87 3.14-1.632 1.468-1.386 2.203-3.086 2.203-5.138.013-3.086-1.115-4.826-5.343-8.252-2.352-1.917-3.507-3.086-3.996-4.105-.354-.734-.395-.897-.381-1.808 0-1.21.272-1.917.992-2.678 1.278-1.319 3.86-1.577 5.805-.585.965.476 1.414 1.088 1.618 2.094.217 1.087.244 1.169.407 1.169.245 0 .272-.245.313-2.474l.04-2.053-.353-.041a31.463 31.463 0 0 1-1.536-.272c-1.427-.271-3.548-.285-4.676-.027Zm27.976-.041c-.176.109-1.849.136-6.702.149-3.548 0-6.525.055-6.606.096-.286.176.095.394.829.448.952.082 1.44.34 1.686.897.176.381.203 1.346.244 9.774.041 11.528-.04 12.833-.815 13.323-.15.095-.558.217-.884.258-.49.068-.612.136-.585.285.028.163.286.191 2.298.191 1.25.013 4.05.054 6.226.108 2.175.055 4.16.068 4.404.014.245-.041.49-.19.599-.354.203-.299.68-3.303.611-3.874-.013-.231-.095-.367-.204-.367-.176 0-.204.095-.53 1.292-.15.516-.313.815-.639 1.128-.652.652-1.21.761-3.833.761-2.148 0-2.298-.013-2.773-.272-.381-.204-.571-.421-.748-.829-.245-.53-.258-.72-.3-5.383-.026-3.915-.013-4.84.123-4.935.095-.068 1.074-.081 2.651-.041 3.453.096 3.752.245 4.01 1.876.095.531.19.762.3.762.135 0 .19-.381.312-1.822.068-1.006.177-2.053.258-2.338.163-.789-.081-.965-.57-.422-.15.164-.477.354-.694.408-.231.068-1.727.15-3.303.204-2.42.055-2.91.041-3.005-.095-.108-.177-.15-9.271-.027-9.557.055-.176.34-.19 1.958-.19 3.33 0 4.594.286 4.989 1.074.095.231.217.707.258 1.074.068.544.122.666.3.666.23 0 .217.027.461-2.352.218-2.188.204-2.27-.299-1.957Zm49.905 0c-.177.109-1.822.136-6.716.149-3.561 0-6.525.041-6.552.082-.231.231.095.408.788.462.911.068 1.414.326 1.686.829.19.354.204 1.074.245 10.196.027 9.978-.027 11.731-.394 12.52-.204.421-.531.598-1.36.72-.435.055-.557.123-.53.272.041.163.313.191 2.365.191 1.278.013 4.16.054 6.403.108 2.909.068 4.16.055 4.391-.04.204-.068.394-.286.489-.517.191-.489.544-2.991.503-3.589-.068-.72-.339-.557-.557.326-.231.952-.476 1.414-.938 1.822-.598.503-1.155.598-3.548.598-2.61 0-3.113-.136-3.575-.87-.259-.435-.259-.448-.299-5.478-.027-2.773.013-5.071.054-5.112.054-.04 1.224-.04 2.597 0 2.175.068 2.582.109 3.058.327.639.272.897.72 1.006 1.658.041.476.122.653.245.653.122 0 .204-.204.258-.83.231-2.487.34-3.425.394-3.656.109-.395-.285-.517-.543-.177-.435.53-.884.612-4.079.693l-3.017.068v-9.91h1.903c4.214 0 5.111.354 5.288 2.08.068.598.258.897.462.693.041-.04.136-.747.217-1.577.082-.829.177-1.794.218-2.175.095-.72.014-.815-.462-.516Zm54.74.041c-4.078.354-6.81 1.509-8.972 3.766-1.767 1.849-2.814 3.888-3.317 6.579-.285 1.387-.271 4.092 0 5.37 1.156 5.342 4.296 8.591 9.652 9.951 3.535.911 7.966.72 10.998-.462.53-.218 1.06-.476 1.169-.585.176-.177.204-.666.272-4.785.04-2.515.122-4.758.204-4.989.163-.639.57-.938 1.413-1.101.517-.095.734-.177.734-.299 0-.272-7.911-.313-8.02-.055-.082.204-.041.218 1.019.381.87.136 1.251.326 1.55.816.191.285.218.734.245 4.54.041 3.684.013 4.241-.136 4.5-.87 1.332-5.927 1.509-8.85.272-1.916-.802-3.752-2.175-4.826-3.603-.815-1.087-1.916-3.358-2.297-4.799-.285-1.087-.313-1.332-.313-3.588-.013-2.869.163-3.739 1.115-5.751.503-1.033.734-1.373 1.482-2.134.938-.938 1.808-1.509 3.058-2.025 3.712-1.496 10.006-.666 12.018 1.59.516.585.992 1.713.992 2.433 0 .408.163.653.367.571.136-.054.204-.516.272-2.283.054-1.21.095-2.474.095-2.801l.014-.584-1.237-.15c-.68-.068-1.659-.204-2.162-.312-1.944-.381-5.003-.612-6.539-.463Zm41.371.298c-.231.558-.91 3.752-.842 3.943.108.271.38.163.53-.204.326-.775.815-1.401 1.291-1.659.585-.299 2.379-.448 5.492-.462h1.958l-.028 10.848c-.04 9.978-.067 10.889-.244 11.46-.231.72-.503.91-1.455 1.033-.489.054-.611.136-.584.285.027.163.421.191 4.159.191 3.766 0 4.133-.014 4.174-.204.027-.15-.095-.218-.639-.272-1.332-.136-1.536-.204-1.835-.476-.558-.584-.571-.693-.612-12.153l-.054-10.739 2.718.068c2.842.081 3.82.204 4.514.557.611.313.829.625.978 1.427.096.517.177.748.299.748.245 0 .367-1.06.327-2.95-.041-1.441-.041-1.522-.272-1.495a71.21 71.21 0 0 0-1.156.149c-1.169.15-15.048.15-16.584 0-.598-.054-1.305-.19-1.55-.299l-.435-.19-.15.394Zm-136.881-.054c-.272.19-.082.299.802.394 1.02.123 1.482.354 1.727.911.176.381.203 1.332.23 9.72.041 9.38-.027 12.003-.366 12.805-.218.517-.558.721-1.333.83-.489.068-.598.136-.584.285.04.163.435.19 4.078.204 3.915.027 4.39 0 4.078-.326-.04-.041-.516-.15-1.06-.204-1.088-.122-1.468-.34-1.713-.924-.231-.544-.421-4.079-.38-7.029l.04-2.229 2.148.027c1.196.027 2.243.068 2.325.095.095.041.747.857 1.454 1.849 2.175 3.072 4.513 6.09 5.356 6.96.911.938 1.903 1.509 2.977 1.699.367.082 1.672.109 2.909.096 1.917-.028 2.257-.055 2.257-.204 0-.136-.258-.218-1.06-.327-2.828-.367-4.119-1.549-9.638-8.727-.816-1.074-1.537-1.998-1.591-2.08-.082-.108.122-.421.707-1.06 1.155-1.292 1.699-2.066 2.229-3.154 1.373-2.827 1.156-5.573-.598-7.517-.965-1.061-2.039-1.632-3.793-1.999-.774-.176-1.699-.217-5.967-.231-3.684-.013-5.084.027-5.234.136Zm9.326 1.101a5.04 5.04 0 0 1 2.528 1.4c1.251 1.251 1.754 2.733 1.754 5.098 0 2.066-.381 3.372-1.305 4.568-.449.584-1.564 1.115-2.543 1.21-.76.081-2.732-.095-3.507-.313-.843-.218-.788.15-.788-6.09 0-4.296.027-5.655.136-5.723.448-.286 2.705-.367 3.725-.15Zm118.35-1.033c-.177.109-1.836.136-6.716.136-3.561 0-6.511.055-6.566.082a.364.364 0 0 0-.013.245c.054.122.326.19.897.231.87.068 1.278.258 1.604.761.163.258.217.761.299 3.14.122 3.711.014 17.237-.149 18.474-.232 1.509-.395 1.7-1.605 1.876-.489.055-.611.136-.584.286.027.163.435.19 3.929.231 2.147.041 5.124.054 6.593.054 3.221.014 3.099.082 3.357-1.4.259-1.427.34-3.058.177-3.167-.204-.123-.231-.055-.476.87-.108.448-.312 1.006-.435 1.21-.557.91-1.767 1.196-4.54 1.128-1.509-.027-1.903-.082-2.284-.272-.557-.272-.856-.68-.992-1.305-.136-.544-.15-9.883-.027-9.951.054-.041 1.25-.013 2.678.027 2.134.082 2.664.15 3.017.327.599.299.87.734.938 1.495.055.707.272 1.047.463.693.054-.122.136-.856.176-1.645.041-.774.123-1.767.204-2.202.177-1.033.055-1.169-.53-.611-.544.53-.707.543-4.187.57l-2.787.028-.04-4.921-.028-4.894h2.026c3.127 0 4.35.231 4.867.938.122.176.258.625.299 1.06.054.571.136.775.285.802.245.041.299-.136.435-1.862.054-.816.163-1.645.218-1.863.19-.652 0-.883-.503-.571Zm36.908.204c-.068.055-.095.177-.054.272.054.136.217.191.57.191.707 0 1.265.326 1.55.883.231.462.231.707.231 10.699 0 11.215-.027 11.691-.625 12.289-.231.217-.489.326-.924.38-.748.082-.898.163-.721.381.095.109 1.006.136 4.051.149 2.148.014 4.01-.013 4.133-.04.095-.041.19-.136.19-.231 0-.096-.217-.177-.666-.231-1.713-.191-2.026-.34-2.243-1.088-.258-.87-.367-5.818-.326-13.73.054-8.632.054-8.659.693-9.135.163-.122.584-.272.952-.313.747-.109.883-.19.679-.394-.095-.095-1.074-.15-3.752-.15-1.984 0-3.684.041-3.738.068Zm14.746.585c-.829.259-1.631 1.101-1.93 2.039-.177.558-.096 1.659.163 2.162.693 1.359 2.175 1.985 3.697 1.563.585-.177 1.536-1.06 1.781-1.672.245-.625.258-1.781.027-2.338-.584-1.414-2.256-2.202-3.738-1.754Zm2.012.707c1.645.829 1.794 3.181.299 4.214-1.604 1.115-3.766-.054-3.766-2.052 0-.83.381-1.537 1.088-2.026.476-.313.666-.381 1.251-.381.462 0 .842.082 1.128.245Z\" fill=\"#732337\"/><path d=\"M268.771 149.716c-.054.041-.082.816-.082 1.713v1.618h.925v-.585c0-.571.013-.584.326-.584.435 0 .598.19.598.72 0 .449 0 .449.49.449h.475l-.081-.558c-.041-.312-.177-.652-.286-.774-.204-.204-.19-.232.055-.49.476-.476.312-1.142-.354-1.427-.408-.163-1.93-.231-2.066-.082Zm1.713 1.033c0 .327-.027.354-.422.395-.448.04-.448.04-.448-.395 0-.421 0-.421.448-.38.395.041.422.068.422.38Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vxdyrj\",layoutDependency:layoutDependency,layoutId:\"BtTiVUavE\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-rkvr1x\",\"data-framer-name\":\"Dutz\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"Bugf2h6fT\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M70 160.873V136h15.981c4.567 0 8.111 1.081 10.575 3.184 2.463 2.163 3.664 5.167 3.664 9.072 0 3.906-.48 4.386-1.442 6.249-.96 1.862-2.282 3.304-4.025 4.386-1.081.661-2.403 1.141-4.025 1.442-1.622.3-3.665.48-6.188.48H70v.06Zm5.828-4.686h7.51c3.965 0 6.789-.601 8.471-1.862 1.682-1.262 2.524-3.305 2.524-6.129 0-2.823-.721-4.446-2.103-5.767-1.382-1.322-3.425-1.983-6.129-1.983H75.829v15.741ZM131.163 136v20.187h16.522V136h5.768v18.985c0 2.283-.421 3.846-1.262 4.627-.841.841-2.463 1.261-4.867 1.261h-15.741c-2.403 0-4.025-.42-4.866-1.261-.841-.842-1.262-2.404-1.262-4.627V136h5.768-.06Zm61.041 4.446v20.427h-5.767v-20.427h-11.416V136h28.659v4.446h-11.476Zm29.618 20.427v-2.703l17.424-17.724h-15.681V136h24.993v2.463l-17.664 17.724h17.664v4.686h-26.736ZM70 183.944v-7.691h7.45v1.022h-6.128v2.163h3.725v1.021h-3.725v2.463h6.188v1.082H70v-.06Zm30.46 0v-3.365l-3.905-4.326h1.622l3.004 3.425 2.884-3.425h1.562l-3.845 4.326v3.365h-1.322Zm25.175 0v-7.691h7.45v1.022h-6.128v2.163h3.725v1.021h-3.725v2.463h6.188v1.082h-7.51v-.06Zm29.32 0-2.764-7.691h1.322l2.103 6.129 2.283-6.129h.781l2.223 6.129 2.103-6.129h1.141l-2.763 7.691h-.962l-2.102-5.828-2.223 5.828h-1.142Zm29.139 0v-7.691h7.45v1.022h-6.128v2.163h3.725v1.021h-3.725v2.463h6.188v1.082h-7.51v-.06Zm26.554 0 4.206-7.691h1.382l4.266 7.691h-1.442l-.962-1.923h-5.227l-.961 1.923h-1.262Zm2.764-2.884h4.146l-2.103-3.965-2.043 3.965Zm27.095 2.884v-7.691h6.189c.6 0 1.021.121 1.261.361.241.24.361.601.361 1.141v1.743c0 .54-.12.901-.361 1.141-.24.241-.661.361-1.261.361h-1.142l3.545 3.004h-1.923L244.052 181h-2.283v3.004h-1.322l.06-.06Zm5.708-6.669h-4.386v2.703h4.386c.3 0 .541-.06.661-.18s.18-.3.18-.601v-1.141c0-.301-.06-.481-.18-.601s-.361-.18-.661-.18Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iy72du\",layoutDependency:layoutDependency,layoutId:\"PxnGxVgSa\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1irm0fq\",\"data-framer-name\":\"Orgreen\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"bLdP6z5BT\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M204.985 154.003s-5.27-2.186-2.126-6.347c0 0 .868-1.108 1.976-.449 1.108.658 1.616 1.556 1.826 2.634.299 1.467-1.676 4.162-1.676 4.162Zm-21.346-10.688s1.766.359.658 2.784c-1.108 2.395-3.862 4.76-7.365 4.012 0 0 2.934-7.006 6.707-6.796Zm-60.625 36.315c-2.126 7.903-7.754 4.91-7.754 4.91-8.024-6.587 9.58-23.292 9.58-23.292s.299 10.508-1.826 18.412m-58.14-20.987c-2.365 0-6.826-.539-9.042-3.682 0 0 6.227-8.024 9.64-9.88 0 0 1.527-1.527 4.491.09 1.048.569 3.982 1.018 3.952 6.017-.03 5-6.676 7.455-9.041 7.455Zm58.499-14.041s1.886 1.766-1.228 2.634c0 0-1.107.45-2.484-1.017 0 0 1.976-2.695 3.742-1.617m154.421 9.281c-1.018.209-2.215.778-7.993 1.137-5.778.36-12.095-5.448-13.832-6.556-1.766-1.108-3.952-1.168-3.952-1.168-6.496-.149-9.849 3.862-9.849 3.862s-2.276-4.67-6.497-4.61c-4.221.06-5.03 1.377-15.328 6.496-10.299 5.12-13.083 2.186-13.083 2.186 5.119-8.832-1.527-11.317-3.353-11.317-1.827 0-6.347 1.827-6.347 6.647s3.952 6.855 3.952 6.855c-4.85 2.006-10.928 2.066-14.041 2.006-9.401-.209-9.73-7.125-9.73-7.125 4.011.15 10.897-2.784 10.598-6.856-.3-4.101-5.629-4.311-5.629-4.311-8.263-.539-9.939 8.832-9.939 8.832-.449 0-3.443-1.138-10.538-.3-6.108.749-12.095 6.737-12.095 6.737-1.617-3.593-5.928-6.497-10.299-6.647-4.371-.149-11.676 5.18-11.676 5.18s0-2.695-.359-4.222c-.36-1.527-1.767.449-1.767.449-.658 1.767-2.784 2.844-5.329 3.353-2.544.509-.868-5.778-.868-5.778.569.3 2.485.509 2.485.509 3.593.3 3.742-3.353 3.742-3.353-.359-3.443-3.293-3.592-3.293-3.592-3.143-.06-5.628 3.143-5.628 3.143-12.425-5.179-18.053 5.12-18.053 5.12-.808-2.545-4.61-8.682-10.508-8.982-4.162-.209-8.772 4.88-11.497 8.173-1.077-4.73-6.975-7.305-8.861-7.873-4.252-1.228-6.886 2.694-7.964 3.951-.569.689-3.772 5.988-5.21 7.994 0 0-1.526-1.796-1.137-5.539.39-3.742 5.18-9.969 11.766-9.819 0 0 2.844.179 4.37.988 0 0 .78.568 1.049.029.21-.449-2.335-2.215-5.988-2.484-5.329-.42-14.58 3.951-14.999 12.214 0 0 0 4.491 2.724 7.215 0 0-3.053 4.342-10.807 8.263 0 0-1.198.39-1.048.779.18.419 1.347-.24 1.647-.419.299-.18 7.095-3.533 11.077-7.515 0 0 3.532 4.341 9.73 4.311 6.047-.03 13.502-4.58 13.831-10.149 2.126-1.916 4.162-3.682 4.91-4.431 1.227-1.227 3.024-3.293 6.556-3.293 6.108 0 8.563 11.287 9.64 13.413 1.108 2.125 2.036-1.467 2.036-1.467 6.287-12.485 15.119-8.024 15.119-8.024s-1.527 2.844-.12 7.305c1.647 5.269 9.551 1.018 9.551 1.018l.059 2.425c-10.897 9.191-15.328 17.155-15.927 20.538-.598 3.353.15 9.939 6.946 10.358 6.796.449 10.299-7.724 10.957-12.574.36-2.605 1.318-18.921 1.318-18.921s5.179-5.119 11.915-5.029c6.736.059 8.173 7.364 8.173 8.532 0 1.168.599 2.485 1.527 2.545.958.06.958-.659 1.677-3.503.718-2.844 4.251-6.078 8.831-7.754 4.85-1.766 12.335-.808 12.335-.808 1.018 8.113 7.604 9.58 16.376 9.58 8.772 0 13.802-3.353 13.802-3.353 1.317.958 3.652 1.856 9.041 1.467 6.077-.449 11.706-4.91 13.173-5.928 1.467-1.018 5.419-3.653 8.532-4.102 3.144-.449 6.287 6.796 6.946 8.174.658 1.377 1.467 1.377 2.545-1.527 1.107-2.934 4.311-5.988 8.981-6.437 4.67-.449 6.497 3.203 11.676 5.838 5.179 2.634 13.233.299 13.891.06.659-.21 1.318-1.108 1.228-1.467-.06-.359-.15-.719-1.168-.509\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fri8ff\",layoutDependency:layoutDependency,layoutId:\"tSPqGCMUN\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1g1h1dm\",\"data-framer-name\":\"Porsche-Design\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"u4CXYsUDL\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M52.547 166.569H40.468v4.43H38V160h14.547c1.177 0 2.124.977 2.124 2.207v2.156c0 1.212-.947 2.206-2.124 2.206Zm-.344-3.958c0-.27-.196-.488-.457-.488H40.468v2.306h11.278a.454.454 0 0 0 .457-.471v-1.347Zm19.636 8.388H59.09c-1.178 0-2.125-.977-2.125-2.207v-6.585c0-1.23.948-2.207 2.125-2.207h12.748c1.178 0 2.142.977 2.142 2.207v6.585c0 1.23-.965 2.207-2.142 2.207Zm-.344-8.388c0-.27-.196-.488-.457-.488H59.892c-.262 0-.458.218-.458.488v5.778c0 .269.196.471.458.471h11.146a.453.453 0 0 0 .458-.471v-5.778Zm19.62 8.388v-.774c0-2.477-1.03-3.656-3.137-3.656h-8.68v4.43h-2.466V160h14.4c1.192 0 2.14.977 2.14 2.207v2.156c0 .858-.555 1.549-1.308 1.802 1.062.775 1.52 2.106 1.52 3.824v1.01h-2.469Zm-.212-8.388a.47.47 0 0 0-.473-.488H79.299v2.306h11.13a.457.457 0 0 0 .474-.471v-1.347Zm19.932 8.388H96.287v-2.139h13.747a.453.453 0 0 0 .457-.471v-1.348a.455.455 0 0 0-.457-.473H98.412c-1.176 0-2.125-.993-2.125-2.206v-2.155c0-1.23.949-2.207 2.125-2.207h14.22v2.123h-13.42c-.26 0-.457.218-.457.488v1.347c0 .27.197.472.458.472h11.621c1.176 0 2.124.994 2.124 2.207v2.156c.001 1.229-.947 2.206-2.123 2.206Zm7.115 0c-1.177 0-2.125-.977-2.125-2.207v-6.585c0-1.23.948-2.207 2.125-2.207h13.893v2.123h-13.092c-.261 0-.458.218-.458.488v5.778c0 .269.197.471.458.471h13.092v2.139H117.95Zm30.014 0v-4.43H136.9v4.43h-2.468V160h2.468v4.429h11.064V160h2.468v10.999h-2.468Zm5.434 0V160h16.671v2.123h-14.203v2.306h13.877v2.139h-13.877v2.292h14.203v2.139h-16.671Zm42.52 0h-14.546V160h14.546c1.145 0 2.125.943 2.125 2.123v6.669c0 1.23-.947 2.207-2.125 2.207Zm-.342-8.388c0-.27-.197-.488-.458-.488H183.84v6.737h11.278a.454.454 0 0 0 .458-.471v-5.778Zm5.35 8.388V160h16.672v2.123h-14.203v2.306h13.877v2.139h-13.877v2.292h14.203v2.139h-16.672Zm34.019 0h-14.546v-2.139h13.746a.452.452 0 0 0 .457-.471v-1.348a.454.454 0 0 0-.457-.473h-11.621c-1.177 0-2.125-.993-2.125-2.206v-2.155c0-1.23.948-2.207 2.125-2.207h14.22v2.123h-13.419c-.262 0-.457.218-.457.488v1.347c0 .27.194.472.457.472h11.62c1.178 0 2.125.994 2.125 2.207v2.156c0 1.229-.947 2.206-2.125 2.206Zm5.254 0V160h2.468v10.999h-2.468Zm20.04 0h-12.406c-1.176 0-2.124-.977-2.124-2.207v-6.585c0-1.23.948-2.207 2.124-2.207h14.548v2.123h-13.747c-.261 0-.457.218-.457.488v5.778c0 .269.196.471.457.471h10.82a.454.454 0 0 0 .458-.471v-1.821h-5.622v-2.139h8.091v4.363c0 1.23-.949 2.207-2.142 2.207Zm19.293 0-11.735-8.253V171h-2.468v-11h2.468l11.734 8.254V160H282v10.999h-2.468Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h0l1xy\",layoutDependency:layoutDependency,layoutId:\"j18gxLSDn\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1rfo6fq\",\"data-framer-name\":\"Group 45\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"JcGMCCRaU\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M188.692 152c-1.114 0-2.2.92-2.176 1.87.051 2.237 2.563 2.123 2.563 2.515 0 1.088-.984 2.144-2.666 3.377l1.083.68c1.86-1.39 4.157-3.131 4.157-5.734 0-1.647-1.068-2.708-2.961-2.708Zm-20.358.125c-9.524 0-14.82 6.46-14.82 11.921 0 5.463 5.296 11.92 14.82 11.92 9.513 0 14.81-6.457 14.81-11.92 0-5.461-5.297-11.921-14.81-11.921Zm114.419.068a3.232 3.232 0 0 0-3.235 3.229 3.233 3.233 0 0 0 3.235 3.23c1.79-.002 3.247-1.449 3.247-3.23 0-1.779-1.456-3.229-3.247-3.229Zm-27.511.022-8.008.521v1.213c3.491.125 4.067.382 4.067 2.187 0 0 .102.758.102 7.728 0 6.967-.102 7.762-.102 7.762 0 2.127-.485 2.47-3.589 2.47v1.247h10.959v-1.247c-2.914 0-3.429-.565-3.429-2.209v-19.672Zm-59.624.533v1.258c4.354 0 4.413.39 4.556 2.776 0 0 .023.749.023 6.98 0 6.232-.034 6.992-.034 6.992-.14 2.975-.428 3.354-4.591 3.354v1.235h13.761v-1.235c-4.875-.064-4.818-.127-4.818-3.388v-5.734h5.354c5.628 0 13.559-.733 13.613-5.926.052-4.805-5.335-6.312-12.622-6.312h-15.242ZM33 152.782v1.224c5.015 0 4.584.196 4.705 2.436 0 0 .034.628.034 6.516 0 5.887-.057 6.674-.057 6.674-.105 3.733-1.23 4.51-4.682 4.51v1.235h11.141v-1.235c-3.646-.281-4.306-.948-4.306-3.989v-16h.706L49.724 176h.9l9.65-21.972h.614v17.983c0 1.818-.238 2.071-4.545 2.131v1.235h13.42v-1.235c-4.31-.124-4.59-.343-4.671-2.539 0 0-.069-.255-.069-7.852 0-7.283.034-7.309.034-7.309.078-2.102-.175-2.436 4.603-2.436v-1.224H58.7l-7.347 16.397h-.102l-6.755-16.397H33Zm249.753.079a2.585 2.585 0 0 1 1.82.751c.483.48.754 1.131.755 1.81 0 .679-.272 1.331-.754 1.811a2.584 2.584 0 0 1-3.641 0 2.56 2.56 0 0 1-.754-1.811c.001-.679.272-1.33.755-1.81a2.586 2.586 0 0 1 1.819-.751Zm-114.419.51c7.243 0 9.581 5.657 9.581 10.675 0 5.025-2.338 10.662-9.58 10.662-7.252 0-9.581-5.637-9.581-10.662 0-5.018 2.329-10.675 9.58-10.675Zm113.258.42v3.206h.592v-1.19h.535l.65 1.19h.683l-.718-1.303a.885.885 0 0 0 .638-.884c0-.371-.151-.618-.353-.782-.283-.225-.571-.231-1.002-.238l-1.025.001Zm-71.348.26c5.35 0 8.312 1.421 8.305 4.465-.01 4.128-2.67 5.028-14.034 4.929v-7.456c0-1.726 1.187-1.938 5.73-1.938h-.001Zm71.94.261h.284c.358 0 .51.004.638.068.25.125.251.363.251.43 0 .469-.426.495-.558.499-.116.005-.194 0-.399 0h-.216v-.997Zm-169.442 4.634c-.397 0-.775.041-1.139.102-.007.002-.024.009-.034.011-3.468.528-5.417 3.015-6.607 5.87h-.102v-5.96l-7.337.351v1.145c3.496.139 3.481.399 3.52 3.342 0 0 .023.864.023 4.284 0 3.418-.046 4.181-.046 4.181 0 1.631-.342 1.892-3.44 1.892v1.179h11.176v-1.179c-3.938 0-3.897-.205-3.897-2.617 0-4.996 3.412-11.303 7.53-11.196.297.01.7.054.752.17.01.024.028.054.023.08-.07.359-1.378.616-1.378 2.085 0 1.407 1.434 1.922 2.403 1.903 1.62-.027 2.387-1.458 2.438-2.255.092-1.486-.737-2.985-3.224-3.32a3.752 3.752 0 0 0-.661-.068Zm17.396.057c-5.667 0-10.788 4.075-10.788 8.419 0 4.309 4.188 8.238 10.298 8.238 4.383 0 6.743-1.405 8.715-3.852l-1.219-.76c-1.626 1.628-3.666 2.867-6.721 2.867-5.319 0-6.539-4.176-6.539-6.776 0-2.645 1.804-6.742 6.481-6.742 1.254 0 3.671.338 4.557 1.382.066.09.114.182.114.283 0 .066-.086.159-.205.159-.981 0-2.495.399-2.495 1.96 0 .972 1.072 1.95 2.415 1.95 1.774 0 2.518-1.5 2.518-2.743 0-.738-.249-1.389-.695-1.96-1.229-1.658-4.102-2.425-6.436-2.425Zm-47.652.011c-.926 0-1.842.062-2.723.193-.846.101-1.663.291-2.403.555-.013.004-.023.006-.034.011-1.829.655-3.179 2.004-3.179 3.457 0 1.077 1.03 2.186 2.29 2.186 1.418 0 2.518-.818 2.518-1.994 0-1.042-.572-1.757-1.755-2.051.144-.145.886-.462 1.64-.657.972-.256 2.53-.306 3.259-.306 3.546 0 5.024 1.295 5.103 3.819.024 1.209 0 1.382 0 1.382-5.27 1.274-13.95 1.143-14.023 5.904-.035 2.188 2.419 4.136 5.57 4.136 4.11 0 6.43-1.32 8.373-3.751h.092c.094 1.993 1.532 3.751 4.044 3.751 2.758 0 3.592-1.452 3.747-1.564l-.945-.861c-.126.155-.663.748-1.48.748-1.316 0-1.573-.993-1.573-2.595v-7.479c0-4.371-4.907-4.884-8.521-4.884Zm152.183.057c-6.329 0-10.276 4.178-10.276 8.26 0 4.085 3.948 8.261 10.276 8.261 6.325 0 10.287-4.176 10.287-8.26 0-4.083-3.961-8.261-10.287-8.261Zm37.194 0c-6.324 0-10.287 4.175-10.287 8.26 0 4.082 3.963 8.261 10.287 8.261 6.325 0 10.275-4.179 10.275-8.26 0-4.086-3.951-8.261-10.275-8.261Zm-37.194 1.246c4.395 0 6.004 3.716 6.004 7.014 0 3.301-1.609 7.026-6.004 7.026s-6.174-3.725-6.174-7.026c0-3.298 1.779-7.014 6.174-7.014Zm36.784 0c.132-.007.273 0 .41 0 4.398 0 6.175 3.716 6.175 7.014s-1.777 7.026-6.175 7.026c-4.395 0-6.186-3.728-6.186-7.026 0-3.195 1.676-6.792 5.776-7.014Zm-184.228 6.369c0 .246.01.178-.023 1.597-.125 2.834-2.687 5.564-6.675 5.564-1.48 0-2.974-.854-3.11-2.153-.392-3.787 6.777-4.294 9.808-5.008Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hu6mc4\",layoutDependency:layoutDependency,layoutId:\"hHx6vTGRH\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-lcbh1e\",\"data-framer-name\":\"Titanflex\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"LCfcXy8NX\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M165.402 174.082h2.777v-9.242h20.446v-2.494h-20.446v-6.448h21.012v-2.492h-23.789v20.676Zm53.637 0h25.305v-2.494h-22.528v-6.748h21.963v-2.494h-21.963v-6.448h22.528v-2.492h-25.305v20.676Zm-23.7-20.676h-2.777v20.676h23.007v-2.493h-20.23v-18.183Zm-37.476 17.954h-.738l-18.156-17.938h-4.69v20.66h2.778v-17.939h.68l18.269 17.939h4.634v-20.676h-2.777v17.954Zm-51.852-17.955H80.482v2.498h11.096v18.179h2.776v-18.179h11.657v-2.498ZM45 155.903h11.658v18.179h2.777v-18.179h11.094v-2.498H45v2.498Zm31.894-2.497h-2.777v20.674h2.777v-20.674Zm31.939 12.596 7.249-10.965 7.25 10.965h-14.499Zm5.062-12.596-12.911 19.509 2.242 1.569 3.958-5.986 17.797-.002 3.959 5.987 2.238-1.566-12.896-19.511h-4.387Zm149.823 10.337 11.114-8.625L273.19 153l-11.696 9.025-11.64-9.025-1.63 2.105 11.077 8.551-11.215 8.674 1.668 2.153 11.74-9.084 11.714 9.084 1.626-2.1-11.116-8.64Zm8.9 19.403h.742v2.658c0 .272.046.449.146.565.117.131.293.176.525.176.318 0 .532-.062.665-.123v-.409a1.19 1.19 0 0 1-.525.124c-.146 0-.23-.03-.285-.101-.063-.084-.07-.217-.07-.402v-2.489h.88v-.355h-.88v-1.476l-.456.101v1.375h-.742v.356Zm-.557-.426a1.496 1.496 0 0 0-.248-.023c-.556 0-.981.372-1.114.804v-.711h-.454v3.678h.454v-2.079c0-.742.465-1.237 1.106-1.237.086 0 .17.008.256.024v-.456Zm-5.928 1.918c0-.959.464-1.547 1.189-1.547.727 0 1.192.58 1.192 1.547 0 .95-.479 1.531-1.192 1.531-.71 0-1.189-.572-1.189-1.531Zm-.479.006c0 1.16.625 1.916 1.668 1.916 1.044 0 1.669-.757 1.669-1.916 0-1.166-.633-1.938-1.669-1.938s-1.668.772-1.668 1.938Zm-.811-1.853h-.836v-.773c0-.209.03-.323.116-.402.062-.055.148-.084.279-.084.153 0 .317.038.441.076v-.417a1.656 1.656 0 0 0-.471-.07c-.273 0-.502.063-.65.231-.108.124-.169.294-.169.603v.835h-.836v.355h.836v3.323h.454v-3.323h.836v-.354Zm-3.516 3.678h.454v-2.226c0-.719-.069-1.035-.338-1.283-.208-.183-.464-.253-.734-.253-.557 0-.99.3-1.161.765-.069-.533-.524-.765-.972-.765-.48 0-.937.246-1.091.702v-.618h-.455v3.678h.455v-1.961c0-.874.365-1.385.982-1.385.279 0 .449.109.542.231.17.225.17.566.17 1.121v1.994h.455v-1.963c0-.858.363-1.383.982-1.383.278 0 .448.109.541.231.172.225.172.566.172 1.121l-.002 1.994Zm-8.41-1.831c0-.959.464-1.547 1.191-1.547.727 0 1.191.58 1.191 1.547 0 .95-.479 1.531-1.191 1.531-.711 0-1.191-.572-1.191-1.531Zm-.478.006c0 1.16.626 1.916 1.669 1.916 1.045 0 1.668-.757 1.668-1.916 0-1.166-.632-1.938-1.668-1.938s-1.669.772-1.669 1.938Zm-.866-.981c-.232-.603-.712-.957-1.43-.957-1.013 0-1.668.755-1.668 1.938 0 1.175.64 1.916 1.668 1.916.689 0 1.167-.331 1.43-.872l-.363-.223c-.232.471-.558.704-1.067.704-.71 0-1.19-.571-1.19-1.531 0-.959.464-1.547 1.19-1.547.52 0 .851.287 1.036.804l.394-.232Zm-6.237-.943a1.474 1.474 0 0 0-.247-.023c-.557 0-.981.372-1.112.804v-.711h-.456v3.678h.456v-2.079c0-.742.464-1.237 1.105-1.237.084 0 .17.008.254.024v-.456Zm-5.928 1.918c0-.959.465-1.547 1.192-1.547.725 0 1.19.58 1.19 1.547 0 .95-.481 1.531-1.19 1.531-.711 0-1.192-.572-1.192-1.531Zm-.478.006c0 1.16.624 1.916 1.67 1.916 1.044 0 1.667-.757 1.667-1.916 0-1.166-.633-1.938-1.667-1.938-1.036.001-1.67.772-1.67 1.938Zm-.811-1.853h-.837v-.773c0-.209.031-.323.118-.402.062-.055.146-.084.277-.084.156 0 .318.038.442.076v-.417a1.664 1.664 0 0 0-.472-.07c-.27 0-.502.063-.648.231-.109.124-.17.294-.17.603v.835h-.837v.355h.837v3.323h.453v-3.323h.837v-.354Zm-5.981 1.847c0 .99-.44 1.531-1.146 1.531-.726 0-1.143-.557-1.143-1.539 0-.997.448-1.53 1.16-1.53.689 0 1.129.533 1.129 1.538Zm-1.239 1.924c.627 0 1.029-.317 1.222-.749v.656h.456v-5.254h-.456v2.232c-.176-.409-.61-.74-1.198-.74-.912 0-1.552.709-1.552 1.938.001 1.235.624 1.917 1.528 1.917Zm-4.186-3.478c.711 0 1.113.626 1.113 1.221h-2.289c.062-.741.501-1.221 1.176-1.221Zm1.289 2.256c-.169.357-.531.82-1.236.82-.687 0-1.244-.472-1.244-1.431v-.054h2.797v-.062c0-1.089-.539-1.908-1.606-1.908-.99 0-1.661.779-1.661 1.901 0 1.253.664 1.954 1.7 1.954.935 0 1.391-.578 1.599-.995l-.349-.225Zm-4.173-.95c0-.818-.093-1.067-.322-1.328-.218-.238-.533-.355-.914-.355-.625 0-1.027.339-1.166.694v-.61h-.456v3.678h.456v-2.187c0-.309.093-.633.309-.858.17-.185.418-.302.75-.302.302 0 .52.085.658.239.192.21.232.549.232 1.128v1.979h.454v-2.078h-.001Zm-4.814.217c0 .959-.44 1.492-1.144 1.492-.727 0-1.143-.541-1.143-1.5 0-.974.447-1.501 1.158-1.501.689.002 1.129.527 1.129 1.509Zm.441-1.816H219v.602c-.193-.393-.612-.686-1.199-.686-.913 0-1.553.719-1.553 1.908 0 1.19.609 1.894 1.546 1.894.602 0 1.013-.294 1.206-.725v.378c0 .796-.124 1.453-1.129 1.453-.751 0-.997-.418-1.043-.951l-.441.124c.038.686.44 1.212 1.484 1.212 1.091 0 1.585-.525 1.585-1.676v-3.533Zm-4.461-1.576h-.454v.758h.454v-.758Zm0 1.576h-.454v3.678h.454v-3.678Zm-1.793.516c-.262-.317-.694-.601-1.336-.601-.704 0-1.282.37-1.282 1.034 0 .611.385.835 1.034.989l.511.124c.441.11.774.224.774.634 0 .394-.295.673-.914.681-.557 0-.966-.263-1.198-.634l-.371.263c.231.386.78.765 1.513.765.828-.008 1.43-.386 1.43-1.104 0-.658-.478-.882-1.097-1.021l-.488-.116c-.486-.109-.734-.247-.734-.634 0-.411.366-.596.812-.596.487 0 .813.256.999.511l.347-.295Zm-5.207-.223c.71 0 1.112.626 1.112 1.221h-2.287c.062-.741.502-1.221 1.175-1.221Zm1.29 2.256c-.17.357-.533.82-1.236.82-.688 0-1.246-.472-1.246-1.431v-.054h2.798v-.062c0-1.089-.54-1.908-1.606-1.908-.99 0-1.662.779-1.662 1.901 0 1.253.664 1.954 1.7 1.954.935 0 1.392-.578 1.599-.995l-.347-.225Zm-4.659-.702c0 .99-.442 1.531-1.146 1.531-.726 0-1.143-.557-1.143-1.539 0-.997.448-1.53 1.16-1.53.687 0 1.129.533 1.129 1.538Zm-1.239 1.924c.627 0 1.029-.317 1.222-.749v.656h.456v-5.254h-.456v2.232c-.178-.409-.611-.74-1.199-.74-.911 0-1.553.709-1.553 1.938.002 1.235.626 1.917 1.53 1.917Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-p3g98b\",layoutDependency:layoutDependency,layoutId:\"deBao6R9S\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-u7emq9\",\"data-framer-name\":\"Rei\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"zlpkZLIhU\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M47.028 153.152v-6.123H57.18c5.318 0 8.38 2.417 8.38 6.445v.162c0 3.706-2.74 6.123-6.769 6.606H46.867v-7.09h.161Zm9.346 10.635 9.669 12.73h4.511l-10.151-13.374c2.417-.484 4.512-1.451 6.123-2.74 1.611-1.611 2.578-3.706 2.578-6.445v-.161a9.4 9.4 0 0 0-.967-4.19c-.483-.806-.966-1.611-1.61-2.417-2.096-2.095-5.319-3.223-9.347-3.223H43v32.872h3.706v-12.73h9.668v-.322Zm46.086 12.73v-3.384H82.318v-11.441h17.886v-3.384H82.318v-11.28h19.98v-3.383H78.611v32.872h23.849Zm6.444-4.835 2.256-2.739c3.384 3.062 6.768 4.673 11.28 4.673 4.351 0 7.251-2.417 7.251-5.64 0-3.061-1.611-4.834-8.54-6.284-7.574-1.611-10.958-4.028-10.958-9.507v-.161c0-5.157 4.512-9.024 10.797-9.024 4.834 0 8.218 1.45 11.602 4.028l-2.095 2.901c-3.062-2.417-6.124-3.545-9.507-3.545-4.19 0-6.929 2.417-6.929 5.317v.162c0 3.061 1.772 4.834 8.862 6.445 7.251 1.611 10.635 4.351 10.635 9.346 0 5.64-4.673 9.346-11.279 9.346-5.157 0-9.346-1.772-13.375-5.318Zm89.272-28.037h14.18c4.028 0 7.251 1.289 9.346 3.222 1.611 1.612 2.578 3.868 2.578 6.446v.161c0 5.479-3.706 8.701-8.863 9.668l10.152 13.375h-4.512l-9.507-12.73h-9.668v12.73h-3.706v-32.872Zm13.697 16.758c4.995 0 8.379-2.578 8.379-6.768v-.161c0-4.029-3.062-6.446-8.379-6.446h-10.152v13.375h10.152Zm47.695 16.114v-3.384h-20.142v-11.441h17.886v-3.384h-17.886v-11.28h19.981v-3.383h-23.848v32.872h24.009Zm16.439-32.872h-3.706v32.872h3.706v-32.872Zm-93.141-.322h-5.156l-33.194 33.194h5.317l33.033-33.194Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dq6is2\",layoutDependency:layoutDependency,layoutId:\"SvtYd9JXU\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-d2j1py\",\"data-framer-name\":\"Humperys\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"OfH4Uhh0D\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M58.043 136.41h5.77v7.693h7.607v-7.565h5.641v20.729h-5.556v-7.608h-7.607v7.693H58V136.41h.043Zm205.145 16.24c-2.35 4.488-5.684 5.983-11.411 5-2.522-.427-4.915-1.324-6.966-3.29 1.068-1.283 2.094-2.522 2.906-3.462 2.179.769 4.06 1.581 6.026 2.094.897.214 2.009 0 2.863-.385.941-.384.983-1.453.086-2.051-.684-.428-1.539-.684-2.351-.94-1.538-.471-3.162-.812-4.701-1.411-2.308-.855-3.761-2.479-3.846-5.086-.086-2.778 1.068-4.829 3.504-6.111 3.633-1.924 10.599-.983 13.164 1.88-.812 1.24-1.71 2.479-2.522 3.718-1.795-.598-3.419-1.282-5.086-1.666-1.667-.385-2.906.085-3.12 1.025-.256.898.556 1.624 2.479 2.137.898.214 1.795.385 2.693.641 2.692.684 5.043 1.881 6.368 4.488v3.419h-.086Zm-153.518-6.368v10.941h-5.385V136.41c1.795 0 3.505-.086 5.172.042.555.043 1.196.641 1.538 1.197 1.41 2.137 2.693 4.317 4.274 6.838 1.111-1.709 2.222-3.12 2.906-4.658 1.197-2.821 3.163-3.975 6.155-3.419.598.128 1.239.085 2.008.128v20.685h-5.556v-10.984a3.775 3.775 0 0 1-.555-.171c-1.624 2.437-3.206 4.873-5.001 7.565l-5.043-7.565c-.171.086-.385.129-.556.214h.043Zm64.406-9.83c3.975 0 7.779-.171 11.54 0 5.299.299 8.376 4.744 6.539 9.531-.641 1.667-2.223 2.992-3.505 4.616a716.777 716.777 0 0 0 4.53 6.71c-2.265 0-4.103.085-5.898-.043-.512 0-1.111-.556-1.453-1.026-.94-1.239-1.795-2.564-2.607-3.889-.769-1.282-1.752-1.795-3.462-1.111v5.898h-5.684v-20.771.085Zm5.727 10.172c1.752-.086 3.376-.043 4.958-.299 1.239-.171 1.966-1.111 1.966-2.436 0-1.197-.77-2.223-2.052-2.351-1.581-.171-3.205 0-4.872 0v5.086Zm-28.889-10.129h5.599v7.607h7.65v-7.522h5.684v20.686h-5.556v-7.608h-7.607v7.565h-5.727v-20.728h-.043Zm60.433 8.12v4.488h-9.83v3.505h11.112v4.615h-16.711v-20.642h16.54v4.786h-10.941v3.291h9.915l-.085-.043ZM80.994 136.41h3.761c.556 0 1.112.043 1.838.086.043.854.128 1.581.128 2.35 0 3.12-.042 6.24 0 9.403.086 2.82 1.496 4.359 3.89 4.402 2.051 0 3.376-1.026 3.803-3.035.214-1.025.257-2.094.257-3.162v-9.916h5.898v4.958c-.086 2.906-.043 5.812-.299 8.719-.342 3.889-2.608 6.539-6.411 7.223a18.702 18.702 0 0 1-6.54 0c-3.803-.684-5.983-3.078-6.282-7.309-.342-4.445-.085-8.932-.085-13.719h.042Zm55.217 15.129v5.685h-5.727v-20.686c3.804 0 7.608-.299 11.326.086 4.317.47 6.539 3.461 6.368 7.65-.128 3.804-2.821 6.539-7.009 7.009-1.539.171-3.12.171-5 .256h.042Zm.086-4.786c1.453 0 2.65.128 3.846 0 1.282-.171 2.18-1.24 2.223-2.479.085-1.325-.599-2.436-1.881-2.735-1.325-.3-2.735-.257-4.188-.385v5.599Zm91.373 10.513h-5.812c0-2.137.086-4.103 0-6.069-.085-1.025-.342-2.094-.855-2.991-1.88-3.291-3.889-6.454-5.812-9.702l-1.197-2.094c2.094 0 3.932-.086 5.727.042.513 0 1.111.556 1.41 1.026.898 1.453 1.71 2.949 2.522 4.445.342.598.727 1.197 1.197 2.051 1.538-2.649 2.906-5.043 4.316-7.479h6.368c-.427.77-.769 1.368-1.111 1.966-1.966 3.206-3.889 6.454-5.898 9.616-.684 1.069-.983 2.137-.94 3.419.085 1.838 0 3.676 0 5.727l.085.043Zm-61.243 22.566h-2.565c-.598-1.753-1.154-3.462-1.752-5.214-.128 0-.299-.043-.427-.086-.599 1.71-1.24 3.462-1.881 5.257h-2.521c-.983-3.248-2.009-6.539-3.035-9.958h2.735a423.085 423.085 0 0 1 1.539 5.299h.342c.598-1.709 1.154-3.461 1.795-5.299.726 0 1.41-.086 2.308-.128.641 1.795 1.239 3.59 1.88 5.342h.385c.513-1.752 1.068-3.505 1.581-5.3h2.693c-1.069 3.419-2.052 6.71-3.077 10.001v.086Zm23.847-9.831c2.137-.085 3.761-.299 5.343-.128 1.538.128 2.778 1.154 2.863 2.693.171 2.393.043 4.786.043 7.094-.171.128-.214.214-.299.171-.983-.128-1.966-.427-2.949-.427-.941 0-1.924.513-2.864.513-1.709 0-2.821-1.154-2.992-2.736-.128-1.538.684-2.82 2.266-3.162 1.282-.257 2.649-.214 3.974-.299-.213-1.71-.513-1.838-4.616-1.411-.17-.555-.384-1.197-.769-2.35v.042Zm5.727 5.941c-.94-.684-1.966-.812-2.949-.256-.384.213-.726.897-.726 1.324 0 .3.555.77.983.941 1.367.47 2.307-.257 2.692-2.009Zm-68.38-5.982c.727 2.051 1.411 4.017 2.137 6.026h.385c.641-1.966 1.325-3.975 2.009-6.069h2.906c-1.496 3.889-2.821 7.65-4.36 11.283-.854 2.051-2.692 2.308-5.128.983.171-.513.384-1.026.555-1.539.727-.085 1.411-.171 2.394-.299-.94-3.633-2.65-6.838-3.761-10.385h2.863Zm-9.659 7.008c.47.385.897.727 1.282 1.069-.086 1.197-2.137 2.094-4.317 1.966-3.077-.214-4.872-2.308-4.701-5.599.128-2.949 2.351-4.872 5.385-4.701 2.864.171 4.445 2.265 4.274 5.983h-6.71c.898 2.436 1.838 2.693 4.829 1.325l-.042-.043Zm-4.872-3.034h4.017c-.128-1.368-.812-2.009-1.923-2.051-1.197 0-1.924.641-2.094 2.051Zm36.243 1.752h-6.71c.897 2.436 1.838 2.65 4.744 1.325.427.299.94.684 1.368.983-.129 1.282-2.308 2.18-4.574 2.009-3.034-.257-4.744-2.479-4.53-5.77.214-2.821 2.394-4.659 5.385-4.488 2.906.171 4.445 2.223 4.274 6.026l.043-.085Zm-2.778-1.71c0-1.453-.812-2.136-2.009-2.094-1.154 0-1.923.684-1.88 2.094h3.889Zm37.396 1.795h-6.71c.769 2.351 1.795 2.607 4.744 1.24.384.342.854.684 1.239 1.026-.085 1.239-2.094 2.137-4.188 2.008-3.077-.171-4.958-2.35-4.787-5.556.171-2.949 2.18-4.872 5.171-4.744 3.035.086 4.659 2.094 4.573 6.069l-.042-.043Zm-2.607-1.795c-.471-1.41-1.026-2.265-2.308-2.136-1.111.128-1.924.726-1.838 2.136h4.146Zm54.064-30.087c1.453-2.351 2.821-4.659 4.231-6.881.214-.342.812-.513 1.24-.556 1.282-.085 2.521 0 4.274 0a234.082 234.082 0 0 1-2.778 4.659c-2.137 3.504-2.266 3.59-6.967 2.778Zm-27.524 35.986h-2.607v-10.001c1.112 0 2.265-.641 2.864.855.812-.385 1.667-.77 2.778-1.24v2.906c-2.607.428-3.12 2.266-2.992 4.531.043.897 0 1.795 0 2.906l-.043.043Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bl8j1o\",layoutDependency:layoutDependency,layoutId:\"lafqKfGOF\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-pai3xv\",\"data-framer-name\":\"Prodesign-Denmark\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"WNpxOGKgc\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M27.56 164.926a5.92 5.92 0 0 0 4.91 2.269c4.648 0 6.94-3.446 6.94-7.533s-2.323-7.618-6.998-7.618c-2.087 0-4.028.701-4.852 2.297h-.06v-1.962H25v16.873h2.5v-4.322l.06-.004Zm4.5-10.781c3.234 0 4.704 2.633 4.704 5.348 0 2.829-1.147 5.602-4.559 5.602-3.44 0-4.792-2.633-4.792-5.49 0-2.716 1.294-5.46 4.647-5.46Zm103.864 11.482V152.38h-2.354v2.066h-.029a5.024 5.024 0 0 0-4.53-2.408c-5.264 0-7.029 4.229-7.029 7.645 0 3.951 2.265 7.339 6.792 7.339a5.114 5.114 0 0 0 4.734-2.633h.058v.952a6.576 6.576 0 0 1-1.016 3.904h2.739a9.31 9.31 0 0 0 .63-3.624m-6.999-.701c-3.294 0-4.294-2.912-4.294-5.516 0-2.774 1.294-5.266 4.5-5.266 3.146 0 4.322 2.633 4.322 5.187 0 2.716-1.235 5.601-4.53 5.601M41.82 152.381h2.354v3.053h.058a5.547 5.547 0 0 1 5.588-3.389v2.52c-4.028 0-5.5 2.185-5.5 5.854v6.442h-2.5v-14.48Zm16.353-.338c4.823 0 7.382 3.335 7.382 7.59 0 4.229-2.558 7.562-7.382 7.562-4.825 0-7.382-3.334-7.382-7.562 0-4.257 2.559-7.59 7.382-7.59Zm0 13.053c2.618 0 4.734-1.961 4.734-5.463 0-3.528-2.117-5.488-4.734-5.488s-4.735 1.96-4.735 5.488c0 3.501 2.118 5.463 4.735 5.463Zm23.907 1.763h-2.5v-1.954h-.058c-.824 1.595-2.765 2.296-4.853 2.296-4.675 0-7-3.529-7-7.617 0-4.089 2.294-7.533 6.942-7.533a5.94 5.94 0 0 1 4.91 2.269h.059v-7.458h2.5v19.997Zm-7.06-1.763c3.355 0 4.648-2.745 4.648-5.463 0-2.856-1.359-5.488-4.794-5.488-3.41 0-4.558 2.773-4.558 5.6 0 2.717 1.47 5.351 4.705 5.351Zm23.587-2.831c-.677 3.194-3.087 4.93-6.5 4.93-4.85 0-7.145-3.193-7.292-7.618a7.115 7.115 0 0 1 7.146-7.532c5.381 0 7.029 4.789 6.882 8.289h-11.38a4.358 4.358 0 0 0 4.735 4.762 3.64 3.64 0 0 0 3.94-2.829l2.469-.002Zm-2.412-4.033a4.278 4.278 0 0 0-4.381-4.088 4.23 4.23 0 0 0-4.353 4.088h8.734Zm7.207 4.061c.089 2.13 2.029 2.801 4.087 2.801 1.56 0 3.676-.337 3.676-2.157 0-1.852-2.469-2.157-4.97-2.688-2.47-.532-4.97-1.316-4.97-4.089 0-2.911 3.03-4.117 5.68-4.117 3.353 0 6.029 1.009 6.235 4.537h-2.501c-.176-1.852-1.882-2.436-3.529-2.436-1.499 0-3.234.391-3.234 1.852 0 1.709 2.648 1.99 4.97 2.522 2.501.531 4.971 1.315 4.971 4.117 0 3.445-3.381 4.569-6.47 4.569-3.412 0-6.298-1.317-6.441-4.903l2.496-.008Zm15.817-12.518h-2.5v-2.913h2.5v2.913Zm-2.499 2.606h2.499v14.478h-2.5l.001-14.478Zm22.969-.002h2.353v2.297h.058a5.353 5.353 0 0 1 4.94-2.632c3.998 0 5.234 2.184 5.234 5.293v9.522h-2.499v-9.802a2.796 2.796 0 0 0-1.9-2.779 2.794 2.794 0 0 0-1.187-.133 4.165 4.165 0 0 0-4.276 2.744 4.17 4.17 0 0 0-.224 1.793v8.177h-2.5l.001-14.48Zm56.411 14.48h-2.495v-1.954h-.058c-.823 1.595-2.766 2.296-4.853 2.296-4.675 0-6.999-3.529-6.999-7.617 0-4.089 2.295-7.533 6.941-7.533a5.94 5.94 0 0 1 4.911 2.269h.058v-7.458h2.495v19.997Zm-7.057-1.763c3.351 0 4.646-2.745 4.646-5.463 0-2.856-1.358-5.488-4.793-5.488-3.411 0-4.558 2.773-4.558 5.6 0 2.717 1.469 5.351 4.705 5.351Zm23.324-2.829c-.678 3.193-3.087 4.929-6.499 4.929-4.853 0-7.146-3.192-7.293-7.617a7.116 7.116 0 0 1 7.144-7.533c5.382 0 7.028 4.79 6.882 8.289h-11.379a4.353 4.353 0 0 0 1.247 3.495 4.353 4.353 0 0 0 3.488 1.267 3.64 3.64 0 0 0 3.94-2.829l2.47-.001Zm-2.412-4.033a4.279 4.279 0 0 0-4.381-4.089 4.237 4.237 0 0 0-3.021 1.146 4.235 4.235 0 0 0-1.331 2.944l8.733-.001Zm4.942-5.853h2.352v2.297h.06a5.353 5.353 0 0 1 4.939-2.633c4 0 5.235 2.184 5.235 5.294v9.522h-2.501v-9.803a2.801 2.801 0 0 0-3.087-2.911 4.155 4.155 0 0 0-4.5 4.536v8.178h-2.5l.002-14.48Zm16.35 0h2.347v2.128h.059a5.687 5.687 0 0 1 4.911-2.469 4.045 4.045 0 0 1 4.175 2.469 5.698 5.698 0 0 1 4.764-2.469c3.029 0 5.063 1.205 5.063 4.198v10.62h-2.501v-9.494c0-1.791-.5-3.22-2.941-3.22a3.601 3.601 0 0 0-3.969 3.697v9.014h-2.501v-9.493c0-1.876-.617-3.221-2.851-3.221a4 4 0 0 0-4.059 3.698v9.014h-2.498l.001-14.472Zm38.259 14.423a3.507 3.507 0 0 1-1.795.392c-1.294 0-2.115-.672-2.115-2.24a6.916 6.916 0 0 1-5.354 2.24c-2.765 0-5.027-1.176-5.027-4.061 0-3.276 2.557-3.978 5.144-4.453 2.766-.504 5.119-.336 5.119-2.129 0-2.072-1.795-2.408-3.383-2.408-2.117 0-3.676.617-3.793 2.744h-2.499c.147-3.581 3.057-4.845 6.439-4.845 2.735 0 5.706.588 5.706 3.977v7.449c0 1.122 0 1.625.793 1.625.261-.002.52-.049.765-.14v1.849Zm-4.058-7.422c-.971.672-2.851.7-4.528.98-1.647.279-3.059.84-3.059 2.605 0 1.568 1.413 2.128 2.94 2.128 3.295 0 4.647-1.96 4.647-3.278v-2.435Zm7.616-7.001h2.347v3.053h.063a5.547 5.547 0 0 1 5.587-3.389v2.52c-4.028 0-5.498 2.185-5.498 5.854v6.442h-2.499v-14.48Zm10.616-5.519h2.498v11.847l6.942-6.329h3.351l-6.028 5.265 6.469 9.214h-3.175l-5.206-7.561-2.352 2.072v5.489h-2.498l-.001-19.997Zm-113.084 13.17a3.336 3.336 0 0 1-3.985 3.27 3.338 3.338 0 0 1-2.619-2.62 3.325 3.325 0 0 1 .19-1.926 3.326 3.326 0 0 1 1.228-1.496 3.333 3.333 0 0 1 5.186 2.772Zm0 10.634a3.336 3.336 0 0 1-3.985 3.27 3.328 3.328 0 0 1-2.429-4.546 3.328 3.328 0 0 1 3.08-2.058 3.333 3.333 0 0 1 3.334 3.334Zm0-21.332a3.336 3.336 0 0 1-5.692 2.358 3.336 3.336 0 0 1 2.358-5.692 3.33 3.33 0 0 1 2.357.977 3.33 3.33 0 0 1 .977 2.357Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DXTpa.framer-171f9kz, .framer-DXTpa .framer-171f9kz { display: block; }\",\".framer-DXTpa.framer-11dlacp { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1600px; }\",\".framer-DXTpa .framer-11y2vw2-container { flex: none; height: 358px; position: relative; width: 100%; }\",\".framer-DXTpa .framer-1lfbthf, .framer-DXTpa .framer-11bnm2d { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-DXTpa .framer-1iejss2 { flex: none; height: 180px; position: relative; width: 180px; }\",\".framer-DXTpa .framer-137qyoi, .framer-DXTpa .framer-16dtjru, .framer-DXTpa .framer-100vukl { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-DXTpa .framer-jy4ldm, .framer-DXTpa .framer-bi71ht, .framer-DXTpa .framer-4ppgfl, .framer-DXTpa .framer-1tpa6gn, .framer-DXTpa .framer-15uq7qh, .framer-DXTpa .framer-1tpor8r, .framer-DXTpa .framer-rkvr1x, .framer-DXTpa .framer-1irm0fq, .framer-DXTpa .framer-1g1h1dm, .framer-DXTpa .framer-1rfo6fq, .framer-DXTpa .framer-lcbh1e, .framer-DXTpa .framer-u7emq9, .framer-DXTpa .framer-d2j1py, .framer-DXTpa .framer-pai3xv { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 180px); position: relative; width: 180px; }\",\".framer-DXTpa .framer-10fooyn, .framer-DXTpa .framer-1pwkbng, .framer-DXTpa .framer-1vxdyrj, .framer-DXTpa .framer-1iy72du, .framer-DXTpa .framer-fri8ff, .framer-DXTpa .framer-1h0l1xy, .framer-DXTpa .framer-hu6mc4, .framer-DXTpa .framer-p3g98b, .framer-DXTpa .framer-dq6is2, .framer-DXTpa .framer-1bl8j1o { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 180px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 180px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DXTpa.framer-11dlacp, .framer-DXTpa .framer-1lfbthf, .framer-DXTpa .framer-137qyoi, .framer-DXTpa .framer-11bnm2d, .framer-DXTpa .framer-10fooyn, .framer-DXTpa .framer-1pwkbng, .framer-DXTpa .framer-16dtjru, .framer-DXTpa .framer-100vukl, .framer-DXTpa .framer-1vxdyrj, .framer-DXTpa .framer-1iy72du, .framer-DXTpa .framer-fri8ff, .framer-DXTpa .framer-1h0l1xy, .framer-DXTpa .framer-hu6mc4, .framer-DXTpa .framer-p3g98b, .framer-DXTpa .framer-dq6is2, .framer-DXTpa .framer-1bl8j1o { gap: 0px; } .framer-DXTpa.framer-11dlacp > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-DXTpa.framer-11dlacp > :first-child { margin-top: 0px; } .framer-DXTpa.framer-11dlacp > :last-child { margin-bottom: 0px; } .framer-DXTpa .framer-1lfbthf > *, .framer-DXTpa .framer-137qyoi > *, .framer-DXTpa .framer-11bnm2d > *, .framer-DXTpa .framer-10fooyn > *, .framer-DXTpa .framer-1pwkbng > *, .framer-DXTpa .framer-16dtjru > *, .framer-DXTpa .framer-100vukl > *, .framer-DXTpa .framer-1vxdyrj > *, .framer-DXTpa .framer-1iy72du > *, .framer-DXTpa .framer-fri8ff > *, .framer-DXTpa .framer-1h0l1xy > *, .framer-DXTpa .framer-hu6mc4 > *, .framer-DXTpa .framer-p3g98b > *, .framer-DXTpa .framer-dq6is2 > *, .framer-DXTpa .framer-1bl8j1o > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-DXTpa .framer-1lfbthf > :first-child, .framer-DXTpa .framer-137qyoi > :first-child, .framer-DXTpa .framer-11bnm2d > :first-child, .framer-DXTpa .framer-10fooyn > :first-child, .framer-DXTpa .framer-1pwkbng > :first-child, .framer-DXTpa .framer-16dtjru > :first-child, .framer-DXTpa .framer-100vukl > :first-child, .framer-DXTpa .framer-1vxdyrj > :first-child, .framer-DXTpa .framer-1iy72du > :first-child, .framer-DXTpa .framer-fri8ff > :first-child, .framer-DXTpa .framer-1h0l1xy > :first-child, .framer-DXTpa .framer-hu6mc4 > :first-child, .framer-DXTpa .framer-p3g98b > :first-child, .framer-DXTpa .framer-dq6is2 > :first-child, .framer-DXTpa .framer-1bl8j1o > :first-child { margin-left: 0px; } .framer-DXTpa .framer-1lfbthf > :last-child, .framer-DXTpa .framer-137qyoi > :last-child, .framer-DXTpa .framer-11bnm2d > :last-child, .framer-DXTpa .framer-10fooyn > :last-child, .framer-DXTpa .framer-1pwkbng > :last-child, .framer-DXTpa .framer-16dtjru > :last-child, .framer-DXTpa .framer-100vukl > :last-child, .framer-DXTpa .framer-1vxdyrj > :last-child, .framer-DXTpa .framer-1iy72du > :last-child, .framer-DXTpa .framer-fri8ff > :last-child, .framer-DXTpa .framer-1h0l1xy > :last-child, .framer-DXTpa .framer-hu6mc4 > :last-child, .framer-DXTpa .framer-p3g98b > :last-child, .framer-DXTpa .framer-dq6is2 > :last-child, .framer-DXTpa .framer-1bl8j1o > :last-child { margin-right: 0px; } }\",\".framer-DXTpa.framer-v-i639cd.framer-11dlacp { width: 810px; }\",\".framer-DXTpa.framer-v-i639cd .framer-11y2vw2-container, .framer-DXTpa.framer-v-5b0iur .framer-11y2vw2-container { height: 330px; }\",\".framer-DXTpa.framer-v-5b0iur.framer-11dlacp { width: 390px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 358\n * @framerIntrinsicWidth 1600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KcE3M32iW\":{\"layout\":[\"fixed\",\"auto\"]},\"L_KB7XSm4\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRQH2l0eyM=withCSS(Component,css,\"framer-DXTpa\");export default FramerRQH2l0eyM;FramerRQH2l0eyM.displayName=\"Logo ticker Bottom\";FramerRQH2l0eyM.defaultProps={height:358,width:1600};addPropertyControls(FramerRQH2l0eyM,{variant:{options:[\"HsuWXrkFy\",\"KcE3M32iW\",\"L_KB7XSm4\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerRQH2l0eyM,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRQH2l0eyM\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1600\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KcE3M32iW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"L_KB7XSm4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"358\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RQH2l0eyM.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"onKxbJUtk\",\"uLuOEr4LV\",\"PGrS22CzK\"];const serializationHash=\"framer-OHx7P\";const variantClassNames={onKxbJUtk:\"framer-v-8pxslm\",PGrS22CzK:\"framer-v-13iee0s\",uLuOEr4LV:\"framer-v-1eyscij\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"onKxbJUtk\",Phone:\"PGrS22CzK\",Tablet:\"uLuOEr4LV\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"onKxbJUtk\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"onKxbJUtk\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1hrxrj3=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"onKxbJUtk\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-8pxslm\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"onKxbJUtk\",onTap:onTap1hrxrj3,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-9eab8de4-3091-46b2-9abf-a9376c1a4280, rgb(230, 220, 211))\",...style},...addPropertyOverrides({PGrS22CzK:{\"data-framer-name\":\"Phone\"},uLuOEr4LV:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mjy7t4-container\",layoutDependency:layoutDependency,layoutId:\"felh9lqU4-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-end\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"felh9lqU4\",layoutId:\"felh9lqU4\",padding:10,paddingBottom:40,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:120,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g0e6g\",layoutDependency:layoutDependency,layoutId:\"Ysew3eFEs\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-y90fhq\",\"data-framer-name\":\"Gucci\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ufIpnszBl\",opacity:1,radius:20,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 180 180\"><path d=\"M 11.25 180 C 5.037 180 0 180 0 180 L 0 0 C 0 0 5.037 0 11.25 0 L 168.75 0 C 174.963 0 180 0 180 0 L 180 180 C 180 180 174.963 180 168.75 180 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 148.02 85.052 L 152.437 85.052 C 151.948 85.433 151.654 85.9 151.654 86.54 L 151.654 101.826 C 151.654 102.465 151.96 102.92 152.437 103.301 L 148.02 103.301 C 148.497 102.92 148.79 102.453 148.79 101.826 L 148.79 86.539 C 148.791 85.899 148.51 85.432 148.02 85.052 Z M 45.637 91.618 C 44.915 90.056 44.12 88.519 42.786 87.401 C 41.367 86.195 39.567 85.47 37.707 85.47 C 32.764 85.47 30.548 89.958 30.548 94.373 C 30.548 98.641 32.666 102.957 37.438 102.957 C 39.383 102.957 41.281 102.108 42.479 100.571 L 42.479 97.127 C 42.479 96.193 42.173 95.591 41.451 95.038 L 46.505 95.038 C 45.966 95.652 45.637 96.279 45.637 97.127 L 45.637 100.571 C 43.324 102.736 40.449 104.063 37.255 104.063 C 31.614 104.063 27 99.894 27 94.09 C 27 88.323 31.552 84.375 37.12 84.375 C 40.583 84.375 43.385 85.654 45.637 88.224 L 45.637 91.618 Z M 58.02 85.052 L 62.781 85.052 C 62.131 85.53 61.912 86.072 61.912 86.871 L 61.912 98.026 C 61.912 101.086 65.484 102.588 68.104 102.588 C 70.674 102.588 74.026 101.076 74.026 98.087 L 74.026 86.871 C 74.026 86.12 73.842 85.605 73.342 85.052 L 75.935 85.052 C 75.409 85.593 75.214 86.133 75.214 86.871 L 75.214 98.087 C 75.214 102.12 70.478 103.669 67.198 103.669 C 63.822 103.669 58.89 102.17 58.89 98.026 L 58.89 86.871 C 58.889 86.109 58.583 85.543 58.02 85.052 Z M 105.694 91.68 C 105.058 90.068 104.312 88.655 103.002 87.486 C 101.595 86.232 99.881 85.445 97.986 85.445 C 93.092 85.445 90.583 89.749 90.583 94.213 C 90.583 98.701 93.189 102.944 98.022 102.944 C 101.62 102.944 104.19 100.398 105.695 97.336 L 105.695 100.656 C 103.457 102.882 100.568 104.014 97.411 104.014 C 91.561 104.014 87.181 100.214 87.181 94.152 C 87.181 88.262 91.389 84.389 97.129 84.389 C 100.311 84.389 103.393 85.496 105.694 87.697 Z M 136.384 91.68 C 135.748 90.068 135 88.655 133.692 87.486 C 132.285 86.232 130.571 85.445 128.675 85.445 C 123.78 85.445 121.283 89.749 121.283 94.213 C 121.283 98.701 123.878 102.944 128.712 102.944 C 132.31 102.944 134.891 100.398 136.384 97.336 L 136.384 100.656 C 134.145 102.882 131.269 104.014 128.101 104.014 C 122.251 104.014 117.871 100.214 117.871 94.152 C 117.871 88.262 122.081 84.389 127.818 84.389 C 131 84.389 134.084 85.496 136.384 87.697 Z\" fill=\"rgb(115,35,55)\"></path></svg>',svgContentId:9761090318,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-64ulw8\",layoutDependency:layoutDependency,layoutId:\"nIIJiIKUg\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1n30zqc\",\"data-framer-name\":\"Silhouette\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"sZ570zv6T\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M264.73 143.28a5.097 5.097 0 0 1-5.093-5.093 5.097 5.097 0 0 1 5.093-5.094 5.097 5.097 0 0 1 5.093 5.094c0 2.81-2.459 5.093-5.093 5.093Zm0-9.309a4.348 4.348 0 0 0-4.391 4.391 4.348 4.348 0 0 0 4.391 4.391 4.348 4.348 0 0 0 4.391-4.391c0-2.459-2.108-4.391-4.391-4.391Z\" fill=\"#732337\"/><path d=\"M266.829 140.821h-1.054l-1.23-2.283h-.878v2.283h-.878v-5.445h2.108c1.053 0 1.756.703 1.756 1.581 0 .703-.351 1.23-1.054 1.405l1.23 2.459Zm-3.162-2.986h1.23c.527 0 .878-.351.878-.702 0-.527-.351-.703-.878-.703h-1.23v1.405ZM59.592 164.18c-6.499-1.581-4.918-7.552.35-9.66 4.04-1.581 5.094-2.107 29.682-2.107 18.617 0 26.345.175 26.345.175l2.459-3.512s-5.094-.527-20.549-.352c-11.767 0-44.083-.702-44.435 10.714-.175 9.835 15.632 10.713 33.37 10.713 17.739 0 20.198 3.864 20.198 6.499 0 1.931-.703 9.308-19.847 9.308-19.143 0-36.004-.878-36.004-.878L48 189.646s23.008.351 28.979.527c5.971.176 31.789.527 31.789-13.172 0-14.753-32.667-8.606-49.176-12.821Z\" fill=\"#732337\"/><path d=\"M245.764 188.592c-1.756 0-5.093-.175-7.025-3.863 2.283-3.513 4.039-8.079 5.269-12.295 2.458-8.079.878-11.942.878-11.942l-4.04-2.986s-6.147 3.337-6.849 12.997c-.527 5.795.878 10.889 2.634 13.874-1.58 2.284-2.986 3.864-4.742 3.864-4.566 0-5.62-12.821-4.039-25.993.351-3.688 1.58-10.538 1.58-10.538l32.492.703 2.81-4.04h-34.775c1.23-6.323 2.108-10.713 2.108-10.713l-3.513-2.459s-1.58 4.917-2.986 13.172h-6.498c1.23-6.498 2.283-10.713 2.283-10.713l-3.512-2.459s-1.405 5.269-2.81 13.172h-67.794c2.284-10.362 2.284-16.509 2.284-16.509l-4.391-3.688s-6.323 5.444-10.187 26.871c-1.405 8.43-2.107 18.968-2.107 24.061 0 0-2.459 9.836-6.674 9.66-1.932 0-2.635-2.634-3.162-6.498 1.581-3.337 2.81-7.025 3.864-10.538.878-2.81 3.337-11.065 4.215-15.456 3.337-15.279 2.459-24.412 2.459-24.412L128.794 128s-6.498 5.445-8.079 27.047c-.351 4.391-1.229 18.441.351 27.398-1.756 3.337-3.688 6.147-5.62 6.147-2.985 0-2.985-9.132-2.81-14.401.351-7.201 1.581-11.592 1.581-11.592l-2.986-2.107s-1.581 7.727-1.405 15.455c.176 7.552.703 14.577 5.62 14.577 2.283 0 4.391-2.458 6.147-5.62.879 3.337 2.284 5.445 4.567 5.62 3.337.176 5.444-2.985 6.849-6.147a46.12 46.12 0 0 0 .703 5.796h1.405s-.878-6.674 4.566-17.563c2.635-5.62 4.04-8.606 8.782-10.713 0 0-1.405 2.458-2.986 11.591-1.581 9.484 1.581 17.212 6.147 17.212 3.161 0 4.742-3.688 5.445-5.971 1.053 3.512 3.161 5.971 5.62 5.971 3.161 0 6.674-6.147 7.552-12.118a3.486 3.486 0 0 0 1.932.526c1.581 0 2.986-1.405 3.864-2.985-.352 7.727 1.405 14.577 4.39 14.577 3.689 0 5.796-5.62 6.499-7.376.702 2.283 3.161 7.376 6.849 7.376 1.757 0 3.513-1.229 5.269-3.161 1.405 2.634 3.513 3.161 5.269 3.161 5.093 0 8.606-9.66 8.782-10.362.351 5.269 1.756 10.362 6.147 10.362 4.742 0 6.147-7.903 6.147-7.903 1.229 3.688 3.512 7.903 6.849 7.903 1.932 0 4.04-1.581 5.796-4.215 3.162 4.215 7.377 4.215 8.079 4.215 14.226 0 18.266-15.631 18.266-15.631l-1.757-2.108c-.175-.175-4.039 15.807-16.86 15.631ZM123.35 154.871c1.053-9.659 4.917-22.129 6.849-21.953 2.459.175 1.054 12.294-1.054 23.007-.878 4.742-3.161 12.821-3.863 15.631-.527 2.108-1.581 4.742-2.635 7.552-.527-9.659.527-22.832.703-24.237Zm12.118 23.184c0-9.484 2.108-21.779 2.459-23.008 1.756-9.66 6.674-21.954 8.43-21.954 2.459.176.176 12.294-2.81 22.832-1.229 4.742-6.323 17.739-8.079 22.13Zm27.223 10.362c-2.986 0-4.391-6.323-3.162-14.578 1.23-8.078 5.094-13.172 7.201-13.172.527 0 1.405.527 1.405 3.513-.175.351-1.405 2.283-1.405 7.025 0 2.459.527 4.391 1.581 5.796-1.229 7.376-3.513 11.416-5.62 11.416Zm36.882-4.918c-.527-3.161-.351-7.201.351-11.24.703-5.093 3.162-11.592 4.918-11.592 2.108 0 1.405 6.147.176 11.767-.878 3.162-2.986 7.553-5.445 11.065Zm13.524-8.079c-.352 1.054-4.567 13.172-8.957 13.172-1.932 0-3.162-1.053-3.864-2.81 2.634-3.688 5.093-8.606 6.322-13.172 2.459-8.079.879-11.943.879-11.943l-4.04-2.985s-6.147 4.039-7.025 14.928c-.351 5.445.351 9.484 1.756 12.645-1.581 1.932-3.337 3.337-4.566 3.337-2.986 0-4.918-5.093-4.567-8.43.879-7.552 3.689-17.563 3.689-17.563l-2.81-2.107s-1.932 9.132-2.811 13.523c-1.405 7.903-3.863 14.753-6.674 14.753-2.985 0-1.58-12.118-1.229-15.455.527-4.567 2.81-12.295 2.81-12.295l-2.81-2.107s-1.229 5.796-2.107 9.133c-.703 3.337-2.108 9.132-4.918 9.132-1.581 0-2.635-2.81-1.932-6.673.527-3.337 1.054-4.391 1.054-4.391l-1.054-.703s0-.702-.351-2.459c-.176-1.756-.527-2.458-.527-2.458l-4.04-2.81s-6.849 1.229-8.957 15.631c-.351 2.985-.351 5.795 0 8.254-.702 3.337-1.932 6.85-4.742 6.85-2.986 0-4.215-6.323-2.81-14.753 1.229-8.079 4.918-14.929 4.918-14.929s-2.81-.175-5.796 1.23c-2.108 1.053-3.688 2.634-4.918 3.864.878-2.459 1.757-4.918 2.459-7.553.527-2.283 1.054-4.215 1.581-6.147l67.969 1.581c-1.054 6.85-2.108 15.104-1.932 23.71Zm11.24-13.875c-.878 11.943.176 17.739.176 17.739-1.054 3.864-2.459 9.308-5.094 9.308-2.458 0-4.215-6.849-1.932-26.168a507.54 507.54 0 0 1 1.581-10.714l6.498.176c-.526 2.985-1.053 6.147-1.229 9.659Zm13.172 10.538c.527-5.269 3.162-11.591 4.918-11.591 2.108 0 1.405 6.147.176 11.767-.703 2.986-2.459 7.025-4.391 10.362-.878-2.283-1.23-5.62-.703-10.538Zm-124.006-28.276c.351.702.878 1.054 1.581 1.054 0 0 .527-.527.878-2.108.176-.878.351-2.108.527-3.688 0-.878-.351-1.757-.703-2.283-.351-.703-.878-1.054-1.58-1.054 0 0-.703.527-1.23 2.985-.175 1.23-.351 2.108-.351 2.986.176 1.054.703 1.757.878 2.108Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uyek9s\",layoutDependency:layoutDependency,layoutId:\"YdSpq_bA2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ng9nna\",\"data-framer-name\":\"Rayban\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"bPCiH21It\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M241.996 131.191a3.482 3.482 0 1 0 1.333 6.695 3.475 3.475 0 0 0 2.14-3.224 3.471 3.471 0 0 0-3.473-3.471Zm0 6.542a3.058 3.058 0 0 1-3.061-3.071 3.068 3.068 0 0 1 .898-2.16 3.05 3.05 0 0 1 2.163-.891 3.051 3.051 0 0 1 3.052 3.051 3.05 3.05 0 0 1-.888 2.17 3.056 3.056 0 0 1-2.164.901Z\" fill=\"#732337\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M243.787 133.752c0-.328-.145-.674-.437-.838-.292-.173-.62-.191-.95-.191h-1.693v3.89h.473v-1.795h.875l1.111 1.795h.566l-1.177-1.795c.694-.019 1.232-.301 1.232-1.066Zm-1.878.692h-.729v-1.375h1.112c.483 0 1.011.073 1.011.674.001.792-.848.701-1.394.701Zm-116.451 57.63-22.683-11.076c-.499-.258-.756-.918-.746-1.35l.06-6.114c.009-.431.094-.873.66-1.279 2.425-1.546 9.934-5.702 17.692-17.025 10.333-15.08 0-27.75-16.148-24.301-14.342 3.063-28.943 10.829-35.276 15.051-5.645 3.763-4.86 8.309-5.017 12.386.313 1.724.94 1.567 2.352-.157 10.504-9.72 26.496-17.089 29.475-18.344 2.979-1.254 10.035-5.487 18.344-3.606 7.982 1.808 6.042 12.66 3.606 17.246-2.666 5.017-10.269 12.308-13.719 14.111-1.31.685-1.802 0-1.802-1.098l.549-23.596c0-1.568-.706-2.274-2.274-1.725l-2.508 1.254c-1.724 1.02-1.646 1.412-1.803 2.666l-.38 27.202c-.013.587-.287 1.058-.61 1.197l-8.182 4.603c-1.881.941-1.412 2.352 0 2.822l6.585 3.135c1.568.627 2.039 1.097 2.039 2.665l-.236 13.17c5.88-1.175 6.271-3.998 6.428-5.88v-3.998c.156-.941.705-1.254 1.489-1.097l19.127 9.25c1.725.784 2.666.469 3.92-1.724 1.253-2.193 1.41-3.29-.942-4.388Zm33.427-33.229c-2.658 1.535-3.888 4.407-2.84 6.22 1.045 1.814 4.207 2.118 6.867.582s3.81-4.329 2.763-6.142c-1.046-1.813-4.131-2.196-6.79-.66Z\" fill=\"#732337\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M149.075 160.797c-.722.881-2.116 3.567-2.9 5.213-.784 1.646-2.43 5.369-4.076 5.369-1.74 0-1.96-4.31-1.96-5.879 0-1.568-.941-1.803-1.411-1.724-.471.078-1.803.548-2.195 2.195-.392 1.646-2.509 8.78-4.861 8.78-1.489 0-2.587-4.312-2.664-5.644-.079-1.332-.707-2.43-2.039-2.43-.941 0-2.117.47-2.587 1.019-.471.549-.548 1.411-3.058.863-2.273-.079-4.468 1.098-7.133 5.565-1.604 2.69-2.908 7.703-.47 9.721 2.273 1.88 6.271-1.49 7.447-2.902 1.176-1.41 2.195-2.429 2.666-3.212.469-.785.941-.706 1.175.077.235.785 1.568 3.841 3.293 3.764 1.725-.079 3.92-1.411 6.507-5.959.47-.941 1.176-.862 1.333-.078.157.784 1.175 3.371 2.9 3.371 1.646 0 3.477-2.615 4.39-4.154.627-1.058 1.568-.548 1.568.47 0 1.019-.471 25.085-.471 25.085 0 1.097.431 1.41 1.215 1.41h3.41c.627 0 1.176-.548 1.176-1.41l.705-39c.001-.942-1.057-1.607-1.96-.51Zm-26.652 15.364c-.706 1.177-2.587 4.312-4.233 3.764-.862-.471.287-3.607.863-4.704.862-1.646 3.39-4.268 4.546-3.606 1.098.627-.471 3.371-1.176 4.546Zm119.443-24.044c-.312.275-.823.745-1.959.235-1.961-.784-2.117-4.468-3.135-7.839-.917-3.029-3.123-2.838-3.92-1.45l-2.391 3.841c-.432.783-1.372 2.587-2.313 2.587-1.098 0-.607-1.569-.548-3.136.038-1.059-.628-2.39-1.725-2.39-1.254 0-2.586 1.919-3.606 4.115-.712 1.536-2.548 7.408-4.861 7.408-1.489 0-1.646-4.312-1.724-5.644-.077-1.333-.549-2.979-1.881-2.979-.902 0-1.488.469-1.96 1.018-.469.549-.547 1.019-2.194.784-2.274-.078-6.036 2.039-8.702 6.507-1.604 2.69-3.535 8.33-1.097 10.348 2.274 1.88 6.349-2.51 7.525-3.92 1.175-1.411 2.194-2.431 2.666-3.214.469-.784.94-.706 1.175.079.234.784 1.568 3.841 3.293 3.762 1.725-.078 3.135-.47 5.722-5.017.47-.94 1.332-1.058 1.489-.274.158.784.315 2.862 1.961 2.862 2.82 0 6.019-6.867 6.82-8.467.705-1.412 1.841-1.02 2.234.038.56 1.516 1.057 6.39 4.114 6.39 3.058 0 5.134-3.254 5.761-4.273.707-1.018.339-2.318-.744-1.371Zm-33.237 4.704c-.706 1.175-2.274 3.762-3.92 3.213-.862-.47.208-2.743.785-3.841.862-1.646 3.389-4.306 4.547-3.645 1.096.628-.707 3.096-1.412 4.273Zm-15.145-4.109s-6.663-4.861-8.544-7.055c-1.264-1.474-.392-2.587.392-3.213 4.702-3.136 12.071-7.997 14.972-15.522 2.795-7.253-1.568-13.561-4.704-14.581-4.297-1.396-13.405 1.412-17.953 9.878-2.944 5.483-4.309 7.29-4.702 22.184-.076 2.821-.157 6.036-.157 9.564 0 3.528-.392 13.091-.785 14.893-1.489 4.233 2.98 1.725 5.017.08 2.039-1.647 1.881-4.116 1.881-5.174 0-1.334.079-24.85.784-30.103.44-3.266.942-9.328 4.389-14.58 3.451-5.253 6.978-3.135 7.919-2.274.94.862 2.274 3.057 1.567 7.526-1.095 6.935-9.094 14.502-11.133 16.854-2.037 2.351-1.566 4.39-.39 6.036.836 1.171 2.901 3.449 5.017 5.566 2.117 2.116 1.881 3.998 1.569 5.409-1.099 4.232-12.544 15.678-12.544 15.678-2.431 2.587.077 6.82.94 8.23.864 1.412 1.96.942 2.665-.234 2.823-5.252 14.973-17.952 14.973-17.952 3.532-4.469 2.041-8.78-1.173-11.21Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jtrgnt\",layoutDependency:layoutDependency,layoutId:\"jh_yLUZ3X\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1rwrk76\",\"data-framer-name\":\"CHLOE\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"z1QOCrEkV\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M91.389 187.852c8.274 0 11.825-4.858 12.997-6.834.938-1.541 2.178-4.121 3.35-6.801.972-2.244 1.876-3.249 2.948-3.249.938 0 1.541.737 1.541 1.943 0 .636-1.775 9.681-1.842 10.117-.402 2.445-.771 3.45-1.541 4.254-.335.369-.771.67-1.575 1.139-5.125 2.981-10.82 4.522-16.582 4.522-17.352 0-30.685-13.165-30.685-30.316 0-12.529 6.6-23.115 17.688-28.475 2.076-1.005 7.101-3.483 14.74-3.115 7.737.369 13.566 4.69 15.208 5.628 2.713 1.574 2.412 4.053 2.479 4.824.268 3.149.435 6.867.435 7.671 0 2.11-.435 2.981-1.541 2.981-.938 0-1.474-.636-2.311-2.813-3.216-8.476-8.308-12.898-14.874-12.898-6.834 0-13.165 4.322-16.18 11.089-1.775 3.919-2.613 8.609-2.613 14.337 0 9.581 2.412 16.683 7.203 21.239 3.684 3.517 7.57 4.757 11.155 4.757Zm37.319-52.527c0 1.507-.1 17.352-.1 17.721 0 1.172.301 1.742.938 1.742.435 0 .803-.168 1.607-.67 2.278-1.374 5.025-2.077 7.906-2.144 3.049-.101 6.499 1.005 8.442 2.412a10.399 10.399 0 0 1 3.551 4.857c.469 1.407.603 2.513.636 5.394.067 2.545.235 17.922.235 17.922 0 3.617.469 4.756 2.512 5.962.972.603 1.273.871 1.24 1.24-.101 1.005-1.91 1.105-5.628 1.105l-9.346.134c-2.245 0-3.149-.301-3.149-1.005 0-.435.435-.971 1.507-1.775 1.474-1.106 2.077-2.513 2.077-4.556 0-.335-.301-21.071-.301-21.071-.067-3.752-3.149-4.522-5.528-4.623-2.278-.1-4.723 1.307-5.895 2.881-.603.804-.704 2.546-.704 4.255.034 2.344-.1 17.151-.1 17.62 0 1.642.201 2.881.569 3.651.335.737.67 1.039 1.809 1.742 1.373.871 1.943 1.407 1.943 1.876 0 .771-1.273 1.039-2.814 1.039h-12.562c-2.077 0-3.015-.302-2.948-.972.033-.77 1.474-1.34 2.077-2.01.603-.67 1.239-1.742 1.273-2.881.033-.803.067-39.629.067-39.629-.101-3.685-.771-4.221-1.675-4.924-.871-.67-1.34-1.139-1.34-1.608 0-.369.368-.771 1.34-1.106 1.842-.67 4.924-1.842 6.063-2.479 2.982-1.675 3.518-3.45 5.025-3.35 1.273.101 1.273 1.742 1.273 3.25Zm44.786-.435s.335 46.262.335 46.898c0 2.982.201 4.422.938 5.36.603.804 3.417 1.575 3.249 2.915-.067.603-1.675.703-3.316.703-.402 0-12.16.101-12.16.101-2.613-.067-3.384-.268-3.384-.804 0-.603 1.441-1.374 2.211-2.01 1.139-.972 1.474-1.34 1.474-3.585l-.167-40.534c0-1.541-.57-2.646-1.709-3.35-.804-.502-1.44-1.038-1.105-1.708.335-.67 1.172-.972 2.177-1.24 1.039-.268 2.647-.904 3.886-1.473 1.441-.637 2.077-1.072 4.187-2.68.905-.704 1.173-1.139 1.977-1.206.938-.101 1.474.502 1.407 2.613Zm78.627 3.55c2.143.503 3.215 1.307 3.215 2.781 0 1.842-1.842 3.986-5.125 5.963-2.311 1.373-5.326 2.479-6.867 2.479-.704 0-2.211-.067-2.211-1.407 0-.67.67-1.374 2.311-2.412 1.039-.637 1.307-.905 1.709-1.541.402-.637.603-1.273.603-1.943 0-.972-.335-1.675-1.24-2.613-.804-.838-1.105-1.34-1.105-1.843 0-1.306 1.876-1.574 2.914-1.239 1.541.502 5.528 1.708 5.796 1.775Zm-15.746 27.604c.804-3.25 2.11-9.514 6.867-9.514 3.886 0 5.728 5.025 6.231 9.949.134 1.24.268 2.379-2.647 2.379h-8.006c-2.881-.034-2.881-1.005-2.445-2.814Zm16.883 7.369c1.675 0 6.398.235 7.169-.502.636-.637.569-1.206.569-2.345 0-9.212-6.498-18.525-17.654-18.525-12.227 0-19.295 11.356-19.295 19.664 0 11.122 8.911 20.133 19.898 20.133 5.762 0 11.357-2.345 14.874-6.264.871-.972 1.239-1.709 1.239-2.446 0-.938-.737-1.675-1.641-1.675-.603 0-1.239.369-2.244 1.273-1.675 1.541-6.432 5.059-11.156 4.087-9.145-1.943-8.977-12.127-8.542-13.366 0-.034 16.214-.034 16.783-.034Zm-52.066 14.003c-7.303 0-9.414-7.571-9.414-15.577 0-10.385 4.657-15.309 8.007-15.309 8.006 0 9.245 9.011 9.245 15.309-.033 10.82-4.053 15.577-7.838 15.577Zm-.201-35.442c-14.506 0-21.038 11.423-21.038 19.43 0 10.183 7.001 20.568 20.368 20.568 11.523 0 20.233-8.71 20.233-19.965 0-11.089-8.81-20.033-19.563-20.033Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14y6ppp\",layoutDependency:layoutDependency,layoutId:\"WyvGSMB2O\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-khiol7\",\"data-framer-name\":\"Dita\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"XDVicFWmq\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M164.384 143.272c-.97.382-2.113 1.511-3.273 3.231-1.109 1.633-1.299 2.588-.52 2.675.312.035.745-.174 1.472-.695.554-.417 1.178-.851 1.403-.973.953-.538 2.511-1.285 2.944-1.424.26-.087.901-.313 1.42-.504 1.195-.452 2.84-.886 3.377-.886 1.022 0 2.165.886 2.702 2.067.312.73.329 1.251.329 12.334v11.569l-.416.626c-.311.469-.658.712-1.299.92-.467.157-1.004.278-1.195.278-.484 0-.796.417-.502.66.347.296 15.638.313 15.985.018.363-.296.104-.487-1.161-.817-.606-.173-1.281-.417-1.489-.573-.918-.643-.918-.643-.918-12.785 0-12.108 0-11.917.918-13.151.987-1.302 2.632-1.476 4.399-.486.208.122.485.209.623.209.225 0 .884.26 3.066 1.233.433.191.9.434 1.039.521.138.087.502.261.779.382.294.139 1.212.73 2.078 1.32.849.574 1.68 1.06 1.819 1.06.363 0 .692-.347.692-.729 0-.4-2.719-4.048-3.948-5.316l-.901-.903h-3.498c-1.94 0-8.382-.035-14.339-.087-10.027-.087-10.876-.07-11.586.226Zm47.521-.139-5.889.086-.051.383c-.07.416.675.92 1.35.92.364 0 1.576.608 2.459 1.234.572.417 1.68 1.91 2.096 2.814.554 1.268.433 1.754-1.334 5.194a270.134 270.134 0 0 1-1.801 3.526c-.103.191-.692 1.355-1.298 2.606-.624 1.233-1.628 3.231-2.252 4.43a335.546 335.546 0 0 0-2.113 4.117c-1.091 2.154-1.749 2.953-2.77 3.439-1.334.608-1.559.765-1.559 1.077 0 .296.26.313 3.896.365 2.148.017 4.07 0 4.295-.052.572-.139.468-.504-.277-.921-1.593-.903-1.732-1.928-.606-4.377.381-.817.935-1.998 1.23-2.623.294-.626.658-1.251.831-1.39.242-.191 1.437-.261 6.408-.295 3.359-.035 6.355.017 6.667.104.624.156.675.208 2.113 2.988a144.95 144.95 0 0 0 1.403 2.675c.779 1.459.519 2.362-.849 2.918-.519.209-.693.365-.693.66v.383l8.209-.018c4.52-.017 8.278-.069 8.365-.121.225-.139.156-.539-.139-.834-.156-.174-.571-.278-.987-.278-1.264 0-2.199-1.042-5.247-5.82-.485-.764-.728-1.163-.936-1.563a11.269 11.269 0 0 0-.519-.869 15.954 15.954 0 0 1-.52-.868 12.18 12.18 0 0 0-.484-.817c-.156-.26-2.286-3.769-4.711-7.782-2.425-4.03-4.555-7.522-4.711-7.782a12.18 12.18 0 0 1-.484-.817 11.132 11.132 0 0 0-.52-.868c-.19-.296-.45-.73-.589-.973-.26-.469-.883-.799-1.662-.904-.243-.017-3.083 0-6.321.053Zm3.065 9.154c.138.174.658.973 1.126 1.79.484.816 1.039 1.754 1.246 2.084.191.33.433.764.537.956.104.191.329.573.52.868.19.278.398.643.467.782.07.139.468.834.884 1.529.623 1.024.727 1.302.554 1.511-.191.226-1.005.26-5.438.226l-5.213-.052-.052-.417c-.069-.4.295-1.164 1.819-4.013.329-.626 1.073-2.033 1.645-3.127 1.368-2.64 1.42-2.693 1.905-2.137ZM92.462 143.41c-.485.139-.364.574.173.678 1.386.278 2.061.486 2.338.747.831.747.814.452.814 13.741v12.507l-.64.521c-.364.296-.815.539-1.005.539-.52 0-1.784.417-2.026.66-.139.139-.156.26-.035.382.19.191 19.552.261 21.63.087 2.408-.226 5.386-1.147 6.928-2.171.294-.192.64-.4.779-.47.138-.052.693-.469 1.212-.903 4.174-3.474 6.079-8.46 5.092-13.341-.555-2.779-.918-3.804-2.304-6.445-.363-.695-2.597-2.849-3.758-3.613-1.229-.817-2.961-1.668-4.139-2.033-2.926-.92-2.199-.868-13.854-.92-5.992-.018-11.05 0-11.205.034Zm20.782 1.911c1.247.521 2.476 2.05 2.944 3.683.242.851.277 2.172.294 9.85 0 10.04.104 9.311-1.472 10.735-1.68 1.512-3.169 2.033-5.819 2.033-1.922 0-1.957 0-2.684-.556-.416-.33-.831-.834-.952-1.181-.174-.47-.226-3.388-.226-12.317l-.017-11.726.381-.399c.364-.382.45-.4 3.637-.4 2.563 0 3.411.053 3.914.278Zm22.773-1.893c-.329.121-.277.538.087.729.173.087.744.226 1.264.296.727.104 1.056.243 1.506.695l.555.556v25.205l-.503.574c-.381.451-.744.642-1.524.816-1.264.278-1.524.417-1.385.782.104.243.918.278 7.949.278 4.312 0 7.949-.07 8.087-.157.399-.26.052-.521-1.177-.885-.728-.226-1.351-.556-1.645-.852l-.451-.469v-12.542c0-9.849.035-12.612.208-12.889.347-.556 1.178-.991 2.13-1.13 1.074-.139 1.351-.295 1.264-.712-.051-.313-.38-.33-8.104-.365-4.434-.017-8.157.018-8.261.07Zm56.266 41.865c-.727 1.129-1.368 2.119-1.42 2.224-.052.086-.537.851-1.074 1.685-.554.833-1.004 1.632-1.004 1.771 0 .452 1.247.365 1.697-.121.208-.226.381-.487.381-.573 0-.105.173-.348.399-.556.363-.348.588-.382 2.511-.382h2.112l.468.746c.71 1.077.831 1.164 1.593 1.164.589 0 .71-.052.71-.33 0-.191-.069-.382-.156-.434-.086-.052-.484-.66-.9-1.338-.416-.677-.883-1.407-1.022-1.632-.138-.226-.606-.973-1.039-1.651-.433-.677-.918-1.442-1.074-1.702a6.512 6.512 0 0 1-.415-.695c-.052-.104-.173-.208-.26-.208-.087 0-.762.92-1.507 2.032Zm1.888 1.129c.173.226.312.487.329.591 0 .104.121.295.26.417.138.121.26.364.26.538 0 .295-.139.33-1.299.33-.987 0-1.299-.052-1.299-.243 0-.295 1.074-1.998 1.264-2.015.087 0 .294.174.485.382Zm-30.618-1.98c-.849 1.667-1.975 3.752-2.044 3.821-.156.174-.641-.399-1.056-1.25a47.693 47.693 0 0 0-.641-1.234c-.121-.191-.433-.764-.71-1.268-.485-.868-.537-.903-1.247-.903-.849 0-1.004.139-.71.66.121.191.416.747.658 1.199.26.451.623 1.111.814 1.442.19.33.554.955.779 1.389.243.435.589 1.06.797 1.39.19.33.433.764.519.955.191.435.676.869.814.73.156-.156 1.04-1.807 1.75-3.283.433-.869.744-1.338.917-1.303.139.017.762 1.06 1.386 2.293 1.126 2.223 1.593 2.745 1.853 2.05.069-.174.675-1.251 1.351-2.397a97.058 97.058 0 0 0 1.35-2.346c.07-.139.278-.503.468-.781.191-.296.398-.643.45-.782.07-.139.243-.4.364-.556.139-.156.208-.382.139-.469-.122-.208-1.282-.261-1.576-.052-.104.069-.572.782-1.039 1.598-.468.817-.936 1.633-1.057 1.824a5.882 5.882 0 0 0-.381.73c-.364.799-.623.503-1.991-2.241-.555-1.112-1.109-2.067-1.23-2.12-.139-.052-.416.278-.727.904Zm-43.053-.73c-.225.226-.139 7.105.087 7.331.138.139 1.039.208 2.926.208 2.581 0 2.737-.017 2.84-.347.052-.191.052-.417 0-.521-.069-.104-.917-.174-1.991-.174-1.697 0-1.905-.035-2.078-.33-.243-.486-.225-1.841.052-2.067.121-.104 1.039-.226 2.043-.243 1.715-.052 1.801-.07 1.853-.435.087-.573-.519-.747-2.268-.642-1.351.086-1.507.052-1.663-.261-.26-.469-.242-1.146.035-1.372.121-.105 1.073-.226 2.13-.244 1.887-.052 1.887-.052 1.887-.486v-.434l-2.874-.052c-1.576-.018-2.91.017-2.979.069Zm11.309.07c0 .156 1.766 2.466 2.39 3.109.658.678.814 1.181.9 2.693l.087 1.58.71.053c.866.069.935-.087.935-2.068 0-1.268.173-1.771.866-2.414.398-.382 2.251-2.797 2.251-2.936 0-.104-.346-.191-.848-.191-.814 0-.866.035-1.542.903-1.368 1.772-1.541 1.928-1.818 1.772-.139-.087-.676-.712-1.195-1.372-.918-1.199-.935-1.216-1.836-1.268-.554-.035-.9.017-.9.139Zm13.889 3.596.052 3.786 2.788.053c2.372.034 2.823 0 2.909-.226.243-.66-.034-.782-1.957-.782-1.212 0-1.922-.069-2.06-.208-.33-.33-.278-2.154.069-2.293.156-.053 1.039-.105 1.991-.105 1.438 0 1.75-.052 1.836-.278a.746.746 0 0 0-.069-.573c-.139-.226-.468-.278-1.784-.243-2.009.052-2.286-.07-2.217-1.042l.052-.73 2.078-.087c2.079-.087 2.079-.087 2.079-.521v-.434l-2.91-.052-2.892-.035.035 3.77Zm31.588-3.492c-.139.347-.139 6.462 0 6.983.104.382.121.382 2.909.348l2.788-.053.052-.469.052-.469-2.043-.052-2.044-.052v-2.432l1.992-.087c1.766-.069 1.991-.121 2.043-.417.122-.59-.242-.694-2.112-.642-1.801.052-1.819.034-1.923-.382a2.754 2.754 0 0 1-.052-.921l.052-.504 2.044-.052 2.026-.052v-1.025h-2.84c-2.425 0-2.858.035-2.944.278Zm27.155-.052c-.035.121-.052 1.824-.035 3.769l.052 3.561.727.053c.71.052.728.034.831-.539.07-.33.087-.973.052-1.442-.034-.503.018-.851.156-.886.104-.034.849.591 1.646 1.407 1.42 1.46 1.472 1.494 2.268 1.494.502 0 .814-.069.814-.208 0-.104-.589-.817-1.316-1.546-1.247-1.303-1.437-1.72-.797-1.72.364-.017 1.143-.66 1.403-1.164.485-.955-.069-2.102-1.264-2.658-.624-.278-1.126-.347-2.615-.347-1.316 0-1.853.069-1.922.226Zm3.706 1.164c.71.434.779 1.233.121 1.667-.572.382-1.905.521-2.078.244-.156-.244-.139-1.859.017-2.102.173-.278 1.368-.157 1.94.191Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-95m8e4\",\"data-framer-name\":\"Etnia-Barcelona\",layoutDependency:layoutDependency,layoutId:\"Ex3oPz20C\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1yfd9iy\",\"data-framer-name\":\"Etnia-Barcelona\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"GVosS37HA\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M220.366 156.836c0-2.129-1.388-4.304-4.119-4.304h-4.581v12.911h2.036v-10.736h2.499c1.296 0 2.036 1.111 2.036 2.129s-.648 1.99-2.036 1.99h-2.221v1.11l4.489 5.507h2.684l-3.888-4.72c1.805-.463 3.008-1.944 3.008-3.887h.093Zm10.968 3.748c-.602 1.759-2.037 2.869-3.841 2.869-1.805 0-2.222-.462-2.962-1.249-.74-.787-1.157-1.897-1.157-3.054 0-1.157.417-2.268 1.203-3.101.787-.833 1.851-1.342 2.916-1.342 1.758 0 3.146.972 3.748 2.731v.092h2.082v-.185c-.786-2.915-3.054-4.766-5.83-4.766-2.777 0-3.24.74-4.397 1.943a6.903 6.903 0 0 0-1.758 4.582c0 1.712.648 3.285 1.805 4.535a5.914 5.914 0 0 0 4.35 1.897c2.869 0 5.136-1.897 5.877-4.859v-.185h-1.99v.092h-.046Zm5.692-.601h5.507v-2.129h-5.507v-3.147h5.599v-2.128h-7.682v12.864h7.728v-2.128h-5.645v-3.332Zm9.672-7.265h-2.083v12.726h7.775v-2.129h-5.692v-10.597Zm12.123-.278c-3.563 0-6.432 2.962-6.432 6.617 0 3.656 2.869 6.618 6.432 6.618s6.432-2.962 6.432-6.618c0-3.655-2.915-6.617-6.432-6.617Zm0 11.06c-2.406 0-4.304-1.944-4.304-4.396 0-2.453 1.944-4.443 4.304-4.443 2.36 0 4.304 1.99 4.304 4.443 0 2.452-1.944 4.396-4.304 4.396Zm15.41-2.453-5.646-8.329h-1.573v12.726h2.082v-8.284l5.553 8.284h1.666v-12.726h-2.082v8.329Zm10.272-8.515h-1.527l-4.997 12.911h2.267l1.157-3.147h4.674l1.157 3.147h2.221l-4.952-12.911Zm-2.36 7.775 1.574-4.258 1.573 4.258h-3.147Zm-101.251-1.805c.139-11.153-8.792-20.315-19.945-20.5-11.152-.139-20.361 8.746-20.5 19.945-.139 11.152 8.746 20.315 19.945 20.5 11.152.139 20.315-8.746 20.5-19.945Zm-20.408 12.356c-6.987-.093-12.54-5.831-12.448-12.819.093-6.988 5.831-12.541 12.819-12.448 6.987.092 12.54 5.831 12.448 12.818-.093 6.988-5.831 12.541-12.819 12.449Zm19.111 3.285c-2.73 0-4.951 2.129-4.997 4.859 0 2.73 2.128 4.952 4.859 4.998 2.73 0 4.951-2.129 4.997-4.859 0-2.73-2.128-4.952-4.859-4.998Zm17.262-15.734c.972-.879 1.296-2.221.88-3.517a3.392 3.392 0 0 0-3.24-2.313h-5.183v12.864h5.646c2.406 0 3.656-1.99 3.656-3.887s-.648-2.545-1.759-3.1v-.047Zm-5.506-3.794h3.146c.417 0 .741.139.972.463.232.277.324.601.324 1.018 0 .786-.463 1.573-1.342 1.573h-3.1v-3.054Zm3.563 8.746h-3.563v-3.61h3.563c1.11 0 1.573.926 1.573 1.805 0 .879-.555 1.805-1.573 1.805Zm8.976-10.829-4.997 12.911h2.221l1.157-3.147h4.674l1.157 3.147h2.221l-4.952-12.911h-1.527.046Zm-.786 7.775 1.573-4.258 1.573 4.258h-3.146ZM51.782 148.321C46.6 148.321 41 151.653 41 158.965c0 7.311 5.46 10.597 10.505 10.689h.185c4.674 0 8.607-2.591 10.134-6.571h-6.386c-.88.926-2.175 1.435-3.61 1.435-2.128 0-3.98-1.25-4.673-3.101l-.093-.231h15.271c.14-.74.232-1.481.232-2.268 0-7.265-5.507-10.643-10.736-10.643l-.047.046Zm-4.488 8.469v-.232c.647-1.99 2.267-3.193 4.35-3.193 2.082 0 3.887 1.157 4.442 3.193v.232h-8.839.047Zm26.655 8.19c-1.944 0-3.008-.925-3.008-2.637v-8.515h4.396v-4.952h-4.396v-4.581l-5.785.509v17.492c0 5.044 2.407 7.497 7.312 7.497h.139c.925 0 1.943-.093 3.193-.278l-.185-4.72c-.556.093-1.111.185-1.574.185h-.092Zm17.031-16.659c-1.944 0-4.582.417-6.11 2.36l-.323.37v-2.406H78.67v20.824h6.2v-11.337c0-2.731 2.176-4.443 4.212-4.443 2.036 0 3.47 1.342 3.47 4.304v11.43h5.924v-11.476c0-6.433-2.406-9.58-7.45-9.672l-.047.046Zm16.611.324h-5.923v20.824h5.923v-20.824Zm18.416 2.499-.324-.37c-1.249-1.62-3.146-2.499-5.321-2.499-7.358 0-9.996 5.368-10.089 10.412 0 3.286 1.111 6.34 3.101 8.33 1.758 1.758 4.165 2.73 6.895 2.73 2.73 0 4.165-.787 5.414-2.314l.324-.37v2.406h5.785v-20.824h-5.785v2.499Zm-4.951 13.05c-1.342 0-2.545-.463-3.378-1.342-.972-.972-1.528-2.453-1.481-3.98 0-2.499 1.573-5.229 4.905-5.229 3.332 0 4.998 2.36 4.998 5.275 0 2.916-2.221 5.276-4.998 5.276h-.046Zm-16.426-25.59a3.516 3.516 0 1 0 0 7.033 3.515 3.515 0 0 0 3.517-3.517 3.515 3.515 0 0 0-3.517-3.516Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sgn30c\",layoutDependency:layoutDependency,layoutId:\"Jpe1hoNiI\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1cj2k9h\",\"data-framer-name\":\"Serengeti\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"Wjr3ucxdf\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M142.441 147.202c-.122.204-.163 2.841-.218 12.017-.054 10.766-.068 11.8-.258 12.207-.231.517-.625.734-1.631.843-.544.068-.666.136-.639.286.027.163.408.19 3.874.19 3.385 0 3.834-.027 3.875-.19.013-.136-.164-.218-.979-.313-.558-.082-1.142-.231-1.292-.34-.353-.217-.611-.788-.747-1.672-.096-.639-.612-17.767-.544-17.849.027-.027.625.612 1.318 1.4 5.057 5.696 10.413 11.487 14.94 16.109 3.263 3.331 3.535 3.535 3.657 2.76.027-.204.082-5.519.109-11.8.054-8.822.095-11.5.217-11.854.177-.557.571-.87 1.197-.951.829-.123.992-.163.992-.34 0-.095-.041-.177-.082-.19-.326-.055-7.014-.068-7.232-.014-.176.027-.258.122-.231.245.041.136.231.204.938.258 1.428.122 1.768.353 2.053 1.359.122.463.517 15.43.449 17.605l-.028 1.169-3.561-3.929a993.177 993.177 0 0 0-6.104-6.688c-1.4-1.523-4.133-4.5-6.063-6.593-1.944-2.121-3.602-3.875-3.697-3.915-.109-.041-.232.027-.313.19Zm-89.787.163c-3.1.666-5.098 3.304-4.84 6.349.15 1.631.653 2.868 1.809 4.322.68.843 1.29 1.414 4.458 4.119 2.515 2.148 3.33 3.521 3.33 5.588 0 1.155-.625 2.542-1.48 3.303-1.727 1.55-5.207 1.454-6.988-.19-.653-.585-1.074-1.496-1.142-2.434-.068-1.033-.136-1.264-.313-1.264-.258 0-.312.245-.421 2.297-.123 1.917-.082 2.556.163 2.869.177.244 1.06.584 2.161.856 1.373.34 3.739.326 5.03-.013 1.305-.354 2.311-.87 3.14-1.632 1.468-1.386 2.203-3.086 2.203-5.138.013-3.086-1.115-4.826-5.343-8.252-2.352-1.917-3.507-3.086-3.996-4.105-.354-.734-.395-.897-.381-1.808 0-1.21.272-1.917.992-2.678 1.278-1.319 3.86-1.577 5.805-.585.965.476 1.414 1.088 1.618 2.094.217 1.087.244 1.169.407 1.169.245 0 .272-.245.313-2.474l.04-2.053-.353-.041a31.463 31.463 0 0 1-1.536-.272c-1.427-.271-3.548-.285-4.676-.027Zm27.976-.041c-.176.109-1.849.136-6.702.149-3.548 0-6.525.055-6.606.096-.286.176.095.394.829.448.952.082 1.44.34 1.686.897.176.381.203 1.346.244 9.774.041 11.528-.04 12.833-.815 13.323-.15.095-.558.217-.884.258-.49.068-.612.136-.585.285.028.163.286.191 2.298.191 1.25.013 4.05.054 6.226.108 2.175.055 4.16.068 4.404.014.245-.041.49-.19.599-.354.203-.299.68-3.303.611-3.874-.013-.231-.095-.367-.204-.367-.176 0-.204.095-.53 1.292-.15.516-.313.815-.639 1.128-.652.652-1.21.761-3.833.761-2.148 0-2.298-.013-2.773-.272-.381-.204-.571-.421-.748-.829-.245-.53-.258-.72-.3-5.383-.026-3.915-.013-4.84.123-4.935.095-.068 1.074-.081 2.651-.041 3.453.096 3.752.245 4.01 1.876.095.531.19.762.3.762.135 0 .19-.381.312-1.822.068-1.006.177-2.053.258-2.338.163-.789-.081-.965-.57-.422-.15.164-.477.354-.694.408-.231.068-1.727.15-3.303.204-2.42.055-2.91.041-3.005-.095-.108-.177-.15-9.271-.027-9.557.055-.176.34-.19 1.958-.19 3.33 0 4.594.286 4.989 1.074.095.231.217.707.258 1.074.068.544.122.666.3.666.23 0 .217.027.461-2.352.218-2.188.204-2.27-.299-1.957Zm49.905 0c-.177.109-1.822.136-6.716.149-3.561 0-6.525.041-6.552.082-.231.231.095.408.788.462.911.068 1.414.326 1.686.829.19.354.204 1.074.245 10.196.027 9.978-.027 11.731-.394 12.52-.204.421-.531.598-1.36.72-.435.055-.557.123-.53.272.041.163.313.191 2.365.191 1.278.013 4.16.054 6.403.108 2.909.068 4.16.055 4.391-.04.204-.068.394-.286.489-.517.191-.489.544-2.991.503-3.589-.068-.72-.339-.557-.557.326-.231.952-.476 1.414-.938 1.822-.598.503-1.155.598-3.548.598-2.61 0-3.113-.136-3.575-.87-.259-.435-.259-.448-.299-5.478-.027-2.773.013-5.071.054-5.112.054-.04 1.224-.04 2.597 0 2.175.068 2.582.109 3.058.327.639.272.897.72 1.006 1.658.041.476.122.653.245.653.122 0 .204-.204.258-.83.231-2.487.34-3.425.394-3.656.109-.395-.285-.517-.543-.177-.435.53-.884.612-4.079.693l-3.017.068v-9.91h1.903c4.214 0 5.111.354 5.288 2.08.068.598.258.897.462.693.041-.04.136-.747.217-1.577.082-.829.177-1.794.218-2.175.095-.72.014-.815-.462-.516Zm54.74.041c-4.078.354-6.81 1.509-8.972 3.766-1.767 1.849-2.814 3.888-3.317 6.579-.285 1.387-.271 4.092 0 5.37 1.156 5.342 4.296 8.591 9.652 9.951 3.535.911 7.966.72 10.998-.462.53-.218 1.06-.476 1.169-.585.176-.177.204-.666.272-4.785.04-2.515.122-4.758.204-4.989.163-.639.57-.938 1.413-1.101.517-.095.734-.177.734-.299 0-.272-7.911-.313-8.02-.055-.082.204-.041.218 1.019.381.87.136 1.251.326 1.55.816.191.285.218.734.245 4.54.041 3.684.013 4.241-.136 4.5-.87 1.332-5.927 1.509-8.85.272-1.916-.802-3.752-2.175-4.826-3.603-.815-1.087-1.916-3.358-2.297-4.799-.285-1.087-.313-1.332-.313-3.588-.013-2.869.163-3.739 1.115-5.751.503-1.033.734-1.373 1.482-2.134.938-.938 1.808-1.509 3.058-2.025 3.712-1.496 10.006-.666 12.018 1.59.516.585.992 1.713.992 2.433 0 .408.163.653.367.571.136-.054.204-.516.272-2.283.054-1.21.095-2.474.095-2.801l.014-.584-1.237-.15c-.68-.068-1.659-.204-2.162-.312-1.944-.381-5.003-.612-6.539-.463Zm41.371.298c-.231.558-.91 3.752-.842 3.943.108.271.38.163.53-.204.326-.775.815-1.401 1.291-1.659.585-.299 2.379-.448 5.492-.462h1.958l-.028 10.848c-.04 9.978-.067 10.889-.244 11.46-.231.72-.503.91-1.455 1.033-.489.054-.611.136-.584.285.027.163.421.191 4.159.191 3.766 0 4.133-.014 4.174-.204.027-.15-.095-.218-.639-.272-1.332-.136-1.536-.204-1.835-.476-.558-.584-.571-.693-.612-12.153l-.054-10.739 2.718.068c2.842.081 3.82.204 4.514.557.611.313.829.625.978 1.427.096.517.177.748.299.748.245 0 .367-1.06.327-2.95-.041-1.441-.041-1.522-.272-1.495a71.21 71.21 0 0 0-1.156.149c-1.169.15-15.048.15-16.584 0-.598-.054-1.305-.19-1.55-.299l-.435-.19-.15.394Zm-136.881-.054c-.272.19-.082.299.802.394 1.02.123 1.482.354 1.727.911.176.381.203 1.332.23 9.72.041 9.38-.027 12.003-.366 12.805-.218.517-.558.721-1.333.83-.489.068-.598.136-.584.285.04.163.435.19 4.078.204 3.915.027 4.39 0 4.078-.326-.04-.041-.516-.15-1.06-.204-1.088-.122-1.468-.34-1.713-.924-.231-.544-.421-4.079-.38-7.029l.04-2.229 2.148.027c1.196.027 2.243.068 2.325.095.095.041.747.857 1.454 1.849 2.175 3.072 4.513 6.09 5.356 6.96.911.938 1.903 1.509 2.977 1.699.367.082 1.672.109 2.909.096 1.917-.028 2.257-.055 2.257-.204 0-.136-.258-.218-1.06-.327-2.828-.367-4.119-1.549-9.638-8.727-.816-1.074-1.537-1.998-1.591-2.08-.082-.108.122-.421.707-1.06 1.155-1.292 1.699-2.066 2.229-3.154 1.373-2.827 1.156-5.573-.598-7.517-.965-1.061-2.039-1.632-3.793-1.999-.774-.176-1.699-.217-5.967-.231-3.684-.013-5.084.027-5.234.136Zm9.326 1.101a5.04 5.04 0 0 1 2.528 1.4c1.251 1.251 1.754 2.733 1.754 5.098 0 2.066-.381 3.372-1.305 4.568-.449.584-1.564 1.115-2.543 1.21-.76.081-2.732-.095-3.507-.313-.843-.218-.788.15-.788-6.09 0-4.296.027-5.655.136-5.723.448-.286 2.705-.367 3.725-.15Zm118.35-1.033c-.177.109-1.836.136-6.716.136-3.561 0-6.511.055-6.566.082a.364.364 0 0 0-.013.245c.054.122.326.19.897.231.87.068 1.278.258 1.604.761.163.258.217.761.299 3.14.122 3.711.014 17.237-.149 18.474-.232 1.509-.395 1.7-1.605 1.876-.489.055-.611.136-.584.286.027.163.435.19 3.929.231 2.147.041 5.124.054 6.593.054 3.221.014 3.099.082 3.357-1.4.259-1.427.34-3.058.177-3.167-.204-.123-.231-.055-.476.87-.108.448-.312 1.006-.435 1.21-.557.91-1.767 1.196-4.54 1.128-1.509-.027-1.903-.082-2.284-.272-.557-.272-.856-.68-.992-1.305-.136-.544-.15-9.883-.027-9.951.054-.041 1.25-.013 2.678.027 2.134.082 2.664.15 3.017.327.599.299.87.734.938 1.495.055.707.272 1.047.463.693.054-.122.136-.856.176-1.645.041-.774.123-1.767.204-2.202.177-1.033.055-1.169-.53-.611-.544.53-.707.543-4.187.57l-2.787.028-.04-4.921-.028-4.894h2.026c3.127 0 4.35.231 4.867.938.122.176.258.625.299 1.06.054.571.136.775.285.802.245.041.299-.136.435-1.862.054-.816.163-1.645.218-1.863.19-.652 0-.883-.503-.571Zm36.908.204c-.068.055-.095.177-.054.272.054.136.217.191.57.191.707 0 1.265.326 1.55.883.231.462.231.707.231 10.699 0 11.215-.027 11.691-.625 12.289-.231.217-.489.326-.924.38-.748.082-.898.163-.721.381.095.109 1.006.136 4.051.149 2.148.014 4.01-.013 4.133-.04.095-.041.19-.136.19-.231 0-.096-.217-.177-.666-.231-1.713-.191-2.026-.34-2.243-1.088-.258-.87-.367-5.818-.326-13.73.054-8.632.054-8.659.693-9.135.163-.122.584-.272.952-.313.747-.109.883-.19.679-.394-.095-.095-1.074-.15-3.752-.15-1.984 0-3.684.041-3.738.068Zm14.746.585c-.829.259-1.631 1.101-1.93 2.039-.177.558-.096 1.659.163 2.162.693 1.359 2.175 1.985 3.697 1.563.585-.177 1.536-1.06 1.781-1.672.245-.625.258-1.781.027-2.338-.584-1.414-2.256-2.202-3.738-1.754Zm2.012.707c1.645.829 1.794 3.181.299 4.214-1.604 1.115-3.766-.054-3.766-2.052 0-.83.381-1.537 1.088-2.026.476-.313.666-.381 1.251-.381.462 0 .842.082 1.128.245Z\" fill=\"#732337\"/><path d=\"M268.771 149.716c-.054.041-.082.816-.082 1.713v1.618h.925v-.585c0-.571.013-.584.326-.584.435 0 .598.19.598.72 0 .449 0 .449.49.449h.475l-.081-.558c-.041-.312-.177-.652-.286-.774-.204-.204-.19-.232.055-.49.476-.476.312-1.142-.354-1.427-.408-.163-1.93-.231-2.066-.082Zm1.713 1.033c0 .327-.027.354-.422.395-.448.04-.448.04-.448-.395 0-.421 0-.421.448-.38.395.041.422.068.422.38Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17hen73\",layoutDependency:layoutDependency,layoutId:\"azKjeC3jb\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-rjzylk\",\"data-framer-name\":\"Dutz\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"YWlAQmX5P\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M70 160.873V136h15.981c4.567 0 8.111 1.081 10.575 3.184 2.463 2.163 3.664 5.167 3.664 9.072 0 3.906-.48 4.386-1.442 6.249-.96 1.862-2.282 3.304-4.025 4.386-1.081.661-2.403 1.141-4.025 1.442-1.622.3-3.665.48-6.188.48H70v.06Zm5.828-4.686h7.51c3.965 0 6.789-.601 8.471-1.862 1.682-1.262 2.524-3.305 2.524-6.129 0-2.823-.721-4.446-2.103-5.767-1.382-1.322-3.425-1.983-6.129-1.983H75.829v15.741ZM131.163 136v20.187h16.522V136h5.768v18.985c0 2.283-.421 3.846-1.262 4.627-.841.841-2.463 1.261-4.867 1.261h-15.741c-2.403 0-4.025-.42-4.866-1.261-.841-.842-1.262-2.404-1.262-4.627V136h5.768-.06Zm61.041 4.446v20.427h-5.767v-20.427h-11.416V136h28.659v4.446h-11.476Zm29.618 20.427v-2.703l17.424-17.724h-15.681V136h24.993v2.463l-17.664 17.724h17.664v4.686h-26.736ZM70 183.944v-7.691h7.45v1.022h-6.128v2.163h3.725v1.021h-3.725v2.463h6.188v1.082H70v-.06Zm30.46 0v-3.365l-3.905-4.326h1.622l3.004 3.425 2.884-3.425h1.562l-3.845 4.326v3.365h-1.322Zm25.175 0v-7.691h7.45v1.022h-6.128v2.163h3.725v1.021h-3.725v2.463h6.188v1.082h-7.51v-.06Zm29.32 0-2.764-7.691h1.322l2.103 6.129 2.283-6.129h.781l2.223 6.129 2.103-6.129h1.141l-2.763 7.691h-.962l-2.102-5.828-2.223 5.828h-1.142Zm29.139 0v-7.691h7.45v1.022h-6.128v2.163h3.725v1.021h-3.725v2.463h6.188v1.082h-7.51v-.06Zm26.554 0 4.206-7.691h1.382l4.266 7.691h-1.442l-.962-1.923h-5.227l-.961 1.923h-1.262Zm2.764-2.884h4.146l-2.103-3.965-2.043 3.965Zm27.095 2.884v-7.691h6.189c.6 0 1.021.121 1.261.361.241.24.361.601.361 1.141v1.743c0 .54-.12.901-.361 1.141-.24.241-.661.361-1.261.361h-1.142l3.545 3.004h-1.923L244.052 181h-2.283v3.004h-1.322l.06-.06Zm5.708-6.669h-4.386v2.703h4.386c.3 0 .541-.06.661-.18s.18-.3.18-.601v-1.141c0-.301-.06-.481-.18-.601s-.361-.18-.661-.18Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qlmrpe\",layoutDependency:layoutDependency,layoutId:\"H4eY6b4Zm\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xj6k32\",\"data-framer-name\":\"Orgreen\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"mHRWMRMNx\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M204.985 154.003s-5.27-2.186-2.126-6.347c0 0 .868-1.108 1.976-.449 1.108.658 1.616 1.556 1.826 2.634.299 1.467-1.676 4.162-1.676 4.162Zm-21.346-10.688s1.766.359.658 2.784c-1.108 2.395-3.862 4.76-7.365 4.012 0 0 2.934-7.006 6.707-6.796Zm-60.625 36.315c-2.126 7.903-7.754 4.91-7.754 4.91-8.024-6.587 9.58-23.292 9.58-23.292s.299 10.508-1.826 18.412m-58.14-20.987c-2.365 0-6.826-.539-9.042-3.682 0 0 6.227-8.024 9.64-9.88 0 0 1.527-1.527 4.491.09 1.048.569 3.982 1.018 3.952 6.017-.03 5-6.676 7.455-9.041 7.455Zm58.499-14.041s1.886 1.766-1.228 2.634c0 0-1.107.45-2.484-1.017 0 0 1.976-2.695 3.742-1.617m154.421 9.281c-1.018.209-2.215.778-7.993 1.137-5.778.36-12.095-5.448-13.832-6.556-1.766-1.108-3.952-1.168-3.952-1.168-6.496-.149-9.849 3.862-9.849 3.862s-2.276-4.67-6.497-4.61c-4.221.06-5.03 1.377-15.328 6.496-10.299 5.12-13.083 2.186-13.083 2.186 5.119-8.832-1.527-11.317-3.353-11.317-1.827 0-6.347 1.827-6.347 6.647s3.952 6.855 3.952 6.855c-4.85 2.006-10.928 2.066-14.041 2.006-9.401-.209-9.73-7.125-9.73-7.125 4.011.15 10.897-2.784 10.598-6.856-.3-4.101-5.629-4.311-5.629-4.311-8.263-.539-9.939 8.832-9.939 8.832-.449 0-3.443-1.138-10.538-.3-6.108.749-12.095 6.737-12.095 6.737-1.617-3.593-5.928-6.497-10.299-6.647-4.371-.149-11.676 5.18-11.676 5.18s0-2.695-.359-4.222c-.36-1.527-1.767.449-1.767.449-.658 1.767-2.784 2.844-5.329 3.353-2.544.509-.868-5.778-.868-5.778.569.3 2.485.509 2.485.509 3.593.3 3.742-3.353 3.742-3.353-.359-3.443-3.293-3.592-3.293-3.592-3.143-.06-5.628 3.143-5.628 3.143-12.425-5.179-18.053 5.12-18.053 5.12-.808-2.545-4.61-8.682-10.508-8.982-4.162-.209-8.772 4.88-11.497 8.173-1.077-4.73-6.975-7.305-8.861-7.873-4.252-1.228-6.886 2.694-7.964 3.951-.569.689-3.772 5.988-5.21 7.994 0 0-1.526-1.796-1.137-5.539.39-3.742 5.18-9.969 11.766-9.819 0 0 2.844.179 4.37.988 0 0 .78.568 1.049.029.21-.449-2.335-2.215-5.988-2.484-5.329-.42-14.58 3.951-14.999 12.214 0 0 0 4.491 2.724 7.215 0 0-3.053 4.342-10.807 8.263 0 0-1.198.39-1.048.779.18.419 1.347-.24 1.647-.419.299-.18 7.095-3.533 11.077-7.515 0 0 3.532 4.341 9.73 4.311 6.047-.03 13.502-4.58 13.831-10.149 2.126-1.916 4.162-3.682 4.91-4.431 1.227-1.227 3.024-3.293 6.556-3.293 6.108 0 8.563 11.287 9.64 13.413 1.108 2.125 2.036-1.467 2.036-1.467 6.287-12.485 15.119-8.024 15.119-8.024s-1.527 2.844-.12 7.305c1.647 5.269 9.551 1.018 9.551 1.018l.059 2.425c-10.897 9.191-15.328 17.155-15.927 20.538-.598 3.353.15 9.939 6.946 10.358 6.796.449 10.299-7.724 10.957-12.574.36-2.605 1.318-18.921 1.318-18.921s5.179-5.119 11.915-5.029c6.736.059 8.173 7.364 8.173 8.532 0 1.168.599 2.485 1.527 2.545.958.06.958-.659 1.677-3.503.718-2.844 4.251-6.078 8.831-7.754 4.85-1.766 12.335-.808 12.335-.808 1.018 8.113 7.604 9.58 16.376 9.58 8.772 0 13.802-3.353 13.802-3.353 1.317.958 3.652 1.856 9.041 1.467 6.077-.449 11.706-4.91 13.173-5.928 1.467-1.018 5.419-3.653 8.532-4.102 3.144-.449 6.287 6.796 6.946 8.174.658 1.377 1.467 1.377 2.545-1.527 1.107-2.934 4.311-5.988 8.981-6.437 4.67-.449 6.497 3.203 11.676 5.838 5.179 2.634 13.233.299 13.891.06.659-.21 1.318-1.108 1.228-1.467-.06-.359-.15-.719-1.168-.509\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qn4cxk\",layoutDependency:layoutDependency,layoutId:\"tKEE_Sc_1\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-aswc0o\",\"data-framer-name\":\"Porsche-Design\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"ujxhG6wbr\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M52.547 166.569H40.468v4.43H38V160h14.547c1.177 0 2.124.977 2.124 2.207v2.156c0 1.212-.947 2.206-2.124 2.206Zm-.344-3.958c0-.27-.196-.488-.457-.488H40.468v2.306h11.278a.454.454 0 0 0 .457-.471v-1.347Zm19.636 8.388H59.09c-1.178 0-2.125-.977-2.125-2.207v-6.585c0-1.23.948-2.207 2.125-2.207h12.748c1.178 0 2.142.977 2.142 2.207v6.585c0 1.23-.965 2.207-2.142 2.207Zm-.344-8.388c0-.27-.196-.488-.457-.488H59.892c-.262 0-.458.218-.458.488v5.778c0 .269.196.471.458.471h11.146a.453.453 0 0 0 .458-.471v-5.778Zm19.62 8.388v-.774c0-2.477-1.03-3.656-3.137-3.656h-8.68v4.43h-2.466V160h14.4c1.192 0 2.14.977 2.14 2.207v2.156c0 .858-.555 1.549-1.308 1.802 1.062.775 1.52 2.106 1.52 3.824v1.01h-2.469Zm-.212-8.388a.47.47 0 0 0-.473-.488H79.299v2.306h11.13a.457.457 0 0 0 .474-.471v-1.347Zm19.932 8.388H96.287v-2.139h13.747a.453.453 0 0 0 .457-.471v-1.348a.455.455 0 0 0-.457-.473H98.412c-1.176 0-2.125-.993-2.125-2.206v-2.155c0-1.23.949-2.207 2.125-2.207h14.22v2.123h-13.42c-.26 0-.457.218-.457.488v1.347c0 .27.197.472.458.472h11.621c1.176 0 2.124.994 2.124 2.207v2.156c.001 1.229-.947 2.206-2.123 2.206Zm7.115 0c-1.177 0-2.125-.977-2.125-2.207v-6.585c0-1.23.948-2.207 2.125-2.207h13.893v2.123h-13.092c-.261 0-.458.218-.458.488v5.778c0 .269.197.471.458.471h13.092v2.139H117.95Zm30.014 0v-4.43H136.9v4.43h-2.468V160h2.468v4.429h11.064V160h2.468v10.999h-2.468Zm5.434 0V160h16.671v2.123h-14.203v2.306h13.877v2.139h-13.877v2.292h14.203v2.139h-16.671Zm42.52 0h-14.546V160h14.546c1.145 0 2.125.943 2.125 2.123v6.669c0 1.23-.947 2.207-2.125 2.207Zm-.342-8.388c0-.27-.197-.488-.458-.488H183.84v6.737h11.278a.454.454 0 0 0 .458-.471v-5.778Zm5.35 8.388V160h16.672v2.123h-14.203v2.306h13.877v2.139h-13.877v2.292h14.203v2.139h-16.672Zm34.019 0h-14.546v-2.139h13.746a.452.452 0 0 0 .457-.471v-1.348a.454.454 0 0 0-.457-.473h-11.621c-1.177 0-2.125-.993-2.125-2.206v-2.155c0-1.23.948-2.207 2.125-2.207h14.22v2.123h-13.419c-.262 0-.457.218-.457.488v1.347c0 .27.194.472.457.472h11.62c1.178 0 2.125.994 2.125 2.207v2.156c0 1.229-.947 2.206-2.125 2.206Zm5.254 0V160h2.468v10.999h-2.468Zm20.04 0h-12.406c-1.176 0-2.124-.977-2.124-2.207v-6.585c0-1.23.948-2.207 2.124-2.207h14.548v2.123h-13.747c-.261 0-.457.218-.457.488v5.778c0 .269.196.471.457.471h10.82a.454.454 0 0 0 .458-.471v-1.821h-5.622v-2.139h8.091v4.363c0 1.23-.949 2.207-2.142 2.207Zm19.293 0-11.735-8.253V171h-2.468v-11h2.468l11.734 8.254V160H282v10.999h-2.468Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13arqj5\",layoutDependency:layoutDependency,layoutId:\"IdeqN88AH\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1fenu91\",\"data-framer-name\":\"Group 45\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"pExIsVuQU\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M188.692 152c-1.114 0-2.2.92-2.176 1.87.051 2.237 2.563 2.123 2.563 2.515 0 1.088-.984 2.144-2.666 3.377l1.083.68c1.86-1.39 4.157-3.131 4.157-5.734 0-1.647-1.068-2.708-2.961-2.708Zm-20.358.125c-9.524 0-14.82 6.46-14.82 11.921 0 5.463 5.296 11.92 14.82 11.92 9.513 0 14.81-6.457 14.81-11.92 0-5.461-5.297-11.921-14.81-11.921Zm114.419.068a3.232 3.232 0 0 0-3.235 3.229 3.233 3.233 0 0 0 3.235 3.23c1.79-.002 3.247-1.449 3.247-3.23 0-1.779-1.456-3.229-3.247-3.229Zm-27.511.022-8.008.521v1.213c3.491.125 4.067.382 4.067 2.187 0 0 .102.758.102 7.728 0 6.967-.102 7.762-.102 7.762 0 2.127-.485 2.47-3.589 2.47v1.247h10.959v-1.247c-2.914 0-3.429-.565-3.429-2.209v-19.672Zm-59.624.533v1.258c4.354 0 4.413.39 4.556 2.776 0 0 .023.749.023 6.98 0 6.232-.034 6.992-.034 6.992-.14 2.975-.428 3.354-4.591 3.354v1.235h13.761v-1.235c-4.875-.064-4.818-.127-4.818-3.388v-5.734h5.354c5.628 0 13.559-.733 13.613-5.926.052-4.805-5.335-6.312-12.622-6.312h-15.242ZM33 152.782v1.224c5.015 0 4.584.196 4.705 2.436 0 0 .034.628.034 6.516 0 5.887-.057 6.674-.057 6.674-.105 3.733-1.23 4.51-4.682 4.51v1.235h11.141v-1.235c-3.646-.281-4.306-.948-4.306-3.989v-16h.706L49.724 176h.9l9.65-21.972h.614v17.983c0 1.818-.238 2.071-4.545 2.131v1.235h13.42v-1.235c-4.31-.124-4.59-.343-4.671-2.539 0 0-.069-.255-.069-7.852 0-7.283.034-7.309.034-7.309.078-2.102-.175-2.436 4.603-2.436v-1.224H58.7l-7.347 16.397h-.102l-6.755-16.397H33Zm249.753.079a2.585 2.585 0 0 1 1.82.751c.483.48.754 1.131.755 1.81 0 .679-.272 1.331-.754 1.811a2.584 2.584 0 0 1-3.641 0 2.56 2.56 0 0 1-.754-1.811c.001-.679.272-1.33.755-1.81a2.586 2.586 0 0 1 1.819-.751Zm-114.419.51c7.243 0 9.581 5.657 9.581 10.675 0 5.025-2.338 10.662-9.58 10.662-7.252 0-9.581-5.637-9.581-10.662 0-5.018 2.329-10.675 9.58-10.675Zm113.258.42v3.206h.592v-1.19h.535l.65 1.19h.683l-.718-1.303a.885.885 0 0 0 .638-.884c0-.371-.151-.618-.353-.782-.283-.225-.571-.231-1.002-.238l-1.025.001Zm-71.348.26c5.35 0 8.312 1.421 8.305 4.465-.01 4.128-2.67 5.028-14.034 4.929v-7.456c0-1.726 1.187-1.938 5.73-1.938h-.001Zm71.94.261h.284c.358 0 .51.004.638.068.25.125.251.363.251.43 0 .469-.426.495-.558.499-.116.005-.194 0-.399 0h-.216v-.997Zm-169.442 4.634c-.397 0-.775.041-1.139.102-.007.002-.024.009-.034.011-3.468.528-5.417 3.015-6.607 5.87h-.102v-5.96l-7.337.351v1.145c3.496.139 3.481.399 3.52 3.342 0 0 .023.864.023 4.284 0 3.418-.046 4.181-.046 4.181 0 1.631-.342 1.892-3.44 1.892v1.179h11.176v-1.179c-3.938 0-3.897-.205-3.897-2.617 0-4.996 3.412-11.303 7.53-11.196.297.01.7.054.752.17.01.024.028.054.023.08-.07.359-1.378.616-1.378 2.085 0 1.407 1.434 1.922 2.403 1.903 1.62-.027 2.387-1.458 2.438-2.255.092-1.486-.737-2.985-3.224-3.32a3.752 3.752 0 0 0-.661-.068Zm17.396.057c-5.667 0-10.788 4.075-10.788 8.419 0 4.309 4.188 8.238 10.298 8.238 4.383 0 6.743-1.405 8.715-3.852l-1.219-.76c-1.626 1.628-3.666 2.867-6.721 2.867-5.319 0-6.539-4.176-6.539-6.776 0-2.645 1.804-6.742 6.481-6.742 1.254 0 3.671.338 4.557 1.382.066.09.114.182.114.283 0 .066-.086.159-.205.159-.981 0-2.495.399-2.495 1.96 0 .972 1.072 1.95 2.415 1.95 1.774 0 2.518-1.5 2.518-2.743 0-.738-.249-1.389-.695-1.96-1.229-1.658-4.102-2.425-6.436-2.425Zm-47.652.011c-.926 0-1.842.062-2.723.193-.846.101-1.663.291-2.403.555-.013.004-.023.006-.034.011-1.829.655-3.179 2.004-3.179 3.457 0 1.077 1.03 2.186 2.29 2.186 1.418 0 2.518-.818 2.518-1.994 0-1.042-.572-1.757-1.755-2.051.144-.145.886-.462 1.64-.657.972-.256 2.53-.306 3.259-.306 3.546 0 5.024 1.295 5.103 3.819.024 1.209 0 1.382 0 1.382-5.27 1.274-13.95 1.143-14.023 5.904-.035 2.188 2.419 4.136 5.57 4.136 4.11 0 6.43-1.32 8.373-3.751h.092c.094 1.993 1.532 3.751 4.044 3.751 2.758 0 3.592-1.452 3.747-1.564l-.945-.861c-.126.155-.663.748-1.48.748-1.316 0-1.573-.993-1.573-2.595v-7.479c0-4.371-4.907-4.884-8.521-4.884Zm152.183.057c-6.329 0-10.276 4.178-10.276 8.26 0 4.085 3.948 8.261 10.276 8.261 6.325 0 10.287-4.176 10.287-8.26 0-4.083-3.961-8.261-10.287-8.261Zm37.194 0c-6.324 0-10.287 4.175-10.287 8.26 0 4.082 3.963 8.261 10.287 8.261 6.325 0 10.275-4.179 10.275-8.26 0-4.086-3.951-8.261-10.275-8.261Zm-37.194 1.246c4.395 0 6.004 3.716 6.004 7.014 0 3.301-1.609 7.026-6.004 7.026s-6.174-3.725-6.174-7.026c0-3.298 1.779-7.014 6.174-7.014Zm36.784 0c.132-.007.273 0 .41 0 4.398 0 6.175 3.716 6.175 7.014s-1.777 7.026-6.175 7.026c-4.395 0-6.186-3.728-6.186-7.026 0-3.195 1.676-6.792 5.776-7.014Zm-184.228 6.369c0 .246.01.178-.023 1.597-.125 2.834-2.687 5.564-6.675 5.564-1.48 0-2.974-.854-3.11-2.153-.392-3.787 6.777-4.294 9.808-5.008Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-e3j1by\",layoutDependency:layoutDependency,layoutId:\"eWObu30Ox\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-d6trt8\",\"data-framer-name\":\"Titanflex\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"EHqgd_CQs\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M165.402 174.082h2.777v-9.242h20.446v-2.494h-20.446v-6.448h21.012v-2.492h-23.789v20.676Zm53.637 0h25.305v-2.494h-22.528v-6.748h21.963v-2.494h-21.963v-6.448h22.528v-2.492h-25.305v20.676Zm-23.7-20.676h-2.777v20.676h23.007v-2.493h-20.23v-18.183Zm-37.476 17.954h-.738l-18.156-17.938h-4.69v20.66h2.778v-17.939h.68l18.269 17.939h4.634v-20.676h-2.777v17.954Zm-51.852-17.955H80.482v2.498h11.096v18.179h2.776v-18.179h11.657v-2.498ZM45 155.903h11.658v18.179h2.777v-18.179h11.094v-2.498H45v2.498Zm31.894-2.497h-2.777v20.674h2.777v-20.674Zm31.939 12.596 7.249-10.965 7.25 10.965h-14.499Zm5.062-12.596-12.911 19.509 2.242 1.569 3.958-5.986 17.797-.002 3.959 5.987 2.238-1.566-12.896-19.511h-4.387Zm149.823 10.337 11.114-8.625L273.19 153l-11.696 9.025-11.64-9.025-1.63 2.105 11.077 8.551-11.215 8.674 1.668 2.153 11.74-9.084 11.714 9.084 1.626-2.1-11.116-8.64Zm8.9 19.403h.742v2.658c0 .272.046.449.146.565.117.131.293.176.525.176.318 0 .532-.062.665-.123v-.409a1.19 1.19 0 0 1-.525.124c-.146 0-.23-.03-.285-.101-.063-.084-.07-.217-.07-.402v-2.489h.88v-.355h-.88v-1.476l-.456.101v1.375h-.742v.356Zm-.557-.426a1.496 1.496 0 0 0-.248-.023c-.556 0-.981.372-1.114.804v-.711h-.454v3.678h.454v-2.079c0-.742.465-1.237 1.106-1.237.086 0 .17.008.256.024v-.456Zm-5.928 1.918c0-.959.464-1.547 1.189-1.547.727 0 1.192.58 1.192 1.547 0 .95-.479 1.531-1.192 1.531-.71 0-1.189-.572-1.189-1.531Zm-.479.006c0 1.16.625 1.916 1.668 1.916 1.044 0 1.669-.757 1.669-1.916 0-1.166-.633-1.938-1.669-1.938s-1.668.772-1.668 1.938Zm-.811-1.853h-.836v-.773c0-.209.03-.323.116-.402.062-.055.148-.084.279-.084.153 0 .317.038.441.076v-.417a1.656 1.656 0 0 0-.471-.07c-.273 0-.502.063-.65.231-.108.124-.169.294-.169.603v.835h-.836v.355h.836v3.323h.454v-3.323h.836v-.354Zm-3.516 3.678h.454v-2.226c0-.719-.069-1.035-.338-1.283-.208-.183-.464-.253-.734-.253-.557 0-.99.3-1.161.765-.069-.533-.524-.765-.972-.765-.48 0-.937.246-1.091.702v-.618h-.455v3.678h.455v-1.961c0-.874.365-1.385.982-1.385.279 0 .449.109.542.231.17.225.17.566.17 1.121v1.994h.455v-1.963c0-.858.363-1.383.982-1.383.278 0 .448.109.541.231.172.225.172.566.172 1.121l-.002 1.994Zm-8.41-1.831c0-.959.464-1.547 1.191-1.547.727 0 1.191.58 1.191 1.547 0 .95-.479 1.531-1.191 1.531-.711 0-1.191-.572-1.191-1.531Zm-.478.006c0 1.16.626 1.916 1.669 1.916 1.045 0 1.668-.757 1.668-1.916 0-1.166-.632-1.938-1.668-1.938s-1.669.772-1.669 1.938Zm-.866-.981c-.232-.603-.712-.957-1.43-.957-1.013 0-1.668.755-1.668 1.938 0 1.175.64 1.916 1.668 1.916.689 0 1.167-.331 1.43-.872l-.363-.223c-.232.471-.558.704-1.067.704-.71 0-1.19-.571-1.19-1.531 0-.959.464-1.547 1.19-1.547.52 0 .851.287 1.036.804l.394-.232Zm-6.237-.943a1.474 1.474 0 0 0-.247-.023c-.557 0-.981.372-1.112.804v-.711h-.456v3.678h.456v-2.079c0-.742.464-1.237 1.105-1.237.084 0 .17.008.254.024v-.456Zm-5.928 1.918c0-.959.465-1.547 1.192-1.547.725 0 1.19.58 1.19 1.547 0 .95-.481 1.531-1.19 1.531-.711 0-1.192-.572-1.192-1.531Zm-.478.006c0 1.16.624 1.916 1.67 1.916 1.044 0 1.667-.757 1.667-1.916 0-1.166-.633-1.938-1.667-1.938-1.036.001-1.67.772-1.67 1.938Zm-.811-1.853h-.837v-.773c0-.209.031-.323.118-.402.062-.055.146-.084.277-.084.156 0 .318.038.442.076v-.417a1.664 1.664 0 0 0-.472-.07c-.27 0-.502.063-.648.231-.109.124-.17.294-.17.603v.835h-.837v.355h.837v3.323h.453v-3.323h.837v-.354Zm-5.981 1.847c0 .99-.44 1.531-1.146 1.531-.726 0-1.143-.557-1.143-1.539 0-.997.448-1.53 1.16-1.53.689 0 1.129.533 1.129 1.538Zm-1.239 1.924c.627 0 1.029-.317 1.222-.749v.656h.456v-5.254h-.456v2.232c-.176-.409-.61-.74-1.198-.74-.912 0-1.552.709-1.552 1.938.001 1.235.624 1.917 1.528 1.917Zm-4.186-3.478c.711 0 1.113.626 1.113 1.221h-2.289c.062-.741.501-1.221 1.176-1.221Zm1.289 2.256c-.169.357-.531.82-1.236.82-.687 0-1.244-.472-1.244-1.431v-.054h2.797v-.062c0-1.089-.539-1.908-1.606-1.908-.99 0-1.661.779-1.661 1.901 0 1.253.664 1.954 1.7 1.954.935 0 1.391-.578 1.599-.995l-.349-.225Zm-4.173-.95c0-.818-.093-1.067-.322-1.328-.218-.238-.533-.355-.914-.355-.625 0-1.027.339-1.166.694v-.61h-.456v3.678h.456v-2.187c0-.309.093-.633.309-.858.17-.185.418-.302.75-.302.302 0 .52.085.658.239.192.21.232.549.232 1.128v1.979h.454v-2.078h-.001Zm-4.814.217c0 .959-.44 1.492-1.144 1.492-.727 0-1.143-.541-1.143-1.5 0-.974.447-1.501 1.158-1.501.689.002 1.129.527 1.129 1.509Zm.441-1.816H219v.602c-.193-.393-.612-.686-1.199-.686-.913 0-1.553.719-1.553 1.908 0 1.19.609 1.894 1.546 1.894.602 0 1.013-.294 1.206-.725v.378c0 .796-.124 1.453-1.129 1.453-.751 0-.997-.418-1.043-.951l-.441.124c.038.686.44 1.212 1.484 1.212 1.091 0 1.585-.525 1.585-1.676v-3.533Zm-4.461-1.576h-.454v.758h.454v-.758Zm0 1.576h-.454v3.678h.454v-3.678Zm-1.793.516c-.262-.317-.694-.601-1.336-.601-.704 0-1.282.37-1.282 1.034 0 .611.385.835 1.034.989l.511.124c.441.11.774.224.774.634 0 .394-.295.673-.914.681-.557 0-.966-.263-1.198-.634l-.371.263c.231.386.78.765 1.513.765.828-.008 1.43-.386 1.43-1.104 0-.658-.478-.882-1.097-1.021l-.488-.116c-.486-.109-.734-.247-.734-.634 0-.411.366-.596.812-.596.487 0 .813.256.999.511l.347-.295Zm-5.207-.223c.71 0 1.112.626 1.112 1.221h-2.287c.062-.741.502-1.221 1.175-1.221Zm1.29 2.256c-.17.357-.533.82-1.236.82-.688 0-1.246-.472-1.246-1.431v-.054h2.798v-.062c0-1.089-.54-1.908-1.606-1.908-.99 0-1.662.779-1.662 1.901 0 1.253.664 1.954 1.7 1.954.935 0 1.392-.578 1.599-.995l-.347-.225Zm-4.659-.702c0 .99-.442 1.531-1.146 1.531-.726 0-1.143-.557-1.143-1.539 0-.997.448-1.53 1.16-1.53.687 0 1.129.533 1.129 1.538Zm-1.239 1.924c.627 0 1.029-.317 1.222-.749v.656h.456v-5.254h-.456v2.232c-.178-.409-.611-.74-1.199-.74-.911 0-1.553.709-1.553 1.938.002 1.235.626 1.917 1.53 1.917Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jiizaz\",layoutDependency:layoutDependency,layoutId:\"ZD443PtK8\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-187qiis\",\"data-framer-name\":\"Rei\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"JcY97n0L3\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M47.028 153.152v-6.123H57.18c5.318 0 8.38 2.417 8.38 6.445v.162c0 3.706-2.74 6.123-6.769 6.606H46.867v-7.09h.161Zm9.346 10.635 9.669 12.73h4.511l-10.151-13.374c2.417-.484 4.512-1.451 6.123-2.74 1.611-1.611 2.578-3.706 2.578-6.445v-.161a9.4 9.4 0 0 0-.967-4.19c-.483-.806-.966-1.611-1.61-2.417-2.096-2.095-5.319-3.223-9.347-3.223H43v32.872h3.706v-12.73h9.668v-.322Zm46.086 12.73v-3.384H82.318v-11.441h17.886v-3.384H82.318v-11.28h19.98v-3.383H78.611v32.872h23.849Zm6.444-4.835 2.256-2.739c3.384 3.062 6.768 4.673 11.28 4.673 4.351 0 7.251-2.417 7.251-5.64 0-3.061-1.611-4.834-8.54-6.284-7.574-1.611-10.958-4.028-10.958-9.507v-.161c0-5.157 4.512-9.024 10.797-9.024 4.834 0 8.218 1.45 11.602 4.028l-2.095 2.901c-3.062-2.417-6.124-3.545-9.507-3.545-4.19 0-6.929 2.417-6.929 5.317v.162c0 3.061 1.772 4.834 8.862 6.445 7.251 1.611 10.635 4.351 10.635 9.346 0 5.64-4.673 9.346-11.279 9.346-5.157 0-9.346-1.772-13.375-5.318Zm89.272-28.037h14.18c4.028 0 7.251 1.289 9.346 3.222 1.611 1.612 2.578 3.868 2.578 6.446v.161c0 5.479-3.706 8.701-8.863 9.668l10.152 13.375h-4.512l-9.507-12.73h-9.668v12.73h-3.706v-32.872Zm13.697 16.758c4.995 0 8.379-2.578 8.379-6.768v-.161c0-4.029-3.062-6.446-8.379-6.446h-10.152v13.375h10.152Zm47.695 16.114v-3.384h-20.142v-11.441h17.886v-3.384h-17.886v-11.28h19.981v-3.383h-23.848v32.872h24.009Zm16.439-32.872h-3.706v32.872h3.706v-32.872Zm-93.141-.322h-5.156l-33.194 33.194h5.317l33.033-33.194Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-w9y625\",layoutDependency:layoutDependency,layoutId:\"lxlPiHHbw\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-eap9qn\",\"data-framer-name\":\"Humperys\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"u5yYeUiTk\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M58.043 136.41h5.77v7.693h7.607v-7.565h5.641v20.729h-5.556v-7.608h-7.607v7.693H58V136.41h.043Zm205.145 16.24c-2.35 4.488-5.684 5.983-11.411 5-2.522-.427-4.915-1.324-6.966-3.29 1.068-1.283 2.094-2.522 2.906-3.462 2.179.769 4.06 1.581 6.026 2.094.897.214 2.009 0 2.863-.385.941-.384.983-1.453.086-2.051-.684-.428-1.539-.684-2.351-.94-1.538-.471-3.162-.812-4.701-1.411-2.308-.855-3.761-2.479-3.846-5.086-.086-2.778 1.068-4.829 3.504-6.111 3.633-1.924 10.599-.983 13.164 1.88-.812 1.24-1.71 2.479-2.522 3.718-1.795-.598-3.419-1.282-5.086-1.666-1.667-.385-2.906.085-3.12 1.025-.256.898.556 1.624 2.479 2.137.898.214 1.795.385 2.693.641 2.692.684 5.043 1.881 6.368 4.488v3.419h-.086Zm-153.518-6.368v10.941h-5.385V136.41c1.795 0 3.505-.086 5.172.042.555.043 1.196.641 1.538 1.197 1.41 2.137 2.693 4.317 4.274 6.838 1.111-1.709 2.222-3.12 2.906-4.658 1.197-2.821 3.163-3.975 6.155-3.419.598.128 1.239.085 2.008.128v20.685h-5.556v-10.984a3.775 3.775 0 0 1-.555-.171c-1.624 2.437-3.206 4.873-5.001 7.565l-5.043-7.565c-.171.086-.385.129-.556.214h.043Zm64.406-9.83c3.975 0 7.779-.171 11.54 0 5.299.299 8.376 4.744 6.539 9.531-.641 1.667-2.223 2.992-3.505 4.616a716.777 716.777 0 0 0 4.53 6.71c-2.265 0-4.103.085-5.898-.043-.512 0-1.111-.556-1.453-1.026-.94-1.239-1.795-2.564-2.607-3.889-.769-1.282-1.752-1.795-3.462-1.111v5.898h-5.684v-20.771.085Zm5.727 10.172c1.752-.086 3.376-.043 4.958-.299 1.239-.171 1.966-1.111 1.966-2.436 0-1.197-.77-2.223-2.052-2.351-1.581-.171-3.205 0-4.872 0v5.086Zm-28.889-10.129h5.599v7.607h7.65v-7.522h5.684v20.686h-5.556v-7.608h-7.607v7.565h-5.727v-20.728h-.043Zm60.433 8.12v4.488h-9.83v3.505h11.112v4.615h-16.711v-20.642h16.54v4.786h-10.941v3.291h9.915l-.085-.043ZM80.994 136.41h3.761c.556 0 1.112.043 1.838.086.043.854.128 1.581.128 2.35 0 3.12-.042 6.24 0 9.403.086 2.82 1.496 4.359 3.89 4.402 2.051 0 3.376-1.026 3.803-3.035.214-1.025.257-2.094.257-3.162v-9.916h5.898v4.958c-.086 2.906-.043 5.812-.299 8.719-.342 3.889-2.608 6.539-6.411 7.223a18.702 18.702 0 0 1-6.54 0c-3.803-.684-5.983-3.078-6.282-7.309-.342-4.445-.085-8.932-.085-13.719h.042Zm55.217 15.129v5.685h-5.727v-20.686c3.804 0 7.608-.299 11.326.086 4.317.47 6.539 3.461 6.368 7.65-.128 3.804-2.821 6.539-7.009 7.009-1.539.171-3.12.171-5 .256h.042Zm.086-4.786c1.453 0 2.65.128 3.846 0 1.282-.171 2.18-1.24 2.223-2.479.085-1.325-.599-2.436-1.881-2.735-1.325-.3-2.735-.257-4.188-.385v5.599Zm91.373 10.513h-5.812c0-2.137.086-4.103 0-6.069-.085-1.025-.342-2.094-.855-2.991-1.88-3.291-3.889-6.454-5.812-9.702l-1.197-2.094c2.094 0 3.932-.086 5.727.042.513 0 1.111.556 1.41 1.026.898 1.453 1.71 2.949 2.522 4.445.342.598.727 1.197 1.197 2.051 1.538-2.649 2.906-5.043 4.316-7.479h6.368c-.427.77-.769 1.368-1.111 1.966-1.966 3.206-3.889 6.454-5.898 9.616-.684 1.069-.983 2.137-.94 3.419.085 1.838 0 3.676 0 5.727l.085.043Zm-61.243 22.566h-2.565c-.598-1.753-1.154-3.462-1.752-5.214-.128 0-.299-.043-.427-.086-.599 1.71-1.24 3.462-1.881 5.257h-2.521c-.983-3.248-2.009-6.539-3.035-9.958h2.735a423.085 423.085 0 0 1 1.539 5.299h.342c.598-1.709 1.154-3.461 1.795-5.299.726 0 1.41-.086 2.308-.128.641 1.795 1.239 3.59 1.88 5.342h.385c.513-1.752 1.068-3.505 1.581-5.3h2.693c-1.069 3.419-2.052 6.71-3.077 10.001v.086Zm23.847-9.831c2.137-.085 3.761-.299 5.343-.128 1.538.128 2.778 1.154 2.863 2.693.171 2.393.043 4.786.043 7.094-.171.128-.214.214-.299.171-.983-.128-1.966-.427-2.949-.427-.941 0-1.924.513-2.864.513-1.709 0-2.821-1.154-2.992-2.736-.128-1.538.684-2.82 2.266-3.162 1.282-.257 2.649-.214 3.974-.299-.213-1.71-.513-1.838-4.616-1.411-.17-.555-.384-1.197-.769-2.35v.042Zm5.727 5.941c-.94-.684-1.966-.812-2.949-.256-.384.213-.726.897-.726 1.324 0 .3.555.77.983.941 1.367.47 2.307-.257 2.692-2.009Zm-68.38-5.982c.727 2.051 1.411 4.017 2.137 6.026h.385c.641-1.966 1.325-3.975 2.009-6.069h2.906c-1.496 3.889-2.821 7.65-4.36 11.283-.854 2.051-2.692 2.308-5.128.983.171-.513.384-1.026.555-1.539.727-.085 1.411-.171 2.394-.299-.94-3.633-2.65-6.838-3.761-10.385h2.863Zm-9.659 7.008c.47.385.897.727 1.282 1.069-.086 1.197-2.137 2.094-4.317 1.966-3.077-.214-4.872-2.308-4.701-5.599.128-2.949 2.351-4.872 5.385-4.701 2.864.171 4.445 2.265 4.274 5.983h-6.71c.898 2.436 1.838 2.693 4.829 1.325l-.042-.043Zm-4.872-3.034h4.017c-.128-1.368-.812-2.009-1.923-2.051-1.197 0-1.924.641-2.094 2.051Zm36.243 1.752h-6.71c.897 2.436 1.838 2.65 4.744 1.325.427.299.94.684 1.368.983-.129 1.282-2.308 2.18-4.574 2.009-3.034-.257-4.744-2.479-4.53-5.77.214-2.821 2.394-4.659 5.385-4.488 2.906.171 4.445 2.223 4.274 6.026l.043-.085Zm-2.778-1.71c0-1.453-.812-2.136-2.009-2.094-1.154 0-1.923.684-1.88 2.094h3.889Zm37.396 1.795h-6.71c.769 2.351 1.795 2.607 4.744 1.24.384.342.854.684 1.239 1.026-.085 1.239-2.094 2.137-4.188 2.008-3.077-.171-4.958-2.35-4.787-5.556.171-2.949 2.18-4.872 5.171-4.744 3.035.086 4.659 2.094 4.573 6.069l-.042-.043Zm-2.607-1.795c-.471-1.41-1.026-2.265-2.308-2.136-1.111.128-1.924.726-1.838 2.136h4.146Zm54.064-30.087c1.453-2.351 2.821-4.659 4.231-6.881.214-.342.812-.513 1.24-.556 1.282-.085 2.521 0 4.274 0a234.082 234.082 0 0 1-2.778 4.659c-2.137 3.504-2.266 3.59-6.967 2.778Zm-27.524 35.986h-2.607v-10.001c1.112 0 2.265-.641 2.864.855.812-.385 1.667-.77 2.778-1.24v2.906c-2.607.428-3.12 2.266-2.992 4.531.043.897 0 1.795 0 2.906l-.043.043Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a0eayk\",layoutDependency:layoutDependency,layoutId:\"dMKJKiKGM\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-nkud9y\",\"data-framer-name\":\"Prodesign-Denmark\",fill:\"black\",intrinsicHeight:320,intrinsicWidth:320,layoutDependency:layoutDependency,layoutId:\"R2rWsnbOK\",svg:'<svg width=\"320\" height=\"320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"320\" height=\"320\" rx=\"20\" fill=\"#fff\"/><path d=\"M27.56 164.926a5.92 5.92 0 0 0 4.91 2.269c4.648 0 6.94-3.446 6.94-7.533s-2.323-7.618-6.998-7.618c-2.087 0-4.028.701-4.852 2.297h-.06v-1.962H25v16.873h2.5v-4.322l.06-.004Zm4.5-10.781c3.234 0 4.704 2.633 4.704 5.348 0 2.829-1.147 5.602-4.559 5.602-3.44 0-4.792-2.633-4.792-5.49 0-2.716 1.294-5.46 4.647-5.46Zm103.864 11.482V152.38h-2.354v2.066h-.029a5.024 5.024 0 0 0-4.53-2.408c-5.264 0-7.029 4.229-7.029 7.645 0 3.951 2.265 7.339 6.792 7.339a5.114 5.114 0 0 0 4.734-2.633h.058v.952a6.576 6.576 0 0 1-1.016 3.904h2.739a9.31 9.31 0 0 0 .63-3.624m-6.999-.701c-3.294 0-4.294-2.912-4.294-5.516 0-2.774 1.294-5.266 4.5-5.266 3.146 0 4.322 2.633 4.322 5.187 0 2.716-1.235 5.601-4.53 5.601M41.82 152.381h2.354v3.053h.058a5.547 5.547 0 0 1 5.588-3.389v2.52c-4.028 0-5.5 2.185-5.5 5.854v6.442h-2.5v-14.48Zm16.353-.338c4.823 0 7.382 3.335 7.382 7.59 0 4.229-2.558 7.562-7.382 7.562-4.825 0-7.382-3.334-7.382-7.562 0-4.257 2.559-7.59 7.382-7.59Zm0 13.053c2.618 0 4.734-1.961 4.734-5.463 0-3.528-2.117-5.488-4.734-5.488s-4.735 1.96-4.735 5.488c0 3.501 2.118 5.463 4.735 5.463Zm23.907 1.763h-2.5v-1.954h-.058c-.824 1.595-2.765 2.296-4.853 2.296-4.675 0-7-3.529-7-7.617 0-4.089 2.294-7.533 6.942-7.533a5.94 5.94 0 0 1 4.91 2.269h.059v-7.458h2.5v19.997Zm-7.06-1.763c3.355 0 4.648-2.745 4.648-5.463 0-2.856-1.359-5.488-4.794-5.488-3.41 0-4.558 2.773-4.558 5.6 0 2.717 1.47 5.351 4.705 5.351Zm23.587-2.831c-.677 3.194-3.087 4.93-6.5 4.93-4.85 0-7.145-3.193-7.292-7.618a7.115 7.115 0 0 1 7.146-7.532c5.381 0 7.029 4.789 6.882 8.289h-11.38a4.358 4.358 0 0 0 4.735 4.762 3.64 3.64 0 0 0 3.94-2.829l2.469-.002Zm-2.412-4.033a4.278 4.278 0 0 0-4.381-4.088 4.23 4.23 0 0 0-4.353 4.088h8.734Zm7.207 4.061c.089 2.13 2.029 2.801 4.087 2.801 1.56 0 3.676-.337 3.676-2.157 0-1.852-2.469-2.157-4.97-2.688-2.47-.532-4.97-1.316-4.97-4.089 0-2.911 3.03-4.117 5.68-4.117 3.353 0 6.029 1.009 6.235 4.537h-2.501c-.176-1.852-1.882-2.436-3.529-2.436-1.499 0-3.234.391-3.234 1.852 0 1.709 2.648 1.99 4.97 2.522 2.501.531 4.971 1.315 4.971 4.117 0 3.445-3.381 4.569-6.47 4.569-3.412 0-6.298-1.317-6.441-4.903l2.496-.008Zm15.817-12.518h-2.5v-2.913h2.5v2.913Zm-2.499 2.606h2.499v14.478h-2.5l.001-14.478Zm22.969-.002h2.353v2.297h.058a5.353 5.353 0 0 1 4.94-2.632c3.998 0 5.234 2.184 5.234 5.293v9.522h-2.499v-9.802a2.796 2.796 0 0 0-1.9-2.779 2.794 2.794 0 0 0-1.187-.133 4.165 4.165 0 0 0-4.276 2.744 4.17 4.17 0 0 0-.224 1.793v8.177h-2.5l.001-14.48Zm56.411 14.48h-2.495v-1.954h-.058c-.823 1.595-2.766 2.296-4.853 2.296-4.675 0-6.999-3.529-6.999-7.617 0-4.089 2.295-7.533 6.941-7.533a5.94 5.94 0 0 1 4.911 2.269h.058v-7.458h2.495v19.997Zm-7.057-1.763c3.351 0 4.646-2.745 4.646-5.463 0-2.856-1.358-5.488-4.793-5.488-3.411 0-4.558 2.773-4.558 5.6 0 2.717 1.469 5.351 4.705 5.351Zm23.324-2.829c-.678 3.193-3.087 4.929-6.499 4.929-4.853 0-7.146-3.192-7.293-7.617a7.116 7.116 0 0 1 7.144-7.533c5.382 0 7.028 4.79 6.882 8.289h-11.379a4.353 4.353 0 0 0 1.247 3.495 4.353 4.353 0 0 0 3.488 1.267 3.64 3.64 0 0 0 3.94-2.829l2.47-.001Zm-2.412-4.033a4.279 4.279 0 0 0-4.381-4.089 4.237 4.237 0 0 0-3.021 1.146 4.235 4.235 0 0 0-1.331 2.944l8.733-.001Zm4.942-5.853h2.352v2.297h.06a5.353 5.353 0 0 1 4.939-2.633c4 0 5.235 2.184 5.235 5.294v9.522h-2.501v-9.803a2.801 2.801 0 0 0-3.087-2.911 4.155 4.155 0 0 0-4.5 4.536v8.178h-2.5l.002-14.48Zm16.35 0h2.347v2.128h.059a5.687 5.687 0 0 1 4.911-2.469 4.045 4.045 0 0 1 4.175 2.469 5.698 5.698 0 0 1 4.764-2.469c3.029 0 5.063 1.205 5.063 4.198v10.62h-2.501v-9.494c0-1.791-.5-3.22-2.941-3.22a3.601 3.601 0 0 0-3.969 3.697v9.014h-2.501v-9.493c0-1.876-.617-3.221-2.851-3.221a4 4 0 0 0-4.059 3.698v9.014h-2.498l.001-14.472Zm38.259 14.423a3.507 3.507 0 0 1-1.795.392c-1.294 0-2.115-.672-2.115-2.24a6.916 6.916 0 0 1-5.354 2.24c-2.765 0-5.027-1.176-5.027-4.061 0-3.276 2.557-3.978 5.144-4.453 2.766-.504 5.119-.336 5.119-2.129 0-2.072-1.795-2.408-3.383-2.408-2.117 0-3.676.617-3.793 2.744h-2.499c.147-3.581 3.057-4.845 6.439-4.845 2.735 0 5.706.588 5.706 3.977v7.449c0 1.122 0 1.625.793 1.625.261-.002.52-.049.765-.14v1.849Zm-4.058-7.422c-.971.672-2.851.7-4.528.98-1.647.279-3.059.84-3.059 2.605 0 1.568 1.413 2.128 2.94 2.128 3.295 0 4.647-1.96 4.647-3.278v-2.435Zm7.616-7.001h2.347v3.053h.063a5.547 5.547 0 0 1 5.587-3.389v2.52c-4.028 0-5.498 2.185-5.498 5.854v6.442h-2.499v-14.48Zm10.616-5.519h2.498v11.847l6.942-6.329h3.351l-6.028 5.265 6.469 9.214h-3.175l-5.206-7.561-2.352 2.072v5.489h-2.498l-.001-19.997Zm-113.084 13.17a3.336 3.336 0 0 1-3.985 3.27 3.338 3.338 0 0 1-2.619-2.62 3.325 3.325 0 0 1 .19-1.926 3.326 3.326 0 0 1 1.228-1.496 3.333 3.333 0 0 1 5.186 2.772Zm0 10.634a3.336 3.336 0 0 1-3.985 3.27 3.328 3.328 0 0 1-2.429-4.546 3.328 3.328 0 0 1 3.08-2.058 3.333 3.333 0 0 1 3.334 3.334Zm0-21.332a3.336 3.336 0 0 1-5.692 2.358 3.336 3.336 0 0 1 2.358-5.692 3.33 3.33 0 0 1 2.357.977 3.33 3.33 0 0 1 .977 2.357Z\" fill=\"#732337\"/></svg>',withExternalLayout:true})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OHx7P.framer-1txsohd, .framer-OHx7P .framer-1txsohd { display: block; }\",\".framer-OHx7P.framer-8pxslm { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1600px; }\",\".framer-OHx7P .framer-1mjy7t4-container { flex: none; height: 401px; position: relative; width: 100%; }\",\".framer-OHx7P .framer-1g0e6g, .framer-OHx7P .framer-1uyek9s { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-OHx7P .framer-y90fhq { flex: none; height: 180px; position: relative; width: 180px; }\",\".framer-OHx7P .framer-64ulw8, .framer-OHx7P .framer-95m8e4, .framer-OHx7P .framer-1sgn30c { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-OHx7P .framer-1n30zqc, .framer-OHx7P .framer-ng9nna, .framer-OHx7P .framer-1rwrk76, .framer-OHx7P .framer-khiol7, .framer-OHx7P .framer-1yfd9iy, .framer-OHx7P .framer-1cj2k9h, .framer-OHx7P .framer-rjzylk, .framer-OHx7P .framer-1xj6k32, .framer-OHx7P .framer-aswc0o, .framer-OHx7P .framer-1fenu91, .framer-OHx7P .framer-d6trt8, .framer-OHx7P .framer-187qiis, .framer-OHx7P .framer-eap9qn, .framer-OHx7P .framer-nkud9y { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 180px); position: relative; width: 180px; }\",\".framer-OHx7P .framer-1jtrgnt, .framer-OHx7P .framer-14y6ppp, .framer-OHx7P .framer-17hen73, .framer-OHx7P .framer-qlmrpe, .framer-OHx7P .framer-1qn4cxk, .framer-OHx7P .framer-13arqj5, .framer-OHx7P .framer-e3j1by, .framer-OHx7P .framer-1jiizaz, .framer-OHx7P .framer-w9y625, .framer-OHx7P .framer-1a0eayk { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 180px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 180px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OHx7P.framer-8pxslm, .framer-OHx7P .framer-1g0e6g, .framer-OHx7P .framer-64ulw8, .framer-OHx7P .framer-1uyek9s, .framer-OHx7P .framer-1jtrgnt, .framer-OHx7P .framer-14y6ppp, .framer-OHx7P .framer-95m8e4, .framer-OHx7P .framer-1sgn30c, .framer-OHx7P .framer-17hen73, .framer-OHx7P .framer-qlmrpe, .framer-OHx7P .framer-1qn4cxk, .framer-OHx7P .framer-13arqj5, .framer-OHx7P .framer-e3j1by, .framer-OHx7P .framer-1jiizaz, .framer-OHx7P .framer-w9y625, .framer-OHx7P .framer-1a0eayk { gap: 0px; } .framer-OHx7P.framer-8pxslm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-OHx7P.framer-8pxslm > :first-child { margin-top: 0px; } .framer-OHx7P.framer-8pxslm > :last-child { margin-bottom: 0px; } .framer-OHx7P .framer-1g0e6g > *, .framer-OHx7P .framer-64ulw8 > *, .framer-OHx7P .framer-1uyek9s > *, .framer-OHx7P .framer-1jtrgnt > *, .framer-OHx7P .framer-14y6ppp > *, .framer-OHx7P .framer-95m8e4 > *, .framer-OHx7P .framer-1sgn30c > *, .framer-OHx7P .framer-17hen73 > *, .framer-OHx7P .framer-qlmrpe > *, .framer-OHx7P .framer-1qn4cxk > *, .framer-OHx7P .framer-13arqj5 > *, .framer-OHx7P .framer-e3j1by > *, .framer-OHx7P .framer-1jiizaz > *, .framer-OHx7P .framer-w9y625 > *, .framer-OHx7P .framer-1a0eayk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-OHx7P .framer-1g0e6g > :first-child, .framer-OHx7P .framer-64ulw8 > :first-child, .framer-OHx7P .framer-1uyek9s > :first-child, .framer-OHx7P .framer-1jtrgnt > :first-child, .framer-OHx7P .framer-14y6ppp > :first-child, .framer-OHx7P .framer-95m8e4 > :first-child, .framer-OHx7P .framer-1sgn30c > :first-child, .framer-OHx7P .framer-17hen73 > :first-child, .framer-OHx7P .framer-qlmrpe > :first-child, .framer-OHx7P .framer-1qn4cxk > :first-child, .framer-OHx7P .framer-13arqj5 > :first-child, .framer-OHx7P .framer-e3j1by > :first-child, .framer-OHx7P .framer-1jiizaz > :first-child, .framer-OHx7P .framer-w9y625 > :first-child, .framer-OHx7P .framer-1a0eayk > :first-child { margin-left: 0px; } .framer-OHx7P .framer-1g0e6g > :last-child, .framer-OHx7P .framer-64ulw8 > :last-child, .framer-OHx7P .framer-1uyek9s > :last-child, .framer-OHx7P .framer-1jtrgnt > :last-child, .framer-OHx7P .framer-14y6ppp > :last-child, .framer-OHx7P .framer-95m8e4 > :last-child, .framer-OHx7P .framer-1sgn30c > :last-child, .framer-OHx7P .framer-17hen73 > :last-child, .framer-OHx7P .framer-qlmrpe > :last-child, .framer-OHx7P .framer-1qn4cxk > :last-child, .framer-OHx7P .framer-13arqj5 > :last-child, .framer-OHx7P .framer-e3j1by > :last-child, .framer-OHx7P .framer-1jiizaz > :last-child, .framer-OHx7P .framer-w9y625 > :last-child, .framer-OHx7P .framer-1a0eayk > :last-child { margin-right: 0px; } }\",\".framer-OHx7P.framer-v-1eyscij.framer-8pxslm { width: 810px; }\",\".framer-OHx7P.framer-v-13iee0s.framer-8pxslm { width: 390px; }\",\".framer-OHx7P.framer-v-13iee0s .framer-1mjy7t4-container { height: 330px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 401\n * @framerIntrinsicWidth 1600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"uLuOEr4LV\":{\"layout\":[\"fixed\",\"auto\"]},\"PGrS22CzK\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWcLdWvncu=withCSS(Component,css,\"framer-OHx7P\");export default FramerWcLdWvncu;FramerWcLdWvncu.displayName=\"Logo ticker Top\";FramerWcLdWvncu.defaultProps={height:401,width:1600};addPropertyControls(FramerWcLdWvncu,{variant:{options:[\"onKxbJUtk\",\"uLuOEr4LV\",\"PGrS22CzK\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerWcLdWvncu,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWcLdWvncu\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1600\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uLuOEr4LV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PGrS22CzK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"401\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WcLdWvncu.map"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "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", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "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", "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", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "SVG", "css", "FramerRQH2l0eyM", "withCSS", "RQH2l0eyM_default", "addPropertyControls", "ControlType", "addFonts", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1hrxrj3", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "SVG", "css", "FramerWcLdWvncu", "withCSS", "WcLdWvncu_default", "addPropertyControls", "ControlType", "addFonts"]
}
