{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js", "ssg:https://framerusercontent.com/modules/leumanUGf0CJK4yqhG66/yCJQLZuZSR1nCrVlz5qA/HduR1Grfo.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}from\"framer-motion\";import{resize}from\"@motionone/dom\";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;const numChildren=Children.count(slots);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 = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;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(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3,ref4,ref5;const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,width:widthType?(ref3=child.props)===null||ref3===void 0?void 0:ref3.width:\"100%\",height:heightType?(ref4=child.props)===null||ref4===void 0?void 0:ref4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref5=child.props)===null||ref5===void 0?void 0:ref5.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]);}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,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(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\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (91d32d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,Container,cx,GeneratedComponentContext,getFonts,Image,PropertyOverrides,removeHiddenBreakpointLayers,resolveLink,RichText,SVG,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import Buttons from\"https://framerusercontent.com/modules/9UXhcZLz7Uef3owD2qid/W87TUi4SiTfPZ3ngxqaa/OddtPn3_1.js\";import TabBar from\"https://framerusercontent.com/modules/h4CID6NGTqgvY2J5TndI/ricRXEn9hfYDku2Wd7wZ/oKo8k19u1.js\";import CompactFooter from\"https://framerusercontent.com/modules/4OHPcpWIMQFVrtMlquZW/1eH56R7Q6QEa9astqIN1/xK8GRZxjS.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/7gXHRObOa1n7hCgJL6nF/dj9iH2x5OO9hwyEhvaIB/btd4MUko7.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/bYZzT8YlLITBHyTSevnz/EgH6RkzpaCj0FJ9Ajy4k/ErKahKBje.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/IDE4EUL9Una2ZUR5NKhG/XuT5BBdlzgFMkaYS2atB/HU9VdGnUv.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/rXx8umZeuuLh0m1QhX94/hd5iHxpmxTdO7VYMu6n3/o49VDWR9u.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/103MxAbA43H7GTJX4Rmm/em7CCoUiDXyaCaXTguno/qjAfxOHBH.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/j4G3krBTXhwnP7I6eKv3/xghdTWe5O34rL6XQGnJP/wqLsvZJ6S.js\";import metadataProvider from\"https://framerusercontent.com/modules/3kvtFYMZfW1inqD8RVB9/paGFwKsLW4cElAzFzPNp/HduR1Grfo.js\";const ButtonsFonts=getFonts(Buttons);const TickerFonts=getFonts(Ticker);const TabBarFonts=getFonts(TabBar);const CompactFooterFonts=getFonts(CompactFooter);const cycleOrder=[\"HIEq7TOhX\",\"xc3sqoWPP\",\"dCBK20uHj\",\"MdgBmO9sm\"];const breakpoints={dCBK20uHj:\"(min-width: 481px) and (max-width: 768px)\",HIEq7TOhX:\"(min-width: 1025px)\",MdgBmO9sm:\"(max-width: 480px)\",xc3sqoWPP:\"(min-width: 769px) and (max-width: 1024px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-KsZLD\";const variantClassNames={dCBK20uHj:\"framer-v-1jsqiqk\",HIEq7TOhX:\"framer-v-13mbul4\",MdgBmO9sm:\"framer-v-7sryg0\",xc3sqoWPP:\"framer-v-1cungbq\"};if(isBrowser()){removeHiddenBreakpointLayers(\"HIEq7TOhX\",breakpoints,variantClassNames);}const transitions={default:{duration:0}};const metadata=metadataProvider();const humanReadableVariantMap={\"Tablet large\":\"xc3sqoWPP\",Desktop:\"HIEq7TOhX\",Phone:\"MdgBmO9sm\",Tablet:\"dCBK20uHj\"};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:\"HIEq7TOhX\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useLayoutEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-KsZLD`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-KsZLD`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const transition=transitions.default;const ref1=React.useRef(null);const router=useRouter();const id=useRouteElementId(\"sZTnnYQpB\");const ref2=React.useRef(null);const isDisplayed=()=>{if([\"dCBK20uHj\",\"MdgBmO9sm\"].includes(baseVariant))return!isBrowser();return true;};const isDisplayed1=()=>{if([\"dCBK20uHj\",\"MdgBmO9sm\"].includes(baseVariant))return true;return!isBrowser();};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"HIEq7TOhX\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-13mbul4\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a27xdz\",\"data-framer-name\":\"Hero\",name:\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xs5a1k\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-fd9ci5\",\"data-styles-preset\":\"btd4MUko7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-938fb95d-9d40-4bf6-b38f-de005e94e5b8, rgb(23, 19, 19))\"},children:[\"Hello, I\u2019m \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-673285ad-2827-400c-8857-478e0b102a22, rgb(255, 194, 9))\"},children:\"Boni\"})]})}),className:\"framer-175k78a\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCBK20uHj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4bz3yn\",\"data-styles-preset\":\"HU9VdGnUv\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\"},children:\"Self-learning product thinker who helps companies in digital transformation.\"})})},MdgBmO9sm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4bz3yn\",\"data-styles-preset\":\"HU9VdGnUv\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\"},children:\"Self-learning product thinker who helps companies in digital transformation.\"})})},xc3sqoWPP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4bz3yn\",\"data-styles-preset\":\"HU9VdGnUv\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\"},children:\"Self-learning product thinker who helps companies in digital transformation.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4bz3yn\",\"data-styles-preset\":\"HU9VdGnUv\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\"},children:\"Self-learning product thinker who helps companies\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4bz3yn\",\"data-styles-preset\":\"HU9VdGnUv\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\"},children:\"in digital transformation.\"})]}),className:\"framer-1m9k6wm\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Container,{className:\"framer-dp3bou-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MdgBmO9sm:{variant:\"JgLvNylQs\"}},children:/*#__PURE__*/_jsx(Buttons,{e45WulAcM:false,height:\"100%\",id:\"uYv_ofWVM\",layoutId:\"uYv_ofWVM\",Lg0zkU9Mw:\"Get started\",m7sfcjEkW:'var(--token-6788be1f-70b5-4de2-8237-add28e742eda, rgb(33, 33, 33)) /* {\"name\":\"Container on dark\"} */',rtYbHO8zc:true,V0PWIe9v5:resolveLink({hash:\":sZTnnYQpB\",webPageId:\"HduR1Grfo\"},router),variant:\"l7rAQr2jx\",width:\"100%\",zeenSrL96:\"ArrowDown\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s0wp20\",\"data-framer-name\":\"Services 4.0\",id:id,name:\"Services 4.0\",ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5p4n8l\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xodoyj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ho0ohp\",\"data-styles-preset\":\"qjAfxOHBH\",style:{\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\"},children:\"Services\"})}),className:\"framer-kbw4pv\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-j8bek0\",\"data-styles-preset\":\"wqLsvZJ6S\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-938fb95d-9d40-4bf6-b38f-de005e94e5b8, rgb(23, 19, 19))\"},children:[\"What I \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-673285ad-2827-400c-8857-478e0b102a22, rgb(255, 194, 9))\"},children:\"do\"})]})}),className:\"framer-1jhl6lw\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ops675\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MdgBmO9sm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3200,intrinsicWidth:4800,pixelHeight:3200,pixelWidth:4800,src:\"https://framerusercontent.com/images/Mhu1hMvbhhpZ8yRafDdImLXXA.png?scale-down-to=4096\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3200,intrinsicWidth:4800,loading:\"lazy\",pixelHeight:3200,pixelWidth:4800,src:\"https://framerusercontent.com/images/Mhu1hMvbhhpZ8yRafDdImLXXA.png?scale-down-to=4096\"},className:\"framer-xtnwoc\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yrggj1\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3200,intrinsicWidth:4800,loading:\"lazy\",pixelHeight:3200,pixelWidth:4800,src:\"https://framerusercontent.com/images/CgSnRss9rie54OJMLnXDCAmmEs.png?scale-down-to=4096\"},className:\"framer-1hcuc8g\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-nfpqby\",\"data-styles-preset\":\"o49VDWR9u\",style:{\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\"},children:\"Areas of focus\"})}),className:\"framer-a5yied\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-nfpqby\",\"data-styles-preset\":\"o49VDWR9u\",style:{\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\"},children:\"Utilising\"})}),className:\"framer-r1uwha\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4bz3yn\",\"data-styles-preset\":\"HU9VdGnUv\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\"},children:\"I love focusing on team operations, either working on delivery side to get my hands dirty.\"})}),className:\"framer-178c3uu\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4bz3yn\",\"data-styles-preset\":\"HU9VdGnUv\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\"},children:\"Adaptability first, no framework has to be carved in stone, but here are some of my favorites.\"})}),className:\"framer-13tu8y7\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14cirqp\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wvlpp\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MdgBmO9sm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyIFN0ZCBCb2xk\",\"--framer-font-family\":'\"Circular Std Bold\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\",\"--framer-text-transform\":\"uppercase\"},children:\"Product Ops\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyIFN0ZCBCb2xk\",\"--framer-font-family\":'\"Circular Std Bold\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\",\"--framer-text-transform\":\"uppercase\"},children:\"Product Ops\"})}),className:\"framer-2yx2pw\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Circular Std Bold\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5mp4x9\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MdgBmO9sm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyIFN0ZCBCb2xk\",\"--framer-font-family\":'\"Circular Std Bold\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\",\"--framer-text-transform\":\"uppercase\"},children:\"Product Design\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyIFN0ZCBCb2xk\",\"--framer-font-family\":'\"Circular Std Bold\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\",\"--framer-text-transform\":\"uppercase\"},children:\"Product Design\"})}),className:\"framer-ni6mzu\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Circular Std Bold\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xumn1\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MdgBmO9sm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyIFN0ZCBCb2xk\",\"--framer-font-family\":'\"Circular Std Bold\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\",\"--framer-text-transform\":\"uppercase\"},children:\"Service Design\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyIFN0ZCBCb2xk\",\"--framer-font-family\":'\"Circular Std Bold\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\",\"--framer-text-transform\":\"uppercase\"},children:\"Service Design\"})}),className:\"framer-1cykqha\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Circular Std Bold\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jwixmc\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MdgBmO9sm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyIFN0ZCBCb2xk\",\"--framer-font-family\":'\"Circular Std Bold\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\",\"--framer-text-transform\":\"uppercase\"},children:\"Design Systems\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyIFN0ZCBCb2xk\",\"--framer-font-family\":'\"Circular Std Bold\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\",\"--framer-text-transform\":\"uppercase\"},children:\"Design Systems\"})}),className:\"framer-1ra31o1\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Circular Std Bold\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kke8fu\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ft7qo5\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MdgBmO9sm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyIFN0ZCBCb2xk\",\"--framer-font-family\":'\"Circular Std Bold\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\",\"--framer-text-transform\":\"uppercase\"},children:\"Design Thinking\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyIFN0ZCBCb2xk\",\"--framer-font-family\":'\"Circular Std Bold\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\",\"--framer-text-transform\":\"uppercase\"},children:\"Design Thinking\"})}),className:\"framer-xgsudh\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Circular Std Bold\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-flhprc\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MdgBmO9sm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyIFN0ZCBCb2xk\",\"--framer-font-family\":'\"Circular Std Bold\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\",\"--framer-text-transform\":\"uppercase\"},children:\"Lean UX\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyIFN0ZCBCb2xk\",\"--framer-font-family\":'\"Circular Std Bold\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\",\"--framer-text-transform\":\"uppercase\"},children:\"Lean UX\"})}),className:\"framer-kf6y04\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Circular Std Bold\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y70ck9\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MdgBmO9sm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyIFN0ZCBCb2xk\",\"--framer-font-family\":'\"Circular Std Bold\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\",\"--framer-text-transform\":\"uppercase\"},children:\"Agile UX\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyIFN0ZCBCb2xk\",\"--framer-font-family\":'\"Circular Std Bold\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\",\"--framer-text-transform\":\"uppercase\"},children:\"Agile UX\"})}),className:\"framer-egn0md\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Circular Std Bold\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cj4wz\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MdgBmO9sm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyIFN0ZCBCb2xk\",\"--framer-font-family\":'\"Circular Std Bold\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\",\"--framer-text-transform\":\"uppercase\"},children:\"Honeycomb\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyIFN0ZCBCb2xk\",\"--framer-font-family\":'\"Circular Std Bold\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\",\"--framer-text-transform\":\"uppercase\"},children:\"Honeycomb\"})}),className:\"framer-1p7otop\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Circular Std Bold\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ajudgl\",\"data-framer-name\":\"Clients\",name:\"Clients\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-name4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i1qnf\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nse18a\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ho0ohp\",\"data-styles-preset\":\"qjAfxOHBH\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-537ef363-8b25-4d49-958a-87b07e559c24, rgb(179, 179, 179))\"},children:\"Clients\"})}),className:\"framer-1djgnlr\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1y9utbj\",\"data-styles-preset\":\"ErKahKBje\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-673285ad-2827-400c-8857-478e0b102a22, rgb(255, 194, 9))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-095f192e-1863-4fef-89de-ee498bdd6619, rgb(246, 246, 246))\"},children:\"Working\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\"},children:\" \"}),\"together\"]})}),className:\"framer-p0axv4\",verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(Container,{className:\"framer-c69atb-container hidden-1jsqiqk hidden-7sryg0\",\"data-framer-name\":\"Desktop/Large tablet\",name:\"Desktop/Large tablet\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:64,height:\"100%\",hoverFactor:1,id:\"prOApTmnk\",layoutId:\"prOApTmnk\",name:\"Desktop/Large tablet\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-f4ipmt\",\"data-framer-name\":\"Accenture\",name:\"Accenture\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1h27sjo\",\"data-framer-name\":\"Accenture\",layout:\"position\",name:\"Accenture\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 152 40\"><path d=\"M 88.454 11.229 L 97.197 7.982 L 88.454 4.548 L 88.454 0 L 103.428 6.032 L 103.428 9.745 L 88.454 15.777 Z M 5.767 40 C 2.604 40 0 38.422 0 34.896 L 0 34.71 C 0 30.441 3.72 28.956 8.278 28.956 L 10.417 28.956 L 10.417 28.12 C 10.417 26.357 9.673 25.336 7.813 25.336 C 6.138 25.336 5.302 26.264 5.209 27.563 L 0.558 27.563 C 0.93 23.666 3.999 21.809 8.092 21.809 C 12.277 21.809 15.347 23.573 15.347 27.934 L 15.347 39.628 L 10.603 39.628 L 10.603 37.587 C 9.673 38.886 8.092 40 5.767 40 Z M 10.417 33.782 L 10.417 32.111 L 8.464 32.111 C 6.045 32.111 4.837 32.761 4.837 34.339 L 4.837 34.524 C 4.837 35.731 5.581 36.566 7.255 36.566 C 8.929 36.566 10.417 35.638 10.417 33.782 Z M 26.415 40 C 21.578 40 18.044 37.03 18.044 31.091 L 18.044 30.812 C 18.044 24.872 21.764 21.717 26.415 21.717 C 30.414 21.717 33.67 23.759 34.042 28.306 L 29.392 28.306 C 29.113 26.636 28.182 25.522 26.508 25.522 C 24.462 25.522 22.974 27.193 22.974 30.627 L 22.974 31.183 C 22.974 34.71 24.276 36.288 26.508 36.288 C 28.182 36.288 29.392 35.081 29.671 33.132 L 34.135 33.132 C 33.856 37.123 31.159 40 26.415 40 Z M 44.646 40 C 39.809 40 36.275 37.03 36.275 31.091 L 36.275 30.812 C 36.275 24.872 39.995 21.717 44.646 21.717 C 48.645 21.717 51.9 23.759 52.272 28.306 L 47.622 28.306 C 47.343 26.636 46.413 25.522 44.739 25.522 C 42.693 25.522 41.204 27.193 41.204 30.627 L 41.204 31.183 C 41.204 34.71 42.506 36.288 44.739 36.288 C 46.413 36.288 47.622 35.081 47.901 33.132 L 52.365 33.132 C 52.086 37.123 49.389 40 44.646 40 Z M 62.969 40 C 57.946 40 54.505 37.03 54.505 31.183 L 54.505 30.812 C 54.505 24.965 58.132 21.717 62.876 21.717 C 67.247 21.717 70.875 24.13 70.875 29.977 L 70.875 32.112 L 59.527 32.112 C 59.713 35.267 61.108 36.473 63.155 36.473 C 65.015 36.473 66.038 35.452 66.41 34.246 L 70.968 34.246 C 70.316 37.494 67.619 40 62.969 40 Z M 59.527 28.863 L 66.131 28.863 C 66.038 26.264 64.829 25.151 62.876 25.151 C 61.294 25.243 59.899 26.079 59.527 28.863 Z M 73.851 22.181 L 78.781 22.181 L 78.781 24.779 C 79.618 23.109 81.385 21.809 84.082 21.809 C 87.245 21.809 89.384 23.759 89.384 27.935 L 89.384 39.629 L 84.454 39.629 L 84.454 28.678 C 84.454 26.636 83.617 25.708 81.85 25.708 C 80.176 25.708 78.781 26.728 78.781 28.956 L 78.781 39.628 L 73.851 39.628 L 73.851 22.182 Z M 98.406 16.891 L 98.406 22.181 L 101.754 22.181 L 101.754 25.801 L 98.406 25.801 L 98.406 34.06 C 98.406 35.36 98.964 36.009 100.173 36.009 C 100.917 36.009 101.382 35.917 101.847 35.731 L 101.847 39.536 C 101.289 39.722 100.267 39.907 99.057 39.907 C 95.244 39.907 93.477 38.144 93.477 34.617 L 93.477 25.8 L 91.43 25.8 L 91.43 22.181 L 93.477 22.181 L 93.477 18.932 L 98.406 16.891 Z M 120.171 39.629 L 115.241 39.629 L 115.241 37.03 C 114.404 38.701 112.73 40 110.125 40 C 106.963 40 104.638 38.051 104.638 33.968 L 104.638 22.181 L 109.568 22.181 L 109.568 33.317 C 109.568 35.359 110.404 36.287 112.079 36.287 C 113.753 36.287 115.148 35.173 115.148 33.039 L 115.148 22.274 L 120.078 22.274 L 120.078 39.629 Z M 123.798 22.181 L 128.728 22.181 L 128.728 25.429 C 129.751 23.109 131.425 21.996 134.029 21.996 L 134.029 26.821 C 130.681 26.821 128.728 27.842 128.728 30.719 L 128.728 39.722 L 123.798 39.722 Z M 143.982 40 C 138.959 40 135.518 37.03 135.518 31.183 L 135.518 30.812 C 135.518 24.965 139.145 21.717 143.889 21.717 C 148.26 21.717 151.888 24.13 151.888 29.977 L 151.888 32.112 L 140.54 32.112 C 140.726 35.267 142.122 36.473 144.168 36.473 C 146.028 36.473 147.051 35.452 147.423 34.246 L 151.981 34.246 C 151.237 37.494 148.539 40 143.982 40 Z M 140.447 28.863 L 147.051 28.863 C 146.958 26.264 145.749 25.151 143.795 25.151 C 142.308 25.243 140.912 26.079 140.447 28.863 Z\" fill=\"var(--token-537ef363-8b25-4d49-958a-87b07e559c24, rgb(179, 179, 179)) /* {&quot;name&quot;:&quot;Light gray on Dark&quot;} */\"></path></svg>',svgContentId:394552813,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rojeld\",\"data-framer-name\":\"L'Oreal\",name:\"L'Oreal\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1v5p6yf\",\"data-framer-name\":\"L_Oreal\",layout:\"position\",name:\"L_Oreal\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 221 40\"><g id=\"ss3944418113_1\"><path d=\"M 0 0 L 220.963 0 L 220.963 40 L 0 40 Z\" fill=\"transparent\"></path><path d=\"M 120.212 37.308 L 148.726 37.308 L 148.726 33.824 L 125.1 33.824 L 125.1 22.674 L 142.846 22.674 L 142.846 19.148 L 125.1 19.148 L 125.1 8.874 L 148.726 8.874 L 148.726 5.402 L 120.212 5.402 Z M 135.03 0.245 L 131.17 4.584 L 143.289 0.245 Z M 196.594 33.824 L 196.594 5.403 L 192.137 5.403 L 192.137 37.308 L 220.963 37.308 L 220.963 33.824 Z M 167.202 5.403 L 150.987 37.308 L 156.468 37.308 L 160.616 29.051 L 180.064 29.051 L 184.247 37.308 L 189.672 37.308 L 173.444 5.403 Z M 162.669 25.051 L 170.309 9.811 L 178.04 25.051 Z M 104.739 23.967 C 112.045 22.017 112.754 16.578 112.718 14.633 C 112.281 8.933 108.443 5.403 101.546 5.403 L 81.447 5.403 L 81.447 37.308 L 86.028 37.308 L 86.028 23.924 L 99.114 23.924 L 108.74 37.308 L 114.515 37.308 C 114.515 37.308 107.588 28.301 104.739 23.967 Z M 100.92 20.154 L 86.028 20.154 L 86.028 9.179 L 101.44 9.179 C 104.988 9.179 106.983 10.836 107.703 12.942 C 108.178 14.384 107.873 16.279 107.086 17.568 C 105.798 19.701 103.351 20.154 100.92 20.154 Z M 53.912 0 C 40.978 0 32.162 9.124 32.162 20.167 C 32.162 31.793 41.9 40 53.912 40 C 65.915 40 75.65 31.91 75.65 20.167 C 75.65 9.124 66.725 0 53.912 0 Z M 53.756 36.039 C 44.808 36.039 37.435 28.845 37.435 20.178 C 37.435 11.523 44.46 3.984 54.103 3.984 C 63.508 3.984 70.421 11.523 70.421 20.178 C 70.421 28.845 62.701 36.039 53.757 36.039 Z M 20.622 16.69 L 23.929 16.69 L 29.929 5.403 L 25.1 5.403 L 20.623 16.69 Z M 4.459 33.824 L 4.459 5.403 L 0 5.403 L 0 37.308 L 28.824 37.308 L 28.824 33.824 Z\" fill=\"var(--token-537ef363-8b25-4d49-958a-87b07e559c24, rgb(179, 179, 179)) /* {&quot;name&quot;:&quot;Light gray on Dark&quot;} */\"></path></g></svg>',svgContentId:3944418113,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-29d8qa\",\"data-framer-name\":\"Vodafone\",name:\"Vodafone\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mde15n\",\"data-framer-name\":\"Vdafone\",layout:\"position\",name:\"Vdafone\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 163 40\"><g id=\"ss3751962125_1\"><path d=\"M 0 0 L 163 0 L 163 40 L 0 40 Z\" fill=\"transparent\"></path><path d=\"M 47.2 13.691 L 53.323 28.282 L 56.598 28.282 L 62.54 13.691 L 58.721 13.691 L 55.019 23.38 L 51.2 13.691 Z M 72.983 19.181 C 73.126 19.728 73.196 20.305 73.196 20.911 C 73.196 21.539 73.126 22.124 72.982 22.661 C 72.843 23.197 72.63 23.667 72.346 24.072 C 72.077 24.463 71.725 24.79 71.316 25.031 C 70.911 25.262 70.437 25.379 69.892 25.379 C 69.347 25.379 68.866 25.262 68.453 25.031 C 68.038 24.796 67.684 24.468 67.419 24.071 C 67.147 23.667 66.941 23.197 66.801 22.66 C 66.658 22.124 66.587 21.539 66.587 20.911 C 66.587 20.305 66.658 19.728 66.801 19.181 C 66.941 18.633 67.154 18.163 67.437 17.769 C 67.707 17.384 68.059 17.063 68.468 16.829 C 68.869 16.594 69.347 16.476 69.892 16.476 C 70.437 16.476 70.911 16.594 71.316 16.829 C 71.724 17.063 72.076 17.384 72.346 17.769 C 72.63 18.163 72.843 18.633 72.983 19.181 Z M 76.456 23.731 C 76.747 22.812 76.894 21.879 76.894 20.927 C 76.894 19.979 76.747 19.053 76.456 18.142 C 76.173 17.254 75.725 16.428 75.135 15.706 C 74.55 14.989 73.822 14.416 72.953 13.983 C 72.085 13.549 71.062 13.328 69.892 13.328 C 68.718 13.328 67.692 13.549 66.816 13.983 C 65.937 14.416 65.208 14.989 64.63 15.706 C 64.051 16.432 63.61 17.258 63.327 18.142 C 63.038 19.042 62.89 19.982 62.89 20.927 C 62.89 21.879 63.037 22.812 63.327 23.731 C 63.609 24.625 64.051 25.46 64.63 26.197 C 65.208 26.924 65.937 27.508 66.816 27.953 C 67.692 28.397 68.718 28.618 69.892 28.618 C 71.062 28.618 72.088 28.397 72.968 27.953 C 73.847 27.508 74.576 26.924 75.15 26.197 C 75.732 25.461 76.175 24.625 76.456 23.731 Z M 86.162 16.476 C 86.788 16.476 87.461 16.619 88.186 16.902 L 88.186 24.134 C 87.984 24.476 87.642 24.777 87.159 25.031 C 86.678 25.281 86.206 25.408 85.743 25.408 C 85.18 25.408 84.69 25.281 84.279 25.031 C 83.866 24.777 83.517 24.434 83.256 24.027 C 82.983 23.612 82.781 23.123 82.652 22.568 C 82.518 21.996 82.451 21.41 82.454 20.823 C 82.453 20.283 82.53 19.746 82.682 19.228 C 82.824 18.726 83.053 18.252 83.359 17.828 C 83.659 17.415 84.052 17.078 84.507 16.844 C 84.966 16.601 85.522 16.476 86.162 16.476 Z M 88.337 27.165 L 88.488 28.282 L 91.943 28.282 L 91.943 8.092 L 88.186 8.092 L 88.186 13.75 C 87.3 13.471 86.472 13.328 85.706 13.328 C 84.54 13.328 83.521 13.548 82.656 13.981 C 81.788 14.414 81.07 14.988 80.493 15.704 C 79.915 16.429 79.479 17.255 79.209 18.141 C 78.93 19.043 78.788 19.982 78.789 20.926 C 78.789 21.937 78.925 22.907 79.194 23.832 C 79.466 24.762 79.867 25.582 80.39 26.287 C 80.903 26.986 81.564 27.564 82.325 27.981 C 83.087 28.403 83.977 28.617 84.981 28.617 C 85.747 28.617 86.413 28.469 86.976 28.176 C 87.542 27.886 87.995 27.548 88.337 27.165 Z M 101.274 21.547 C 101.69 21.5 102.107 21.464 102.525 21.441 L 102.525 24.409 C 102.201 24.711 101.808 24.964 101.351 25.167 C 100.904 25.366 100.42 25.469 99.931 25.468 C 99.28 25.468 98.779 25.321 98.423 25.031 C 98.065 24.736 97.889 24.347 97.889 23.866 C 97.889 23.399 98.047 22.973 98.36 22.576 C 98.676 22.183 99.239 21.907 100.056 21.746 C 100.459 21.662 100.865 21.596 101.274 21.547 Z M 102.679 27.18 L 102.827 28.271 L 106.256 28.271 L 106.256 18.894 C 106.256 17.906 106.12 17.064 105.848 16.37 C 105.572 15.672 105.193 15.099 104.711 14.647 C 104.225 14.191 103.647 13.861 102.982 13.647 C 102.315 13.434 101.576 13.328 100.766 13.328 C 100.082 13.328 99.438 13.394 98.842 13.526 C 98.295 13.644 97.758 13.806 97.238 14.011 C 96.759 14.202 96.358 14.401 96.023 14.603 C 95.689 14.805 95.442 14.974 95.28 15.117 L 96.524 17.748 C 96.703 17.601 96.891 17.465 97.087 17.341 C 97.322 17.189 97.591 17.039 97.896 16.885 C 98.227 16.725 98.573 16.599 98.93 16.51 C 99.329 16.406 99.739 16.354 100.152 16.356 C 100.88 16.356 101.454 16.528 101.87 16.87 C 102.289 17.216 102.495 17.788 102.495 18.597 L 102.495 18.81 C 102.109 18.851 101.627 18.894 101.049 18.946 C 100.513 18.991 99.98 19.066 99.453 19.17 C 98.765 19.291 98.102 19.476 97.477 19.718 C 96.875 19.944 96.311 20.26 95.803 20.654 C 95.319 21.033 94.925 21.514 94.647 22.062 C 94.36 22.617 94.221 23.26 94.221 23.984 C 94.221 24.712 94.356 25.362 94.632 25.938 C 94.888 26.491 95.255 26.985 95.71 27.39 C 96.161 27.788 96.683 28.095 97.249 28.297 C 97.828 28.511 98.441 28.619 99.059 28.617 C 99.809 28.617 100.498 28.489 101.127 28.235 C 101.756 27.982 102.271 27.629 102.679 27.181 Z M 117.158 11.163 C 117.511 11.273 117.747 11.362 117.868 11.42 L 118.291 8.304 C 118.192 8.242 117.842 8.128 117.247 7.955 C 116.651 7.783 115.9 7.698 114.991 7.698 C 114.303 7.698 113.667 7.793 113.077 7.984 C 112.505 8.168 111.982 8.48 111.547 8.896 C 111.113 9.307 110.774 9.844 110.531 10.498 C 110.289 11.156 110.167 11.957 110.167 12.904 L 110.167 13.691 L 108.228 13.691 L 108.228 16.719 L 110.167 16.719 L 110.167 28.282 L 113.928 28.282 L 113.928 16.719 L 117.051 16.719 L 117.051 13.691 L 113.898 13.691 L 113.898 12.997 C 113.898 12.291 114.075 11.78 114.428 11.468 C 114.781 11.156 115.223 10.998 115.745 10.998 C 116.334 10.998 116.801 11.053 117.158 11.163 Z M 127.902 19.181 C 128.042 19.728 128.116 20.305 128.116 20.911 C 128.116 21.539 128.042 22.124 127.902 22.661 C 127.763 23.197 127.549 23.667 127.266 24.072 C 126.997 24.463 126.645 24.79 126.235 25.031 C 125.83 25.262 125.356 25.379 124.811 25.379 C 124.267 25.379 123.785 25.262 123.369 25.031 C 122.956 24.795 122.603 24.467 122.339 24.071 C 122.066 23.667 121.861 23.197 121.717 22.66 C 121.577 22.124 121.507 21.539 121.507 20.911 C 121.507 20.305 121.577 19.728 121.717 19.181 C 121.861 18.633 122.074 18.163 122.353 17.769 C 122.625 17.384 122.978 17.063 123.388 16.829 C 123.789 16.594 124.267 16.476 124.811 16.476 C 125.356 16.476 125.83 16.594 126.235 16.829 C 126.644 17.063 126.995 17.384 127.266 17.769 C 127.549 18.163 127.763 18.633 127.902 19.181 Z M 131.372 23.731 C 131.666 22.812 131.814 21.879 131.814 20.927 C 131.814 19.979 131.666 19.053 131.372 18.142 C 131.092 17.254 130.645 16.427 130.055 15.706 C 129.47 14.989 128.741 14.416 127.873 13.983 C 127.004 13.549 125.981 13.328 124.811 13.328 C 123.637 13.328 122.611 13.549 121.735 13.983 C 120.856 14.416 120.128 14.989 119.55 15.706 C 118.971 16.432 118.529 17.258 118.247 18.142 C 117.956 19.042 117.808 19.982 117.81 20.927 C 117.808 21.879 117.956 22.825 118.247 23.731 C 118.529 24.625 118.97 25.46 119.55 26.197 C 120.128 26.924 120.856 27.508 121.735 27.953 C 122.611 28.397 123.637 28.618 124.811 28.618 C 125.981 28.618 127.008 28.397 127.888 27.953 C 128.767 27.508 129.495 26.924 130.07 26.197 C 130.652 25.462 131.093 24.626 131.372 23.731 Z M 143.481 19.959 L 143.481 28.282 L 147.241 28.282 L 147.241 19.655 C 147.241 18.527 147.113 17.557 146.862 16.749 C 146.609 15.944 146.252 15.286 145.784 14.783 C 145.327 14.284 144.755 13.905 144.118 13.677 C 143.47 13.446 142.764 13.332 141.995 13.332 C 141.248 13.332 140.504 13.46 139.768 13.724 C 139.046 13.978 138.373 14.356 137.782 14.842 L 137.601 13.692 L 134.176 13.692 L 134.176 28.283 L 137.932 28.283 L 137.932 17.931 C 138.321 17.548 138.755 17.212 139.224 16.932 C 139.709 16.63 140.271 16.472 140.843 16.476 C 141.674 16.476 142.318 16.782 142.786 17.384 C 143.249 17.99 143.481 18.85 143.481 19.959 Z M 158.615 17.917 C 158.788 18.288 158.894 18.729 158.934 19.232 L 153.357 19.232 C 153.46 18.262 153.806 17.538 154.394 17.053 C 154.983 16.568 155.601 16.326 156.252 16.326 C 156.558 16.326 156.856 16.381 157.154 16.491 C 157.458 16.61 157.736 16.785 157.974 17.009 C 158.228 17.241 158.442 17.542 158.615 17.917 Z M 154.424 24.589 C 153.732 24.046 153.349 23.156 153.268 21.926 L 162.754 21.926 L 162.754 21.26 C 162.754 19.868 162.588 18.666 162.253 17.659 C 161.922 16.649 161.466 15.826 160.892 15.19 C 160.332 14.565 159.631 14.083 158.847 13.783 C 158.055 13.482 157.198 13.327 156.267 13.327 C 155.336 13.327 154.464 13.499 153.644 13.842 C 152.832 14.184 152.099 14.689 151.491 15.326 C 150.877 15.973 150.391 16.771 150.038 17.718 C 149.685 18.666 149.508 19.757 149.508 20.988 C 149.508 22.3 149.699 23.432 150.086 24.38 C 150.468 25.328 150.984 26.118 151.631 26.753 C 152.269 27.385 153.039 27.867 153.886 28.164 C 154.748 28.466 155.649 28.617 156.602 28.617 C 157.349 28.617 158.037 28.561 158.662 28.451 C 159.288 28.337 159.836 28.209 160.3 28.058 C 160.764 27.904 161.154 27.746 161.466 27.573 C 161.779 27.401 162.007 27.264 162.151 27.165 L 161.15 24.104 C 161.025 24.226 160.844 24.358 160.602 24.501 C 160.359 24.641 160.064 24.784 159.718 24.923 C 159.373 25.067 158.975 25.181 158.53 25.273 C 158.085 25.361 157.607 25.409 157.099 25.409 C 156.006 25.409 155.112 25.133 154.424 24.589 Z M 40.39 20 C 40.39 31.046 31.427 40 20.366 40 C 9.306 40 0.339 31.046 0.339 20 C 0.339 8.954 9.306 0 20.366 0 C 31.427 0 40.39 8.954 40.39 20 Z M 20.525 31.152 C 27.317 31.13 31.335 25.559 31.32 20.474 C 31.302 15.392 28.535 11.718 22.438 10.233 C 22.423 10.171 22.412 10.035 22.412 9.906 C 22.401 6.067 25.301 2.679 28.943 1.925 C 28.601 1.808 28.038 1.764 27.501 1.764 C 23.336 1.778 18.74 3.561 15.384 6.331 C 11.948 9.175 9.254 13.97 9.273 18.949 C 9.298 26.482 15.024 31.171 20.525 31.152 Z\" fill=\"var(--token-537ef363-8b25-4d49-958a-87b07e559c24, rgb(179, 179, 179)) /* {&quot;name&quot;:&quot;Light gray on Dark&quot;} */\"></path></g></svg>',svgContentId:3751962125,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-b3kjkg\",\"data-framer-name\":\"Raiffeissen\",name:\"Raiffeissen\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1oirgio\",\"data-framer-name\":\"Raiffeisen\",layout:\"position\",name:\"Raiffeisen\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 161 40\"><g id=\"ss4139500225_1\"><path d=\"M 0 0 L 161 0 L 161 40 L 0 40 Z\" fill=\"transparent\"></path><path d=\"M 81.35 1.92 C 81.35 2.464 81.552 2.951 81.897 3.295 C 82.242 3.639 82.731 3.811 83.278 3.839 C 83.853 3.839 84.314 3.639 84.659 3.295 C 85.004 2.951 85.177 2.493 85.177 1.92 C 85.177 1.376 85.004 0.888 84.659 0.544 C 84.314 0.172 83.853 -0 83.278 -0 C 82.731 -0 82.242 0.201 81.897 0.544 C 81.523 0.888 81.35 1.347 81.35 1.92 Z M 81.609 18.137 L 84.889 18.137 L 84.889 5.587 L 81.609 5.587 Z M 61.903 18.137 L 58.364 11.748 L 56.925 11.748 L 56.925 18.137 L 53.502 18.137 L 53.502 2.007 L 60.003 2.007 C 61.125 2.007 62.075 2.207 62.88 2.551 C 63.686 2.923 64.319 3.468 64.75 4.184 C 65.182 4.901 65.383 5.76 65.383 6.763 C 65.383 7.938 65.067 8.912 64.434 9.714 C 63.801 10.517 62.909 11.061 61.758 11.376 L 65.7 18.167 L 61.903 18.167 L 61.903 18.138 Z M 56.954 4.928 L 56.954 9.054 L 59.63 9.054 C 60.349 9.054 60.895 8.882 61.27 8.51 C 61.644 8.166 61.845 7.622 61.845 6.963 C 61.845 6.246 61.644 5.731 61.27 5.416 C 60.895 5.101 60.32 4.928 59.601 4.928 Z M 75.569 5.587 L 78.848 5.587 L 78.848 18.137 L 75.569 18.137 L 75.569 16.647 C 75.166 17.221 74.619 17.65 73.986 17.994 C 73.353 18.309 72.634 18.481 71.828 18.481 C 70.793 18.481 69.872 18.194 69.066 17.65 C 68.261 17.077 67.628 16.303 67.168 15.301 C 66.707 14.298 66.477 13.152 66.477 11.891 C 66.477 10.602 66.707 9.456 67.168 8.452 C 67.628 7.449 68.261 6.676 69.066 6.103 C 69.872 5.53 70.793 5.272 71.828 5.272 C 72.575 5.267 73.314 5.433 73.986 5.759 C 74.619 6.103 75.137 6.533 75.569 7.106 Z M 74.274 15.1 C 74.705 14.813 75.051 14.412 75.281 13.868 C 75.54 13.323 75.655 12.664 75.655 11.891 C 75.655 11.117 75.54 10.458 75.281 9.913 C 75.022 9.369 74.705 8.939 74.274 8.682 C 73.842 8.395 73.353 8.252 72.807 8.252 C 72.26 8.252 71.742 8.395 71.311 8.682 C 70.879 8.968 70.534 9.369 70.304 9.914 C 70.073 10.458 69.958 11.117 69.958 11.891 C 69.958 12.664 70.073 13.323 70.304 13.868 C 70.534 14.412 70.879 14.842 71.311 15.1 C 71.742 15.387 72.231 15.53 72.807 15.53 C 73.353 15.53 73.842 15.387 74.274 15.1 Z M 91.88 5.587 L 96.944 5.587 L 96.944 4.813 C 96.944 3.438 97.347 2.378 98.123 1.662 C 98.929 0.945 99.993 0.573 101.403 0.573 C 101.921 0.573 102.41 0.63 102.87 0.716 C 103.33 0.802 103.762 0.946 104.136 1.088 L 103.302 3.582 C 102.87 3.409 102.41 3.323 101.892 3.323 C 101.316 3.323 100.885 3.467 100.626 3.725 C 100.367 3.983 100.223 4.412 100.223 4.957 L 100.223 5.587 L 103.676 5.587 L 103.676 8.424 L 100.223 8.424 L 100.223 18.137 L 96.944 18.137 L 96.944 8.424 L 91.88 8.424 L 91.88 18.137 L 88.6 18.137 L 88.6 8.424 L 86.443 8.424 L 86.443 5.587 L 88.6 5.587 L 88.6 4.813 C 88.6 3.438 89.003 2.378 89.78 1.662 C 90.585 0.945 91.65 0.573 93.06 0.573 C 93.577 0.573 94.066 0.63 94.527 0.716 C 94.987 0.802 95.418 0.946 95.793 1.088 L 94.958 3.582 C 94.527 3.409 94.066 3.323 93.549 3.323 C 92.973 3.323 92.542 3.467 92.283 3.725 C 92.024 3.983 91.88 4.412 91.88 4.957 Z M 116.392 13.009 L 107.877 13.009 C 107.992 13.954 108.308 14.642 108.798 15.072 C 109.315 15.502 110.063 15.702 111.042 15.702 C 111.732 15.702 112.365 15.616 112.94 15.416 C 113.492 15.226 114.007 14.945 114.465 14.584 L 115.875 16.819 C 115.241 17.364 114.494 17.765 113.659 18.052 C 112.825 18.338 111.904 18.482 110.955 18.482 C 109.574 18.482 108.423 18.223 107.417 17.708 C 106.449 17.207 105.663 16.415 105.173 15.444 C 104.654 14.47 104.395 13.295 104.395 11.948 C 104.395 10.631 104.654 9.456 105.173 8.424 C 105.69 7.421 106.409 6.619 107.33 6.074 C 108.25 5.53 109.315 5.244 110.523 5.244 C 111.703 5.244 112.767 5.502 113.659 6.046 C 114.551 6.591 115.241 7.364 115.731 8.338 C 116.22 9.341 116.45 10.516 116.45 11.863 L 116.45 13.009 Z M 107.877 10.774 L 113.113 10.774 C 113.026 9.828 112.767 9.141 112.336 8.682 C 111.904 8.224 111.3 7.994 110.523 7.994 C 108.97 7.994 108.107 8.94 107.877 10.774 Z M 118.118 1.92 C 118.118 2.464 118.319 2.951 118.665 3.295 C 119.01 3.639 119.47 3.811 120.046 3.839 C 120.621 3.839 121.081 3.639 121.427 3.295 C 121.772 2.951 121.944 2.493 121.944 1.92 C 121.944 1.376 121.772 0.888 121.427 0.544 C 121.081 0.172 120.621 -0 120.046 -0 C 119.499 -0 119.01 0.201 118.665 0.544 C 118.291 0.888 118.118 1.347 118.118 1.92 Z M 118.377 18.137 L 121.657 18.137 L 121.657 5.587 L 118.377 5.587 Z M 125.828 18.052 C 124.937 17.765 124.188 17.335 123.556 16.763 L 125.08 14.442 C 126.03 15.329 127.21 15.759 128.648 15.759 C 129.281 15.759 129.77 15.673 130.086 15.473 C 130.403 15.273 130.575 14.986 130.575 14.584 C 130.575 14.241 130.432 13.983 130.144 13.754 C 129.856 13.553 129.31 13.324 128.533 13.152 C 127.526 12.923 126.72 12.693 126.059 12.407 C 125.453 12.16 124.919 11.766 124.505 11.261 C 124.103 10.774 123.901 10.115 123.901 9.341 C 123.901 8.51 124.103 7.765 124.534 7.163 C 124.966 6.562 125.569 6.074 126.375 5.731 C 127.181 5.387 128.101 5.244 129.137 5.244 C 130.115 5.244 131.036 5.387 131.87 5.673 C 132.705 5.96 133.424 6.39 133.999 6.934 L 132.474 9.169 C 132.043 8.768 131.525 8.482 130.949 8.253 C 130.357 8.046 129.735 7.939 129.108 7.937 C 128.504 7.937 128.043 8.023 127.727 8.224 C 127.411 8.424 127.238 8.711 127.238 9.083 C 127.238 9.312 127.296 9.484 127.44 9.628 C 127.583 9.771 127.813 9.914 128.13 10.057 C 128.446 10.201 128.935 10.344 129.569 10.487 C 130.432 10.688 131.179 10.946 131.784 11.232 C 132.384 11.501 132.908 11.914 133.309 12.436 C 133.711 12.952 133.912 13.611 133.912 14.441 C 133.912 15.244 133.711 15.96 133.28 16.562 C 132.877 17.163 132.273 17.622 131.467 17.966 C 130.662 18.31 129.713 18.453 128.619 18.453 C 127.673 18.478 126.729 18.343 125.828 18.052 Z M 138.804 13.009 L 147.377 13.009 L 147.377 11.863 C 147.377 10.516 147.147 9.341 146.658 8.338 C 146.169 7.364 145.478 6.591 144.586 6.046 C 143.694 5.502 142.63 5.244 141.45 5.244 C 140.242 5.244 139.178 5.53 138.257 6.074 C 137.336 6.619 136.617 7.422 136.1 8.424 C 135.581 9.456 135.323 10.631 135.323 11.948 C 135.323 13.295 135.581 14.471 136.1 15.444 C 136.59 16.415 137.376 17.207 138.344 17.708 C 139.35 18.224 140.501 18.482 141.882 18.482 C 142.832 18.482 143.752 18.338 144.586 18.052 C 145.421 17.765 146.169 17.364 146.802 16.819 L 145.392 14.584 C 144.934 14.945 144.419 15.226 143.867 15.416 C 143.292 15.616 142.659 15.702 141.969 15.702 C 140.99 15.702 140.242 15.502 139.725 15.072 C 139.235 14.642 138.919 13.954 138.804 13.009 Z M 144.04 10.774 L 138.804 10.774 C 139.034 8.94 139.897 7.994 141.45 7.994 C 142.228 7.994 142.832 8.224 143.263 8.682 C 143.694 9.141 143.954 9.828 144.04 10.774 Z M 158.682 5.817 C 159.344 6.218 159.891 6.762 160.236 7.507 C 160.61 8.252 160.783 9.141 160.783 10.201 L 160.783 18.138 L 157.503 18.138 L 157.503 10.602 C 157.503 9.799 157.33 9.198 156.957 8.797 C 156.582 8.396 156.007 8.195 155.259 8.195 C 154.684 8.195 154.195 8.309 153.734 8.567 C 153.263 8.85 152.868 9.244 152.583 9.714 L 152.583 18.138 L 149.304 18.138 L 149.304 5.588 L 152.583 5.588 L 152.583 7.049 C 152.986 6.476 153.504 6.046 154.137 5.731 C 154.77 5.416 155.489 5.244 156.295 5.244 C 157.215 5.244 158.021 5.444 158.682 5.817 Z M 65.441 35.071 C 65.441 34.126 65.211 33.323 64.75 32.664 C 64.29 32.006 63.628 31.518 62.737 31.203 C 64.118 30.516 64.808 29.369 64.808 27.764 C 64.808 26.418 64.348 25.387 63.398 24.642 C 62.477 23.897 61.154 23.524 59.428 23.524 L 53.502 23.524 L 53.502 39.684 L 60.003 39.684 C 61.758 39.684 63.082 39.283 64.031 38.481 C 64.98 37.679 65.441 36.533 65.441 35.071 Z M 56.954 30.201 L 56.954 26.418 L 59.14 26.418 C 59.86 26.418 60.406 26.562 60.781 26.848 C 61.154 27.134 61.327 27.622 61.327 28.309 C 61.327 28.939 61.154 29.398 60.809 29.713 C 60.464 30.028 59.917 30.201 59.198 30.201 Z M 61.27 36.303 C 60.895 36.618 60.349 36.791 59.601 36.791 L 59.601 36.762 L 56.897 36.762 L 56.897 32.836 L 59.486 32.836 C 60.32 32.836 60.895 33.008 61.27 33.323 C 61.644 33.639 61.816 34.126 61.816 34.784 C 61.816 35.472 61.644 35.988 61.27 36.303 Z M 75.769 27.106 L 79.048 27.106 L 79.048 39.656 L 75.769 39.656 L 75.769 38.167 C 75.366 38.74 74.819 39.169 74.186 39.513 C 73.554 39.828 72.834 40.001 72.028 40.001 C 70.993 40.001 70.072 39.714 69.267 39.169 C 68.461 38.597 67.828 37.823 67.368 36.82 C 66.907 35.817 66.677 34.671 66.677 33.411 C 66.677 32.121 66.907 30.975 67.368 29.972 C 67.828 28.969 68.461 28.196 69.267 27.622 C 70.072 27.049 70.993 26.792 72.028 26.792 C 72.834 26.792 73.525 26.964 74.186 27.278 C 74.819 27.623 75.337 28.052 75.769 28.626 L 75.769 27.106 Z M 74.503 36.648 C 74.934 36.361 75.279 35.96 75.51 35.416 C 75.769 34.871 75.884 34.212 75.884 33.438 C 75.884 32.665 75.769 32.006 75.51 31.461 C 75.251 30.917 74.934 30.487 74.503 30.229 C 74.071 29.943 73.582 29.799 73.036 29.799 C 72.489 29.799 71.971 29.943 71.54 30.229 C 71.108 30.516 70.763 30.917 70.532 31.462 C 70.302 32.006 70.187 32.665 70.187 33.438 C 70.187 34.212 70.302 34.871 70.532 35.416 C 70.763 35.96 71.108 36.389 71.54 36.648 C 71.971 36.934 72.46 37.077 73.036 37.077 C 73.582 37.049 74.071 36.934 74.503 36.648 Z M 92.772 29.054 C 92.426 28.309 91.88 27.765 91.218 27.364 C 90.528 26.963 89.751 26.791 88.83 26.762 C 88.025 26.762 87.305 26.934 86.673 27.249 C 86.04 27.564 85.522 27.994 85.119 28.567 L 85.119 27.106 L 81.839 27.106 L 81.839 39.684 L 85.119 39.684 L 85.119 31.261 C 85.403 30.791 85.798 30.398 86.27 30.115 C 86.73 29.857 87.219 29.743 87.795 29.743 C 88.543 29.743 89.118 29.943 89.492 30.344 C 89.866 30.746 90.039 31.347 90.039 32.149 L 90.039 39.685 L 93.318 39.685 L 93.318 31.748 C 93.318 30.687 93.145 29.799 92.772 29.054 Z M 102.295 32.98 L 107.359 39.684 L 103.446 39.684 L 99.13 33.983 L 99.13 39.684 L 95.851 39.684 L 95.851 22.579 L 99.13 22.579 L 99.13 32.207 L 103.244 27.106 L 107.129 27.106 Z M 2.35 10.343 L 9.082 17.077 L 10.952 15.214 L 10.952 10.773 L 12.851 12.693 L 12.851 18.023 L 15.497 20.658 L 1.832 34.269 L 7.241 39.656 L 20.907 26.046 L 34.572 39.656 L 39.98 34.269 L 26.315 20.659 L 28.962 18.023 L 28.962 12.664 L 30.861 10.773 L 30.861 15.214 L 32.73 17.077 L 39.463 10.343 L 41.275 12.149 C 41.275 11.003 40.93 7.049 37.736 3.925 C 34.169 0.429 30.573 2.464 29.335 3.696 L 22.834 10.172 L 24.445 11.776 L 20.907 15.301 L 17.368 11.776 L 18.979 10.172 L 12.477 3.696 C 11.24 2.493 7.672 0.429 4.076 3.925 C 0.884 7.019 0.538 11.003 0.538 12.149 L 2.35 10.343 Z\" fill=\"var(--token-537ef363-8b25-4d49-958a-87b07e559c24, rgb(179, 179, 179)) /* {&quot;name&quot;:&quot;Light gray on Dark&quot;} */\"></path></g></svg>',svgContentId:4139500225,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cumghs\",\"data-framer-name\":\"Lensa\",name:\"Lensa\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nwq7po\",\"data-framer-name\":\"Lensa\",layout:\"position\",name:\"Lensa\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 140 40\"><g transform=\"translate(0.536 -0)\" id=\"ss1861706431_1\"><path d=\"M 0 0.536 L 139.444 0.536 L 139.444 40.536 L 0 40.536 Z\" fill=\"transparent\"></path><path d=\"M 127.947 7.369 L 130.907 27.137 L 124.987 27.137 Z M 132.751 0.469 L 123.758 0.469 L 117.505 39.531 L 123.134 39.531 L 124.194 32.438 L 131.733 32.438 L 132.793 39.531 L 138.994 39.531 L 132.751 0.469 Z M 88.806 9.851 C 88.806 21.016 100.81 22.517 100.81 30.567 C 100.81 33.381 99.586 34.361 97.629 34.361 C 95.673 34.361 94.444 33.358 94.444 30.567 L 94.444 27.752 L 88.642 27.752 L 88.642 30.149 C 88.642 36.402 91.766 40 97.798 40 C 103.831 40 106.955 36.426 106.955 30.149 C 106.955 18.984 94.951 17.483 94.951 9.438 C 94.951 6.624 96.067 5.582 98.019 5.582 C 99.97 5.582 101.091 6.642 101.091 9.438 L 101.091 11.057 L 106.899 11.057 L 106.899 9.851 C 106.899 3.574 103.826 0 97.854 0 C 91.883 0 88.806 3.574 88.806 9.851 Z M 70.206 39.531 L 76.516 39.531 L 76.516 0.469 L 71.051 0.469 L 71.051 23.839 L 64.741 0.469 L 57.038 0.469 L 57.038 39.531 L 62.564 39.531 L 62.564 11.221 Z M 27.893 22.517 L 27.893 39.545 L 44.644 39.545 L 44.644 33.949 L 34.033 33.949 L 34.033 16.916 L 40.183 16.916 L 40.183 22.517 Z M 34.034 6.028 L 44.645 6.028 L 44.645 0.469 L 27.893 0.469 L 27.893 16.916 L 34.033 16.916 L 34.033 6.028 Z M 0.31 39.531 L 16.56 39.531 L 16.56 33.948 L 6.451 33.948 L 6.451 0.469 L 0.31 0.469 L 0.31 39.532 Z\" fill=\"var(--token-537ef363-8b25-4d49-958a-87b07e559c24, rgb(179, 179, 179)) /* {&quot;name&quot;:&quot;Light gray on Dark&quot;} */\"></path></g></svg>',svgContentId:1861706431,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-enayw9\",\"data-framer-name\":\"Chamaileon\",name:\"Chamaileon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1t1e7e4\",\"data-framer-name\":\"Chamaileon\",layout:\"position\",name:\"Chamaileon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 224 40\"><g id=\"ss339488247_1\"><path d=\"M 0 0 L 223.609 0 L 223.609 39.672 L 0 39.672 Z\" fill=\"transparent\"></path><path d=\"M 25.127 10.636 L 24.955 12.38 C 23.331 11.049 21.31 10.149 19.119 10.149 C 13.758 10.149 9.413 14.491 9.413 19.847 C 9.413 25.203 13.758 29.545 19.119 29.545 C 21.758 29.545 24.149 28.367 25.898 26.618 C 27.002 28.339 28.666 29.545 31.05 29.545 C 36.919 29.545 38.825 24.177 38.825 18.043 C 38.825 7.307 30.292 0 19.729 0 C 8.803 0 0 8.886 0 19.847 C 0 30.808 8.803 39.671 19.729 39.671 C 24.017 39.671 28.137 38.273 31.253 35.882 L 28.691 33.04 C 26.146 34.79 23.013 35.838 19.728 35.838 C 11.06 35.838 4.063 28.688 4.063 19.847 C 4.063 11.006 11.06 3.834 19.729 3.834 C 28.351 3.834 34.852 9.743 34.852 17.952 C 34.852 22.599 34.166 25.711 31.367 25.711 C 30.148 25.711 29.48 25.06 29.11 24.358 C 28.822 23.812 28.794 23.03 28.792 22.123 L 28.792 10.636 Z M 19.119 25.501 C 15.993 25.501 13.46 22.97 13.46 19.847 C 13.46 16.724 15.993 14.192 19.119 14.192 C 22.244 14.192 24.778 16.724 24.778 19.847 C 24.778 22.97 22.244 25.501 19.119 25.501 Z M 53.268 19.836 C 53.268 15.433 56.565 11.707 61.619 11.707 C 64.762 11.707 66.704 13.309 67.69 14.293 L 65.194 17.065 C 64.208 16.018 63.098 15.495 61.804 15.495 C 58.969 15.495 57.366 17.558 57.366 19.836 C 57.366 22.115 58.969 24.178 61.804 24.178 C 63.098 24.178 64.208 23.654 65.194 22.607 L 67.69 25.379 C 66.704 26.364 64.762 27.965 61.619 27.965 C 56.565 27.965 53.268 24.24 53.268 19.836 Z M 85.067 18.235 L 85.067 27.503 L 80.999 27.503 L 80.999 18.912 C 80.999 16.695 79.673 15.494 77.917 15.494 C 75.605 15.494 74.773 17.342 74.773 19.805 L 74.773 27.503 L 70.705 27.503 L 70.705 5.395 L 74.773 5.395 L 74.773 14.017 C 75.975 12.415 77.701 11.707 79.396 11.707 C 83.495 11.707 85.067 14.386 85.067 18.235 Z M 104.356 12.169 L 104.356 27.503 L 100.411 27.503 L 100.35 25.841 C 99.053 27.193 97.261 27.96 95.387 27.965 C 90.765 27.965 87.684 24.147 87.684 19.836 C 87.684 15.525 90.765 11.707 95.387 11.707 C 97.114 11.707 98.963 12.323 100.318 13.709 L 100.411 12.169 Z M 100.411 19.836 C 100.411 17.403 98.5 15.495 96.096 15.495 C 93.693 15.495 91.751 17.403 91.751 19.836 C 91.751 22.269 93.693 24.178 96.096 24.178 C 98.5 24.178 100.411 22.269 100.411 19.836 Z M 133.112 18.235 L 133.112 27.503 L 129.044 27.503 L 129.044 18.912 C 129.044 16.696 127.75 15.494 125.993 15.494 C 123.682 15.494 122.85 17.342 122.85 19.805 L 122.85 27.503 L 118.782 27.503 L 118.782 18.912 C 118.782 16.696 117.457 15.494 115.7 15.494 C 113.389 15.494 112.556 17.342 112.556 19.805 L 112.556 27.503 L 108.489 27.503 L 108.489 12.169 L 112.403 12.169 L 112.495 14.078 C 113.697 12.415 115.454 11.707 117.179 11.707 C 119.707 11.707 121.278 12.754 122.11 14.448 C 123.127 12.662 124.915 11.707 126.887 11.707 C 130.986 11.707 133.112 14.386 133.112 18.235 Z M 152.627 12.169 L 152.627 27.503 L 148.682 27.503 L 148.621 25.841 C 147.324 27.193 145.533 27.959 143.659 27.965 C 139.036 27.965 135.955 24.147 135.955 19.836 C 135.955 15.525 139.036 11.707 143.659 11.707 C 145.385 11.707 147.234 12.323 148.59 13.709 L 148.682 12.169 Z M 148.682 19.836 C 148.682 17.403 146.772 15.495 144.368 15.495 C 141.965 15.495 140.023 17.403 140.023 19.836 C 140.023 22.269 141.965 24.178 144.368 24.178 C 146.772 24.178 148.682 22.269 148.682 19.836 Z M 156.776 12.169 L 160.844 12.169 L 160.844 27.503 L 156.776 27.503 Z M 164.954 5.395 L 169.022 5.395 L 169.022 27.503 L 164.954 27.503 L 164.954 5.395 Z M 187.964 21.16 L 176.284 21.16 C 176.869 23.47 178.934 24.208 180.383 24.208 C 182.694 24.208 183.896 23.285 184.851 22.577 L 187.286 25.348 C 186.361 26.056 184.05 27.965 180.568 27.965 C 175.606 27.965 172.124 24.547 172.124 19.775 C 172.124 14.756 175.914 11.707 180.228 11.707 C 184.79 11.707 187.933 14.91 187.964 19.651 Z M 176.376 18.204 L 183.772 18.204 C 183.403 16.634 182.108 15.433 180.198 15.433 C 178.225 15.433 176.869 16.541 176.376 18.204 Z M 190.074 19.774 C 190.074 15.31 193.71 11.707 198.395 11.707 C 203.018 11.707 206.685 15.279 206.685 19.774 C 206.685 24.331 202.987 27.965 198.395 27.965 C 193.772 27.965 190.074 24.27 190.074 19.774 Z M 202.74 19.805 C 202.74 17.188 200.706 15.494 198.425 15.494 C 196.114 15.494 194.049 17.219 194.049 19.805 C 194.049 22.423 196.145 24.178 198.425 24.178 C 200.675 24.178 202.74 22.453 202.74 19.805 Z M 223.608 18.235 L 223.608 27.503 L 219.54 27.503 L 219.54 18.912 C 219.54 16.696 218.215 15.494 216.458 15.494 C 214.146 15.494 213.315 17.342 213.315 19.805 L 213.315 27.503 L 209.247 27.503 L 209.247 12.169 L 213.161 12.169 L 213.253 14.078 C 214.455 12.415 216.212 11.707 217.937 11.707 C 222.036 11.707 223.608 14.386 223.608 18.235 Z M 158.825 10.26 C 159.845 10.273 160.792 9.737 161.306 8.857 C 161.82 7.977 161.82 6.889 161.306 6.009 C 160.792 5.129 159.845 4.593 158.825 4.606 C 157.277 4.626 156.032 5.886 156.032 7.433 C 156.032 8.98 157.277 10.24 158.825 10.26 Z\" fill=\"var(--token-537ef363-8b25-4d49-958a-87b07e559c24, rgb(179, 179, 179)) /* {&quot;name&quot;:&quot;Light gray on Dark&quot;} */\"></path><path d=\"M 21.796 22.629 C 22.815 22.642 23.763 22.106 24.277 21.226 C 24.79 20.346 24.79 19.258 24.277 18.378 C 23.763 17.497 22.815 16.962 21.796 16.975 C 20.247 16.995 19.003 18.255 19.003 19.802 C 19.003 21.349 20.247 22.608 21.796 22.629 Z\" fill=\"var(--token-537ef363-8b25-4d49-958a-87b07e559c24, rgb(179, 179, 179)) /* {&quot;name&quot;:&quot;Light gray on Dark&quot;} */\"></path></g></svg>',svgContentId:339488247,withExternalLayout:true})})],speed:75,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(Container,{className:\"framer-10px80y-container hidden-13mbul4 hidden-1cungbq\",\"data-framer-name\":\"Tablet/Mobile\",name:\"Tablet/Mobile\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCBK20uHj:{gap:40},MdgBmO9sm:{gap:40}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:64,height:\"100%\",hoverFactor:1,id:\"OL6TTlJ43\",layoutId:\"OL6TTlJ43\",name:\"Tablet/Mobile\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ba8kla\",\"data-framer-name\":\"Accenture\",name:\"Accenture\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1jufgt9\",\"data-framer-name\":\"Accenture\",layout:\"position\",name:\"Accenture\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 121.333 32\"><path d=\"M 70.608 8.984 L 77.587 6.385 L 70.608 3.638 L 70.608 0 L 82.561 4.826 L 82.561 7.796 L 70.608 12.622 Z M 4.604 32 C 2.079 32 0 30.738 0 27.916 L 0 27.768 C 0 24.353 2.97 23.164 6.608 23.164 L 8.316 23.164 L 8.316 22.496 C 8.316 21.085 7.721 20.269 6.236 20.269 C 4.9 20.269 4.232 21.011 4.158 22.051 L 0.445 22.051 C 0.743 18.932 3.192 17.447 6.46 17.447 C 9.8 17.447 12.251 18.858 12.251 22.348 L 12.251 31.703 L 8.464 31.703 L 8.464 30.069 C 7.722 31.109 6.46 32 4.603 32 Z M 8.316 27.025 L 8.316 25.689 L 6.756 25.689 C 4.826 25.689 3.861 26.209 3.861 27.471 L 3.861 27.62 C 3.861 28.585 4.455 29.253 5.791 29.253 C 7.128 29.253 8.316 28.511 8.316 27.025 Z M 21.086 32 C 17.225 32 14.404 29.624 14.404 24.872 L 14.404 24.65 C 14.404 19.898 17.373 17.373 21.086 17.373 C 24.278 17.373 26.877 19.007 27.174 22.645 L 23.462 22.645 C 23.239 21.308 22.496 20.418 21.16 20.418 C 19.527 20.418 18.339 21.754 18.339 24.501 L 18.339 24.947 C 18.339 27.768 19.378 29.03 21.16 29.03 C 22.496 29.03 23.462 28.065 23.684 26.506 L 27.248 26.506 C 27.025 29.698 24.872 32 21.086 32 Z M 35.638 32 C 31.777 32 28.956 29.624 28.956 24.872 L 28.956 24.65 C 28.956 19.898 31.926 17.373 35.638 17.373 C 38.831 17.373 41.429 19.007 41.726 22.645 L 38.014 22.645 C 37.792 21.308 37.049 20.418 35.712 20.418 C 34.079 20.418 32.891 21.754 32.891 24.501 L 32.891 24.947 C 32.891 27.768 33.93 29.03 35.712 29.03 C 37.049 29.03 38.014 28.065 38.237 26.506 L 41.8 26.506 C 41.578 29.698 39.424 32 35.638 32 Z M 50.264 32 C 46.255 32 43.508 29.624 43.508 24.947 L 43.508 24.65 C 43.508 19.972 46.404 17.373 50.19 17.373 C 53.68 17.373 56.576 19.304 56.576 23.981 L 56.576 25.689 L 47.517 25.689 C 47.666 28.214 48.78 29.178 50.413 29.178 C 51.898 29.178 52.715 28.362 53.012 27.397 L 56.65 27.397 C 56.13 29.996 53.977 32 50.264 32 Z M 47.517 23.091 L 52.789 23.091 C 52.715 21.012 51.749 20.121 50.19 20.121 C 48.928 20.195 47.814 20.863 47.517 23.091 Z M 58.951 17.745 L 62.886 17.745 L 62.886 19.824 C 63.555 18.487 64.965 17.448 67.118 17.448 C 69.643 17.448 71.35 19.007 71.35 22.348 L 71.35 31.703 L 67.415 31.703 L 67.415 22.942 C 67.415 21.308 66.747 20.566 65.336 20.566 C 64 20.566 62.886 21.383 62.886 23.165 L 62.886 31.703 L 58.951 31.703 L 58.951 17.745 Z M 78.552 13.513 L 78.552 17.745 L 81.225 17.745 L 81.225 20.64 L 78.552 20.64 L 78.552 27.248 C 78.552 28.288 78.998 28.808 79.963 28.808 C 80.557 28.808 80.928 28.733 81.299 28.585 L 81.299 31.629 C 80.854 31.777 80.037 31.926 79.072 31.926 C 76.028 31.926 74.617 30.515 74.617 27.694 L 74.617 20.64 L 72.984 20.64 L 72.984 17.744 L 74.617 17.744 L 74.617 15.146 L 78.552 13.512 Z M 95.926 31.703 L 91.991 31.703 L 91.991 29.624 C 91.323 30.96 89.986 32 87.907 32 C 85.383 32 83.527 30.441 83.527 27.174 L 83.527 17.744 L 87.462 17.744 L 87.462 26.654 C 87.462 28.287 88.13 29.03 89.466 29.03 C 90.803 29.03 91.916 28.139 91.916 26.431 L 91.916 17.819 L 95.852 17.819 L 95.852 31.703 Z M 98.821 17.745 L 102.756 17.745 L 102.756 20.344 C 103.573 18.487 104.909 17.596 106.988 17.596 L 106.988 21.457 C 104.316 21.457 102.756 22.274 102.756 24.576 L 102.756 31.777 L 98.821 31.777 Z M 114.933 32 C 110.924 32 108.176 29.624 108.176 24.947 L 108.176 24.65 C 108.176 19.972 111.072 17.373 114.859 17.373 C 118.348 17.373 121.244 19.304 121.244 23.981 L 121.244 25.689 L 112.186 25.689 C 112.334 28.214 113.448 29.178 115.081 29.178 C 116.566 29.178 117.383 28.362 117.68 27.397 L 121.318 27.397 C 120.724 29.996 118.571 32 114.933 32 Z M 112.112 23.091 L 117.383 23.091 C 117.308 21.012 116.344 20.121 114.784 20.121 C 113.596 20.195 112.483 20.863 112.112 23.091 Z\" fill=\"var(--token-537ef363-8b25-4d49-958a-87b07e559c24, rgb(179, 179, 179)) /* {&quot;name&quot;:&quot;Light gray on Dark&quot;} */\"></path></svg>',svgContentId:1738046149,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qo2bk9\",\"data-framer-name\":\"L'Oreal\",name:\"L'Oreal\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1v0583p\",\"data-framer-name\":\"L_Oreal\",layout:\"position\",name:\"L_Oreal\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 176.889 32\"><g id=\"ss3113997437_1\"><path d=\"M 0 0 L 176.859 0 L 176.859 32 L 0 32 Z\" fill=\"transparent\"></path><path d=\"M 96.218 29.847 L 119.041 29.847 L 119.041 27.059 L 100.131 27.059 L 100.131 18.139 L 114.334 18.139 L 114.334 15.318 L 100.131 15.318 L 100.131 7.1 L 119.041 7.1 L 119.041 4.322 L 96.218 4.322 Z M 108.078 0.196 L 104.988 3.667 L 114.688 0.196 Z M 157.355 27.059 L 157.355 4.322 L 153.787 4.322 L 153.787 29.847 L 176.859 29.847 L 176.859 27.059 Z M 133.829 4.322 L 120.85 29.847 L 125.237 29.847 L 128.558 23.24 L 144.124 23.24 L 147.472 29.847 L 151.814 29.847 L 138.825 4.322 Z M 130.2 20.041 L 136.316 7.849 L 142.504 20.041 Z M 83.833 19.173 C 89.681 17.613 90.249 13.262 90.22 11.707 C 89.87 7.147 86.798 4.322 81.278 4.322 L 65.19 4.322 L 65.19 29.847 L 68.857 29.847 L 68.857 19.14 L 79.331 19.14 L 87.036 29.847 L 91.658 29.847 C 91.658 29.847 86.113 22.64 83.833 19.174 Z M 80.777 16.124 L 68.857 16.124 L 68.857 7.343 L 81.192 7.343 C 84.032 7.343 85.63 8.669 86.205 10.353 C 86.586 11.508 86.342 13.023 85.712 14.055 C 84.681 15.76 82.723 16.124 80.777 16.124 Z M 43.151 0 C 32.799 0 25.742 7.299 25.742 16.133 C 25.742 25.434 33.537 32 43.151 32 C 52.759 32 60.55 25.528 60.55 16.133 C 60.55 7.299 53.407 0 43.151 0 Z M 43.027 28.832 C 35.864 28.832 29.963 23.076 29.963 16.143 C 29.963 9.218 35.586 3.187 43.304 3.187 C 50.832 3.187 56.365 9.218 56.365 16.143 C 56.365 23.076 50.186 28.832 43.027 28.832 Z M 16.506 13.352 L 19.152 13.352 L 23.956 4.322 L 20.09 4.322 L 16.507 13.352 Z M 3.569 27.059 L 3.569 4.322 L 0 4.322 L 0 29.847 L 23.071 29.847 L 23.071 27.059 Z\" fill=\"var(--token-537ef363-8b25-4d49-958a-87b07e559c24, rgb(179, 179, 179)) /* {&quot;name&quot;:&quot;Light gray on Dark&quot;} */\"></path></g></svg>',svgContentId:3113997437,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-oj8tg0\",\"data-framer-name\":\"Vodafone\",name:\"Vodafone\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ccge0r\",\"data-framer-name\":\"Vdafone\",layout:\"position\",name:\"Vdafone\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 130.222 32\"><g id=\"ss3187219888_1\"><path d=\"M 0 0 L 130.222 0 L 130.222 32 L 0 32 Z\" fill=\"transparent\"></path><path d=\"M 37.709 10.953 L 42.6 22.626 L 45.217 22.626 L 49.964 10.953 L 46.913 10.953 L 43.956 18.704 L 40.904 10.953 Z M 58.307 15.344 C 58.421 15.783 58.477 16.244 58.477 16.729 C 58.477 17.232 58.421 17.699 58.306 18.128 C 58.195 18.557 58.024 18.934 57.798 19.257 C 57.583 19.57 57.302 19.832 56.975 20.024 C 56.652 20.209 56.272 20.304 55.837 20.304 C 55.402 20.304 55.017 20.209 54.688 20.024 C 54.356 19.837 54.073 19.574 53.862 19.257 C 53.644 18.934 53.48 18.557 53.368 18.128 C 53.253 17.699 53.197 17.232 53.197 16.729 C 53.197 16.244 53.253 15.782 53.368 15.344 C 53.48 14.907 53.65 14.53 53.876 14.216 C 54.092 13.907 54.373 13.65 54.7 13.463 C 55.02 13.275 55.402 13.181 55.837 13.181 C 56.272 13.181 56.652 13.275 56.975 13.463 C 57.301 13.651 57.582 13.908 57.798 14.216 C 58.024 14.53 58.195 14.907 58.307 15.344 Z M 61.081 18.984 C 61.314 18.25 61.431 17.503 61.431 16.742 C 61.431 15.984 61.314 15.243 61.081 14.514 C 60.856 13.803 60.498 13.142 60.026 12.565 C 59.559 11.992 58.977 11.533 58.283 11.186 C 57.589 10.84 56.772 10.663 55.837 10.663 C 54.9 10.663 54.08 10.839 53.38 11.186 C 52.677 11.533 52.095 11.992 51.634 12.565 C 51.171 13.146 50.818 13.806 50.593 14.514 C 50.362 15.234 50.244 15.985 50.243 16.742 C 50.243 17.503 50.361 18.25 50.593 18.985 C 50.818 19.7 51.171 20.368 51.634 20.957 C 52.095 21.54 52.677 22.006 53.38 22.362 C 54.08 22.718 54.9 22.894 55.837 22.894 C 56.772 22.894 57.592 22.718 58.295 22.362 C 58.997 22.007 59.579 21.539 60.038 20.957 C 60.503 20.369 60.857 19.7 61.081 18.984 Z M 68.836 13.181 C 69.336 13.181 69.874 13.296 70.453 13.522 L 70.453 19.307 C 70.291 19.58 70.018 19.821 69.632 20.024 C 69.248 20.224 68.871 20.327 68.501 20.327 C 68.051 20.327 67.66 20.224 67.331 20.024 C 67.002 19.822 66.722 19.548 66.514 19.222 C 66.296 18.89 66.135 18.499 66.032 18.055 C 65.924 17.597 65.871 17.128 65.873 16.658 C 65.872 16.227 65.934 15.797 66.055 15.383 C 66.169 14.981 66.352 14.602 66.596 14.263 C 66.836 13.932 67.15 13.662 67.513 13.475 C 67.88 13.281 68.324 13.181 68.836 13.181 Z M 70.573 21.732 L 70.694 22.625 L 73.454 22.625 L 73.454 6.473 L 70.453 6.473 L 70.453 11 C 69.744 10.776 69.083 10.662 68.472 10.662 C 67.54 10.662 66.725 10.838 66.035 11.185 C 65.341 11.532 64.768 11.991 64.306 12.564 C 63.845 13.143 63.497 13.804 63.28 14.512 C 63.058 15.234 62.945 15.985 62.945 16.741 C 62.945 17.549 63.054 18.325 63.268 19.066 C 63.486 19.81 63.806 20.465 64.224 21.03 C 64.634 21.589 65.162 22.052 65.77 22.385 C 66.379 22.723 67.09 22.893 67.892 22.893 C 68.504 22.893 69.036 22.776 69.486 22.54 C 69.938 22.308 70.3 22.038 70.573 21.732 Z M 80.909 17.238 C 81.241 17.2 81.574 17.171 81.908 17.152 L 81.908 19.528 C 81.649 19.768 81.335 19.971 80.97 20.133 C 80.613 20.293 80.227 20.375 79.836 20.374 C 79.316 20.374 78.916 20.256 78.631 20.024 C 78.345 19.789 78.204 19.478 78.204 19.092 C 78.204 18.719 78.331 18.378 78.58 18.061 C 78.833 17.746 79.283 17.526 79.936 17.396 C 80.258 17.33 80.582 17.277 80.909 17.238 Z M 82.032 21.744 L 82.149 22.617 L 84.889 22.617 L 84.889 15.116 C 84.889 14.325 84.78 13.652 84.563 13.096 C 84.342 12.538 84.04 12.079 83.654 11.717 C 83.266 11.353 82.805 11.088 82.273 10.918 C 81.74 10.748 81.15 10.662 80.503 10.662 C 79.956 10.662 79.442 10.716 78.966 10.821 C 78.529 10.915 78.1 11.045 77.684 11.209 C 77.302 11.362 76.981 11.52 76.714 11.682 C 76.447 11.844 76.249 11.979 76.12 12.094 L 77.114 14.199 C 77.257 14.081 77.407 13.972 77.564 13.872 C 77.752 13.752 77.966 13.631 78.21 13.508 C 78.474 13.38 78.751 13.279 79.036 13.208 C 79.355 13.124 79.683 13.083 80.012 13.084 C 80.594 13.084 81.053 13.222 81.385 13.496 C 81.72 13.772 81.884 14.231 81.884 14.877 L 81.884 15.048 C 81.576 15.08 81.191 15.116 80.729 15.157 C 80.301 15.193 79.875 15.253 79.454 15.336 C 78.904 15.433 78.375 15.58 77.875 15.774 C 77.394 15.956 76.943 16.208 76.538 16.524 C 76.151 16.827 75.836 17.211 75.615 17.65 C 75.385 18.093 75.274 18.608 75.274 19.187 C 75.274 19.769 75.382 20.289 75.603 20.751 C 75.807 21.193 76.1 21.588 76.464 21.912 C 76.824 22.23 77.241 22.476 77.693 22.638 C 78.156 22.809 78.646 22.896 79.139 22.894 C 79.739 22.894 80.288 22.791 80.791 22.588 C 81.294 22.385 81.705 22.103 82.032 21.744 Z M 93.599 8.931 C 93.881 9.019 94.069 9.089 94.166 9.136 L 94.504 6.644 C 94.425 6.593 94.145 6.502 93.669 6.364 C 93.193 6.226 92.593 6.158 91.868 6.158 C 91.318 6.158 90.809 6.235 90.339 6.388 C 89.881 6.535 89.463 6.784 89.116 7.116 C 88.769 7.446 88.499 7.875 88.304 8.398 C 88.111 8.924 88.014 9.565 88.014 10.324 L 88.014 10.953 L 86.464 10.953 L 86.464 13.375 L 88.014 13.375 L 88.014 22.626 L 91.018 22.626 L 91.018 13.375 L 93.513 13.375 L 93.513 10.953 L 90.994 10.953 L 90.994 10.397 C 90.994 9.833 91.136 9.424 91.418 9.174 C 91.7 8.924 92.052 8.798 92.47 8.798 C 92.94 8.798 93.314 8.842 93.599 8.93 Z M 102.182 15.344 C 102.294 15.783 102.353 16.244 102.353 16.729 C 102.353 17.232 102.294 17.699 102.182 18.128 C 102.071 18.557 101.9 18.934 101.674 19.257 C 101.459 19.57 101.178 19.832 100.851 20.024 C 100.527 20.209 100.148 20.304 99.713 20.304 C 99.278 20.304 98.893 20.209 98.561 20.024 C 98.23 19.836 97.949 19.573 97.738 19.257 C 97.52 18.934 97.356 18.557 97.241 18.128 C 97.129 17.699 97.073 17.232 97.073 16.729 C 97.073 16.244 97.129 15.782 97.241 15.344 C 97.356 14.907 97.526 14.53 97.749 14.216 C 97.966 13.907 98.248 13.651 98.576 13.463 C 98.896 13.275 99.278 13.181 99.713 13.181 C 100.148 13.181 100.527 13.275 100.851 13.463 C 101.177 13.651 101.458 13.908 101.674 14.216 C 101.9 14.53 102.071 14.907 102.182 15.344 Z M 104.954 18.984 C 105.189 18.25 105.307 17.503 105.307 16.742 C 105.307 15.984 105.189 15.243 104.954 14.514 C 104.731 13.803 104.374 13.142 103.902 12.565 C 103.435 11.992 102.852 11.533 102.159 11.186 C 101.465 10.84 100.648 10.663 99.713 10.663 C 98.775 10.663 97.955 10.839 97.256 11.186 C 96.553 11.533 95.971 11.992 95.509 12.565 C 95.047 13.146 94.694 13.806 94.469 14.514 C 94.236 15.233 94.118 15.985 94.119 16.742 C 94.118 17.503 94.236 18.26 94.469 18.985 C 94.694 19.7 95.046 20.368 95.509 20.957 C 95.971 21.54 96.553 22.006 97.256 22.362 C 97.955 22.718 98.775 22.894 99.713 22.894 C 100.648 22.894 101.468 22.718 102.171 22.362 C 102.873 22.007 103.455 21.539 103.914 20.957 C 104.379 20.369 104.732 19.7 104.954 18.984 Z M 114.628 15.968 L 114.628 22.625 L 117.632 22.625 L 117.632 15.724 C 117.632 14.822 117.53 14.046 117.33 13.399 C 117.127 12.755 116.842 12.229 116.468 11.826 C 116.103 11.427 115.646 11.124 115.137 10.942 C 114.62 10.756 114.055 10.665 113.441 10.665 C 112.844 10.665 112.25 10.768 111.662 10.98 C 111.085 11.182 110.548 11.485 110.075 11.873 L 109.931 10.953 L 107.194 10.953 L 107.194 22.626 L 110.196 22.626 L 110.196 14.345 C 110.506 14.038 110.853 13.77 111.227 13.545 C 111.615 13.304 112.064 13.177 112.52 13.181 C 113.185 13.181 113.7 13.425 114.073 13.907 C 114.443 14.392 114.628 15.08 114.628 15.968 Z M 126.719 14.333 C 126.857 14.63 126.942 14.983 126.974 15.386 L 122.518 15.386 C 122.6 14.61 122.877 14.03 123.347 13.643 C 123.817 13.254 124.311 13.06 124.832 13.06 C 125.076 13.06 125.313 13.105 125.552 13.193 C 125.795 13.288 126.017 13.428 126.207 13.607 C 126.41 13.792 126.58 14.034 126.719 14.333 Z M 123.371 19.671 C 122.818 19.236 122.512 18.525 122.448 17.54 L 130.026 17.54 L 130.026 17.008 C 130.026 15.894 129.893 14.933 129.626 14.128 C 129.361 13.319 128.997 12.661 128.538 12.152 C 128.091 11.652 127.53 11.266 126.904 11.026 C 126.272 10.785 125.587 10.662 124.843 10.662 C 124.1 10.662 123.403 10.8 122.748 11.073 C 122.099 11.347 121.513 11.751 121.028 12.261 C 120.537 12.778 120.149 13.416 119.867 14.175 C 119.584 14.933 119.443 15.806 119.443 16.791 C 119.443 17.84 119.596 18.745 119.905 19.504 C 120.211 20.262 120.622 20.894 121.14 21.403 C 121.649 21.908 122.265 22.293 122.941 22.532 C 123.629 22.773 124.349 22.893 125.111 22.893 C 125.708 22.893 126.257 22.849 126.757 22.761 C 127.256 22.67 127.695 22.567 128.065 22.446 C 128.436 22.323 128.747 22.197 128.997 22.058 C 129.247 21.92 129.429 21.812 129.544 21.732 L 128.744 19.283 C 128.644 19.381 128.5 19.486 128.306 19.601 C 128.112 19.713 127.877 19.828 127.6 19.939 C 127.324 20.054 127.007 20.145 126.651 20.218 C 126.296 20.289 125.913 20.327 125.508 20.327 C 124.635 20.327 123.92 20.107 123.371 19.672 Z M 32.268 16 C 32.268 24.836 25.107 32 16.271 32 C 7.435 32 0.271 24.836 0.271 16 C 0.271 7.164 7.435 0 16.271 0 C 25.107 0 32.268 7.164 32.268 16 Z M 16.397 24.921 C 21.824 24.904 25.034 20.448 25.022 16.379 C 25.007 12.314 22.797 9.374 17.926 8.187 C 17.914 8.137 17.905 8.028 17.905 7.925 C 17.896 4.853 20.213 2.143 23.123 1.54 C 22.85 1.447 22.4 1.411 21.971 1.411 C 18.643 1.423 14.972 2.848 12.291 5.065 C 9.545 7.34 7.393 11.176 7.408 15.16 C 7.428 21.185 12.003 24.936 16.397 24.922 Z\" fill=\"var(--token-537ef363-8b25-4d49-958a-87b07e559c24, rgb(179, 179, 179)) /* {&quot;name&quot;:&quot;Light gray on Dark&quot;} */\"></path></g></svg>',svgContentId:3187219888,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2cifpg\",\"data-framer-name\":\"Raiffeissen\",name:\"Raiffeissen\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-z2xfdd\",\"data-framer-name\":\"Raiffeisen\",layout:\"position\",name:\"Raiffeisen\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 128.444 32\"><g id=\"ss2382985547_1\"><path d=\"M 0 0 L 128.444 0 L 128.444 32 L 0 32 Z\" fill=\"transparent\"></path><path d=\"M 64.9 1.536 C 64.9 1.972 65.061 2.361 65.337 2.636 C 65.612 2.912 66.002 3.049 66.438 3.072 C 66.897 3.072 67.265 2.912 67.54 2.636 C 67.816 2.361 67.953 1.994 67.953 1.536 C 67.953 1.1 67.816 0.711 67.54 0.436 C 67.265 0.138 66.897 -0 66.438 -0 C 66.002 -0 65.612 0.16 65.337 0.436 C 65.038 0.711 64.9 1.077 64.9 1.536 Z M 65.107 14.51 L 67.724 14.51 L 67.724 4.47 L 65.107 4.47 Z M 49.385 14.51 L 46.562 9.399 L 45.415 9.399 L 45.415 14.51 L 42.683 14.51 L 42.683 1.605 L 47.87 1.605 C 48.765 1.605 49.523 1.765 50.165 2.041 C 50.808 2.339 51.313 2.774 51.657 3.348 C 52.002 3.92 52.162 4.608 52.162 5.41 C 52.162 6.35 51.91 7.129 51.405 7.772 C 50.9 8.413 50.188 8.849 49.27 9.1 L 52.415 14.533 L 49.385 14.533 L 49.385 14.511 Z M 45.437 3.943 L 45.437 7.244 L 47.572 7.244 C 48.146 7.244 48.582 7.106 48.88 6.808 C 49.179 6.533 49.339 6.098 49.339 5.57 C 49.339 4.997 49.179 4.585 48.88 4.332 C 48.582 4.08 48.123 3.943 47.549 3.943 Z M 60.288 4.47 L 62.904 4.47 L 62.904 14.51 L 60.288 14.51 L 60.288 13.318 C 59.967 13.776 59.53 14.12 59.025 14.395 C 58.52 14.647 57.947 14.785 57.304 14.785 C 56.478 14.785 55.743 14.556 55.1 14.12 C 54.458 13.662 53.953 13.043 53.586 12.24 C 53.219 11.438 53.035 10.521 53.035 9.513 C 53.035 8.481 53.219 7.564 53.586 6.762 C 53.953 5.96 54.458 5.341 55.1 4.882 C 55.743 4.424 56.478 4.218 57.304 4.218 C 57.9 4.213 58.489 4.347 59.025 4.607 C 59.53 4.883 59.944 5.226 60.288 5.684 Z M 59.255 12.08 C 59.599 11.851 59.875 11.53 60.058 11.094 C 60.265 10.659 60.357 10.132 60.357 9.513 C 60.357 8.894 60.265 8.366 60.058 7.931 C 59.852 7.495 59.599 7.152 59.255 6.945 C 58.911 6.716 58.52 6.601 58.084 6.601 C 57.648 6.601 57.235 6.716 56.891 6.945 C 56.547 7.175 56.271 7.496 56.088 7.931 C 55.904 8.367 55.812 8.894 55.812 9.513 C 55.812 10.132 55.904 10.659 56.088 11.094 C 56.271 11.53 56.547 11.874 56.891 12.08 C 57.235 12.309 57.625 12.424 58.084 12.424 C 58.52 12.424 58.911 12.309 59.255 12.08 Z M 73.301 4.47 L 77.341 4.47 L 77.341 3.851 C 77.341 2.751 77.662 1.903 78.282 1.329 C 78.924 0.756 79.774 0.458 80.898 0.458 C 81.312 0.458 81.702 0.504 82.069 0.573 C 82.436 0.642 82.78 0.756 83.079 0.871 L 82.413 2.865 C 82.069 2.728 81.702 2.659 81.288 2.659 C 80.829 2.659 80.485 2.773 80.279 2.98 C 80.072 3.186 79.957 3.53 79.957 3.965 L 79.957 4.47 L 82.712 4.47 L 82.712 6.739 L 79.957 6.739 L 79.957 14.51 L 77.341 14.51 L 77.341 6.739 L 73.301 6.739 L 73.301 14.51 L 70.684 14.51 L 70.684 6.739 L 68.963 6.739 L 68.963 4.47 L 70.684 4.47 L 70.684 3.851 C 70.684 2.751 71.006 1.903 71.625 1.329 C 72.268 0.756 73.117 0.458 74.242 0.458 C 74.655 0.458 75.045 0.504 75.412 0.573 C 75.78 0.642 76.124 0.756 76.423 0.871 L 75.757 2.865 C 75.412 2.728 75.045 2.659 74.632 2.659 C 74.173 2.659 73.829 2.773 73.622 2.98 C 73.416 3.186 73.301 3.53 73.301 3.965 Z M 92.857 10.407 L 86.063 10.407 C 86.155 11.164 86.408 11.714 86.798 12.057 C 87.211 12.401 87.808 12.562 88.588 12.562 C 89.139 12.562 89.644 12.493 90.103 12.332 C 90.543 12.181 90.954 11.956 91.319 11.668 L 92.444 13.456 C 91.939 13.891 91.342 14.212 90.676 14.441 C 90.011 14.671 89.276 14.785 88.519 14.785 C 87.417 14.785 86.499 14.579 85.696 14.166 C 84.924 13.766 84.297 13.132 83.906 12.356 C 83.492 11.576 83.286 10.636 83.286 9.559 C 83.286 8.504 83.492 7.564 83.906 6.74 C 84.319 5.937 84.892 5.295 85.627 4.86 C 86.361 4.424 87.211 4.195 88.175 4.195 C 89.116 4.195 89.965 4.401 90.676 4.837 C 91.388 5.272 91.939 5.891 92.329 6.671 C 92.719 7.473 92.903 8.413 92.903 9.49 L 92.903 10.407 Z M 86.063 8.619 L 90.24 8.619 C 90.172 7.863 89.965 7.312 89.621 6.946 C 89.276 6.579 88.794 6.396 88.175 6.396 C 86.935 6.396 86.247 7.152 86.063 8.619 Z M 94.234 1.536 C 94.234 1.972 94.394 2.361 94.67 2.636 C 94.945 2.912 95.312 3.049 95.772 3.072 C 96.231 3.072 96.598 2.912 96.873 2.636 C 97.149 2.361 97.286 1.994 97.286 1.536 C 97.286 1.1 97.149 0.711 96.873 0.436 C 96.598 0.138 96.231 -0 95.772 -0 C 95.336 -0 94.945 0.16 94.67 0.436 C 94.372 0.711 94.234 1.077 94.234 1.536 Z M 94.44 14.51 L 97.057 14.51 L 97.057 4.47 L 94.44 4.47 Z M 100.385 14.441 C 99.673 14.212 99.076 13.868 98.572 13.41 L 99.788 11.553 C 100.546 12.264 101.487 12.608 102.634 12.608 C 103.139 12.608 103.529 12.539 103.782 12.378 C 104.034 12.218 104.172 11.988 104.172 11.668 C 104.172 11.393 104.057 11.186 103.828 11.003 C 103.598 10.843 103.162 10.659 102.542 10.522 C 101.739 10.338 101.096 10.155 100.568 9.926 C 100.085 9.728 99.659 9.413 99.329 9.009 C 99.008 8.619 98.847 8.092 98.847 7.473 C 98.847 6.808 99.008 6.212 99.352 5.731 C 99.696 5.249 100.178 4.86 100.821 4.584 C 101.464 4.31 102.198 4.195 103.024 4.195 C 103.805 4.195 104.539 4.31 105.205 4.539 C 105.871 4.768 106.444 5.112 106.903 5.548 L 105.687 7.336 C 105.343 7.015 104.929 6.785 104.47 6.602 C 103.998 6.437 103.502 6.352 103.001 6.35 C 102.52 6.35 102.152 6.419 101.9 6.579 C 101.647 6.739 101.509 6.968 101.509 7.267 C 101.509 7.45 101.556 7.588 101.67 7.702 C 101.785 7.817 101.968 7.932 102.221 8.046 C 102.473 8.16 102.864 8.275 103.369 8.39 C 104.057 8.55 104.654 8.756 105.136 8.986 C 105.615 9.201 106.033 9.531 106.352 9.948 C 106.674 10.361 106.834 10.888 106.834 11.553 C 106.834 12.195 106.674 12.768 106.329 13.249 C 106.008 13.731 105.526 14.097 104.884 14.372 C 104.241 14.648 103.484 14.762 102.611 14.762 C 101.856 14.783 101.103 14.674 100.385 14.441 Z M 110.736 10.407 L 117.576 10.407 L 117.576 9.49 C 117.576 8.413 117.392 7.473 117.003 6.671 C 116.612 5.891 116.061 5.272 115.35 4.837 C 114.638 4.401 113.789 4.195 112.848 4.195 C 111.884 4.195 111.035 4.424 110.3 4.86 C 109.566 5.295 108.992 5.937 108.579 6.74 C 108.166 7.564 107.96 8.504 107.96 9.559 C 107.96 10.636 108.166 11.576 108.579 12.356 C 108.971 13.132 109.597 13.766 110.369 14.166 C 111.172 14.579 112.091 14.785 113.192 14.785 C 113.95 14.785 114.684 14.671 115.35 14.441 C 116.016 14.212 116.612 13.891 117.117 13.456 L 115.992 11.668 C 115.627 11.956 115.216 12.181 114.776 12.332 C 114.317 12.493 113.812 12.562 113.261 12.562 C 112.481 12.562 111.884 12.401 111.471 12.057 C 111.081 11.713 110.828 11.164 110.736 10.407 Z M 114.914 8.619 L 110.736 8.619 C 110.92 7.152 111.609 6.396 112.848 6.396 C 113.468 6.396 113.95 6.579 114.294 6.946 C 114.638 7.312 114.845 7.863 114.914 8.619 Z M 126.596 4.653 C 127.124 4.974 127.56 5.41 127.835 6.006 C 128.133 6.602 128.271 7.312 128.271 8.16 L 128.271 14.51 L 125.655 14.51 L 125.655 8.481 C 125.655 7.84 125.517 7.358 125.219 7.037 C 124.92 6.716 124.461 6.556 123.864 6.556 C 123.405 6.556 123.015 6.648 122.648 6.854 C 122.272 7.08 121.957 7.395 121.73 7.771 L 121.73 14.51 L 119.113 14.51 L 119.113 4.47 L 121.73 4.47 L 121.73 5.639 C 122.051 5.18 122.464 4.837 122.969 4.584 C 123.474 4.332 124.048 4.195 124.691 4.195 C 125.425 4.195 126.068 4.355 126.596 4.653 Z M 52.208 28.057 C 52.208 27.3 52.025 26.659 51.657 26.132 C 51.29 25.604 50.762 25.215 50.051 24.963 C 51.152 24.412 51.704 23.496 51.704 22.212 C 51.704 21.135 51.336 20.309 50.579 19.713 C 49.844 19.117 48.788 18.82 47.411 18.82 L 42.683 18.82 L 42.683 31.748 L 47.87 31.748 C 49.27 31.748 50.326 31.427 51.084 30.785 C 51.841 30.143 52.208 29.226 52.208 28.057 Z M 45.437 24.16 L 45.437 21.135 L 47.182 21.135 C 47.756 21.135 48.192 21.249 48.49 21.478 C 48.788 21.708 48.926 22.097 48.926 22.647 C 48.926 23.152 48.788 23.518 48.513 23.771 C 48.238 24.023 47.801 24.16 47.228 24.16 Z M 48.88 29.043 C 48.582 29.295 48.146 29.432 47.549 29.432 L 47.549 29.409 L 45.392 29.409 L 45.392 26.269 L 47.457 26.269 C 48.123 26.269 48.582 26.407 48.88 26.659 C 49.179 26.911 49.316 27.3 49.316 27.828 C 49.316 28.378 49.179 28.791 48.88 29.043 Z M 60.448 21.685 L 63.064 21.685 L 63.064 31.725 L 60.448 31.725 L 60.448 30.533 C 60.126 30.992 59.69 31.336 59.185 31.611 C 58.68 31.863 58.106 32 57.464 32 C 56.637 32 55.903 31.771 55.26 31.336 C 54.618 30.877 54.113 30.258 53.745 29.456 C 53.378 28.654 53.195 27.737 53.195 26.728 C 53.195 25.697 53.378 24.78 53.745 23.977 C 54.113 23.175 54.618 22.556 55.26 22.098 C 55.903 21.64 56.637 21.433 57.464 21.433 C 58.106 21.433 58.657 21.571 59.185 21.823 C 59.69 22.098 60.103 22.442 60.448 22.9 L 60.448 21.684 Z M 59.438 29.318 C 59.782 29.089 60.057 28.768 60.241 28.332 C 60.448 27.897 60.54 27.37 60.54 26.751 C 60.54 26.132 60.448 25.604 60.241 25.169 C 60.034 24.733 59.782 24.39 59.438 24.184 C 59.093 23.954 58.703 23.84 58.267 23.84 C 57.831 23.84 57.418 23.954 57.074 24.184 C 56.729 24.413 56.454 24.734 56.27 25.169 C 56.087 25.605 55.995 26.132 55.995 26.751 C 55.995 27.37 56.087 27.897 56.27 28.332 C 56.454 28.768 56.729 29.112 57.074 29.318 C 57.418 29.547 57.808 29.662 58.267 29.662 C 58.703 29.639 59.093 29.547 59.438 29.318 Z M 74.012 23.244 C 73.737 22.648 73.301 22.212 72.773 21.891 C 72.222 21.57 71.603 21.432 70.868 21.41 C 70.225 21.41 69.652 21.547 69.147 21.799 C 68.642 22.052 68.228 22.395 67.907 22.854 L 67.907 21.685 L 65.291 21.685 L 65.291 31.748 L 67.907 31.748 L 67.907 25.009 C 68.134 24.633 68.449 24.318 68.825 24.092 C 69.192 23.886 69.583 23.794 70.042 23.794 C 70.639 23.794 71.097 23.954 71.396 24.275 C 71.694 24.596 71.832 25.078 71.832 25.72 L 71.832 31.748 L 74.448 31.748 L 74.448 25.398 C 74.448 24.55 74.311 23.84 74.012 23.244 Z M 81.61 26.384 L 85.65 31.748 L 82.528 31.748 L 79.085 27.186 L 79.085 31.748 L 76.469 31.748 L 76.469 18.063 L 79.085 18.063 L 79.085 25.765 L 82.368 21.685 L 85.466 21.685 Z M 1.875 8.275 L 7.246 13.661 L 8.737 12.172 L 8.737 8.619 L 10.252 10.155 L 10.252 14.418 L 12.364 16.527 L 1.461 27.415 L 5.777 31.724 L 16.679 20.836 L 27.581 31.724 L 31.896 27.415 L 20.994 16.527 L 23.105 14.418 L 23.105 10.132 L 24.62 8.619 L 24.62 12.172 L 26.112 13.661 L 31.483 8.275 L 32.929 9.719 C 32.929 8.802 32.653 5.639 30.106 3.14 C 27.26 0.344 24.391 1.971 23.404 2.957 L 18.217 8.137 L 19.502 9.421 L 16.679 12.24 L 13.856 9.421 L 15.141 8.137 L 9.954 2.957 C 8.967 1.994 6.121 0.344 3.252 3.14 C 0.705 5.616 0.429 8.802 0.429 9.719 L 1.875 8.275 Z\" fill=\"var(--token-537ef363-8b25-4d49-958a-87b07e559c24, rgb(179, 179, 179)) /* {&quot;name&quot;:&quot;Light gray on Dark&quot;} */\"></path></g></svg>',svgContentId:2382985547,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pljbvy\",\"data-framer-name\":\"Lensa\",name:\"Lensa\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nbyu23\",\"data-framer-name\":\"Lensa\",layout:\"position\",name:\"Lensa\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 112 32\"><g transform=\"translate(0.429 0)\" id=\"ss1239478944_1\"><path d=\"M 0 0.429 L 111.556 0.429 L 111.556 32.429 L 0 32.429 Z\" fill=\"transparent\"></path><path d=\"M 102.358 5.896 L 104.726 21.71 L 99.99 21.71 Z M 106.2 0.376 L 99.007 0.376 L 94.004 31.624 L 98.508 31.624 L 99.356 25.951 L 105.386 25.951 L 106.234 31.625 L 111.196 31.625 L 106.2 0.375 Z M 71.044 7.881 C 71.044 16.812 80.648 18.013 80.648 24.453 C 80.648 26.705 79.668 27.489 78.104 27.489 C 76.539 27.489 75.556 26.686 75.556 24.453 L 75.556 22.201 L 70.913 22.201 L 70.913 24.119 C 70.913 29.122 73.412 32 78.239 32 C 83.065 32 85.564 29.14 85.564 24.119 C 85.564 15.188 75.961 13.987 75.961 7.55 C 75.961 5.299 76.854 4.466 78.415 4.466 C 79.976 4.466 80.873 5.314 80.873 7.55 L 80.873 8.845 L 85.519 8.845 L 85.519 7.881 C 85.519 2.86 83.061 -0 78.284 -0 C 73.506 -0 71.044 2.86 71.044 7.881 Z M 56.165 31.625 L 61.212 31.625 L 61.212 0.375 L 56.84 0.375 L 56.84 19.072 L 51.793 0.375 L 45.631 0.375 L 45.631 31.625 L 50.052 31.625 L 50.052 8.976 Z M 22.315 18.013 L 22.315 31.636 L 35.716 31.636 L 35.716 27.159 L 27.227 27.159 L 27.227 13.532 L 32.147 13.532 L 32.147 18.013 Z M 27.227 4.822 L 35.716 4.822 L 35.716 0.375 L 22.314 0.375 L 22.314 13.532 L 27.227 13.532 L 27.227 4.822 Z M 0.248 31.625 L 13.248 31.625 L 13.248 27.159 L 5.16 27.159 L 5.16 0.376 L 0.248 0.376 L 0.248 31.625 Z\" fill=\"var(--token-537ef363-8b25-4d49-958a-87b07e559c24, rgb(179, 179, 179)) /* {&quot;name&quot;:&quot;Light gray on Dark&quot;} */\"></path></g></svg>',svgContentId:1239478944,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pqvbo3\",\"data-framer-name\":\"Chamaileon\",name:\"Chamaileon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-zoaawn\",\"data-framer-name\":\"Chamaileon\",layout:\"position\",name:\"Chamaileon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 179.048 32\"><g id=\"ss3535987633_1\"><path d=\"M 0 0 L 178.735 0 L 178.735 31.738 L 0 31.738 Z\" fill=\"transparent\"></path><path d=\"M 20.085 8.509 L 19.947 9.904 C 18.649 8.839 17.033 8.119 15.282 8.119 C 10.997 8.119 7.524 11.593 7.524 15.878 C 7.524 20.163 10.997 23.636 15.282 23.636 C 17.392 23.636 19.302 22.694 20.701 21.294 C 21.584 22.671 22.914 23.636 24.819 23.636 C 29.51 23.636 31.034 19.342 31.034 14.434 C 31.034 5.846 24.213 0 15.77 0 C 7.036 0 0 7.109 0 15.878 C 0 24.646 7.037 31.737 15.77 31.737 C 19.197 31.737 22.491 30.619 24.981 28.706 L 22.933 26.432 C 20.899 27.832 18.395 28.67 15.769 28.67 C 8.841 28.67 3.248 22.95 3.248 15.878 C 3.248 8.805 8.841 3.067 15.77 3.067 C 22.662 3.067 27.858 7.794 27.858 14.362 C 27.858 18.079 27.309 20.569 25.072 20.569 C 24.098 20.569 23.564 20.048 23.269 19.486 C 23.038 19.05 23.016 18.424 23.014 17.698 L 23.014 8.509 Z M 15.282 20.401 C 12.784 20.401 10.758 18.376 10.758 15.878 C 10.758 13.379 12.784 11.354 15.282 11.354 C 17.78 11.354 19.805 13.379 19.805 15.878 C 19.805 18.376 17.78 20.401 15.282 20.401 Z M 42.578 15.869 C 42.578 12.346 45.213 9.366 49.253 9.366 C 51.766 9.366 53.318 10.647 54.106 11.435 L 52.111 13.652 C 51.323 12.814 50.436 12.396 49.401 12.396 C 47.135 12.396 45.854 14.046 45.854 15.869 C 45.854 17.692 47.135 19.342 49.401 19.342 C 50.436 19.342 51.323 18.923 52.111 18.086 L 54.106 20.303 C 53.318 21.091 51.766 22.372 49.253 22.372 C 45.213 22.372 42.578 19.392 42.578 15.869 Z M 67.995 14.588 L 67.995 22.003 L 64.744 22.003 L 64.744 15.13 C 64.744 13.356 63.684 12.395 62.28 12.395 C 60.433 12.395 59.768 13.874 59.768 15.844 L 59.768 22.003 L 56.516 22.003 L 56.516 4.316 L 59.768 4.316 L 59.768 11.213 C 60.728 9.932 62.108 9.366 63.463 9.366 C 66.739 9.366 67.995 11.509 67.995 14.588 Z M 83.414 9.735 L 83.414 22.003 L 80.261 22.003 L 80.211 20.673 C 79.175 21.754 77.743 22.368 76.245 22.372 C 72.55 22.372 70.087 19.318 70.087 15.869 C 70.087 12.42 72.55 9.366 76.245 9.366 C 77.625 9.366 79.103 9.858 80.186 10.967 L 80.261 9.735 Z M 80.261 15.869 C 80.261 13.923 78.733 12.396 76.812 12.396 C 74.89 12.396 73.339 13.923 73.339 15.869 C 73.339 17.815 74.89 19.342 76.812 19.342 C 78.733 19.342 80.261 17.815 80.261 15.869 Z M 106.399 14.588 L 106.399 22.003 L 103.148 22.003 L 103.148 15.13 C 103.148 13.357 102.113 12.395 100.709 12.395 C 98.861 12.395 98.197 13.874 98.197 15.844 L 98.197 22.003 L 94.945 22.003 L 94.945 15.13 C 94.945 13.357 93.886 12.395 92.482 12.395 C 90.634 12.395 89.968 13.874 89.968 15.844 L 89.968 22.003 L 86.717 22.003 L 86.717 9.735 L 89.846 9.735 L 89.919 11.262 C 90.88 9.932 92.285 9.366 93.664 9.366 C 95.684 9.366 96.94 10.203 97.605 11.558 C 98.418 10.13 99.847 9.366 101.423 9.366 C 104.699 9.366 106.399 11.509 106.399 14.588 Z M 121.998 9.735 L 121.998 22.003 L 118.845 22.003 L 118.796 20.673 C 117.759 21.754 116.328 22.368 114.83 22.372 C 111.134 22.372 108.671 19.318 108.671 15.869 C 108.671 12.42 111.134 9.366 114.83 9.366 C 116.209 9.366 117.687 9.858 118.771 10.967 L 118.845 9.735 Z M 118.845 15.869 C 118.845 13.923 117.318 12.396 115.396 12.396 C 113.475 12.396 111.923 13.923 111.923 15.869 C 111.923 17.815 113.475 19.342 115.396 19.342 C 117.318 19.342 118.845 17.815 118.845 15.869 Z M 125.314 9.735 L 128.566 9.735 L 128.566 22.003 L 125.314 22.003 Z M 131.851 4.316 L 135.103 4.316 L 135.103 22.003 L 131.851 22.003 L 131.851 4.316 Z M 150.243 16.928 L 140.907 16.928 C 141.375 18.776 143.026 19.366 144.184 19.366 C 146.031 19.366 146.992 18.628 147.755 18.061 L 149.702 20.278 C 148.962 20.845 147.115 22.372 144.331 22.372 C 140.365 22.372 137.582 19.638 137.582 15.82 C 137.582 11.805 140.611 9.366 144.06 9.366 C 147.706 9.366 150.219 11.928 150.243 15.721 Z M 140.981 14.563 L 146.893 14.563 C 146.597 13.307 145.563 12.346 144.036 12.346 C 142.459 12.346 141.375 13.233 140.981 14.563 Z M 151.93 15.819 C 151.93 12.248 154.837 9.366 158.581 9.366 C 162.276 9.366 165.208 12.223 165.208 15.819 C 165.208 19.465 162.251 22.372 158.581 22.372 C 154.886 22.372 151.93 19.416 151.93 15.819 Z M 162.054 15.844 C 162.054 13.75 160.428 12.395 158.605 12.395 C 156.758 12.395 155.107 13.775 155.107 15.844 C 155.107 17.938 156.782 19.342 158.605 19.342 C 160.404 19.342 162.054 17.963 162.054 15.844 Z M 178.734 14.588 L 178.734 22.003 L 175.483 22.003 L 175.483 15.13 C 175.483 13.357 174.423 12.395 173.019 12.395 C 171.171 12.395 170.507 13.874 170.507 15.844 L 170.507 22.003 L 167.255 22.003 L 167.255 9.735 L 170.384 9.735 L 170.457 11.262 C 171.418 9.932 172.822 9.366 174.202 9.366 C 177.478 9.366 178.734 11.509 178.734 14.588 Z M 126.952 8.208 C 127.767 8.219 128.525 7.79 128.935 7.086 C 129.346 6.382 129.346 5.511 128.935 4.807 C 128.525 4.103 127.767 3.674 126.952 3.685 C 125.714 3.701 124.72 4.709 124.72 5.946 C 124.72 7.184 125.714 8.192 126.952 8.208 Z\" fill=\"var(--token-537ef363-8b25-4d49-958a-87b07e559c24, rgb(179, 179, 179)) /* {&quot;name&quot;:&quot;Light gray on Dark&quot;} */\"></path><path d=\"M 17.422 18.103 C 18.237 18.113 18.994 17.685 19.405 16.981 C 19.815 16.277 19.815 15.406 19.405 14.702 C 18.994 13.998 18.237 13.569 17.422 13.58 C 16.184 13.596 15.189 14.604 15.189 15.841 C 15.189 17.079 16.184 18.087 17.422 18.103 Z\" fill=\"var(--token-537ef363-8b25-4d49-958a-87b07e559c24, rgb(179, 179, 179)) /* {&quot;name&quot;:&quot;Light gray on Dark&quot;} */\"></path></g></svg>',svgContentId:3535987633,withExternalLayout:true})})],speed:75,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k35dho\",\"data-framer-name\":\"About me\",name:\"About me\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m2l8di\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ozykaf\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bdtlgo\",\"data-framer-name\":\"Client card\",name:\"Client card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ho0ohp\",\"data-styles-preset\":\"qjAfxOHBH\",style:{\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\"},children:\"Story\"})}),className:\"framer-6nbapk\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-j8bek0\",\"data-styles-preset\":\"wqLsvZJ6S\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-938fb95d-9d40-4bf6-b38f-de005e94e5b8, rgb(23, 19, 19))\"},children:\"It's\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-673285ad-2827-400c-8857-478e0b102a22, rgb(255, 194, 9))\"},children:\"me\"})]})}),className:\"framer-1yfvrf4\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vdqd3f\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCBK20uHj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1047,intrinsicWidth:919,loading:\"lazy\",pixelHeight:1047,pixelWidth:919,sizes:\"max(min(max((100vw - 328px) / 12, 1px) * 12 + 264px, 480px), 1px)\",src:\"https://framerusercontent.com/images/UFQI9wIsBK3BCA9MzJwoKrv5hk.jpg\",srcSet:\"https://framerusercontent.com/images/UFQI9wIsBK3BCA9MzJwoKrv5hk.jpg?scale-down-to=1024 898w, https://framerusercontent.com/images/UFQI9wIsBK3BCA9MzJwoKrv5hk.jpg 919w\"}},MdgBmO9sm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1047,intrinsicWidth:919,loading:\"lazy\",pixelHeight:1047,pixelWidth:919,sizes:\"calc(max((max(min(100vw, 1200px) - 32px, 1px) - 32px) / 3, 1px) * 3 + 32px)\",src:\"https://framerusercontent.com/images/UFQI9wIsBK3BCA9MzJwoKrv5hk.jpg\",srcSet:\"https://framerusercontent.com/images/UFQI9wIsBK3BCA9MzJwoKrv5hk.jpg?scale-down-to=1024 898w, https://framerusercontent.com/images/UFQI9wIsBK3BCA9MzJwoKrv5hk.jpg 919w\"}},xc3sqoWPP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1047,intrinsicWidth:919,loading:\"lazy\",pixelHeight:1047,pixelWidth:919,sizes:\"calc(max((max((min(100vw, 1200px) - 464px) / 12, 1px) * 12 + 344px) / 3, 1px) * 2 + 4px)\",src:\"https://framerusercontent.com/images/UFQI9wIsBK3BCA9MzJwoKrv5hk.jpg\",srcSet:\"https://framerusercontent.com/images/UFQI9wIsBK3BCA9MzJwoKrv5hk.jpg?scale-down-to=1024 898w, https://framerusercontent.com/images/UFQI9wIsBK3BCA9MzJwoKrv5hk.jpg 919w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1047,intrinsicWidth:919,loading:\"lazy\",pixelHeight:1047,pixelWidth:919,sizes:\"calc(max((max((min(100vw, 1200px) - 480px) / 12, 1px) * 12 + 344px) / 3, 1px) * 2 + 4px)\",src:\"https://framerusercontent.com/images/UFQI9wIsBK3BCA9MzJwoKrv5hk.jpg\",srcSet:\"https://framerusercontent.com/images/UFQI9wIsBK3BCA9MzJwoKrv5hk.jpg?scale-down-to=1024 898w, https://framerusercontent.com/images/UFQI9wIsBK3BCA9MzJwoKrv5hk.jpg 919w\"},className:\"framer-1ld84zj\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w37msf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-nfpqby\",\"data-styles-preset\":\"o49VDWR9u\",style:{\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\"},children:\"Who I am\"})}),className:\"framer-1lxqcv5\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4bz3yn\",\"data-styles-preset\":\"HU9VdGnUv\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\"},children:\"My name is Bonif\\xe1c Gombos, a self-taught product designer focusing on Human-Computer Interaction for the last 5 years. I was born & raised in Hungary. \"})}),className:\"framer-1c3o0n0\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-159gnax\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-nfpqby\",\"data-styles-preset\":\"o49VDWR9u\",style:{\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\"},children:\"What I do\"})}),className:\"framer-1biwtu4\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4bz3yn\",\"data-styles-preset\":\"HU9VdGnUv\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\"},children:\"I have held various roles since my first job, including research and experience design. I am particularly interested in design systems and tokenization. While I am not specialized in B2B or B2C products, I am interested in various industries such as banking, telco and entertainment.\"})}),className:\"framer-qc002m\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uspqlz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-nfpqby\",\"data-styles-preset\":\"o49VDWR9u\",style:{\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\"},children:\"My mission\"})}),className:\"framer-1nqutzv\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4bz3yn\",\"data-styles-preset\":\"HU9VdGnUv\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b7c8ccf-5faf-47ac-afe7-43985a3b2035, rgb(68, 68, 68))\"},children:\"As an open-minded person, I am always eager to understand the needs and pain points of a product's customer base. I am quickly adaptable and enjoy seeing problems transformed into solutions that delight people. In my daily work, I love figuring out how to build maintainable, scalable, and reusable solutions.\"})}),className:\"framer-6y6tpc\",verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Container,{className:\"framer-1sdfv95-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MdgBmO9sm:{variant:\"OnzMJm1E3\"}},children:/*#__PURE__*/_jsx(TabBar,{height:\"100%\",id:\"qwz24a6gW\",layoutId:\"qwz24a6gW\",variant:\"kuyJZR7tS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sfia68\",\"data-framer-name\":\"Footer\",name:\"Footer\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m40icp-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCBK20uHj:{variant:\"h8drTcwdQ\"},MdgBmO9sm:{variant:\"qFdeaTlfe\"},xc3sqoWPP:{variant:\"AR889a1Tu\"}},children:/*#__PURE__*/_jsx(CompactFooter,{height:\"100%\",id:\"KA1k0X0UR\",layoutId:\"KA1k0X0UR\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"sg7T2tY1S\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=['.framer-KsZLD[data-border=\"true\"]::after, .framer-KsZLD [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-KsZLD { background: var(--token-095f192e-1863-4fef-89de-ee498bdd6619, rgb(246, 246, 246)) /* {\"name\":\"Container on light\"} */; }`,\".framer-KsZLD.framer-1kuiu7z, .framer-KsZLD .framer-1kuiu7z { display: block; }\",\".framer-KsZLD.framer-13mbul4 { align-content: center; align-items: center; background-color: var(--token-095f192e-1863-4fef-89de-ee498bdd6619, #f6f6f6); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1025px; }\",\".framer-KsZLD .framer-1a27xdz { align-content: center; align-items: center; background-color: var(--token-095f192e-1863-4fef-89de-ee498bdd6619, #f6f6f6); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 100vh; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-KsZLD .framer-1xs5a1k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: auto; justify-content: center; max-width: 769px; overflow: visible; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-KsZLD .framer-175k78a, .framer-KsZLD .framer-1djgnlr, .framer-KsZLD .framer-p0axv4, .framer-KsZLD .framer-6nbapk, .framer-KsZLD .framer-1yfvrf4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KsZLD .framer-1m9k6wm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 80%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KsZLD .framer-dp3bou-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-KsZLD .framer-s0wp20, .framer-KsZLD .framer-k35dho { align-content: center; align-items: center; background-color: var(--token-8b784eaa-9413-450f-bce9-661070a44f57, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-KsZLD .framer-5p4n8l { display: grid; flex: none; gap: 32px; grid-auto-rows: min-content; grid-template-columns: repeat(12, minmax(1px, 1fr)); grid-template-rows: repeat(1, min-content); height: auto; justify-content: start; max-width: 1200px; overflow: hidden; padding: 96px 64px 120px 64px; position: relative; width: 100%; }\",\".framer-KsZLD .framer-xodoyj { align-self: start; display: grid; flex: none; gap: 4px; grid-auto-rows: min-content; grid-column: 1 / -1; grid-template-columns: repeat(3, minmax(1px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: start; justify-self: start; overflow: visible; padding: 24px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-KsZLD .framer-kbw4pv, .framer-KsZLD .framer-1jhl6lw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; align-self: start; flex: none; grid-column: 1 / -1; height: auto; justify-self: start; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KsZLD .framer-ops675, .framer-KsZLD .framer-1yrggj1 { align-self: start; display: grid; flex: none; gap: 0px; grid-auto-rows: min-content; grid-column: auto / span 6; grid-template-columns: repeat(1, minmax(1px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; justify-self: start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-KsZLD .framer-xtnwoc, .framer-KsZLD .framer-1hcuc8g { -webkit-filter: brightness(1); align-content: center; align-items: center; align-self: center; aspect-ratio: 1.3625866050808315 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; filter: brightness(1); flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: var(--framer-aspect-ratio-supported, 317px); justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-KsZLD .framer-a5yied, .framer-KsZLD .framer-r1uwha, .framer-KsZLD .framer-178c3uu, .framer-KsZLD .framer-13tu8y7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; align-self: start; flex: none; grid-column: auto / span 6; height: auto; justify-self: start; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KsZLD .framer-14cirqp, .framer-KsZLD .framer-kke8fu { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 8px; grid-column: auto / span 6; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",'.framer-KsZLD .framer-1wvlpp, .framer-KsZLD .framer-5mp4x9, .framer-KsZLD .framer-1xumn1, .framer-KsZLD .framer-1jwixmc, .framer-KsZLD .framer-1ft7qo5, .framer-KsZLD .framer-flhprc, .framer-KsZLD .framer-1y70ck9, .framer-KsZLD .framer-1cj4wz { --border-bottom-width: 2px; --border-color: var(--token-1d8f1c4b-63e4-4e2d-9f36-65bdee1217f7, #e0e0e0) /* {\"name\":\"Border Gray\"} */; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: var(--token-095f192e-1863-4fef-89de-ee498bdd6619, #f6f6f6); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: min-content; }',\".framer-KsZLD .framer-2yx2pw, .framer-KsZLD .framer-ni6mzu, .framer-KsZLD .framer-1cykqha, .framer-KsZLD .framer-1ra31o1, .framer-KsZLD .framer-xgsudh, .framer-KsZLD .framer-kf6y04, .framer-KsZLD .framer-egn0md, .framer-KsZLD .framer-1p7otop { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KsZLD .framer-ajudgl { align-content: center; align-items: center; background-color: var(--token-6788be1f-70b5-4de2-8237-add28e742eda, #212121); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: auto; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-KsZLD .framer-name4 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: grid; flex: none; gap: 32px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(1, min-content); height: auto; justify-content: center; max-width: 1200px; overflow: hidden; padding: 60px 64px 60px 64px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-KsZLD .framer-i1qnf { align-content: center; align-items: center; align-self: start; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; grid-column: 1 / -1; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 60px 0px 20px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-KsZLD .framer-nse18a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-KsZLD .framer-c69atb-container { flex: none; height: 144px; position: relative; width: 100%; }\",\".framer-KsZLD .framer-f4ipmt, .framer-KsZLD .framer-1rojeld, .framer-KsZLD .framer-29d8qa, .framer-KsZLD .framer-b3kjkg, .framer-KsZLD .framer-cumghs, .framer-KsZLD .framer-enayw9, .framer-KsZLD .framer-ba8kla, .framer-KsZLD .framer-1qo2bk9, .framer-KsZLD .framer-oj8tg0, .framer-KsZLD .framer-2cifpg, .framer-KsZLD .framer-pljbvy, .framer-KsZLD .framer-1pqvbo3 { 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 0px 0px 0px; position: relative; width: min-content; }\",\".framer-KsZLD .framer-1h27sjo { flex: none; height: 40px; position: relative; width: 152px; }\",\".framer-KsZLD .framer-1v5p6yf { flex: none; height: 40px; position: relative; width: 221px; }\",\".framer-KsZLD .framer-1mde15n { flex: none; height: 40px; position: relative; width: 163px; }\",\".framer-KsZLD .framer-1oirgio { flex: none; height: 40px; position: relative; width: 161px; }\",\".framer-KsZLD .framer-1nwq7po { flex: none; height: 40px; position: relative; width: 140px; }\",\".framer-KsZLD .framer-1t1e7e4 { flex: none; height: 40px; position: relative; width: 224px; }\",\".framer-KsZLD .framer-10px80y-container { flex: none; height: 120px; position: relative; width: 100%; }\",\".framer-KsZLD .framer-1jufgt9 { flex: none; height: 32px; position: relative; width: 121px; }\",\".framer-KsZLD .framer-1v0583p { flex: none; height: 32px; position: relative; width: 177px; }\",\".framer-KsZLD .framer-ccge0r { flex: none; height: 32px; position: relative; width: 130px; }\",\".framer-KsZLD .framer-z2xfdd { flex: none; height: 32px; position: relative; width: 128px; }\",\".framer-KsZLD .framer-1nbyu23 { flex: none; height: 32px; position: relative; width: 112px; }\",\".framer-KsZLD .framer-zoaawn { flex: none; height: 32px; position: relative; width: 179px; }\",\".framer-KsZLD .framer-m2l8di { display: grid; flex: none; gap: 32px; grid-auto-rows: min-content; grid-template-columns: repeat(12, minmax(1px, 1fr)); grid-template-rows: repeat(1, min-content); height: auto; justify-content: start; max-width: 1200px; overflow: hidden; padding: 120px 64px 120px 64px; position: relative; width: 100%; }\",\".framer-KsZLD .framer-1ozykaf { align-self: start; display: grid; flex: none; gap: 4px; grid-auto-rows: min-content; grid-column: 1 / -1; grid-template-columns: repeat(3, minmax(1px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-KsZLD .framer-1bdtlgo { align-content: flex-start; align-items: flex-start; align-self: start; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-KsZLD .framer-vdqd3f { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; grid-column: auto / span 2; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-KsZLD .framer-1ld84zj { -webkit-filter: brightness(1); align-content: center; align-items: center; aspect-ratio: 1.3625866050808315 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; filter: brightness(1); flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: var(--framer-aspect-ratio-supported, 438px); justify-content: flex-start; overflow: hidden; padding: 40px 40px 40px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-KsZLD .framer-w37msf { align-self: start; display: grid; flex: none; gap: 4px; grid-auto-rows: minmax(0, 1fr); grid-column: 1 / -1; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 24px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-KsZLD .framer-1lxqcv5, .framer-KsZLD .framer-1biwtu4, .framer-KsZLD .framer-1nqutzv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; align-self: start; flex: none; height: auto; justify-self: start; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KsZLD .framer-1c3o0n0, .framer-KsZLD .framer-qc002m, .framer-KsZLD .framer-6y6tpc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; align-self: start; flex: none; grid-column: auto / span 2; height: auto; justify-self: start; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KsZLD .framer-159gnax { align-self: start; display: grid; flex: none; gap: 4px; grid-auto-rows: minmax(0, 1fr); grid-column: 1 / -1; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 16px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-KsZLD .framer-uspqlz { align-self: start; display: grid; flex: none; gap: 4px; grid-auto-rows: minmax(0, 1fr); grid-column: 1 / -1; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-KsZLD .framer-1sdfv95-container { flex: none; height: auto; left: 50%; position: fixed; top: 32px; transform: translateX(-50%); width: auto; z-index: 2; }\",\".framer-KsZLD .framer-1sfia68 { align-content: center; align-items: center; background-color: var(--token-8b784eaa-9413-450f-bce9-661070a44f57, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-KsZLD .framer-1m40icp-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-KsZLD.framer-13mbul4, .framer-KsZLD .framer-1a27xdz, .framer-KsZLD .framer-1xs5a1k, .framer-KsZLD .framer-s0wp20, .framer-KsZLD .framer-xtnwoc, .framer-KsZLD .framer-1hcuc8g, .framer-KsZLD .framer-14cirqp, .framer-KsZLD .framer-1wvlpp, .framer-KsZLD .framer-5mp4x9, .framer-KsZLD .framer-1xumn1, .framer-KsZLD .framer-1jwixmc, .framer-KsZLD .framer-kke8fu, .framer-KsZLD .framer-1ft7qo5, .framer-KsZLD .framer-flhprc, .framer-KsZLD .framer-1y70ck9, .framer-KsZLD .framer-1cj4wz, .framer-KsZLD .framer-ajudgl, .framer-KsZLD .framer-i1qnf, .framer-KsZLD .framer-nse18a, .framer-KsZLD .framer-f4ipmt, .framer-KsZLD .framer-1rojeld, .framer-KsZLD .framer-29d8qa, .framer-KsZLD .framer-b3kjkg, .framer-KsZLD .framer-cumghs, .framer-KsZLD .framer-enayw9, .framer-KsZLD .framer-ba8kla, .framer-KsZLD .framer-1qo2bk9, .framer-KsZLD .framer-oj8tg0, .framer-KsZLD .framer-2cifpg, .framer-KsZLD .framer-pljbvy, .framer-KsZLD .framer-1pqvbo3, .framer-KsZLD .framer-k35dho, .framer-KsZLD .framer-1bdtlgo, .framer-KsZLD .framer-vdqd3f, .framer-KsZLD .framer-1ld84zj, .framer-KsZLD .framer-1sfia68 { gap: 0px; } .framer-KsZLD.framer-13mbul4 > *, .framer-KsZLD .framer-s0wp20 > *, .framer-KsZLD .framer-k35dho > *, .framer-KsZLD .framer-1sfia68 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-KsZLD.framer-13mbul4 > :first-child, .framer-KsZLD .framer-1a27xdz > :first-child, .framer-KsZLD .framer-1xs5a1k > :first-child, .framer-KsZLD .framer-s0wp20 > :first-child, .framer-KsZLD .framer-xtnwoc > :first-child, .framer-KsZLD .framer-1hcuc8g > :first-child, .framer-KsZLD .framer-ajudgl > :first-child, .framer-KsZLD .framer-i1qnf > :first-child, .framer-KsZLD .framer-nse18a > :first-child, .framer-KsZLD .framer-k35dho > :first-child, .framer-KsZLD .framer-1bdtlgo > :first-child, .framer-KsZLD .framer-vdqd3f > :first-child, .framer-KsZLD .framer-1ld84zj > :first-child, .framer-KsZLD .framer-1sfia68 > :first-child { margin-top: 0px; } .framer-KsZLD.framer-13mbul4 > :last-child, .framer-KsZLD .framer-1a27xdz > :last-child, .framer-KsZLD .framer-1xs5a1k > :last-child, .framer-KsZLD .framer-s0wp20 > :last-child, .framer-KsZLD .framer-xtnwoc > :last-child, .framer-KsZLD .framer-1hcuc8g > :last-child, .framer-KsZLD .framer-ajudgl > :last-child, .framer-KsZLD .framer-i1qnf > :last-child, .framer-KsZLD .framer-nse18a > :last-child, .framer-KsZLD .framer-k35dho > :last-child, .framer-KsZLD .framer-1bdtlgo > :last-child, .framer-KsZLD .framer-vdqd3f > :last-child, .framer-KsZLD .framer-1ld84zj > :last-child, .framer-KsZLD .framer-1sfia68 > :last-child { margin-bottom: 0px; } .framer-KsZLD .framer-1a27xdz > *, .framer-KsZLD .framer-ajudgl > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-KsZLD .framer-1xs5a1k > *, .framer-KsZLD .framer-i1qnf > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-KsZLD .framer-xtnwoc > *, .framer-KsZLD .framer-1hcuc8g > *, .framer-KsZLD .framer-1ld84zj > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-KsZLD .framer-14cirqp > *, .framer-KsZLD .framer-kke8fu > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-KsZLD .framer-14cirqp > :first-child, .framer-KsZLD .framer-1wvlpp > :first-child, .framer-KsZLD .framer-5mp4x9 > :first-child, .framer-KsZLD .framer-1xumn1 > :first-child, .framer-KsZLD .framer-1jwixmc > :first-child, .framer-KsZLD .framer-kke8fu > :first-child, .framer-KsZLD .framer-1ft7qo5 > :first-child, .framer-KsZLD .framer-flhprc > :first-child, .framer-KsZLD .framer-1y70ck9 > :first-child, .framer-KsZLD .framer-1cj4wz > :first-child, .framer-KsZLD .framer-f4ipmt > :first-child, .framer-KsZLD .framer-1rojeld > :first-child, .framer-KsZLD .framer-29d8qa > :first-child, .framer-KsZLD .framer-b3kjkg > :first-child, .framer-KsZLD .framer-cumghs > :first-child, .framer-KsZLD .framer-enayw9 > :first-child, .framer-KsZLD .framer-ba8kla > :first-child, .framer-KsZLD .framer-1qo2bk9 > :first-child, .framer-KsZLD .framer-oj8tg0 > :first-child, .framer-KsZLD .framer-2cifpg > :first-child, .framer-KsZLD .framer-pljbvy > :first-child, .framer-KsZLD .framer-1pqvbo3 > :first-child { margin-left: 0px; } .framer-KsZLD .framer-14cirqp > :last-child, .framer-KsZLD .framer-1wvlpp > :last-child, .framer-KsZLD .framer-5mp4x9 > :last-child, .framer-KsZLD .framer-1xumn1 > :last-child, .framer-KsZLD .framer-1jwixmc > :last-child, .framer-KsZLD .framer-kke8fu > :last-child, .framer-KsZLD .framer-1ft7qo5 > :last-child, .framer-KsZLD .framer-flhprc > :last-child, .framer-KsZLD .framer-1y70ck9 > :last-child, .framer-KsZLD .framer-1cj4wz > :last-child, .framer-KsZLD .framer-f4ipmt > :last-child, .framer-KsZLD .framer-1rojeld > :last-child, .framer-KsZLD .framer-29d8qa > :last-child, .framer-KsZLD .framer-b3kjkg > :last-child, .framer-KsZLD .framer-cumghs > :last-child, .framer-KsZLD .framer-enayw9 > :last-child, .framer-KsZLD .framer-ba8kla > :last-child, .framer-KsZLD .framer-1qo2bk9 > :last-child, .framer-KsZLD .framer-oj8tg0 > :last-child, .framer-KsZLD .framer-2cifpg > :last-child, .framer-KsZLD .framer-pljbvy > :last-child, .framer-KsZLD .framer-1pqvbo3 > :last-child { margin-right: 0px; } .framer-KsZLD .framer-1wvlpp > *, .framer-KsZLD .framer-5mp4x9 > *, .framer-KsZLD .framer-1xumn1 > *, .framer-KsZLD .framer-1jwixmc > *, .framer-KsZLD .framer-1ft7qo5 > *, .framer-KsZLD .framer-flhprc > *, .framer-KsZLD .framer-1y70ck9 > *, .framer-KsZLD .framer-1cj4wz > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-KsZLD .framer-nse18a > *, .framer-KsZLD .framer-1bdtlgo > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-KsZLD .framer-f4ipmt > *, .framer-KsZLD .framer-1rojeld > *, .framer-KsZLD .framer-29d8qa > *, .framer-KsZLD .framer-b3kjkg > *, .framer-KsZLD .framer-cumghs > *, .framer-KsZLD .framer-enayw9 > *, .framer-KsZLD .framer-ba8kla > *, .framer-KsZLD .framer-1qo2bk9 > *, .framer-KsZLD .framer-oj8tg0 > *, .framer-KsZLD .framer-2cifpg > *, .framer-KsZLD .framer-pljbvy > *, .framer-KsZLD .framer-1pqvbo3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-KsZLD .framer-vdqd3f > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\"@media (min-width: 1025px) { .framer-KsZLD .hidden-13mbul4 { display: none !important; } }\",`@media (min-width: 769px) and (max-width: 1024px) { .framer-KsZLD .hidden-1cungbq { display: none !important; } .${metadata.bodyClassName}-framer-KsZLD { background: var(--token-095f192e-1863-4fef-89de-ee498bdd6619, rgb(246, 246, 246)) /* {\"name\":\"Container on light\"} */; } .framer-KsZLD.framer-13mbul4 { width: 769px; } .framer-KsZLD .framer-1xs5a1k { padding: 0px 56px 0px 56px; } .framer-KsZLD .framer-5p4n8l { padding: 96px 56px 120px 56px; } .framer-KsZLD .framer-xodoyj, .framer-KsZLD .framer-nse18a, .framer-KsZLD .framer-1ozykaf { order: 0; } .framer-KsZLD .framer-ops675, .framer-KsZLD .framer-c69atb-container, .framer-KsZLD .framer-w37msf { order: 1; } .framer-KsZLD .framer-xtnwoc { aspect-ratio: 1.1116751269035532 / 1; height: var(--framer-aspect-ratio-supported, 281px); } .framer-KsZLD .framer-1yrggj1, .framer-KsZLD .framer-159gnax { order: 2; } .framer-KsZLD .framer-1hcuc8g { aspect-ratio: 1.112099644128114 / 1; height: var(--framer-aspect-ratio-supported, 281px); } .framer-KsZLD .framer-a5yied, .framer-KsZLD .framer-uspqlz { order: 3; } .framer-KsZLD .framer-r1uwha { order: 4; } .framer-KsZLD .framer-178c3uu { order: 5; } .framer-KsZLD .framer-13tu8y7 { order: 6; } .framer-KsZLD .framer-14cirqp { order: 7; } .framer-KsZLD .framer-kke8fu { order: 8; } .framer-KsZLD .framer-name4 { max-width: unset; padding: 60px 0px 60px 0px; } .framer-KsZLD .framer-i1qnf { height: 100%; } .framer-KsZLD .framer-m2l8di { padding: 120px 56px 120px 56px; } .framer-KsZLD .framer-1ld84zj { aspect-ratio: 1.1732605729877217 / 1; height: var(--framer-aspect-ratio-supported, 372px); } .framer-KsZLD .framer-1sdfv95-container { left: 50%; } .framer-KsZLD .framer-1sfia68 { padding: 40px 56px 0px 56px; }}`,`@media (min-width: 481px) and (max-width: 768px) { .framer-KsZLD .hidden-1jsqiqk { display: none !important; } .${metadata.bodyClassName}-framer-KsZLD { background: var(--token-095f192e-1863-4fef-89de-ee498bdd6619, rgb(246, 246, 246)) /* {\"name\":\"Container on light\"} */; } .framer-KsZLD.framer-13mbul4 { width: 481px; } .framer-KsZLD .framer-1xs5a1k { gap: 24px; max-width: 480px; padding: 0px 32px 0px 32px; } .framer-KsZLD .framer-5p4n8l { gap: 24px; max-width: unset; padding: 76px 32px 96px 32px; } .framer-KsZLD .framer-xodoyj { align-self: center; grid-template-columns: repeat(1, minmax(1px, 1fr)); justify-self: center; max-width: 480px; order: 0; padding: 20px 0px 20px 0px; } .framer-KsZLD .framer-ops675 { align-self: center; grid-column: 1 / -1; justify-content: start; justify-self: center; max-width: 480px; order: 1; } .framer-KsZLD .framer-xtnwoc, .framer-KsZLD .framer-1hcuc8g { grid-column: 1 / -1; height: var(--framer-aspect-ratio-supported, 306px); order: 0; } .framer-KsZLD .framer-1yrggj1 { align-self: center; grid-column: 1 / -1; justify-content: start; justify-self: center; max-width: 480px; order: 5; } .framer-KsZLD .framer-a5yied { align-self: center; grid-column: 1 / -1; justify-self: center; max-width: 480px; order: 2; } .framer-KsZLD .framer-r1uwha { align-self: center; grid-column: 1 / -1; justify-self: center; max-width: 480px; order: 6; } .framer-KsZLD .framer-178c3uu { align-self: center; grid-column: 1 / -1; justify-self: center; max-width: 480px; order: 3; } .framer-KsZLD .framer-13tu8y7 { align-self: center; grid-column: 1 / -1; justify-self: center; max-width: 480px; order: 7; } .framer-KsZLD .framer-14cirqp { align-self: center; grid-column: 1 / -1; justify-self: center; max-width: 480px; order: 4; padding: 0px 0px 16px 0px; } .framer-KsZLD .framer-kke8fu { align-self: center; grid-column: 1 / -1; justify-self: center; max-width: 480px; order: 8; } .framer-KsZLD .framer-name4 { gap: 24px; grid-template-columns: repeat(1, minmax(200px, 1fr)); max-width: unset; padding: 48px 0px 16px 0px; } .framer-KsZLD .framer-i1qnf { align-self: center; gap: 24px; justify-self: center; padding: 48px 0px 48px 0px; } .framer-KsZLD .framer-nse18a { order: 0; } .framer-KsZLD .framer-10px80y-container { order: 2; } .framer-KsZLD .framer-m2l8di { gap: 24px; max-width: unset; padding: 96px 32px 96px 32px; } .framer-KsZLD .framer-1ozykaf { align-self: center; gap: 20px; grid-template-columns: repeat(1, minmax(1px, 1fr)); justify-self: center; max-width: 480px; order: 0; } .framer-KsZLD .framer-1bdtlgo { align-content: unset; align-items: unset; display: grid; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(1px, 1fr)); grid-template-rows: repeat(1, min-content); justify-content: start; order: 0; padding: 0px 0px 20px 0px; } .framer-KsZLD .framer-6nbapk, .framer-KsZLD .framer-1yfvrf4 { align-self: start; grid-column: 1 / -1; justify-self: start; } .framer-KsZLD .framer-vdqd3f { grid-column: auto / span 1; order: 1; } .framer-KsZLD .framer-1ld84zj { height: var(--framer-aspect-ratio-supported, 306px); } .framer-KsZLD .framer-w37msf { align-self: center; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(1px, 1fr)); grid-template-rows: repeat(1, min-content); justify-content: start; justify-self: center; max-width: 480px; order: 1; padding: 20px 0px 12px 0px; } .framer-KsZLD .framer-1lxqcv5 { align-self: center; justify-self: center; } .framer-KsZLD .framer-1c3o0n0 { align-self: center; grid-column: auto / span 1; justify-self: center; } .framer-KsZLD .framer-159gnax { align-self: center; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(1px, 1fr)); grid-template-rows: repeat(1, min-content); justify-content: start; justify-self: center; max-width: 480px; order: 2; padding: 12px 0px 12px 0px; } .framer-KsZLD .framer-qc002m, .framer-KsZLD .framer-6y6tpc { grid-column: auto / span 1; } .framer-KsZLD .framer-uspqlz { align-self: center; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(1px, 1fr)); grid-template-rows: repeat(1, min-content); justify-content: start; justify-self: center; max-width: 480px; order: 3; padding: 12px 0px 0px 0px; } .framer-KsZLD .framer-1sdfv95-container { left: 50%; } .framer-KsZLD .framer-1sfia68 { padding: 24px 32px 0px 32px; } .framer-KsZLD .framer-1m40icp-container { max-width: 480px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-KsZLD .framer-1xs5a1k, .framer-KsZLD .framer-5p4n8l, .framer-KsZLD .framer-name4, .framer-KsZLD .framer-i1qnf, .framer-KsZLD .framer-m2l8di, .framer-KsZLD .framer-1ozykaf, .framer-KsZLD .framer-1bdtlgo, .framer-KsZLD .framer-w37msf, .framer-KsZLD .framer-159gnax, .framer-KsZLD .framer-uspqlz { gap: 0px; } .framer-KsZLD .framer-1xs5a1k > *, .framer-KsZLD .framer-i1qnf > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-KsZLD .framer-1xs5a1k > :first-child, .framer-KsZLD .framer-i1qnf > :first-child { margin-top: 0px; } .framer-KsZLD .framer-1xs5a1k > :last-child, .framer-KsZLD .framer-i1qnf > :last-child { margin-bottom: 0px; } .framer-KsZLD .framer-5p4n8l > *, .framer-KsZLD .framer-5p4n8l > :first-child, .framer-KsZLD .framer-5p4n8l > :last-child, .framer-KsZLD .framer-name4 > *, .framer-KsZLD .framer-name4 > :first-child, .framer-KsZLD .framer-name4 > :last-child, .framer-KsZLD .framer-m2l8di > *, .framer-KsZLD .framer-m2l8di > :first-child, .framer-KsZLD .framer-m2l8di > :last-child, .framer-KsZLD .framer-1ozykaf > *, .framer-KsZLD .framer-1ozykaf > :first-child, .framer-KsZLD .framer-1ozykaf > :last-child, .framer-KsZLD .framer-1bdtlgo > *, .framer-KsZLD .framer-1bdtlgo > :first-child, .framer-KsZLD .framer-1bdtlgo > :last-child, .framer-KsZLD .framer-w37msf > *, .framer-KsZLD .framer-w37msf > :first-child, .framer-KsZLD .framer-w37msf > :last-child, .framer-KsZLD .framer-159gnax > *, .framer-KsZLD .framer-159gnax > :first-child, .framer-KsZLD .framer-159gnax > :last-child, .framer-KsZLD .framer-uspqlz > *, .framer-KsZLD .framer-uspqlz > :first-child, .framer-KsZLD .framer-uspqlz > :last-child { margin: 0px; } }}`,`@media (max-width: 480px) { .framer-KsZLD .hidden-7sryg0 { display: none !important; } .${metadata.bodyClassName}-framer-KsZLD { background: var(--token-095f192e-1863-4fef-89de-ee498bdd6619, rgb(246, 246, 246)) /* {\"name\":\"Container on light\"} */; } .framer-KsZLD.framer-13mbul4 { width: 280px; } .framer-KsZLD .framer-1xs5a1k { gap: 20px; padding: 0px 24px 0px 24px; } .framer-KsZLD .framer-5p4n8l { gap: 20px; grid-template-columns: repeat(1, minmax(1px, 1fr)); padding: 48px 16px 64px 16px; } .framer-KsZLD .framer-xodoyj { gap: 0px; grid-template-columns: repeat(1, minmax(1px, 1fr)); order: 0; padding: 16px 0px 16px 0px; } .framer-KsZLD .framer-ops675 { grid-column: auto / span 1; justify-content: start; order: 1; } .framer-KsZLD .framer-xtnwoc, .framer-KsZLD .framer-1hcuc8g { grid-column: 1 / -1; height: var(--framer-aspect-ratio-supported, 182px); order: 0; } .framer-KsZLD .framer-1yrggj1 { grid-column: auto / span 1; justify-content: start; order: 5; } .framer-KsZLD .framer-a5yied { grid-column: 1 / -1; order: 2; } .framer-KsZLD .framer-r1uwha { grid-column: 1 / -1; order: 6; } .framer-KsZLD .framer-178c3uu { grid-column: auto / span 1; order: 3; } .framer-KsZLD .framer-13tu8y7 { grid-column: auto / span 1; order: 7; } .framer-KsZLD .framer-14cirqp { grid-column: auto / span 1; order: 4; padding: 0px 0px 8px 0px; } .framer-KsZLD .framer-kke8fu { grid-column: auto / span 1; order: 8; padding: 0px 0px 8px 0px; } .framer-KsZLD .framer-name4 { gap: 20px; grid-template-columns: repeat(1, minmax(200px, 1fr)); max-width: unset; padding: 40px 0px 16px 0px; } .framer-KsZLD .framer-i1qnf { gap: 16px; padding: 24px 0px 24px 0px; } .framer-KsZLD .framer-nse18a { gap: 0px; order: 0; } .framer-KsZLD .framer-10px80y-container { order: 2; } .framer-KsZLD .framer-m2l8di { gap: 20px; grid-template-columns: repeat(1, minmax(1px, 1fr)); padding: 64px 16px 64px 16px; } .framer-KsZLD .framer-1ozykaf { gap: 16px; order: 0; } .framer-KsZLD .framer-1bdtlgo { align-content: unset; align-items: unset; display: grid; gap: 0px; grid-auto-rows: min-content; grid-column: 1 / -1; grid-template-columns: repeat(7, minmax(1px, 1fr)); grid-template-rows: repeat(1, min-content); justify-content: center; order: 0; padding: 0px 0px 8px 0px; } .framer-KsZLD .framer-6nbapk, .framer-KsZLD .framer-1yfvrf4 { align-self: start; grid-column: 1 / -1; justify-self: start; } .framer-KsZLD .framer-vdqd3f { grid-column: 1 / -1; order: 1; } .framer-KsZLD .framer-1ld84zj { height: var(--framer-aspect-ratio-supported, 182px); } .framer-KsZLD .framer-w37msf { gap: 16px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(1px, 1fr)); grid-template-rows: repeat(1, min-content); justify-content: start; order: 1; padding: 16px 0px 8px 0px; } .framer-KsZLD .framer-1c3o0n0, .framer-KsZLD .framer-qc002m, .framer-KsZLD .framer-6y6tpc { grid-column: auto / span 1; } .framer-KsZLD .framer-159gnax { gap: 16px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(1px, 1fr)); grid-template-rows: repeat(1, min-content); justify-content: start; order: 2; padding: 8px 0px 8px 0px; } .framer-KsZLD .framer-uspqlz { gap: 16px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(1px, 1fr)); grid-template-rows: repeat(1, min-content); justify-content: start; order: 3; padding: 8px 0px 0px 0px; } .framer-KsZLD .framer-1sdfv95-container { left: 50%; top: 16px; } .framer-KsZLD .framer-1sfia68 { padding: 32px 16px 0px 16px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-KsZLD .framer-1xs5a1k, .framer-KsZLD .framer-5p4n8l, .framer-KsZLD .framer-xodoyj, .framer-KsZLD .framer-name4, .framer-KsZLD .framer-i1qnf, .framer-KsZLD .framer-nse18a, .framer-KsZLD .framer-m2l8di, .framer-KsZLD .framer-1ozykaf, .framer-KsZLD .framer-1bdtlgo, .framer-KsZLD .framer-w37msf, .framer-KsZLD .framer-159gnax, .framer-KsZLD .framer-uspqlz { gap: 0px; } .framer-KsZLD .framer-1xs5a1k > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-KsZLD .framer-1xs5a1k > :first-child, .framer-KsZLD .framer-i1qnf > :first-child, .framer-KsZLD .framer-nse18a > :first-child { margin-top: 0px; } .framer-KsZLD .framer-1xs5a1k > :last-child, .framer-KsZLD .framer-i1qnf > :last-child, .framer-KsZLD .framer-nse18a > :last-child { margin-bottom: 0px; } .framer-KsZLD .framer-5p4n8l > *, .framer-KsZLD .framer-5p4n8l > :first-child, .framer-KsZLD .framer-5p4n8l > :last-child, .framer-KsZLD .framer-xodoyj > *, .framer-KsZLD .framer-xodoyj > :first-child, .framer-KsZLD .framer-xodoyj > :last-child, .framer-KsZLD .framer-name4 > *, .framer-KsZLD .framer-name4 > :first-child, .framer-KsZLD .framer-name4 > :last-child, .framer-KsZLD .framer-m2l8di > *, .framer-KsZLD .framer-m2l8di > :first-child, .framer-KsZLD .framer-m2l8di > :last-child, .framer-KsZLD .framer-1ozykaf > *, .framer-KsZLD .framer-1ozykaf > :first-child, .framer-KsZLD .framer-1ozykaf > :last-child, .framer-KsZLD .framer-1bdtlgo > *, .framer-KsZLD .framer-1bdtlgo > :first-child, .framer-KsZLD .framer-1bdtlgo > :last-child, .framer-KsZLD .framer-w37msf > *, .framer-KsZLD .framer-w37msf > :first-child, .framer-KsZLD .framer-w37msf > :last-child, .framer-KsZLD .framer-159gnax > *, .framer-KsZLD .framer-159gnax > :first-child, .framer-KsZLD .framer-159gnax > :last-child, .framer-KsZLD .framer-uspqlz > *, .framer-KsZLD .framer-uspqlz > :first-child, .framer-KsZLD .framer-uspqlz > :last-child { margin: 0px; } .framer-KsZLD .framer-i1qnf > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-KsZLD .framer-nse18a > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4100.5\n * @framerIntrinsicWidth 1025\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xc3sqoWPP\":{\"layout\":[\"fixed\",\"auto\"]},\"dCBK20uHj\":{\"layout\":[\"fixed\",\"auto\"]},\"MdgBmO9sm\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerResponsiveScreen\n */const FramerHduR1Grfo=withCSS(Component,css,\"framer-KsZLD\");export default FramerHduR1Grfo;FramerHduR1Grfo.displayName=\"Home\";FramerHduR1Grfo.defaultProps={height:4100.5,width:1025};addFonts(FramerHduR1Grfo,[{family:\"Circular Std Bold\",url:\"https://framerusercontent.com/assets/KjbebfheTaXCLSakJ1zkK0yhA8.otf\"},...ButtonsFonts,...TickerFonts,...TabBarFonts,...CompactFooterFonts,...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts,...sharedStyle3.fonts,...sharedStyle4.fonts,...sharedStyle5.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHduR1Grfo\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"4100.5\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1025\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xc3sqoWPP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dCBK20uHj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MdgBmO9sm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["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", "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", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "ref5", "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", "ButtonsFonts", "getFonts", "OddtPn3_1_default", "TickerFonts", "Ticker", "TabBarFonts", "oKo8k19u1_default", "CompactFooterFonts", "xK8GRZxjS_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transitions", "metadata", "t", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "ref1", "pe", "router", "useRouter", "useRouteElementId", "ref2", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "RichText", "x", "PropertyOverrides2", "Container", "OddtPn3_1_default", "resolveLink", "Image2", "Ticker", "SVG", "oKo8k19u1_default", "xK8GRZxjS_default", "css", "FramerHduR1Grfo", "withCSS", "HduR1Grfo_default", "addFonts", "ButtonsFonts", "TickerFonts", "TabBarFonts", "CompactFooterFonts", "fonts", "__FramerMetadata__"]
}
