{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js", "ssg:https://framerusercontent.com/modules/iwLDaailcfsHgHVdXtEA/jZtzzOF3SxYBoaz1sAp2/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (f73129a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import NavbarSection from\"#framer/local/canvasComponent/ClFeFr3CR/ClFeFr3CR.js\";import LogoSection from\"#framer/local/canvasComponent/Em37XgodO/Em37XgodO.js\";import VoiioCTAs from\"#framer/local/canvasComponent/JcEzKtZmu/JcEzKtZmu.js\";import HubspotForm from\"#framer/local/canvasComponent/mywjE1SQQ/mywjE1SQQ.js\";import VoiioFooter from\"#framer/local/canvasComponent/RMs5EISH5/RMs5EISH5.js\";import*as sharedStyle4 from\"#framer/local/css/Bknj_PW7e/Bknj_PW7e.js\";import*as sharedStyle5 from\"#framer/local/css/HOYI8ymcm/HOYI8ymcm.js\";import*as sharedStyle6 from\"#framer/local/css/KnjqGAe7F/KnjqGAe7F.js\";import*as sharedStyle2 from\"#framer/local/css/kYHJBjvls/kYHJBjvls.js\";import*as sharedStyle3 from\"#framer/local/css/nSiVK_ztk/nSiVK_ztk.js\";import*as sharedStyle1 from\"#framer/local/css/PnkYBhCGq/PnkYBhCGq.js\";import*as sharedStyle from\"#framer/local/css/ZUZ1VrATk/ZUZ1VrATk.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const VoiioCTAsFonts=getFonts(VoiioCTAs);const NavbarSectionFonts=getFonts(NavbarSection);const TickerFonts=getFonts(Ticker);const LogoSectionFonts=getFonts(LogoSection);const SlideshowFonts=getFonts(Slideshow);const ImageWithFX=withFX(Image);const HubspotFormFonts=getFonts(HubspotForm);const VoiioFooterFonts=getFonts(VoiioFooter);const breakpoints={DNMZKQCGc:\"(max-width: 809px)\",sPhn1cDB0:\"(min-width: 810px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-X33gm\";const variantClassNames={DNMZKQCGc:\"framer-v-fp9olq\",sPhn1cDB0:\"framer-v-1vh6cs9\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition1={bounce:0,delay:.075,duration:.4,type:\"spring\"};const textEffect={effect:animation,startDelay:.2,tokenization:\"line\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const textEffect1={effect:animation,startDelay:.2,tokenization:\"word\",transition:transition1,trigger:\"onInView\",type:\"appear\"};const transition2={bounce:0,delay:.075,duration:.1,type:\"spring\"};const textEffect2={effect:animation,startDelay:.2,tokenization:\"line\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const textEffect3={effect:animation,startDelay:.4,tokenization:\"line\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const textEffect4={effect:animation,startDelay:.5,tokenization:\"line\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const textEffect5={effect:animation,startDelay:.6,tokenization:\"line\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const textEffect6={effect:animation,startDelay:.2,tokenization:\"element\",transition:transition1,trigger:\"onInView\",type:\"appear\"};const textEffect7={effect:animation,startDelay:.2,threshold:0,tokenization:\"word\",transition:transition1,trigger:\"onInView\",type:\"appear\"};const textEffect8={effect:animation,startDelay:.2,tokenization:\"line\",transition:transition1,trigger:\"onInView\",type:\"appear\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const textEffect9={effect:animation,startDelay:.2,tokenization:\"character\",transition:transition1,trigger:\"onInView\",type:\"appear\"};const textEffect10={effect:animation,startDelay:.4,tokenization:\"character\",transition:transition1,trigger:\"onInView\",type:\"appear\"};const textEffect11={effect:animation,startDelay:.6,tokenization:\"character\",transition:transition1,trigger:\"onInView\",type:\"appear\"};const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate3=(_,t)=>`translate(-50%, -50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"DNMZKQCGc\",Tablet:\"sPhn1cDB0\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"DNMZKQCGc\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"sPhn1cDB0\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"sPhn1cDB0\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1tkc7im\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0JyYW5kb24gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Brandon Grotesque Bold\", \"Brandon Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"34px\"},children:\"Die Plattform f\\xfcr \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NrZW1hIFBybyBUaXRsZSBNZWRpdW0gSXRhbGlj\",\"--framer-font-family\":'\"Skema Pro Title Medium Italic\", \"Skema Pro Title Medium Italic Placeholder\", sans-serif',\"--framer-font-size\":\"34px\"},children:\"echte\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"34px\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"34px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"34px\"},children:\"Unterst\\xfctzung im Beruf \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"34px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"34px\"},children:\"und Privatleben.\"})]})})},sPhn1cDB0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0JyYW5kb24gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Brandon Grotesque Bold\", \"Brandon Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"40px\"},children:\"Die Plattform f\\xfcr \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NrZW1hIFBybyBUaXRsZSBNZWRpdW0gSXRhbGlj\",\"--framer-font-family\":'\"Skema Pro Title Medium Italic\", \"Skema Pro Title Medium Italic Placeholder\", sans-serif'},children:\"echte\"}),\" Unterst\\xfctzung \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"im Beruf und Privatleben\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0JyYW5kb24gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Brandon Grotesque Bold\", \"Brandon Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:\"Die Plattform f\\xfcr \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NrZW1hIFBybyBUaXRsZSBNZWRpdW0gSXRhbGlj\",\"--framer-font-family\":'\"Skema Pro Title Medium Italic\", \"Skema Pro Title Medium Italic Placeholder\", sans-serif'},children:\"echte\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:\" Unterst\\xfctzung \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:\"im Beruf und Privatleben\"})]})}),className:\"framer-ij2d37\",effect:textEffect,fonts:[\"CUSTOM;Brandon Grotesque Bold\",\"CUSTOM;Skema Pro Title Medium Italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2b1de66f-d7a8-4d29-a17e-9c98359015a8, rgb(105, 105, 105))\"},children:[\"Mit voiio unterst\\xfctzen Sie Ihre Mitarbeitenden, \",/*#__PURE__*/_jsx(\"br\",{}),\"wo es wirklich z\\xe4hlt und st\\xe4rken die Leistungsf\\xe4higkeit Ihres Unternehmens. In allen Lebenslagen. \",/*#__PURE__*/_jsx(\"br\",{}),\"Alles an einem Ort.\"]})})},sPhn1cDB0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2b1de66f-d7a8-4d29-a17e-9c98359015a8, rgb(105, 105, 105))\"},children:[\"Mit voiio unterst\\xfctzen Sie Ihre Mitarbeitenden, wo es wirklich z\\xe4hlt und st\\xe4rken die \",/*#__PURE__*/_jsx(\"br\",{}),\"Leistungsf\\xe4higkeit Ihres Unternehmens. In allen Lebenslagen. Alles an einem Ort.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2b1de66f-d7a8-4d29-a17e-9c98359015a8, rgb(105, 105, 105))\"},children:\"Mit voiio unterst\\xfctzen Sie Ihre Mitarbeitenden, wo es wirklich z\\xe4hlt und st\\xe4rken die Leistungsf\\xe4higkeit Ihres Unternehmens. In allen Lebenslagen. Alles an einem Ort.\"})}),className:\"framer-1m6mdjr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ikyp1d\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{y:(componentViewport?.y||0)+10+0+20+384},sPhn1cDB0:{y:(componentViewport?.y||0)+10+0+40+345}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+10+0+40+357,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zh7znh-container\",nodeId:\"egfS8GDKX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(VoiioCTAs,{height:\"100%\",id:\"egfS8GDKX\",layoutId:\"egfS8GDKX\",variant:\"Xmmku9YBx\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-h6satu-container\",layoutScroll:true,nodeId:\"V8NkAb8kN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{variant:\"g62L0gLm4\"},sPhn1cDB0:{variant:\"WhHcx88PI\"}},children:/*#__PURE__*/_jsx(NavbarSection,{height:\"100%\",id:\"V8NkAb8kN\",layoutId:\"V8NkAb8kN\",style:{width:\"100%\"},variant:\"A4NWSW3VY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ex1mw6\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dnmaxh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"nXaynkUeo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",hoverFactor:1,id:\"nXaynkUeo\",layoutId:\"nXaynkUeo\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2576,pixelWidth:3864,positionX:\"40.4%\",positionY:\"34.6%\",sizes:\"221.5px\",src:\"https://framerusercontent.com/images/NbKINb6ZMuIuNXVCWKbtehRKWsU.jpg\",srcSet:\"https://framerusercontent.com/images/NbKINb6ZMuIuNXVCWKbtehRKWsU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NbKINb6ZMuIuNXVCWKbtehRKWsU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NbKINb6ZMuIuNXVCWKbtehRKWsU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NbKINb6ZMuIuNXVCWKbtehRKWsU.jpg 3864w\"},className:\"framer-8t4hfv\",\"data-framer-name\":\"Pflege\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2288,pixelWidth:4352,positionX:\"62.2%\",positionY:\"49.1%\",sizes:\"221.5px\",src:\"https://framerusercontent.com/images/4q4EUhTtka4kQrpWdb7dWmQ0bk.jpg\",srcSet:\"https://framerusercontent.com/images/4q4EUhTtka4kQrpWdb7dWmQ0bk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4q4EUhTtka4kQrpWdb7dWmQ0bk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4q4EUhTtka4kQrpWdb7dWmQ0bk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4q4EUhTtka4kQrpWdb7dWmQ0bk.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/4q4EUhTtka4kQrpWdb7dWmQ0bk.jpg 4352w\"},className:\"framer-1cz1ng4\",\"data-framer-name\":\"Workgruppe\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:6099,pixelWidth:4066,sizes:\"221.5px\",src:\"https://framerusercontent.com/images/7bIukq1Vj01FdipYCi8Dn0hyEo.jpg\",srcSet:\"https://framerusercontent.com/images/7bIukq1Vj01FdipYCi8Dn0hyEo.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/7bIukq1Vj01FdipYCi8Dn0hyEo.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/7bIukq1Vj01FdipYCi8Dn0hyEo.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/7bIukq1Vj01FdipYCi8Dn0hyEo.jpg 4066w\"},className:\"framer-126pxp1\",\"data-framer-name\":\"Frau mit Prothese\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2880,pixelWidth:1920,positionX:\"22.4%\",positionY:\"44%\",sizes:\"221.5px\",src:\"https://framerusercontent.com/images/OJzB9OiDrHs8Bb4wr1eosFCz44.jpg\",srcSet:\"https://framerusercontent.com/images/OJzB9OiDrHs8Bb4wr1eosFCz44.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/OJzB9OiDrHs8Bb4wr1eosFCz44.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/OJzB9OiDrHs8Bb4wr1eosFCz44.jpg 1920w\"},className:\"framer-1eo7kxl\",\"data-framer-name\":\"Vater und Kind\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3647,pixelWidth:5471,positionX:\"44.1%\",positionY:\"45%\",sizes:\"221.5px\",src:\"https://framerusercontent.com/images/BdF8UvEQfSFRqqZLDsZse7aCNZk.jpg\",srcSet:\"https://framerusercontent.com/images/BdF8UvEQfSFRqqZLDsZse7aCNZk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BdF8UvEQfSFRqqZLDsZse7aCNZk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BdF8UvEQfSFRqqZLDsZse7aCNZk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BdF8UvEQfSFRqqZLDsZse7aCNZk.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/BdF8UvEQfSFRqqZLDsZse7aCNZk.jpg 5471w\"},className:\"framer-80s2yp\",\"data-framer-name\":\"Frau mit Prothese\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2576,pixelWidth:3864,positionX:\"57.3%\",positionY:\"50.2%\",sizes:\"221.5px\",src:\"https://framerusercontent.com/images/9VBLxtmBmvVYrY69xRUcKacFflw.jpg\",srcSet:\"https://framerusercontent.com/images/9VBLxtmBmvVYrY69xRUcKacFflw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9VBLxtmBmvVYrY69xRUcKacFflw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9VBLxtmBmvVYrY69xRUcKacFflw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/9VBLxtmBmvVYrY69xRUcKacFflw.jpg 3864w\"},className:\"framer-pmpgww\",\"data-framer-name\":\"Frau mit Prothese\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1254,pixelWidth:836,sizes:\"221.5px\",src:\"https://framerusercontent.com/images/LBDCaZ3J5TcRZksbgsngufe7Hk.jpg\",srcSet:\"https://framerusercontent.com/images/LBDCaZ3J5TcRZksbgsngufe7Hk.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/LBDCaZ3J5TcRZksbgsngufe7Hk.jpg 836w\"},className:\"framer-1rslpb7\",\"data-framer-name\":\"Frau Achtsamkeit\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2576,pixelWidth:3864,positionX:\"32.1%\",positionY:\"43.4%\",sizes:\"221.3716px\",src:\"https://framerusercontent.com/images/gAc5TywhF6hIeUa9A1sY0sYWMdU.jpg\",srcSet:\"https://framerusercontent.com/images/gAc5TywhF6hIeUa9A1sY0sYWMdU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gAc5TywhF6hIeUa9A1sY0sYWMdU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gAc5TywhF6hIeUa9A1sY0sYWMdU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/gAc5TywhF6hIeUa9A1sY0sYWMdU.jpg 3864w\"},className:\"framer-18n5j4l\",\"data-framer-name\":\"Frau Achtsamkeit\"})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{y:(componentViewport?.y||0)+10+815},sPhn1cDB0:{y:(componentViewport?.y||0)+10+816}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+10+828,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5dwmq4-container\",nodeId:\"XB_X5s0Ds\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{variant:\"CWI4HX7SA\"},sPhn1cDB0:{variant:\"RGldd5j0g\"}},children:/*#__PURE__*/_jsx(LogoSection,{height:\"100%\",id:\"XB_X5s0Ds\",layoutId:\"XB_X5s0Ds\",style:{width:\"100%\"},variant:\"oQFyNP7xG\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ax4x1j\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1s6dd0u\",\"data-styles-preset\":\"PnkYBhCGq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-38237310-e73d-4d02-8826-bbffcdc52e9e, rgb(0, 200, 210))\"},children:\"1000+ Unternehmen aus jeder Branche und Gr\\xf6\\xdfe vertrauen voiio.\"})}),className:\"framer-1cp9msc\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b2i29w\",\"data-framer-name\":\"4 Formate Kacheln\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ppwa6b\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-19hzli9\",\"data-styles-preset\":\"kYHJBjvls\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Von Beratung bis niedrigschwelligem Angebot:\",/*#__PURE__*/_jsx(\"br\",{}),\"Alles auf einer Platform\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-19hzli9\",\"data-styles-preset\":\"kYHJBjvls\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Von Beratung bis niedrigschwelligem Angebot:\",/*#__PURE__*/_jsx(\"br\",{}),\"Alles auf einer Platform\"]})}),className:\"framer-10119r2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+1035+100+0+0+84),pixelHeight:1287,pixelWidth:2160,positionX:\"center\",positionY:\"bottom\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/j9KLrkhK8COwpbc7Q7qwqulNM.png\",srcSet:\"https://framerusercontent.com/images/j9KLrkhK8COwpbc7Q7qwqulNM.png?scale-down-to=512 512w,https://framerusercontent.com/images/j9KLrkhK8COwpbc7Q7qwqulNM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j9KLrkhK8COwpbc7Q7qwqulNM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/j9KLrkhK8COwpbc7Q7qwqulNM.png 2160w\"}},sPhn1cDB0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+1051+100+0+0+94),pixelHeight:1287,pixelWidth:2160,positionX:\"center\",positionY:\"bottom\",sizes:\"800px\",src:\"https://framerusercontent.com/images/j9KLrkhK8COwpbc7Q7qwqulNM.png\",srcSet:\"https://framerusercontent.com/images/j9KLrkhK8COwpbc7Q7qwqulNM.png?scale-down-to=512 512w,https://framerusercontent.com/images/j9KLrkhK8COwpbc7Q7qwqulNM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j9KLrkhK8COwpbc7Q7qwqulNM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/j9KLrkhK8COwpbc7Q7qwqulNM.png 2160w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+1048+150+0+0+158),pixelHeight:1287,pixelWidth:2160,positionX:\"center\",positionY:\"bottom\",sizes:\"1059px\",src:\"https://framerusercontent.com/images/j9KLrkhK8COwpbc7Q7qwqulNM.png\",srcSet:\"https://framerusercontent.com/images/j9KLrkhK8COwpbc7Q7qwqulNM.png?scale-down-to=512 512w,https://framerusercontent.com/images/j9KLrkhK8COwpbc7Q7qwqulNM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j9KLrkhK8COwpbc7Q7qwqulNM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/j9KLrkhK8COwpbc7Q7qwqulNM.png 2160w\"},className:\"framer-v2u841\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dc11xe\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ew65pp\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3uvaat\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1s6dd0u\",\"data-styles-preset\":\"PnkYBhCGq\",style:{\"--framer-text-color\":\"var(--token-38237310-e73d-4d02-8826-bbffcdc52e9e, rgb(0, 200, 210))\"},children:\"Format #1\"})}),className:\"framer-16n6r1p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jrgc6t\",\"data-styles-preset\":\"nSiVK_ztk\",children:\"Beratung & Vermittlung\"})}),className:\"framer-1dcc6wr\",effect:textEffect2,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-color\":\"var(--token-2b1de66f-d7a8-4d29-a17e-9c98359015a8, rgb(105, 105, 105))\"},children:\"\\xdcber 200 Psycholog:innen und Expert:innen sowie Vermittlung von Pflegel\\xf6sungen. 24/7 erreichbar mit Termingarantie.\"})}),className:\"framer-9jhq2d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eh8wqw\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-92nv5t\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1s6dd0u\",\"data-styles-preset\":\"PnkYBhCGq\",style:{\"--framer-text-color\":\"var(--token-38237310-e73d-4d02-8826-bbffcdc52e9e, rgb(0, 200, 210))\"},children:\"Format #2\"})}),className:\"framer-ymr2mc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jrgc6t\",\"data-styles-preset\":\"nSiVK_ztk\",children:\"Kleingruppenformate\"})}),className:\"framer-4hb2bb\",effect:textEffect3,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-color\":\"var(--token-2b1de66f-d7a8-4d29-a17e-9c98359015a8, rgb(105, 105, 105))\"},children:\"Interaktive Gruppencoachings zu pers\\xf6nlichen Herausforderungen sowie Kinderbetreuung & Lernf\\xf6rderung.\"})}),className:\"framer-13uf69j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-avlxot\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-21npbi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1s6dd0u\",\"data-styles-preset\":\"PnkYBhCGq\",style:{\"--framer-text-color\":\"var(--token-38237310-e73d-4d02-8826-bbffcdc52e9e, rgb(0, 200, 210))\"},children:\"Format #3\"})}),className:\"framer-systq8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jrgc6t\",\"data-styles-preset\":\"nSiVK_ztk\",children:\"Live-Events\"})}),className:\"framer-1ms6892\",effect:textEffect4,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-color\":\"var(--token-2b1de66f-d7a8-4d29-a17e-9c98359015a8, rgb(105, 105, 105))\"},children:\"Ob Impulsvortrag oder Onlinekurs \u2013 T\\xe4glich hunderte Live-Veranstaltungen zu vielf\\xe4ltigen Themen.\"})}),className:\"framer-1kj9ppt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j8q2j2\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ph5hux\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1s6dd0u\",\"data-styles-preset\":\"PnkYBhCGq\",style:{\"--framer-text-color\":\"var(--token-38237310-e73d-4d02-8826-bbffcdc52e9e, rgb(0, 200, 210))\"},children:\"Format #4\"})}),className:\"framer-105jtns\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jrgc6t\",\"data-styles-preset\":\"nSiVK_ztk\",children:\"Mediathek\"})}),className:\"framer-10p12pf\",effect:textEffect5,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-color\":\"var(--token-2b1de66f-d7a8-4d29-a17e-9c98359015a8, rgb(105, 105, 105))\"},children:\"Umfassende Mediathek mit Vortr\\xe4gen, Ratgebern und Leitf\\xe4den f\\xfcr alle Anforderungen Ihrer Mitarbeitenden.\"})}),className:\"framer-1b7nj9j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2u8le2\"}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-h33vrs\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19hzli9\",\"data-styles-preset\":\"kYHJBjvls\",style:{\"--framer-text-alignment\":\"left\"},children:\"Unsere Module bieten einen ganzheitlichen und individuellen Ansatz.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19hzli9\",\"data-styles-preset\":\"kYHJBjvls\",style:{\"--framer-text-alignment\":\"center\"},children:\"Unsere Module bieten einen ganzheitlichen und individuellen Ansatz.\"})}),className:\"framer-1g7tqgb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2b1de66f-d7a8-4d29-a17e-9c98359015a8, rgb(105, 105, 105))\"},children:\"Herausforderungen sind vielschichtig und \\xfcberlappend. Wir helfen ganzheitlich und themen\\xfcbergreifend. Mit \\xfcber 3.000 Angeboten f\\xfcr jede Lebenslage \u2013 so individuell & pers\\xf6nlich wie Ihre Mitarbeitenden.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2b1de66f-d7a8-4d29-a17e-9c98359015a8, rgb(105, 105, 105))\"},children:\"Herausforderungen sind vielschichtig und \\xfcberlappend. Wir helfen ganzheitlich und themen\\xfcbergreifend. Mit \\xfcber 3.000 Angeboten f\\xfcr jede Lebenslage \u2013 so individuell & pers\\xf6nlich wie Ihre Mitarbeitenden.\"})}),className:\"framer-u82grt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8j1ei6\",\"data-framer-name\":\"Kernbereich Gesundheit\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11o1uk4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b6kaui\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1td54te\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19hzli9\",\"data-styles-preset\":\"kYHJBjvls\",style:{\"--framer-text-color\":\"var(--token-33b5148a-e9fa-4e07-a3fe-fefdf0233e96, rgb(65, 175, 96))\"},children:\"Gesundheit\"})}),className:\"framer-18ilxwj\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sPhn1cDB0:{effect:textEffect7}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-color\":\"var(--token-2b1de66f-d7a8-4d29-a17e-9c98359015a8, rgb(105, 105, 105))\"},children:\"Mentale Krankheiten nehmen zu und gleichzeitig fehlen die Tools zum Umgang und Vermeidung von Stress.\"})}),className:\"framer-1pue5ml\",effect:textEffect6,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pfpkny\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sdb8wj\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pxt9bf\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+2890+20+10+314+0+224+0+0+0+5),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sEcJFBTTQDxDFwgyAOKawEpQXw.svg\"}},sPhn1cDB0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+2845+0+0+0+212+0+0+0+5),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sEcJFBTTQDxDFwgyAOKawEpQXw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+3263+0+0+0+81.5+0+0+0+5),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sEcJFBTTQDxDFwgyAOKawEpQXw.svg\"},className:\"framer-1teymcj\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sPhn1cDB0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-c94hvv\",\"data-styles-preset\":\"Bknj_PW7e\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[\"Psycholog:innen & Expert:innen \",/*#__PURE__*/_jsx(\"br\",{}),\"auf Abruf\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c94hvv\",\"data-styles-preset\":\"Bknj_PW7e\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Psycholog:innen & Expert:innen auf Abruf\"})}),className:\"framer-dnymsi\",effect:textEffect8,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x5cn1q\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+2890+20+10+314+0+224+0+145+61),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sEcJFBTTQDxDFwgyAOKawEpQXw.svg\"}},sPhn1cDB0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+2845+0+0+0+212+0+142+61.5),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sEcJFBTTQDxDFwgyAOKawEpQXw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+3263+0+0+0+81.5+0+145+60),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sEcJFBTTQDxDFwgyAOKawEpQXw.svg\"},className:\"framer-cvtddc\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c94hvv\",\"data-styles-preset\":\"Bknj_PW7e\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Weniger Stress durch mehr Resilienz\"})}),className:\"framer-1os2v3l\",effect:textEffect8,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wqe471\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+2890+20+10+314+0+224+0+290+61),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sEcJFBTTQDxDFwgyAOKawEpQXw.svg\"}},sPhn1cDB0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+2845+0+0+0+212+0+284+61.5),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sEcJFBTTQDxDFwgyAOKawEpQXw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+3263+0+0+0+81.5+0+290+59.5),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sEcJFBTTQDxDFwgyAOKawEpQXw.svg\"},className:\"framer-tktfgk\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c94hvv\",\"data-styles-preset\":\"Bknj_PW7e\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Schnelle Hilfe im Notfall\"})}),className:\"framer-msnva3\",effect:textEffect8,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a1gu2d\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{y:(componentViewport?.y||0)+10+2890+20+10+314+0+684},sPhn1cDB0:{y:(componentViewport?.y||0)+10+2845+0+0+0+666}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+10+3263+0+0+0+551.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g7uncj-container\",nodeId:\"D7SsTlF4K\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(VoiioCTAs,{height:\"100%\",id:\"D7SsTlF4K\",layoutId:\"D7SsTlF4K\",variant:\"M2t9p2oeA\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2s0qod\",\"data-framer-name\":\"S\\xe4ulen Angebote\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+2890+20+10+0+10+0),pixelHeight:1187,pixelWidth:1440,positionX:\"left\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,src:\"https://framerusercontent.com/images/GUxCQHtkEMre7DwN6BL6taegtg.jpg\",srcSet:\"https://framerusercontent.com/images/GUxCQHtkEMre7DwN6BL6taegtg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GUxCQHtkEMre7DwN6BL6taegtg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GUxCQHtkEMre7DwN6BL6taegtg.jpg 1440w\"}},sPhn1cDB0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+2845+0+201+10),pixelHeight:2576,pixelWidth:3864,positionX:\"39.9%\",positionY:\"38.2%\",src:\"https://framerusercontent.com/images/ToWuMNbkQnqhEoNkZU5fRM9Ojo.jpg?scale-down-to=1024\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+3263+0+0+10),pixelHeight:2576,pixelWidth:3864,positionX:\"39.9%\",positionY:\"38.2%\",src:\"https://framerusercontent.com/images/ToWuMNbkQnqhEoNkZU5fRM9Ojo.jpg?scale-down-to=1024\"},className:\"framer-1v772nw\",\"data-framer-name\":\"Angebot\",children:isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tqgaek hidden-fp9olq\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n697e\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1s6dd0u\",\"data-styles-preset\":\"PnkYBhCGq\",children:\"Burnout-Beratung mit Fachexperte\"})}),className:\"framer-1jxi339\",\"data-framer-name\":\"Angebotstitel\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hn8y2k\",\"data-framer-name\":\"Angebotsformat\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-61upf0\",\"data-styles-preset\":\"HOYI8ymcm\",children:\"Beratung\"})}),className:\"framer-2dhstf\",\"data-framer-name\":\"Angebotsformat\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sPhn1cDB0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+2845+0+201+10),pixelHeight:1280,pixelWidth:1920,positionX:\"84.7%\",positionY:\"27.5%\",src:\"https://framerusercontent.com/images/f8fhZZoDR0r95P3SSAZLm0SzBk.jpg?scale-down-to=1024\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+3263+0+0+10),pixelHeight:1280,pixelWidth:1920,positionX:\"84.7%\",positionY:\"27.5%\",src:\"https://framerusercontent.com/images/f8fhZZoDR0r95P3SSAZLm0SzBk.jpg?scale-down-to=1024\"},className:\"framer-ohn8sn hidden-fp9olq\",\"data-framer-name\":\"Angebot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sg3tjg\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-obe7hv\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1s6dd0u\",\"data-styles-preset\":\"PnkYBhCGq\",children:\"Signale des K\\xf6rpers in Stresssituation\"})}),className:\"framer-u8nhyl\",\"data-framer-name\":\"Angebotstitel\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9kuyqk\",\"data-framer-name\":\"Angebotsformat\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-61upf0\",\"data-styles-preset\":\"HOYI8ymcm\",children:\"Vortrag\"})}),className:\"framer-vj6zrf\",\"data-framer-name\":\"Angebotsformat\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sPhn1cDB0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+2845+0+201+10),pixelHeight:836,pixelWidth:1254,positionX:\"59.8%\",positionY:\"26.8%\",src:\"https://framerusercontent.com/images/T5NZehRy0cbv82TMSXQUGKak.jpg?scale-down-to=1024\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+3263+0+0+10),pixelHeight:836,pixelWidth:1254,positionX:\"59.8%\",positionY:\"26.8%\",src:\"https://framerusercontent.com/images/T5NZehRy0cbv82TMSXQUGKak.jpg?scale-down-to=1024\"},className:\"framer-16yf3y hidden-fp9olq\",\"data-framer-name\":\"Angebot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1666jl3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q1i4g1\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1s6dd0u\",\"data-styles-preset\":\"PnkYBhCGq\",children:\"F\\xf6rdern von Resilienz & Achtsamkeit im Alltag \"})}),className:\"framer-19pa5x\",\"data-framer-name\":\"Angebotstitel\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8mnj4w\",\"data-framer-name\":\"Angebotsformat\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-61upf0\",\"data-styles-preset\":\"HOYI8ymcm\",children:\"Kurs\"})}),className:\"framer-ou3vmh\",\"data-framer-name\":\"Angebotsformat\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7dodf1\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-chvb5l\",\"data-framer-name\":\"Kernbereich Gesundheit\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19wryl2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3oxnr3\",\"data-framer-name\":\"S\\xe4ulen Angebote\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+4024+20+10+0+10+0),pixelHeight:707,pixelWidth:1080,positionX:\"left\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,src:\"https://framerusercontent.com/images/edLZk9lDMALGiRUqSZp5u5jf4.jpg\",srcSet:\"https://framerusercontent.com/images/edLZk9lDMALGiRUqSZp5u5jf4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/edLZk9lDMALGiRUqSZp5u5jf4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/edLZk9lDMALGiRUqSZp5u5jf4.jpg 1080w\"}},sPhn1cDB0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+3652+0+201+10),pixelHeight:2576,pixelWidth:3864,positionX:\"68.9%\",positionY:\"32.5%\",src:\"https://framerusercontent.com/images/abzHT5dZC8Dqoq6Kz3a3deHAwrM.jpg?scale-down-to=1024\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+3863+0+157.5+10),pixelHeight:2576,pixelWidth:3864,positionX:\"68.9%\",positionY:\"32.5%\",src:\"https://framerusercontent.com/images/abzHT5dZC8Dqoq6Kz3a3deHAwrM.jpg?scale-down-to=1024\"},className:\"framer-zg9c0v\",\"data-framer-name\":\"Angebot\",children:isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-j4mpaf hidden-fp9olq\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a2z2bu\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1s6dd0u\",\"data-styles-preset\":\"PnkYBhCGq\",children:\"Kinderbetreuung & Nachhilfe\"})}),className:\"framer-1oa1mj7\",\"data-framer-name\":\"Angebotstitel\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uenuwn\",\"data-framer-name\":\"Angebotsformat\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-61upf0\",\"data-styles-preset\":\"HOYI8ymcm\",children:\"Kleingruppenformate\"})}),className:\"framer-ni5y18\",\"data-framer-name\":\"Angebotsformat\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sPhn1cDB0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+3652+0+201+10),pixelHeight:913,pixelWidth:836,positionX:\"57.5%\",positionY:\"36.6%\",src:\"https://framerusercontent.com/images/YH0plkXxkl87cSc1LMGgRkjoWC4.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+3863+0+157.5+10),pixelHeight:913,pixelWidth:836,src:\"https://framerusercontent.com/images/YH0plkXxkl87cSc1LMGgRkjoWC4.jpg\"},className:\"framer-buvjyk hidden-fp9olq\",\"data-framer-name\":\"Angebot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-3phrpt\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b7tx0e\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1s6dd0u\",\"data-styles-preset\":\"PnkYBhCGq\",children:\"Ern\\xe4hrungstipps f\\xfcr Familien\"})}),className:\"framer-1288b3i\",\"data-framer-name\":\"Angebotstitel\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fm3491\",\"data-framer-name\":\"Angebotsformat\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-61upf0\",\"data-styles-preset\":\"HOYI8ymcm\",children:\"Vortrag\"})}),className:\"framer-zd9fg6\",\"data-framer-name\":\"Angebotsformat\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sPhn1cDB0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+3652+0+201+10),pixelHeight:1280,pixelWidth:1920,positionX:\"60%\",positionY:\"46.7%\",src:\"https://framerusercontent.com/images/nEhPZI8liTBWDSA0xxj9w2xq70.jpg?scale-down-to=1024\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+3863+0+157.5+10),pixelHeight:1280,pixelWidth:1920,src:\"https://framerusercontent.com/images/nEhPZI8liTBWDSA0xxj9w2xq70.jpg?scale-down-to=1024\"},className:\"framer-1aajs45 hidden-fp9olq\",\"data-framer-name\":\"Angebot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-o5sv89\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1psat3f\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1s6dd0u\",\"data-styles-preset\":\"PnkYBhCGq\",children:\"Pl\\xf6tzlicher Pflegefall in der Familie\"})}),className:\"framer-11fcc3o\",\"data-framer-name\":\"Angebotstitel\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fcslv3\",\"data-framer-name\":\"Angebotsformat\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-61upf0\",\"data-styles-preset\":\"HOYI8ymcm\",children:\"Beratung\"})}),className:\"framer-1wt6pjs\",\"data-framer-name\":\"Angebotsformat\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3ceno0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dlt02s\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19hzli9\",\"data-styles-preset\":\"kYHJBjvls\",style:{\"--framer-text-color\":\"var(--token-b1707539-7617-43f7-b370-23e9556d04cb, rgb(255, 130, 60))\"},children:\"Familie\"})}),className:\"framer-b2ywp1\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sPhn1cDB0:{effect:textEffect7}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-color\":\"var(--token-2b1de66f-d7a8-4d29-a17e-9c98359015a8, rgb(105, 105, 105))\"},children:\"Berufst\\xe4tige Eltern sind \\xfcberdurchschnittlich belastet und ein Pflegefall kann Betroffene vor eine gro\\xdfe Herausforderung stellen.\"})}),className:\"framer-hg6znx\",effect:textEffect6,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a4brx8\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11z860a\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+4024+20+10+314+0+224+0+0+61),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/FPHR6ydsVzAW6YVrGtMiylBhhyQ.svg\"}},sPhn1cDB0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+3652+0+0+0+212+0+0+61.5),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/FPHR6ydsVzAW6YVrGtMiylBhhyQ.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+3863+0+0+15+224+0+0+60),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/FPHR6ydsVzAW6YVrGtMiylBhhyQ.svg\"},className:\"framer-18umxyo\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c94hvv\",\"data-styles-preset\":\"Bknj_PW7e\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Praktische Entlastung\"})}),className:\"framer-ch8aki\",effect:textEffect8,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oxw5dk\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+4024+20+10+314+0+224+0+145+61),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/FPHR6ydsVzAW6YVrGtMiylBhhyQ.svg\"}},sPhn1cDB0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+3652+0+0+0+212+0+142+61.5),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/FPHR6ydsVzAW6YVrGtMiylBhhyQ.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+3863+0+0+15+224+0+145+60),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/FPHR6ydsVzAW6YVrGtMiylBhhyQ.svg\"},className:\"framer-1rpxfg0\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c94hvv\",\"data-styles-preset\":\"Bknj_PW7e\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Kinderbetreuung & Nachhilfe\"})}),className:\"framer-1p6hhas\",effect:textEffect8,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-176123y\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+4024+20+10+314+0+224+0+290+61),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/FPHR6ydsVzAW6YVrGtMiylBhhyQ.svg\"}},sPhn1cDB0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+3652+0+0+0+212+0+284+61.5),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/FPHR6ydsVzAW6YVrGtMiylBhhyQ.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+3863+0+0+15+224+0+290+59.5),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/FPHR6ydsVzAW6YVrGtMiylBhhyQ.svg\"},className:\"framer-1cp3nml\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c94hvv\",\"data-styles-preset\":\"Bknj_PW7e\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Orientierung in Ausnahmesituationen\"})}),className:\"framer-bfgvst\",effect:textEffect8,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16ho3ay\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{y:(componentViewport?.y||0)+10+4024+20+10+314+0+684},sPhn1cDB0:{y:(componentViewport?.y||0)+10+3652+0+0+0+666}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+10+3863+0+0+15+694,children:/*#__PURE__*/_jsx(Container,{className:\"framer-caoc74-container\",nodeId:\"GqOwwV1DL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(VoiioCTAs,{height:\"100%\",id:\"GqOwwV1DL\",layoutId:\"GqOwwV1DL\",variant:\"vRcsgpeqA\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1phj0to\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pwklc\",\"data-framer-name\":\"Kernbereich Gesundheit\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9xttwo\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1536pq0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s3n8dd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19hzli9\",\"data-styles-preset\":\"kYHJBjvls\",style:{\"--framer-text-color\":\"var(--token-33d73cbc-8648-45a2-a0db-4370f68ab795, rgb(150, 50, 150))\"},children:\"Arbeit\"})}),className:\"framer-aj6ijk\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sPhn1cDB0:{effect:textEffect7}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-color\":\"var(--token-2b1de66f-d7a8-4d29-a17e-9c98359015a8, rgb(105, 105, 105))\"},children:[\"Eine schlechte F\\xfchrung der \",/*#__PURE__*/_jsx(\"br\",{}),\"Mitarbeitenden f\\xfchrt zu Unzufriedenheit und Wechselbereitschaft.\"]})}),className:\"framer-ni87b\",effect:textEffect6,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12df8m7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z5mm7g\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+5158+20+10+314+0+224+0+0+61),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/o7uq5I8XtFYxMKA8N1VoCpbci2E.svg\"}},sPhn1cDB0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+4459+0+0+0+212+0+0+61.5),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/o7uq5I8XtFYxMKA8N1VoCpbci2E.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+4778+0+13.5+0+68+0+0+60),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/o7uq5I8XtFYxMKA8N1VoCpbci2E.svg\"},className:\"framer-xsvcnk\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c94hvv\",\"data-styles-preset\":\"Bknj_PW7e\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Unterst\\xfctzung f\\xfcr F\\xfchrungskr\\xe4fte\"})}),className:\"framer-ego9lx\",effect:textEffect8,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xeqf1d\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+5158+20+10+314+0+224+0+145+61),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/o7uq5I8XtFYxMKA8N1VoCpbci2E.svg\"}},sPhn1cDB0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+4459+0+0+0+212+0+142+61.5),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/o7uq5I8XtFYxMKA8N1VoCpbci2E.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+4778+0+13.5+0+68+0+145+60),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/o7uq5I8XtFYxMKA8N1VoCpbci2E.svg\"},className:\"framer-13cpxe3\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c94hvv\",\"data-styles-preset\":\"Bknj_PW7e\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Vielfalt im Team\"})}),className:\"framer-1hk8znm\",effect:textEffect8,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ciyfiq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+5158+20+10+314+0+224+0+290+61),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/o7uq5I8XtFYxMKA8N1VoCpbci2E.svg\"}},sPhn1cDB0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+4459+0+0+0+212+0+284+61.5),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/o7uq5I8XtFYxMKA8N1VoCpbci2E.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+4778+0+13.5+0+68+0+290+59.5),pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/o7uq5I8XtFYxMKA8N1VoCpbci2E.svg\"},className:\"framer-76b2om\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c94hvv\",\"data-styles-preset\":\"Bknj_PW7e\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Konflikte moderieren & l\\xf6sen\"})}),className:\"framer-vu6uox\",effect:textEffect8,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wdts4t\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{y:(componentViewport?.y||0)+10+5158+20+10+314+0+684},sPhn1cDB0:{y:(componentViewport?.y||0)+10+4459+0+0+0+666}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+10+4778+0+13.5+0+538,children:/*#__PURE__*/_jsx(Container,{className:\"framer-43rc8b-container\",nodeId:\"f6D7yW1eN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(VoiioCTAs,{height:\"100%\",id:\"f6D7yW1eN\",layoutId:\"f6D7yW1eN\",variant:\"Av7jkuroz\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-88y16j\",\"data-framer-name\":\"S\\xe4ulen Angebote\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+5158+20+10+0+10+0),pixelHeight:2577,pixelWidth:3864,positionX:\"left\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,src:\"https://framerusercontent.com/images/0tSTa5YNDRFOjnrweVw7j4xxg44.jpg\",srcSet:\"https://framerusercontent.com/images/0tSTa5YNDRFOjnrweVw7j4xxg44.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0tSTa5YNDRFOjnrweVw7j4xxg44.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0tSTa5YNDRFOjnrweVw7j4xxg44.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0tSTa5YNDRFOjnrweVw7j4xxg44.jpg 3864w\"}},sPhn1cDB0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+4459+0+201+10),pixelHeight:3539,pixelWidth:5309,positionX:\"58.6%\",positionY:\"48.4%\",src:\"https://framerusercontent.com/images/5BJHgtecv3nQqXk1ZBaCROLHbJM.jpg?scale-down-to=1024\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+4778+0+0+10),pixelHeight:3539,pixelWidth:5309,positionX:\"58.6%\",positionY:\"48.4%\",src:\"https://framerusercontent.com/images/5BJHgtecv3nQqXk1ZBaCROLHbJM.jpg?scale-down-to=1024\"},className:\"framer-1r608ef\",\"data-framer-name\":\"Angebot\",children:isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-uuudk5 hidden-fp9olq\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2m83x\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1s6dd0u\",\"data-styles-preset\":\"PnkYBhCGq\",children:\"Umgang mit Ver\\xe4nderungen\"})}),className:\"framer-1dq40a2\",\"data-framer-name\":\"Angebotstitel\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-z51anp\",\"data-framer-name\":\"Angebotsformat\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-61upf0\",\"data-styles-preset\":\"HOYI8ymcm\",children:\"Coaching\"})}),className:\"framer-1gklpcs\",\"data-framer-name\":\"Angebotsformat\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sPhn1cDB0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+4459+0+201+10),pixelHeight:2576,pixelWidth:3864,positionX:\"61.9%\",positionY:\"29.8%\",src:\"https://framerusercontent.com/images/Xi9KENJXAYDeoGzTJFGPUhvtqk.jpg?scale-down-to=1024\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+4778+0+0+10),pixelHeight:2576,pixelWidth:3864,positionX:\"70%\",positionY:\"28.7%\",src:\"https://framerusercontent.com/images/Xi9KENJXAYDeoGzTJFGPUhvtqk.jpg?scale-down-to=1024\"},className:\"framer-s4wkhe hidden-fp9olq\",\"data-framer-name\":\"Angebot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-vswaxn\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6kk9nl\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1s6dd0u\",\"data-styles-preset\":\"PnkYBhCGq\",children:\"Erfolgreiche Kommunikation\"})}),className:\"framer-1x6qesa\",\"data-framer-name\":\"Angebotstitel\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1urmrta\",\"data-framer-name\":\"Angebotsformat\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-61upf0\",\"data-styles-preset\":\"HOYI8ymcm\",children:\"Leitfaden\"})}),className:\"framer-1o08dmf\",\"data-framer-name\":\"Angebotsformat\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sPhn1cDB0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+4459+0+201+10),pixelHeight:3840,pixelWidth:5760,positionX:\"28.7%\",positionY:\"43.3%\",src:\"https://framerusercontent.com/images/ijzeW8txPY7h8I3ASHR7SGALSn4.jpg?scale-down-to=1024\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+4778+0+0+10),pixelHeight:3840,pixelWidth:5760,positionX:\"21.3%\",positionY:\"40.7%\",src:\"https://framerusercontent.com/images/ijzeW8txPY7h8I3ASHR7SGALSn4.jpg?scale-down-to=1024\"},className:\"framer-1xwiegf hidden-fp9olq\",\"data-framer-name\":\"Angebot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i860te\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1stqc5u\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1s6dd0u\",\"data-styles-preset\":\"PnkYBhCGq\",children:\"Psychologische Sicherheit f\\xfcr Teams\"})}),className:\"framer-1rr60pm\",\"data-framer-name\":\"Angebotstitel\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7tpy4t\",\"data-framer-name\":\"Angebotsformat\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-61upf0\",\"data-styles-preset\":\"HOYI8ymcm\",children:\"Beratung\"})}),className:\"framer-76c8aa\",\"data-framer-name\":\"Angebotsformat\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]})})})})]})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-176fgs8\",\"data-framer-name\":\"H2 Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-19hzli9\",\"data-styles-preset\":\"kYHJBjvls\",children:[\"Eine Plattform f\\xfcr gesunde \",/*#__PURE__*/_jsx(\"br\",{}),\"und motivierte Mitarbeitende.\"]})}),className:\"framer-1fzqvd2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-g0a1pp\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17ktb91\",\"data-framer-name\":\"Platform Formate\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-phj5uf\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10urr21\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hok7ew\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+6521+20+0+342+0+0+0+0+5.5),pixelHeight:158,pixelWidth:168,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GGUgj4gGitGLzGJtu9iwEl9DrA.svg\"}},sPhn1cDB0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+5460+0+0+0+0+0+0+4.5),pixelHeight:158,pixelWidth:168,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GGUgj4gGitGLzGJtu9iwEl9DrA.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+5687+0+0+0+0+0+0+4.5),pixelHeight:158,pixelWidth:168,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GGUgj4gGitGLzGJtu9iwEl9DrA.svg\"},className:\"framer-ajat4j\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jrgc6t\",\"data-styles-preset\":\"nSiVK_ztk\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Aktivierend\"})}),className:\"framer-eiif17\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-color\":\"var(--token-2b1de66f-d7a8-4d29-a17e-9c98359015a8, rgb(105, 105, 105))\"},children:\"Hochmoderne, intuitive Plattform mit tausenden niedrigschwelligen Angeboten f\\xfcr den Alltag und einer hochqualitativen 1:1 Beratung f\\xfcr alle Ernstf\\xe4lle.\"})}),className:\"framer-1xyphuh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ubt5b9\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9njyfy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+6521+20+0+342+0+192+0+0+5.5),pixelHeight:158,pixelWidth:168,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GGUgj4gGitGLzGJtu9iwEl9DrA.svg\"}},sPhn1cDB0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+5460+0+0+0+212+0+0+4.5),pixelHeight:158,pixelWidth:168,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GGUgj4gGitGLzGJtu9iwEl9DrA.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+5687+0+0+0+212+0+0+4.5),pixelHeight:158,pixelWidth:168,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GGUgj4gGitGLzGJtu9iwEl9DrA.svg\"},className:\"framer-129sv9x\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jrgc6t\",\"data-styles-preset\":\"nSiVK_ztk\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Ganzheitlich themen\\xfcbergreifend\"})}),className:\"framer-sw0kq8\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-color\":\"var(--token-2b1de66f-d7a8-4d29-a17e-9c98359015a8, rgb(105, 105, 105))\"},children:\"Probleme sind vielschichtig und \\xfcberlappend. Mit voiio unterst\\xfctzen Sie themen\\xfcbergreifend und nicht nur isoliert.\"})}),className:\"framer-1iysz9j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17pl3ij\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tdp9ze\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+6521+20+0+342+0+384+0+0+5.5),pixelHeight:158,pixelWidth:168,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GGUgj4gGitGLzGJtu9iwEl9DrA.svg\"}},sPhn1cDB0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+5460+0+0+0+424+0+0+4.5),pixelHeight:158,pixelWidth:168,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GGUgj4gGitGLzGJtu9iwEl9DrA.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+5687+0+0+0+424+0+0+4.5),pixelHeight:158,pixelWidth:168,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GGUgj4gGitGLzGJtu9iwEl9DrA.svg\"},className:\"framer-1v1virx\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jrgc6t\",\"data-styles-preset\":\"nSiVK_ztk\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Lebensphasen orientiert\"})}),className:\"framer-1edu7ir\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-color\":\"var(--token-2b1de66f-d7a8-4d29-a17e-9c98359015a8, rgb(105, 105, 105))\"},children:\"Unterst\\xfctzung individuell & zugeschnitten auf die pers\\xf6nliche Lebensphase und -lage. F\\xfcr Mitarbeitende und F\\xfchrungskr\\xe4fte.\"})}),className:\"framer-dow8fa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vdr18t\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:818,intrinsicWidth:415.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+6521+20+0+0+.5233),pixelHeight:1636,pixelWidth:831,src:\"https://framerusercontent.com/images/wYe9TkCjvO94uknSkNPQx6chmM.png\"}},sPhn1cDB0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:818,intrinsicWidth:415.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+5460+0+0+558-427.0714),pixelHeight:1636,pixelWidth:831,src:\"https://framerusercontent.com/images/wYe9TkCjvO94uknSkNPQx6chmM.png\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:818,intrinsicWidth:415.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+5687+0+0+76),pixelHeight:1636,pixelWidth:831,src:\"https://framerusercontent.com/images/wYe9TkCjvO94uknSkNPQx6chmM.png\"},className:\"framer-knngj7\",\"data-framer-name\":\"Group 1046\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:818,intrinsicWidth:415.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+6521+20+0+0+29.4767),pixelHeight:1636,pixelWidth:831,src:\"https://framerusercontent.com/images/oTYg8RqXvnjrEa0CWiVMHxgfa8.png\"},transformTemplate:transformTemplate1},sPhn1cDB0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:818,intrinsicWidth:415.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+5460+0+0+.5),pixelHeight:1636,pixelWidth:831,src:\"https://framerusercontent.com/images/oTYg8RqXvnjrEa0CWiVMHxgfa8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:818,intrinsicWidth:415.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+5687+0+0+0),pixelHeight:1636,pixelWidth:831,src:\"https://framerusercontent.com/images/oTYg8RqXvnjrEa0CWiVMHxgfa8.png\"},className:\"framer-fespx\",\"data-framer-name\":\"Group 1046\"})})]})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1gj2czd\",\"data-framer-name\":\"H2 Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-19hzli9\",\"data-styles-preset\":\"kYHJBjvls\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Ein Benefit, welcher Ihre \",/*#__PURE__*/_jsx(\"br\",{}),\"Mitarbeitenden messbar bewegt.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-19hzli9\",\"data-styles-preset\":\"kYHJBjvls\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Ein Benefit, welcher Ihre \",/*#__PURE__*/_jsx(\"br\",{}),\"Mitarbeitenden messbar bewegt.\"]})}),className:\"framer-ueb2wu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m0bgyn\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pp5rhe\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+7703+20+0+0+0),pixelHeight:2576,pixelWidth:3864,positionX:\"34%\",positionY:\"27%\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/zVHJLH7cweLa63Xw2fDLtka1Q.jpg\",srcSet:\"https://framerusercontent.com/images/zVHJLH7cweLa63Xw2fDLtka1Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zVHJLH7cweLa63Xw2fDLtka1Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zVHJLH7cweLa63Xw2fDLtka1Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zVHJLH7cweLa63Xw2fDLtka1Q.jpg 3864w\"}},sPhn1cDB0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+6374+10+10),pixelHeight:2576,pixelWidth:3864,positionX:\"30.6%\",positionY:\"27.2%\",sizes:\"250px\",src:\"https://framerusercontent.com/images/zVHJLH7cweLa63Xw2fDLtka1Q.jpg\",srcSet:\"https://framerusercontent.com/images/zVHJLH7cweLa63Xw2fDLtka1Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zVHJLH7cweLa63Xw2fDLtka1Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zVHJLH7cweLa63Xw2fDLtka1Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zVHJLH7cweLa63Xw2fDLtka1Q.jpg 3864w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+6846+20+0),pixelHeight:2576,pixelWidth:3864,positionX:\"36.6%\",positionY:\"27.1%\",sizes:\"386.6667px\",src:\"https://framerusercontent.com/images/zVHJLH7cweLa63Xw2fDLtka1Q.jpg\",srcSet:\"https://framerusercontent.com/images/zVHJLH7cweLa63Xw2fDLtka1Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zVHJLH7cweLa63Xw2fDLtka1Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zVHJLH7cweLa63Xw2fDLtka1Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zVHJLH7cweLa63Xw2fDLtka1Q.jpg 3864w\"},className:\"framer-1abagre\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oqymom\",\"data-framer-name\":\"Titelkachel\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-exuilh\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JyYW5kb24gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Brandon Grotesque Bold\", \"Brandon Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"79%\"})})},sPhn1cDB0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JyYW5kb24gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Brandon Grotesque Bold\", \"Brandon Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:\"79\"}),\"%\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JyYW5kb24gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Brandon Grotesque Bold\", \"Brandon Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"90px\"},children:\"79\"}),\"%\"]})}),className:\"framer-13iiyi4\",\"data-framer-name\":\"Angebotstitel\",effect:textEffect9,fonts:[\"CUSTOM;Brandon Grotesque Bold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c94hvv\",\"data-styles-preset\":\"Bknj_PW7e\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"aller F\\xfchrungskr\\xe4fte f\\xfchlen sich selbst sowie ihre Teams durch die Angebote von voiio entlastet.\"})}),className:\"framer-1h1u4zj\",\"data-framer-name\":\"Angebotstitel\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+7703+20+0+0+320),pixelHeight:2388,pixelWidth:3590,positionX:\"56.5%\",positionY:\"37.8%\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/V0uXyQmO2LlX2iDmZ1XcU8CPtM.jpg\",srcSet:\"https://framerusercontent.com/images/V0uXyQmO2LlX2iDmZ1XcU8CPtM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/V0uXyQmO2LlX2iDmZ1XcU8CPtM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/V0uXyQmO2LlX2iDmZ1XcU8CPtM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/V0uXyQmO2LlX2iDmZ1XcU8CPtM.jpg 3590w\"}},sPhn1cDB0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+6374+10+10),pixelHeight:2388,pixelWidth:3590,positionX:\"56%\",positionY:\"40.5%\",sizes:\"250px\",src:\"https://framerusercontent.com/images/V0uXyQmO2LlX2iDmZ1XcU8CPtM.jpg\",srcSet:\"https://framerusercontent.com/images/V0uXyQmO2LlX2iDmZ1XcU8CPtM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/V0uXyQmO2LlX2iDmZ1XcU8CPtM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/V0uXyQmO2LlX2iDmZ1XcU8CPtM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/V0uXyQmO2LlX2iDmZ1XcU8CPtM.jpg 3590w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+6846+20+0),pixelHeight:2388,pixelWidth:3590,positionX:\"56.5%\",positionY:\"37.8%\",sizes:\"386.6667px\",src:\"https://framerusercontent.com/images/V0uXyQmO2LlX2iDmZ1XcU8CPtM.jpg\",srcSet:\"https://framerusercontent.com/images/V0uXyQmO2LlX2iDmZ1XcU8CPtM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/V0uXyQmO2LlX2iDmZ1XcU8CPtM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/V0uXyQmO2LlX2iDmZ1XcU8CPtM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/V0uXyQmO2LlX2iDmZ1XcU8CPtM.jpg 3590w\"},className:\"framer-15zu7wo\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yx4ua1\",\"data-framer-name\":\"Titelkachel\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qo7lb1\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JyYW5kb24gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Brandon Grotesque Bold\", \"Brandon Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"88%\"})}),effect:textEffect9},sPhn1cDB0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JyYW5kb24gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Brandon Grotesque Bold\", \"Brandon Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:\"88\"}),\"%\"]})}),effect:textEffect9}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JyYW5kb24gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Brandon Grotesque Bold\", \"Brandon Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"90px\"},children:\"88\"}),\"%\"]})}),className:\"framer-1pse266\",\"data-framer-name\":\"Angebotstitel\",effect:textEffect10,fonts:[\"CUSTOM;Brandon Grotesque Bold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c94hvv\",\"data-styles-preset\":\"Bknj_PW7e\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"sagen aus, dass voiio ihre Vereinbarkeit von Familie\\u2028\\u2028und Beruf unterst\\xfctzt.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-c94hvv\",\"data-styles-preset\":\"Bknj_PW7e\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"sagen aus, dass voiio ihre \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Vereinbarkeit von Familie\\u2028\\u2028\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"und Beruf unterst\\xfctzt.\"})]})}),className:\"framer-fqqhoo\",\"data-framer-name\":\"Angebotstitel\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+7703+20+0+0+640),pixelHeight:2576,pixelWidth:3864,positionX:\"57%\",positionY:\"27%\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/ktoTtSjlGgoQBeap1OtabQeM.jpg\",srcSet:\"https://framerusercontent.com/images/ktoTtSjlGgoQBeap1OtabQeM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ktoTtSjlGgoQBeap1OtabQeM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ktoTtSjlGgoQBeap1OtabQeM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ktoTtSjlGgoQBeap1OtabQeM.jpg 3864w\"}},sPhn1cDB0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+6374+10+10),pixelHeight:2576,pixelWidth:3864,positionX:\"55.7%\",positionY:\"28.4%\",sizes:\"250px\",src:\"https://framerusercontent.com/images/ktoTtSjlGgoQBeap1OtabQeM.jpg\",srcSet:\"https://framerusercontent.com/images/ktoTtSjlGgoQBeap1OtabQeM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ktoTtSjlGgoQBeap1OtabQeM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ktoTtSjlGgoQBeap1OtabQeM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ktoTtSjlGgoQBeap1OtabQeM.jpg 3864w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+6846+20+0),pixelHeight:2576,pixelWidth:3864,positionX:\"57.1%\",positionY:\"27.1%\",sizes:\"386.6667px\",src:\"https://framerusercontent.com/images/ktoTtSjlGgoQBeap1OtabQeM.jpg\",srcSet:\"https://framerusercontent.com/images/ktoTtSjlGgoQBeap1OtabQeM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ktoTtSjlGgoQBeap1OtabQeM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ktoTtSjlGgoQBeap1OtabQeM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ktoTtSjlGgoQBeap1OtabQeM.jpg 3864w\"},className:\"framer-1adfb7c\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-m9do9j\",\"data-framer-name\":\"Titelkachel\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ykzppu\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JyYW5kb24gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Brandon Grotesque Bold\", \"Brandon Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"90%\"})}),effect:textEffect9},sPhn1cDB0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JyYW5kb24gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Brandon Grotesque Bold\", \"Brandon Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:\"90\"}),\"%\"]})}),effect:textEffect9}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JyYW5kb24gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Brandon Grotesque Bold\", \"Brandon Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"90px\"},children:\"90\"}),\"%\"]})}),className:\"framer-jk0kai\",\"data-framer-name\":\"Angebotstitel\",effect:textEffect11,fonts:[\"CUSTOM;Brandon Grotesque Bold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c94hvv\",\"data-styles-preset\":\"Bknj_PW7e\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"geben an, dass voiio ihre Produktivit\\xe4t steigert und Ausfallzeiten reduziert.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-c94hvv\",\"data-styles-preset\":\"Bknj_PW7e\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"geben an, dass voiio ihre \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Produktivit\\xe4t steigert und \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ausfallzeiten reduziert.\"})]})}),className:\"framer-1g1se9k\",\"data-framer-name\":\"Angebotstitel\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]})})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-oszdvt hidden-1vh6cs9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jrgc6t\",\"data-styles-preset\":\"nSiVK_ztk\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-38237310-e73d-4d02-8826-bbffcdc52e9e, rgb(0, 200, 210))\"},children:\"Das sagen andere \\xfcber uns\"})}),className:\"framer-16cfafc\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iyxpj0\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18chept-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"XxzVauPfv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{gap:50,padding:20,paddingBottom:20,paddingLeft:20,paddingRight:20,paddingTop:20},sPhn1cDB0:{gap:50}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:100,height:\"100%\",id:\"XxzVauPfv\",intervalControl:4,itemAmount:1,layoutId:\"XxzVauPfv\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"var(--token-38237310-e73d-4d02-8826-bbffcdc52e9e, rgb(0, 200, 210))\",dotsGap:10,dotsInset:0,dotSize:9,dotsOpacity:.3,dotsPadding:10,dotsRadius:200,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zt0mwm\",\"data-framer-name\":\"W\\xf6rwag\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16ttyqq\",\"data-styles-preset\":\"KnjqGAe7F\",children:'\"Uns liegt das Wohlergehen unserer Mitarbeiter am Herzen. Mit voiio haben wir einen Partner gefunden, der mit hilfreichen Angeboten wie digitaler Kinderbetreuung [\u2026] sowie Online-Kursen f\\xfcr Erwachsene [\u2026] eine Plattform zur besseren Vereinbarkeit von Familie und Beruf bietet. Bereits mehr als die H\\xe4lfte unserer Mitarbeiter nutzt die Plattform [\u2026].\"'})}),className:\"framer-137jwa5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qfrkmo\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16j6r25\",\"data-framer-name\":\"Zitat Bild und autor\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:451,intrinsicWidth:600,pixelHeight:2394,pixelWidth:2393,sizes:\"65px\",src:\"https://framerusercontent.com/images/kiu1E8ziEtRor2OH6rxKfzpFgE.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kiu1E8ziEtRor2OH6rxKfzpFgE.jpg?scale-down-to=1024 1023w,https://framerusercontent.com/images/kiu1E8ziEtRor2OH6rxKfzpFgE.jpg?scale-down-to=2048 2047w,https://framerusercontent.com/images/kiu1E8ziEtRor2OH6rxKfzpFgE.jpg 2393w\"},className:\"framer-1vho0yi\",\"data-framer-name\":\"Ketchum Tabea_Fesser-1\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ohdr6p\",\"data-framer-name\":\"Zitat Autor\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jrgc6t\",\"data-styles-preset\":\"nSiVK_ztk\",style:{\"--framer-text-alignment\":\"left\"},children:\"Sarina Heinemann\"})}),className:\"framer-13q0dc9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-alignment\":\"left\"},children:\"HR Specialist Employer Branding & Recruiting\"})}),className:\"framer-16iosxc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:451,intrinsicWidth:600,pixelHeight:591,pixelWidth:591,positionX:\"right\",positionY:\"center\",sizes:\"183.12px\",src:\"https://framerusercontent.com/images/vK2VRNJEf2Xx4RVHRwZ3zdxdhA.png\",srcSet:\"https://framerusercontent.com/images/vK2VRNJEf2Xx4RVHRwZ3zdxdhA.png?scale-down-to=512 512w,https://framerusercontent.com/images/vK2VRNJEf2Xx4RVHRwZ3zdxdhA.png 591w\"},className:\"framer-16mf9bf\",\"data-framer-name\":\"Ketchum Tabea_Fesser-1\"})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c6w27d\",\"data-framer-name\":\"WBS Gruppe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16ttyqq\",\"data-styles-preset\":\"KnjqGAe7F\",children:\"\u201CF\\xfcr uns ist die individuelle Work-Life-Balance unserer Mitarbeitenden zentraler Punkt eines gesunden und produktiven Arbeitsumfeldes. Die Partnerschaft mit voiio ist eine wunderbare Erg\\xe4nzung zu unseren bestehenden internen Ma\\xdfnahmen.\u201D\"})}),className:\"framer-ljl2fq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j19mi4\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jq8lwg\",\"data-framer-name\":\"Zitat Bild und autor\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:451,intrinsicWidth:600,pixelHeight:1196,pixelWidth:1631,sizes:\"65px\",src:\"https://framerusercontent.com/images/xjuN5q1s8vVTY0XVvl2xVjkGsgE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/xjuN5q1s8vVTY0XVvl2xVjkGsgE.png?scale-down-to=512 512w,https://framerusercontent.com/images/xjuN5q1s8vVTY0XVvl2xVjkGsgE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xjuN5q1s8vVTY0XVvl2xVjkGsgE.png 1631w\"},className:\"framer-8zo458\",\"data-framer-name\":\"Ketchum Tabea_Fesser-1\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rvdf5k\",\"data-framer-name\":\"Zitat Autor\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jrgc6t\",\"data-styles-preset\":\"nSiVK_ztk\",style:{\"--framer-text-alignment\":\"left\"},children:\"Jonas Cordts\"})}),className:\"framer-gobe5l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-alignment\":\"left\"},children:\"Gesundheitsmanagement\"})}),className:\"framer-1vx9wcn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:451,intrinsicWidth:600,pixelHeight:285,pixelWidth:850,positionX:\"right\",positionY:\"center\",sizes:\"104.64px\",src:\"https://framerusercontent.com/images/8i0eKzL8d0SoOOEZNGCAxf5Kh4.png\",srcSet:\"https://framerusercontent.com/images/8i0eKzL8d0SoOOEZNGCAxf5Kh4.png?scale-down-to=512 512w,https://framerusercontent.com/images/8i0eKzL8d0SoOOEZNGCAxf5Kh4.png 850w\"},className:\"framer-1oxubtm\",\"data-framer-name\":\"Ketchum Tabea_Fesser-1\"})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cr0bwy\",\"data-framer-name\":\"Oberbank\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16ttyqq\",\"data-styles-preset\":\"KnjqGAe7F\",children:\"\u201EDurch das Wachstum unserer Belegschaft standen wir vor der Herausforderung, alle Mitarbeiter:Innen standortunabha\u0308ngig mit einem vielseitigen Gesundheitsbenefit zu versorgen. Die gro\\xdfe Bandbreite an Themen rund um Gesundheit, Wohlbefinden und lebenslanges Lernen kommt sehr gut an und erho\u0308ht auch unsere Attraktivita\u0308t als Arbeitgeber!\u201C\"})}),className:\"framer-39kkpc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pyvdvh\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9s1uuk\",\"data-framer-name\":\"Zitat Bild und autor\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:451,intrinsicWidth:600,pixelHeight:936,pixelWidth:648,positionX:\"49%\",positionY:\"0%\",sizes:\"65px\",src:\"https://framerusercontent.com/images/w78x9hrLEjEIuVsyqQmqAPH1yi4.jpg\",srcSet:\"https://framerusercontent.com/images/w78x9hrLEjEIuVsyqQmqAPH1yi4.jpg 648w\"},className:\"framer-7rbtto\",\"data-framer-name\":\"Ketchum Tabea_Fesser-1\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jx7o19\",\"data-framer-name\":\"Zitat Autor\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jrgc6t\",\"data-styles-preset\":\"nSiVK_ztk\",style:{\"--framer-text-alignment\":\"left\"},children:\"Verena Vogel\"})}),className:\"framer-1amy9kn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-alignment\":\"left\"},children:\"Assistentin der Niederlassungsleitung\"})}),className:\"framer-1otfrdg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:451,intrinsicWidth:600,pixelHeight:770,pixelWidth:2365,positionX:\"right\",positionY:\"center\",sizes:\"104.64px\",src:\"https://framerusercontent.com/images/GdYVBMwRHWgrTkxdWpRWr8ysZw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/GdYVBMwRHWgrTkxdWpRWr8ysZw.png?scale-down-to=512 512w,https://framerusercontent.com/images/GdYVBMwRHWgrTkxdWpRWr8ysZw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GdYVBMwRHWgrTkxdWpRWr8ysZw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GdYVBMwRHWgrTkxdWpRWr8ysZw.png 2365w\"},className:\"framer-9wh9r1\",\"data-framer-name\":\"Ketchum Tabea_Fesser-1\"})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qsnzt9\",\"data-framer-name\":\"Ketchum\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16ttyqq\",\"data-styles-preset\":\"KnjqGAe7F\",children:\"\u201CWir freuen uns sehr \\xfcber die erfolgreiche Kooperation mit voiio! Uns \\xfcberzeugt vor allem die gro\\xdfe Auswahl an Angeboten, die unsere Mitarbeitenden in allen Lebenslagen und -phasen unterst\\xfctzen.\u201D\"})}),className:\"framer-14k4qe3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x69q68\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n32vv1\",\"data-framer-name\":\"Zitat Bild und autor\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:451,intrinsicWidth:600,pixelHeight:902,pixelWidth:1200,sizes:\"65px\",src:\"https://framerusercontent.com/images/K9of03dxNa9VnpSttoZccB5JzU.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/K9of03dxNa9VnpSttoZccB5JzU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/K9of03dxNa9VnpSttoZccB5JzU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/K9of03dxNa9VnpSttoZccB5JzU.jpg 1200w\"},className:\"framer-f8u8hz\",\"data-framer-name\":\"Ketchum Tabea_Fesser-1\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vof4t8\",\"data-framer-name\":\"Zitat Autor\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jrgc6t\",\"data-styles-preset\":\"nSiVK_ztk\",style:{\"--framer-text-alignment\":\"left\"},children:\"Tabea Fesser\"})}),className:\"framer-zdlj39\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-alignment\":\"left\"},children:\"Chief People Officer\"})}),className:\"framer-1ojv6jl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:451,intrinsicWidth:600,pixelHeight:437,pixelWidth:2e3,positionX:\"right\",positionY:\"center\",sizes:\"117.72px\",src:\"https://framerusercontent.com/images/PIglveG6SkFAyrniAGwx43xlvE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PIglveG6SkFAyrniAGwx43xlvE.png?scale-down-to=512 512w,https://framerusercontent.com/images/PIglveG6SkFAyrniAGwx43xlvE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PIglveG6SkFAyrniAGwx43xlvE.png 2000w\"},className:\"framer-1535dof\",\"data-framer-name\":\"Ketchum Tabea_Fesser-1\"})]})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kv0p9s\"}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-thuumi hidden-1vh6cs9\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c0awka\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zpz5xu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19hzli9\",\"data-styles-preset\":\"kYHJBjvls\",style:{\"--framer-text-alignment\":\"left\"},children:\"Behalten Sie den vollen \\xdcberblick.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19hzli9\",\"data-styles-preset\":\"kYHJBjvls\",style:{\"--framer-text-alignment\":\"center\"},children:\"Behalten Sie den vollen \\xdcberblick.\"})}),className:\"framer-yrj3z1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2b1de66f-d7a8-4d29-a17e-9c98359015a8, rgb(105, 105, 105))\"},children:\"In Ihrem personalisierten Unternehmens-Dashboard finden Sie alle wichtigen Daten und Einblicke zum Nutzungsverhalten Ihrer Mitarbeitenden.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2b1de66f-d7a8-4d29-a17e-9c98359015a8, rgb(105, 105, 105))\"},children:\"In Ihrem personalisierten Unternehmens-Dashboard finden Sie alle wichtigen Daten und Einblicke zum Nutzungsverhalten Ihrer Mitarbeitenden.\"})}),className:\"framer-czffqg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l9n9jt\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,x:70,y:50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:857,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+9538+0+100+244+0),pixelHeight:1276,pixelWidth:1714,sizes:\"234px\",src:\"https://framerusercontent.com/images/h5OH2KtWXUVJt4NaQq2KdZlUXc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/h5OH2KtWXUVJt4NaQq2KdZlUXc.png?scale-down-to=512 512w,https://framerusercontent.com/images/h5OH2KtWXUVJt4NaQq2KdZlUXc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/h5OH2KtWXUVJt4NaQq2KdZlUXc.png 1714w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,x:0,y:50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:857,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+8342+150+0+254+0),pixelHeight:1276,pixelWidth:1714,sizes:\"420px\",src:\"https://framerusercontent.com/images/h5OH2KtWXUVJt4NaQq2KdZlUXc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/h5OH2KtWXUVJt4NaQq2KdZlUXc.png?scale-down-to=512 512w,https://framerusercontent.com/images/h5OH2KtWXUVJt4NaQq2KdZlUXc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/h5OH2KtWXUVJt4NaQq2KdZlUXc.png 1714w\"},className:\"framer-77d2eq\",\"data-framer-name\":\"Bildschirmfoto 2025-03-13 um 09.27.00\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:-40,y:-160}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:621,intrinsicWidth:857,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+9538+0+100+244+549-195.5),pixelHeight:1242,pixelWidth:1714,sizes:\"270px\",src:\"https://framerusercontent.com/images/eYJIdNhyANqh45iUnJ3OlMIj12k.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/eYJIdNhyANqh45iUnJ3OlMIj12k.png?scale-down-to=512 512w,https://framerusercontent.com/images/eYJIdNhyANqh45iUnJ3OlMIj12k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eYJIdNhyANqh45iUnJ3OlMIj12k.png 1714w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:100,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:621,intrinsicWidth:857,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+8342+150+0+254+495-376),pixelHeight:1242,pixelWidth:1714,sizes:\"420px\",src:\"https://framerusercontent.com/images/eYJIdNhyANqh45iUnJ3OlMIj12k.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/eYJIdNhyANqh45iUnJ3OlMIj12k.png?scale-down-to=512 512w,https://framerusercontent.com/images/eYJIdNhyANqh45iUnJ3OlMIj12k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eYJIdNhyANqh45iUnJ3OlMIj12k.png 1714w\"},className:\"framer-13dwjpx\",\"data-framer-name\":\"Bildschirmfoto 2025-03-13 um 09.39.05\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,x:-60,y:-10}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:606,intrinsicWidth:854,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+9538+0+100+244+154),pixelHeight:1212,pixelWidth:1708,sizes:\"188px\",src:\"https://framerusercontent.com/images/XoMXSdXr6m36GR4L4Vj3AxPg64.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/XoMXSdXr6m36GR4L4Vj3AxPg64.png?scale-down-to=512 512w,https://framerusercontent.com/images/XoMXSdXr6m36GR4L4Vj3AxPg64.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XoMXSdXr6m36GR4L4Vj3AxPg64.png 1708w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,x:-100,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:606,intrinsicWidth:854,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+8342+150+0+254+107.5),pixelHeight:1212,pixelWidth:1708,sizes:\"420px\",src:\"https://framerusercontent.com/images/XoMXSdXr6m36GR4L4Vj3AxPg64.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/XoMXSdXr6m36GR4L4Vj3AxPg64.png?scale-down-to=512 512w,https://framerusercontent.com/images/XoMXSdXr6m36GR4L4Vj3AxPg64.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XoMXSdXr6m36GR4L4Vj3AxPg64.png 1708w\"},className:\"framer-iji4wt\",\"data-framer-name\":\"Bildschirmfoto 2025-03-13 um 09.27.31\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,x:80,y:-59}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:349,intrinsicWidth:855,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+9538+0+100+244+253),pixelHeight:698,pixelWidth:1710,sizes:\"200px\",src:\"https://framerusercontent.com/images/N5Pllct9ee9KeUYTtQ40CFNsAo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/N5Pllct9ee9KeUYTtQ40CFNsAo.png?scale-down-to=512 512w,https://framerusercontent.com/images/N5Pllct9ee9KeUYTtQ40CFNsAo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/N5Pllct9ee9KeUYTtQ40CFNsAo.png 1710w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,x:0,y:-100}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:349,intrinsicWidth:855,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+8342+150+0+254+495-151.5),pixelHeight:698,pixelWidth:1710,sizes:\"372px\",src:\"https://framerusercontent.com/images/N5Pllct9ee9KeUYTtQ40CFNsAo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/N5Pllct9ee9KeUYTtQ40CFNsAo.png?scale-down-to=512 512w,https://framerusercontent.com/images/N5Pllct9ee9KeUYTtQ40CFNsAo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/N5Pllct9ee9KeUYTtQ40CFNsAo.png 1710w\"},className:\"framer-1j9x83q\",\"data-framer-name\":\"Bildschirmfoto 2025-03-13 um 09.28.27\",transformTemplate:transformTemplate2})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r57jlu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-az60y9\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n27gn2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+9538+0+100+833+0+0+0+0+6),pixelHeight:158,pixelWidth:168,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GGUgj4gGitGLzGJtu9iwEl9DrA.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+8342+150+0+799+0+0+0+4),pixelHeight:158,pixelWidth:168,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GGUgj4gGitGLzGJtu9iwEl9DrA.svg\"},className:\"framer-1xta1g0\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jrgc6t\",\"data-styles-preset\":\"nSiVK_ztk\",children:\"Buchungen\"})}),className:\"framer-w1syq3\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-color\":\"var(--token-2b1de66f-d7a8-4d29-a17e-9c98359015a8, rgb(105, 105, 105))\"},children:\"Erhalten Sie Einblicke in die Themen, die Ihren Mitarbeitenden wirklich wichtig sind.\"})}),className:\"framer-1ivejnw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tbw0w7\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cii2go\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+9538+0+100+833+0+190+0+0+6),pixelHeight:158,pixelWidth:168,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GGUgj4gGitGLzGJtu9iwEl9DrA.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+8342+150+0+799+0+0+0+4),pixelHeight:158,pixelWidth:168,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GGUgj4gGitGLzGJtu9iwEl9DrA.svg\"},className:\"framer-1vxp8w5\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jrgc6t\",\"data-styles-preset\":\"nSiVK_ztk\",children:\"Angebotsformate\"})}),className:\"framer-1kkt0dt\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-color\":\"var(--token-2b1de66f-d7a8-4d29-a17e-9c98359015a8, rgb(105, 105, 105))\"},children:\"Entdecken Sie, welche Angebotsformate besonders beliebt sind und gut funktionieren.\"})}),className:\"framer-1kj1pit\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jgoesk\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xomucd\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+9538+0+100+833+0+380+0+0+6),pixelHeight:158,pixelWidth:168,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GGUgj4gGitGLzGJtu9iwEl9DrA.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+8342+150+0+799+0+0+0+4),pixelHeight:158,pixelWidth:168,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GGUgj4gGitGLzGJtu9iwEl9DrA.svg\"},className:\"framer-b0zn9t\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jrgc6t\",\"data-styles-preset\":\"nSiVK_ztk\",children:\"Bedarf decken\"})}),className:\"framer-f8k7bw\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-color\":\"var(--token-2b1de66f-d7a8-4d29-a17e-9c98359015a8, rgb(105, 105, 105))\"},children:\"Entwickeln Sie ma\\xdfgeschneiderte L\\xf6sungen, die auf konkreten Zahlen und Statistiken basieren.\"})}),className:\"framer-hqgdao\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-mo23t7 hidden-72rtr7 hidden-fp9olq\"}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-fq7bla hidden-fp9olq\",children:isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sPhn1cDB0:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jrgc6t\",\"data-styles-preset\":\"nSiVK_ztk\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-38237310-e73d-4d02-8826-bbffcdc52e9e, rgb(0, 200, 210))\"},children:\"Das sagen andere \\xfcber uns\"})}),className:\"framer-900jgo hidden-72rtr7\",fonts:[\"Inter\"],transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{y:(componentViewport?.y||0)+10+11121},sPhn1cDB0:{y:(componentViewport?.y||0)+10+8712.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:702,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+10+9767,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jlql9j-container\",nodeId:\"BlHEpB1Vu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{variant:\"uWUpILO1W\"},sPhn1cDB0:{variant:\"Uo4A1qxjD\"}},children:/*#__PURE__*/_jsx(HubspotForm,{height:\"100%\",id:\"BlHEpB1Vu\",layoutId:\"BlHEpB1Vu\",OGi6UkdNL:\"Gehen Sie den n\\xe4chsten Schritt mit uns.\",style:{width:\"100%\"},variant:\"cJTFYXDfc\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,y:(componentViewport?.y||0)+10+11823}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,y:(componentViewport?.y||0)+10+10469,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pwxn5u-container hidden-1vh6cs9\",nodeId:\"G7u2QxfH1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNMZKQCGc:{style:{width:\"100%\"},variant:\"iMvanOkYH\"}},children:/*#__PURE__*/_jsx(VoiioFooter,{height:\"100%\",id:\"G7u2QxfH1\",layoutId:\"G7u2QxfH1\",variant:\"yY0fCe3Vf\",width:\"100%\"})})})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1mwe00p hidden-72rtr7 hidden-fp9olq\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19hzli9\",\"data-styles-preset\":\"kYHJBjvls\",style:{\"--framer-text-alignment\":\"center\"},children:\"Behalten Sie den \\xdcberblick\"})}),className:\"framer-1vbqitg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2b1de66f-d7a8-4d29-a17e-9c98359015a8, rgb(105, 105, 105))\"},children:\"In Ihrem personalisierten Unternehmens-Dashboard finden Sie alle wichtigen Daten und Einblicke zum Nutzungsverhalten Ihrer Mitarbeitenden.\"})}),className:\"framer-1plp0ih\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-12skbs2 hidden-72rtr7 hidden-fp9olq\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18ttnmz\",\"data-framer-name\":\"Platform Formate\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x7uw3w\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sPhn1cDB0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:857,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+7930+20+0+0+0+0),pixelHeight:1276,pixelWidth:1714,sizes:\"251px\",src:\"https://framerusercontent.com/images/h5OH2KtWXUVJt4NaQq2KdZlUXc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/h5OH2KtWXUVJt4NaQq2KdZlUXc.png?scale-down-to=512 512w,https://framerusercontent.com/images/h5OH2KtWXUVJt4NaQq2KdZlUXc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/h5OH2KtWXUVJt4NaQq2KdZlUXc.png 1714w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,x:0,y:50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:857,pixelHeight:1276,pixelWidth:1714,sizes:\"251px\",src:\"https://framerusercontent.com/images/h5OH2KtWXUVJt4NaQq2KdZlUXc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/h5OH2KtWXUVJt4NaQq2KdZlUXc.png?scale-down-to=512 512w,https://framerusercontent.com/images/h5OH2KtWXUVJt4NaQq2KdZlUXc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/h5OH2KtWXUVJt4NaQq2KdZlUXc.png 1714w\"},className:\"framer-1p4x4cr\",\"data-framer-name\":\"Bildschirmfoto 2025-03-13 um 09.27.00\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sPhn1cDB0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:621,intrinsicWidth:857,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+7930+20+0+0+0+54.5),pixelHeight:1242,pixelWidth:1714,sizes:\"278px\",src:\"https://framerusercontent.com/images/eYJIdNhyANqh45iUnJ3OlMIj12k.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/eYJIdNhyANqh45iUnJ3OlMIj12k.png?scale-down-to=512 512w,https://framerusercontent.com/images/eYJIdNhyANqh45iUnJ3OlMIj12k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eYJIdNhyANqh45iUnJ3OlMIj12k.png 1714w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:100,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:621,intrinsicWidth:857,pixelHeight:1242,pixelWidth:1714,sizes:\"278px\",src:\"https://framerusercontent.com/images/eYJIdNhyANqh45iUnJ3OlMIj12k.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/eYJIdNhyANqh45iUnJ3OlMIj12k.png?scale-down-to=512 512w,https://framerusercontent.com/images/eYJIdNhyANqh45iUnJ3OlMIj12k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eYJIdNhyANqh45iUnJ3OlMIj12k.png 1714w\"},className:\"framer-i8zdzs\",\"data-framer-name\":\"Bildschirmfoto 2025-03-13 um 09.39.05\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sPhn1cDB0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:606,intrinsicWidth:854,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+7930+20+0+0+0+347.5-240),pixelHeight:1212,pixelWidth:1708,sizes:\"265px\",src:\"https://framerusercontent.com/images/XoMXSdXr6m36GR4L4Vj3AxPg64.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/XoMXSdXr6m36GR4L4Vj3AxPg64.png?scale-down-to=512 512w,https://framerusercontent.com/images/XoMXSdXr6m36GR4L4Vj3AxPg64.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XoMXSdXr6m36GR4L4Vj3AxPg64.png 1708w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,x:-100,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:606,intrinsicWidth:854,pixelHeight:1212,pixelWidth:1708,sizes:\"265px\",src:\"https://framerusercontent.com/images/XoMXSdXr6m36GR4L4Vj3AxPg64.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/XoMXSdXr6m36GR4L4Vj3AxPg64.png?scale-down-to=512 512w,https://framerusercontent.com/images/XoMXSdXr6m36GR4L4Vj3AxPg64.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XoMXSdXr6m36GR4L4Vj3AxPg64.png 1708w\"},className:\"framer-12ikl10\",\"data-framer-name\":\"Bildschirmfoto 2025-03-13 um 09.27.31\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sPhn1cDB0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:349,intrinsicWidth:855,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+7930+20+0+0+0+347.5-113.8599),pixelHeight:698,pixelWidth:1710,sizes:\"279.7859px\",src:\"https://framerusercontent.com/images/N5Pllct9ee9KeUYTtQ40CFNsAo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/N5Pllct9ee9KeUYTtQ40CFNsAo.png?scale-down-to=512 512w,https://framerusercontent.com/images/N5Pllct9ee9KeUYTtQ40CFNsAo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/N5Pllct9ee9KeUYTtQ40CFNsAo.png 1710w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,x:0,y:-100}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:349,intrinsicWidth:855,pixelHeight:698,pixelWidth:1710,sizes:\"279.7859px\",src:\"https://framerusercontent.com/images/N5Pllct9ee9KeUYTtQ40CFNsAo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/N5Pllct9ee9KeUYTtQ40CFNsAo.png?scale-down-to=512 512w,https://framerusercontent.com/images/N5Pllct9ee9KeUYTtQ40CFNsAo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/N5Pllct9ee9KeUYTtQ40CFNsAo.png 1710w\"},className:\"framer-tljsmf\",\"data-framer-name\":\"Bildschirmfoto 2025-03-13 um 09.28.27\",transformTemplate:transformTemplate2})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1obceb4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hktarg\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rslcgi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sPhn1cDB0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+7930+20+0+0+387.5+0+0+0+6.5),pixelHeight:158,pixelWidth:168,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GGUgj4gGitGLzGJtu9iwEl9DrA.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:158,pixelWidth:168,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GGUgj4gGitGLzGJtu9iwEl9DrA.svg\"},className:\"framer-ya7ghz\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jrgc6t\",\"data-styles-preset\":\"nSiVK_ztk\",children:\"Beratung & Vermittlung\"})}),className:\"framer-1uxx4ns\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-color\":\"var(--token-2b1de66f-d7a8-4d29-a17e-9c98359015a8, rgb(105, 105, 105))\"},children:\"\\xdcber 200 Psychologen und Experten sowie Vermittlung von Pflegel\\xf6sungen. 24/7 erreichbar mit Termingarantie.\"})}),className:\"framer-mjq2fc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i1nhed\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2k71d\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sPhn1cDB0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+7930+20+0+0+387.5+0+0+0+6.5),pixelHeight:158,pixelWidth:168,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GGUgj4gGitGLzGJtu9iwEl9DrA.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:158,pixelWidth:168,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GGUgj4gGitGLzGJtu9iwEl9DrA.svg\"},className:\"framer-m0ii8k\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jrgc6t\",\"data-styles-preset\":\"nSiVK_ztk\",children:\"Kleingruppenformate\"})}),className:\"framer-t7vr3c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-color\":\"var(--token-2b1de66f-d7a8-4d29-a17e-9c98359015a8, rgb(105, 105, 105))\"},children:\"Interaktive Workshops und bereichernde Gespr\\xe4chsrunden erm\\xf6glichen Diskurs zu pers\\xf6nlichen Herausforderungen.\"})}),className:\"framer-15yd2r7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s739oq\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eefeya\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sPhn1cDB0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+7930+20+0+0+387.5+0+0+0+6.5),pixelHeight:158,pixelWidth:168,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GGUgj4gGitGLzGJtu9iwEl9DrA.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:158,pixelWidth:168,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GGUgj4gGitGLzGJtu9iwEl9DrA.svg\"},className:\"framer-15rqq9y\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jrgc6t\",\"data-styles-preset\":\"nSiVK_ztk\",children:\"Live-Events\"})}),className:\"framer-1hb26f5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-194zj3i\",\"data-styles-preset\":\"ZUZ1VrATk\",style:{\"--framer-text-color\":\"var(--token-2b1de66f-d7a8-4d29-a17e-9c98359015a8, rgb(105, 105, 105))\"},children:\"T\\xe4glich hunderte Live-Veranstaltungen zu vielf\\xe4ltigen Themen, wie z.B. Impulsvortr\\xe4ge undTraining.\"})}),className:\"framer-bk17zm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sPhn1cDB0:{height:414,width:\"770px\",y:(componentViewport?.y||0)+10+9414.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18ugoz1-container hidden-72rtr7 hidden-fp9olq\",nodeId:\"tIMv_bGSd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(VoiioFooter,{height:\"100%\",id:\"tIMv_bGSd\",layoutId:\"tIMv_bGSd\",style:{width:\"100%\"},variant:\"BNZmCn7G8\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-X33gm.framer-lux5qc, .framer-X33gm .framer-lux5qc { display: block; }\",\".framer-X33gm.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px 0px 20px 0px; position: relative; width: 1440px; }\",\".framer-X33gm .framer-1tkc7im { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 478px; justify-content: flex-end; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-X33gm .framer-ij2d37 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 819px; word-break: break-word; word-wrap: break-word; }\",\".framer-X33gm .framer-1m6mdjr { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 764px; word-break: break-word; word-wrap: break-word; }\",\".framer-X33gm .framer-ikyp1d { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-X33gm .framer-zh7znh-container, .framer-X33gm .framer-1g7uncj-container, .framer-X33gm .framer-caoc74-container, .framer-X33gm .framer-43rc8b-container, .framer-X33gm .framer-1pwxn5u-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-X33gm .framer-h6satu-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-X33gm .framer-1ex1mw6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-X33gm .framer-dnmaxh-container { flex: 1 0 0px; height: 350px; position: relative; width: 1px; }\",\".framer-X33gm .framer-8t4hfv, .framer-X33gm .framer-1cz1ng4, .framer-X33gm .framer-126pxp1, .framer-X33gm .framer-1eo7kxl, .framer-X33gm .framer-80s2yp, .framer-X33gm .framer-pmpgww, .framer-X33gm .framer-1rslpb7, .framer-X33gm .framer-18n5j4l { aspect-ratio: 0.6790540540540541 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 2px 10px 1px var(--token-8b194bd8-b496-4f76-ad55-a3762a6f1860, rgba(0, 0, 0, 0.12)); gap: 10px; height: var(--framer-aspect-ratio-supported, 326px); overflow: hidden; position: relative; width: 221px; will-change: var(--framer-will-change-override, transform); }\",\".framer-X33gm .framer-5dwmq4-container, .framer-X33gm .framer-jlql9j-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-X33gm .framer-ax4x1j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-X33gm .framer-1cp9msc, .framer-X33gm .framer-dnymsi, .framer-X33gm .framer-1os2v3l, .framer-X33gm .framer-msnva3, .framer-X33gm .framer-ch8aki, .framer-X33gm .framer-1p6hhas, .framer-X33gm .framer-bfgvst, .framer-X33gm .framer-ego9lx, .framer-X33gm .framer-1hk8znm, .framer-X33gm .framer-vu6uox, .framer-X33gm .framer-1uxx4ns, .framer-X33gm .framer-t7vr3c, .framer-X33gm .framer-1hb26f5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-X33gm .framer-1b2i29w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 150px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-X33gm .framer-1ppwa6b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-X33gm .framer-10119r2, .framer-X33gm .framer-1fzqvd2, .framer-X33gm .framer-ueb2wu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: 108px; max-width: 100%; position: relative; white-space: pre-wrap; width: 1200px; word-break: break-word; word-wrap: break-word; }\",\".framer-X33gm .framer-v2u841 { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 630px; overflow: hidden; position: relative; width: 1059px; will-change: var(--framer-will-change-override, transform); }\",\".framer-X33gm .framer-dc11xe { display: grid; flex: none; gap: 50px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-X33gm .framer-ew65pp { align-content: flex-start; align-items: flex-start; align-self: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: auto; justify-content: flex-start; justify-self: center; padding: 0px; position: relative; width: 100%; }\",\".framer-X33gm .framer-3uvaat, .framer-X33gm .framer-92nv5t, .framer-X33gm .framer-21npbi, .framer-X33gm .framer-ph5hux { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-X33gm .framer-16n6r1p, .framer-X33gm .framer-1dcc6wr, .framer-X33gm .framer-ymr2mc, .framer-X33gm .framer-4hb2bb, .framer-X33gm .framer-systq8, .framer-X33gm .framer-1ms6892, .framer-X33gm .framer-105jtns, .framer-X33gm .framer-10p12pf, .framer-X33gm .framer-18ilxwj, .framer-X33gm .framer-1pue5ml, .framer-X33gm .framer-1jxi339, .framer-X33gm .framer-u8nhyl, .framer-X33gm .framer-19pa5x, .framer-X33gm .framer-1oa1mj7, .framer-X33gm .framer-1288b3i, .framer-X33gm .framer-11fcc3o, .framer-X33gm .framer-b2ywp1, .framer-X33gm .framer-hg6znx, .framer-X33gm .framer-aj6ijk, .framer-X33gm .framer-ni87b, .framer-X33gm .framer-1dq40a2, .framer-X33gm .framer-1x6qesa, .framer-X33gm .framer-1rr60pm, .framer-X33gm .framer-13iiyi4, .framer-X33gm .framer-1h1u4zj, .framer-X33gm .framer-1pse266, .framer-X33gm .framer-fqqhoo, .framer-X33gm .framer-jk0kai, .framer-X33gm .framer-1g1se9k, .framer-X33gm .framer-137jwa5, .framer-X33gm .framer-ljl2fq, .framer-X33gm .framer-39kkpc, .framer-X33gm .framer-14k4qe3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-X33gm .framer-9jhq2d, .framer-X33gm .framer-13uf69j, .framer-X33gm .framer-1kj9ppt, .framer-X33gm .framer-1b7nj9j, .framer-X33gm .framer-1xyphuh, .framer-X33gm .framer-1iysz9j, .framer-X33gm .framer-dow8fa, .framer-X33gm .framer-czffqg, .framer-X33gm .framer-1ivejnw, .framer-X33gm .framer-1kj1pit, .framer-X33gm .framer-hqgdao, .framer-X33gm .framer-mjq2fc, .framer-X33gm .framer-15yd2r7, .framer-X33gm .framer-bk17zm { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-X33gm .framer-1eh8wqw, .framer-X33gm .framer-avlxot, .framer-X33gm .framer-1j8q2j2 { align-content: flex-start; align-items: flex-start; align-self: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: auto; justify-content: flex-start; justify-self: center; max-width: 2018px; padding: 0px; position: relative; width: 100%; }\",\".framer-X33gm .framer-2u8le2, .framer-X33gm .framer-kv0p9s, .framer-X33gm .framer-fq7bla { flex: none; height: 150px; overflow: hidden; position: relative; width: 100%; }\",\".framer-X33gm .framer-h33vrs { align-content: center; align-items: center; background-color: var(--token-d11f48c9-a04d-46a7-babd-067c58c40198, #f5f5f5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 150px 40px 75px 40px; position: relative; width: 100%; }\",\".framer-X33gm .framer-1g7tqgb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 752px; word-break: break-word; word-wrap: break-word; }\",\".framer-X33gm .framer-u82grt { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 786px; word-break: break-word; word-wrap: break-word; }\",\".framer-X33gm .framer-8j1ei6, .framer-X33gm .framer-chvb5l { align-content: center; align-items: center; background-color: var(--token-d11f48c9-a04d-46a7-babd-067c58c40198, #f5f5f5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-X33gm .framer-11o1uk4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 51px; height: 450px; justify-content: center; overflow: visible; padding: 0px 10px 0px 0px; position: relative; width: 1200px; }\",\".framer-X33gm .framer-1b6kaui { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px 0px 0px 10px; position: relative; width: 32%; }\",\".framer-X33gm .framer-1td54te, .framer-X33gm .framer-s3n8dd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-X33gm .framer-pfpkny, .framer-X33gm .framer-1a4brx8, .framer-X33gm .framer-12df8m7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-X33gm .framer-sdb8wj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 365px; }\",\".framer-X33gm .framer-1pxt9bf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-X33gm .framer-1teymcj, .framer-X33gm .framer-cvtddc, .framer-X33gm .framer-tktfgk, .framer-X33gm .framer-18umxyo, .framer-X33gm .framer-1rpxfg0, .framer-X33gm .framer-1cp3nml, .framer-X33gm .framer-xsvcnk, .framer-X33gm .framer-13cpxe3, .framer-X33gm .framer-76b2om, .framer-X33gm .framer-ajat4j, .framer-X33gm .framer-129sv9x, .framer-X33gm .framer-1v1virx { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 20px; }\",\".framer-X33gm .framer-x5cn1q, .framer-X33gm .framer-1wqe471 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 365px; }\",\".framer-X33gm .framer-1a1gu2d, .framer-X33gm .framer-16ho3ay, .framer-X33gm .framer-wdts4t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 20px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 350px; }\",\".framer-X33gm .framer-2s0qod { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-end; overflow: visible; padding: 10px; position: relative; width: 779px; }\",\".framer-X33gm .framer-1v772nw, .framer-X33gm .framer-ohn8sn, .framer-X33gm .framer-16yf3y, .framer-X33gm .framer-zg9c0v, .framer-X33gm .framer-buvjyk, .framer-X33gm .framer-1aajs45, .framer-X33gm .framer-1r608ef, .framer-X33gm .framer-s4wkhe, .framer-X33gm .framer-1xwiegf { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 2px 10px 0px var(--token-8b194bd8-b496-4f76-ad55-a3762a6f1860, rgba(0, 0, 0, 0.12)); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-end; overflow: hidden; padding: 10px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-X33gm .framer-1tqgaek, .framer-X33gm .framer-1sg3tjg, .framer-X33gm .framer-1666jl3 { -webkit-backdrop-filter: blur(30px); align-content: center; align-items: center; backdrop-filter: blur(30px); background-color: rgba(65, 176, 97, 0.5); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-X33gm .framer-1n697e, .framer-X33gm .framer-obe7hv, .framer-X33gm .framer-1q1i4g1, .framer-X33gm .framer-1a2z2bu, .framer-X33gm .framer-1b7tx0e, .framer-X33gm .framer-1psat3f, .framer-X33gm .framer-2m83x, .framer-X33gm .framer-6kk9nl, .framer-X33gm .framer-1stqc5u { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-X33gm .framer-hn8y2k, .framer-X33gm .framer-9kuyqk, .framer-X33gm .framer-8mnj4w, .framer-X33gm .framer-1uenuwn, .framer-X33gm .framer-fm3491, .framer-X33gm .framer-fcslv3, .framer-X33gm .framer-z51anp, .framer-X33gm .framer-1urmrta, .framer-X33gm .framer-7tpy4t { -webkit-backdrop-filter: blur(0px); align-content: center; align-items: center; backdrop-filter: blur(0px); background-color: rgba(255, 255, 255, 0.3); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 4px 13px 4px 13px; position: relative; width: min-content; }\",\".framer-X33gm .framer-2dhstf, .framer-X33gm .framer-vj6zrf, .framer-X33gm .framer-ou3vmh, .framer-X33gm .framer-ni5y18, .framer-X33gm .framer-zd9fg6, .framer-X33gm .framer-1wt6pjs, .framer-X33gm .framer-1gklpcs, .framer-X33gm .framer-1o08dmf, .framer-X33gm .framer-76c8aa, .framer-X33gm .framer-eiif17, .framer-X33gm .framer-sw0kq8, .framer-X33gm .framer-1edu7ir, .framer-X33gm .framer-16cfafc, .framer-X33gm .framer-13q0dc9, .framer-X33gm .framer-16iosxc, .framer-X33gm .framer-gobe5l, .framer-X33gm .framer-1vx9wcn, .framer-X33gm .framer-1amy9kn, .framer-X33gm .framer-1otfrdg, .framer-X33gm .framer-zdlj39, .framer-X33gm .framer-1ojv6jl, .framer-X33gm .framer-w1syq3, .framer-X33gm .framer-1kkt0dt, .framer-X33gm .framer-f8k7bw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-X33gm .framer-7dodf1, .framer-X33gm .framer-1phj0to { background-color: var(--token-d11f48c9-a04d-46a7-babd-067c58c40198, #f5f5f5); flex: none; height: 150px; overflow: hidden; position: relative; width: 100%; }\",\".framer-X33gm .framer-19wryl2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 10px; position: relative; width: 1200px; }\",\".framer-X33gm .framer-3oxnr3 { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 450px; justify-content: flex-end; overflow: visible; padding: 10px; position: relative; width: 1px; }\",\".framer-X33gm .framer-j4mpaf, .framer-X33gm .framer-3phrpt, .framer-X33gm .framer-o5sv89 { -webkit-backdrop-filter: blur(30px); align-content: center; align-items: center; backdrop-filter: blur(30px); background-color: rgba(255, 132, 61, 0.5); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-X33gm .framer-3ceno0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 15px 0px 15px 30px; position: relative; width: 32%; }\",\".framer-X33gm .framer-1dlt02s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-X33gm .framer-11z860a, .framer-X33gm .framer-1oxw5dk, .framer-X33gm .framer-176123y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 351px; }\",\".framer-X33gm .framer-1pwklc { align-content: center; align-items: center; background-color: var(--token-d11f48c9-a04d-46a7-babd-067c58c40198, #f5f5f5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 150px 0px; position: relative; width: 100%; }\",\".framer-X33gm .framer-9xttwo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: 450px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-X33gm .framer-1536pq0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 423px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 29%; }\",\".framer-X33gm .framer-z5mm7g, .framer-X33gm .framer-1xeqf1d, .framer-X33gm .framer-ciyfiq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 348px; }\",\".framer-X33gm .framer-88y16j { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-end; overflow: visible; padding: 10px; position: relative; width: 1px; }\",\".framer-X33gm .framer-uuudk5, .framer-X33gm .framer-vswaxn, .framer-X33gm .framer-1i860te { -webkit-backdrop-filter: blur(30px); align-content: center; align-items: center; backdrop-filter: blur(30px); background-color: rgba(150, 50, 150, 0.5); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-X33gm .framer-176fgs8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 150px 40px 51px 40px; position: relative; width: 100%; }\",\".framer-X33gm .framer-g0a1pp, .framer-X33gm .framer-1qfrkmo, .framer-X33gm .framer-1j19mi4, .framer-X33gm .framer-pyvdvh, .framer-X33gm .framer-x69q68 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-X33gm .framer-17ktb91 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 150px 0px; position: relative; width: 1200px; }\",\".framer-X33gm .framer-phj5uf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 33%; }\",\".framer-X33gm .framer-10urr21 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-X33gm .framer-hok7ew, .framer-X33gm .framer-9njyfy, .framer-X33gm .framer-tdp9ze { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-X33gm .framer-1ubt5b9, .framer-X33gm .framer-17pl3ij { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 100%; }\",\".framer-X33gm .framer-1vdr18t { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 700px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-X33gm .framer-knngj7 { aspect-ratio: 0.5079462102689487 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 600px); left: 82px; overflow: visible; position: absolute; top: 54%; transform: translateY(-50%); width: 305px; z-index: 2; }\",\".framer-X33gm .framer-fespx { aspect-ratio: 0.5079462102689487 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 600px); left: 413px; overflow: visible; position: absolute; top: 0px; width: 305px; z-index: 1; }\",\".framer-X33gm .framer-1gj2czd { align-content: center; align-items: center; background-color: var(--token-d11f48c9-a04d-46a7-babd-067c58c40198, #f5f5f5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 150px 40px 51px 40px; position: relative; width: 100%; }\",\".framer-X33gm .framer-1m0bgyn { align-content: center; align-items: center; background-color: var(--token-d11f48c9-a04d-46a7-babd-067c58c40198, #f5f5f5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 20px 150px 20px; position: relative; width: 100%; }\",\".framer-X33gm .framer-pp5rhe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 591px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-X33gm .framer-1abagre, .framer-X33gm .framer-15zu7wo, .framer-X33gm .framer-1adfb7c { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 2px 10px 0px var(--token-8b194bd8-b496-4f76-ad55-a3762a6f1860, rgba(0, 0, 0, 0.12)); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-end; padding: 20px; position: relative; width: 1px; }\",\".framer-X33gm .framer-1oqymom, .framer-X33gm .framer-1yx4ua1, .framer-X33gm .framer-m9do9j { -webkit-backdrop-filter: blur(30px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(30px); background-color: rgba(0, 0, 0, 0.15); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 2px 12px 0px var(--token-8b194bd8-b496-4f76-ad55-a3762a6f1860, rgba(0, 0, 0, 0.12)); display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 20px; position: relative; width: 300px; }\",\".framer-X33gm .framer-exuilh, .framer-X33gm .framer-1qo7lb1, .framer-X33gm .framer-1ykzppu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-X33gm .framer-oszdvt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 170px; justify-content: flex-end; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-X33gm .framer-1iyxpj0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-X33gm .framer-18chept-container { flex: none; height: 415px; position: relative; width: 1077px; }\",\".framer-X33gm .framer-zt0mwm, .framer-X33gm .framer-1c6w27d, .framer-X33gm .framer-1cr0bwy, .framer-X33gm .framer-qsnzt9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 40px 0px; position: relative; width: 654px; }\",\".framer-X33gm .framer-16j6r25, .framer-X33gm .framer-jq8lwg, .framer-X33gm .framer-9s1uuk, .framer-X33gm .framer-1n32vv1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-X33gm .framer-1vho0yi, .framer-X33gm .framer-8zo458, .framer-X33gm .framer-7rbtto, .framer-X33gm .framer-f8u8hz { aspect-ratio: 1 / 1; border-bottom-left-radius: 226px; border-bottom-right-radius: 226px; border-top-left-radius: 226px; border-top-right-radius: 226px; flex: none; height: var(--framer-aspect-ratio-supported, 65px); overflow: visible; position: relative; width: 65px; }\",\".framer-X33gm .framer-ohdr6p, .framer-X33gm .framer-1rvdf5k, .framer-X33gm .framer-jx7o19, .framer-X33gm .framer-1vof4t8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-X33gm .framer-16mf9bf { aspect-ratio: 2.4802631578947367 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 81px); overflow: visible; position: relative; width: 28%; }\",\".framer-X33gm .framer-1oxubtm, .framer-X33gm .framer-9wh9r1 { align-self: stretch; flex: none; height: auto; overflow: visible; position: relative; width: 16%; }\",\".framer-X33gm .framer-1535dof { align-self: stretch; flex: none; height: auto; overflow: visible; position: relative; width: 18%; }\",\".framer-X33gm .framer-thuumi { align-content: center; align-items: center; background-color: var(--token-d11f48c9-a04d-46a7-babd-067c58c40198, #f5f5f5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 150px 0px 150px 0px; position: relative; width: 100%; }\",\".framer-X33gm .framer-c0awka { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-X33gm .framer-zpz5xu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 642px; }\",\".framer-X33gm .framer-yrj3z1, .framer-X33gm .framer-1vbqitg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-X33gm .framer-l9n9jt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 495px; justify-content: flex-start; overflow: visible; padding: 10px; position: relative; width: 100%; }\",\".framer-X33gm .framer-77d2eq { aspect-ratio: 1.3432601880877744 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 2px 10px 0px var(--token-8b194bd8-b496-4f76-ad55-a3762a6f1860, rgba(0, 0, 0, 0.06)); flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 313px); left: 284px; overflow: visible; position: absolute; top: 0px; width: 420px; z-index: 1; }\",\".framer-X33gm .framer-13dwjpx { aspect-ratio: 1.3800322061191626 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 65px; box-shadow: 0px 2px 10px 0px var(--token-8b194bd8-b496-4f76-ad55-a3762a6f1860, rgba(0, 0, 0, 0.06)); flex: none; height: var(--framer-aspect-ratio-supported, 305px); left: 0px; overflow: visible; position: absolute; width: 420px; z-index: 1; }\",\".framer-X33gm .framer-iji4wt { aspect-ratio: 1.4092409240924093 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 2px 10px 0px var(--token-8b194bd8-b496-4f76-ad55-a3762a6f1860, rgba(0, 0, 0, 0.06)); flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 298px); overflow: visible; position: absolute; right: 0px; top: 53%; transform: translateY(-50%); width: 420px; z-index: 1; }\",\".framer-X33gm .framer-1j9x83q { aspect-ratio: 2.4498567335243555 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 0px; box-shadow: 0px 2px 10px 0px var(--token-8b194bd8-b496-4f76-ad55-a3762a6f1860, rgba(0, 0, 0, 0.06)); flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 152px); left: 54%; overflow: visible; position: absolute; transform: translateX(-50%); width: 372px; z-index: 1; }\",\".framer-X33gm .framer-r57jlu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-X33gm .framer-az60y9, .framer-X33gm .framer-1tbw0w7, .framer-X33gm .framer-1jgoesk { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 1px; }\",\".framer-X33gm .framer-n27gn2, .framer-X33gm .framer-cii2go, .framer-X33gm .framer-xomucd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-X33gm .framer-1xta1g0, .framer-X33gm .framer-1vxp8w5, .framer-X33gm .framer-b0zn9t { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); position: relative; width: 21px; }\",\".framer-X33gm .framer-mo23t7 { flex: none; height: 100px; overflow: hidden; position: relative; width: 100%; }\",\".framer-X33gm .framer-900jgo { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 15%; position: absolute; top: 90%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-X33gm .framer-1mwe00p { align-content: center; align-items: center; background-color: var(--token-d11f48c9-a04d-46a7-babd-067c58c40198, #f7f7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 100px 50px 50px 50px; position: relative; width: 100%; }\",\".framer-X33gm .framer-1plp0ih { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 555px; word-break: break-word; word-wrap: break-word; }\",\".framer-X33gm .framer-12skbs2 { align-content: center; align-items: center; background-color: var(--token-d11f48c9-a04d-46a7-babd-067c58c40198, #f7f7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 20px 100px 20px; position: relative; width: 100%; }\",\".framer-X33gm .framer-18ttnmz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 800px; }\",\".framer-X33gm .framer-1x7uw3w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 348px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-X33gm .framer-1p4x4cr { aspect-ratio: 1.3432601880877744 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 2px 10px 0px var(--token-8b194bd8-b496-4f76-ad55-a3762a6f1860, rgba(0, 0, 0, 0.06)); flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 187px); left: 48%; overflow: visible; position: absolute; top: 0px; transform: translateX(-50%); width: 251px; z-index: 1; }\",\".framer-X33gm .framer-i8zdzs { aspect-ratio: 1.3800322061191626 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 2px 10px 0px var(--token-8b194bd8-b496-4f76-ad55-a3762a6f1860, rgba(0, 0, 0, 0.06)); flex: none; height: var(--framer-aspect-ratio-supported, 201px); left: 0px; overflow: visible; position: absolute; top: 55px; width: 278px; z-index: 1; }\",\".framer-X33gm .framer-12ikl10 { aspect-ratio: 1.4092409240924093 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 52px; box-shadow: 0px 2px 10px 0px var(--token-8b194bd8-b496-4f76-ad55-a3762a6f1860, rgba(0, 0, 0, 0.06)); flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 188px); overflow: visible; position: absolute; right: 0px; width: 265px; z-index: 1; }\",\".framer-X33gm .framer-tljsmf { aspect-ratio: 2.4498567335243555 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 0px; box-shadow: 0px 2px 10px 0px var(--token-8b194bd8-b496-4f76-ad55-a3762a6f1860, rgba(0, 0, 0, 0.06)); flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 114px); left: 50%; overflow: visible; position: absolute; transform: translateX(-50%); width: 280px; z-index: 1; }\",\".framer-X33gm .framer-1obceb4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-X33gm .framer-1hktarg, .framer-X33gm .framer-1i1nhed, .framer-X33gm .framer-s739oq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 1px; }\",\".framer-X33gm .framer-1rslcgi, .framer-X33gm .framer-2k71d, .framer-X33gm .framer-1eefeya { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-X33gm .framer-ya7ghz, .framer-X33gm .framer-m0ii8k, .framer-X33gm .framer-15rqq9y { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); position: relative; width: 16px; }\",\".framer-X33gm .framer-18ugoz1-container { flex: none; height: auto; position: relative; width: 770px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,\"@media (min-width: 810px) and (max-width: 1439px) { .framer-X33gm.framer-72rtr7, .framer-X33gm .framer-ueb2wu { width: 810px; } .framer-X33gm .framer-1tkc7im { height: 466px; order: 0; } .framer-X33gm .framer-ij2d37 { width: 686px; } .framer-X33gm .framer-1m6mdjr { width: 645px; } .framer-X33gm .framer-h6satu-container { order: 1; } .framer-X33gm .framer-1ex1mw6 { order: 2; } .framer-X33gm .framer-5dwmq4-container { order: 3; } .framer-X33gm .framer-ax4x1j { order: 4; padding: 15px 20px 0px 20px; } .framer-X33gm .framer-1b2i29w { gap: 50px; order: 5; padding: 100px 20px 0px 20px; } .framer-X33gm .framer-1ppwa6b { gap: 40px; width: 800px; } .framer-X33gm .framer-10119r2 { height: auto; width: 768px; } .framer-X33gm .framer-v2u841 { height: 398px; width: 100%; } .framer-X33gm .framer-dc11xe { gap: 30px; width: 100%; } .framer-X33gm .framer-ew65pp { gap: 3px; order: 0; padding: 20px; } .framer-X33gm .framer-3uvaat, .framer-X33gm .framer-92nv5t, .framer-X33gm .framer-21npbi, .framer-X33gm .framer-ph5hux { gap: 1px; } .framer-X33gm .framer-1eh8wqw { gap: 3px; max-width: unset; order: 1; padding: 20px; } .framer-X33gm .framer-avlxot { gap: 3px; max-width: unset; order: 2; padding: 20px; } .framer-X33gm .framer-1j8q2j2 { gap: 3px; max-width: unset; order: 3; padding: 20px; } .framer-X33gm .framer-2u8le2 { height: 100px; order: 6; } .framer-X33gm .framer-h33vrs { justify-content: flex-end; order: 9; padding: 100px 50px 50px 50px; } .framer-X33gm .framer-1g7tqgb, .framer-X33gm .framer-u82grt { width: 598px; } .framer-X33gm .framer-8j1ei6 { order: 11; } .framer-X33gm .framer-11o1uk4 { gap: 30px; height: min-content; padding: 0px; width: 800px; } .framer-X33gm .framer-1b6kaui { height: min-content; order: 0; padding: 0px; width: 40%; } .framer-X33gm .framer-1td54te, .framer-X33gm .framer-1dlt02s, .framer-X33gm .framer-s3n8dd { gap: 3px; padding: 0px 0px 5px 0px; } .framer-X33gm .framer-pfpkny { gap: 2px; width: 100%; } .framer-X33gm .framer-sdb8wj, .framer-X33gm .framer-x5cn1q, .framer-X33gm .framer-1wqe471 { gap: 8px; width: 100%; } .framer-X33gm .framer-1teymcj, .framer-X33gm .framer-cvtddc, .framer-X33gm .framer-tktfgk, .framer-X33gm .framer-18umxyo, .framer-X33gm .framer-1rpxfg0, .framer-X33gm .framer-1cp3nml, .framer-X33gm .framer-xsvcnk, .framer-X33gm .framer-13cpxe3, .framer-X33gm .framer-76b2om { height: var(--framer-aspect-ratio-supported, 16px); width: 16px; } .framer-X33gm .framer-1a1gu2d, .framer-X33gm .framer-16ho3ay, .framer-X33gm .framer-wdts4t { gap: 8px; height: 10px; width: 100%; } .framer-X33gm .framer-2s0qod { flex: 1 0 0px; gap: 10px; height: min-content; order: 1; width: 1px; } .framer-X33gm .framer-1v772nw, .framer-X33gm .framer-ohn8sn, .framer-X33gm .framer-16yf3y, .framer-X33gm .framer-zg9c0v, .framer-X33gm .framer-buvjyk, .framer-X33gm .framer-1aajs45, .framer-X33gm .framer-1r608ef, .framer-X33gm .framer-s4wkhe, .framer-X33gm .framer-1xwiegf { align-content: flex-start; align-items: flex-start; height: 285px; padding: 5px; } .framer-X33gm .framer-1tqgaek, .framer-X33gm .framer-1sg3tjg, .framer-X33gm .framer-1666jl3, .framer-X33gm .framer-j4mpaf, .framer-X33gm .framer-3phrpt, .framer-X33gm .framer-o5sv89, .framer-X33gm .framer-uuudk5, .framer-X33gm .framer-vswaxn, .framer-X33gm .framer-1i860te { min-height: 82px; } .framer-X33gm .framer-1n697e, .framer-X33gm .framer-obe7hv, .framer-X33gm .framer-1a2z2bu, .framer-X33gm .framer-1b7tx0e, .framer-X33gm .framer-1psat3f, .framer-X33gm .framer-2m83x, .framer-X33gm .framer-6kk9nl, .framer-X33gm .framer-1stqc5u { justify-content: center; } .framer-X33gm .framer-1q1i4g1 { justify-content: flex-start; } .framer-X33gm .framer-7dodf1 { height: 100px; order: 14; } .framer-X33gm .framer-chvb5l { order: 13; } .framer-X33gm .framer-19wryl2 { gap: 45px; padding: 0px; width: 800px; } .framer-X33gm .framer-3oxnr3 { gap: 10px; height: min-content; order: 0; } .framer-X33gm .framer-3ceno0 { order: 1; padding: 0px; width: 40%; } .framer-X33gm .framer-1a4brx8, .framer-X33gm .framer-12df8m7 { align-content: flex-start; align-items: flex-start; gap: 2px; width: 100%; } .framer-X33gm .framer-11z860a, .framer-X33gm .framer-1oxw5dk, .framer-X33gm .framer-176123y, .framer-X33gm .framer-z5mm7g, .framer-X33gm .framer-1xeqf1d, .framer-X33gm .framer-ciyfiq { gap: 8px; width: 300px; } .framer-X33gm .framer-1phj0to { height: 100px; order: 12; } .framer-X33gm .framer-1pwklc { order: 15; padding: 0px; } .framer-X33gm .framer-9xttwo { gap: 45px; height: min-content; padding: 0px 0px 100px 0px; width: 800px; } .framer-X33gm .framer-1536pq0 { height: min-content; order: 0; width: 40%; } .framer-X33gm .framer-88y16j { gap: 10px; height: min-content; order: 1; } .framer-X33gm .framer-176fgs8 { gap: 0px; order: 16; padding: 100px 20px 40px 20px; } .framer-X33gm .framer-1fzqvd2 { height: auto; max-width: unset; width: 780px; } .framer-X33gm .framer-g0a1pp { gap: 0px; order: 17; padding: 0px 0px 100px 0px; } .framer-X33gm .framer-17ktb91 { gap: 20px; padding: 0px; width: 800px; } .framer-X33gm .framer-phj5uf { padding: 0px 50px 0px 0px; width: 40%; } .framer-X33gm .framer-hok7ew, .framer-X33gm .framer-9njyfy, .framer-X33gm .framer-tdp9ze { gap: 8px; } .framer-X33gm .framer-1vdr18t { align-content: center; align-items: center; height: 558px; justify-content: flex-start; } .framer-X33gm .framer-knngj7 { bottom: 30px; height: var(--framer-aspect-ratio-supported, 398px); left: 14px; top: unset; transform: unset; width: 202px; } .framer-X33gm .framer-fespx { height: var(--framer-aspect-ratio-supported, 398px); left: 222px; top: 1px; width: 202px; } .framer-X33gm .framer-1gj2czd { order: 18; padding: 100px 40px 10px 40px; } .framer-X33gm .framer-1m0bgyn { order: 19; padding: 10px 20px 100px 20px; } .framer-X33gm .framer-pp5rhe { gap: 15px; height: 426px; padding: 10px; width: 800px; } .framer-X33gm .framer-1abagre, .framer-X33gm .framer-15zu7wo, .framer-X33gm .framer-1adfb7c { padding: 10px; } .framer-X33gm .framer-1oqymom, .framer-X33gm .framer-1yx4ua1, .framer-X33gm .framer-m9do9j { background-color: rgba(0, 0, 0, 0.25); padding: 15px; width: 100%; } .framer-X33gm .framer-exuilh, .framer-X33gm .framer-1qo7lb1, .framer-X33gm .framer-1ykzppu { gap: 3px; } .framer-X33gm .framer-1iyxpj0 { order: 21; } .framer-X33gm .framer-18chept-container { height: 436px; width: 700px; } .framer-X33gm .framer-kv0p9s { height: 100px; order: 22; } .framer-X33gm .framer-mo23t7 { order: 26; } .framer-X33gm .framer-fq7bla { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 120px; justify-content: flex-end; order: 20; padding: 0px 0px 20px 0px; } .framer-X33gm .framer-900jgo { left: unset; position: relative; top: unset; transform: unset; } .framer-X33gm .framer-jlql9j-container { order: 29; } .framer-X33gm .framer-1mwe00p { order: 24; } .framer-X33gm .framer-12skbs2 { order: 25; } .framer-X33gm .framer-i8zdzs { height: var(--framer-aspect-ratio-supported, 202px); } .framer-X33gm .framer-ya7ghz, .framer-X33gm .framer-m0ii8k, .framer-X33gm .framer-15rqq9y { height: var(--framer-aspect-ratio-supported, 16px); } .framer-X33gm .framer-18ugoz1-container { order: 30; }}\",\"@media (max-width: 809px) { .framer-X33gm.framer-72rtr7 { width: 390px; } .framer-X33gm .framer-1tkc7im { align-content: flex-start; align-items: flex-start; height: 465px; order: 1; padding: 20px; } .framer-X33gm .framer-ij2d37 { order: 0; width: 337px; } .framer-X33gm .framer-1m6mdjr { order: 1; width: 350px; } .framer-X33gm .framer-ikyp1d, .framer-X33gm .framer-1ex1mw6 { order: 2; } .framer-X33gm .framer-zh7znh-container, .framer-X33gm .framer-5dwmq4-container, .framer-X33gm .framer-1g7uncj-container, .framer-X33gm .framer-caoc74-container, .framer-X33gm .framer-43rc8b-container { order: 3; } .framer-X33gm .framer-h6satu-container, .framer-X33gm .framer-1td54te, .framer-X33gm .framer-1dlt02s, .framer-X33gm .framer-s3n8dd { order: 0; } .framer-X33gm .framer-ax4x1j { order: 4; } .framer-X33gm .framer-1cp9msc { flex: none; width: 240px; } .framer-X33gm .framer-1b2i29w { align-content: flex-start; align-items: flex-start; gap: 50px; order: 5; padding: 100px 20px 20px 20px; } .framer-X33gm .framer-1ppwa6b { align-content: flex-start; align-items: flex-start; gap: 30px; order: 0; } .framer-X33gm .framer-10119r2, .framer-X33gm .framer-1fzqvd2, .framer-X33gm .framer-ueb2wu { height: auto; width: 100%; } .framer-X33gm .framer-v2u841 { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; height: 223px; width: 100%; will-change: unset; } .framer-X33gm .framer-dc11xe { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; justify-content: flex-start; width: 100%; } .framer-X33gm .framer-ew65pp, .framer-X33gm .framer-1eh8wqw, .framer-X33gm .framer-avlxot, .framer-X33gm .framer-1j8q2j2 { align-self: unset; height: min-content; padding: 15px; } .framer-X33gm .framer-3uvaat, .framer-X33gm .framer-92nv5t, .framer-X33gm .framer-21npbi, .framer-X33gm .framer-ph5hux { gap: 0px; } .framer-X33gm .framer-16n6r1p, .framer-X33gm .framer-1dcc6wr, .framer-X33gm .framer-ymr2mc, .framer-X33gm .framer-4hb2bb, .framer-X33gm .framer-systq8, .framer-X33gm .framer-1ms6892, .framer-X33gm .framer-105jtns, .framer-X33gm .framer-10p12pf { white-space: pre; width: auto; } .framer-X33gm .framer-2u8le2 { height: 100px; order: 6; } .framer-X33gm .framer-h33vrs { justify-content: flex-end; order: 7; padding: 100px 20px 20px 20px; } .framer-X33gm .framer-1g7tqgb, .framer-X33gm .framer-u82grt { width: 100%; } .framer-X33gm .framer-8j1ei6 { order: 9; padding: 20px; } .framer-X33gm .framer-11o1uk4, .framer-X33gm .framer-9xttwo { background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 2px 10px 0px var(--token-8b194bd8-b496-4f76-ad55-a3762a6f1860, rgba(0, 0, 0, 0.06)); flex-direction: column; gap: 0px; height: min-content; padding: 10px; width: 100%; } .framer-X33gm .framer-1b6kaui { height: min-content; order: 1; padding: 0px 10px 10px 10px; width: 100%; } .framer-X33gm .framer-pfpkny, .framer-X33gm .framer-1a4brx8, .framer-X33gm .framer-12df8m7 { order: 1; width: 100%; } .framer-X33gm .framer-sdb8wj, .framer-X33gm .framer-x5cn1q, .framer-X33gm .framer-1wqe471, .framer-X33gm .framer-11z860a, .framer-X33gm .framer-1oxw5dk, .framer-X33gm .framer-176123y, .framer-X33gm .framer-z5mm7g, .framer-X33gm .framer-1xeqf1d, .framer-X33gm .framer-ciyfiq, .framer-X33gm .framer-n27gn2, .framer-X33gm .framer-cii2go, .framer-X33gm .framer-xomucd { gap: 8px; width: 100%; } .framer-X33gm .framer-1teymcj, .framer-X33gm .framer-cvtddc, .framer-X33gm .framer-tktfgk, .framer-X33gm .framer-18umxyo, .framer-X33gm .framer-1rpxfg0, .framer-X33gm .framer-1cp3nml, .framer-X33gm .framer-xsvcnk, .framer-X33gm .framer-13cpxe3, .framer-X33gm .framer-76b2om, .framer-X33gm .framer-ajat4j, .framer-X33gm .framer-129sv9x, .framer-X33gm .framer-1v1virx, .framer-X33gm .framer-1xta1g0, .framer-X33gm .framer-1vxp8w5, .framer-X33gm .framer-b0zn9t { height: var(--framer-aspect-ratio-supported, 18px); width: 18px; } .framer-X33gm .framer-1a1gu2d, .framer-X33gm .framer-16ho3ay, .framer-X33gm .framer-wdts4t { gap: 8px; height: 10px; order: 2; width: 100%; } .framer-X33gm .framer-2s0qod { flex-direction: column; height: min-content; order: 0; padding: 10px 10px 20px 10px; width: 100%; } .framer-X33gm .framer-1v772nw, .framer-X33gm .framer-zg9c0v, .framer-X33gm .framer-1r608ef { flex: none; height: 284px; width: 100%; } .framer-X33gm .framer-7dodf1 { height: 25px; order: 12; } .framer-X33gm .framer-chvb5l { order: 11; padding: 20px; } .framer-X33gm .framer-19wryl2 { background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 2px 10px 0px var(--token-8b194bd8-b496-4f76-ad55-a3762a6f1860, rgba(0, 0, 0, 0.06)); flex-direction: column; gap: 0px; padding: 10px; width: 100%; } .framer-X33gm .framer-3oxnr3, .framer-X33gm .framer-88y16j { flex: none; flex-direction: column; height: min-content; order: 0; padding: 10px 10px 20px 10px; width: 100%; } .framer-X33gm .framer-3ceno0 { order: 1; padding: 0px 10px 10px 10px; width: 100%; } .framer-X33gm .framer-1phj0to { height: 25px; order: 10; } .framer-X33gm .framer-1pwklc { order: 13; padding: 20px 20px 100px 20px; } .framer-X33gm .framer-1536pq0 { height: min-content; order: 1; padding: 0px 0px 10px 10px; width: 100%; } .framer-X33gm .framer-176fgs8 { order: 14; padding: 100px 20px 20px 20px; } .framer-X33gm .framer-g0a1pp { order: 15; padding: 20px 20px 100px 20px; } .framer-X33gm .framer-17ktb91 { flex: 1 0 0px; flex-direction: column; gap: 20px; padding: 0px; width: 1px; } .framer-X33gm .framer-phj5uf { gap: 20px; order: 1; width: 100%; } .framer-X33gm .framer-hok7ew, .framer-X33gm .framer-9njyfy, .framer-X33gm .framer-tdp9ze { gap: 8px; } .framer-X33gm .framer-1vdr18t { align-content: center; align-items: center; flex: none; height: 322px; order: 0; width: 100%; } .framer-X33gm .framer-knngj7 { height: var(--framer-aspect-ratio-supported, 291px); left: 16px; top: 45%; width: 148px; } .framer-X33gm .framer-fespx { height: var(--framer-aspect-ratio-supported, 293px); left: 186px; top: 55%; transform: translateY(-50%); width: 149px; } .framer-X33gm .framer-1gj2czd { order: 16; padding: 100px 20px 10px 20px; } .framer-X33gm .framer-1m0bgyn { flex-direction: column; order: 17; padding: 20px 20px 100px 20px; } .framer-X33gm .framer-pp5rhe { flex-direction: column; height: min-content; width: 100%; } .framer-X33gm .framer-1abagre, .framer-X33gm .framer-15zu7wo, .framer-X33gm .framer-1adfb7c { flex: none; height: 300px; padding: 10px; width: 100%; } .framer-X33gm .framer-1oqymom, .framer-X33gm .framer-1yx4ua1, .framer-X33gm .framer-m9do9j { background-color: rgba(0, 0, 0, 0.25); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; padding: 15px; width: 250px; } .framer-X33gm .framer-exuilh, .framer-X33gm .framer-1qo7lb1, .framer-X33gm .framer-1ykzppu { gap: 2px; } .framer-X33gm .framer-oszdvt { height: 100px; order: 18; } .framer-X33gm .framer-1iyxpj0 { order: 20; } .framer-X33gm .framer-18chept-container { height: 575px; width: 100%; } .framer-X33gm .framer-kv0p9s { height: 100px; order: 21; } .framer-X33gm .framer-thuumi { order: 25; padding: 0px; } .framer-X33gm .framer-c0awka { align-content: flex-start; align-items: flex-start; flex: 1 0 0px; gap: 40px; padding: 100px 20px 100px 20px; width: 1px; } .framer-X33gm .framer-zpz5xu { align-content: center; align-items: center; order: 0; width: 100%; } .framer-X33gm .framer-l9n9jt { gap: 20px; height: 549px; order: 1; padding: 0px; } .framer-X33gm .framer-77d2eq { border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; height: var(--framer-aspect-ratio-supported, 175px); left: 0px; width: 234px; } .framer-X33gm .framer-13dwjpx { border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 0px; height: var(--framer-aspect-ratio-supported, 196px); left: unset; right: 0px; width: 270px; } .framer-X33gm .framer-iji4wt { border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; height: var(--framer-aspect-ratio-supported, 134px); top: 154px; transform: unset; width: 188px; } .framer-X33gm .framer-1j9x83q { border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: unset; height: var(--framer-aspect-ratio-supported, 82px); left: 0px; top: 54%; transform: translateY(-50%); width: 200px; } .framer-X33gm .framer-r57jlu { flex-direction: column; gap: 20px; order: 2; } .framer-X33gm .framer-az60y9, .framer-X33gm .framer-1tbw0w7, .framer-X33gm .framer-1jgoesk { flex: none; gap: 0px; width: 100%; } .framer-X33gm .framer-f8k7bw { white-space: pre-wrap; width: 76%; word-break: break-word; word-wrap: break-word; } .framer-X33gm .framer-jlql9j-container { order: 26; } .framer-X33gm .framer-1pwxn5u-container { order: 30; width: 90%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10000\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"sPhn1cDB0\":{\"layout\":[\"fixed\",\"auto\"]},\"DNMZKQCGc\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-X33gm\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:1e4,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Brandon Grotesque Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/cRKBGfHwsXWKJ9W1kMi5vIgo1is.woff2\"},{family:\"Skema Pro Title Medium Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/zWm9XcUHsI4cQTHzL9cf8hLMsKk.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...VoiioCTAsFonts,...NavbarSectionFonts,...TickerFonts,...LogoSectionFonts,...SlideshowFonts,...HubspotFormFonts,...VoiioFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sPhn1cDB0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DNMZKQCGc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"10000\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "VoiioCTAsFonts", "getFonts", "JcEzKtZmu_default", "NavbarSectionFonts", "ClFeFr3CR_default", "TickerFonts", "Ticker", "LogoSectionFonts", "Em37XgodO_default", "SlideshowFonts", "Slideshow", "ImageWithFX", "withFX", "Image2", "HubspotFormFonts", "mywjE1SQQ_default", "VoiioFooterFonts", "RMs5EISH5_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "textEffect", "textEffect1", "transition2", "textEffect2", "textEffect3", "textEffect4", "textEffect5", "textEffect6", "textEffect7", "textEffect8", "transformTemplate1", "_", "t", "textEffect9", "textEffect10", "textEffect11", "transformTemplate2", "transformTemplate3", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "x", "RichText2", "ComponentViewportProvider", "Container", "getLoadingLazyAtYPosition", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
