{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js", "ssg:https://framerusercontent.com/modules/p54p6sCl8Z3KKJRtNuLi/PmBOdlqKGPGflcsLebJ6/HGm1XrCXK.js", "ssg:https://framerusercontent.com/modules/xzBLdskoP52v6AyhlG4f/Ngb1IiQBWeeLlAodsqNJ/ORDFpypPN.js", "ssg:https://framerusercontent.com/modules/jjhugcL4rmRG8fVCPiw7/JzUN5mhI8S3ScH3NpbcS/EphwX_vBP-0.js", "ssg:https://framerusercontent.com/modules/jjhugcL4rmRG8fVCPiw7/JzUN5mhI8S3ScH3NpbcS/EphwX_vBP.js", "ssg:https://framerusercontent.com/modules/29CUfEoH9miJZWfbCYAQ/hXLWMAKJJTkttdpSazhM/EphwX_vBP.js", "ssg:https://framerusercontent.com/modules/JkIWLgcrfsYH6OrWYSGA/Wb6Hu3t9c98HjQ9vEeh7/gGU9ftJvQ-0.js", "ssg:https://framerusercontent.com/modules/JkIWLgcrfsYH6OrWYSGA/Wb6Hu3t9c98HjQ9vEeh7/gGU9ftJvQ.js", "ssg:https://framerusercontent.com/modules/N7HSmIQWOOlMJjpDkQqc/HryiCRNPXstCOvOp7RmS/qP4csdANt.js", "ssg:https://framerusercontent.com/modules/GT3PaRe4UTWPYbajh4qu/RRuW88E9QmUc3H6Wbfb5/jOFOV9gyF.js", "ssg:https://framerusercontent.com/modules/tRolvR340ziANHtujCUC/qo8eqVIfbtPo8RVkrv2H/SrkqwwAir.js", "ssg:https://framerusercontent.com/modules/DNDJBsmfkx8CI1QQ1RxL/ChdgaP8b1wwhYFHsCa75/augiA20Il.js", "ssg:https://framerusercontent.com/modules/huldOnlbpC7HkOLQUpOJ/YlKKIUfZIOsdSzoORVxy/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useInView,useTransform,LayoutGroup,wrap,sync,mix}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;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[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});}},[hasChildren]);const scheduleMeasure=useCallback(()=>{sync.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\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(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */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}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},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\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},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},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},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;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Raleway-500\"]);export const fonts=[{family:\"Raleway\",moduleAsset:{localModuleIdentifier:\"local-module:css/HGm1XrCXK:default\",url:\"https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoooCPNLA3JC9c.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoooCPNLA3JC9c.ttf\",weight:\"500\"}];export const css=['.framer-AijrJ .framer-styles-preset-1gwj73e:not(.rich-text-wrapper), .framer-AijrJ .framer-styles-preset-1gwj73e.rich-text-wrapper p { --framer-font-family: \"Raleway\", sans-serif; --framer-font-size: 56px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: -0.5px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-92718a0e-6f80-4b54-befa-db7bbc2f95ae, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1599px) and (min-width: 1400px) { .framer-AijrJ .framer-styles-preset-1gwj73e:not(.rich-text-wrapper), .framer-AijrJ .framer-styles-preset-1gwj73e.rich-text-wrapper p { --framer-font-family: \"Raleway\", sans-serif; --framer-font-size: 45px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: -0.5px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-92718a0e-6f80-4b54-befa-db7bbc2f95ae, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1399px) and (min-width: 1200px) { .framer-AijrJ .framer-styles-preset-1gwj73e:not(.rich-text-wrapper), .framer-AijrJ .framer-styles-preset-1gwj73e.rich-text-wrapper p { --framer-font-family: \"Raleway\", sans-serif; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: -0.5px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-92718a0e-6f80-4b54-befa-db7bbc2f95ae, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-AijrJ .framer-styles-preset-1gwj73e:not(.rich-text-wrapper), .framer-AijrJ .framer-styles-preset-1gwj73e.rich-text-wrapper p { --framer-font-family: \"Raleway\", sans-serif; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: -0.5px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-92718a0e-6f80-4b54-befa-db7bbc2f95ae, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-AijrJ .framer-styles-preset-1gwj73e:not(.rich-text-wrapper), .framer-AijrJ .framer-styles-preset-1gwj73e.rich-text-wrapper p { --framer-font-family: \"Raleway\", sans-serif; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: -0.5px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-92718a0e-6f80-4b54-befa-db7bbc2f95ae, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-AijrJ\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (98479f1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Raleway-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Raleway\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/raleway/v34/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjMPrEVIT9c2c8.woff2\",weight:\"400\"}]}];export const css=['.framer-jzr20 .framer-styles-preset-dbxcdl:not(.rich-text-wrapper), .framer-jzr20 .framer-styles-preset-dbxcdl.rich-text-wrapper p { --framer-font-family: \"Raleway\", \"Raleway Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-92718a0e-6f80-4b54-befa-db7bbc2f95ae, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1599px) and (min-width: 1400px) { .framer-jzr20 .framer-styles-preset-dbxcdl:not(.rich-text-wrapper), .framer-jzr20 .framer-styles-preset-dbxcdl.rich-text-wrapper p { --framer-font-family: \"Raleway\", \"Raleway Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-92718a0e-6f80-4b54-befa-db7bbc2f95ae, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1399px) and (min-width: 1200px) { .framer-jzr20 .framer-styles-preset-dbxcdl:not(.rich-text-wrapper), .framer-jzr20 .framer-styles-preset-dbxcdl.rich-text-wrapper p { --framer-font-family: \"Raleway\", \"Raleway Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-92718a0e-6f80-4b54-befa-db7bbc2f95ae, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-jzr20 .framer-styles-preset-dbxcdl:not(.rich-text-wrapper), .framer-jzr20 .framer-styles-preset-dbxcdl.rich-text-wrapper p { --framer-font-family: \"Raleway\", \"Raleway Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 15px; --framer-font-style: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-92718a0e-6f80-4b54-befa-db7bbc2f95ae, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-jzr20 .framer-styles-preset-dbxcdl:not(.rich-text-wrapper), .framer-jzr20 .framer-styles-preset-dbxcdl.rich-text-wrapper p { --framer-font-family: \"Raleway\", \"Raleway Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-92718a0e-6f80-4b54-befa-db7bbc2f95ae, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-jzr20\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "export const v0=\"Kontakt checken\";export const v1=\"Anfrage senden\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ca9141d)\nimport*as localizedValues from\"./EphwX_vBP-0.js\";const valuesByLocaleId={F41v0Sa_l:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ca9141d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/p54p6sCl8Z3KKJRtNuLi/PmBOdlqKGPGflcsLebJ6/HGm1XrCXK.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/xzBLdskoP52v6AyhlG4f/Ngb1IiQBWeeLlAodsqNJ/ORDFpypPN.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/VQvkjlim0p4xDxg45iwi/tcywsaXMJWnXLBUX1rID/w4EIzjJzz.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/jjhugcL4rmRG8fVCPiw7/JzUN5mhI8S3ScH3NpbcS/EphwX_vBP.js\";import Button from\"https://framerusercontent.com/modules/wHEKD3Ptt6JlQQ3DvIrl/ak0Jj1kF2lZep0X5spcS/LcQgrRBO_.js\";const ButtonFonts=getFonts(Button);const cycleOrder=[\"BU_MLHOcf\",\"ZbU4T14qi\",\"aqvP5UFGw\",\"MIJR_OCYP\"];const serializationHash=\"framer-guvN6\";const variantClassNames={aqvP5UFGw:\"framer-v-1os4t1n\",BU_MLHOcf:\"framer-v-1ulanyi\",MIJR_OCYP:\"framer-v-nr2dyc\",ZbU4T14qi:\"framer-v-qpqy8k\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Larger Image\":\"ZbU4T14qi\",\"No Button\":\"MIJR_OCYP\",\"Your story?\":\"aqvP5UFGw\",Default:\"BU_MLHOcf\"};const getProps=({buttonLink,height,id,image,name1,quote,title,width,...props})=>{return{...props,age5xjdgl:image??props.age5xjdgl,CHj5EdUId:title??props.CHj5EdUId??\"Titel, Berufliche Erfahrungen, Bildungsgrad\",I87LQdQWg:name1??props.I87LQdQWg??\"Name\",iHyDoqVe8:buttonLink??props.iHyDoqVe8,variant:humanReadableVariantMap[props.variant]??props.variant??\"BU_MLHOcf\",y3ndbJ11E:quote??props.y3ndbJ11E??\"Lorem ipsum dolor sit amet consectetur. Malesuada quis eget at iaculis. Egestas vel quisque vitae vestibulum odio vel accumsan in. Etiam feugiat lorem sed mauris. Sed molestie pellentesque suspendisse tellus a donec.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,age5xjdgl,I87LQdQWg,CHj5EdUId,y3ndbJ11E,iHyDoqVe8,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BU_MLHOcf\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"MIJR_OCYP\")return false;return true;};const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ulanyi\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"BU_MLHOcf\",ref:ref??ref1,style:{backgroundColor:\"var(--token-4ff6545d-df4f-4531-92ad-d0cb2d20a869, rgb(8, 13, 15))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40,...style},...addPropertyOverrides({aqvP5UFGw:{\"data-framer-name\":\"Your story?\"},MIJR_OCYP:{\"data-framer-name\":\"No Button\"},ZbU4T14qi:{\"data-framer-name\":\"Larger Image\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17zvp39\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"ZbuZAqfET\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+32+0),sizes:\"104px\",...toResponsiveImage(age5xjdgl)},className:\"framer-1sffnpd\",\"data-framer-name\":\"Larger Image\",layoutDependency:layoutDependency,layoutId:\"bI15IHaPJ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({ZbU4T14qi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+32+0),sizes:\"148px\",...toResponsiveImage(age5xjdgl)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uaj2en\",layoutDependency:layoutDependency,layoutId:\"qrVRAMXnY\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gwj73e\",\"data-styles-preset\":\"HGm1XrCXK\",children:\"Name\"})}),className:\"framer-zekzh8\",\"data-framer-name\":\"Andi, Managing director of a financial consultancy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VUwv5VN_x\",text:I87LQdQWg,transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d9f738\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"SqJmvIGWu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-tniybq\",\"data-styles-preset\":\"w4EIzjJzz\",children:\"Titel, Berufliche Erfahrungen, Bildungsgrad\"})}),className:\"framer-cqnrry\",\"data-framer-name\":\"Andi, Managing director of a financial consultancy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oquiUOUWU\",text:CHj5EdUId,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-dbxcdl\",\"data-styles-preset\":\"ORDFpypPN\",children:\"Lorem ipsum dolor sit amet consectetur. Malesuada quis eget at iaculis. Egestas vel quisque vitae vestibulum odio vel accumsan in. Etiam feugiat lorem sed mauris. Sed molestie pellentesque suspendisse tellus a donec.\"})}),className:\"framer-1tdvpob\",\"data-framer-name\":\"Lorem ipsum dolor sit amet consectetur. Malesuada quis eget at iaculis. Egestas vel quisque vitae vestibulum odio vel accumsan in. Etiam feugiat lorem sed mauris. Sed molestie pellentesque suspendisse tellus a donec.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"owaVRFyDh\",text:y3ndbJ11E,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yrhpt5\",\"data-framer-name\":\"Actions\",layoutDependency:layoutDependency,layoutId:\"rmCihDJK2\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MX2as6AUI\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+168+16+304+0+(Math.max(0,(Math.max(0,((componentViewport?.height||540)-0-168)/1)*1-48-304)/1)*1-0-46),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-trqfa5-container\",layoutDependency:layoutDependency,layoutId:\"iCACzBgNN-container\",children:/*#__PURE__*/_jsx(Button,{akdx3qWL3:\"var(--token-16105515-5ac1-43c6-86bd-b1a3bf7190ab, rgb(255, 152, 119))\",ApJE0R1f9:false,c1IFgyZAz:getLocalizedValue(\"v0\",activeLocale)??\"Check contact\",CqxRt2jS4:true,egSdBaiwl:true,height:\"100%\",HuYTTABMN:\"external-link\",id:\"iCACzBgNN\",layoutId:\"iCACzBgNN\",LJkh2Iyf1:iHyDoqVe8,qkP3k84aG:\"external-link\",variant:\"DpMi4lOh_\",width:\"100%\",YYceHEsJQ:true,...addPropertyOverrides({aqvP5UFGw:{c1IFgyZAz:getLocalizedValue(\"v1\",activeLocale)??\"Contact me\",egSdBaiwl:false,LJkh2Iyf1:resolvedLinks[0],variant:\"loeaGUrB8\"}},baseVariant,gestureVariant)})})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-guvN6.framer-1lg653h, .framer-guvN6 .framer-1lg653h { display: block; }\",\".framer-guvN6.framer-1ulanyi { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 540px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 432px; will-change: var(--framer-will-change-override, transform); }\",\".framer-guvN6 .framer-17zvp39 { 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: flex-start; overflow: visible; padding: 32px; position: relative; width: 100%; }\",\".framer-guvN6 .framer-1sffnpd { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 104px); mix-blend-mode: exclusion; overflow: hidden; position: relative; width: 104px; will-change: var(--framer-will-change-override, transform); }\",\".framer-guvN6 .framer-uaj2en { align-content: center; align-items: center; bottom: -16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 31px; min-height: 79px; mix-blend-mode: difference; overflow: visible; padding: 0px; position: absolute; right: 65px; }\",\".framer-guvN6 .framer-zekzh8 { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 49%; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-guvN6 .framer-d9f738 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 16px 32px 32px 32px; position: relative; width: 100%; }\",\".framer-guvN6 .framer-cqnrry, .framer-guvN6 .framer-1tdvpob { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-guvN6 .framer-1yrhpt5 { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-guvN6 .framer-trqfa5-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-guvN6.framer-1ulanyi, .framer-guvN6 .framer-17zvp39, .framer-guvN6 .framer-uaj2en, .framer-guvN6 .framer-d9f738, .framer-guvN6 .framer-1yrhpt5 { gap: 0px; } .framer-guvN6.framer-1ulanyi > *, .framer-guvN6 .framer-17zvp39 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-guvN6.framer-1ulanyi > :first-child, .framer-guvN6 .framer-17zvp39 > :first-child, .framer-guvN6 .framer-uaj2en > :first-child, .framer-guvN6 .framer-d9f738 > :first-child { margin-top: 0px; } .framer-guvN6.framer-1ulanyi > :last-child, .framer-guvN6 .framer-17zvp39 > :last-child, .framer-guvN6 .framer-uaj2en > :last-child, .framer-guvN6 .framer-d9f738 > :last-child { margin-bottom: 0px; } .framer-guvN6 .framer-uaj2en > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-guvN6 .framer-d9f738 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-guvN6 .framer-1yrhpt5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-guvN6 .framer-1yrhpt5 > :first-child { margin-left: 0px; } .framer-guvN6 .framer-1yrhpt5 > :last-child { margin-right: 0px; } }\",\".framer-guvN6.framer-v-qpqy8k .framer-1sffnpd { aspect-ratio: unset; height: 104px; width: 148px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 540\n * @framerIntrinsicWidth 432\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZbU4T14qi\":{\"layout\":[\"fixed\",\"fixed\"]},\"aqvP5UFGw\":{\"layout\":[\"fixed\",\"fixed\"]},\"MIJR_OCYP\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"age5xjdgl\":\"image\",\"I87LQdQWg\":\"name1\",\"CHj5EdUId\":\"title\",\"y3ndbJ11E\":\"quote\",\"iHyDoqVe8\":\"buttonLink\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEphwX_vBP=withCSS(Component,css,\"framer-guvN6\");export default FramerEphwX_vBP;FramerEphwX_vBP.displayName=\"TestimonialCard\";FramerEphwX_vBP.defaultProps={height:540,width:432};addPropertyControls(FramerEphwX_vBP,{variant:{options:[\"BU_MLHOcf\",\"ZbU4T14qi\",\"aqvP5UFGw\",\"MIJR_OCYP\"],optionTitles:[\"Default\",\"Larger Image\",\"Your story?\",\"No Button\"],title:\"Variant\",type:ControlType.Enum},age5xjdgl:{title:\"Image\",type:ControlType.ResponsiveImage},I87LQdQWg:{defaultValue:\"Name\",displayTextArea:false,placeholder:\"\",title:\"Name\",type:ControlType.String},CHj5EdUId:{defaultValue:\"Titel, Berufliche Erfahrungen, Bildungsgrad\",displayTextArea:false,title:\"Title\",type:ControlType.String},y3ndbJ11E:{defaultValue:\"Lorem ipsum dolor sit amet consectetur. Malesuada quis eget at iaculis. Egestas vel quisque vitae vestibulum odio vel accumsan in. Etiam feugiat lorem sed mauris. Sed molestie pellentesque suspendisse tellus a donec.\",displayTextArea:false,title:\"Quote\",type:ControlType.String},iHyDoqVe8:{title:\"Button Link\",type:ControlType.Link}});addFonts(FramerEphwX_vBP,[{explicitInter:true,fonts:[{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\"}]},...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEphwX_vBP\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"432\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"540\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZbU4T14qi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"aqvP5UFGw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MIJR_OCYP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"age5xjdgl\\\":\\\"image\\\",\\\"I87LQdQWg\\\":\\\"name1\\\",\\\"CHj5EdUId\\\":\\\"title\\\",\\\"y3ndbJ11E\\\":\\\"quote\\\",\\\"iHyDoqVe8\\\":\\\"buttonLink\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "export const v0=\"Foto von Karsten Kreh, Produkt Designer aus M\\xfcnchen, Blick nach oben\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (91d32d4)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./gGU9ftJvQ-0.js\";const enabledGestures={D6JgwOdt_:{hover:true}};const cycleOrder=[\"D6JgwOdt_\"];const serializationHash=\"framer-2Ock1\";const variantClassNames={D6JgwOdt_:\"framer-v-1jhqwy9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:100,delay:0,mass:1,stiffness:500,type:\"spring\"}};const valuesByLocaleId={F41v0Sa_l:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,image2,width,...props})=>{var _ref;return{...props,ZGiGfcFwx:(_ref=image2!==null&&image2!==void 0?image2:props.ZGiGfcFwx)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/wCQtlQI3kCyKHvStPR2pw1ZDSM.png\",srcSet:\"https://framerusercontent.com/images/wCQtlQI3kCyKHvStPR2pw1ZDSM.png?scale-down-to=512 512w, https://framerusercontent.com/images/wCQtlQI3kCyKHvStPR2pw1ZDSM.png 744w\"}};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ZGiGfcFwx,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"D6JgwOdt_\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];var _getLocalizedValue;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1jhqwy9\",className,classNames),\"data-framer-name\":\"Default\",initial:variant,layoutDependency:layoutDependency,layoutId:\"D6JgwOdt_\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"D6JgwOdt_-hover\":{\"data-framer-name\":undefined,background:{alt:\"\",fit:\"fill\",sizes:\"min(657px, 100vw)\",src:\"https://framerusercontent.com/images/n9V1OpY9wBl5qLC5dlvt8SVp4HM.png\",srcSet:\"https://framerusercontent.com/images/n9V1OpY9wBl5qLC5dlvt8SVp4HM.png 560w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Foto von Karsten Kreh Produkt Designer aus M\\xfcnchen Blick nach oben\",fit:\"fill\",intrinsicHeight:716,intrinsicWidth:744,pixelHeight:716,pixelWidth:744,sizes:\"657px\",src:\"https://framerusercontent.com/images/lLVBo4v7RkJIQOr5UsRv5swYua8.png\",srcSet:\"https://framerusercontent.com/images/lLVBo4v7RkJIQOr5UsRv5swYua8.png?scale-down-to=512 512w, https://framerusercontent.com/images/lLVBo4v7RkJIQOr5UsRv5swYua8.png 744w\"},className:\"framer-1cqhlvs\",\"data-framer-name\":\"Foto-Karsten-Kreh-Designer\",layoutDependency:layoutDependency,layoutId:\"q5SDZZb9c\",...addPropertyOverrides({\"D6JgwOdt_-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:716,intrinsicWidth:744,pixelHeight:716,pixelWidth:744,sizes:\"657px\",...toResponsiveImage(ZGiGfcFwx)}}},baseVariant,gestureVariant)})})})});});const css=['.framer-2Ock1[data-border=\"true\"]::after, .framer-2Ock1 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2Ock1.framer-1bth2ct, .framer-2Ock1 .framer-1bth2ct { display: block; }\",\".framer-2Ock1.framer-1jhqwy9 { cursor: pointer; height: 638px; overflow: hidden; position: relative; width: 657px; }\",\".framer-2Ock1 .framer-1cqhlvs { aspect-ratio: 1.0391061452513968 / 1; bottom: 0px; flex: none; overflow: visible; position: absolute; right: 0px; top: 6px; width: var(--framer-aspect-ratio-supported, 657px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 638\n * @framerIntrinsicWidth 657\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ep4AQ77p0\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"ZGiGfcFwx\":\"image2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramergGU9ftJvQ=withCSS(Component,css,\"framer-2Ock1\");export default FramergGU9ftJvQ;FramergGU9ftJvQ.displayName=\"Image-Karsten_Kreh\";FramergGU9ftJvQ.defaultProps={height:638,width:657};addPropertyControls(FramergGU9ftJvQ,{ZGiGfcFwx:{__defaultAssetReference:\"data:framer/asset-reference,wCQtlQI3kCyKHvStPR2pw1ZDSM.png?originalFilename=Image-Karsten_Kreh-2.png&preferredSize=auto\",title:\"Image 2\",type:ControlType.ResponsiveImage}});addFonts(FramergGU9ftJvQ,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergGU9ftJvQ\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"657\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"638\",\"framerVariables\":\"{\\\"ZGiGfcFwx\\\":\\\"image2\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ep4AQ77p0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./gGU9ftJvQ.map", "// Generated by Framer (532f6a7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/iYGQ0wLBZAB8gca1pio5/Vjids4WR1kWGneeTkNFO/fQPrSC5KA.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/VQvkjlim0p4xDxg45iwi/tcywsaXMJWnXLBUX1rID/w4EIzjJzz.js\";const cycleOrder=[\"gYBnwpUzy\",\"NYHFeAvUt\"];const variantClassNames={gYBnwpUzy:\"framer-v-q2be5m\",NYHFeAvUt:\"framer-v-1kyokhz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={ImageLeft:\"NYHFeAvUt\",ImageRight:\"gYBnwpUzy\"};const transitions={default:{damping:100,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate=(_,t)=>`perspective(1200px) ${t}`;const Component=/*#__PURE__*/React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"gYBnwpUzy\",title:jh2aPxJEp=\"Title\",content:PRd1ND1xd=\"Lorem ipsum dolor sit amet consectetur. Quis ipsum urna arcu id ut mauris malesuada. Purus est augue at nunc ut egestas odio sociis molestie.\",image:dG9ZdarBE,radius:ZfpPug1NO=40,...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"gYBnwpUzy\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const isDisplayed=()=>{if(baseVariant===\"NYHFeAvUt\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"NYHFeAvUt\")return true;return false;};const defaultLayoutId=React.useId();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-GTtYN\",sharedStyle.className,sharedStyle1.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(\"framer-q2be5m\",className),\"data-framer-name\":\"ImageRight\",layoutDependency:layoutDependency,layoutId:\"gYBnwpUzy\",ref:ref,style:{backdropFilter:\"blur(8px)\",backgroundColor:\"var(--token-b6df1f64-b134-450b-bdc9-4ff02afa0591, rgba(11, 17, 20, 0.64))\",borderBottomLeftRadius:ZfpPug1NO,borderBottomRightRadius:ZfpPug1NO,borderTopLeftRadius:ZfpPug1NO,borderTopRightRadius:ZfpPug1NO,WebkitBackdropFilter:\"blur(8px)\",...style},transition:transition,...addPropertyOverrides({NYHFeAvUt:{\"data-framer-name\":\"ImageLeft\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:200,pixelHeight:280,pixelWidth:200,sizes:\"210px\",...toResponsiveImage(dG9ZdarBE)},className:\"framer-r3y9f9\",\"data-framer-name\":\"ImageFrame\",layoutDependency:layoutDependency,layoutId:\"ZwaJZSPzn\",transition:transition}),/*#__PURE__*/_jsxs(motion.div,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-ar3l6p\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"QMo6JZcOZ\",transformTemplate:transformTemplate,transition:transition,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-4q7n7\",\"data-styles-preset\":\"fQPrSC5KA\",children:\"Title\"})}),className:\"framer-92nb1o\",layoutDependency:layoutDependency,layoutId:\"FB4tUyd4i\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:jh2aPxJEp,transition:transition,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-tniybq\",\"data-styles-preset\":\"w4EIzjJzz\",children:\"Lorem ipsum dolor sit amet consectetur. Quis ipsum urna arcu id ut mauris malesuada. Purus est augue at nunc ut egestas odio sociis molestie.\"})}),className:\"framer-y3m91g\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"HjGd8L7OF\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:PRd1ND1xd,transition:transition,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:200,pixelHeight:280,pixelWidth:200,...toResponsiveImage(dG9ZdarBE)},className:\"framer-15zn26v\",\"data-framer-name\":\"ImageFrame\",layoutDependency:layoutDependency,layoutId:\"zwAq5i35i\",transition:transition,...addPropertyOverrides({NYHFeAvUt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:200,pixelHeight:280,pixelWidth:200,sizes:\"210px\",...toResponsiveImage(dG9ZdarBE)}}},baseVariant,gestureVariant)})]})})});});const css=['.framer-GTtYN [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GTtYN .framer-1hu4p3w { display: block; }\",\".framer-GTtYN .framer-q2be5m { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 224px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 672px; will-change: transform; }\",\".framer-GTtYN .framer-r3y9f9 { bottom: 0px; flex: none; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 210px; }\",\".framer-GTtYN .framer-ar3l6p { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 120px 4px 32px; position: relative; width: 1px; }\",\".framer-GTtYN .framer-92nb1o, .framer-GTtYN .framer-y3m91g { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-GTtYN .framer-15zn26v { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 210px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GTtYN .framer-q2be5m, .framer-GTtYN .framer-ar3l6p { gap: 0px; } .framer-GTtYN .framer-q2be5m > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-GTtYN .framer-q2be5m > :first-child { margin-left: 0px; } .framer-GTtYN .framer-q2be5m > :last-child { margin-right: 0px; } .framer-GTtYN .framer-ar3l6p > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GTtYN .framer-ar3l6p > :first-child { margin-top: 0px; } .framer-GTtYN .framer-ar3l6p > :last-child { margin-bottom: 0px; } }\",\".framer-GTtYN.framer-v-1kyokhz .framer-ar3l6p { order: 2; padding: 0px 32px 4px 120px; }\",\".framer-GTtYN.framer-v-1kyokhz .framer-15zn26v { order: 0; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 224\n * @framerIntrinsicWidth 672\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"NYHFeAvUt\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"jh2aPxJEp\":\"title\",\"PRd1ND1xd\":\"content\",\"dG9ZdarBE\":\"image\",\"ZfpPug1NO\":\"radius\"}\n */const FramerqP4csdANt=withCSS(Component,css,\"framer-GTtYN\");export default FramerqP4csdANt;FramerqP4csdANt.displayName=\"CardProcessSteps\";FramerqP4csdANt.defaultProps={height:224,width:672};addPropertyControls(FramerqP4csdANt,{variant:{options:[\"gYBnwpUzy\",\"NYHFeAvUt\"],optionTitles:[\"ImageRight\",\"ImageLeft\"],title:\"Variant\",type:ControlType.Enum},jh2aPxJEp:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},PRd1ND1xd:{defaultValue:\"Lorem ipsum dolor sit amet consectetur. Quis ipsum urna arcu id ut mauris malesuada. Purus est augue at nunc ut egestas odio sociis molestie.\",displayTextArea:false,placeholder:\"\",title:\"Content\",type:ControlType.String},dG9ZdarBE:{title:\"Image\",type:ControlType.ResponsiveImage},ZfpPug1NO:{defaultValue:40,title:\"Radius\",type:ControlType.Number}});addFonts(FramerqP4csdANt,[...sharedStyle.fonts,...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqP4csdANt\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NYHFeAvUt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"jh2aPxJEp\\\":\\\"title\\\",\\\"PRd1ND1xd\\\":\\\"content\\\",\\\"dG9ZdarBE\\\":\\\"image\\\",\\\"ZfpPug1NO\\\":\\\"radius\\\"}\",\"framerIntrinsicHeight\":\"224\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"672\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Raleway-regular\"]);export const fonts=[{family:\"Raleway\",moduleAsset:{localModuleIdentifier:\"local-module:css/jOFOV9gyF:default\",url:\"https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaooCPNLA3JC9c.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaooCPNLA3JC9c.ttf\",weight:\"400\"}];export const css=['.framer-frsFG .framer-styles-preset-k62ylz:not(.rich-text-wrapper), .framer-frsFG .framer-styles-preset-k62ylz.rich-text-wrapper p { --framer-font-family: \"Raleway\", \"Raleway Placeholder\", sans-serif; --framer-font-size: 88px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1400px) and (min-width: 1400px) { .framer-frsFG .framer-styles-preset-k62ylz:not(.rich-text-wrapper), .framer-frsFG .framer-styles-preset-k62ylz.rich-text-wrapper p { --framer-font-family: \"Raleway\", \"Raleway Placeholder\", sans-serif; --framer-font-size: 70px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1399px) and (min-width: 1200px) { .framer-frsFG .framer-styles-preset-k62ylz:not(.rich-text-wrapper), .framer-frsFG .framer-styles-preset-k62ylz.rich-text-wrapper p { --framer-font-family: \"Raleway\", \"Raleway Placeholder\", sans-serif; --framer-font-size: 56px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-frsFG .framer-styles-preset-k62ylz:not(.rich-text-wrapper), .framer-frsFG .framer-styles-preset-k62ylz.rich-text-wrapper p { --framer-font-family: \"Raleway\", \"Raleway Placeholder\", sans-serif; --framer-font-size: 56px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-frsFG .framer-styles-preset-k62ylz:not(.rich-text-wrapper), .framer-frsFG .framer-styles-preset-k62ylz.rich-text-wrapper p { --framer-font-family: \"Raleway\", \"Raleway Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-frsFG\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"CUSTOM;Gallery Modern Regular\"]);export const fonts=[{family:\"Gallery Modern Regular\",moduleAsset:{localModuleIdentifier:\"local-module:css/SrkqwwAir:default\",url:\"assets/dh3srC5sRNfijQz1Rzoy73qn1c.otf\"},url:new URL(\"assets/dh3srC5sRNfijQz1Rzoy73qn1c.otf\",\"https://framerusercontent.com/modules/tRolvR340ziANHtujCUC/qo8eqVIfbtPo8RVkrv2H/SrkqwwAir.js\").href}];export const css=['.framer-qJ6Pm .framer-styles-preset-1djp6ht:not(.rich-text-wrapper), .framer-qJ6Pm .framer-styles-preset-1djp6ht.rich-text-wrapper p { --framer-font-family: \"Gallery Modern Regular\", sans-serif; --framer-font-size: 96px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 0.91em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1400px) and (min-width: 1400px) { .framer-qJ6Pm .framer-styles-preset-1djp6ht:not(.rich-text-wrapper), .framer-qJ6Pm .framer-styles-preset-1djp6ht.rich-text-wrapper p { --framer-font-family: \"Gallery Modern Regular\", sans-serif; --framer-font-size: 77px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 0.91em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1399px) and (min-width: 1200px) { .framer-qJ6Pm .framer-styles-preset-1djp6ht:not(.rich-text-wrapper), .framer-qJ6Pm .framer-styles-preset-1djp6ht.rich-text-wrapper p { --framer-font-family: \"Gallery Modern Regular\", sans-serif; --framer-font-size: 61px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 0.91em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-qJ6Pm .framer-styles-preset-1djp6ht:not(.rich-text-wrapper), .framer-qJ6Pm .framer-styles-preset-1djp6ht.rich-text-wrapper p { --framer-font-family: \"Gallery Modern Regular\", sans-serif; --framer-font-size: 61px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 0.91em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-qJ6Pm .framer-styles-preset-1djp6ht:not(.rich-text-wrapper), .framer-qJ6Pm .framer-styles-preset-1djp6ht.rich-text-wrapper p { --framer-font-family: \"Gallery Modern Regular\", sans-serif; --framer-font-size: 34px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 0.91em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-qJ6Pm\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (fd7a51d)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={F41v0Sa_l:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (fd7a51d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import MotionText from\"https://framerusercontent.com/modules/2AusMW9Upi6mhJ0JzKTi/b0GOvxzDuuEZvz71ut2V/MotionText.js\";import Slideshow1 from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/soIAPuIiPtf4z0IwVYlq/SlideShow.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import LargeButtonBottom from\"#framer/local/canvasComponent/e0DlBM2HN/e0DlBM2HN.js\";import TestimonialCard from\"#framer/local/canvasComponent/EphwX_vBP/EphwX_vBP.js\";import ImageKarsten_Kreh from\"#framer/local/canvasComponent/gGU9ftJvQ/gGU9ftJvQ.js\";import Button from\"#framer/local/canvasComponent/LcQgrRBO_/LcQgrRBO_.js\";import CardProcessSteps from\"#framer/local/canvasComponent/qP4csdANt/qP4csdANt.js\";import CopyrightSection from\"#framer/local/canvasComponent/USTIX2E01/USTIX2E01.js\";import MainNavigation from\"#framer/local/canvasComponent/ZsUhle2dy/ZsUhle2dy.js\";import*as sharedStyle1 from\"#framer/local/css/besBi8aP0/besBi8aP0.js\";import*as sharedStyle2 from\"#framer/local/css/f1Vyd_3NB/f1Vyd_3NB.js\";import*as sharedStyle3 from\"#framer/local/css/fQPrSC5KA/fQPrSC5KA.js\";import*as sharedStyle5 from\"#framer/local/css/jOFOV9gyF/jOFOV9gyF.js\";import*as sharedStyle from\"#framer/local/css/Sa2Lt8cnn/Sa2Lt8cnn.js\";import*as sharedStyle6 from\"#framer/local/css/SrkqwwAir/SrkqwwAir.js\";import*as sharedStyle4 from\"#framer/local/css/w4EIzjJzz/w4EIzjJzz.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const MotionTextFonts=getFonts(MotionText);const ButtonFonts=getFonts(Button);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const MotionDivWithFX=withFX(motion.div);const ImageKarsten_KrehFonts=getFonts(ImageKarsten_Kreh);const ContainerWithFX=withFX(Container);const ImageWithFX=withFX(Image);const SlideshowFonts=getFonts(Slideshow);const CardProcessStepsFonts=getFonts(CardProcessSteps);const RichTextWithFX=withFX(RichText);const TestimonialCardFonts=getFonts(TestimonialCard);const Slideshow1Fonts=getFonts(Slideshow1);const LargeButtonBottomFonts=getFonts(LargeButtonBottom);const CopyrightSectionFonts=getFonts(CopyrightSection);const MainNavigationFonts=getFonts(MainNavigation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const breakpoints={HrWIj54ET:\"(min-width: 810px) and (max-width: 1199px)\",lGuNR74ud:\"(max-width: 809px)\",oK0zgNzfE:\"(min-width: 1200px) and (max-width: 1399px)\",WQLkyLRf1:\"(min-width: 1600px)\",XQYILS2io:\"(min-width: 1400px) and (max-width: 1599px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-VPlDU\";const variantClassNames={HrWIj54ET:\"framer-v-1s138dk\",lGuNR74ud:\"framer-v-1lmb1p\",oK0zgNzfE:\"framer-v-mtiwmh\",WQLkyLRf1:\"framer-v-72rtr7\",XQYILS2io:\"framer-v-19km7s\"};const animation={opacity:0,rotate:0,rotateX:-20,rotateY:0,scale:1.1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition1={damping:80,delay:.5,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:-20,rotateY:0,scale:1.1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:150};const transition2={damping:80,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,transformPerspective:1200,x:0,y:200};const animation4={opacity:0,rotate:0,rotateX:-40,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-150,y:0};const animation5={opacity:0,rotate:0,rotateX:-40,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:-150,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:-20,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:-20,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:-150};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation10={opacity:0,rotate:0,rotateX:0,rotateY:20,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:20,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:150};const animation12={opacity:0,rotate:0,rotateX:40,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:150,y:0};const animation13={opacity:0,rotate:0,rotateX:40,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:150,y:0};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transition3={delay:0,duration:5,ease:[0,0,1,1],type:\"tween\"};const animation14={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation15={opacity:0,rotate:0,rotateX:30,rotateY:45,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-150,y:0};const animation16={opacity:0,rotate:0,rotateX:30,rotateY:45,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:-150,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:45,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-150,y:0};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:45,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:-150,y:0};const animation19={opacity:0,rotate:0,rotateX:-20,rotateY:45,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-150,y:0};const animation20={opacity:0,rotate:0,rotateX:-20,rotateY:45,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:-150,y:0};const animation21={opacity:0,rotate:0,rotateX:20,rotateY:-45,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:150,y:0};const animation22={opacity:0,rotate:0,rotateX:20,rotateY:-45,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:150,y:0};const animation23={opacity:0,rotate:0,rotateX:0,rotateY:-45,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:150,y:0};const animation24={opacity:0,rotate:0,rotateX:0,rotateY:-45,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:150,y:0};const animation25={opacity:0,rotate:0,rotateX:-20,rotateY:-45,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:150,y:0};const animation26={opacity:0,rotate:0,rotateX:-20,rotateY:-45,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:150,y:0};const transformTemplate3=(_,t)=>`translate(-50%, -50%) ${t}`;const animation27={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,transformPerspective:1200,x:-150,y:0};const animation28={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-50};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"oK0zgNzfE\",\"Desktop 3\":\"XQYILS2io\",Desktop:\"WQLkyLRf1\",Phone:\"lGuNR74ud\",Tablet:\"HrWIj54ET\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,uXjklHUvLe0DlBM2HN,...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 ref1=React.useRef(null);usePreloadLocalizedValues(activeLocale);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"lGuNR74ud\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"lGuNR74ud\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"HrWIj54ET\",\"lGuNR74ud\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"HrWIj54ET\")return true;return false;};const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();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(11, 17, 20); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h19cfb\",\"data-framer-name\":\"Body\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16h74jc\",\"data-framer-name\":\"SectionsContainer\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12u0esd\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:false,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:80,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-y2jce6\",\"data-framer-name\":\"Container\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1,animate:animation2,className:\"framer-1onh7ls\",\"data-framer-appear-id\":\"1onh7ls\",\"data-framer-name\":\"Content\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i22l0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-16v6jv0\",\"data-styles-preset\":\"Sa2Lt8cnn\",children:\"Hi, I am Karsten, a UX/UI designer from Munich - \"})}),className:\"framer-1u1se9c\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ipo43d\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13mb2vh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-16v6jv0\",\"data-styles-preset\":\"Sa2Lt8cnn\",children:\"and this is\"})}),className:\"framer-1x0cwc7\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w9s9ud-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{font:{font:\"Quakerhack Regular\",fontSize:46,fontWeight:500,letterSpacing:0,lineHeight:1,lineHeightPixels:100,lineHeightType:true,offset:0,textAlign:\"center\",whiteSpace:\"normal\"}},lGuNR74ud:{font:{font:\"Quakerhack Regular\",fontSize:33,fontWeight:500,letterSpacing:0,lineHeight:1,lineHeightPixels:100,lineHeightType:true,offset:0,textAlign:\"center\",whiteSpace:\"normal\"}},oK0zgNzfE:{font:{font:\"Quakerhack Regular\",fontSize:54,fontWeight:500,letterSpacing:0,lineHeight:1.05,lineHeightPixels:100,lineHeightType:true,offset:0,textAlign:\"center\",whiteSpace:\"normal\"},style:{height:\"100%\",width:\"100%\"}},XQYILS2io:{font:{font:\"Quakerhack Regular\",fontSize:64,fontWeight:500,letterSpacing:0,lineHeight:1.05,lineHeightPixels:100,lineHeightType:true,offset:0,textAlign:\"center\",whiteSpace:\"normal\"}}},children:/*#__PURE__*/_jsx(MotionText,{color:\"var(--token-92718a0e-6f80-4b54-befa-db7bbc2f95ae, rgb(255, 255, 255))\",effectOptions:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:100},font:{font:\"Quakerhack Regular\",fontSize:80,fontWeight:500,letterSpacing:0,lineHeight:1.05,lineHeightPixels:100,lineHeightType:true,offset:0,textAlign:\"center\",whiteSpace:\"normal\"},height:\"100%\",id:\"I5AFh7L9S\",layoutId:\"I5AFh7L9S\",overflow:true,perWord:false,stagger:.05,style:{width:\"100%\"},text:getLocalizedValue(\"v2\",activeLocale)??\"not\",transitionOptions:{damping:30,delay:1.5,mass:1,stiffness:400,type:\"spring\"},type:\"letter\",variant:true,width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-16v6jv0\",\"data-styles-preset\":\"Sa2Lt8cnn\",children:\"a portfolio\"})}),className:\"framer-b999me\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-71lnz\",\"data-styles-preset\":\"besBi8aP0\",children:\"You are probably not interested in me, but in how you can build a better product or service. This is not a portfolio but a story of how I might help you achieve this.\"})}),className:\"framer-1o1c3ut\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ob5nmr\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MX2as6AUI\"},implicitPathVariables:undefined},{href:{webPageId:\"MX2as6AUI\"},implicitPathVariables:undefined},{href:{webPageId:\"MX2as6AUI\"},implicitPathVariables:undefined},{href:{webPageId:\"MX2as6AUI\"},implicitPathVariables:undefined},{href:{webPageId:\"MX2as6AUI\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{y:(componentViewport?.y||0)+0+80+0+0+0+0+52+0+0+387.20000000000005+20+0},lGuNR74ud:{y:(componentViewport?.y||0)+0+80+0+0+0+0+22+0+0+492.80000000000007+4+0},oK0zgNzfE:{y:(componentViewport?.y||0)+0+0+0+0+32+300+52+42.599999999999994+0+292.8+20+0},XQYILS2io:{y:(componentViewport?.y||0)+0+0+0+0+32+320+52+-4.600000000000023+0+387.20000000000005+20+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+0+0+0+32+400+52+-4.600000000000023+0+387.20000000000005+20+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-j8hvqg-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{LJkh2Iyf1:resolvedLinks[1]},lGuNR74ud:{LJkh2Iyf1:resolvedLinks[4]},oK0zgNzfE:{LJkh2Iyf1:resolvedLinks[2]},XQYILS2io:{LJkh2Iyf1:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(Button,{akdx3qWL3:\"var(--token-16105515-5ac1-43c6-86bd-b1a3bf7190ab, rgb(255, 152, 119))\",ApJE0R1f9:false,c1IFgyZAz:getLocalizedValue(\"v5\",activeLocale)??\"Work with me\",CqxRt2jS4:false,egSdBaiwl:false,height:\"100%\",HuYTTABMN:\"external-link\",id:\"Nvk2AhEzY\",layoutId:\"Nvk2AhEzY\",LJkh2Iyf1:resolvedLinks[0],qkP3k84aG:\"external-link\",variant:\"loeaGUrB8\",width:\"100%\",YYceHEsJQ:true})})})})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:80,__perspectiveFX:false,__targetOpacity:1,className:\"framer-132yl4f\",\"data-framer-name\":\"Ellipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ddrlrs\",\"data-framer-name\":\"Ellipse\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1,className:\"framer-160d2em-container\",children:/*#__PURE__*/_jsx(ImageKarsten_Kreh,{height:\"100%\",id:\"InU4ZgGsb\",layoutId:\"InU4ZgGsb\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-196l8ri\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-e5d8t2\",\"data-framer-name\":\"SectionHeader\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1has61h\",\"data-styles-preset\":\"f1Vyd_3NB\",style:{\"--framer-text-alignment\":\"left\"},children:\"Recognize any of these problems?\"})}),className:\"framer-1b4uu7r\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16wyx6k\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t0pdnk\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-154vzla\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{background:{alt:getLocalizedValue(\"v7\",activeLocale)??\"Illustration Hintergrund eines Smartphones zu User Behaviour Produkt Design\",fit:\"fill\",intrinsicHeight:372,intrinsicWidth:596,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+960+160+156.4+0+0+0+0+224-120.91337453198418),pixelHeight:465,pixelWidth:745,sizes:\"285.234px\",src:\"https://framerusercontent.com/images/VfGJAdHyvM9goHe0miN2qJ9a5s.png\",srcSet:\"https://framerusercontent.com/images/VfGJAdHyvM9goHe0miN2qJ9a5s.png?scale-down-to=512 512w,https://framerusercontent.com/images/VfGJAdHyvM9goHe0miN2qJ9a5s.png 745w\"}},lGuNR74ud:{background:{alt:getLocalizedValue(\"v7\",activeLocale)??\"Illustration Hintergrund eines Smartphones zu User Behaviour Produkt Design\",fit:\"fill\",intrinsicHeight:372,intrinsicWidth:596,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+688+160+116.4+0+0+0+0+360-124.05285844333184),pixelHeight:465,pixelWidth:745,sizes:\"264.7957px\",src:\"https://framerusercontent.com/images/VfGJAdHyvM9goHe0miN2qJ9a5s.png\",srcSet:\"https://framerusercontent.com/images/VfGJAdHyvM9goHe0miN2qJ9a5s.png?scale-down-to=512 512w,https://framerusercontent.com/images/VfGJAdHyvM9goHe0miN2qJ9a5s.png 745w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:80,__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v7\",activeLocale)??\"Illustration Hintergrund eines Smartphones zu User Behaviour Produkt Design\",fit:\"fill\",intrinsicHeight:372,intrinsicWidth:596,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1000.0463687606896+320+156.4+0+0+0+210.5000000000001),pixelHeight:465,pixelWidth:745,sizes:\"319px\",src:\"https://framerusercontent.com/images/VfGJAdHyvM9goHe0miN2qJ9a5s.png\",srcSet:\"https://framerusercontent.com/images/VfGJAdHyvM9goHe0miN2qJ9a5s.png?scale-down-to=512 512w,https://framerusercontent.com/images/VfGJAdHyvM9goHe0miN2qJ9a5s.png 745w\"},className:\"framer-1899o7l\",\"data-framer-name\":\"Illustration-User-Behaviour-Hintergrund\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{background:{alt:getLocalizedValue(\"v8\",activeLocale)??\"Illustration eines Smartphones zu User Behaviour Produkt Design\",fit:\"fill\",intrinsicHeight:518.4,intrinsicWidth:672,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+960+160+156.4+0+0+0+0+224-188.64893427344626),pixelHeight:648,pixelWidth:840,sizes:\"321px\",src:\"https://framerusercontent.com/images/KbLBZLYWM86s4UuRFWZe3fDnc7M.png\",srcSet:\"https://framerusercontent.com/images/KbLBZLYWM86s4UuRFWZe3fDnc7M.png?scale-down-to=512 512w,https://framerusercontent.com/images/KbLBZLYWM86s4UuRFWZe3fDnc7M.png 840w\"}},lGuNR74ud:{background:{alt:getLocalizedValue(\"v8\",activeLocale)??\"Illustration eines Smartphones zu User Behaviour Produkt Design\",fit:\"fill\",intrinsicHeight:518.4,intrinsicWidth:672,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+688+160+116.4+0+0+0+0+360-186.95266272189357),pixelHeight:648,pixelWidth:840,sizes:\"298px\",src:\"https://framerusercontent.com/images/KbLBZLYWM86s4UuRFWZe3fDnc7M.png\",srcSet:\"https://framerusercontent.com/images/KbLBZLYWM86s4UuRFWZe3fDnc7M.png?scale-down-to=512 512w,https://framerusercontent.com/images/KbLBZLYWM86s4UuRFWZe3fDnc7M.png 840w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:-40,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v8\",activeLocale)??\"Illustration eines Smartphones zu User Behaviour Produkt Design\",fit:\"fill\",intrinsicHeight:518.4,intrinsicWidth:672,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1000.0463687606896+320+156.4+0+0+0+114.50000000000009),pixelHeight:648,pixelWidth:840,sizes:\"359px\",src:\"https://framerusercontent.com/images/KbLBZLYWM86s4UuRFWZe3fDnc7M.png\",srcSet:\"https://framerusercontent.com/images/KbLBZLYWM86s4UuRFWZe3fDnc7M.png?scale-down-to=512 512w,https://framerusercontent.com/images/KbLBZLYWM86s4UuRFWZe3fDnc7M.png 840w\"},className:\"framer-3bn5ms\",\"data-framer-name\":\"Illustration-User-Behaviour\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{background:{alt:getLocalizedValue(\"v9\",activeLocale)??\"Illustration Fordergrund eines Smartphones zu User Behaviour Produkt Design\",fit:\"fill\",intrinsicHeight:401.6,intrinsicWidth:647.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+960+160+156.4+0+0+0+0+224-197.32533054526772),pixelHeight:502,pixelWidth:809,sizes:\"308.4744px\",src:\"https://framerusercontent.com/images/KMIsykbWcBpjcvWNGOQ65sW7DY.png\",srcSet:\"https://framerusercontent.com/images/KMIsykbWcBpjcvWNGOQ65sW7DY.png?scale-down-to=512 512w,https://framerusercontent.com/images/KMIsykbWcBpjcvWNGOQ65sW7DY.png 809w\"}},lGuNR74ud:{background:{alt:getLocalizedValue(\"v9\",activeLocale)??\"Illustration Fordergrund eines Smartphones zu User Behaviour Produkt Design\",fit:\"fill\",intrinsicHeight:401.6,intrinsicWidth:647.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+688+160+116.4+0+0+0+0+360-194.97646988317408),pixelHeight:502,pixelWidth:809,sizes:\"286.365px\",src:\"https://framerusercontent.com/images/KMIsykbWcBpjcvWNGOQ65sW7DY.png\",srcSet:\"https://framerusercontent.com/images/KMIsykbWcBpjcvWNGOQ65sW7DY.png?scale-down-to=512 512w,https://framerusercontent.com/images/KMIsykbWcBpjcvWNGOQ65sW7DY.png 809w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:88,__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v9\",activeLocale)??\"Illustration Fordergrund eines Smartphones zu User Behaviour Produkt Design\",fit:\"fill\",intrinsicHeight:401.6,intrinsicWidth:647.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1000.0463687606896+320+156.4+0+0+0+81.00000000000006),pixelHeight:502,pixelWidth:809,sizes:\"345px\",src:\"https://framerusercontent.com/images/KMIsykbWcBpjcvWNGOQ65sW7DY.png\",srcSet:\"https://framerusercontent.com/images/KMIsykbWcBpjcvWNGOQ65sW7DY.png?scale-down-to=512 512w,https://framerusercontent.com/images/KMIsykbWcBpjcvWNGOQ65sW7DY.png 809w\"},className:\"framer-1p3pljx\",\"data-framer-name\":\"Illustration-User-Behaviour-Fordergrund\"})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2ns1p2\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-4q7n7\",\"data-styles-preset\":\"fQPrSC5KA\",children:\"No clarity on user behaviour\"})}),className:\"framer-6gpt2l\",\"data-framer-name\":\"No clarity on user behaviour\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-tniybq\",\"data-styles-preset\":\"w4EIzjJzz\",children:\"Ever felt like you're completely in the dark about user preferences? Sometimes, uncovering their desires can feel like a guessing game.\"})}),className:\"framer-13is4l\",\"data-framer-name\":\"Lorem ipsum dolor sit amet consectetur. Aliquam nisl ut vestibulum vestibulum. Mattis massa senectus aliquam consequat et varius. Leo in tristique elementum vitae. Dictum tristique auctor nec semper etiam integer vulputate leo.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mk7nkh\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18t29wq\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-4q7n7\",\"data-styles-preset\":\"fQPrSC5KA\",children:\"Endless Feedbackloops\"})}),className:\"framer-1wtsla7\",\"data-framer-name\":\"Endless Feedbackloops\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-tniybq\",\"data-styles-preset\":\"w4EIzjJzz\",children:\"Feedback really matters, but sometimes it feels like we are playing ping pong without getting forward.\"})}),className:\"framer-17ap8w5\",\"data-framer-name\":\"Lorem ipsum dolor sit amet consectetur. Aliquam nisl ut vestibulum vestibulum. Mattis massa senectus aliquam consequat et varius. Leo in tristique elementum vitae. Dictum tristique auctor nec semper etiam integer vulputate leo.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{background:{alt:getLocalizedValue(\"v14\",activeLocale)??\"Illustration eines Pingpong Balls zu Feedback Schleifen im Produkt Design\",fit:\"fill\",intrinsicHeight:589,intrinsicWidth:611,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+960+160+156.4+0+0+0+248+224-177.74173398826647),pixelHeight:589,pixelWidth:611,sizes:\"250px\",src:\"https://framerusercontent.com/images/X6lgfwxDK62rpCm94q08iUcWiA4.png\",srcSet:\"https://framerusercontent.com/images/X6lgfwxDK62rpCm94q08iUcWiA4.png?scale-down-to=512 512w,https://framerusercontent.com/images/X6lgfwxDK62rpCm94q08iUcWiA4.png 611w\"}},lGuNR74ud:{background:{alt:getLocalizedValue(\"v14\",activeLocale)??\"Illustration eines Pingpong Balls zu Feedback Schleifen im Produkt Design\",fit:\"fill\",intrinsicHeight:589,intrinsicWidth:611,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+688+160+116.4+0+0+0+384+360-320.24490631108733),pixelHeight:589,pixelWidth:611,sizes:\"227.0806px\",src:\"https://framerusercontent.com/images/X6lgfwxDK62rpCm94q08iUcWiA4.png\",srcSet:\"https://framerusercontent.com/images/X6lgfwxDK62rpCm94q08iUcWiA4.png?scale-down-to=512 512w,https://framerusercontent.com/images/X6lgfwxDK62rpCm94q08iUcWiA4.png 611w\"}},oK0zgNzfE:{background:{alt:getLocalizedValue(\"v14\",activeLocale)??\"Illustration eines Pingpong Balls zu Feedback Schleifen im Produkt Design\",fit:\"fill\",intrinsicHeight:589,intrinsicWidth:611,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1000.0463687606896+320+156.4+0+0+0+504-220.8166666666666),pixelHeight:589,pixelWidth:611,sizes:\"264px\",src:\"https://framerusercontent.com/images/X6lgfwxDK62rpCm94q08iUcWiA4.png\",srcSet:\"https://framerusercontent.com/images/X6lgfwxDK62rpCm94q08iUcWiA4.png?scale-down-to=512 512w,https://framerusercontent.com/images/X6lgfwxDK62rpCm94q08iUcWiA4.png 611w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:95,__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:-40,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v14\",activeLocale)??\"Illustration eines Pingpong Balls zu Feedback Schleifen im Produkt Design\",fit:\"fill\",intrinsicHeight:589,intrinsicWidth:611,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1000.0463687606896+320+156.4+0+0+0+536-220.8166666666666),pixelHeight:589,pixelWidth:611,sizes:\"264px\",src:\"https://framerusercontent.com/images/X6lgfwxDK62rpCm94q08iUcWiA4.png\",srcSet:\"https://framerusercontent.com/images/X6lgfwxDK62rpCm94q08iUcWiA4.png?scale-down-to=512 512w,https://framerusercontent.com/images/X6lgfwxDK62rpCm94q08iUcWiA4.png 611w\"},className:\"framer-121eh3r\",\"data-framer-name\":\"Illustration-Ping-Pong-Schl\\xe4ger-Feedback\",style:{rotate:15,transformPerspective:1200},transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{background:{alt:getLocalizedValue(\"v15\",activeLocale)??\"Illustration eines Pingpong Balls zu Feedback Schleifen im Produkt Design\",fit:\"fill\",intrinsicHeight:99,intrinsicWidth:95,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+960+160+156.4+0+0+0+248+224-248.42284035087727),pixelHeight:99,pixelWidth:95,src:\"https://framerusercontent.com/images/6akA7k57eNuOdePn7l0BcSDDI.png\"}},lGuNR74ud:{background:{alt:getLocalizedValue(\"v15\",activeLocale)??\"Illustration eines Pingpong Balls zu Feedback Schleifen im Produkt Design\",fit:\"fill\",intrinsicHeight:99,intrinsicWidth:95,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+688+160+116.4+0+0+0+384+360-371.51808930342565),pixelHeight:99,pixelWidth:95,src:\"https://framerusercontent.com/images/6akA7k57eNuOdePn7l0BcSDDI.png\"}},oK0zgNzfE:{background:{alt:getLocalizedValue(\"v15\",activeLocale)??\"Illustration eines Pingpong Balls zu Feedback Schleifen im Produkt Design\",fit:\"fill\",intrinsicHeight:99,intrinsicWidth:95,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1000.0463687606896+320+156.4+0+0+0+504-312.6894736842104),pixelHeight:99,pixelWidth:95,src:\"https://framerusercontent.com/images/6akA7k57eNuOdePn7l0BcSDDI.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:88,__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v15\",activeLocale)??\"Illustration eines Pingpong Balls zu Feedback Schleifen im Produkt Design\",fit:\"fill\",intrinsicHeight:99,intrinsicWidth:95,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1000.0463687606896+320+156.4+0+0+0+536-312.6894736842104),pixelHeight:99,pixelWidth:95,src:\"https://framerusercontent.com/images/6akA7k57eNuOdePn7l0BcSDDI.png\"},className:\"framer-1ckf9tm\",\"data-framer-name\":\"Illustration-Ping-Pong-Ball-Feedback\",transformTemplate:transformTemplate1})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nf33ew\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-x9js3y\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wp18xq\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-4q7n7\",\"data-styles-preset\":\"fQPrSC5KA\",children:\"Conflicts between design and dev\"})}),className:\"framer-zvquzt\",\"data-framer-name\":\"Conflicts between designers and devs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-tniybq\",\"data-styles-preset\":\"w4EIzjJzz\",children:\"Designers and devs are very different species of humans. It can be hard to reconcile the interests of both sides.\"})}),className:\"framer-ag35f9\",\"data-framer-name\":\"Lorem ipsum dolor sit amet consectetur. Aliquam nisl ut vestibulum vestibulum. Mattis massa senectus aliquam consequat et varius. Leo in tristique elementum vitae. Dictum tristique auctor nec semper etiam integer vulputate leo.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{background:{alt:getLocalizedValue(\"v18\",activeLocale)??\"Illustration Hintergrund zu einem Stifts zu Designer und Developer im Produkt Design\",fit:\"fill\",intrinsicHeight:846,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+960+160+156.4+0+496+0+0+-186),pixelHeight:846,pixelWidth:1024,sizes:\"542px\",src:\"https://framerusercontent.com/images/9MjGrr3oOdKkB4HUqrNgC1MpI.png\",srcSet:\"https://framerusercontent.com/images/9MjGrr3oOdKkB4HUqrNgC1MpI.png?scale-down-to=512 512w,https://framerusercontent.com/images/9MjGrr3oOdKkB4HUqrNgC1MpI.png 1024w\"}},lGuNR74ud:{background:{alt:getLocalizedValue(\"v18\",activeLocale)??\"Illustration Hintergrund zu einem Stifts zu Designer und Developer im Produkt Design\",fit:\"fill\",intrinsicHeight:846,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+688+160+116.4+0+768+0+384+-154),pixelHeight:846,pixelWidth:1024,sizes:\"466px\",src:\"https://framerusercontent.com/images/9MjGrr3oOdKkB4HUqrNgC1MpI.png\",srcSet:\"https://framerusercontent.com/images/9MjGrr3oOdKkB4HUqrNgC1MpI.png?scale-down-to=512 512w,https://framerusercontent.com/images/9MjGrr3oOdKkB4HUqrNgC1MpI.png 1024w\"}},oK0zgNzfE:{background:{alt:getLocalizedValue(\"v18\",activeLocale)??\"Illustration Hintergrund zu einem Stifts zu Designer und Developer im Produkt Design\",fit:\"fill\",intrinsicHeight:846,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1000.0463687606896+320+156.4+0+416+0+0+-245.83333333333326),pixelHeight:846,pixelWidth:1024,sizes:\"616px\",src:\"https://framerusercontent.com/images/9MjGrr3oOdKkB4HUqrNgC1MpI.png\",srcSet:\"https://framerusercontent.com/images/9MjGrr3oOdKkB4HUqrNgC1MpI.png?scale-down-to=512 512w,https://framerusercontent.com/images/9MjGrr3oOdKkB4HUqrNgC1MpI.png 1024w\"}},XQYILS2io:{background:{alt:getLocalizedValue(\"v18\",activeLocale)??\"Illustration Hintergrund zu einem Stifts zu Designer und Developer im Produkt Design\",fit:\"fill\",intrinsicHeight:846,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1000.0463687606896+320+156.4+0+448+0+0+-245.45000000000005),pixelHeight:846,pixelWidth:1024,sizes:\"616px\",src:\"https://framerusercontent.com/images/9MjGrr3oOdKkB4HUqrNgC1MpI.png\",srcSet:\"https://framerusercontent.com/images/9MjGrr3oOdKkB4HUqrNgC1MpI.png?scale-down-to=512 512w,https://framerusercontent.com/images/9MjGrr3oOdKkB4HUqrNgC1MpI.png 1024w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:98,__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:-50,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v18\",activeLocale)??\"Illustration Hintergrund zu einem Stifts zu Designer und Developer im Produkt Design\",fit:\"fill\",intrinsicHeight:846,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1000.0463687606896+320+156.4+0+448+0+0+-245.83333333333326),pixelHeight:846,pixelWidth:1024,sizes:\"616px\",src:\"https://framerusercontent.com/images/9MjGrr3oOdKkB4HUqrNgC1MpI.png\",srcSet:\"https://framerusercontent.com/images/9MjGrr3oOdKkB4HUqrNgC1MpI.png?scale-down-to=512 512w,https://framerusercontent.com/images/9MjGrr3oOdKkB4HUqrNgC1MpI.png 1024w\"},className:\"framer-cb001n\",\"data-framer-name\":\"Illustration-Stift-Designer-Developer-Hintergrund\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{background:{alt:getLocalizedValue(\"v19\",activeLocale)??\"Illustration eines Stifts zu Designer und Developer im Produkt Design\",fit:\"fill\",intrinsicHeight:364.8,intrinsicWidth:364.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+960+160+156.4+0+496+0+0+-11),pixelHeight:456,pixelWidth:456,src:\"https://framerusercontent.com/images/ZSqjYsE4bOfmb0d8o22yc7kKuHc.png\"}},lGuNR74ud:{background:{alt:getLocalizedValue(\"v19\",activeLocale)??\"Illustration eines Stifts zu Designer und Developer im Produkt Design\",fit:\"fill\",intrinsicHeight:364.8,intrinsicWidth:364.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+688+160+116.4+0+768+0+384+-3.600000000000364),pixelHeight:456,pixelWidth:456,src:\"https://framerusercontent.com/images/ZSqjYsE4bOfmb0d8o22yc7kKuHc.png\"}},oK0zgNzfE:{background:{alt:getLocalizedValue(\"v19\",activeLocale)??\"Illustration eines Stifts zu Designer und Developer im Produkt Design\",fit:\"fill\",intrinsicHeight:364.8,intrinsicWidth:364.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1000.0463687606896+320+156.4+0+416+0+0+24.15000000000009),pixelHeight:456,pixelWidth:456,src:\"https://framerusercontent.com/images/ZSqjYsE4bOfmb0d8o22yc7kKuHc.png\"}},XQYILS2io:{background:{alt:getLocalizedValue(\"v19\",activeLocale)??\"Illustration eines Stifts zu Designer und Developer im Produkt Design\",fit:\"fill\",intrinsicHeight:364.8,intrinsicWidth:364.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1000.0463687606896+320+156.4+0+448+0+0+24.149999999999864),pixelHeight:456,pixelWidth:456,src:\"https://framerusercontent.com/images/ZSqjYsE4bOfmb0d8o22yc7kKuHc.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:70,rotateX:-20,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v19\",activeLocale)??\"Illustration eines Stifts zu Designer und Developer im Produkt Design\",fit:\"fill\",intrinsicHeight:364.8,intrinsicWidth:364.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1000.0463687606896+320+156.4+0+448+0+0+24.15000000000009),pixelHeight:456,pixelWidth:456,src:\"https://framerusercontent.com/images/ZSqjYsE4bOfmb0d8o22yc7kKuHc.png\"},className:\"framer-1ptc1ti\",\"data-framer-name\":\"Illustration-Stift-Designer-Developer\",style:{transformPerspective:1200},transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-awrgw7\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{background:{alt:getLocalizedValue(\"v20\",activeLocale)??\"Illustration Hintergrund von einem alten retro Computer f\\xfcr Produkt Design\",fit:\"fill\",intrinsicHeight:447.2,intrinsicWidth:416.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+960+160+156.4+0+496+0+248+224-204.98333333333358),pixelHeight:559,pixelWidth:521,sizes:\"185.7573px\",src:\"https://framerusercontent.com/images/Zd7ng93fczAKhozZfhDhEELv8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Zd7ng93fczAKhozZfhDhEELv8.png 521w\"},transformTemplate:undefined},lGuNR74ud:{background:{alt:getLocalizedValue(\"v20\",activeLocale)??\"Illustration Hintergrund von einem alten retro Computer f\\xfcr Produkt Design\",fit:\"fill\",intrinsicHeight:447.2,intrinsicWidth:416.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+688+160+116.4+0+768+0+0+360-189.01579804560245),pixelHeight:559,pixelWidth:521,sizes:\"177.6574px\",src:\"https://framerusercontent.com/images/Zd7ng93fczAKhozZfhDhEELv8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Zd7ng93fczAKhozZfhDhEELv8.png 521w\"},transformTemplate:undefined},oK0zgNzfE:{background:{alt:getLocalizedValue(\"v20\",activeLocale)??\"Illustration Hintergrund von einem alten retro Computer f\\xfcr Produkt Design\",fit:\"fill\",intrinsicHeight:447.2,intrinsicWidth:416.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1000.0463687606896+320+156.4+0+416+0+152+70.12500000000009),pixelHeight:559,pixelWidth:521,sizes:\"216px\",src:\"https://framerusercontent.com/images/Zd7ng93fczAKhozZfhDhEELv8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Zd7ng93fczAKhozZfhDhEELv8.png 521w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:92,__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v20\",activeLocale)??\"Illustration Hintergrund von einem alten retro Computer f\\xfcr Produkt Design\",fit:\"fill\",intrinsicHeight:447.2,intrinsicWidth:416.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1000.0463687606896+320+156.4+0+448+0+184+71.12500000000009),pixelHeight:559,pixelWidth:521,sizes:\"216px\",src:\"https://framerusercontent.com/images/Zd7ng93fczAKhozZfhDhEELv8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Zd7ng93fczAKhozZfhDhEELv8.png 521w\"},className:\"framer-148of5x\",\"data-framer-name\":\"Illustration-Computer-Produkt-Design-Hintergrund\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{background:{alt:getLocalizedValue(\"v21\",activeLocale)??\"Illustration eines alten retro Computers f\\xfcr Produkt Design\",fit:\"fill\",intrinsicHeight:607.2,intrinsicWidth:772.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+960+160+156.4+0+496+0+248+224-195.89538545059742),pixelHeight:759,pixelWidth:966,sizes:\"344px\",src:\"https://framerusercontent.com/images/gUiADyQiHJLWW0s1Fcy1VSYgLg.png\",srcSet:\"https://framerusercontent.com/images/gUiADyQiHJLWW0s1Fcy1VSYgLg.png?scale-down-to=512 512w,https://framerusercontent.com/images/gUiADyQiHJLWW0s1Fcy1VSYgLg.png 966w\"},transformTemplate:undefined},lGuNR74ud:{background:{alt:getLocalizedValue(\"v21\",activeLocale)??\"Illustration eines alten retro Computers f\\xfcr Produkt Design\",fit:\"fill\",intrinsicHeight:607.2,intrinsicWidth:772.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+688+160+116.4+0+768+0+0+360-180.31959826275784),pixelHeight:759,pixelWidth:966,sizes:\"329px\",src:\"https://framerusercontent.com/images/gUiADyQiHJLWW0s1Fcy1VSYgLg.png\",srcSet:\"https://framerusercontent.com/images/gUiADyQiHJLWW0s1Fcy1VSYgLg.png?scale-down-to=512 512w,https://framerusercontent.com/images/gUiADyQiHJLWW0s1Fcy1VSYgLg.png 966w\"},transformTemplate:undefined},oK0zgNzfE:{background:{alt:getLocalizedValue(\"v21\",activeLocale)??\"Illustration eines alten retro Computers f\\xfcr Produkt Design\",fit:\"fill\",intrinsicHeight:607.2,intrinsicWidth:772.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1000.0463687606896+320+156.4+0+416+0+152+110.85850000000005),pixelHeight:759,pixelWidth:966,sizes:\"400px\",src:\"https://framerusercontent.com/images/gUiADyQiHJLWW0s1Fcy1VSYgLg.png\",srcSet:\"https://framerusercontent.com/images/gUiADyQiHJLWW0s1Fcy1VSYgLg.png?scale-down-to=512 512w,https://framerusercontent.com/images/gUiADyQiHJLWW0s1Fcy1VSYgLg.png 966w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:-30,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v21\",activeLocale)??\"Illustration eines alten retro Computers f\\xfcr Produkt Design\",fit:\"fill\",intrinsicHeight:607.2,intrinsicWidth:772.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1000.0463687606896+320+156.4+0+448+0+184+110.85850000000005),pixelHeight:759,pixelWidth:966,sizes:\"400px\",src:\"https://framerusercontent.com/images/gUiADyQiHJLWW0s1Fcy1VSYgLg.png\",srcSet:\"https://framerusercontent.com/images/gUiADyQiHJLWW0s1Fcy1VSYgLg.png?scale-down-to=512 512w,https://framerusercontent.com/images/gUiADyQiHJLWW0s1Fcy1VSYgLg.png 966w\"},className:\"framer-1fu0y5c\",\"data-framer-name\":\"Illustration-Computer-Produkt-Design\",style:{transformPerspective:1200},transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fm8tjl\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-4q7n7\",\"data-styles-preset\":\"fQPrSC5KA\",children:\"Your product is great, the way it looks isn\u2019t\"})}),className:\"framer-1v8mrbm\",\"data-framer-name\":\"Your product is great, the way it looks isn\u2019t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-tniybq\",\"data-styles-preset\":\"w4EIzjJzz\",children:\"You know that your product is fantastic - but somehow, the design just isn't quite hitting the mark.\"})}),className:\"framer-1ywuy0l\",\"data-framer-name\":\"Lorem ipsum dolor sit amet consectetur. Aliquam nisl ut vestibulum vestibulum. Mattis massa senectus aliquam consequat et varius. Leo in tristique elementum vitae. Dictum tristique auctor nec semper etiam integer vulputate leo.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t764oe\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1has61h\",\"data-styles-preset\":\"f1Vyd_3NB\",style:{\"--framer-text-alignment\":\"left\"},children:\"Overcoming these challenges exceptional experiences can be created\"})}),className:\"framer-1lr5kes\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uyqnt5-container hidden-72rtr7 hidden-1s138dk hidden-mtiwmh hidden-19km7s\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",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:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:.9},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:32,height:\"100%\",id:\"qwG5NPmim\",intervalControl:2.5,itemAmount:1,layoutId:\"qwG5NPmim\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DTiHfJqsp\"},nodeId:\"AwY3lHIJo\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-j7s2ad framer-lux5qc\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v25\",activeLocale)??\"Fulfin Screen des Produkts - UX UI Design von Karsten Kreh\",fit:\"fill\",intrinsicHeight:1312,intrinsicWidth:1944,pixelHeight:1312,pixelWidth:1944,sizes:\"407px\",src:\"https://framerusercontent.com/images/iBb6LB8Dh2tpRVKfjcmGQig0k.jpg\",srcSet:\"https://framerusercontent.com/images/iBb6LB8Dh2tpRVKfjcmGQig0k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iBb6LB8Dh2tpRVKfjcmGQig0k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iBb6LB8Dh2tpRVKfjcmGQig0k.jpg 1944w\"},className:\"framer-15odr0o\",\"data-framer-name\":\"Designprojekt-Flink-Heromockup-Handyapp\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xQNFCIUl3\"},nodeId:\"cGskCS5Ve\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1klz13e framer-lux5qc\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1360,intrinsicWidth:2266.6666666666665,pixelHeight:1200,pixelWidth:2e3,sizes:\"407px\",src:\"https://framerusercontent.com/images/3CP4ZIrFnp5QPhvmVS54KJB6g.jpg\",srcSet:\"https://framerusercontent.com/images/3CP4ZIrFnp5QPhvmVS54KJB6g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3CP4ZIrFnp5QPhvmVS54KJB6g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3CP4ZIrFnp5QPhvmVS54KJB6g.jpg 2000w\"},className:\"framer-7oz0y1\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ozmvnenqV\"},nodeId:\"eOgHKjiGE\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ppn9ye framer-lux5qc\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2897,intrinsicWidth:3862,pixelHeight:2897,pixelWidth:3862,sizes:\"407px\",src:\"https://framerusercontent.com/images/wswiGydzAyffhY3WS5vESajy4c.jpg\",srcSet:\"https://framerusercontent.com/images/wswiGydzAyffhY3WS5vESajy4c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wswiGydzAyffhY3WS5vESajy4c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wswiGydzAyffhY3WS5vESajy4c.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wswiGydzAyffhY3WS5vESajy4c.jpg 3862w\"},className:\"framer-1io20eg\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OzHsE_6iM\"},nodeId:\"ubqmdV1ee\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ovqb1a framer-lux5qc\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:3173.3333333333335,intrinsicWidth:5440,pixelHeight:2800,pixelWidth:4800,sizes:\"407px\",src:\"https://framerusercontent.com/images/9HvawwQ5RUjbMVYR8RkFQfgDPE.png\",srcSet:\"https://framerusercontent.com/images/9HvawwQ5RUjbMVYR8RkFQfgDPE.png?scale-down-to=512 512w,https://framerusercontent.com/images/9HvawwQ5RUjbMVYR8RkFQfgDPE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9HvawwQ5RUjbMVYR8RkFQfgDPE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9HvawwQ5RUjbMVYR8RkFQfgDPE.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/9HvawwQ5RUjbMVYR8RkFQfgDPE.png 4800w\"},className:\"framer-1yf3ijj\",\"data-framer-name\":\"image\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"X9zbi68aB\"},nodeId:\"EJaK6Cdok\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ydwkui framer-lux5qc\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",sizes:\"407px\",src:\"https://framerusercontent.com/images/gnvMOyPnmYZkumHGToTtPCMPLs.png\",srcSet:\"https://framerusercontent.com/images/gnvMOyPnmYZkumHGToTtPCMPLs.png?scale-down-to=512 512w,https://framerusercontent.com/images/gnvMOyPnmYZkumHGToTtPCMPLs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gnvMOyPnmYZkumHGToTtPCMPLs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gnvMOyPnmYZkumHGToTtPCMPLs.png 2996w\"},className:\"framer-thbarx\",\"data-framer-name\":\"Designprojekt-Flink-Heromockup-Handyapp\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8u0k3t-container hidden-1lmb1p\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",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:true,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:.9},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:32,height:\"100%\",id:\"lfZzzuszH\",intervalControl:2,itemAmount:1,layoutId:\"lfZzzuszH\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DTiHfJqsp\"},nodeId:\"Qnxa38fKn\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-6mjju framer-lux5qc\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v25\",activeLocale)??\"Fulfin Screen des Produkts - UX UI Design von Karsten Kreh\",fit:\"fill\",intrinsicHeight:1312,intrinsicWidth:1944,pixelHeight:1312,pixelWidth:1944,sizes:\"1100px\",src:\"https://framerusercontent.com/images/iBb6LB8Dh2tpRVKfjcmGQig0k.jpg\",srcSet:\"https://framerusercontent.com/images/iBb6LB8Dh2tpRVKfjcmGQig0k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iBb6LB8Dh2tpRVKfjcmGQig0k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iBb6LB8Dh2tpRVKfjcmGQig0k.jpg 1944w\"},className:\"framer-1tgennw\",\"data-framer-name\":\"Designprojekt-Flink-Heromockup-Handyapp\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xQNFCIUl3\"},nodeId:\"GFJuAaV8t\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-3ufs3h framer-lux5qc\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v26\",activeLocale)??\"WechselGott Screens von der Handyapp Produkt Design von Karsten Kreh\",fit:\"fill\",intrinsicHeight:1278,intrinsicWidth:1733,pixelHeight:1278,pixelWidth:1733,sizes:\"1100px\",src:\"https://framerusercontent.com/images/kZPd6ud99AktRJodkokia3ykJv0.jpg\",srcSet:\"https://framerusercontent.com/images/kZPd6ud99AktRJodkokia3ykJv0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kZPd6ud99AktRJodkokia3ykJv0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kZPd6ud99AktRJodkokia3ykJv0.jpg 1733w\"},className:\"framer-1i8sxir\",\"data-framer-name\":\"Produkt-Design-WechselGott-Heromockup-Handyapp-UI-Design\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ozmvnenqV\"},nodeId:\"ZA6AFYDam\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-181db6k framer-lux5qc\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v27\",activeLocale)??\"Lorem Ipsum Finanz Key Visual Branding Design von Karsten Kreh\",fit:\"fill\",intrinsicHeight:2897,intrinsicWidth:3862,pixelHeight:2897,pixelWidth:3862,sizes:\"1100px\",src:\"https://framerusercontent.com/images/wswiGydzAyffhY3WS5vESajy4c.jpg\",srcSet:\"https://framerusercontent.com/images/wswiGydzAyffhY3WS5vESajy4c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wswiGydzAyffhY3WS5vESajy4c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wswiGydzAyffhY3WS5vESajy4c.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wswiGydzAyffhY3WS5vESajy4c.jpg 3862w\"},className:\"framer-1b12foy\",\"data-framer-name\":\"Branding-Lorem-Ipsum-Finanz-Heromockup-Key-Visual\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OzHsE_6iM\"},nodeId:\"Me79xyqY5\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-i3nidz framer-lux5qc\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v28\",activeLocale)??\"Traversals Screen vom der Software Produkt Design von Karsten Kreh\",fit:\"fill\",intrinsicHeight:3173.3333333333335,intrinsicWidth:5440,pixelHeight:2800,pixelWidth:4800,sizes:\"1100px\",src:\"https://framerusercontent.com/images/9HvawwQ5RUjbMVYR8RkFQfgDPE.png\",srcSet:\"https://framerusercontent.com/images/9HvawwQ5RUjbMVYR8RkFQfgDPE.png?scale-down-to=512 512w,https://framerusercontent.com/images/9HvawwQ5RUjbMVYR8RkFQfgDPE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9HvawwQ5RUjbMVYR8RkFQfgDPE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9HvawwQ5RUjbMVYR8RkFQfgDPE.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/9HvawwQ5RUjbMVYR8RkFQfgDPE.png 4800w\"},className:\"framer-155c7xk\",\"data-framer-name\":\"Produkt-Design-Traversals-Heromockup-UI-Design\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"X9zbi68aB\"},nodeId:\"lg9FvpKCo\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-12gt10v framer-lux5qc\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v29\",activeLocale)??\"Flink Screens vom der Handyapp Produkt Design von Karsten Kreh\",fit:\"fill\",sizes:\"1100px\",src:\"https://framerusercontent.com/images/gnvMOyPnmYZkumHGToTtPCMPLs.png\",srcSet:\"https://framerusercontent.com/images/gnvMOyPnmYZkumHGToTtPCMPLs.png?scale-down-to=512 512w,https://framerusercontent.com/images/gnvMOyPnmYZkumHGToTtPCMPLs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gnvMOyPnmYZkumHGToTtPCMPLs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gnvMOyPnmYZkumHGToTtPCMPLs.png 2996w\"},className:\"framer-8f4id6\",\"data-framer-name\":\"Produkt-Design-Flink-Heromockup-Handyapp-UI-Design\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hi6lzq\",\"data-framer-name\":\"Section\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oK0zgNzfE:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:902,intrinsicWidth:902,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3488.8463687606895+-99.37989163154691),pixelHeight:902,pixelWidth:902,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/B34Pk3L3xclDsyqleWm8QIGKQ.png\"}},XQYILS2io:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:902,intrinsicWidth:902,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3616.8463687606895+-47.65201685731449),pixelHeight:902,pixelWidth:902,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/B34Pk3L3xclDsyqleWm8QIGKQ.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation14,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:120,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",intrinsicHeight:902,intrinsicWidth:902,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3696.8463687606895+-34.72004816375636),pixelHeight:902,pixelWidth:902,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/B34Pk3L3xclDsyqleWm8QIGKQ.png\"},className:\"framer-njuk9n hidden-1s138dk hidden-1lmb1p\",\"data-framer-name\":\"Ellipse\",style:{transformPerspective:1200},transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1has61h\",\"data-styles-preset\":\"f1Vyd_3NB\",children:[\"Liked what you saw?\",/*#__PURE__*/_jsx(\"br\",{}),\"This is how it\u2019s done\"]})})},lGuNR74ud:{children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1has61h\",\"data-styles-preset\":\"f1Vyd_3NB\",children:[\"Liked what you saw?\",/*#__PURE__*/_jsx(\"br\",{}),\"This is how it\u2019s done\"]})})},oK0zgNzfE:{children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1has61h\",\"data-styles-preset\":\"f1Vyd_3NB\",children:[\"               Liked what you saw?\",/*#__PURE__*/_jsx(\"br\",{}),\"This is how it\u2019s done\"]})})},XQYILS2io:{children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1has61h\",\"data-styles-preset\":\"f1Vyd_3NB\",children:[\"               Liked what you saw?\",/*#__PURE__*/_jsx(\"br\",{}),\"This is how it\u2019s done\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1has61h\",\"data-styles-preset\":\"f1Vyd_3NB\",children:[\"               Liked what you saw?\",/*#__PURE__*/_jsx(\"br\",{}),\"This is how it\u2019s done\"]})}),className:\"framer-1ur02l1\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zsyori\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-194dgd3\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fyuusb-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lGuNR74ud:{radius:24}},children:/*#__PURE__*/_jsx(CardProcessSteps,{content:getLocalizedValue(\"v34\",activeLocale)??\"The sooner the release, the quicker we can respond to user feedback. Through continuous iteration, we will steadily improve the design. You decide how many loops you want to do with me.\",height:\"100%\",id:\"PTIrzeO1S\",image:addImageAlt({src:\"https://framerusercontent.com/images/X7RTNwUSjkql7wfxdmJOTqVEcEc.svg\"},getLocalizedValue(\"v35\",activeLocale)??\"Illustration zum Pordukt Design Prozess von Karsten Kreh Handover und Release\"),layoutId:\"PTIrzeO1S\",radius:40,style:{height:\"100%\",width:\"100%\"},title:getLocalizedValue(\"v33\",activeLocale)??\"6. Handover and Release\",variant:\"NYHFeAvUt\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation17,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-139xzh1-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lGuNR74ud:{radius:24}},children:/*#__PURE__*/_jsx(CardProcessSteps,{content:getLocalizedValue(\"v37\",activeLocale)??\"With the foundations set, the mental work is done. Moving forward, it is just a matter of diligently working through all details. To fully immerse myself, I will lock myself up and retreat into my focus tunnel.\",height:\"100%\",id:\"FFenhMvQ2\",image:addImageAlt({src:\"https://framerusercontent.com/images/GkTMgVFoHbsvwli3wdPuBYBkqb8.svg\"},getLocalizedValue(\"v38\",activeLocale)??\"Illustration zum Pordukt Design Prozess von Karsten Kreh Execute and Refine\"),layoutId:\"FFenhMvQ2\",radius:40,style:{height:\"100%\",width:\"100%\"},title:getLocalizedValue(\"v36\",activeLocale)??\"5. Execute and Refine\",variant:\"gYBnwpUzy\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation19,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1l609kw-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lGuNR74ud:{radius:24}},children:/*#__PURE__*/_jsx(CardProcessSteps,{content:getLocalizedValue(\"v40\",activeLocale)??\"With a clear understanding of all user needs we can make decisions about the foundations of the design system. We will define layouts, components, and styles using a systematic and scalable approach.\",height:\"100%\",id:\"lHWg5MbPs\",image:addImageAlt({src:\"https://framerusercontent.com/images/i5HrNBzQi8sew8QU5AcSULmSZs.svg\"},getLocalizedValue(\"v41\",activeLocale)??\"Illustration zum Pordukt Design Prozess von Karsten Kreh Systematic Base\"),layoutId:\"lHWg5MbPs\",radius:40,style:{height:\"100%\",width:\"100%\"},title:getLocalizedValue(\"v39\",activeLocale)??\"4. Systematic base\",variant:\"NYHFeAvUt\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p6hfk3\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation21,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-914d5p-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lGuNR74ud:{radius:24}},children:/*#__PURE__*/_jsx(CardProcessSteps,{content:getLocalizedValue(\"v43\",activeLocale)??\"In most cases, we will not start completely new from scratch. It is essential to closely examine what has worked so far and what has not. The more data we have available, the better.\",height:\"100%\",id:\"FaZt04u1f\",image:addImageAlt({src:\"https://framerusercontent.com/images/s9ooCqQVrvdGaivTZJMAhK6eQo.svg\"},getLocalizedValue(\"v44\",activeLocale)??\"Illustration zum Pordukt Design Prozess von Karsten Kreh Analysis\"),layoutId:\"FaZt04u1f\",radius:40,style:{height:\"100%\",width:\"100%\"},title:getLocalizedValue(\"v42\",activeLocale)??\"1. Analysis\",variant:\"gYBnwpUzy\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ejq5cb-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lGuNR74ud:{radius:24}},children:/*#__PURE__*/_jsx(CardProcessSteps,{content:getLocalizedValue(\"v46\",activeLocale)??\"I like to build things fast. Let's not care about all the tiny weeny details at this point and instead focus on creating a prototype to test our new ideas.\",height:\"100%\",id:\"hLUpiplJn\",image:addImageAlt({src:\"https://framerusercontent.com/images/eGZEcTWD646RsGGHtGrZlXyg.svg\"},getLocalizedValue(\"v47\",activeLocale)??\"Illustration zum Pordukt Design Prozess von Karsten Kreh Rapid Prototyping\"),layoutId:\"hLUpiplJn\",radius:40,style:{height:\"100%\",width:\"100%\"},title:getLocalizedValue(\"v45\",activeLocale)??\"2. Rapid Prototyping\",variant:\"NYHFeAvUt\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation25,__framer__exit:animation26,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19xufsm-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lGuNR74ud:{radius:24}},children:/*#__PURE__*/_jsx(CardProcessSteps,{content:getLocalizedValue(\"v49\",activeLocale)??\"Let's take our assumptions out of the ivory tower and expose them to the chaos of real users' feedback. Adjustments will be needed - but that is okay. That is why we invested minimal time in the initial design.\",height:\"100%\",id:\"XtzOHyYOu\",image:addImageAlt({src:\"https://framerusercontent.com/images/Qm03jcwEFbtkuw5jigbYiFhM4co.svg\"},getLocalizedValue(\"v50\",activeLocale)??\"Illustration zum Pordukt Design Prozess von Karsten Kreh Testing\"),layoutId:\"XtzOHyYOu\",radius:40,style:{height:\"100%\",width:\"100%\"},title:getLocalizedValue(\"v48\",activeLocale)??\"3. Testing\",variant:\"gYBnwpUzy\",width:\"100%\"})})})})]})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3ha13q hidden-1s138dk hidden-1lmb1p\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oK0zgNzfE:{__framer__speed:95,background:{alt:getLocalizedValue(\"v51\",activeLocale)??\"Illustration eines wachsenden Computernetzwerks repr\\xe4sentiert lebendige und wachsende Produkte im Produkt Design\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4581.24636876069+158.75000000000023),pixelHeight:1024,pixelWidth:1024,sizes:\"680px\",src:\"https://framerusercontent.com/images/Y6DYZ429MsyXN2S6HxUIp9DuA0.png\",srcSet:\"https://framerusercontent.com/images/Y6DYZ429MsyXN2S6HxUIp9DuA0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y6DYZ429MsyXN2S6HxUIp9DuA0.png 1024w\"}},XQYILS2io:{__framer__speed:85,background:{alt:getLocalizedValue(\"v51\",activeLocale)??\"Illustration eines wachsenden Computernetzwerks repr\\xe4sentiert lebendige und wachsende Produkte im Produkt Design\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4805.24636876069+158.75000000000023),pixelHeight:1024,pixelWidth:1024,sizes:\"680px\",src:\"https://framerusercontent.com/images/Y6DYZ429MsyXN2S6HxUIp9DuA0.png\",srcSet:\"https://framerusercontent.com/images/Y6DYZ429MsyXN2S6HxUIp9DuA0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y6DYZ429MsyXN2S6HxUIp9DuA0.png 1024w\"}}},children:/*#__PURE__*/_jsxs(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:80,__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v51\",activeLocale)??\"Illustration eines wachsenden Computernetzwerks repr\\xe4sentiert lebendige und wachsende Produkte im Produkt Design\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4909.24636876069+158.75000000000023),pixelHeight:1024,pixelWidth:1024,sizes:\"680px\",src:\"https://framerusercontent.com/images/Y6DYZ429MsyXN2S6HxUIp9DuA0.png\",srcSet:\"https://framerusercontent.com/images/Y6DYZ429MsyXN2S6HxUIp9DuA0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y6DYZ429MsyXN2S6HxUIp9DuA0.png 1024w\"},className:\"framer-1onhvms\",\"data-framer-name\":\"Image\",transformTemplate:transformTemplate3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oK0zgNzfE:{__framer__speed:101,background:{alt:\"\",fit:\"fill\",intrinsicHeight:162,intrinsicWidth:116,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4581.24636876069+158.75000000000023+203.00000000000017),pixelHeight:162,pixelWidth:116,src:\"https://framerusercontent.com/images/oS2JDgLIedUJtcwohbOhJJe1Kg.png\"}},XQYILS2io:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:162,intrinsicWidth:116,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4805.24636876069+158.75000000000023+203.00000000000017),pixelHeight:162,pixelWidth:116,src:\"https://framerusercontent.com/images/oS2JDgLIedUJtcwohbOhJJe1Kg.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:104,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:162,intrinsicWidth:116,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4909.24636876069+158.75000000000023+203.00000000000017),pixelHeight:162,pixelWidth:116,src:\"https://framerusercontent.com/images/oS2JDgLIedUJtcwohbOhJJe1Kg.png\"},className:\"framer-1ws4t8e\",\"data-framer-name\":\"Product_design_plattform_element_04\",transformTemplate:transformTemplate3})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oK0zgNzfE:{__framer__speed:101,background:{alt:\"\",fit:\"fill\",intrinsicHeight:137,intrinsicWidth:112,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4581.24636876069+158.75000000000023+10.50000000000015),pixelHeight:137,pixelWidth:112,src:\"https://framerusercontent.com/images/h0bR1QAUoKXrZpDWGbDmiF2tXU.png\"}},XQYILS2io:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:137,intrinsicWidth:112,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4805.24636876069+158.75000000000023+10.50000000000015),pixelHeight:137,pixelWidth:112,src:\"https://framerusercontent.com/images/h0bR1QAUoKXrZpDWGbDmiF2tXU.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:102,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:137,intrinsicWidth:112,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4909.24636876069+158.75000000000023+10.50000000000015),pixelHeight:137,pixelWidth:112,src:\"https://framerusercontent.com/images/h0bR1QAUoKXrZpDWGbDmiF2tXU.png\"},className:\"framer-1uq6df3\",\"data-framer-name\":\"Product_design_plattform_element_03\",transformTemplate:transformTemplate3})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oK0zgNzfE:{__framer__speed:101,background:{alt:\"\",fit:\"fill\",intrinsicHeight:132,intrinsicWidth:93,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4581.24636876069+158.75000000000023+172.50000000000014),pixelHeight:132,pixelWidth:93,src:\"https://framerusercontent.com/images/mxSjLaxiHmEprZkxNF5sV4fHNY.png\"}},XQYILS2io:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:132,intrinsicWidth:93,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4805.24636876069+158.75000000000023+172.50000000000014),pixelHeight:132,pixelWidth:93,src:\"https://framerusercontent.com/images/mxSjLaxiHmEprZkxNF5sV4fHNY.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:104,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:132,intrinsicWidth:93,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4909.24636876069+158.75000000000023+172.50000000000014),pixelHeight:132,pixelWidth:93,src:\"https://framerusercontent.com/images/mxSjLaxiHmEprZkxNF5sV4fHNY.png\"},className:\"framer-lhgaq8\",\"data-framer-name\":\"Product_design_plattform_element_02\",transformTemplate:transformTemplate3})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oK0zgNzfE:{__framer__speed:101,background:{alt:\"\",fit:\"fill\",intrinsicHeight:229,intrinsicWidth:138,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4581.24636876069+158.75000000000023+267.00000000000017),pixelHeight:229,pixelWidth:138,src:\"https://framerusercontent.com/images/nlSgQQljqS5ahJ66sLbV2Ll8TI.png\"}},XQYILS2io:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:229,intrinsicWidth:138,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4805.24636876069+158.75000000000023+267.00000000000017),pixelHeight:229,pixelWidth:138,src:\"https://framerusercontent.com/images/nlSgQQljqS5ahJ66sLbV2Ll8TI.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:103,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:229,intrinsicWidth:138,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4909.24636876069+158.75000000000023+267.00000000000017),pixelHeight:229,pixelWidth:138,src:\"https://framerusercontent.com/images/nlSgQQljqS5ahJ66sLbV2Ll8TI.png\"},className:\"framer-8ao4km\",\"data-framer-name\":\"Product_design_plattform_element_01\",transformTemplate:transformTemplate3})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oK0zgNzfE:{__framer__speed:104,background:{alt:\"\",fit:\"fill\",intrinsicHeight:133,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4581.24636876069+158.75000000000023+187.20000000000016),pixelHeight:133,pixelWidth:100,src:\"https://framerusercontent.com/images/SiYscFZZ5sYPeRiLaN7ouone29Y.png\"}},XQYILS2io:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:133,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4805.24636876069+158.75000000000023+187.20000000000016),pixelHeight:133,pixelWidth:100,src:\"https://framerusercontent.com/images/SiYscFZZ5sYPeRiLaN7ouone29Y.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:109,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:133,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4909.24636876069+158.75000000000023+187.20000000000016),pixelHeight:133,pixelWidth:100,src:\"https://framerusercontent.com/images/SiYscFZZ5sYPeRiLaN7ouone29Y.png\"},className:\"framer-8q8w6n\",\"data-framer-name\":\"Product_design_plattform_element_05\",transformTemplate:transformTemplate3})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oK0zgNzfE:{__framer__speed:104,background:{alt:\"\",fit:\"fill\",intrinsicHeight:137,intrinsicWidth:89,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4581.24636876069+158.75000000000023+87.50000000000016),pixelHeight:137,pixelWidth:89,src:\"https://framerusercontent.com/images/eOkf2b3qpYNBdxTQV1331JgIZ5M.png\"}},XQYILS2io:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:137,intrinsicWidth:89,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4805.24636876069+158.75000000000023+87.50000000000016),pixelHeight:137,pixelWidth:89,src:\"https://framerusercontent.com/images/eOkf2b3qpYNBdxTQV1331JgIZ5M.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:110,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:137,intrinsicWidth:89,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4909.24636876069+158.75000000000023+87.50000000000016),pixelHeight:137,pixelWidth:89,src:\"https://framerusercontent.com/images/eOkf2b3qpYNBdxTQV1331JgIZ5M.png\"},className:\"framer-cqux2g\",\"data-framer-name\":\"Product_design_plattform_element_06\",transformTemplate:transformTemplate3})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yidjaj\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:200,delay:0,duration:.3,ease:[.44,0,.56,1],mass:60,stiffness:250,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:36,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v52\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-k62ylz\",\"data-styles-preset\":\"jOFOV9gyF\",children:\"Digital \"})}),className:\"framer-1939koz\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:200,delay:0,duration:.3,ease:[.44,0,.56,1],mass:60,stiffness:250,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:9,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-k62ylz\",\"data-styles-preset\":\"jOFOV9gyF\",children:\"are not \"})}),className:\"framer-hic8n5\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:200,delay:0,duration:.3,ease:[.44,0,.56,1],mass:60,stiffness:250,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:157,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-k62ylz\",\"data-styles-preset\":\"jOFOV9gyF\",children:\"but \"})}),className:\"framer-4pvdlb\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jwy6s0\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:200,delay:0,duration:.3,ease:[.44,0,.56,1],mass:60,stiffness:250,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-436,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1djp6ht\",\"data-styles-preset\":\"SrkqwwAir\",children:\"products\"})}),className:\"framer-qb4r0v\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:200,delay:0,duration:.3,ease:[.44,0,.56,1],mass:60,stiffness:250,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-173,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1djp6ht\",\"data-styles-preset\":\"SrkqwwAir\",children:\"static machines\"})}),className:\"framer-jc9bdb\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:200,delay:0,duration:.3,ease:[.44,0,.56,1],mass:60,stiffness:250,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-173,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1djp6ht\",\"data-styles-preset\":\"SrkqwwAir\",children:\"living organisms\"})}),className:\"framer-1m58nlw\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ys9559 hidden-72rtr7 hidden-mtiwmh hidden-19km7s hidden-1lmb1p\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+4941.200000000001+39.38518518518532),pixelHeight:1024,pixelWidth:1024,sizes:\"584px\",src:\"https://framerusercontent.com/images/Y6DYZ429MsyXN2S6HxUIp9DuA0.png\",srcSet:\"https://framerusercontent.com/images/Y6DYZ429MsyXN2S6HxUIp9DuA0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y6DYZ429MsyXN2S6HxUIp9DuA0.png 1024w\"}}},children:/*#__PURE__*/_jsxs(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:80,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:\"584px\",src:\"https://framerusercontent.com/images/Y6DYZ429MsyXN2S6HxUIp9DuA0.png\",srcSet:\"https://framerusercontent.com/images/Y6DYZ429MsyXN2S6HxUIp9DuA0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y6DYZ429MsyXN2S6HxUIp9DuA0.png 1024w\"},className:\"framer-y7819s\",\"data-framer-name\":\"Image\",transformTemplate:transformTemplate3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:162,intrinsicWidth:116,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+4941.200000000001+39.38518518518532+165.3058823529413),pixelHeight:162,pixelWidth:116,src:\"https://framerusercontent.com/images/oS2JDgLIedUJtcwohbOhJJe1Kg.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:162,intrinsicWidth:116,pixelHeight:162,pixelWidth:116,src:\"https://framerusercontent.com/images/oS2JDgLIedUJtcwohbOhJJe1Kg.png\"},className:\"framer-33jv81\",\"data-framer-name\":\"Product_design_plattform_element_04\",transformTemplate:transformTemplate3})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:137,intrinsicWidth:112,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+4941.200000000001+39.38518518518532+1.8882352941177771),pixelHeight:137,pixelWidth:112,src:\"https://framerusercontent.com/images/h0bR1QAUoKXrZpDWGbDmiF2tXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:137,intrinsicWidth:112,pixelHeight:137,pixelWidth:112,src:\"https://framerusercontent.com/images/h0bR1QAUoKXrZpDWGbDmiF2tXU.png\"},className:\"framer-14vyptx\",\"data-framer-name\":\"Product_design_plattform_element_03\",transformTemplate:transformTemplate3})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:132,intrinsicWidth:93,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+4941.200000000001+39.38518518518532+140.45294117647072),pixelHeight:132,pixelWidth:93,src:\"https://framerusercontent.com/images/mxSjLaxiHmEprZkxNF5sV4fHNY.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:132,intrinsicWidth:93,pixelHeight:132,pixelWidth:93,src:\"https://framerusercontent.com/images/mxSjLaxiHmEprZkxNF5sV4fHNY.png\"},className:\"framer-1j207a\",\"data-framer-name\":\"Product_design_plattform_element_02\",transformTemplate:transformTemplate3})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:229,intrinsicWidth:138,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+4941.200000000001+39.38518518518532+216.88235294117663),pixelHeight:229,pixelWidth:138,src:\"https://framerusercontent.com/images/nlSgQQljqS5ahJ66sLbV2Ll8TI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:229,intrinsicWidth:138,pixelHeight:229,pixelWidth:138,src:\"https://framerusercontent.com/images/nlSgQQljqS5ahJ66sLbV2Ll8TI.png\"},className:\"framer-falpbz\",\"data-framer-name\":\"Product_design_plattform_element_01\",transformTemplate:transformTemplate3})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:133,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+4941.200000000001+39.38518518518532+155.57647058823545),pixelHeight:133,pixelWidth:100,src:\"https://framerusercontent.com/images/SiYscFZZ5sYPeRiLaN7ouone29Y.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:133,intrinsicWidth:100,pixelHeight:133,pixelWidth:100,src:\"https://framerusercontent.com/images/SiYscFZZ5sYPeRiLaN7ouone29Y.png\"},className:\"framer-xh2ovp\",\"data-framer-name\":\"Product_design_plattform_element_05\",transformTemplate:transformTemplate3})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:137,intrinsicWidth:89,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+4941.200000000001+39.38518518518532+69.85294117647072),pixelHeight:137,pixelWidth:89,src:\"https://framerusercontent.com/images/eOkf2b3qpYNBdxTQV1331JgIZ5M.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:137,intrinsicWidth:89,pixelHeight:137,pixelWidth:89,src:\"https://framerusercontent.com/images/eOkf2b3qpYNBdxTQV1331JgIZ5M.png\"},className:\"framer-1b4mpy7\",\"data-framer-name\":\"Product_design_plattform_element_06\",transformTemplate:transformTemplate3})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11f3bmr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v52\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-k62ylz\",\"data-styles-preset\":\"jOFOV9gyF\",children:\"Digital \"})}),className:\"framer-tyw6mg\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-k62ylz\",\"data-styles-preset\":\"jOFOV9gyF\",children:\"are not \"})}),className:\"framer-evr2rv\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-k62ylz\",\"data-styles-preset\":\"jOFOV9gyF\",children:\"but \"})}),className:\"framer-1tn68as\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dxni9r\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1djp6ht\",\"data-styles-preset\":\"SrkqwwAir\",children:\"products\"})}),className:\"framer-1lk05fm\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1djp6ht\",\"data-styles-preset\":\"SrkqwwAir\",children:\"static machines\"})}),className:\"framer-1sjidqu\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1djp6ht\",\"data-styles-preset\":\"SrkqwwAir\",children:\"living organisms\"})}),className:\"framer-1rd3cne\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cuobmj hidden-72rtr7 hidden-1s138dk hidden-mtiwmh hidden-19km7s\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lGuNR74ud:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+4893.200000000001+119.21686746987962),pixelHeight:1024,pixelWidth:1024,sizes:`calc(min(max(max(${componentViewport?.width||\"100vw\"}, 1px) - 48px, 1px), 1600px) - 72px)`,src:\"https://framerusercontent.com/images/Y6DYZ429MsyXN2S6HxUIp9DuA0.png\",srcSet:\"https://framerusercontent.com/images/Y6DYZ429MsyXN2S6HxUIp9DuA0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y6DYZ429MsyXN2S6HxUIp9DuA0.png 1024w\"}}},children:/*#__PURE__*/_jsxs(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:80,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/Y6DYZ429MsyXN2S6HxUIp9DuA0.png\",srcSet:\"https://framerusercontent.com/images/Y6DYZ429MsyXN2S6HxUIp9DuA0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y6DYZ429MsyXN2S6HxUIp9DuA0.png 1024w\"},className:\"framer-1h8nl5m\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lGuNR74ud:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:162,intrinsicWidth:116,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+4893.200000000001+119.21686746987962+45.94117647058829),pixelHeight:162,pixelWidth:116,src:\"https://framerusercontent.com/images/oS2JDgLIedUJtcwohbOhJJe1Kg.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:162,intrinsicWidth:116,pixelHeight:162,pixelWidth:116,src:\"https://framerusercontent.com/images/oS2JDgLIedUJtcwohbOhJJe1Kg.png\"},className:\"framer-129oe0h\",\"data-framer-name\":\"Product_design_plattform_element_04\",transformTemplate:transformTemplate3})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lGuNR74ud:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:137,intrinsicWidth:112,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+4893.200000000001+119.21686746987962+-25.382352941176407),pixelHeight:137,pixelWidth:112,src:\"https://framerusercontent.com/images/h0bR1QAUoKXrZpDWGbDmiF2tXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:137,intrinsicWidth:112,pixelHeight:137,pixelWidth:112,src:\"https://framerusercontent.com/images/h0bR1QAUoKXrZpDWGbDmiF2tXU.png\"},className:\"framer-u0m1s2\",\"data-framer-name\":\"Product_design_plattform_element_03\",transformTemplate:transformTemplate3})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lGuNR74ud:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:132,intrinsicWidth:93,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+4893.200000000001+119.21686746987962+38.97058823529417),pixelHeight:132,pixelWidth:93,src:\"https://framerusercontent.com/images/mxSjLaxiHmEprZkxNF5sV4fHNY.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:132,intrinsicWidth:93,pixelHeight:132,pixelWidth:93,src:\"https://framerusercontent.com/images/mxSjLaxiHmEprZkxNF5sV4fHNY.png\"},className:\"framer-16x5b28\",\"data-framer-name\":\"Product_design_plattform_element_02\",transformTemplate:transformTemplate3})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lGuNR74ud:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:229,intrinsicWidth:138,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+4893.200000000001+119.21686746987962+58.17647058823536),pixelHeight:229,pixelWidth:138,src:\"https://framerusercontent.com/images/nlSgQQljqS5ahJ66sLbV2Ll8TI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:229,intrinsicWidth:138,pixelHeight:229,pixelWidth:138,src:\"https://framerusercontent.com/images/nlSgQQljqS5ahJ66sLbV2Ll8TI.png\"},className:\"framer-74ew6n\",\"data-framer-name\":\"Product_design_plattform_element_01\",transformTemplate:transformTemplate3})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lGuNR74ud:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:133,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+4893.200000000001+119.21686746987962+55.43529411764712),pixelHeight:133,pixelWidth:100,src:\"https://framerusercontent.com/images/SiYscFZZ5sYPeRiLaN7ouone29Y.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:133,intrinsicWidth:100,pixelHeight:133,pixelWidth:100,src:\"https://framerusercontent.com/images/SiYscFZZ5sYPeRiLaN7ouone29Y.png\"},className:\"framer-1y27nip\",\"data-framer-name\":\"Product_design_plattform_element_05\",transformTemplate:transformTemplate3})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lGuNR74ud:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:137,intrinsicWidth:89,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0+4893.200000000001+119.21686746987962+13.970588235294187),pixelHeight:137,pixelWidth:89,src:\"https://framerusercontent.com/images/eOkf2b3qpYNBdxTQV1331JgIZ5M.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:137,intrinsicWidth:89,pixelHeight:137,pixelWidth:89,src:\"https://framerusercontent.com/images/eOkf2b3qpYNBdxTQV1331JgIZ5M.png\"},className:\"framer-uch1wq\",\"data-framer-name\":\"Product_design_plattform_element_06\",transformTemplate:transformTemplate3})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14aga21\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v52\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-k62ylz\",\"data-styles-preset\":\"jOFOV9gyF\",children:\"Digital \"})}),className:\"framer-1cvsebl\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-k62ylz\",\"data-styles-preset\":\"jOFOV9gyF\",children:\"are not \"})}),className:\"framer-1q581qf\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-k62ylz\",\"data-styles-preset\":\"jOFOV9gyF\",children:\"but \"})}),className:\"framer-10h5xm4\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2v84bq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1djp6ht\",\"data-styles-preset\":\"SrkqwwAir\",children:\"products\"})}),className:\"framer-1bwppny\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1djp6ht\",\"data-styles-preset\":\"SrkqwwAir\",children:\"static machines\"})}),className:\"framer-ndw80g\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1djp6ht\",\"data-styles-preset\":\"SrkqwwAir\",children:\"living organisms\"})}),className:\"framer-1tpo62u\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lqzelo\",\"data-framer-name\":\"Section\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jmhpm-container hidden-72rtr7 hidden-1s138dk hidden-mtiwmh hidden-19km7s\",children:/*#__PURE__*/_jsx(Slideshow1,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:24,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:false,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:true},gap:40,height:\"100%\",id:\"bwstd7y50\",intervalControl:2,itemAmount:1,layoutId:\"bwstd7y50\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:-40,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:680,width:\"352px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-w5ad4n-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{age5xjdgl:addImageAlt({src:\"https://framerusercontent.com/images/Ujz6QeD3JHv59818eLaWQndQnAw.jpg\"},\"\"),CHj5EdUId:getLocalizedValue(\"v53\",activeLocale)??\"Insurance and Financial Investment Expert\",height:\"100%\",I87LQdQWg:\"Werner\",id:\"PVK3agMti\",iHyDoqVe8:\"https://www.linkedin.com/in/werner-kr%C3%A4utlein-248b8415b/\",layoutId:\"PVK3agMti\",style:{height:\"100%\",width:\"100%\"},variant:\"BU_MLHOcf\",width:\"100%\",y3ndbJ11E:getLocalizedValue(\"v54\",activeLocale)??\"\\\"As a salesperson, I'm not the most visually inclined guy. That's where Karsten helps me to turn my ideas into compelling designs. He has been a valuable employee of my company for many years. I consider him not only as an exceptional designer but also as a trusted friend. I still hire him as a freelancer and look forward to more exciting projects!\\\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:680,width:\"352px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r7fcgy-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{age5xjdgl:addImageAlt({src:\"https://framerusercontent.com/images/7kFo86zoWq4X75ZMO1vtMVwHUcQ.jpg\"},\"\"),CHj5EdUId:getLocalizedValue(\"v55\",activeLocale)??\"PhD Finance, Fintech Founder, Alternative Lending Expert, Business Angel\",height:\"100%\",I87LQdQWg:\"Fredi\",id:\"j3N6kEfWd\",iHyDoqVe8:\"https://www.linkedin.com/in/fredigruber/\",layoutId:\"j3N6kEfWd\",style:{height:\"100%\",width:\"100%\"},variant:\"BU_MLHOcf\",width:\"100%\",y3ndbJ11E:getLocalizedValue(\"v56\",activeLocale)??'\"Endlich mal ein Designer, der FinTech versteht! Ich war auf der Suche nach einem Partner, der mir hilft, die komplexe Technologie hinter unserem Produkt visuell ansprechend und einfach verst\\xe4ndlich darzustellen. Karsten hat genau das geleistet. Dank seiner Branchenkenntnis konnte er sich schnell in unsere Thematik einarbeiten und wir hoffen, dass er uns noch lange zur Seite steht.\"'})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:680,width:\"352px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cy13ru-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{age5xjdgl:addImageAlt({src:\"https://framerusercontent.com/images/b8Qpx64xuF5PtffKfEpZcHSsL3s.jpg\"},\"\"),CHj5EdUId:getLocalizedValue(\"v57\",activeLocale)??\"Managing director of a financial consultancy\",height:\"100%\",I87LQdQWg:\"Andi\",id:\"LPjruMgWP\",iHyDoqVe8:\"https://www.linkedin.com/in/andreas-gram%C3%BCller-09885060/\",layoutId:\"LPjruMgWP\",style:{height:\"100%\",width:\"100%\"},variant:\"MIJR_OCYP\",width:\"100%\",y3ndbJ11E:getLocalizedValue(\"v58\",activeLocale)??\"\\\"Karsten not only helped me professionalise my web presence but also gave the brand of my newly founded company its personality. He has become an always welcome guest in our office. But I don't want to recommend him because I'm afraid he'll have less time for me then.\\\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:680,width:\"352px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-mz9wi2-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{age5xjdgl:addImageAlt({src:\"https://framerusercontent.com/images/2cnNNocLhYZ33ptI0ZnEOkGnpoo.jpg\"},\"\"),CHj5EdUId:getLocalizedValue(\"v59\",activeLocale)??\"Experienced developer and PhD Researcher in IT\",height:\"100%\",I87LQdQWg:\"Jan\",id:\"Wni3ezhIM\",iHyDoqVe8:\"https://www.linkedin.com/in/jankalbantner/\",layoutId:\"Wni3ezhIM\",style:{height:\"100%\",width:\"100%\"},variant:\"BU_MLHOcf\",width:\"100%\",y3ndbJ11E:getLocalizedValue(\"v60\",activeLocale)??'\"I hired Karsten to design a web application. His pointed questions helped my client articulate their design preferences. Thanks to his straightforward explanations and systematic approach, we swiftly reached a great result. If this were eBay, I\\'d give him a solid 5 out of 5 stars.\"'})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:680,width:\"352px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-pvsjxt-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{age5xjdgl:addImageAlt({src:\"https://framerusercontent.com/images/K9v8S9m0GNBUyQDiOno3SfrkHw.jpg\"},\"\"),CHj5EdUId:getLocalizedValue(\"v61\",activeLocale)??\"Founder of a digital agency, experts in UX for B2B\",height:\"100%\",I87LQdQWg:\"Alex & Jessi\",id:\"A0OpXjwj6\",iHyDoqVe8:\"https://www.linkedin.com/company/8reasons/\",layoutId:\"A0OpXjwj6\",style:{height:\"100%\",width:\"100%\"},variant:\"ZbU4T14qi\",width:\"100%\",y3ndbJ11E:getLocalizedValue(\"v62\",activeLocale)??'\"We have regularly hired Karsten as a freelancer for the last 5 years. For us as agency owners, it is very valuable to have someone we can completely trust to work on client projects from start to finish.\"'})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:680,width:\"352px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5bawik-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{age5xjdgl:addImageAlt({src:\"https://framerusercontent.com/images/HaAJ3CCByBFh4E505wierOqql8.jpg\"},\"\"),CHj5EdUId:getLocalizedValue(\"v63\",activeLocale)??\"Financial advisor and founder of a platform for financial education\",height:\"100%\",I87LQdQWg:\"Patrick\",id:\"SqyEKshsT\",iHyDoqVe8:\"https://www.linkedin.com/in/patrick-pielawa-12a50b183/\",layoutId:\"SqyEKshsT\",style:{height:\"100%\",width:\"100%\"},variant:\"BU_MLHOcf\",width:\"100%\",y3ndbJ11E:getLocalizedValue(\"v64\",activeLocale)??'\"I worked Karsten on several projects. Recently, he helped elaborate the brand for our financial education platform. I particularly like that he doesn\\'t see his work as being done with pretty designs, but tries to understand the business model. This is very valuable in a field that needs lots of explanation, like the financial industry.\"'})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:680,width:\"352px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-14tmuvw-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{age5xjdgl:addImageAlt({src:\"https://framerusercontent.com/images/yAlWYZEdxl9cf6FwqjD7Ap6jWw.jpg\"},\"\"),CHj5EdUId:getLocalizedValue(\"v65\",activeLocale)??\"Founder and developer specialised in web and frontend\",height:\"100%\",I87LQdQWg:\"Timo\",id:\"NHRQce955\",iHyDoqVe8:\"https://www.linkedin.com/in/timo-morawitz/\",layoutId:\"NHRQce955\",style:{height:\"100%\",width:\"100%\"},variant:\"BU_MLHOcf\",width:\"100%\",y3ndbJ11E:getLocalizedValue(\"v66\",activeLocale)??'\"Before I worked with Karsten, I thought all designers worked in a chaotic and inconsistent way. He has become the \"favourite designer\" for me and also for other devsI know. He understands the challenges programmers have and involves me in the design process right from the beginning to avoid potential problems.\"'})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:680,width:\"352px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-151my7a-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{age5xjdgl:addImageAlt({src:\"https://framerusercontent.com/images/DF6shWjPOlI8eOMa6NVUNpqoLXc.svg\"},\"\"),CHj5EdUId:getLocalizedValue(\"v68\",activeLocale)??\"Are you ready to get in touch? I look forward to hearing about your idea!\",height:\"100%\",I87LQdQWg:getLocalizedValue(\"v67\",activeLocale)??\"Your story?\",id:\"khnsyMMnK\",layoutId:\"khnsyMMnK\",style:{height:\"100%\",width:\"100%\"},variant:\"aqvP5UFGw\",width:\"100%\",y3ndbJ11E:\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:680,width:\"352px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rn2y8u-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{age5xjdgl:addImageAlt({src:\"https://framerusercontent.com/images/7fr1dsggsP8UIS77kbS7pqgw.jpg\"},getLocalizedValue(\"v69\",activeLocale)??\"Kundenmeinung zu Karsten Kreh Produkt Design von Timo\"),CHj5EdUId:getLocalizedValue(\"v70\",activeLocale)??\"Senior consultant at a financial consultancy and founder of a service for improving people skills\",height:\"100%\",I87LQdQWg:\"Anja\",id:\"puDeaCI0n\",iHyDoqVe8:\"https://www.linkedin.com/in/anja-kuhn-26776a3a/\",layoutId:\"puDeaCI0n\",style:{height:\"100%\",width:\"100%\"},variant:\"BU_MLHOcf\",width:\"100%\",y3ndbJ11E:getLocalizedValue(\"v71\",activeLocale)??'\"Karsten not only designed a unique, modern and beautiful website for us, but also supported us with his IT and marketing know-how to offer our services digitally and distribute them online. We would definitely recommend him to other companies.\"'})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__perspectiveFX:false,__targetOpacity:1,className:\"framer-degomz-container hidden-1lmb1p\",children:/*#__PURE__*/_jsx(Slideshow1,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:24,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:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:40,height:\"100%\",id:\"IcWZBwOPA\",intervalControl:3,itemAmount:1,layoutId:\"IcWZBwOPA\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:-40,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1onc3zy-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{age5xjdgl:addImageAlt({src:\"https://framerusercontent.com/images/b8Qpx64xuF5PtffKfEpZcHSsL3s.jpg\"},getLocalizedValue(\"v72\",activeLocale)??\"Kundenmeinung zu Karsten Kreh Produkt Design von Andreas\"),CHj5EdUId:getLocalizedValue(\"v57\",activeLocale)??\"Managing director of a financial consultancy\",height:\"100%\",I87LQdQWg:\"Andreas\",id:\"L7W5y3MYx\",iHyDoqVe8:\"https://www.whofinance.de/institute/tecis/muenchen/218319/lindwurmstrasse-41/\",layoutId:\"L7W5y3MYx\",style:{height:\"100%\",width:\"100%\"},variant:\"MIJR_OCYP\",width:\"100%\",y3ndbJ11E:getLocalizedValue(\"v58\",activeLocale)??\"\\\"Karsten not only helped me professionalise my web presence but also gave the brand of my newly founded company its personality. He has become an always welcome guest in our office. But I don't want to recommend him because I'm afraid he'll have less time for me then.\\\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qfas5q-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{age5xjdgl:addImageAlt({src:\"https://framerusercontent.com/images/2cnNNocLhYZ33ptI0ZnEOkGnpoo.jpg\"},getLocalizedValue(\"v73\",activeLocale)??\"Kundenmeinung zu Karsten Kreh Produkt Design von Jan\"),CHj5EdUId:getLocalizedValue(\"v59\",activeLocale)??\"Experienced developer and PhD Researcher in IT\",height:\"100%\",I87LQdQWg:\"Jan\",id:\"tAO7Qm6FX\",iHyDoqVe8:\"https://www.linkedin.com/in/jankalbantner/\",layoutId:\"tAO7Qm6FX\",style:{height:\"100%\",width:\"100%\"},variant:\"BU_MLHOcf\",width:\"100%\",y3ndbJ11E:getLocalizedValue(\"v60\",activeLocale)??'\"I hired Karsten to design a web application. His pointed questions helped my client articulate their design preferences. Thanks to his straightforward explanations and systematic approach, we swiftly reached a great result. If this were eBay, I\\'d give him a solid 5 out of 5 stars.\"'})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c0cuz8-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{age5xjdgl:addImageAlt({src:\"https://framerusercontent.com/images/K9v8S9m0GNBUyQDiOno3SfrkHw.jpg\"},getLocalizedValue(\"v74\",activeLocale)??\"Kundenmeinung zu Karsten Kreh Produkt Design von Alex und Jessi\"),CHj5EdUId:getLocalizedValue(\"v61\",activeLocale)??\"Founder of a digital agency, experts in UX for B2B\",height:\"100%\",I87LQdQWg:\"Alex & Jessi\",id:\"kF1eu_udP\",iHyDoqVe8:\"https://www.linkedin.com/company/8reasons/\",layoutId:\"kF1eu_udP\",style:{height:\"100%\",width:\"100%\"},variant:\"ZbU4T14qi\",width:\"100%\",y3ndbJ11E:getLocalizedValue(\"v62\",activeLocale)??'\"We have regularly hired Karsten as a freelancer for the last 5 years. For us as agency owners, it is very valuable to have someone we can completely trust to work on client projects from start to finish.\"'})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sdmvv8-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{age5xjdgl:addImageAlt({src:\"https://framerusercontent.com/images/HaAJ3CCByBFh4E505wierOqql8.jpg\"},getLocalizedValue(\"v75\",activeLocale)??\"Kundenmeinung zu Karsten Kreh Produkt Design von Patrick\"),CHj5EdUId:getLocalizedValue(\"v63\",activeLocale)??\"Financial advisor and founder of a platform for financial education\",height:\"100%\",I87LQdQWg:\"Patrick\",id:\"kWwjZ5grR\",iHyDoqVe8:\"https://www.linkedin.com/in/patrick-pielawa-12a50b183/\",layoutId:\"kWwjZ5grR\",style:{height:\"100%\",width:\"100%\"},variant:\"BU_MLHOcf\",width:\"100%\",y3ndbJ11E:getLocalizedValue(\"v64\",activeLocale)??'\"I worked Karsten on several projects. Recently, he helped elaborate the brand for our financial education platform. I particularly like that he doesn\\'t see his work as being done with pretty designs, but tries to understand the business model. This is very valuable in a field that needs lots of explanation, like the financial industry.\"'})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eymcxa-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{age5xjdgl:addImageAlt({src:\"https://framerusercontent.com/images/yAlWYZEdxl9cf6FwqjD7Ap6jWw.jpg\"},getLocalizedValue(\"v76\",activeLocale)??\"Kundenmeinung zu Karsten Kreh Produkt Design von Timo\"),CHj5EdUId:getLocalizedValue(\"v65\",activeLocale)??\"Founder and developer specialised in web and frontend\",height:\"100%\",I87LQdQWg:\"Timo\",id:\"d2l2HJmzu\",iHyDoqVe8:\"https://www.linkedin.com/in/timo-morawitz/\",layoutId:\"d2l2HJmzu\",style:{height:\"100%\",width:\"100%\"},variant:\"BU_MLHOcf\",width:\"100%\",y3ndbJ11E:getLocalizedValue(\"v66\",activeLocale)??'\"Before I worked with Karsten, I thought all designers worked in a chaotic and inconsistent way. He has become the \"favourite designer\" for me and also for other devsI know. He understands the challenges programmers have and involves me in the design process right from the beginning to avoid potential problems.\"'})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vtja9l-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{age5xjdgl:addImageAlt({src:\"https://framerusercontent.com/images/DF6shWjPOlI8eOMa6NVUNpqoLXc.svg\"},getLocalizedValue(\"v77\",activeLocale)??\"Kundenmeinung Platzhalter zu Karsten Kreh Produkt Design\"),CHj5EdUId:getLocalizedValue(\"v68\",activeLocale)??\"Are you ready to get in touch? I look forward to hearing about your idea!\",height:\"100%\",I87LQdQWg:getLocalizedValue(\"v67\",activeLocale)??\"Your story?\",id:\"itFK6n7oH\",layoutId:\"itFK6n7oH\",style:{height:\"100%\",width:\"100%\"},variant:\"aqvP5UFGw\",width:\"100%\",y3ndbJ11E:\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-g5luxo-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{age5xjdgl:addImageAlt({src:\"https://framerusercontent.com/images/7kFo86zoWq4X75ZMO1vtMVwHUcQ.jpg\"},getLocalizedValue(\"v78\",activeLocale)??\"Kundenmeinung zu Karsten Kreh Produkt Design von Fredi\"),CHj5EdUId:getLocalizedValue(\"v55\",activeLocale)??\"PhD Finance, Fintech Founder, Alternative Lending Expert, Business Angel\",height:\"100%\",I87LQdQWg:\"Fredi\",id:\"h7fMqtxf4\",iHyDoqVe8:\"https://www.linkedin.com/in/fredigruber/\",layoutId:\"h7fMqtxf4\",style:{height:\"100%\",width:\"100%\"},variant:\"BU_MLHOcf\",width:\"100%\",y3ndbJ11E:getLocalizedValue(\"v79\",activeLocale)??'\"Finally, a designer who understands FinTech! I was looking for a partner to help me present the complex technology behind our product in a visually appealing and easy to understand way. Thanks to his knowledge of the industry, Karsten was able to quickly get to grips with our subject matter and we hope he will be with us for a long time to come.\"'})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-m80ij1-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{age5xjdgl:addImageAlt({src:\"https://framerusercontent.com/images/Ujz6QeD3JHv59818eLaWQndQnAw.jpg\"},getLocalizedValue(\"v80\",activeLocale)??\"Kundenmeinung zu Karsten Kreh Produkt Design von Werner\"),CHj5EdUId:getLocalizedValue(\"v53\",activeLocale)??\"Insurance and Financial Investment Expert\",height:\"100%\",I87LQdQWg:\"Werner\",id:\"PJxvnmu91\",iHyDoqVe8:\"https://www.linkedin.com/in/werner-kr%C3%A4utlein-248b8415b/\",layoutId:\"PJxvnmu91\",style:{height:\"100%\",width:\"100%\"},variant:\"BU_MLHOcf\",width:\"100%\",y3ndbJ11E:getLocalizedValue(\"v54\",activeLocale)??\"\\\"As a salesperson, I'm not the most visually inclined guy. That's where Karsten helps me to turn my ideas into compelling designs. He has been a valuable employee of my company for many years. I consider him not only as an exceptional designer but also as a trusted friend. I still hire him as a freelancer and look forward to more exciting projects!\\\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-40dwc-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{age5xjdgl:addImageAlt({src:\"https://framerusercontent.com/images/7fr1dsggsP8UIS77kbS7pqgw.jpg\"},getLocalizedValue(\"v69\",activeLocale)??\"Kundenmeinung zu Karsten Kreh Produkt Design von Timo\"),CHj5EdUId:getLocalizedValue(\"v70\",activeLocale)??\"Senior consultant at a financial consultancy and founder of a service for improving people skills\",height:\"100%\",I87LQdQWg:\"Anja\",id:\"XvhSh4zMs\",iHyDoqVe8:\"https://www.linkedin.com/in/anja-kuhn-26776a3a/\",layoutId:\"XvhSh4zMs\",style:{height:\"100%\",width:\"100%\"},variant:\"BU_MLHOcf\",width:\"100%\",y3ndbJ11E:getLocalizedValue(\"v71\",activeLocale)??'\"Karsten not only designed a unique, modern and beautiful website for us, but also supported us with his IT and marketing know-how to offer our services digitally and distribute them online. We would definitely recommend him to other companies.\"'})})})],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-c9icgz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{children:getLocalizedValue(\"v82\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1has61h\",\"data-styles-preset\":\"f1Vyd_3NB\",children:\"Here are some Storys of people who came before you\"})})},lGuNR74ud:{children:getLocalizedValue(\"v82\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1has61h\",\"data-styles-preset\":\"f1Vyd_3NB\",children:\"Here are some Storys of people who came before you\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v81\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1has61h\",\"data-styles-preset\":\"f1Vyd_3NB\",style:{\"--framer-text-alignment\":\"left\"},children:\"Here are some Storys of people who came before you\"})}),className:\"framer-gf8rg1\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c9iz9j\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MX2as6AUI\"},implicitPathVariables:undefined},{href:{webPageId:\"MX2as6AUI\"},implicitPathVariables:undefined},{href:{webPageId:\"MX2as6AUI\"},implicitPathVariables:undefined},{href:{webPageId:\"MX2as6AUI\"},implicitPathVariables:undefined},{href:{webPageId:\"MX2as6AUI\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:10,delay:0,duration:.3,ease:[.44,0,.56,1],mass:.2,stiffness:25,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:3,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-te2u1x-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{link:resolvedLinks1[1]},lGuNR74ud:{link:resolvedLinks1[4],radius:24},oK0zgNzfE:{link:resolvedLinks1[2]},XQYILS2io:{link:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(LargeButtonBottom,{height:\"100%\",id:\"EoHkFfPGj\",layoutId:\"EoHkFfPGj\",link:resolvedLinks1[0],newTab:false,radius:64,smoothScroll:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"MX2as6AUI\"},nodeId:\"IitrWce37\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1mefwag framer-lux5qc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v83\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1has61h\",\"data-styles-preset\":\"f1Vyd_3NB\",style:{\"--framer-text-color\":\"var(--variable-reference-uXjklHUvL-e0DlBM2HN)\"},children:\"Say hi \uD83D\uDC4B\uD83C\uDFFB\"})}),className:\"framer-13bz16d\",fonts:[\"Inter\"],style:{\"--variable-reference-uXjklHUvL-e0DlBM2HN\":uXjklHUvLe0DlBM2HN},transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tlqq98\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{width:`min(max(max(${componentViewport?.width||\"100vw\"}, 1px) - 48px, 1px), 1600px)`,y:(componentViewport?.y||0)+0+80+0+7541.200000000001+200+0},lGuNR74ud:{width:`min(max(max(${componentViewport?.width||\"100vw\"}, 1px) - 48px, 1px), 1600px)`,y:(componentViewport?.y||0)+0+80+0+6989.200000000001+200+0},oK0zgNzfE:{y:(componentViewport?.y||0)+0+0+0+7517.24636876069+320+0},XQYILS2io:{y:(componentViewport?.y||0)+0+0+0+7757.24636876069+320+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:`min(max(max(${componentViewport?.width||\"100vw\"} - 96px, 1px) - 40px, 1px), 1600px)`,y:(componentViewport?.y||0)+0+0+0+7885.24636876069+320+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wkgzc4-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{variant:\"dPlUMWb9S\"},lGuNR74ud:{variant:\"dPlUMWb9S\"}},children:/*#__PURE__*/_jsx(CopyrightSection,{height:\"100%\",id:\"zgZDKUSl8\",layoutId:\"zgZDKUSl8\",style:{width:\"100%\"},variant:\"fBzjTj6E8\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-etul8r\",\"data-framer-name\":\"Leftside\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{height:1200,width:componentViewport?.width||\"100vw\",y:0},lGuNR74ud:{height:1200,width:componentViewport?.width||\"100vw\",y:0},XQYILS2io:{y:17}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,y:.016666666666666666,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{initial:animation28},lGuNR74ud:{initial:animation28},XQYILS2io:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-14wouds-container\",\"data-framer-appear-id\":\"14wouds\",initial:animation27,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrWIj54ET:{style:{width:\"100%\"},variant:\"ZfBauO2vO\"},lGuNR74ud:{style:{width:\"100%\"},variant:\"ZfBauO2vO\"}},children:/*#__PURE__*/_jsx(MainNavigation,{height:\"100%\",id:\"P0jvVqn5n\",layoutId:\"P0jvVqn5n\",style:{height:\"100%\"},variant:\"a4P6I1trt\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VPlDU.framer-lux5qc, .framer-VPlDU .framer-lux5qc { display: block; }\",\".framer-VPlDU.framer-72rtr7 { align-content: flex-start; align-items: flex-start; background-color: #0b1114; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 96px; position: relative; width: 1600px; }\",\".framer-VPlDU .framer-1h19cfb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 32px 32px 8px; position: relative; width: 1px; }\",\".framer-VPlDU .framer-16h74jc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1600px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-VPlDU .framer-12u0esd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100.00463687606896vh; justify-content: center; overflow: visible; padding: 32px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-VPlDU .framer-y2jce6 { align-content: flex-start; align-items: flex-start; background-color: var(--token-4ff6545d-df4f-4531-92ad-d0cb2d20a869, #0b1114); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 1px; justify-content: center; max-height: 800px; min-height: 560px; overflow: hidden; padding: 52px 0px 64px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-VPlDU .framer-1onh7ls { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 76%; mix-blend-mode: exclusion; overflow: visible; padding: 0px 0px 0px 64px; position: relative; width: 100%; z-index: 0; }\",\".framer-VPlDU .framer-i22l0 { 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: 100%; }\",\".framer-VPlDU .framer-1u1se9c { flex: none; height: auto; max-width: 1200px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-VPlDU .framer-ipo43d { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VPlDU .framer-13mb2vh { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 535px; }\",\".framer-VPlDU .framer-1x0cwc7 { flex: none; height: auto; max-width: 1024px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-VPlDU .framer-1w9s9ud-container { flex: none; height: auto; position: relative; width: 109px; }\",\".framer-VPlDU .framer-b999me { flex: 1 0 0px; height: auto; max-width: 1024px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-VPlDU .framer-1o1c3ut { flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-VPlDU .framer-ob5nmr { 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: 20px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-VPlDU .framer-j8hvqg-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-VPlDU .framer-132yl4f { aspect-ratio: 1 / 1; bottom: -461px; flex: none; mix-blend-mode: difference; overflow: visible; position: absolute; right: -643px; top: -8px; width: var(--framer-aspect-ratio-supported, 1205px); z-index: 1; }\",\".framer-VPlDU .framer-ddrlrs { aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 1203px); left: 0px; position: absolute; top: 0px; width: 1203px; z-index: 1; }\",\".framer-VPlDU .framer-160d2em-container { aspect-ratio: 1.0297805642633229 / 1; bottom: -8px; flex: none; position: absolute; right: -92px; top: 33px; width: var(--framer-aspect-ratio-supported, 732px); z-index: 1; }\",\".framer-VPlDU .framer-196l8ri { align-content: center; align-items: center; border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 320px 0px 160px 0px; position: relative; width: 100%; }\",\".framer-VPlDU .framer-e5d8t2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VPlDU .framer-1b4uu7r { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-VPlDU .framer-16wyx6k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VPlDU .framer-t0pdnk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: 352px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",'.framer-VPlDU .framer-154vzla { align-content: flex-start; align-items: flex-start; background: radial-gradient(122.9% 112.5% at 100% 0%, #102d29 0%, var(--token-4ff6545d-df4f-4531-92ad-d0cb2d20a869, rgb(17, 27, 34)) /* {\"name\":\"Container\"} */ 100%); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 352px; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }',\".framer-VPlDU .framer-1899o7l { flex: none; height: 199px; overflow: visible; position: absolute; right: 11px; top: calc(88.06818181818184% - 199px / 2); width: 319px; z-index: 1; }\",\".framer-VPlDU .framer-3bn5ms { flex: none; height: 277px; overflow: visible; position: absolute; right: -7px; top: calc(71.87500000000003% - 277px / 2); width: 359px; z-index: 1; }\",\".framer-VPlDU .framer-1p3pljx { flex: none; height: 214px; overflow: visible; position: absolute; right: -1px; top: calc(53.40909090909093% - 214px / 2); width: 345px; z-index: 1; }\",\".framer-VPlDU .framer-2ns1p2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 464px; z-index: 1; }\",\".framer-VPlDU .framer-6gpt2l, .framer-VPlDU .framer-13is4l, .framer-VPlDU .framer-1wtsla7, .framer-VPlDU .framer-17ap8w5, .framer-VPlDU .framer-zvquzt, .framer-VPlDU .framer-ag35f9, .framer-VPlDU .framer-1v8mrbm, .framer-VPlDU .framer-1ywuy0l { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",'.framer-VPlDU .framer-mk7nkh { align-content: flex-start; align-items: flex-start; background: radial-gradient(100% 100% at 50% 100%, rgba(28, 24, 13, 0.99) 0%, var(--token-4ff6545d-df4f-4531-92ad-d0cb2d20a869, rgb(17, 27, 34)) /* {\"name\":\"Container\"} */ 100%); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 536px; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 544px; will-change: var(--framer-will-change-override, transform); }',\".framer-VPlDU .framer-18t29wq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VPlDU .framer-121eh3r { aspect-ratio: 1.0373514431239388 / 1; bottom: -34px; flex: none; height: var(--framer-aspect-ratio-supported, 254px); left: 50%; overflow: visible; position: absolute; transform: translateX(-50%); width: 264px; z-index: 1; }\",\".framer-VPlDU .framer-1ckf9tm { aspect-ratio: 0.9595959595959596 / 1; bottom: 258px; flex: none; height: var(--framer-aspect-ratio-supported, 55px); left: 62%; overflow: visible; position: absolute; transform: translateX(-50%); width: 52px; z-index: 1; }\",\".framer-VPlDU .framer-nf33ew { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",'.framer-VPlDU .framer-x9js3y { align-content: flex-start; align-items: flex-start; background: radial-gradient(100% 100% at 50% 0%, #0d1c0d 0%, var(--token-4ff6545d-df4f-4531-92ad-d0cb2d20a869, rgb(17, 27, 34)) /* {\"name\":\"Container\"} */ 100%); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 536px; justify-content: flex-end; overflow: hidden; padding: 40px; position: relative; width: 544px; will-change: var(--framer-will-change-override, transform); }',\".framer-VPlDU .framer-1wp18xq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-VPlDU .framer-cb001n { flex: none; height: 509px; left: calc(49.81617647058826% - 616px / 2); overflow: visible; position: absolute; top: -246px; width: 616px; z-index: 1; }\",\".framer-VPlDU .framer-1ptc1ti { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 257px); left: 50%; overflow: visible; position: absolute; top: 24px; transform: translateX(-50%); width: 257px; z-index: 1; }\",'.framer-VPlDU .framer-awrgw7 { align-content: flex-start; align-items: flex-start; background: radial-gradient(112.1% 163.6% at 0% 0%, #1C0D17 0%, var(--token-4ff6545d-df4f-4531-92ad-d0cb2d20a869, #111b22) /* {\"name\":\"Container\"} */ 100%); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 352px; justify-content: flex-end; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }',\".framer-VPlDU .framer-148of5x { aspect-ratio: 0.9320214669051878 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 232px); left: -63px; overflow: visible; position: absolute; top: 53%; transform: translateY(-50%); width: 216px; z-index: 1; }\",\".framer-VPlDU .framer-1fu0y5c { aspect-ratio: 1.2727272727272725 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 314px); left: -95px; overflow: visible; position: absolute; top: 76%; transform: translateY(-50%); width: 400px; z-index: 1; }\",\".framer-VPlDU .framer-1fm8tjl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 100%; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 464px; z-index: 1; }\",\".framer-VPlDU .framer-1t764oe { align-content: center; align-items: center; border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; border-top-left-radius: 64px; border-top-right-radius: 64px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 160px 0px 160px 0px; position: relative; width: 100%; }\",\".framer-VPlDU .framer-1lr5kes, .framer-VPlDU .framer-1ur02l1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-VPlDU .framer-uyqnt5-container { aspect-ratio: 1.8333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 192px); position: relative; width: 352px; }\",\".framer-VPlDU .framer-j7s2ad, .framer-VPlDU .framer-1klz13e, .framer-VPlDU .framer-1ppn9ye, .framer-VPlDU .framer-ovqb1a, .framer-VPlDU .framer-1ydwkui { align-content: flex-start; align-items: flex-start; aspect-ratio: 1.8333333333333333 / 1; background-color: var(--token-4ff6545d-df4f-4531-92ad-d0cb2d20a869, #111b22); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: var(--framer-aspect-ratio-supported, 222px); justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 407px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-VPlDU .framer-15odr0o, .framer-VPlDU .framer-thbarx { aspect-ratio: 1.4817012858555885 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 274px); position: relative; width: 100%; }\",\".framer-VPlDU .framer-7oz0y1 { aspect-ratio: 1.6666666666666665 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 244px); overflow: visible; position: relative; width: 100%; }\",\".framer-VPlDU .framer-1io20eg { aspect-ratio: 1.3566666666666667 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 300px); position: relative; width: 100%; z-index: -1; }\",\".framer-VPlDU .framer-1yf3ijj { aspect-ratio: 1.7142857142857142 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 238px); overflow: visible; position: relative; width: 100%; }\",\".framer-VPlDU .framer-8u0k3t-container { aspect-ratio: 1.8333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 798px); position: relative; width: 100%; z-index: 0; }\",\".framer-VPlDU .framer-6mjju, .framer-VPlDU .framer-3ufs3h, .framer-VPlDU .framer-181db6k, .framer-VPlDU .framer-i3nidz, .framer-VPlDU .framer-12gt10v { align-content: flex-start; align-items: flex-start; background-color: var(--token-4ff6545d-df4f-4531-92ad-d0cb2d20a869, #111b22); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1100px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-VPlDU .framer-1tgennw, .framer-VPlDU .framer-8f4id6 { aspect-ratio: 1.4817012858555885 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 742px); position: relative; width: 100%; }\",\".framer-VPlDU .framer-1i8sxir { aspect-ratio: 1.5193370165745856 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 724px); overflow: visible; position: relative; width: 100%; }\",\".framer-VPlDU .framer-1b12foy { aspect-ratio: 1.3317191283292977 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 826px); position: relative; width: 100%; z-index: -1; }\",\".framer-VPlDU .framer-155c7xk { aspect-ratio: 1.7142857142857142 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 642px); overflow: visible; position: relative; width: 100%; }\",\".framer-VPlDU .framer-hi6lzq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 160px 0px 160px 0px; position: relative; width: 100%; }\",\".framer-VPlDU .framer-njuk9n { -webkit-filter: blur(24px); aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(24px); flex: none; height: var(--framer-aspect-ratio-supported, 1376px); left: 44px; position: absolute; right: 44px; top: 54%; transform: translateY(-50%); z-index: 0; }\",\".framer-VPlDU .framer-zsyori { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-VPlDU .framer-194dgd3, .framer-VPlDU .framer-p6hfk3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-VPlDU .framer-1fyuusb-container, .framer-VPlDU .framer-139xzh1-container, .framer-VPlDU .framer-1l609kw-container, .framer-VPlDU .framer-914d5p-container, .framer-VPlDU .framer-1ejq5cb-container, .framer-VPlDU .framer-19xufsm-container { flex: none; height: 224px; position: relative; width: 100%; }\",\".framer-VPlDU .framer-3ha13q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 200px; height: 100vh; justify-content: center; overflow: visible; padding: 120px 192px 120px 96px; position: relative; width: 100%; z-index: 1; }\",\".framer-VPlDU .framer-1onhvms { -webkit-filter: drop-shadow(0px 64px 85px rgba(255, 92, 122, 0.24)); aspect-ratio: 1 / 1; filter: drop-shadow(0px 64px 85px rgba(255, 92, 122, 0.24)); flex: none; height: var(--framer-aspect-ratio-supported, 680px); left: 46%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 680px; z-index: 0; }\",\".framer-VPlDU .framer-1ws4t8e { aspect-ratio: 0.71875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 128px); left: 49%; overflow: visible; position: absolute; top: 39%; transform: translate(-50%, -50%); width: 14%; }\",\".framer-VPlDU .framer-1uq6df3 { aspect-ratio: 0.8217821782178217 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 101px); left: 44%; overflow: visible; position: absolute; top: 9%; transform: translate(-50%, -50%); width: 12%; }\",\".framer-VPlDU .framer-lhgaq8 { aspect-ratio: 0.7064220183486238 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 109px); left: 11%; overflow: visible; position: absolute; top: 33%; transform: translate(-50%, -50%); width: 11%; }\",\".framer-VPlDU .framer-8ao4km { aspect-ratio: 0.6022727272727273 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 176px); left: 71%; overflow: visible; position: absolute; top: 52%; transform: translate(-50%, -50%); width: 16%; }\",\".framer-VPlDU .framer-8q8w6n { aspect-ratio: 0.7608695652173914 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 74px); left: 82%; overflow: visible; position: absolute; top: 33%; transform: translate(-50%, -50%); width: 8%; }\",\".framer-VPlDU .framer-cqux2g { aspect-ratio: 0.6533333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 75px); left: 22%; overflow: visible; position: absolute; top: 18%; transform: translate(-50%, -50%); width: 7%; }\",\".framer-VPlDU .framer-yidjaj, .framer-VPlDU .framer-11f3bmr, .framer-VPlDU .framer-14aga21 { 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; mix-blend-mode: difference; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-VPlDU .framer-1939koz, .framer-VPlDU .framer-hic8n5, .framer-VPlDU .framer-4pvdlb, .framer-VPlDU .framer-qb4r0v, .framer-VPlDU .framer-jc9bdb, .framer-VPlDU .framer-1m58nlw, .framer-VPlDU .framer-tyw6mg, .framer-VPlDU .framer-evr2rv, .framer-VPlDU .framer-1tn68as, .framer-VPlDU .framer-1lk05fm, .framer-VPlDU .framer-1sjidqu, .framer-VPlDU .framer-1rd3cne, .framer-VPlDU .framer-1cvsebl, .framer-VPlDU .framer-1q581qf, .framer-VPlDU .framer-10h5xm4, .framer-VPlDU .framer-1bwppny, .framer-VPlDU .framer-ndw80g, .framer-VPlDU .framer-1tpo62u { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-VPlDU .framer-1jwy6s0, .framer-VPlDU .framer-dxni9r { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; mix-blend-mode: difference; overflow: visible; padding: 4px 0px 0px 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-VPlDU .framer-ys9559 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 200px; height: 664px; justify-content: center; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-VPlDU .framer-y7819s { -webkit-filter: drop-shadow(0px 64px 85px rgba(255, 92, 122, 0.24)); aspect-ratio: 1 / 1; filter: drop-shadow(0px 64px 85px rgba(255, 92, 122, 0.24)); flex: none; height: var(--framer-aspect-ratio-supported, 584px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 584px; z-index: 0; }\",\".framer-VPlDU .framer-33jv81, .framer-VPlDU .framer-129oe0h { aspect-ratio: 0.71875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 278px); left: 49%; overflow: visible; position: absolute; top: 39%; transform: translate(-50%, -50%); width: 14%; }\",\".framer-VPlDU .framer-14vyptx, .framer-VPlDU .framer-u0m1s2 { aspect-ratio: 0.8217821782178217 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 243px); left: 44%; overflow: visible; position: absolute; top: 9%; transform: translate(-50%, -50%); width: 12%; }\",\".framer-VPlDU .framer-1j207a, .framer-VPlDU .framer-16x5b28 { aspect-ratio: 0.7064220183486238 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 283px); left: 11%; overflow: visible; position: absolute; top: 33%; transform: translate(-50%, -50%); width: 11%; }\",\".framer-VPlDU .framer-falpbz, .framer-VPlDU .framer-74ew6n { aspect-ratio: 0.6022727272727273 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 332px); left: 71%; overflow: visible; position: absolute; top: 52%; transform: translate(-50%, -50%); width: 16%; }\",\".framer-VPlDU .framer-xh2ovp, .framer-VPlDU .framer-1y27nip { aspect-ratio: 0.7608695652173914 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 263px); left: 82%; overflow: visible; position: absolute; top: 33%; transform: translate(-50%, -50%); width: 8%; }\",\".framer-VPlDU .framer-1b4mpy7, .framer-VPlDU .framer-uch1wq { aspect-ratio: 0.6533333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 306px); left: 22%; overflow: visible; position: absolute; top: 18%; transform: translate(-50%, -50%); width: 7%; }\",\".framer-VPlDU .framer-cuobmj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 200px; height: 520px; justify-content: center; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-VPlDU .framer-1h8nl5m { -webkit-filter: drop-shadow(0px 64px 85px rgba(255, 92, 122, 0.24)); filter: drop-shadow(0px 64px 85px rgba(255, 92, 122, 0.24)); flex: none; height: 280px; left: 36px; position: absolute; right: 36px; top: calc(49.84939759036146% - 280px / 2); z-index: 0; }\",\".framer-VPlDU .framer-2v84bq { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; mix-blend-mode: difference; overflow: visible; padding: 5px 0px 0px 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-VPlDU .framer-lqzelo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 256px 0px 320px 0px; position: relative; width: 100%; }\",\".framer-VPlDU .framer-1jmhpm-container { flex: none; height: 504px; position: relative; width: 352px; }\",\".framer-VPlDU .framer-w5ad4n-container, .framer-VPlDU .framer-1r7fcgy-container, .framer-VPlDU .framer-1cy13ru-container, .framer-VPlDU .framer-mz9wi2-container, .framer-VPlDU .framer-pvsjxt-container, .framer-VPlDU .framer-5bawik-container, .framer-VPlDU .framer-14tmuvw-container, .framer-VPlDU .framer-151my7a-container, .framer-VPlDU .framer-rn2y8u-container { height: 680px; position: relative; width: 352px; }\",\".framer-VPlDU .framer-degomz-container { flex: none; height: 600px; position: relative; width: 400px; }\",\".framer-VPlDU .framer-1onc3zy-container, .framer-VPlDU .framer-qfas5q-container, .framer-VPlDU .framer-1c0cuz8-container, .framer-VPlDU .framer-1sdmvv8-container, .framer-VPlDU .framer-1eymcxa-container, .framer-VPlDU .framer-1vtja9l-container, .framer-VPlDU .framer-g5luxo-container, .framer-VPlDU .framer-m80ij1-container, .framer-VPlDU .framer-40dwc-container { height: 600px; position: relative; width: 400px; }\",\".framer-VPlDU .framer-c9icgz { 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; left: 50%; mix-blend-mode: exclusion; overflow: visible; padding: 0px; position: absolute; top: 160px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-VPlDU .framer-gf8rg1 { flex: 1 0 0px; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-VPlDU .framer-c9iz9j { align-content: center; align-items: center; border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 800px; justify-content: center; overflow: visible; padding: 0px 240px 0px 144px; position: relative; width: 100%; z-index: 1; }\",\".framer-VPlDU .framer-te2u1x-container { flex: none; height: 320px; position: relative; width: 800px; }\",\".framer-VPlDU .framer-1mefwag { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; min-height: 97px; overflow: visible; padding: 0px; position: absolute; text-decoration: none; top: 50%; transform: translate(-50%, -50%); width: 600px; }\",\".framer-VPlDU .framer-13bz16d { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --variable-reference-uXjklHUvL-e0DlBM2HN: var(--5zh2rd); flex: none; height: auto; left: 50%; position: absolute; top: 49%; transform: translate(-50%, -50%); white-space: pre; width: auto; z-index: 3; }\",\".framer-VPlDU .framer-tlqq98 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 320px 0px 32px 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-VPlDU .framer-1wkgzc4-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-VPlDU .framer-etul8r { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: flex-start; left: 0px; mix-blend-mode: difference; overflow: hidden; padding: 0px; position: fixed; top: 0px; width: 96px; z-index: 1; }\",\".framer-VPlDU .framer-14wouds-container { flex: none; height: 100vh; left: 0px; position: absolute; top: 0px; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-VPlDU.framer-72rtr7, .framer-VPlDU .framer-1h19cfb, .framer-VPlDU .framer-16h74jc, .framer-VPlDU .framer-12u0esd, .framer-VPlDU .framer-y2jce6, .framer-VPlDU .framer-1onh7ls, .framer-VPlDU .framer-i22l0, .framer-VPlDU .framer-ipo43d, .framer-VPlDU .framer-13mb2vh, .framer-VPlDU .framer-ob5nmr, .framer-VPlDU .framer-196l8ri, .framer-VPlDU .framer-e5d8t2, .framer-VPlDU .framer-16wyx6k, .framer-VPlDU .framer-t0pdnk, .framer-VPlDU .framer-154vzla, .framer-VPlDU .framer-2ns1p2, .framer-VPlDU .framer-mk7nkh, .framer-VPlDU .framer-18t29wq, .framer-VPlDU .framer-nf33ew, .framer-VPlDU .framer-x9js3y, .framer-VPlDU .framer-1wp18xq, .framer-VPlDU .framer-awrgw7, .framer-VPlDU .framer-1fm8tjl, .framer-VPlDU .framer-1t764oe, .framer-VPlDU .framer-j7s2ad, .framer-VPlDU .framer-1klz13e, .framer-VPlDU .framer-1ppn9ye, .framer-VPlDU .framer-ovqb1a, .framer-VPlDU .framer-1ydwkui, .framer-VPlDU .framer-6mjju, .framer-VPlDU .framer-3ufs3h, .framer-VPlDU .framer-181db6k, .framer-VPlDU .framer-i3nidz, .framer-VPlDU .framer-12gt10v, .framer-VPlDU .framer-hi6lzq, .framer-VPlDU .framer-zsyori, .framer-VPlDU .framer-194dgd3, .framer-VPlDU .framer-p6hfk3, .framer-VPlDU .framer-3ha13q, .framer-VPlDU .framer-yidjaj, .framer-VPlDU .framer-1jwy6s0, .framer-VPlDU .framer-ys9559, .framer-VPlDU .framer-11f3bmr, .framer-VPlDU .framer-dxni9r, .framer-VPlDU .framer-cuobmj, .framer-VPlDU .framer-14aga21, .framer-VPlDU .framer-2v84bq, .framer-VPlDU .framer-lqzelo, .framer-VPlDU .framer-c9icgz, .framer-VPlDU .framer-c9iz9j, .framer-VPlDU .framer-1mefwag, .framer-VPlDU .framer-tlqq98, .framer-VPlDU .framer-etul8r { gap: 0px; } .framer-VPlDU.framer-72rtr7 > *, .framer-VPlDU .framer-1h19cfb > *, .framer-VPlDU .framer-e5d8t2 > *, .framer-VPlDU .framer-154vzla > *, .framer-VPlDU .framer-awrgw7 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-VPlDU.framer-72rtr7 > :first-child, .framer-VPlDU .framer-1h19cfb > :first-child, .framer-VPlDU .framer-ipo43d > :first-child, .framer-VPlDU .framer-13mb2vh > :first-child, .framer-VPlDU .framer-e5d8t2 > :first-child, .framer-VPlDU .framer-t0pdnk > :first-child, .framer-VPlDU .framer-154vzla > :first-child, .framer-VPlDU .framer-nf33ew > :first-child, .framer-VPlDU .framer-awrgw7 > :first-child, .framer-VPlDU .framer-zsyori > :first-child, .framer-VPlDU .framer-3ha13q > :first-child, .framer-VPlDU .framer-ys9559 > :first-child, .framer-VPlDU .framer-cuobmj > :first-child, .framer-VPlDU .framer-c9icgz > :first-child, .framer-VPlDU .framer-1mefwag > :first-child { margin-left: 0px; } .framer-VPlDU.framer-72rtr7 > :last-child, .framer-VPlDU .framer-1h19cfb > :last-child, .framer-VPlDU .framer-ipo43d > :last-child, .framer-VPlDU .framer-13mb2vh > :last-child, .framer-VPlDU .framer-e5d8t2 > :last-child, .framer-VPlDU .framer-t0pdnk > :last-child, .framer-VPlDU .framer-154vzla > :last-child, .framer-VPlDU .framer-nf33ew > :last-child, .framer-VPlDU .framer-awrgw7 > :last-child, .framer-VPlDU .framer-zsyori > :last-child, .framer-VPlDU .framer-3ha13q > :last-child, .framer-VPlDU .framer-ys9559 > :last-child, .framer-VPlDU .framer-cuobmj > :last-child, .framer-VPlDU .framer-c9icgz > :last-child, .framer-VPlDU .framer-1mefwag > :last-child { margin-right: 0px; } .framer-VPlDU .framer-16h74jc > *, .framer-VPlDU .framer-i22l0 > *, .framer-VPlDU .framer-mk7nkh > *, .framer-VPlDU .framer-x9js3y > *, .framer-VPlDU .framer-yidjaj > *, .framer-VPlDU .framer-1jwy6s0 > *, .framer-VPlDU .framer-11f3bmr > *, .framer-VPlDU .framer-dxni9r > *, .framer-VPlDU .framer-14aga21 > *, .framer-VPlDU .framer-2v84bq > *, .framer-VPlDU .framer-lqzelo > *, .framer-VPlDU .framer-c9iz9j > *, .framer-VPlDU .framer-tlqq98 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-VPlDU .framer-16h74jc > :first-child, .framer-VPlDU .framer-12u0esd > :first-child, .framer-VPlDU .framer-y2jce6 > :first-child, .framer-VPlDU .framer-1onh7ls > :first-child, .framer-VPlDU .framer-i22l0 > :first-child, .framer-VPlDU .framer-ob5nmr > :first-child, .framer-VPlDU .framer-196l8ri > :first-child, .framer-VPlDU .framer-16wyx6k > :first-child, .framer-VPlDU .framer-2ns1p2 > :first-child, .framer-VPlDU .framer-mk7nkh > :first-child, .framer-VPlDU .framer-18t29wq > :first-child, .framer-VPlDU .framer-x9js3y > :first-child, .framer-VPlDU .framer-1wp18xq > :first-child, .framer-VPlDU .framer-1fm8tjl > :first-child, .framer-VPlDU .framer-1t764oe > :first-child, .framer-VPlDU .framer-j7s2ad > :first-child, .framer-VPlDU .framer-1klz13e > :first-child, .framer-VPlDU .framer-1ppn9ye > :first-child, .framer-VPlDU .framer-ovqb1a > :first-child, .framer-VPlDU .framer-1ydwkui > :first-child, .framer-VPlDU .framer-6mjju > :first-child, .framer-VPlDU .framer-3ufs3h > :first-child, .framer-VPlDU .framer-181db6k > :first-child, .framer-VPlDU .framer-i3nidz > :first-child, .framer-VPlDU .framer-12gt10v > :first-child, .framer-VPlDU .framer-hi6lzq > :first-child, .framer-VPlDU .framer-194dgd3 > :first-child, .framer-VPlDU .framer-p6hfk3 > :first-child, .framer-VPlDU .framer-yidjaj > :first-child, .framer-VPlDU .framer-1jwy6s0 > :first-child, .framer-VPlDU .framer-11f3bmr > :first-child, .framer-VPlDU .framer-dxni9r > :first-child, .framer-VPlDU .framer-14aga21 > :first-child, .framer-VPlDU .framer-2v84bq > :first-child, .framer-VPlDU .framer-lqzelo > :first-child, .framer-VPlDU .framer-c9iz9j > :first-child, .framer-VPlDU .framer-tlqq98 > :first-child, .framer-VPlDU .framer-etul8r > :first-child { margin-top: 0px; } .framer-VPlDU .framer-16h74jc > :last-child, .framer-VPlDU .framer-12u0esd > :last-child, .framer-VPlDU .framer-y2jce6 > :last-child, .framer-VPlDU .framer-1onh7ls > :last-child, .framer-VPlDU .framer-i22l0 > :last-child, .framer-VPlDU .framer-ob5nmr > :last-child, .framer-VPlDU .framer-196l8ri > :last-child, .framer-VPlDU .framer-16wyx6k > :last-child, .framer-VPlDU .framer-2ns1p2 > :last-child, .framer-VPlDU .framer-mk7nkh > :last-child, .framer-VPlDU .framer-18t29wq > :last-child, .framer-VPlDU .framer-x9js3y > :last-child, .framer-VPlDU .framer-1wp18xq > :last-child, .framer-VPlDU .framer-1fm8tjl > :last-child, .framer-VPlDU .framer-1t764oe > :last-child, .framer-VPlDU .framer-j7s2ad > :last-child, .framer-VPlDU .framer-1klz13e > :last-child, .framer-VPlDU .framer-1ppn9ye > :last-child, .framer-VPlDU .framer-ovqb1a > :last-child, .framer-VPlDU .framer-1ydwkui > :last-child, .framer-VPlDU .framer-6mjju > :last-child, .framer-VPlDU .framer-3ufs3h > :last-child, .framer-VPlDU .framer-181db6k > :last-child, .framer-VPlDU .framer-i3nidz > :last-child, .framer-VPlDU .framer-12gt10v > :last-child, .framer-VPlDU .framer-hi6lzq > :last-child, .framer-VPlDU .framer-194dgd3 > :last-child, .framer-VPlDU .framer-p6hfk3 > :last-child, .framer-VPlDU .framer-yidjaj > :last-child, .framer-VPlDU .framer-1jwy6s0 > :last-child, .framer-VPlDU .framer-11f3bmr > :last-child, .framer-VPlDU .framer-dxni9r > :last-child, .framer-VPlDU .framer-14aga21 > :last-child, .framer-VPlDU .framer-2v84bq > :last-child, .framer-VPlDU .framer-lqzelo > :last-child, .framer-VPlDU .framer-c9iz9j > :last-child, .framer-VPlDU .framer-tlqq98 > :last-child, .framer-VPlDU .framer-etul8r > :last-child { margin-bottom: 0px; } .framer-VPlDU .framer-12u0esd > *, .framer-VPlDU .framer-ob5nmr > *, .framer-VPlDU .framer-etul8r > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-VPlDU .framer-y2jce6 > *, .framer-VPlDU .framer-j7s2ad > *, .framer-VPlDU .framer-1klz13e > *, .framer-VPlDU .framer-1ppn9ye > *, .framer-VPlDU .framer-ovqb1a > *, .framer-VPlDU .framer-1ydwkui > *, .framer-VPlDU .framer-6mjju > *, .framer-VPlDU .framer-3ufs3h > *, .framer-VPlDU .framer-181db6k > *, .framer-VPlDU .framer-i3nidz > *, .framer-VPlDU .framer-12gt10v > *, .framer-VPlDU .framer-194dgd3 > *, .framer-VPlDU .framer-p6hfk3 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-VPlDU .framer-1onh7ls > *, .framer-VPlDU .framer-2ns1p2 > *, .framer-VPlDU .framer-18t29wq > *, .framer-VPlDU .framer-1wp18xq > *, .framer-VPlDU .framer-1fm8tjl > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-VPlDU .framer-ipo43d > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-VPlDU .framer-13mb2vh > * { margin: 0px; margin-left: calc(28px / 2); margin-right: calc(28px / 2); } .framer-VPlDU .framer-196l8ri > *, .framer-VPlDU .framer-1t764oe > *, .framer-VPlDU .framer-hi6lzq > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-VPlDU .framer-16wyx6k > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-VPlDU .framer-t0pdnk > *, .framer-VPlDU .framer-nf33ew > * { margin: 0px; margin-left: calc(96px / 2); margin-right: calc(96px / 2); } .framer-VPlDU .framer-zsyori > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-VPlDU .framer-3ha13q > *, .framer-VPlDU .framer-ys9559 > *, .framer-VPlDU .framer-cuobmj > * { margin: 0px; margin-left: calc(200px / 2); margin-right: calc(200px / 2); } .framer-VPlDU .framer-c9icgz > *, .framer-VPlDU .framer-1mefwag > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-VPlDU.framer-72rtr7 { padding: 0px; width: 810px; } .framer-VPlDU .framer-1h19cfb { padding: 80px 24px 24px 24px; } .framer-VPlDU .framer-12u0esd { height: min-content; justify-content: flex-start; order: 0; padding: 0px 0px 64px 0px; } .framer-VPlDU .framer-y2jce6 { flex: none; height: 896px; justify-content: flex-start; max-height: 896px; min-height: 896px; } .framer-VPlDU .framer-1onh7ls { max-width: 100%; padding: 0px 64px 0px 64px; } .framer-VPlDU .framer-13mb2vh { gap: 16px; width: 300px; } .framer-VPlDU .framer-1w9s9ud-container { width: 59px; } .framer-VPlDU .framer-132yl4f { bottom: -439px; height: var(--framer-aspect-ratio-supported, 1000px); right: -476px; top: unset; width: 1000px; } .framer-VPlDU .framer-ddrlrs { height: var(--framer-aspect-ratio-supported, 1000px); left: 0px; top: 0px; width: 1000px; } .framer-VPlDU .framer-160d2em-container { bottom: -8px; height: var(--framer-aspect-ratio-supported, 560px); right: -8px; top: unset; width: 577px; } .framer-VPlDU .framer-196l8ri { order: 1; padding: 160px 0px 96px 0px; } .framer-VPlDU .framer-16wyx6k { gap: 24px; } .framer-VPlDU .framer-t0pdnk { flex-direction: column; gap: 24px; height: min-content; } .framer-VPlDU .framer-154vzla, .framer-VPlDU .framer-awrgw7 { flex: none; height: 224px; padding: 32px; width: 100%; } .framer-VPlDU .framer-1899o7l { bottom: -57px; height: 178px; right: -14px; top: unset; width: 285px; } .framer-VPlDU .framer-3bn5ms { bottom: -59px; height: 248px; right: -32px; top: unset; width: 321px; } .framer-VPlDU .framer-1p3pljx { bottom: 6px; height: 191px; right: -26px; top: unset; width: 308px; } .framer-VPlDU .framer-2ns1p2, .framer-VPlDU .framer-1fm8tjl { gap: 16px; justify-content: center; width: 436px; } .framer-VPlDU .framer-mk7nkh { align-content: flex-end; align-items: flex-end; height: 224px; padding: 32px; width: 100%; } .framer-VPlDU .framer-18t29wq { flex: 1 0 0px; gap: 16px; height: 1px; justify-content: center; width: 436px; } .framer-VPlDU .framer-121eh3r { bottom: -63px; height: var(--framer-aspect-ratio-supported, 241px); left: 18%; width: 250px; } .framer-VPlDU .framer-1ckf9tm { bottom: 194px; height: var(--framer-aspect-ratio-supported, 54px); left: 26%; } .framer-VPlDU .framer-nf33ew, .framer-VPlDU .framer-zsyori { flex-direction: column; gap: 24px; } .framer-VPlDU .framer-x9js3y { height: 224px; justify-content: flex-start; padding: 32px; width: 100%; } .framer-VPlDU .framer-1wp18xq { flex: 1 0 0px; gap: 16px; height: 1px; justify-content: center; order: 2; width: 436px; } .framer-VPlDU .framer-cb001n { height: 448px; left: calc(97.50656167979005% - 542px / 2); order: 0; top: -186px; width: 542px; } .framer-VPlDU .framer-1ptc1ti { height: var(--framer-aspect-ratio-supported, 244px); left: 85%; order: 1; top: -11px; width: 244px; } .framer-VPlDU .framer-148of5x { bottom: 6px; height: var(--framer-aspect-ratio-supported, 199px); left: -41px; top: unset; transform: unset; width: 186px; } .framer-VPlDU .framer-1fu0y5c { bottom: -74px; height: var(--framer-aspect-ratio-supported, 270px); left: -69px; top: unset; transform: unset; width: 344px; } .framer-VPlDU .framer-1t764oe { order: 2; padding: 96px 0px 96px 0px; } .framer-VPlDU .framer-8u0k3t-container { height: var(--framer-aspect-ratio-supported, 415px); } .framer-VPlDU .framer-hi6lzq { order: 3; } .framer-VPlDU .framer-194dgd3 { flex: none; gap: 24px; order: 1; width: 100%; } .framer-VPlDU .framer-1fyuusb-container { height: 176px; order: 2; } .framer-VPlDU .framer-139xzh1-container { height: 176px; order: 1; } .framer-VPlDU .framer-1l609kw-container { height: 176px; order: 0; } .framer-VPlDU .framer-p6hfk3 { flex: none; gap: 24px; order: 0; width: 100%; } .framer-VPlDU .framer-914d5p-container, .framer-VPlDU .framer-1ejq5cb-container, .framer-VPlDU .framer-19xufsm-container { height: 176px; } .framer-VPlDU .framer-ys9559 { order: 5; } .framer-VPlDU .framer-33jv81 { height: var(--framer-aspect-ratio-supported, 110px); } .framer-VPlDU .framer-14vyptx { height: var(--framer-aspect-ratio-supported, 87px); } .framer-VPlDU .framer-1j207a { height: var(--framer-aspect-ratio-supported, 94px); } .framer-VPlDU .framer-falpbz { height: var(--framer-aspect-ratio-supported, 151px); } .framer-VPlDU .framer-xh2ovp { height: var(--framer-aspect-ratio-supported, 63px); } .framer-VPlDU .framer-1b4mpy7 { height: var(--framer-aspect-ratio-supported, 64px); } .framer-VPlDU .framer-lqzelo { order: 7; padding: 216px 0px 320px 0px; } .framer-VPlDU .framer-c9iz9j { order: 8; padding: 0px 64px 0px 64px; } .framer-VPlDU .framer-te2u1x-container { width: 100%; } .framer-VPlDU .framer-tlqq98 { order: 9; padding: 200px 0px 32px 0px; } .framer-VPlDU .framer-etul8r { bottom: unset; height: min-content; min-height: 80px; mix-blend-mode: unset; overflow: visible; right: 0px; width: unset; } .framer-VPlDU .framer-14wouds-container { height: auto; right: 0px; top: 0px; width: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-VPlDU .framer-13mb2vh, .framer-VPlDU .framer-16wyx6k, .framer-VPlDU .framer-t0pdnk, .framer-VPlDU .framer-2ns1p2, .framer-VPlDU .framer-18t29wq, .framer-VPlDU .framer-nf33ew, .framer-VPlDU .framer-1wp18xq, .framer-VPlDU .framer-1fm8tjl, .framer-VPlDU .framer-zsyori, .framer-VPlDU .framer-194dgd3, .framer-VPlDU .framer-p6hfk3 { gap: 0px; } .framer-VPlDU .framer-13mb2vh > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-VPlDU .framer-13mb2vh > :first-child { margin-left: 0px; } .framer-VPlDU .framer-13mb2vh > :last-child { margin-right: 0px; } .framer-VPlDU .framer-16wyx6k > *, .framer-VPlDU .framer-t0pdnk > *, .framer-VPlDU .framer-nf33ew > *, .framer-VPlDU .framer-zsyori > *, .framer-VPlDU .framer-194dgd3 > *, .framer-VPlDU .framer-p6hfk3 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-VPlDU .framer-16wyx6k > :first-child, .framer-VPlDU .framer-t0pdnk > :first-child, .framer-VPlDU .framer-2ns1p2 > :first-child, .framer-VPlDU .framer-18t29wq > :first-child, .framer-VPlDU .framer-nf33ew > :first-child, .framer-VPlDU .framer-1wp18xq > :first-child, .framer-VPlDU .framer-1fm8tjl > :first-child, .framer-VPlDU .framer-zsyori > :first-child, .framer-VPlDU .framer-194dgd3 > :first-child, .framer-VPlDU .framer-p6hfk3 > :first-child { margin-top: 0px; } .framer-VPlDU .framer-16wyx6k > :last-child, .framer-VPlDU .framer-t0pdnk > :last-child, .framer-VPlDU .framer-2ns1p2 > :last-child, .framer-VPlDU .framer-18t29wq > :last-child, .framer-VPlDU .framer-nf33ew > :last-child, .framer-VPlDU .framer-1wp18xq > :last-child, .framer-VPlDU .framer-1fm8tjl > :last-child, .framer-VPlDU .framer-zsyori > :last-child, .framer-VPlDU .framer-194dgd3 > :last-child, .framer-VPlDU .framer-p6hfk3 > :last-child { margin-bottom: 0px; } .framer-VPlDU .framer-2ns1p2 > *, .framer-VPlDU .framer-18t29wq > *, .framer-VPlDU .framer-1wp18xq > *, .framer-VPlDU .framer-1fm8tjl > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\",\"@media (min-width: 1200px) and (max-width: 1399px) { .framer-VPlDU.framer-72rtr7 { width: 1200px; } .framer-VPlDU .framer-y2jce6 { max-height: 600px; } .framer-VPlDU .framer-1onh7ls { max-width: 68%; } .framer-VPlDU .framer-13mb2vh { gap: 19px; width: 350px; } .framer-VPlDU .framer-1w9s9ud-container { height: 56px; width: 74px; } .framer-VPlDU .framer-132yl4f { bottom: -461px; right: -658px; top: -8px; width: var(--framer-aspect-ratio-supported, 1069px); } .framer-VPlDU .framer-160d2em-container { bottom: -8px; right: -60px; top: 62px; width: var(--framer-aspect-ratio-supported, 562px); } .framer-VPlDU .framer-16wyx6k, .framer-VPlDU .framer-t0pdnk, .framer-VPlDU .framer-nf33ew { gap: 64px; } .framer-VPlDU .framer-2ns1p2, .framer-VPlDU .framer-1fm8tjl { width: 344px; } .framer-VPlDU .framer-mk7nkh, .framer-VPlDU .framer-x9js3y { height: 504px; width: 424px; } .framer-VPlDU .framer-148of5x { left: -79px; top: 53%; } .framer-VPlDU .framer-1fu0y5c { left: -111px; } .framer-VPlDU .framer-1t764oe { padding: 88px 0px 88px 0px; } .framer-VPlDU .framer-8u0k3t-container { height: var(--framer-aspect-ratio-supported, 581px); } .framer-VPlDU .framer-njuk9n { height: var(--framer-aspect-ratio-supported, 976px); } .framer-VPlDU .framer-1fyuusb-container, .framer-VPlDU .framer-139xzh1-container, .framer-VPlDU .framer-1l609kw-container, .framer-VPlDU .framer-914d5p-container, .framer-VPlDU .framer-1ejq5cb-container, .framer-VPlDU .framer-19xufsm-container { height: 184px; } .framer-VPlDU .framer-lqzelo { padding: 216px 0px 320px 0px; } .framer-VPlDU .framer-etul8r { right: 1104px; width: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-VPlDU .framer-13mb2vh, .framer-VPlDU .framer-16wyx6k, .framer-VPlDU .framer-t0pdnk, .framer-VPlDU .framer-nf33ew { gap: 0px; } .framer-VPlDU .framer-13mb2vh > * { margin: 0px; margin-left: calc(19px / 2); margin-right: calc(19px / 2); } .framer-VPlDU .framer-13mb2vh > :first-child, .framer-VPlDU .framer-t0pdnk > :first-child, .framer-VPlDU .framer-nf33ew > :first-child { margin-left: 0px; } .framer-VPlDU .framer-13mb2vh > :last-child, .framer-VPlDU .framer-t0pdnk > :last-child, .framer-VPlDU .framer-nf33ew > :last-child { margin-right: 0px; } .framer-VPlDU .framer-16wyx6k > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-VPlDU .framer-16wyx6k > :first-child { margin-top: 0px; } .framer-VPlDU .framer-16wyx6k > :last-child { margin-bottom: 0px; } .framer-VPlDU .framer-t0pdnk > *, .framer-VPlDU .framer-nf33ew > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } }}\",\"@media (min-width: 1400px) and (max-width: 1599px) { .framer-VPlDU.framer-72rtr7 { width: 1400px; } .framer-VPlDU .framer-y2jce6 { max-height: 640px; } .framer-VPlDU .framer-13mb2vh { gap: 24px; width: 434px; } .framer-VPlDU .framer-1w9s9ud-container { width: 89px; } .framer-VPlDU .framer-132yl4f { bottom: -461px; right: -588px; top: -8px; width: var(--framer-aspect-ratio-supported, 1109px); } .framer-VPlDU .framer-160d2em-container { bottom: -8px; right: -20px; top: 64px; width: var(--framer-aspect-ratio-supported, 601px); } .framer-VPlDU .framer-1899o7l { right: -13px; } .framer-VPlDU .framer-3bn5ms { right: -31px; } .framer-VPlDU .framer-1p3pljx { right: -25px; } .framer-VPlDU .framer-2ns1p2, .framer-VPlDU .framer-1fm8tjl { width: 416px; } .framer-VPlDU .framer-mk7nkh, .framer-VPlDU .framer-x9js3y { width: 496px; } .framer-VPlDU .framer-cb001n { left: calc(49.80468750000002% - 616px / 2); top: -245px; } .framer-VPlDU .framer-1ptc1ti { top: 24px; } .framer-VPlDU .framer-1t764oe { padding: 120px 0px 120px 0px; } .framer-VPlDU .framer-8u0k3t-container { height: var(--framer-aspect-ratio-supported, 690px); } .framer-VPlDU .framer-njuk9n { height: var(--framer-aspect-ratio-supported, 1176px); } .framer-VPlDU .framer-1fyuusb-container, .framer-VPlDU .framer-139xzh1-container, .framer-VPlDU .framer-1l609kw-container, .framer-VPlDU .framer-914d5p-container, .framer-VPlDU .framer-1ejq5cb-container, .framer-VPlDU .framer-19xufsm-container { height: 216px; } .framer-VPlDU .framer-lqzelo { padding: 232px 0px 320px 0px; } .framer-VPlDU .framer-14wouds-container { bottom: -17px; left: 50%; top: unset; transform: translateX(-50%); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-VPlDU .framer-13mb2vh { gap: 0px; } .framer-VPlDU .framer-13mb2vh > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-VPlDU .framer-13mb2vh > :first-child { margin-left: 0px; } .framer-VPlDU .framer-13mb2vh > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 809px) { .framer-VPlDU.framer-72rtr7 { padding: 0px; width: 400px; } .framer-VPlDU .framer-1h19cfb { padding: 80px 24px 24px 24px; } .framer-VPlDU .framer-12u0esd { height: min-content; justify-content: flex-start; padding: 0px 0px 64px 0px; } .framer-VPlDU .framer-y2jce6 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; gap: 24px; height: 624px; justify-content: flex-start; max-height: 100vh; min-height: 624px; padding: 22px 0px 24px 0px; } .framer-VPlDU .framer-1onh7ls { max-width: 100%; padding: 0px 24px 0px 24px; } .framer-VPlDU .framer-1u1se9c { width: 304px; } .framer-VPlDU .framer-ipo43d { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; } .framer-VPlDU .framer-13mb2vh { gap: 11px; width: 100%; } .framer-VPlDU .framer-1w9s9ud-container { width: 44px; } .framer-VPlDU .framer-b999me { flex: none; width: 100%; } .framer-VPlDU .framer-ob5nmr { padding: 4px 0px 0px 0px; } .framer-VPlDU .framer-132yl4f { bottom: -331px; height: var(--framer-aspect-ratio-supported, 600px); right: -330px; top: unset; width: 600px; } .framer-VPlDU .framer-ddrlrs { height: var(--framer-aspect-ratio-supported, 600px); left: 0px; top: 0px; width: 600px; } .framer-VPlDU .framer-160d2em-container { bottom: -8px; height: var(--framer-aspect-ratio-supported, 272px); right: -16px; top: unset; width: 280px; } .framer-VPlDU .framer-196l8ri { gap: 24px; padding: 160px 0px 0px 0px; } .framer-VPlDU .framer-16wyx6k { gap: 24px; } .framer-VPlDU .framer-t0pdnk { flex-direction: column; gap: 24px; height: min-content; } .framer-VPlDU .framer-154vzla { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 360px; padding: 24px; width: 100%; } .framer-VPlDU .framer-1899o7l { bottom: -41px; height: 165px; right: -7px; top: unset; width: 265px; } .framer-VPlDU .framer-3bn5ms { bottom: -43px; height: 230px; right: -24px; top: unset; width: 298px; } .framer-VPlDU .framer-1p3pljx { bottom: 17px; height: 178px; right: -18px; top: unset; width: 286px; } .framer-VPlDU .framer-2ns1p2 { flex: 1 0 0px; gap: 16px; width: 1px; } .framer-VPlDU .framer-mk7nkh { align-content: flex-end; align-items: flex-end; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: 360px; padding: 24px; width: 100%; } .framer-VPlDU .framer-18t29wq { flex: 1 0 0px; gap: 16px; height: 1px; justify-content: flex-end; } .framer-VPlDU .framer-121eh3r { bottom: 102px; height: var(--framer-aspect-ratio-supported, 219px); left: 36%; width: 227px; } .framer-VPlDU .framer-1ckf9tm { bottom: 322px; height: var(--framer-aspect-ratio-supported, 50px); left: 48%; width: 47px; } .framer-VPlDU .framer-nf33ew, .framer-VPlDU .framer-zsyori { flex-direction: column; gap: 24px; } .framer-VPlDU .framer-x9js3y { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: 360px; justify-content: flex-start; order: 1; padding: 24px; width: 100%; } .framer-VPlDU .framer-1wp18xq { flex: 1 0 0px; gap: 16px; height: 1px; order: 2; } .framer-VPlDU .framer-cb001n { height: 385px; left: calc(81.53409090909093% - 466px / 2); order: 0; top: -154px; width: 466px; } .framer-VPlDU .framer-1ptc1ti { height: var(--framer-aspect-ratio-supported, 211px); left: 70%; order: 1; top: -4px; width: 210px; } .framer-VPlDU .framer-awrgw7 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 360px; order: 0; padding: 24px; width: 100%; } .framer-VPlDU .framer-148of5x { bottom: -1px; height: var(--framer-aspect-ratio-supported, 190px); left: -43px; top: unset; transform: unset; width: 178px; } .framer-VPlDU .framer-1fu0y5c { bottom: -78px; height: var(--framer-aspect-ratio-supported, 259px); left: -70px; top: unset; transform: unset; width: 329px; } .framer-VPlDU .framer-1fm8tjl { flex: 1 0 0px; gap: 16px; justify-content: flex-start; width: 1px; } .framer-VPlDU .framer-1t764oe { gap: 32px; padding: 96px 0px 96px 0px; } .framer-VPlDU .framer-hi6lzq { padding: 120px 0px 120px 0px; } .framer-VPlDU .framer-194dgd3 { flex: none; gap: 24px; order: 1; width: 100%; } .framer-VPlDU .framer-1fyuusb-container { height: 232px; order: 2; } .framer-VPlDU .framer-139xzh1-container { height: 232px; order: 1; } .framer-VPlDU .framer-1l609kw-container { height: 232px; order: 0; } .framer-VPlDU .framer-p6hfk3 { flex: none; gap: 24px; order: 0; width: 100%; } .framer-VPlDU .framer-914d5p-container, .framer-VPlDU .framer-1ejq5cb-container, .framer-VPlDU .framer-19xufsm-container { height: 232px; } .framer-VPlDU .framer-129oe0h { height: var(--framer-aspect-ratio-supported, 52px); } .framer-VPlDU .framer-u0m1s2 { height: var(--framer-aspect-ratio-supported, 42px); } .framer-VPlDU .framer-16x5b28 { height: var(--framer-aspect-ratio-supported, 45px); } .framer-VPlDU .framer-74ew6n { height: var(--framer-aspect-ratio-supported, 72px); } .framer-VPlDU .framer-1y27nip { height: var(--framer-aspect-ratio-supported, 30px); } .framer-VPlDU .framer-uch1wq { height: var(--framer-aspect-ratio-supported, 31px); } .framer-VPlDU .framer-lqzelo { padding: 152px 0px 120px 0px; } .framer-VPlDU .framer-c9icgz { left: 0px; top: 120px; transform: unset; } .framer-VPlDU .framer-c9iz9j { padding: 0px; } .framer-VPlDU .framer-te2u1x-container { height: 328px; width: 100%; } .framer-VPlDU .framer-1mefwag { left: 0px; right: 0px; transform: translateY(-50%); width: unset; } .framer-VPlDU .framer-tlqq98 { padding: 200px 0px 32px 0px; } .framer-VPlDU .framer-etul8r { bottom: unset; height: min-content; min-height: 80px; mix-blend-mode: unset; overflow: visible; right: 0px; width: unset; } .framer-VPlDU .framer-14wouds-container { height: auto; right: 0px; top: 0px; width: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-VPlDU .framer-y2jce6, .framer-VPlDU .framer-ipo43d, .framer-VPlDU .framer-13mb2vh, .framer-VPlDU .framer-196l8ri, .framer-VPlDU .framer-16wyx6k, .framer-VPlDU .framer-t0pdnk, .framer-VPlDU .framer-2ns1p2, .framer-VPlDU .framer-18t29wq, .framer-VPlDU .framer-nf33ew, .framer-VPlDU .framer-1wp18xq, .framer-VPlDU .framer-1fm8tjl, .framer-VPlDU .framer-1t764oe, .framer-VPlDU .framer-zsyori, .framer-VPlDU .framer-194dgd3, .framer-VPlDU .framer-p6hfk3 { gap: 0px; } .framer-VPlDU .framer-y2jce6 > *, .framer-VPlDU .framer-196l8ri > *, .framer-VPlDU .framer-16wyx6k > *, .framer-VPlDU .framer-t0pdnk > *, .framer-VPlDU .framer-nf33ew > *, .framer-VPlDU .framer-zsyori > *, .framer-VPlDU .framer-194dgd3 > *, .framer-VPlDU .framer-p6hfk3 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-VPlDU .framer-y2jce6 > :first-child, .framer-VPlDU .framer-ipo43d > :first-child, .framer-VPlDU .framer-196l8ri > :first-child, .framer-VPlDU .framer-16wyx6k > :first-child, .framer-VPlDU .framer-t0pdnk > :first-child, .framer-VPlDU .framer-2ns1p2 > :first-child, .framer-VPlDU .framer-18t29wq > :first-child, .framer-VPlDU .framer-nf33ew > :first-child, .framer-VPlDU .framer-1wp18xq > :first-child, .framer-VPlDU .framer-1fm8tjl > :first-child, .framer-VPlDU .framer-1t764oe > :first-child, .framer-VPlDU .framer-zsyori > :first-child, .framer-VPlDU .framer-194dgd3 > :first-child, .framer-VPlDU .framer-p6hfk3 > :first-child { margin-top: 0px; } .framer-VPlDU .framer-y2jce6 > :last-child, .framer-VPlDU .framer-ipo43d > :last-child, .framer-VPlDU .framer-196l8ri > :last-child, .framer-VPlDU .framer-16wyx6k > :last-child, .framer-VPlDU .framer-t0pdnk > :last-child, .framer-VPlDU .framer-2ns1p2 > :last-child, .framer-VPlDU .framer-18t29wq > :last-child, .framer-VPlDU .framer-nf33ew > :last-child, .framer-VPlDU .framer-1wp18xq > :last-child, .framer-VPlDU .framer-1fm8tjl > :last-child, .framer-VPlDU .framer-1t764oe > :last-child, .framer-VPlDU .framer-zsyori > :last-child, .framer-VPlDU .framer-194dgd3 > :last-child, .framer-VPlDU .framer-p6hfk3 > :last-child { margin-bottom: 0px; } .framer-VPlDU .framer-ipo43d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-VPlDU .framer-13mb2vh > * { margin: 0px; margin-left: calc(11px / 2); margin-right: calc(11px / 2); } .framer-VPlDU .framer-13mb2vh > :first-child { margin-left: 0px; } .framer-VPlDU .framer-13mb2vh > :last-child { margin-right: 0px; } .framer-VPlDU .framer-2ns1p2 > *, .framer-VPlDU .framer-18t29wq > *, .framer-VPlDU .framer-1wp18xq > *, .framer-VPlDU .framer-1fm8tjl > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-VPlDU .framer-1t764oe > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8389\n * @framerIntrinsicWidth 1600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"HrWIj54ET\":{\"layout\":[\"fixed\",\"auto\"]},\"oK0zgNzfE\":{\"layout\":[\"fixed\",\"auto\"]},\"XQYILS2io\":{\"layout\":[\"fixed\",\"auto\"]},\"lGuNR74ud\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate false\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-VPlDU\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8389,width:1600};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{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\"}]},...MotionTextFonts,...ButtonFonts,...ImageKarsten_KrehFonts,...SlideshowFonts,...CardProcessStepsFonts,...TestimonialCardFonts,...Slideshow1Fonts,...LargeButtonBottomFonts,...CopyrightSectionFonts,...MainNavigationFonts,...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\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"8389\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAcceptsLayoutTemplate\":\"false\",\"framerIntrinsicWidth\":\"1600\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HrWIj54ET\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oK0zgNzfE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XQYILS2io\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lGuNR74ud\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "sync", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "EphwX_vBP_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v0", "v1", "__FramerMetadata__", "valuesByLocaleId", "EphwX_vBP_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "ButtonFonts", "getFonts", "LcQgrRBO_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "buttonLink", "height", "id", "image", "name1", "quote", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "age5xjdgl", "I87LQdQWg", "CHj5EdUId", "y3ndbJ11E", "iHyDoqVe8", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "getLocalizedValue", "css", "FramerEphwX_vBP", "withCSS", "EphwX_vBP_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "gGU9ftJvQ_0_exports", "__export", "__FramerMetadata__", "v0", "v0", "__FramerMetadata__", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "valuesByLocaleId", "gGU9ftJvQ_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "image2", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ZGiGfcFwx", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "_getLocalizedValue", "LayoutGroup", "motion", "cx", "Image2", "css", "FramergGU9ftJvQ", "withCSS", "gGU9ftJvQ_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "toResponsiveImage", "value", "transformTemplate", "_", "t", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "jh2aPxJEp", "PRd1ND1xd", "dG9ZdarBE", "ZfpPug1NO", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "Image2", "RichText2", "x", "css", "FramerqP4csdANt", "withCSS", "qP4csdANt_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "MotionTextFonts", "getFonts", "MotionText", "ButtonFonts", "LcQgrRBO_default", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "MotionDivWithFX", "ImageKarsten_KrehFonts", "gGU9ftJvQ_default", "ContainerWithFX", "Container", "ImageWithFX", "Image2", "SlideshowFonts", "Slideshow", "CardProcessStepsFonts", "qP4csdANt_default", "RichTextWithFX", "RichText2", "TestimonialCardFonts", "EphwX_vBP_default", "Slideshow1Fonts", "LargeButtonBottomFonts", "e0DlBM2HN_default", "CopyrightSectionFonts", "USTIX2E01_default", "MainNavigationFonts", "ZsUhle2dy_default", "ContainerWithOptimizedAppearEffect", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "animation3", "animation4", "animation5", "animation6", "animation7", "animation8", "animation9", "transformTemplate1", "_", "t", "animation10", "animation11", "animation12", "animation13", "transformTemplate2", "transition3", "animation14", "animation15", "animation16", "addImageAlt", "image", "alt", "animation17", "animation18", "animation19", "animation20", "animation21", "animation22", "animation23", "animation24", "animation25", "animation26", "transformTemplate3", "animation27", "animation28", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "uXjklHUvLe0DlBM2HN", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "usePreloadLocalizedValues", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "getLocalizedValue", "x", "ComponentViewportProvider", "PropertyOverrides2", "ResolveLinks", "resolvedLinks", "getLoadingLazyAtYPosition", "Link", "resolvedLinks1", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
