{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js", "ssg:https://framerusercontent.com/modules/vfHIte0BaiGWVAYP9Ny2/DZWssesnu2T17k6jtwUz/gg7iOWzGw.js", "ssg:https://framerusercontent.com/modules/Q31HmM2itebYLfApFCfj/P9Ks21HQpOlHjddqiVjg/GI_1ocJJ9.js", "ssg:https://framerusercontent.com/modules/uQVM995q86oz2zRJ2HAA/HYjdEO1LE0vAPiFLjU1U/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "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,useTransform,LayoutGroup,wrap,sync}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});/* 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(()=>{sync.read(()=>{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;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)measure();},[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)){measure();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 isVisible=usePageVisibility();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),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\",{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\",{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);});},[]);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},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\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (3fa6aa4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/jR9Rq5zuPq869P886zU3/CYeajFrBOX1Lx4NG3sr6/TFSvIsBKG.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/iRKyCMPWkvmURnTDyvt3/4B5McHeMqIiA0xMTNxhT/uQGw7X51b.js\";const cycleOrder=[\"VxgP0fjIC\",\"NJk3DJeKF\"];const serializationHash=\"framer-iKcfJ\";const variantClassNames={NJk3DJeKF:\"framer-v-175qyp3\",VxgP0fjIC:\"framer-v-1bl3jjd\"};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 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(React.Fragment);const humanReadableVariantMap={Desktop:\"VxgP0fjIC\",Mobile:\"NJk3DJeKF\"};const getProps=({height,id,image,logo,name1,review,role,width,...props})=>{return{...props,ke6OfpWgM:review??props.ke6OfpWgM??\"\u201CThe quality is sensationally high; no money on earth can make up for what VoiceLine has achieved for us!\u201D\",KwgsuQf3t:image??props.KwgsuQf3t??{src:\"https://framerusercontent.com/images/ACxd93Hpnkf0IhQBz5FVchDni0.jpg\",srcSet:\"https://framerusercontent.com/images/ACxd93Hpnkf0IhQBz5FVchDni0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ACxd93Hpnkf0IhQBz5FVchDni0.jpg 800w\"},PyCNd0BKx:role??props.PyCNd0BKx??\"Head of field sales\",variant:humanReadableVariantMap[props.variant]??props.variant??\"VxgP0fjIC\",vgKQQvS3x:logo??props.vgKQQvS3x,ZxDvDHCGG:name1??props.ZxDvDHCGG??\"Christian Arndt\"};};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,ke6OfpWgM,ZxDvDHCGG,PyCNd0BKx,KwgsuQf3t,vgKQQvS3x,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"VxgP0fjIC\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"NJk3DJeKF\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"NJk3DJeKF\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.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,\"aria-label\":\"Customer quote\",className:cx(serializationHash,...sharedStyleClassNames,\"framer-1bl3jjd\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"VxgP0fjIC\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(233, 236, 235)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"2px 2px 10px 0px rgba(0, 0, 0, 0.07000000029802322)\",...style},...addPropertyOverrides({NJk3DJeKF:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"175px\",...toResponsiveImage(KwgsuQf3t)},className:\"framer-1riwrdp\",\"data-framer-name\":\"Rectangle 438\",layoutDependency:layoutDependency,layoutId:\"sGlS9p9zY\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qyy5nb\",\"data-framer-name\":\"Frame 48317\",layoutDependency:layoutDependency,layoutId:\"MXtkfB_ue\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",children:\"\u201CThe quality is sensationally high; no money on earth can make up for what VoiceLine has achieved for us!\u201D\"})}),className:\"framer-73hzae\",\"data-framer-name\":\"\u201CThe quality is sensationally high; no money on earth can make up for what VoiceLine has achieved for us!\u201D\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Qlx_5rvog\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:ke6OfpWgM,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bw1jaz\",\"data-framer-name\":\"Frame 4747\",layoutDependency:layoutDependency,layoutId:\"VVr8YsI6J\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rrdgo4\",\"data-framer-name\":\"Frame 4744\",layoutDependency:layoutDependency,layoutId:\"IyAVo5bA3\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(KwgsuQf3t)},className:\"framer-1qpxt8k\",\"data-framer-name\":\"Rectangle 438\",layoutDependency:layoutDependency,layoutId:\"vm_zJODFv\",style:{borderBottomLeftRadius:500,borderBottomRightRadius:500,borderTopLeftRadius:500,borderTopRightRadius:500},...addPropertyOverrides({NJk3DJeKF:{background:{alt:\"\",fit:\"fill\",sizes:\"54px\",...toResponsiveImage(KwgsuQf3t)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u8hh4v\",\"data-framer-name\":\"Frame 4743\",layoutDependency:layoutDependency,layoutId:\"EOtqgLcG3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hyqfgm\",\"data-styles-preset\":\"uQGw7X51b\",children:\"Christian Arndt\"})}),className:\"framer-eo7ng5\",\"data-framer-name\":\"Christian Arndt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zYJ2N416W\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:ZxDvDHCGG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",children:\"Head of field sales\"})}),className:\"framer-18apozg\",\"data-framer-name\":\"Head of field sales\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jhG1zNssk\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:PyCNd0BKx,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"135px\",...toResponsiveImage(vgKQQvS3x),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1r68r80\",layoutDependency:layoutDependency,layoutId:\"Bsg3xv8N5\"})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iKcfJ.framer-w8l8bp, .framer-iKcfJ .framer-w8l8bp { display: block; }\",\".framer-iKcfJ.framer-1bl3jjd { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 0px; position: relative; width: 599px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iKcfJ .framer-1riwrdp { align-self: stretch; flex: none; height: auto; position: relative; width: 175px; }\",\".framer-iKcfJ .framer-1qyy5nb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 0px 16px 0px; position: relative; width: 1px; }\",\".framer-iKcfJ .framer-73hzae { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iKcfJ .framer-bw1jaz { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-iKcfJ .framer-1rrdgo4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-iKcfJ .framer-1qpxt8k { flex: none; height: 55px; position: relative; width: 54px; }\",\".framer-iKcfJ .framer-u8hh4v { 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: 0px; position: relative; width: min-content; }\",\".framer-iKcfJ .framer-eo7ng5, .framer-iKcfJ .framer-18apozg { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-iKcfJ .framer-1r68r80 { flex: none; height: 41px; position: relative; width: 135px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iKcfJ.framer-1bl3jjd, .framer-iKcfJ .framer-1qyy5nb, .framer-iKcfJ .framer-1rrdgo4, .framer-iKcfJ .framer-u8hh4v { gap: 0px; } .framer-iKcfJ.framer-1bl3jjd > *, .framer-iKcfJ .framer-1rrdgo4 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-iKcfJ.framer-1bl3jjd > :first-child, .framer-iKcfJ .framer-1rrdgo4 > :first-child { margin-left: 0px; } .framer-iKcfJ.framer-1bl3jjd > :last-child, .framer-iKcfJ .framer-1rrdgo4 > :last-child { margin-right: 0px; } .framer-iKcfJ .framer-1qyy5nb > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-iKcfJ .framer-1qyy5nb > :first-child, .framer-iKcfJ .framer-u8hh4v > :first-child { margin-top: 0px; } .framer-iKcfJ .framer-1qyy5nb > :last-child, .framer-iKcfJ .framer-u8hh4v > :last-child { margin-bottom: 0px; } .framer-iKcfJ .framer-u8hh4v > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-iKcfJ.framer-v-175qyp3.framer-1bl3jjd { padding: 0px 16px 0px 16px; width: 379px; }\",\".framer-iKcfJ.framer-v-175qyp3 .framer-bw1jaz { align-content: flex-start; align-items: flex-start; flex-direction: column; flex-wrap: wrap; gap: 26px; justify-content: flex-start; }\",\".framer-iKcfJ.framer-v-175qyp3 .framer-1rrdgo4 { gap: 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iKcfJ.framer-v-175qyp3 .framer-bw1jaz, .framer-iKcfJ.framer-v-175qyp3 .framer-1rrdgo4 { gap: 0px; } .framer-iKcfJ.framer-v-175qyp3 .framer-bw1jaz > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-iKcfJ.framer-v-175qyp3 .framer-bw1jaz > :first-child { margin-top: 0px; } .framer-iKcfJ.framer-v-175qyp3 .framer-bw1jaz > :last-child { margin-bottom: 0px; } .framer-iKcfJ.framer-v-175qyp3 .framer-1rrdgo4 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-iKcfJ.framer-v-175qyp3 .framer-1rrdgo4 > :first-child { margin-left: 0px; } .framer-iKcfJ.framer-v-175qyp3 .framer-1rrdgo4 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-iKcfJ[data-border=\"true\"]::after, .framer-iKcfJ [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 178\n * @framerIntrinsicWidth 599\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NJk3DJeKF\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ke6OfpWgM\":\"review\",\"ZxDvDHCGG\":\"name1\",\"PyCNd0BKx\":\"role\",\"KwgsuQf3t\":\"image\",\"vgKQQvS3x\":\"logo\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framergg7iOWzGw=withCSS(Component,css,\"framer-iKcfJ\");export default Framergg7iOWzGw;Framergg7iOWzGw.displayName=\"Testimonial Card\";Framergg7iOWzGw.defaultProps={height:178,width:599};addPropertyControls(Framergg7iOWzGw,{variant:{options:[\"VxgP0fjIC\",\"NJk3DJeKF\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},ke6OfpWgM:{defaultValue:\"\u201CThe quality is sensationally high; no money on earth can make up for what VoiceLine has achieved for us!\u201D\",displayTextArea:false,title:\"Review\",type:ControlType.String},ZxDvDHCGG:{defaultValue:\"Christian Arndt\",displayTextArea:false,title:\"Name\",type:ControlType.String},PyCNd0BKx:{defaultValue:\"Head of field sales\",displayTextArea:false,title:\"Role\",type:ControlType.String},KwgsuQf3t:{__defaultAssetReference:\"data:framer/asset-reference,ACxd93Hpnkf0IhQBz5FVchDni0.jpg?originalFilename=Rectangle+438.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},vgKQQvS3x:{title:\"Logo\",type:ControlType.ResponsiveImage}});addFonts(Framergg7iOWzGw,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framergg7iOWzGw\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NJk3DJeKF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"599\",\"framerVariables\":\"{\\\"ke6OfpWgM\\\":\\\"review\\\",\\\"ZxDvDHCGG\\\":\\\"name1\\\",\\\"PyCNd0BKx\\\":\\\"role\\\",\\\"KwgsuQf3t\\\":\\\"image\\\",\\\"vgKQQvS3x\\\":\\\"logo\\\"}\",\"framerIntrinsicHeight\":\"178\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ad88b1a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Aeonik Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Aeonik Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/pFY1xpfKGn7gough0jeyrbHxIo.ttf\"}]}];export const css=['.framer-7d5NQ .framer-styles-preset-h8coz:not(.rich-text-wrapper), .framer-7d5NQ .framer-styles-preset-h8coz.rich-text-wrapper p { --framer-font-family: \"Aeonik Regular\", \"Aeonik Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 26px; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #f3490e; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 1200px) { .framer-7d5NQ .framer-styles-preset-h8coz:not(.rich-text-wrapper), .framer-7d5NQ .framer-styles-preset-h8coz.rich-text-wrapper p { --framer-font-family: \"Aeonik Regular\", \"Aeonik Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 26px; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #f3490e; --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: 1080px) { .framer-7d5NQ .framer-styles-preset-h8coz:not(.rich-text-wrapper), .framer-7d5NQ .framer-styles-preset-h8coz.rich-text-wrapper p { --framer-font-family: \"Aeonik Regular\", \"Aeonik Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 26px; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #f3490e; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1079px) and (min-width: 861px) { .framer-7d5NQ .framer-styles-preset-h8coz:not(.rich-text-wrapper), .framer-7d5NQ .framer-styles-preset-h8coz.rich-text-wrapper p { --framer-font-family: \"Aeonik Regular\", \"Aeonik Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 26px; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #f3490e; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 860px) and (min-width: 0px) { .framer-7d5NQ .framer-styles-preset-h8coz:not(.rich-text-wrapper), .framer-7d5NQ .framer-styles-preset-h8coz.rich-text-wrapper p { --framer-font-family: \"Aeonik Regular\", \"Aeonik Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 15px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 26px; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #f3490e; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-7d5NQ\";\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 (3d4fa65)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Slideshow1 from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import Footer from\"#framer/local/canvasComponent/Chwg7yHFM/Chwg7yHFM.js\";import SocialProofTicker from\"#framer/local/canvasComponent/D31nIKIL6/D31nIKIL6.js\";import TestimonialCard from\"#framer/local/canvasComponent/gg7iOWzGw/gg7iOWzGw.js\";import ButtonCTAV3 from\"#framer/local/canvasComponent/L_fRY7lcR/L_fRY7lcR.js\";import PhoneNumber from\"#framer/local/canvasComponent/lCKtPEkWf/lCKtPEkWf.js\";import CTA from\"#framer/local/canvasComponent/OhbfYXeog/OhbfYXeog.js\";import HeroComponent from\"#framer/local/canvasComponent/ploBRATPa/ploBRATPa.js\";import NavbarV3 from\"#framer/local/canvasComponent/SIOxrBKxK/SIOxrBKxK.js\";import ButtonSlide from\"#framer/local/canvasComponent/u81cFBdtG/u81cFBdtG.js\";import Counter from\"#framer/local/codeFile/zSOmxgj/Counter.js\";import*as sharedStyle3 from\"#framer/local/css/FqarI9KTE/FqarI9KTE.js\";import*as sharedStyle2 from\"#framer/local/css/GI_1ocJJ9/GI_1ocJJ9.js\";import*as sharedStyle5 from\"#framer/local/css/Iap84eHlG/Iap84eHlG.js\";import*as sharedStyle6 from\"#framer/local/css/kIeVgHuHh/kIeVgHuHh.js\";import*as sharedStyle4 from\"#framer/local/css/TFSvIsBKG/TFSvIsBKG.js\";import*as sharedStyle from\"#framer/local/css/TFWjFVapy/TFWjFVapy.js\";import*as sharedStyle1 from\"#framer/local/css/U2bDF_qa1/U2bDF_qa1.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarV3Fonts=getFonts(NavbarV3);const PhoneNumberFonts=getFonts(PhoneNumber);const ContainerWithFX=withFX(Container);const ButtonSlideFonts=getFonts(ButtonSlide);const HeroComponentFonts=getFonts(HeroComponent);const SocialProofTickerFonts=getFonts(SocialProofTicker);const PhosphorFonts=getFonts(Phosphor);const ButtonCTAV3Fonts=getFonts(ButtonCTAV3);const SlideshowFonts=getFonts(Slideshow);const CounterFonts=getFonts(Counter);const TestimonialCardFonts=getFonts(TestimonialCard);const Slideshow1Fonts=getFonts(Slideshow1);const TickerFonts=getFonts(Ticker);const CTAFonts=getFonts(CTA);const FooterFonts=getFonts(Footer);const breakpoints={IiAa_hY9m:\"(min-width: 810px) and (max-width: 899px)\",KZYm3bfcS:\"(max-width: 809px)\",pYgsX8wis:\"(min-width: 1200px) and (max-width: 1439px)\",s3lK_0fWl:\"(min-width: 900px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Sstiw\";const variantClassNames={IiAa_hY9m:\"framer-v-e2x1a\",KZYm3bfcS:\"framer-v-outp7q\",pYgsX8wis:\"framer-v-px9dbh\",s3lK_0fWl:\"framer-v-o6179s\",WQLkyLRf1:\"framer-v-72rtr7\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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\":\"pYgsX8wis\",\"Desktop small 2\":\"s3lK_0fWl\",\"Tablet real\":\"IiAa_hY9m\",Desktop:\"WQLkyLRf1\",Phone:\"KZYm3bfcS\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"KZYm3bfcS\")return false;return true;};const ref1=React.useRef(null);const elementId=useRouteElementId(\"d_iWsDr09\");const router=useRouter();const elementId1=useRouteElementId(\"fYlrXHB7e\");const ref2=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"KZYm3bfcS\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"KZYm3bfcS\",\"s3lK_0fWl\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"s3lK_0fWl\")return true;return false;};const elementId2=useRouteElementId(\"NQNu9G4PZ\");const ref3=React.useRef(null);const isDisplayed4=()=>{if(!isBrowser())return true;if([\"IiAa_hY9m\",\"KZYm3bfcS\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if(!isBrowser())return true;if([\"IiAa_hY9m\",\"KZYm3bfcS\"].includes(baseVariant))return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k1h223\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KZYm3bfcS:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1620px) - 16px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:`max(min(${componentViewport?.width||\"100vw\"}, 1620px) - 16px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fnsjsl-container\",nodeId:\"nESH9ACCE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{variant:\"yhg83gqHK\"},KZYm3bfcS:{style:{width:\"100%\"},variant:\"yhg83gqHK\"},s3lK_0fWl:{variant:\"geKLcLiDn\"}},children:/*#__PURE__*/_jsx(NavbarV3,{height:\"100%\",id:\"nESH9ACCE\",layoutId:\"nESH9ACCE\",style:{height:\"100%\",width:\"100%\"},variant:\"XQOkNGU5t\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1w9lbyo-container hidden-outp7q\",nodeId:\"tSvMj8_y8\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PhoneNumber,{height:\"100%\",id:\"tSvMj8_y8\",layoutId:\"tSvMj8_y8\",q2G__8Z94:\"+49 89 20002183\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-kyar6d\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1440,pixelWidth:2560,positionX:\"center\",positionY:\"top\",sizes:`min(${componentViewport?.width||\"100vw\"}, 1600px)`,src:\"https://framerusercontent.com/images/xPnPdzxdYL64mEH9Twj5yug0HRw.webp\",srcSet:\"https://framerusercontent.com/images/xPnPdzxdYL64mEH9Twj5yug0HRw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/xPnPdzxdYL64mEH9Twj5yug0HRw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/xPnPdzxdYL64mEH9Twj5yug0HRw.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/xPnPdzxdYL64mEH9Twj5yug0HRw.webp 2560w\"},className:\"framer-1f4qshj\",\"data-framer-name\":\"Background image\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12t2wr2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cwespd\",\"data-framer-name\":\"Text + button\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-126nysl\",\"data-framer-name\":\"H1 + H2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ms0r14\",\"data-framer-name\":\"H1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-18zyw7r\",\"data-styles-preset\":\"TFWjFVapy\",children:\"Drive more revenue with the AI Assistant for field sales teams\"})}),className:\"framer-12wvfoc\",\"data-framer-name\":\"Radically easy field documentation. Clustered into actionable data. Finally.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3d9l76\",\"data-framer-name\":\"H2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1eou499\",\"data-styles-preset\":\"U2bDF_qa1\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get more selling time and better data, make the right decisions with market analytics, and coach your team to excellence with the VoiceLine AI Assistant Platform.\"})}),className:\"framer-ghfhzy\",\"data-framer-name\":\"VoiceLine is field sales intelligence made easy. Work with voice to capture any field interaction in seconds. Use AI to bring data driven decision-making to your sales team.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"o9i9gvaw9\"},implicitPathVariables:undefined},{href:{webPageId:\"o9i9gvaw9\"},implicitPathVariables:undefined},{href:{webPageId:\"o9i9gvaw9\"},implicitPathVariables:undefined},{href:{webPageId:\"o9i9gvaw9\"},implicitPathVariables:undefined},{href:{webPageId:\"o9i9gvaw9\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,children:/*#__PURE__*/_jsx(Container,{className:\"framer-191udfd-container\",nodeId:\"bjX0Nz4fN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{cQv2O8Mvt:resolvedLinks[1]},KZYm3bfcS:{cQv2O8Mvt:resolvedLinks[3]},pYgsX8wis:{cQv2O8Mvt:resolvedLinks[2]},s3lK_0fWl:{cQv2O8Mvt:resolvedLinks[4]}},children:/*#__PURE__*/_jsx(ButtonSlide,{cQv2O8Mvt:resolvedLinks[0],GP85vQ4AC:false,height:\"100%\",id:\"bjX0Nz4fN\",layoutId:\"bjX0Nz4fN\",PmrixLNYY:true,sq67Ol4a3:\"Book demo\",variant:\"Bmb4u50cs\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-774t70\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KZYm3bfcS:{width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1600px) - 16px, 1px), 1600px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:801,width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1600px) - 32px, 1px), 1600px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sxqu3m-container\",nodeId:\"EkrV47iRa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KZYm3bfcS:{style:{maxWidth:\"100%\",width:\"100%\"},variant:\"mQgR0ayIH\"}},children:/*#__PURE__*/_jsx(HeroComponent,{height:\"100%\",id:\"EkrV47iRa\",layoutId:\"EkrV47iRa\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"J44tIR5v1\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:202,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-u0r29l-container\",id:elementId1,nodeId:\"fYlrXHB7e\",ref:ref2,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{variant:\"xeLN9kK8t\"},KZYm3bfcS:{variant:\"KZSDhEMKK\"},pYgsX8wis:{variant:\"HkXnb1kcA\"},s3lK_0fWl:{variant:\"SeUUN44_7\"}},children:/*#__PURE__*/_jsx(SocialProofTicker,{height:\"100%\",id:\"fYlrXHB7e\",layoutId:\"fYlrXHB7e\",style:{width:\"100%\"},TkaExVi8i:\"Leading Sales Enterprises trust VoiceLine \",variant:\"UEVs82rfi\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-57pk8u hidden-72rtr7 hidden-e2x1a hidden-px9dbh hidden-o6179s\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q5rqrv-container\",isModuleExternal:true,nodeId:\"TTiO9l1mx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:-11,arrowPaddingBottom:-33,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:22,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:.75,effectsPerspective:1200,effectsRotate:0,effectsScale:.75},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:10,height:\"100%\",id:\"TTiO9l1mx\",intervalControl:10,itemAmount:1,layoutId:\"TTiO9l1mx\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:7,dotsInset:-43,dotSize:8,dotsOpacity:.5,dotsPadding:10,dotsRadius:41,showProgressDots:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iixheq\",\"data-framer-name\":\"Kerschsgens 2\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ialrqz\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1005,intrinsicWidth:1689,pixelHeight:1005,pixelWidth:1689,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/qiLCCSjVczlCAWslNThFJTWqYzA.png\"},className:\"framer-vtn38i\",\"data-framer-name\":\"Image <img>\"}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:4080,pixelHeight:2160,pixelWidth:4080,sizes:\"357px\",src:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png\",srcSet:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png 4080w\"},className:\"framer-n29lqs\",\"data-framer-name\":\"Padding\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9ryqiq\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uuyoti\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l5h4u0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(29, 48, 45)\"},children:\"Manuel & Marcel\"})}),className:\"framer-1imo4kw\",\"data-framer-name\":\"Text <p>\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-81bc24bc-1cb5-47bd-b189-3ff7f7004c6e, rgb(66, 96, 91))\"},children:\"Site Manager & Sales Department\"})}),className:\"framer-1l0q5e4\",\"data-framer-name\":\"Text <p>\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-31pve1\",\"data-framer-name\":\"Kerschgens\",fill:\"black\",intrinsicHeight:37,intrinsicWidth:89,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"89.418\" height=\"36.81\" xml:space=\"preserve\"><path fill=\"#9D9D9C\" d=\"M73.988 33.279v3.531h3.829v-.66h-2.961v-.867h1.702v-.61h-1.702v-.767h2.92v-.627zm8.623 0v1.345h-2.687v-1.345h-.868v3.531h.868v-1.486h2.687v1.486h.859v-3.531z\"/><defs><path id=\"a\" d=\"M0 0h89.418v36.81H0z\"/></defs><clipPath id=\"b\"><use xlink:href=\"#a\" overflow=\"visible\"/></clipPath><path clip-path=\"url(#b)\" fill=\"#9D9D9C\" d=\"M85.046 36.81v-3.53h3.18c.29 0 .5.054.63.161s.195.282.195.524v.83c0 .24-.065.413-.195.52-.13.105-.34.158-.63.158h-.484l1.677 1.336h-1.234l-1.477-1.336h-.811v1.336h-.851zm2.812-2.921h-1.962v.977h1.962c.149 0 .252-.022.309-.065.055-.043.083-.117.083-.22v-.406c0-.103-.028-.177-.083-.22-.057-.044-.159-.066-.309-.066M58.109 36.81c-.345 0-.578-.059-.7-.178-.123-.118-.185-.337-.185-.658v-.231c0-.152.026-.273.078-.36.053-.086.172-.186.359-.297l.719-.431a1.01 1.01 0 0 1-.229-.259.538.538 0 0 1-.071-.274v-.197c0-.234.064-.4.193-.498s.356-.147.682-.147h.711c.341 0 .572.052.693.154.122.103.185.288.185.558v.215l-.637.106v-.473h-1.156v.254l1.663 1.382.817-.685.469.403-.815.676 1.116.939h-1.076l-.581-.492-.313.281a.917.917 0 0 1-.266.166c-.084.03-.217.045-.398.045h-1.258zm-.193-.617h1.637l.328-.279-1.061-.883-.904.558v.604zm8.65.617v-4.306h.809l2.03 2.603 1.983-2.603h.802v4.306h-.926v-2.66c0-.052.003-.117.01-.196l.026-.265a5.34 5.34 0 0 1-.143.276c-.041.07-.078.131-.11.177l-1.617 2.15h-.2l-1.622-2.158a2.61 2.61 0 0 1-.153-.23 1.57 1.57 0 0 1-.104-.21c.008.089.014.171.018.244s.006.145.006.212v2.66h-.809z\"/><path fill=\"#9D9D9C\" d=\"M1.658 36.807 0 32.501h1.035l1.091 2.888 1.145-2.888h.701l1.165 2.888 1.043-2.888h.896l-1.662 4.306h-.676l-1.186-2.978-1.202 2.978zm6.3 0v-3.53h3.788v.626h-2.92v.768h1.702v.609H8.826v.868h2.962v.659z\"/><defs><path id=\"c\" d=\"M0 0h89.418v36.81H0z\"/></defs><clipPath id=\"d\"><use xlink:href=\"#c\" overflow=\"visible\"/></clipPath><path clip-path=\"url(#d)\" fill=\"#9D9D9C\" d=\"M13.071 36.808v-3.53h3.18c.29 0 .5.054.63.161.13.108.195.283.195.525v.83c0 .239-.065.412-.195.519-.13.106-.34.159-.63.159h-.485l1.677 1.336h-1.234l-1.477-1.336h-.81v1.336h-.851zm2.813-2.921h-1.962v.976h1.962c.149 0 .252-.021.308-.064.055-.043.083-.116.083-.221v-.405c0-.104-.028-.178-.083-.221-.056-.044-.159-.065-.308-.065\"/><path fill=\"#9D9D9C\" d=\"M18.541 36.807v-3.53h.868v1.427l2.057-1.427h1.247l-2.44 1.635 2.716 1.895h-1.362l-2.218-1.594v1.594z\"/><defs><path id=\"e\" d=\"M0 0h89.418v36.81H0z\"/></defs><clipPath id=\"f\"><use xlink:href=\"#e\" overflow=\"visible\"/></clipPath><path clip-path=\"url(#f)\" fill=\"#9D9D9C\" d=\"M27.018 33.911H24.59v.743h2.298c.36 0 .603.058.727.173.125.116.187.335.187.658v.487c0 .322-.063.543-.191.659-.127.116-.368.176-.723.176h-2.29c-.365 0-.611-.06-.741-.176-.129-.116-.193-.337-.193-.659v-.099l.767-.144v.418h2.595v-.811H24.74c-.362 0-.606-.059-.734-.177s-.192-.338-.192-.658v-.394c0-.318.064-.536.192-.655.128-.118.372-.177.734-.177h2.095c.354 0 .598.056.729.169.131.113.197.313.197.598v.085l-.743.158v-.374z\"/><path fill=\"#9D9D9C\" d=\"M31.432 33.911v2.897h-.861v-2.897H28.87v-.634h4.272v.634z\"/><defs><path id=\"g\" d=\"M0 0h89.418v36.81H0z\"/></defs><clipPath id=\"h\"><use xlink:href=\"#g\" overflow=\"visible\"/></clipPath><path clip-path=\"url(#h)\" fill=\"#9D9D9C\" d=\"M34.204 34.111c0-.321.062-.541.187-.659.125-.116.368-.175.729-.175h2.732c.363 0 .607.059.731.175.123.118.185.338.185.659v1.861c0 .323-.063.542-.189.659-.127.117-.369.175-.727.175H35.12c-.361 0-.604-.058-.729-.175s-.187-.336-.187-.659v-1.861zm.859 2.021h2.846v-2.203h-2.846v2.203z\"/><path fill=\"#9D9D9C\" d=\"M40.304 36.807v-3.53h3.747v.634h-2.879v.918h1.552v.66h-1.552v1.318zm4.634 0v-3.53h3.748v.634h-2.879v.918h1.551v.66h-1.551v1.318zm4.635 0v-3.53h3.787v.626h-2.92v.768h1.703v.609H50.44v.868h2.962v.659z\"/><path fill=\"#008253\" d=\"M53.152 28.962h3.411v3.019h-3.411z\"/><defs><path id=\"i\" d=\"M0 0h89.418v36.81H0z\"/></defs><clipPath id=\"j\"><use xlink:href=\"#i\" overflow=\"visible\"/></clipPath><path clip-path=\"url(#j)\" fill=\"#9D9D9C\" d=\"M69.503 17.029s.011-4.832.032-5.922c.021-1.091-.479-.786-.479-.786s-1.091.589-1.833 1.047-1.789.218-1.789.218c.021-.479.349-1.003.589-1.396.24-.392.633-.611 1.156-.894.523-.284.044-.415-.261-.436-.307-.022-.786.567-1.419 1.483s-.349 3.556-.349 3.556c1.679.174 1.723 1.069 1.723 1.069.437 2.749-3.315 2.269-3.816 1.265-.969-1.937-.277-5.9.785-8.115C67.899-.346 76.233.003 76.233.003c12.576.872 12.576 17.026 12.576 17.026h-8.721l-.006-1.985v-.251s-.262-.741-.986-.741c-1.238 0-1.135 1.036-1.129 1.063.005.027-.038.758-.038.758l-.056 1.156h-8.37zm8.485-14.081c-2.486-.437-4.036 1.167-4.036 1.167-1.482 1.145-1.331 5.148-1.331 5.148l-.011 2.694c0 .197-.163 1.495 1.026 1.495 1.188 0 1.003-1.167 1.111-2.018.109-.851 1.08-.775 1.08-.775h5.955c1.506 0 1.288.753 1.364 1.691s.207 1.124.676 1.178c.47.055.645-.044 1.004-.196.359-.153.099-1.402.099-1.402-1.668-7.913-6.849-8.968-6.937-8.982m-8.825 2.088s-.436.824-.054 1.064c.382.24.785-.535.818-.611.033-.076.312-.713-.055-.897-.309-.156-.709.444-.709.444\"/><path clip-path=\"url(#j)\" fill=\"#008253\" d=\"M.166 27.501v-12.36h3.891v4.155a.774.774 0 0 0 .545-.263c.15-.164.28-.422.39-.773l.995-3.119h4.029l-1.329 3.577c-.173.465-.34.819-.501 1.06a1.784 1.784 0 0 1-.56.553c.742.148 1.26.468 1.557.957.296.488.444 1.334.444 2.534v3.68h-3.89V23.59c0-.501-.081-.84-.243-1.02-.162-.178-.459-.268-.892-.268h-.545v5.199H.166zm19.661-2.01c-.731.737-1.467 1.283-2.206 1.638a5.31 5.31 0 0 1-2.319.531c-.45 0-.88-.052-1.292-.155a4.341 4.341 0 0 1-1.135-.458 4.567 4.567 0 0 1-1.671-1.706 4.673 4.673 0 0 1-.609-2.344c0-.628.115-1.227.345-1.793a4.622 4.622 0 0 1 1.002-1.516 4.223 4.223 0 0 1 1.486-1.019 4.805 4.805 0 0 1 1.839-.346c1.054 0 1.982.299 2.785.897.804.598 1.412 1.446 1.827 2.545l-4.461 2.429-.968-1.806 1.642-.917a1.137 1.137 0 0 0-.405-.294 1.237 1.237 0 0 0-.492-.096c-.368 0-.675.166-.922.498-.248.331-.371.748-.371 1.249 0 .542.157.979.47 1.31.314.332.724.498 1.23.498.392 0 .772-.097 1.14-.29a3.402 3.402 0 0 0 1.019-.842l2.066 1.987zm.994 2.01v-9h3.646v1.306c.27-.45.62-.78 1.048-.991.428-.209.973-.314 1.634-.314h.25v3.182c-.983 0-1.694.224-2.134.669-.44.446-.66 1.167-.66 2.163v2.986h-3.784zm7.181 0v-3.094h2.24a.505.505 0 0 0 .319-.088.276.276 0 0 0 .112-.231c0-.063-.014-.118-.043-.164s-.081-.092-.155-.138l-.405-.232c-.873-.519-1.439-.958-1.697-1.318-.259-.359-.388-.804-.388-1.334 0-.754.27-1.343.81-1.766.541-.424 1.297-.635 2.269-.635h3.393v2.864h-1.981a.376.376 0 0 0-.267.095.313.313 0 0 0-.104.241.24.24 0 0 0 .052.146.434.434 0 0 0 .146.12l.353.216c.006 0 .018.005.035.018 1.472.886 2.208 1.798 2.208 2.735 0 .426-.098.82-.293 1.184-.196.361-.47.658-.821.889-.276.173-.59.298-.941.375-.352.078-.899.117-1.641.117h-3.201zm13.993-5.658h-1.27c-.438 0-.784.104-1.038.311-.253.208-.38.487-.38.838 0 .34.128.614.385.821.256.207.6.311 1.033.311h1.27V27.5H40.88c-1.572 0-2.837-.417-3.796-1.252-.958-.835-1.438-1.92-1.438-3.256s.481-2.419 1.443-3.248c.961-.829 2.225-1.244 3.791-1.244h1.115v3.343zm1.06 5.658v-12.36h3.555v3.978c.31-.266.63-.463.958-.596a2.711 2.711 0 0 1 1.02-.198c.909 0 1.618.329 2.125.989.507.659.761 1.59.761 2.793v5.396h-3.556v-5.146a.714.714 0 0 0-.186-.509c-.124-.133-.282-.199-.473-.199s-.347.066-.468.199a.72.72 0 0 0-.182.509v5.146h-3.554zm15.065-4.07c0-.522-.078-.9-.237-1.133-.158-.232-.408-.35-.748-.35a.911.911 0 0 0-.692.306c-.189.204-.285.45-.285.737 0 .275.093.516.277.72.184.204.397.306.64.306.099 0 .2-.01.307-.029.106-.021.218-.047.333-.082v3.379a5.038 5.038 0 0 1-.583.134 3.448 3.448 0 0 1-.548.047c-1.186 0-2.146-.41-2.88-1.229-.733-.82-1.101-1.9-1.101-3.241 0-.627.114-1.221.341-1.782a4.59 4.59 0 0 1 .972-1.489 4.689 4.689 0 0 1 1.493-1.01 4.438 4.438 0 0 1 1.743-.354c1.02 0 1.912.283 2.681.85.769.566 1.3 1.332 1.593 2.298.087.288.149.604.189.945s.061.809.061 1.401v3.226c0 1.692-.403 2.932-1.209 3.72-.807.789-2.072 1.184-3.799 1.184-.554 0-1.122-.043-1.706-.129a15.373 15.373 0 0 1-1.81-.389v-2.4c.587.203 1.119.351 1.594.443.477.094.919-.55 1.327-.55.761 0 1.292-.125 1.595-.377.303-.251.453-.703.453-1.354v-3.798zm13.804 2.06c-.73.737-1.467 1.283-2.206 1.638a5.306 5.306 0 0 1-2.318.531c-.45 0-.88-.052-1.292-.155a4.341 4.341 0 0 1-1.135-.458 4.552 4.552 0 0 1-1.671-1.706 4.673 4.673 0 0 1-.609-2.344c0-.628.115-1.227.345-1.793a4.606 4.606 0 0 1 1.002-1.516 4.223 4.223 0 0 1 1.486-1.019 4.802 4.802 0 0 1 1.839-.346c1.054 0 1.982.299 2.785.897.804.598 1.412 1.446 1.827 2.545l-4.461 2.429-.969-1.806 1.643-.917a1.137 1.137 0 0 0-.405-.294 1.234 1.234 0 0 0-.492-.096c-.368 0-.675.166-.923.498-.247.331-.37.748-.37 1.249 0 .542.157.979.471 1.31.313.332.724.498 1.229.498.392 0 .772-.097 1.14-.29a3.417 3.417 0 0 0 1.02-.842l2.064 1.987zm5.769 2.01v-5.146a.718.718 0 0 0-.186-.509.613.613 0 0 0-.469-.199.61.61 0 0 0-.469.199.715.715 0 0 0-.187.509v5.146H72.83v-4.454c0-.697.06-1.271.181-1.723a3.73 3.73 0 0 1 .596-1.247 4.135 4.135 0 0 1 1.498-1.288 4.173 4.173 0 0 1 1.93-.466c.685 0 1.328.154 1.93.462a4.142 4.142 0 0 1 1.498 1.292c.276.374.476.791.6 1.251.123.461.186 1.033.186 1.719v4.454h-3.556zm4.661 0v-3.094h2.239a.503.503 0 0 0 .319-.088.276.276 0 0 0 .112-.231.31.31 0 0 0-.043-.164.478.478 0 0 0-.155-.138l-.405-.232c-.873-.519-1.438-.958-1.697-1.318-.259-.359-.388-.804-.388-1.334 0-.754.271-1.343.811-1.766.541-.424 1.297-.635 2.268-.635h3.394v2.864h-1.98a.373.373 0 0 0-.267.095.313.313 0 0 0-.104.241c0 .052.018.101.052.146s.083.086.146.12l.353.216c.006 0 .019.005.035.018 1.472.886 2.208 1.798 2.208 2.735 0 .426-.098.82-.293 1.184-.196.361-.47.658-.821.889-.275.173-.59.298-.941.375-.352.078-.898.117-1.641.117h-3.202z\"/><path clip-path=\"url(#j)\" fill=\"#9D9D9C\" d=\"M61.093 8.799c-.067-.011-.829-.251-1.021.36-.19.611.191.72.552.954 0 0 .938.48 2.089.753 0 0 .376-1.08.409-1.238.032-.158.07-.333-.087-.376-.159-.044-1.222-.333-1.942-.453\"/></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c7iofg\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2u81c5\",\"data-framer-name\":\"Quote Block\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xpn54e-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"lOva5Gqs6\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(29, 48, 45)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Quotes\",id:\"lOva5Gqs6\",layoutId:\"lOva5Gqs6\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBCb2xk\",\"--framer-font-family\":'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(29, 48, 45)\"},children:\"VoiceLine has not only enabled us to work more efficiently, but has also redefined the way we interact with our customers. \"})}),className:\"framer-18niq7r\",\"data-framer-name\":\"Text <p>\",fonts:[\"CUSTOM;Aeonik Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Os4cSPAnQ:\"kerschgens\"},unresolvedPathSlugs:{Os4cSPAnQ:{collectionId:\"kuoxu8YDf\",collectionItemId:\"D9tp4RngH\"}},webPageId:\"m5ruY3wZB\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,width:\"179px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r41u4e-container\",inComponentSlot:true,nodeId:\"ejelyeGHU\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonCTAV3,{fQEPgRXmW:resolvedLinks1[0],FYInuC3S2:true,height:\"100%\",HlG5obecI:\"Read more\",id:\"ejelyeGHU\",jrlsdxwuN:false,layoutId:\"ejelyeGHU\",lq4jtAPUu:16,style:{height:\"100%\",width:\"100%\"},variant:\"TsR_nYbPm\",width:\"100%\"})})})})]})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-76m0a\",\"data-framer-name\":\"Orgatex 2\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10xvhvv\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:5464,pixelWidth:8192,positionX:\"center\",positionY:\"top\",sizes:\"357px\",src:\"https://framerusercontent.com/images/NxAdn6RXvT1u4DMUtQezJEHCcA.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/NxAdn6RXvT1u4DMUtQezJEHCcA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NxAdn6RXvT1u4DMUtQezJEHCcA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NxAdn6RXvT1u4DMUtQezJEHCcA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NxAdn6RXvT1u4DMUtQezJEHCcA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/NxAdn6RXvT1u4DMUtQezJEHCcA.jpg 8192w\"},className:\"framer-1y88vta\",\"data-framer-name\":\"Image <img>\"}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:4080,pixelHeight:2160,pixelWidth:4080,sizes:\"357px\",src:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png\",srcSet:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png 4080w\"},className:\"framer-1oiad23\",\"data-framer-name\":\"Padding\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dtxmcc\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rkfv28\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e4a31y\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(29, 48, 45)\"},children:\"Daniel Maiwald\"})}),className:\"framer-17u3ub3\",\"data-framer-name\":\"Text <p>\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-81bc24bc-1cb5-47bd-b189-3ff7f7004c6e, rgb(66, 96, 91))\"},children:\"General Sales Manager\"})}),className:\"framer-kuc2rk\",\"data-framer-name\":\"Text <p>\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:386,intrinsicWidth:1920,pixelHeight:386,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"120px\",src:\"https://framerusercontent.com/images/29EbYahUpFMXcsiu2Z73418jg.png\",srcSet:\"https://framerusercontent.com/images/29EbYahUpFMXcsiu2Z73418jg.png?scale-down-to=512 512w,https://framerusercontent.com/images/29EbYahUpFMXcsiu2Z73418jg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/29EbYahUpFMXcsiu2Z73418jg.png 1920w\"},className:\"framer-1pyp90v\",\"data-framer-name\":\"Orgatex\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i3ctv2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hppky9\",\"data-framer-name\":\"Quote Block\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sdqfzl-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"C6i1UbrxV\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(29, 48, 45)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Quotes\",id:\"C6i1UbrxV\",layoutId:\"C6i1UbrxV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBCb2xk\",\"--framer-font-family\":'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(29, 48, 45)\"},children:[\"VoiceLine has significantly improved the way we \",/*#__PURE__*/_jsx(\"br\",{}),\"work and interact with our customers.\"]})}),className:\"framer-2kwuy9\",\"data-framer-name\":\"Text <p>\",fonts:[\"CUSTOM;Aeonik Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Os4cSPAnQ:\"kerschgens\"},unresolvedPathSlugs:{Os4cSPAnQ:{collectionId:\"kuoxu8YDf\",collectionItemId:\"D9tp4RngH\"}},webPageId:\"m5ruY3wZB\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,width:\"179px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-7q1tjs-container\",inComponentSlot:true,nodeId:\"xSYGoKOqq\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonCTAV3,{fQEPgRXmW:resolvedLinks2[0],FYInuC3S2:true,height:\"100%\",HlG5obecI:\"Read more\",id:\"xSYGoKOqq\",jrlsdxwuN:false,layoutId:\"xSYGoKOqq\",lq4jtAPUu:16,style:{height:\"100%\",width:\"100%\"},variant:\"TsR_nYbPm\",width:\"100%\"})})})})]})]})]})})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:19,delay:0,mass:1,stiffness:69,type:\"spring\"},width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j7ks19 hidden-outp7q hidden-o6179s\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ii61yo-container\",isModuleExternal:true,nodeId:\"orFwRaQQD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:12,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:true,effectsOptions:{effectsHover:false,effectsOpacity:.75,effectsPerspective:1200,effectsRotate:0,effectsScale:.75},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:true},gap:400,height:\"100%\",id:\"orFwRaQQD\",intervalControl:10,itemAmount:1,layoutId:\"orFwRaQQD\",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:8,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o6qb2g\",\"data-framer-name\":\"Kerschgens\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zr9fo8\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1005,intrinsicWidth:1689,pixelHeight:1005,pixelWidth:1689,src:\"https://framerusercontent.com/images/qiLCCSjVczlCAWslNThFJTWqYzA.png\"},className:\"framer-13r63ub\",\"data-framer-name\":\"Image <img>\"}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:4080,pixelHeight:2160,pixelWidth:4080,sizes:\"450px\",src:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png\",srcSet:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png 4080w\"},className:\"framer-8b72ap\",\"data-framer-name\":\"Padding\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ozbsck\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x5cuha\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1si0squ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(29, 48, 45)\"},children:\"Manuel Krischel & Marcel Grendel\"})}),className:\"framer-1c1tyj6\",\"data-framer-name\":\"Text <p>\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-81bc24bc-1cb5-47bd-b189-3ff7f7004c6e, rgb(66, 96, 91))\"},children:\"Deputy Site Manager & Sales Department\"})}),className:\"framer-19bscti\",\"data-framer-name\":\"Text <p>\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xa5e46\",\"data-framer-name\":\"Kerschgens\",fill:\"black\",intrinsicHeight:37,intrinsicWidth:89,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"89.418\" height=\"36.81\" xml:space=\"preserve\"><path fill=\"#9D9D9C\" d=\"M73.988 33.279v3.531h3.829v-.66h-2.961v-.867h1.702v-.61h-1.702v-.767h2.92v-.627zm8.623 0v1.345h-2.687v-1.345h-.868v3.531h.868v-1.486h2.687v1.486h.859v-3.531z\"/><defs><path id=\"a\" d=\"M0 0h89.418v36.81H0z\"/></defs><clipPath id=\"b\"><use xlink:href=\"#a\" overflow=\"visible\"/></clipPath><path clip-path=\"url(#b)\" fill=\"#9D9D9C\" d=\"M85.046 36.81v-3.53h3.18c.29 0 .5.054.63.161s.195.282.195.524v.83c0 .24-.065.413-.195.52-.13.105-.34.158-.63.158h-.484l1.677 1.336h-1.234l-1.477-1.336h-.811v1.336h-.851zm2.812-2.921h-1.962v.977h1.962c.149 0 .252-.022.309-.065.055-.043.083-.117.083-.22v-.406c0-.103-.028-.177-.083-.22-.057-.044-.159-.066-.309-.066M58.109 36.81c-.345 0-.578-.059-.7-.178-.123-.118-.185-.337-.185-.658v-.231c0-.152.026-.273.078-.36.053-.086.172-.186.359-.297l.719-.431a1.01 1.01 0 0 1-.229-.259.538.538 0 0 1-.071-.274v-.197c0-.234.064-.4.193-.498s.356-.147.682-.147h.711c.341 0 .572.052.693.154.122.103.185.288.185.558v.215l-.637.106v-.473h-1.156v.254l1.663 1.382.817-.685.469.403-.815.676 1.116.939h-1.076l-.581-.492-.313.281a.917.917 0 0 1-.266.166c-.084.03-.217.045-.398.045h-1.258zm-.193-.617h1.637l.328-.279-1.061-.883-.904.558v.604zm8.65.617v-4.306h.809l2.03 2.603 1.983-2.603h.802v4.306h-.926v-2.66c0-.052.003-.117.01-.196l.026-.265a5.34 5.34 0 0 1-.143.276c-.041.07-.078.131-.11.177l-1.617 2.15h-.2l-1.622-2.158a2.61 2.61 0 0 1-.153-.23 1.57 1.57 0 0 1-.104-.21c.008.089.014.171.018.244s.006.145.006.212v2.66h-.809z\"/><path fill=\"#9D9D9C\" d=\"M1.658 36.807 0 32.501h1.035l1.091 2.888 1.145-2.888h.701l1.165 2.888 1.043-2.888h.896l-1.662 4.306h-.676l-1.186-2.978-1.202 2.978zm6.3 0v-3.53h3.788v.626h-2.92v.768h1.702v.609H8.826v.868h2.962v.659z\"/><defs><path id=\"c\" d=\"M0 0h89.418v36.81H0z\"/></defs><clipPath id=\"d\"><use xlink:href=\"#c\" overflow=\"visible\"/></clipPath><path clip-path=\"url(#d)\" fill=\"#9D9D9C\" d=\"M13.071 36.808v-3.53h3.18c.29 0 .5.054.63.161.13.108.195.283.195.525v.83c0 .239-.065.412-.195.519-.13.106-.34.159-.63.159h-.485l1.677 1.336h-1.234l-1.477-1.336h-.81v1.336h-.851zm2.813-2.921h-1.962v.976h1.962c.149 0 .252-.021.308-.064.055-.043.083-.116.083-.221v-.405c0-.104-.028-.178-.083-.221-.056-.044-.159-.065-.308-.065\"/><path fill=\"#9D9D9C\" d=\"M18.541 36.807v-3.53h.868v1.427l2.057-1.427h1.247l-2.44 1.635 2.716 1.895h-1.362l-2.218-1.594v1.594z\"/><defs><path id=\"e\" d=\"M0 0h89.418v36.81H0z\"/></defs><clipPath id=\"f\"><use xlink:href=\"#e\" overflow=\"visible\"/></clipPath><path clip-path=\"url(#f)\" fill=\"#9D9D9C\" d=\"M27.018 33.911H24.59v.743h2.298c.36 0 .603.058.727.173.125.116.187.335.187.658v.487c0 .322-.063.543-.191.659-.127.116-.368.176-.723.176h-2.29c-.365 0-.611-.06-.741-.176-.129-.116-.193-.337-.193-.659v-.099l.767-.144v.418h2.595v-.811H24.74c-.362 0-.606-.059-.734-.177s-.192-.338-.192-.658v-.394c0-.318.064-.536.192-.655.128-.118.372-.177.734-.177h2.095c.354 0 .598.056.729.169.131.113.197.313.197.598v.085l-.743.158v-.374z\"/><path fill=\"#9D9D9C\" d=\"M31.432 33.911v2.897h-.861v-2.897H28.87v-.634h4.272v.634z\"/><defs><path id=\"g\" d=\"M0 0h89.418v36.81H0z\"/></defs><clipPath id=\"h\"><use xlink:href=\"#g\" overflow=\"visible\"/></clipPath><path clip-path=\"url(#h)\" fill=\"#9D9D9C\" d=\"M34.204 34.111c0-.321.062-.541.187-.659.125-.116.368-.175.729-.175h2.732c.363 0 .607.059.731.175.123.118.185.338.185.659v1.861c0 .323-.063.542-.189.659-.127.117-.369.175-.727.175H35.12c-.361 0-.604-.058-.729-.175s-.187-.336-.187-.659v-1.861zm.859 2.021h2.846v-2.203h-2.846v2.203z\"/><path fill=\"#9D9D9C\" d=\"M40.304 36.807v-3.53h3.747v.634h-2.879v.918h1.552v.66h-1.552v1.318zm4.634 0v-3.53h3.748v.634h-2.879v.918h1.551v.66h-1.551v1.318zm4.635 0v-3.53h3.787v.626h-2.92v.768h1.703v.609H50.44v.868h2.962v.659z\"/><path fill=\"#008253\" d=\"M53.152 28.962h3.411v3.019h-3.411z\"/><defs><path id=\"i\" d=\"M0 0h89.418v36.81H0z\"/></defs><clipPath id=\"j\"><use xlink:href=\"#i\" overflow=\"visible\"/></clipPath><path clip-path=\"url(#j)\" fill=\"#9D9D9C\" d=\"M69.503 17.029s.011-4.832.032-5.922c.021-1.091-.479-.786-.479-.786s-1.091.589-1.833 1.047-1.789.218-1.789.218c.021-.479.349-1.003.589-1.396.24-.392.633-.611 1.156-.894.523-.284.044-.415-.261-.436-.307-.022-.786.567-1.419 1.483s-.349 3.556-.349 3.556c1.679.174 1.723 1.069 1.723 1.069.437 2.749-3.315 2.269-3.816 1.265-.969-1.937-.277-5.9.785-8.115C67.899-.346 76.233.003 76.233.003c12.576.872 12.576 17.026 12.576 17.026h-8.721l-.006-1.985v-.251s-.262-.741-.986-.741c-1.238 0-1.135 1.036-1.129 1.063.005.027-.038.758-.038.758l-.056 1.156h-8.37zm8.485-14.081c-2.486-.437-4.036 1.167-4.036 1.167-1.482 1.145-1.331 5.148-1.331 5.148l-.011 2.694c0 .197-.163 1.495 1.026 1.495 1.188 0 1.003-1.167 1.111-2.018.109-.851 1.08-.775 1.08-.775h5.955c1.506 0 1.288.753 1.364 1.691s.207 1.124.676 1.178c.47.055.645-.044 1.004-.196.359-.153.099-1.402.099-1.402-1.668-7.913-6.849-8.968-6.937-8.982m-8.825 2.088s-.436.824-.054 1.064c.382.24.785-.535.818-.611.033-.076.312-.713-.055-.897-.309-.156-.709.444-.709.444\"/><path clip-path=\"url(#j)\" fill=\"#008253\" d=\"M.166 27.501v-12.36h3.891v4.155a.774.774 0 0 0 .545-.263c.15-.164.28-.422.39-.773l.995-3.119h4.029l-1.329 3.577c-.173.465-.34.819-.501 1.06a1.784 1.784 0 0 1-.56.553c.742.148 1.26.468 1.557.957.296.488.444 1.334.444 2.534v3.68h-3.89V23.59c0-.501-.081-.84-.243-1.02-.162-.178-.459-.268-.892-.268h-.545v5.199H.166zm19.661-2.01c-.731.737-1.467 1.283-2.206 1.638a5.31 5.31 0 0 1-2.319.531c-.45 0-.88-.052-1.292-.155a4.341 4.341 0 0 1-1.135-.458 4.567 4.567 0 0 1-1.671-1.706 4.673 4.673 0 0 1-.609-2.344c0-.628.115-1.227.345-1.793a4.622 4.622 0 0 1 1.002-1.516 4.223 4.223 0 0 1 1.486-1.019 4.805 4.805 0 0 1 1.839-.346c1.054 0 1.982.299 2.785.897.804.598 1.412 1.446 1.827 2.545l-4.461 2.429-.968-1.806 1.642-.917a1.137 1.137 0 0 0-.405-.294 1.237 1.237 0 0 0-.492-.096c-.368 0-.675.166-.922.498-.248.331-.371.748-.371 1.249 0 .542.157.979.47 1.31.314.332.724.498 1.23.498.392 0 .772-.097 1.14-.29a3.402 3.402 0 0 0 1.019-.842l2.066 1.987zm.994 2.01v-9h3.646v1.306c.27-.45.62-.78 1.048-.991.428-.209.973-.314 1.634-.314h.25v3.182c-.983 0-1.694.224-2.134.669-.44.446-.66 1.167-.66 2.163v2.986h-3.784zm7.181 0v-3.094h2.24a.505.505 0 0 0 .319-.088.276.276 0 0 0 .112-.231c0-.063-.014-.118-.043-.164s-.081-.092-.155-.138l-.405-.232c-.873-.519-1.439-.958-1.697-1.318-.259-.359-.388-.804-.388-1.334 0-.754.27-1.343.81-1.766.541-.424 1.297-.635 2.269-.635h3.393v2.864h-1.981a.376.376 0 0 0-.267.095.313.313 0 0 0-.104.241.24.24 0 0 0 .052.146.434.434 0 0 0 .146.12l.353.216c.006 0 .018.005.035.018 1.472.886 2.208 1.798 2.208 2.735 0 .426-.098.82-.293 1.184-.196.361-.47.658-.821.889-.276.173-.59.298-.941.375-.352.078-.899.117-1.641.117h-3.201zm13.993-5.658h-1.27c-.438 0-.784.104-1.038.311-.253.208-.38.487-.38.838 0 .34.128.614.385.821.256.207.6.311 1.033.311h1.27V27.5H40.88c-1.572 0-2.837-.417-3.796-1.252-.958-.835-1.438-1.92-1.438-3.256s.481-2.419 1.443-3.248c.961-.829 2.225-1.244 3.791-1.244h1.115v3.343zm1.06 5.658v-12.36h3.555v3.978c.31-.266.63-.463.958-.596a2.711 2.711 0 0 1 1.02-.198c.909 0 1.618.329 2.125.989.507.659.761 1.59.761 2.793v5.396h-3.556v-5.146a.714.714 0 0 0-.186-.509c-.124-.133-.282-.199-.473-.199s-.347.066-.468.199a.72.72 0 0 0-.182.509v5.146h-3.554zm15.065-4.07c0-.522-.078-.9-.237-1.133-.158-.232-.408-.35-.748-.35a.911.911 0 0 0-.692.306c-.189.204-.285.45-.285.737 0 .275.093.516.277.72.184.204.397.306.64.306.099 0 .2-.01.307-.029.106-.021.218-.047.333-.082v3.379a5.038 5.038 0 0 1-.583.134 3.448 3.448 0 0 1-.548.047c-1.186 0-2.146-.41-2.88-1.229-.733-.82-1.101-1.9-1.101-3.241 0-.627.114-1.221.341-1.782a4.59 4.59 0 0 1 .972-1.489 4.689 4.689 0 0 1 1.493-1.01 4.438 4.438 0 0 1 1.743-.354c1.02 0 1.912.283 2.681.85.769.566 1.3 1.332 1.593 2.298.087.288.149.604.189.945s.061.809.061 1.401v3.226c0 1.692-.403 2.932-1.209 3.72-.807.789-2.072 1.184-3.799 1.184-.554 0-1.122-.043-1.706-.129a15.373 15.373 0 0 1-1.81-.389v-2.4c.587.203 1.119.351 1.594.443.477.094.919-.55 1.327-.55.761 0 1.292-.125 1.595-.377.303-.251.453-.703.453-1.354v-3.798zm13.804 2.06c-.73.737-1.467 1.283-2.206 1.638a5.306 5.306 0 0 1-2.318.531c-.45 0-.88-.052-1.292-.155a4.341 4.341 0 0 1-1.135-.458 4.552 4.552 0 0 1-1.671-1.706 4.673 4.673 0 0 1-.609-2.344c0-.628.115-1.227.345-1.793a4.606 4.606 0 0 1 1.002-1.516 4.223 4.223 0 0 1 1.486-1.019 4.802 4.802 0 0 1 1.839-.346c1.054 0 1.982.299 2.785.897.804.598 1.412 1.446 1.827 2.545l-4.461 2.429-.969-1.806 1.643-.917a1.137 1.137 0 0 0-.405-.294 1.234 1.234 0 0 0-.492-.096c-.368 0-.675.166-.923.498-.247.331-.37.748-.37 1.249 0 .542.157.979.471 1.31.313.332.724.498 1.229.498.392 0 .772-.097 1.14-.29a3.417 3.417 0 0 0 1.02-.842l2.064 1.987zm5.769 2.01v-5.146a.718.718 0 0 0-.186-.509.613.613 0 0 0-.469-.199.61.61 0 0 0-.469.199.715.715 0 0 0-.187.509v5.146H72.83v-4.454c0-.697.06-1.271.181-1.723a3.73 3.73 0 0 1 .596-1.247 4.135 4.135 0 0 1 1.498-1.288 4.173 4.173 0 0 1 1.93-.466c.685 0 1.328.154 1.93.462a4.142 4.142 0 0 1 1.498 1.292c.276.374.476.791.6 1.251.123.461.186 1.033.186 1.719v4.454h-3.556zm4.661 0v-3.094h2.239a.503.503 0 0 0 .319-.088.276.276 0 0 0 .112-.231.31.31 0 0 0-.043-.164.478.478 0 0 0-.155-.138l-.405-.232c-.873-.519-1.438-.958-1.697-1.318-.259-.359-.388-.804-.388-1.334 0-.754.271-1.343.811-1.766.541-.424 1.297-.635 2.268-.635h3.394v2.864h-1.98a.373.373 0 0 0-.267.095.313.313 0 0 0-.104.241c0 .052.018.101.052.146s.083.086.146.12l.353.216c.006 0 .019.005.035.018 1.472.886 2.208 1.798 2.208 2.735 0 .426-.098.82-.293 1.184-.196.361-.47.658-.821.889-.275.173-.59.298-.941.375-.352.078-.898.117-1.641.117h-3.202z\"/><path clip-path=\"url(#j)\" fill=\"#9D9D9C\" d=\"M61.093 8.799c-.067-.011-.829-.251-1.021.36-.19.611.191.72.552.954 0 0 .938.48 2.089.753 0 0 .376-1.08.409-1.238.032-.158.07-.333-.087-.376-.159-.044-1.222-.333-1.942-.453\"/></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a7ic3c\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-60wkwz\",\"data-framer-name\":\"Quote Block\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gn0nv4-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Zn482fXrZ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(29, 48, 45)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Quotes\",id:\"Zn482fXrZ\",layoutId:\"Zn482fXrZ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBCb2xk\",\"--framer-font-family\":'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(29, 48, 45)\"},children:\"VoiceLine has not only enabled us to work more efficiently, but has also redefined the way we interact with our customers. \"})}),className:\"framer-16s8txt\",\"data-framer-name\":\"Text <p>\",fonts:[\"CUSTOM;Aeonik Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Os4cSPAnQ:\"kerschgens\"},unresolvedPathSlugs:{Os4cSPAnQ:{collectionId:\"kuoxu8YDf\",collectionItemId:\"D9tp4RngH\"}},webPageId:\"m5ruY3wZB\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"150px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9n0v4u-container\",inComponentSlot:true,nodeId:\"GYSI8XH4S\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonCTAV3,{fQEPgRXmW:resolvedLinks3[0],FYInuC3S2:true,height:\"100%\",HlG5obecI:\"Read more\",id:\"GYSI8XH4S\",jrlsdxwuN:false,layoutId:\"GYSI8XH4S\",lq4jtAPUu:16,style:{height:\"100%\",width:\"100%\"},variant:\"TsR_nYbPm\",width:\"100%\"})})})})]})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-57rv3x\",\"data-framer-name\":\"Orgatex\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mbxx7b\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:5464,pixelWidth:8192,positionX:\"center\",positionY:\"top\",sizes:\"450px\",src:\"https://framerusercontent.com/images/NxAdn6RXvT1u4DMUtQezJEHCcA.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/NxAdn6RXvT1u4DMUtQezJEHCcA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NxAdn6RXvT1u4DMUtQezJEHCcA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NxAdn6RXvT1u4DMUtQezJEHCcA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NxAdn6RXvT1u4DMUtQezJEHCcA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/NxAdn6RXvT1u4DMUtQezJEHCcA.jpg 8192w\"},className:\"framer-ochbkf\",\"data-framer-name\":\"Image <img>\"}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:4080,pixelHeight:2160,pixelWidth:4080,sizes:\"450px\",src:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png\",srcSet:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png 4080w\"},className:\"framer-1664ner\",\"data-framer-name\":\"Padding\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-162tuh3\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17ish3\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ad0jh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(29, 48, 45)\"},children:\"Daniel Maiwald\"})}),className:\"framer-ueur28\",\"data-framer-name\":\"Text <p>\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-81bc24bc-1cb5-47bd-b189-3ff7f7004c6e, rgb(66, 96, 91))\"},children:\"General Sales Manager\"})}),className:\"framer-1pyxpwk\",\"data-framer-name\":\"Text <p>\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:386,intrinsicWidth:1920,pixelHeight:386,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"146px\",src:\"https://framerusercontent.com/images/29EbYahUpFMXcsiu2Z73418jg.png\",srcSet:\"https://framerusercontent.com/images/29EbYahUpFMXcsiu2Z73418jg.png?scale-down-to=512 512w,https://framerusercontent.com/images/29EbYahUpFMXcsiu2Z73418jg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/29EbYahUpFMXcsiu2Z73418jg.png 1920w\"},className:\"framer-13asis6\",\"data-framer-name\":\"Orgatex\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l64ucp\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eq5u0a\",\"data-framer-name\":\"Quote Block\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1srmvji-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"K735WdHVO\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(29, 48, 45)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Quotes\",id:\"K735WdHVO\",layoutId:\"K735WdHVO\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBCb2xk\",\"--framer-font-family\":'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(29, 48, 45)\"},children:\"VoiceLine has significantly improved the way we work and interact with our customers.\"})}),className:\"framer-d995je\",\"data-framer-name\":\"Text <p>\",fonts:[\"CUSTOM;Aeonik Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Os4cSPAnQ:\"orgatex\"},unresolvedPathSlugs:{Os4cSPAnQ:{collectionId:\"kuoxu8YDf\",collectionItemId:\"LVXXq1Zrg\"}},webPageId:\"m5ruY3wZB\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"150px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-18algaz-container\",inComponentSlot:true,nodeId:\"IFzuUmU8H\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonCTAV3,{fQEPgRXmW:resolvedLinks4[0],FYInuC3S2:true,height:\"100%\",HlG5obecI:\"Read more\",id:\"IFzuUmU8H\",jrlsdxwuN:false,layoutId:\"IFzuUmU8H\",lq4jtAPUu:16,style:{height:\"100%\",width:\"100%\"},variant:\"TsR_nYbPm\",width:\"100%\"})})})})]})]})]})})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:19,delay:0,mass:1,stiffness:69,type:\"spring\"},width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sk3g1o hidden-72rtr7 hidden-e2x1a hidden-px9dbh hidden-outp7q\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-j2hk9k-container\",isModuleExternal:true,nodeId:\"YOOLzG_Od\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:12,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:true,effectsOptions:{effectsHover:false,effectsOpacity:.75,effectsPerspective:1200,effectsRotate:0,effectsScale:.75},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:true},gap:400,height:\"100%\",id:\"YOOLzG_Od\",intervalControl:10,itemAmount:1,layoutId:\"YOOLzG_Od\",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:8,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o6qb2g\",\"data-framer-name\":\"Kerschgens\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zr9fo8\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1005,intrinsicWidth:1689,pixelHeight:1005,pixelWidth:1689,src:\"https://framerusercontent.com/images/qiLCCSjVczlCAWslNThFJTWqYzA.png\"},className:\"framer-13r63ub\",\"data-framer-name\":\"Image <img>\"}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:4080,pixelHeight:2160,pixelWidth:4080,sizes:\"450px\",src:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png\",srcSet:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png 4080w\"},className:\"framer-8b72ap\",\"data-framer-name\":\"Padding\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ozbsck\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x5cuha\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1si0squ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(29, 48, 45)\"},children:\"Manuel Krischel & Marcel Grendel\"})}),className:\"framer-1c1tyj6\",\"data-framer-name\":\"Text <p>\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-81bc24bc-1cb5-47bd-b189-3ff7f7004c6e, rgb(66, 96, 91))\"},children:\"Deputy Site Manager & Sales Department\"})}),className:\"framer-19bscti\",\"data-framer-name\":\"Text <p>\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xa5e46\",\"data-framer-name\":\"Kerschgens\",fill:\"black\",intrinsicHeight:37,intrinsicWidth:89,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"89.418\" height=\"36.81\" xml:space=\"preserve\"><path fill=\"#9D9D9C\" d=\"M73.988 33.279v3.531h3.829v-.66h-2.961v-.867h1.702v-.61h-1.702v-.767h2.92v-.627zm8.623 0v1.345h-2.687v-1.345h-.868v3.531h.868v-1.486h2.687v1.486h.859v-3.531z\"/><defs><path id=\"a\" d=\"M0 0h89.418v36.81H0z\"/></defs><clipPath id=\"b\"><use xlink:href=\"#a\" overflow=\"visible\"/></clipPath><path clip-path=\"url(#b)\" fill=\"#9D9D9C\" d=\"M85.046 36.81v-3.53h3.18c.29 0 .5.054.63.161s.195.282.195.524v.83c0 .24-.065.413-.195.52-.13.105-.34.158-.63.158h-.484l1.677 1.336h-1.234l-1.477-1.336h-.811v1.336h-.851zm2.812-2.921h-1.962v.977h1.962c.149 0 .252-.022.309-.065.055-.043.083-.117.083-.22v-.406c0-.103-.028-.177-.083-.22-.057-.044-.159-.066-.309-.066M58.109 36.81c-.345 0-.578-.059-.7-.178-.123-.118-.185-.337-.185-.658v-.231c0-.152.026-.273.078-.36.053-.086.172-.186.359-.297l.719-.431a1.01 1.01 0 0 1-.229-.259.538.538 0 0 1-.071-.274v-.197c0-.234.064-.4.193-.498s.356-.147.682-.147h.711c.341 0 .572.052.693.154.122.103.185.288.185.558v.215l-.637.106v-.473h-1.156v.254l1.663 1.382.817-.685.469.403-.815.676 1.116.939h-1.076l-.581-.492-.313.281a.917.917 0 0 1-.266.166c-.084.03-.217.045-.398.045h-1.258zm-.193-.617h1.637l.328-.279-1.061-.883-.904.558v.604zm8.65.617v-4.306h.809l2.03 2.603 1.983-2.603h.802v4.306h-.926v-2.66c0-.052.003-.117.01-.196l.026-.265a5.34 5.34 0 0 1-.143.276c-.041.07-.078.131-.11.177l-1.617 2.15h-.2l-1.622-2.158a2.61 2.61 0 0 1-.153-.23 1.57 1.57 0 0 1-.104-.21c.008.089.014.171.018.244s.006.145.006.212v2.66h-.809z\"/><path fill=\"#9D9D9C\" d=\"M1.658 36.807 0 32.501h1.035l1.091 2.888 1.145-2.888h.701l1.165 2.888 1.043-2.888h.896l-1.662 4.306h-.676l-1.186-2.978-1.202 2.978zm6.3 0v-3.53h3.788v.626h-2.92v.768h1.702v.609H8.826v.868h2.962v.659z\"/><defs><path id=\"c\" d=\"M0 0h89.418v36.81H0z\"/></defs><clipPath id=\"d\"><use xlink:href=\"#c\" overflow=\"visible\"/></clipPath><path clip-path=\"url(#d)\" fill=\"#9D9D9C\" d=\"M13.071 36.808v-3.53h3.18c.29 0 .5.054.63.161.13.108.195.283.195.525v.83c0 .239-.065.412-.195.519-.13.106-.34.159-.63.159h-.485l1.677 1.336h-1.234l-1.477-1.336h-.81v1.336h-.851zm2.813-2.921h-1.962v.976h1.962c.149 0 .252-.021.308-.064.055-.043.083-.116.083-.221v-.405c0-.104-.028-.178-.083-.221-.056-.044-.159-.065-.308-.065\"/><path fill=\"#9D9D9C\" d=\"M18.541 36.807v-3.53h.868v1.427l2.057-1.427h1.247l-2.44 1.635 2.716 1.895h-1.362l-2.218-1.594v1.594z\"/><defs><path id=\"e\" d=\"M0 0h89.418v36.81H0z\"/></defs><clipPath id=\"f\"><use xlink:href=\"#e\" overflow=\"visible\"/></clipPath><path clip-path=\"url(#f)\" fill=\"#9D9D9C\" d=\"M27.018 33.911H24.59v.743h2.298c.36 0 .603.058.727.173.125.116.187.335.187.658v.487c0 .322-.063.543-.191.659-.127.116-.368.176-.723.176h-2.29c-.365 0-.611-.06-.741-.176-.129-.116-.193-.337-.193-.659v-.099l.767-.144v.418h2.595v-.811H24.74c-.362 0-.606-.059-.734-.177s-.192-.338-.192-.658v-.394c0-.318.064-.536.192-.655.128-.118.372-.177.734-.177h2.095c.354 0 .598.056.729.169.131.113.197.313.197.598v.085l-.743.158v-.374z\"/><path fill=\"#9D9D9C\" d=\"M31.432 33.911v2.897h-.861v-2.897H28.87v-.634h4.272v.634z\"/><defs><path id=\"g\" d=\"M0 0h89.418v36.81H0z\"/></defs><clipPath id=\"h\"><use xlink:href=\"#g\" overflow=\"visible\"/></clipPath><path clip-path=\"url(#h)\" fill=\"#9D9D9C\" d=\"M34.204 34.111c0-.321.062-.541.187-.659.125-.116.368-.175.729-.175h2.732c.363 0 .607.059.731.175.123.118.185.338.185.659v1.861c0 .323-.063.542-.189.659-.127.117-.369.175-.727.175H35.12c-.361 0-.604-.058-.729-.175s-.187-.336-.187-.659v-1.861zm.859 2.021h2.846v-2.203h-2.846v2.203z\"/><path fill=\"#9D9D9C\" d=\"M40.304 36.807v-3.53h3.747v.634h-2.879v.918h1.552v.66h-1.552v1.318zm4.634 0v-3.53h3.748v.634h-2.879v.918h1.551v.66h-1.551v1.318zm4.635 0v-3.53h3.787v.626h-2.92v.768h1.703v.609H50.44v.868h2.962v.659z\"/><path fill=\"#008253\" d=\"M53.152 28.962h3.411v3.019h-3.411z\"/><defs><path id=\"i\" d=\"M0 0h89.418v36.81H0z\"/></defs><clipPath id=\"j\"><use xlink:href=\"#i\" overflow=\"visible\"/></clipPath><path clip-path=\"url(#j)\" fill=\"#9D9D9C\" d=\"M69.503 17.029s.011-4.832.032-5.922c.021-1.091-.479-.786-.479-.786s-1.091.589-1.833 1.047-1.789.218-1.789.218c.021-.479.349-1.003.589-1.396.24-.392.633-.611 1.156-.894.523-.284.044-.415-.261-.436-.307-.022-.786.567-1.419 1.483s-.349 3.556-.349 3.556c1.679.174 1.723 1.069 1.723 1.069.437 2.749-3.315 2.269-3.816 1.265-.969-1.937-.277-5.9.785-8.115C67.899-.346 76.233.003 76.233.003c12.576.872 12.576 17.026 12.576 17.026h-8.721l-.006-1.985v-.251s-.262-.741-.986-.741c-1.238 0-1.135 1.036-1.129 1.063.005.027-.038.758-.038.758l-.056 1.156h-8.37zm8.485-14.081c-2.486-.437-4.036 1.167-4.036 1.167-1.482 1.145-1.331 5.148-1.331 5.148l-.011 2.694c0 .197-.163 1.495 1.026 1.495 1.188 0 1.003-1.167 1.111-2.018.109-.851 1.08-.775 1.08-.775h5.955c1.506 0 1.288.753 1.364 1.691s.207 1.124.676 1.178c.47.055.645-.044 1.004-.196.359-.153.099-1.402.099-1.402-1.668-7.913-6.849-8.968-6.937-8.982m-8.825 2.088s-.436.824-.054 1.064c.382.24.785-.535.818-.611.033-.076.312-.713-.055-.897-.309-.156-.709.444-.709.444\"/><path clip-path=\"url(#j)\" fill=\"#008253\" d=\"M.166 27.501v-12.36h3.891v4.155a.774.774 0 0 0 .545-.263c.15-.164.28-.422.39-.773l.995-3.119h4.029l-1.329 3.577c-.173.465-.34.819-.501 1.06a1.784 1.784 0 0 1-.56.553c.742.148 1.26.468 1.557.957.296.488.444 1.334.444 2.534v3.68h-3.89V23.59c0-.501-.081-.84-.243-1.02-.162-.178-.459-.268-.892-.268h-.545v5.199H.166zm19.661-2.01c-.731.737-1.467 1.283-2.206 1.638a5.31 5.31 0 0 1-2.319.531c-.45 0-.88-.052-1.292-.155a4.341 4.341 0 0 1-1.135-.458 4.567 4.567 0 0 1-1.671-1.706 4.673 4.673 0 0 1-.609-2.344c0-.628.115-1.227.345-1.793a4.622 4.622 0 0 1 1.002-1.516 4.223 4.223 0 0 1 1.486-1.019 4.805 4.805 0 0 1 1.839-.346c1.054 0 1.982.299 2.785.897.804.598 1.412 1.446 1.827 2.545l-4.461 2.429-.968-1.806 1.642-.917a1.137 1.137 0 0 0-.405-.294 1.237 1.237 0 0 0-.492-.096c-.368 0-.675.166-.922.498-.248.331-.371.748-.371 1.249 0 .542.157.979.47 1.31.314.332.724.498 1.23.498.392 0 .772-.097 1.14-.29a3.402 3.402 0 0 0 1.019-.842l2.066 1.987zm.994 2.01v-9h3.646v1.306c.27-.45.62-.78 1.048-.991.428-.209.973-.314 1.634-.314h.25v3.182c-.983 0-1.694.224-2.134.669-.44.446-.66 1.167-.66 2.163v2.986h-3.784zm7.181 0v-3.094h2.24a.505.505 0 0 0 .319-.088.276.276 0 0 0 .112-.231c0-.063-.014-.118-.043-.164s-.081-.092-.155-.138l-.405-.232c-.873-.519-1.439-.958-1.697-1.318-.259-.359-.388-.804-.388-1.334 0-.754.27-1.343.81-1.766.541-.424 1.297-.635 2.269-.635h3.393v2.864h-1.981a.376.376 0 0 0-.267.095.313.313 0 0 0-.104.241.24.24 0 0 0 .052.146.434.434 0 0 0 .146.12l.353.216c.006 0 .018.005.035.018 1.472.886 2.208 1.798 2.208 2.735 0 .426-.098.82-.293 1.184-.196.361-.47.658-.821.889-.276.173-.59.298-.941.375-.352.078-.899.117-1.641.117h-3.201zm13.993-5.658h-1.27c-.438 0-.784.104-1.038.311-.253.208-.38.487-.38.838 0 .34.128.614.385.821.256.207.6.311 1.033.311h1.27V27.5H40.88c-1.572 0-2.837-.417-3.796-1.252-.958-.835-1.438-1.92-1.438-3.256s.481-2.419 1.443-3.248c.961-.829 2.225-1.244 3.791-1.244h1.115v3.343zm1.06 5.658v-12.36h3.555v3.978c.31-.266.63-.463.958-.596a2.711 2.711 0 0 1 1.02-.198c.909 0 1.618.329 2.125.989.507.659.761 1.59.761 2.793v5.396h-3.556v-5.146a.714.714 0 0 0-.186-.509c-.124-.133-.282-.199-.473-.199s-.347.066-.468.199a.72.72 0 0 0-.182.509v5.146h-3.554zm15.065-4.07c0-.522-.078-.9-.237-1.133-.158-.232-.408-.35-.748-.35a.911.911 0 0 0-.692.306c-.189.204-.285.45-.285.737 0 .275.093.516.277.72.184.204.397.306.64.306.099 0 .2-.01.307-.029.106-.021.218-.047.333-.082v3.379a5.038 5.038 0 0 1-.583.134 3.448 3.448 0 0 1-.548.047c-1.186 0-2.146-.41-2.88-1.229-.733-.82-1.101-1.9-1.101-3.241 0-.627.114-1.221.341-1.782a4.59 4.59 0 0 1 .972-1.489 4.689 4.689 0 0 1 1.493-1.01 4.438 4.438 0 0 1 1.743-.354c1.02 0 1.912.283 2.681.85.769.566 1.3 1.332 1.593 2.298.087.288.149.604.189.945s.061.809.061 1.401v3.226c0 1.692-.403 2.932-1.209 3.72-.807.789-2.072 1.184-3.799 1.184-.554 0-1.122-.043-1.706-.129a15.373 15.373 0 0 1-1.81-.389v-2.4c.587.203 1.119.351 1.594.443.477.094.919-.55 1.327-.55.761 0 1.292-.125 1.595-.377.303-.251.453-.703.453-1.354v-3.798zm13.804 2.06c-.73.737-1.467 1.283-2.206 1.638a5.306 5.306 0 0 1-2.318.531c-.45 0-.88-.052-1.292-.155a4.341 4.341 0 0 1-1.135-.458 4.552 4.552 0 0 1-1.671-1.706 4.673 4.673 0 0 1-.609-2.344c0-.628.115-1.227.345-1.793a4.606 4.606 0 0 1 1.002-1.516 4.223 4.223 0 0 1 1.486-1.019 4.802 4.802 0 0 1 1.839-.346c1.054 0 1.982.299 2.785.897.804.598 1.412 1.446 1.827 2.545l-4.461 2.429-.969-1.806 1.643-.917a1.137 1.137 0 0 0-.405-.294 1.234 1.234 0 0 0-.492-.096c-.368 0-.675.166-.923.498-.247.331-.37.748-.37 1.249 0 .542.157.979.471 1.31.313.332.724.498 1.229.498.392 0 .772-.097 1.14-.29a3.417 3.417 0 0 0 1.02-.842l2.064 1.987zm5.769 2.01v-5.146a.718.718 0 0 0-.186-.509.613.613 0 0 0-.469-.199.61.61 0 0 0-.469.199.715.715 0 0 0-.187.509v5.146H72.83v-4.454c0-.697.06-1.271.181-1.723a3.73 3.73 0 0 1 .596-1.247 4.135 4.135 0 0 1 1.498-1.288 4.173 4.173 0 0 1 1.93-.466c.685 0 1.328.154 1.93.462a4.142 4.142 0 0 1 1.498 1.292c.276.374.476.791.6 1.251.123.461.186 1.033.186 1.719v4.454h-3.556zm4.661 0v-3.094h2.239a.503.503 0 0 0 .319-.088.276.276 0 0 0 .112-.231.31.31 0 0 0-.043-.164.478.478 0 0 0-.155-.138l-.405-.232c-.873-.519-1.438-.958-1.697-1.318-.259-.359-.388-.804-.388-1.334 0-.754.271-1.343.811-1.766.541-.424 1.297-.635 2.268-.635h3.394v2.864h-1.98a.373.373 0 0 0-.267.095.313.313 0 0 0-.104.241c0 .052.018.101.052.146s.083.086.146.12l.353.216c.006 0 .019.005.035.018 1.472.886 2.208 1.798 2.208 2.735 0 .426-.098.82-.293 1.184-.196.361-.47.658-.821.889-.275.173-.59.298-.941.375-.352.078-.898.117-1.641.117h-3.202z\"/><path clip-path=\"url(#j)\" fill=\"#9D9D9C\" d=\"M61.093 8.799c-.067-.011-.829-.251-1.021.36-.19.611.191.72.552.954 0 0 .938.48 2.089.753 0 0 .376-1.08.409-1.238.032-.158.07-.333-.087-.376-.159-.044-1.222-.333-1.942-.453\"/></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a7ic3c\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-60wkwz\",\"data-framer-name\":\"Quote Block\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gn0nv4-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Zn482fXrZ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(29, 48, 45)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Quotes\",id:\"Zn482fXrZ\",layoutId:\"Zn482fXrZ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBCb2xk\",\"--framer-font-family\":'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(29, 48, 45)\"},children:\"VoiceLine has not only enabled us to work more efficiently, but has also redefined the way we interact with our customers. \"})}),className:\"framer-16s8txt\",\"data-framer-name\":\"Text <p>\",fonts:[\"CUSTOM;Aeonik Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Os4cSPAnQ:\"kerschgens\"},unresolvedPathSlugs:{Os4cSPAnQ:{collectionId:\"kuoxu8YDf\",collectionItemId:\"D9tp4RngH\"}},webPageId:\"m5ruY3wZB\"},implicitPathVariables:undefined},{href:{pathVariables:{Os4cSPAnQ:\"kerschgens\"},unresolvedPathSlugs:{Os4cSPAnQ:{collectionId:\"kuoxu8YDf\",collectionItemId:\"D9tp4RngH\"}},webPageId:\"m5ruY3wZB\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"150px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9n0v4u-container\",inComponentSlot:true,nodeId:\"GYSI8XH4S\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonCTAV3,{fQEPgRXmW:resolvedLinks3[1],FYInuC3S2:true,height:\"100%\",HlG5obecI:\"Read more\",id:\"GYSI8XH4S\",jrlsdxwuN:false,layoutId:\"GYSI8XH4S\",lq4jtAPUu:16,style:{height:\"100%\",width:\"100%\"},variant:\"TsR_nYbPm\",width:\"100%\"})})})})]})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-57rv3x\",\"data-framer-name\":\"Orgatex\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mbxx7b\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:5464,pixelWidth:8192,positionX:\"center\",positionY:\"top\",sizes:\"450px\",src:\"https://framerusercontent.com/images/NxAdn6RXvT1u4DMUtQezJEHCcA.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/NxAdn6RXvT1u4DMUtQezJEHCcA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NxAdn6RXvT1u4DMUtQezJEHCcA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NxAdn6RXvT1u4DMUtQezJEHCcA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NxAdn6RXvT1u4DMUtQezJEHCcA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/NxAdn6RXvT1u4DMUtQezJEHCcA.jpg 8192w\"},className:\"framer-ochbkf\",\"data-framer-name\":\"Image <img>\"}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:4080,pixelHeight:2160,pixelWidth:4080,sizes:\"450px\",src:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png\",srcSet:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png 4080w\"},className:\"framer-1664ner\",\"data-framer-name\":\"Padding\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-162tuh3\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17ish3\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ad0jh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(29, 48, 45)\"},children:\"Daniel Maiwald\"})}),className:\"framer-ueur28\",\"data-framer-name\":\"Text <p>\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-81bc24bc-1cb5-47bd-b189-3ff7f7004c6e, rgb(66, 96, 91))\"},children:\"General Sales Manager\"})}),className:\"framer-1pyxpwk\",\"data-framer-name\":\"Text <p>\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:386,intrinsicWidth:1920,pixelHeight:386,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"146px\",src:\"https://framerusercontent.com/images/29EbYahUpFMXcsiu2Z73418jg.png\",srcSet:\"https://framerusercontent.com/images/29EbYahUpFMXcsiu2Z73418jg.png?scale-down-to=512 512w,https://framerusercontent.com/images/29EbYahUpFMXcsiu2Z73418jg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/29EbYahUpFMXcsiu2Z73418jg.png 1920w\"},className:\"framer-13asis6\",\"data-framer-name\":\"Orgatex\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l64ucp\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eq5u0a\",\"data-framer-name\":\"Quote Block\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1srmvji-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"K735WdHVO\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(29, 48, 45)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Quotes\",id:\"K735WdHVO\",layoutId:\"K735WdHVO\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBCb2xk\",\"--framer-font-family\":'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(29, 48, 45)\"},children:\"VoiceLine has significantly improved the way we work and interact with our customers.\"})}),className:\"framer-d995je\",\"data-framer-name\":\"Text <p>\",fonts:[\"CUSTOM;Aeonik Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Os4cSPAnQ:\"orgatex\"},unresolvedPathSlugs:{Os4cSPAnQ:{collectionId:\"kuoxu8YDf\",collectionItemId:\"LVXXq1Zrg\"}},webPageId:\"m5ruY3wZB\"},implicitPathVariables:undefined},{href:{pathVariables:{Os4cSPAnQ:\"orgatex\"},unresolvedPathSlugs:{Os4cSPAnQ:{collectionId:\"kuoxu8YDf\",collectionItemId:\"LVXXq1Zrg\"}},webPageId:\"m5ruY3wZB\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"150px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-18algaz-container\",inComponentSlot:true,nodeId:\"IFzuUmU8H\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonCTAV3,{fQEPgRXmW:resolvedLinks4[1],FYInuC3S2:true,height:\"100%\",HlG5obecI:\"Read more\",id:\"IFzuUmU8H\",jrlsdxwuN:false,layoutId:\"IFzuUmU8H\",lq4jtAPUu:16,style:{height:\"100%\",width:\"100%\"},variant:\"TsR_nYbPm\",width:\"100%\"})})})})]})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v9gbws\",\"data-framer-name\":\"Sachs\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7s141l\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,positionX:\"47.9%\",positionY:\"0%\",src:\"https://framerusercontent.com/images/slz9qjBNxv2IxJYtQcmt8TzvYI.jpg\"},className:\"framer-1x56430\",\"data-framer-name\":\"Image <img>\"}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:4080,pixelHeight:2160,pixelWidth:4080,sizes:\"450px\",src:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png\",srcSet:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png 4080w\"},className:\"framer-86mj69\",\"data-framer-name\":\"Padding\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cjulc2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f3j271\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o6x8ng\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(29, 48, 45)\"},children:\"Michael Schubert\"})}),className:\"framer-1bb9lpm\",\"data-framer-name\":\"Text <p>\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-81bc24bc-1cb5-47bd-b189-3ff7f7004c6e, rgb(66, 96, 91))\"},children:\"Managing Partner\"})}),className:\"framer-zvt0cx\",\"data-framer-name\":\"Text <p>\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:135,intrinsicWidth:300,pixelHeight:81,pixelWidth:181,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/FkHilmx8VgYeUB8sEuGXxshrU.svg\"},className:\"framer-os6k5i\",\"data-framer-name\":\"Logo <img>\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-at01fn\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ug1ccj\",\"data-framer-name\":\"Quote Block\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10o4r66-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"sGqeOsXWb\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(29, 48, 45)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Quotes\",id:\"sGqeOsXWb\",layoutId:\"sGqeOsXWb\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBCb2xk\",\"--framer-font-family\":'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(29, 48, 45)\"},children:\"The bottom line is that VoiceLine allows us to create significantly better data with less time. For us, this is an ideal scenario.\"})}),className:\"framer-13hvkzi\",\"data-framer-name\":\"Text <p>\",fonts:[\"CUSTOM;Aeonik Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Os4cSPAnQ:\"sachs-products\"},unresolvedPathSlugs:{Os4cSPAnQ:{collectionId:\"kuoxu8YDf\",collectionItemId:\"lzapyFElA\"}},webPageId:\"m5ruY3wZB\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"150px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u4vjqk-container\",inComponentSlot:true,nodeId:\"RxwTcQKst\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonCTAV3,{fQEPgRXmW:resolvedLinks5[0],FYInuC3S2:true,height:\"100%\",HlG5obecI:\"Read more\",id:\"RxwTcQKst\",jrlsdxwuN:false,layoutId:\"RxwTcQKst\",lq4jtAPUu:16,style:{height:\"100%\",width:\"100%\"},variant:\"TsR_nYbPm\",width:\"100%\"})})})})]})]})]})})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:19,delay:0,mass:1,stiffness:69,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1f2f2f5\",\"data-framer-name\":\"Section 1\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{background:{alt:\"\",fit:\"stretch\",pixelHeight:2160,pixelWidth:4080,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 48px, 1600px)`,src:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png\",srcSet:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png 4080w\"}},KZYm3bfcS:{background:{alt:\"\",fit:\"stretch\",pixelHeight:2160,pixelWidth:4080,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 28px, 1600px)`,src:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png\",srcSet:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png 4080w\"}},s3lK_0fWl:{background:{alt:\"\",fit:\"stretch\",pixelHeight:2160,pixelWidth:4080,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 48px, 1600px)`,src:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png\",srcSet:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png 4080w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:2160,pixelWidth:4080,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px, 1600px)`,src:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png\",srcSet:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png 4080w\"},className:\"framer-c2q9wo\",\"data-border\":true,\"data-framer-name\":\".Element left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14p7izs\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ujz9g9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15qo4tr\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3li6nu\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-h8coz\",\"data-styles-preset\":\"GI_1ocJJ9\",children:\"Capture\"})}),className:\"framer-1qz84zw\",\"data-framer-name\":\"VoiceLine is field sales intelligence made easy. Work with voice to capture any field interaction in seconds. Use AI to bring data driven decision-making to your sales team.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-nbh0s8\",\"data-styles-preset\":\"FqarI9KTE\",children:[\"More selling time \",/*#__PURE__*/_jsx(\"em\",{children:\"and\"}),\"  better data\"]})}),className:\"framer-hrg3nu\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",children:\"With the VoiceLine AI Assistant, you get the power of a personal assistant. In your pocket. Always available. For every sales rep. Focus on selling and building relationships while the AI Assistant handles the rest. Automatically log activities in the CRM, prepare your next meeting, set up and get reminded about tasks - all done and guided by the Assistant. Get more selling time while having a perfectly filled CRM System.\"})}),className:\"framer-l3nviq\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y3dwa hidden-outp7q\",\"data-framer-name\":\"KPIs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eujzow\",\"data-framer-name\":\"KPI\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jsv4qf\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dsjmpc-container\",isAuthoredByUser:true,nodeId:\"f2HekR66X\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{s3lK_0fWl:{fontStyle:{fontFamily:'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',fontSize:\"80px\",letterSpacing:\"0em\",lineHeight:\"1em\"}}},children:/*#__PURE__*/_jsx(Counter,{color:\"var(--token-15971002-2dae-4039-a012-2f6fc0f2bac4, rgb(19, 32, 30))\",damping:100,decimal:false,decimalValue:99.99,direction:\"up\",fontStyle:{fontFamily:'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',fontSize:\"100px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"f2HekR66X\",layoutId:\"f2HekR66X\",prefix:false,prefixText:\"$\",stiffness:214,suffix:false,suffixText:\"%\",value:80,width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBCb2xk\",\"--framer-font-family\":'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-text-color\":\"var(--token-15971002-2dae-4039-a012-2f6fc0f2bac4, rgb(19, 32, 30))\"},children:\"%\"})}),className:\"framer-12abjhu\",fonts:[\"CUSTOM;Aeonik Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",children:\"Increased efficiency\"})}),className:\"framer-etk810\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q5s4qg\",\"data-framer-name\":\"KPI\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1otvat6\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qo1ps2-container\",isAuthoredByUser:true,nodeId:\"kXT07wCxa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{s3lK_0fWl:{fontStyle:{fontFamily:'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',fontSize:\"80px\",letterSpacing:\"0em\",lineHeight:\"1em\"}}},children:/*#__PURE__*/_jsx(Counter,{color:\"var(--token-15971002-2dae-4039-a012-2f6fc0f2bac4, rgb(19, 32, 30))\",damping:100,decimal:false,decimalValue:99.99,direction:\"up\",fontStyle:{fontFamily:'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',fontSize:\"100px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"kXT07wCxa\",layoutId:\"kXT07wCxa\",prefix:false,prefixText:\"$\",stiffness:214,suffix:false,suffixText:\"%\",value:50,width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBCb2xk\",\"--framer-font-family\":'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-text-color\":\"var(--token-15971002-2dae-4039-a012-2f6fc0f2bac4, rgb(19, 32, 30))\"},children:\"%\"})}),className:\"framer-1cz98hx\",fonts:[\"CUSTOM;Aeonik Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",children:\"Better data quality\"})}),className:\"framer-3v0kvb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-slcww3 hidden-72rtr7 hidden-e2x1a hidden-px9dbh hidden-o6179s\",\"data-framer-name\":\"KPIs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q1k5y9\",\"data-framer-name\":\"KPI\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fwh2ms\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rskpc3-container\",isAuthoredByUser:true,nodeId:\"st8LzhLym\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Counter,{color:\"var(--token-2e1b7e26-b1fd-409d-a2bb-d754d7fd1197, rgb(39, 65, 61))\",damping:100,decimal:false,decimalValue:99.99,direction:\"up\",fontStyle:{fontFamily:'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',fontSize:\"70px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"st8LzhLym\",layoutId:\"st8LzhLym\",prefix:false,prefixText:\"$\",stiffness:214,suffix:false,suffixText:\"%\",value:80,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBCb2xk\",\"--framer-font-family\":'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-color\":\"var(--token-2e1b7e26-b1fd-409d-a2bb-d754d7fd1197, rgb(39, 65, 61))\"},children:\"%\"})}),className:\"framer-1afsyc1\",fonts:[\"CUSTOM;Aeonik Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBSZWd1bGFy\",\"--framer-font-family\":'\"Aeonik Regular\", \"Aeonik Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(45, 67, 63)\"},children:\"Increased efficiency\"})}),className:\"framer-lm3lxq\",fonts:[\"CUSTOM;Aeonik Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15j7hqc\",\"data-framer-name\":\"KPI\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12meoh5\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g8fif-container\",isAuthoredByUser:true,nodeId:\"MGurH36mN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Counter,{color:\"var(--token-2e1b7e26-b1fd-409d-a2bb-d754d7fd1197, rgb(39, 65, 61))\",damping:100,decimal:false,decimalValue:99.99,direction:\"up\",fontStyle:{fontFamily:'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',fontSize:\"70px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"MGurH36mN\",layoutId:\"MGurH36mN\",prefix:false,prefixText:\"$\",stiffness:214,suffix:false,suffixText:\"%\",value:50,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBCb2xk\",\"--framer-font-family\":'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-color\":\"var(--token-2e1b7e26-b1fd-409d-a2bb-d754d7fd1197, rgb(39, 65, 61))\"},children:\"%\"})}),className:\"framer-1qhts72\",fonts:[\"CUSTOM;Aeonik Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBSZWd1bGFy\",\"--framer-font-family\":'\"Aeonik Regular\", \"Aeonik Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(45, 67, 63)\"},children:\"Better data quality\"})}),className:\"framer-1qsdl6o\",fonts:[\"CUSTOM;Aeonik Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:658,intrinsicWidth:530,pixelHeight:2166,pixelWidth:2667,positionX:\"56.3%\",positionY:\"47.6%\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 48px, 1600px) - 24px)`,src:\"https://framerusercontent.com/images/3eQ0h4F7bLPOFD3oP1QaMGe4w.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/3eQ0h4F7bLPOFD3oP1QaMGe4w.webp?scale-down-to=512 512w,https://framerusercontent.com/images/3eQ0h4F7bLPOFD3oP1QaMGe4w.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/3eQ0h4F7bLPOFD3oP1QaMGe4w.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/3eQ0h4F7bLPOFD3oP1QaMGe4w.webp 2667w\"}},KZYm3bfcS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:658,intrinsicWidth:530,pixelHeight:2166,pixelWidth:2667,positionX:\"56.3%\",positionY:\"47.6%\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 28px, 1600px) - 24px)`,src:\"https://framerusercontent.com/images/3eQ0h4F7bLPOFD3oP1QaMGe4w.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/3eQ0h4F7bLPOFD3oP1QaMGe4w.webp?scale-down-to=512 512w,https://framerusercontent.com/images/3eQ0h4F7bLPOFD3oP1QaMGe4w.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/3eQ0h4F7bLPOFD3oP1QaMGe4w.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/3eQ0h4F7bLPOFD3oP1QaMGe4w.webp 2667w\"}},s3lK_0fWl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:658,intrinsicWidth:530,pixelHeight:2166,pixelWidth:2667,positionX:\"56.3%\",positionY:\"47.6%\",sizes:`min(max((min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 48px, 1600px) - 40px) / 2, 1px), (min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 48px, 1600px) - 40px) * 0.48)`,src:\"https://framerusercontent.com/images/3eQ0h4F7bLPOFD3oP1QaMGe4w.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/3eQ0h4F7bLPOFD3oP1QaMGe4w.webp?scale-down-to=512 512w,https://framerusercontent.com/images/3eQ0h4F7bLPOFD3oP1QaMGe4w.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/3eQ0h4F7bLPOFD3oP1QaMGe4w.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/3eQ0h4F7bLPOFD3oP1QaMGe4w.webp 2667w\"}}},children:/*#__PURE__*/_jsx(Image,{\"aria-label\":\"An illustration of the VoiceLine Smart Report on a phone\",as:\"figure\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:658,intrinsicWidth:530,pixelHeight:2166,pixelWidth:2667,positionX:\"56.3%\",positionY:\"47.6%\",sizes:`min(max((min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px, 1600px) - 76px) / 2, 1px), (min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px, 1600px) - 76px) * 0.48)`,src:\"https://framerusercontent.com/images/3eQ0h4F7bLPOFD3oP1QaMGe4w.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/3eQ0h4F7bLPOFD3oP1QaMGe4w.webp?scale-down-to=512 512w,https://framerusercontent.com/images/3eQ0h4F7bLPOFD3oP1QaMGe4w.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/3eQ0h4F7bLPOFD3oP1QaMGe4w.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/3eQ0h4F7bLPOFD3oP1QaMGe4w.webp 2667w\"},className:\"framer-onopsb\",\"data-framer-name\":\"Illustration placeholder\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nuju2e\",\"data-framer-name\":\".Element left\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dy9qiy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1400px) - 48px, 1px), 600px)`,src:\"https://framerusercontent.com/images/A6DbNpTwOHJ3tVsEZOpueW4duTU.svg\",srcSet:\"https://framerusercontent.com/images/A6DbNpTwOHJ3tVsEZOpueW4duTU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/A6DbNpTwOHJ3tVsEZOpueW4duTU.svg 564w\"}},KZYm3bfcS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1400px) - 28px, 1px), 600px)`,src:\"https://framerusercontent.com/images/A6DbNpTwOHJ3tVsEZOpueW4duTU.svg\",srcSet:\"https://framerusercontent.com/images/A6DbNpTwOHJ3tVsEZOpueW4duTU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/A6DbNpTwOHJ3tVsEZOpueW4duTU.svg 564w\"}},s3lK_0fWl:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px) / 2, 1px), 599px), 400px)`,src:\"https://framerusercontent.com/images/A6DbNpTwOHJ3tVsEZOpueW4duTU.svg\",srcSet:\"https://framerusercontent.com/images/A6DbNpTwOHJ3tVsEZOpueW4duTU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/A6DbNpTwOHJ3tVsEZOpueW4duTU.svg 564w\"}}},children:/*#__PURE__*/_jsx(Image,{\"aria-label\":\"An illustration of the VoiceLine recorder on a phone\",as:\"figure\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"}, 1400px) - 112px) / 2, 1px), 599px), 400px)`,src:\"https://framerusercontent.com/images/A6DbNpTwOHJ3tVsEZOpueW4duTU.svg\",srcSet:\"https://framerusercontent.com/images/A6DbNpTwOHJ3tVsEZOpueW4duTU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/A6DbNpTwOHJ3tVsEZOpueW4duTU.svg 564w\"},className:\"framer-a9bri2\",\"data-border\":true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kqqo9d\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-amcuj8\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-exmean\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yg2bmq\",\"data-styles-preset\":\"Iap84eHlG\",children:\"Use your voice and make downtime productive\"})}),className:\"framer-1b6sn08\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",children:\"Stop wasting time on complex tools and interfaces not made for field sales reps. With the VoiceLine AI Assistant, you just talk. The assistant will respond like a human, so you can capture everything just by having a natural conversation. Available everywhere. In the app, as a phone call, and even on your car\u2019s steering wheel. Convert 50% of your daily downtime into productive work and reach your targets.\"})}),className:\"framer-1c690rg\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1flibr\",\"data-framer-name\":\".Element left\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-h3lq1k\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tzcqgd\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z4524i\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yg2bmq\",\"data-styles-preset\":\"Iap84eHlG\",children:\"Supercharge your workday\"})}),className:\"framer-ssd6u9\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",children:\"The personalised AI Assistant takes care of work for you, including admin work. Visit Reports, tasks, reminders, opportunities, new leads - you name it. The AI Assistant asks clarifying questions, thinks ahead, learns from corrections, and never drops the ball. All to empower you to spend more time on what really matters - selling and customer relationships.\"})}),className:\"framer-1fs3mb0\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17nethb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1400px) - 48px, 1px), 600px)`,src:\"https://framerusercontent.com/images/6LGIt662RGYRL6VqLxNzaCTC9M.svg\",srcSet:\"https://framerusercontent.com/images/6LGIt662RGYRL6VqLxNzaCTC9M.svg?scale-down-to=512 512w,https://framerusercontent.com/images/6LGIt662RGYRL6VqLxNzaCTC9M.svg 564w\"}},KZYm3bfcS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1400px) - 28px, 1px), 600px)`,src:\"https://framerusercontent.com/images/6LGIt662RGYRL6VqLxNzaCTC9M.svg\",srcSet:\"https://framerusercontent.com/images/6LGIt662RGYRL6VqLxNzaCTC9M.svg?scale-down-to=512 512w,https://framerusercontent.com/images/6LGIt662RGYRL6VqLxNzaCTC9M.svg 564w\"}},s3lK_0fWl:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px) / 2, 1px), 599px), 400px)`,src:\"https://framerusercontent.com/images/6LGIt662RGYRL6VqLxNzaCTC9M.svg\",srcSet:\"https://framerusercontent.com/images/6LGIt662RGYRL6VqLxNzaCTC9M.svg?scale-down-to=512 512w,https://framerusercontent.com/images/6LGIt662RGYRL6VqLxNzaCTC9M.svg 564w\"}}},children:/*#__PURE__*/_jsx(Image,{\"aria-label\":\"An illustration of a VoiceLine on a phone to the left and the data points extracted to the right\",as:\"figure\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"}, 1400px) - 112px) / 2, 1px), 599px), 400px)`,src:\"https://framerusercontent.com/images/6LGIt662RGYRL6VqLxNzaCTC9M.svg\",srcSet:\"https://framerusercontent.com/images/6LGIt662RGYRL6VqLxNzaCTC9M.svg?scale-down-to=512 512w,https://framerusercontent.com/images/6LGIt662RGYRL6VqLxNzaCTC9M.svg 564w\"},className:\"framer-gsocep\",\"data-border\":true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10fhr8e\",\"data-framer-name\":\".Element left\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zxhxub\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1400px) - 48px, 1px), 600px)`,src:\"https://framerusercontent.com/images/kSbRXqwxS4UqqktocLG1rsMwyvY.svg\",srcSet:\"https://framerusercontent.com/images/kSbRXqwxS4UqqktocLG1rsMwyvY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/kSbRXqwxS4UqqktocLG1rsMwyvY.svg 564w\"}},KZYm3bfcS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1400px) - 28px, 1px), 600px)`,src:\"https://framerusercontent.com/images/kSbRXqwxS4UqqktocLG1rsMwyvY.svg\",srcSet:\"https://framerusercontent.com/images/kSbRXqwxS4UqqktocLG1rsMwyvY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/kSbRXqwxS4UqqktocLG1rsMwyvY.svg 564w\"}},s3lK_0fWl:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px) / 2, 1px), 599px), 400px)`,src:\"https://framerusercontent.com/images/kSbRXqwxS4UqqktocLG1rsMwyvY.svg\",srcSet:\"https://framerusercontent.com/images/kSbRXqwxS4UqqktocLG1rsMwyvY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/kSbRXqwxS4UqqktocLG1rsMwyvY.svg 564w\"}}},children:/*#__PURE__*/_jsx(Image,{\"aria-label\":\"An illustration of the CRM systems VoiceLine integrate with, like Salesforce, Hubspot, SAP and more.\",as:\"figure\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"}, 1400px) - 112px) / 2, 1px), 599px), 400px)`,src:\"https://framerusercontent.com/images/kSbRXqwxS4UqqktocLG1rsMwyvY.svg\",srcSet:\"https://framerusercontent.com/images/kSbRXqwxS4UqqktocLG1rsMwyvY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/kSbRXqwxS4UqqktocLG1rsMwyvY.svg 564w\"},className:\"framer-12rykpy\",\"data-border\":true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rk6xq0\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-nj5hni\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-te0vkc\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yg2bmq\",\"data-styles-preset\":\"Iap84eHlG\",children:\"CRM System filled for you\"})}),className:\"framer-1eyy3vj\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",children:\"Imagine never having to manually fill your CRM fields again, while having even better quality data than before. This is the reality with VoiceLine. The AI Assistant automatically fills the relevant information to the correct location in your CRM system. Be a CRM superuser without the hassle.\"})}),className:\"framer-12h5zhh\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cgcgkh\",\"data-framer-name\":\".Element left\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-to8qro\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-g73cp9\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5kxfbn\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yg2bmq\",\"data-styles-preset\":\"Iap84eHlG\",children:\"Prepare visits - in seconds\"})}),className:\"framer-1aaxfbd\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",children:\"Need to prepare a visit? Just ask the AI Assistant, and get all the relevant information you need in seconds. The Assistant helps you retrieve any information across all your systems, touchpoints and documents, so you can build better customer relationships, faster. Stand out from the competition and get higher close rates.\"})}),className:\"framer-1pi358t\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v7l0cu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1400px) - 48px, 1px), 600px)`,src:\"https://framerusercontent.com/images/RP5iUVlwzUihzMkzLyJO64Q6u0.svg\",srcSet:\"https://framerusercontent.com/images/RP5iUVlwzUihzMkzLyJO64Q6u0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/RP5iUVlwzUihzMkzLyJO64Q6u0.svg 564w\"}},KZYm3bfcS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1400px) - 28px, 1px), 600px)`,src:\"https://framerusercontent.com/images/RP5iUVlwzUihzMkzLyJO64Q6u0.svg\",srcSet:\"https://framerusercontent.com/images/RP5iUVlwzUihzMkzLyJO64Q6u0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/RP5iUVlwzUihzMkzLyJO64Q6u0.svg 564w\"}},s3lK_0fWl:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px) / 2, 1px), 599px), 400px)`,src:\"https://framerusercontent.com/images/RP5iUVlwzUihzMkzLyJO64Q6u0.svg\",srcSet:\"https://framerusercontent.com/images/RP5iUVlwzUihzMkzLyJO64Q6u0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/RP5iUVlwzUihzMkzLyJO64Q6u0.svg 564w\"}}},children:/*#__PURE__*/_jsx(Image,{\"aria-label\":\"An illustration of a VoiceLine on a phone to the left and the data points extracted to the right\",as:\"figure\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"}, 1400px) - 112px) / 2, 1px), 599px), 400px)`,src:\"https://framerusercontent.com/images/RP5iUVlwzUihzMkzLyJO64Q6u0.svg\",srcSet:\"https://framerusercontent.com/images/RP5iUVlwzUihzMkzLyJO64Q6u0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/RP5iUVlwzUihzMkzLyJO64Q6u0.svg 564w\"},className:\"framer-12m6xdc\",\"data-border\":true})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-a4bn4e\",\"data-framer-name\":\"Section 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{background:{alt:\"\",fit:\"stretch\",pixelHeight:2160,pixelWidth:4080,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 1440px)`,src:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png\",srcSet:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png 4080w\"}},KZYm3bfcS:{background:{alt:\"\",fit:\"stretch\",pixelHeight:2160,pixelWidth:4080,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 1440px)`,src:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png\",srcSet:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png 4080w\"}},s3lK_0fWl:{background:{alt:\"\",fit:\"stretch\",pixelHeight:2160,pixelWidth:4080,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 1440px)`,src:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png\",srcSet:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png 4080w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:2160,pixelWidth:4080,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 1440px)`,src:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png\",srcSet:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png 4080w\"},className:\"framer-ob23qj\",\"data-border\":true,\"data-framer-name\":\".Element left\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:658,intrinsicWidth:530,pixelHeight:2166,pixelWidth:2667,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 1440px) - 24px)`,src:\"https://framerusercontent.com/images/zvcLITvZoCM0P52DW6uplmSlsk.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zvcLITvZoCM0P52DW6uplmSlsk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/zvcLITvZoCM0P52DW6uplmSlsk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/zvcLITvZoCM0P52DW6uplmSlsk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/zvcLITvZoCM0P52DW6uplmSlsk.webp 2667w\"}},KZYm3bfcS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:658,intrinsicWidth:530,pixelHeight:2166,pixelWidth:2667,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 1440px) - 24px)`,src:\"https://framerusercontent.com/images/zvcLITvZoCM0P52DW6uplmSlsk.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zvcLITvZoCM0P52DW6uplmSlsk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/zvcLITvZoCM0P52DW6uplmSlsk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/zvcLITvZoCM0P52DW6uplmSlsk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/zvcLITvZoCM0P52DW6uplmSlsk.webp 2667w\"}},s3lK_0fWl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:658,intrinsicWidth:530,pixelHeight:2166,pixelWidth:2667,sizes:`min(max((min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 1440px) - 48px) / 2, 1px), (min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 1440px) - 48px) * 0.48)`,src:\"https://framerusercontent.com/images/zvcLITvZoCM0P52DW6uplmSlsk.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zvcLITvZoCM0P52DW6uplmSlsk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/zvcLITvZoCM0P52DW6uplmSlsk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/zvcLITvZoCM0P52DW6uplmSlsk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/zvcLITvZoCM0P52DW6uplmSlsk.webp 2667w\"}}},children:/*#__PURE__*/_jsx(Image,{\"aria-label\":\"An illustration of the VoiceLine Smart Report on a phone\",as:\"figure\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:658,intrinsicWidth:530,pixelHeight:2166,pixelWidth:2667,sizes:`min(max((min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 1440px) - 76px) / 2, 1px), (min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 1440px) - 76px) * 0.48)`,src:\"https://framerusercontent.com/images/zvcLITvZoCM0P52DW6uplmSlsk.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zvcLITvZoCM0P52DW6uplmSlsk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/zvcLITvZoCM0P52DW6uplmSlsk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/zvcLITvZoCM0P52DW6uplmSlsk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/zvcLITvZoCM0P52DW6uplmSlsk.webp 2667w\"},className:\"framer-7di5tg\",\"data-framer-name\":\"Illustration placeholder\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xqpkc7\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6m10sg\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zfsqcy\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dtzu6t\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-h8coz\",\"data-styles-preset\":\"GI_1ocJJ9\",children:\"Analyze\"})}),className:\"framer-yru23a\",\"data-framer-name\":\"VoiceLine is field sales intelligence made easy. Work with voice to capture any field interaction in seconds. Use AI to bring data driven decision-making to your sales team.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-nbh0s8\",\"data-styles-preset\":\"FqarI9KTE\",children:\"Deep market visibility. Know the reality.\"})}),className:\"framer-113hnhh\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",children:\"Gain unparalleled transparency into your customers and markets to make decisions based on data, not guesswork. Use VoiceLine to centralize the collective knowledge of all your sales reps and make it instantly accessible to your company. Then perform powerful analysis on scale to reveal market trends, patterns, and more. Capture proprietary market information and use it as a competitive advantage with VoiceLine.\"})}),className:\"framer-1yfj4pf\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fo9xgt hidden-outp7q\",\"data-framer-name\":\"KPIs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1htihyo\",\"data-framer-name\":\"KPI\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tlgq2o\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c51ncf-container\",isAuthoredByUser:true,nodeId:\"PC3M7l2Fv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{s3lK_0fWl:{fontStyle:{fontFamily:'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',fontSize:\"80px\",letterSpacing:\"0em\",lineHeight:\"1em\"}}},children:/*#__PURE__*/_jsx(Counter,{color:\"var(--token-15971002-2dae-4039-a012-2f6fc0f2bac4, rgb(19, 32, 30))\",damping:100,decimal:false,decimalValue:99.99,direction:\"up\",fontStyle:{fontFamily:'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',fontSize:\"100px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"PC3M7l2Fv\",layoutId:\"PC3M7l2Fv\",prefix:false,prefixText:\"$\",stiffness:214,suffix:false,suffixText:\"%\",value:20,width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBCb2xk\",\"--framer-font-family\":'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-text-color\":\"var(--token-15971002-2dae-4039-a012-2f6fc0f2bac4, rgb(19, 32, 30))\"},children:\"%\"})}),className:\"framer-1iohngb\",fonts:[\"CUSTOM;Aeonik Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",children:\"Higher Revenue Growth\"})}),className:\"framer-7ly1l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-py1yii\",\"data-framer-name\":\"KPI\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f8v5co\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5cdof2-container\",isAuthoredByUser:true,nodeId:\"odzIKPWE0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{s3lK_0fWl:{fontStyle:{fontFamily:'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',fontSize:\"80px\",letterSpacing:\"0em\",lineHeight:\"1em\"}}},children:/*#__PURE__*/_jsx(Counter,{color:\"var(--token-15971002-2dae-4039-a012-2f6fc0f2bac4, rgb(19, 32, 30))\",damping:100,decimal:false,decimalValue:99.99,direction:\"up\",fontStyle:{fontFamily:'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',fontSize:\"100px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"odzIKPWE0\",layoutId:\"odzIKPWE0\",prefix:false,prefixText:\"$\",stiffness:214,suffix:false,suffixText:\"%\",value:20,width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBCb2xk\",\"--framer-font-family\":'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-text-color\":\"var(--token-15971002-2dae-4039-a012-2f6fc0f2bac4, rgb(19, 32, 30))\"},children:\"%\"})}),className:\"framer-z9qbw2\",fonts:[\"CUSTOM;Aeonik Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",children:\"Higher conversion rates\"})}),className:\"framer-1fsr0fo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10eb0rz hidden-72rtr7 hidden-e2x1a hidden-px9dbh hidden-o6179s\",\"data-framer-name\":\"KPIs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ody8gf\",\"data-framer-name\":\"KPI\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xmtupf\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9msf8q-container\",isAuthoredByUser:true,nodeId:\"dI_PqGQSr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Counter,{color:\"var(--token-2e1b7e26-b1fd-409d-a2bb-d754d7fd1197, rgb(39, 65, 61))\",damping:100,decimal:false,decimalValue:99.99,direction:\"up\",fontStyle:{fontFamily:'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',fontSize:\"70px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"dI_PqGQSr\",layoutId:\"dI_PqGQSr\",prefix:false,prefixText:\"$\",stiffness:214,suffix:false,suffixText:\"%\",value:20,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBCb2xk\",\"--framer-font-family\":'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-color\":\"var(--token-2e1b7e26-b1fd-409d-a2bb-d754d7fd1197, rgb(39, 65, 61))\"},children:\"%\"})}),className:\"framer-x1cn3x\",fonts:[\"CUSTOM;Aeonik Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBSZWd1bGFy\",\"--framer-font-family\":'\"Aeonik Regular\", \"Aeonik Regular Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(45, 67, 63)\"},children:\"Higher Revenue Growth\"})}),className:\"framer-tvilnb\",fonts:[\"CUSTOM;Aeonik Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u1cqci\",\"data-framer-name\":\"KPI\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13fas9f\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s9e2b5-container\",isAuthoredByUser:true,nodeId:\"RRpwJO9Gl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Counter,{color:\"var(--token-2e1b7e26-b1fd-409d-a2bb-d754d7fd1197, rgb(39, 65, 61))\",damping:100,decimal:false,decimalValue:99.99,direction:\"up\",fontStyle:{fontFamily:'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',fontSize:\"70px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"RRpwJO9Gl\",layoutId:\"RRpwJO9Gl\",prefix:false,prefixText:\"$\",stiffness:214,suffix:false,suffixText:\"%\",value:20,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBCb2xk\",\"--framer-font-family\":'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-color\":\"var(--token-2e1b7e26-b1fd-409d-a2bb-d754d7fd1197, rgb(39, 65, 61))\"},children:\"%\"})}),className:\"framer-e0xasn\",fonts:[\"CUSTOM;Aeonik Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBSZWd1bGFy\",\"--framer-font-family\":'\"Aeonik Regular\", \"Aeonik Regular Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(45, 67, 63)\"},children:\"Higher conversion rates\"})}),className:\"framer-73es9j\",fonts:[\"CUSTOM;Aeonik Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jlfxzw\",\"data-framer-name\":\".Element left\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ckhjo9\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-kh5ek9\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q7wyno\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yg2bmq\",\"data-styles-preset\":\"Iap84eHlG\",children:\"Explore deep market insights\"})}),className:\"framer-1h21d2j\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",children:\"VoiceLine automatically detects sales-relevant market insights from any customer interaction. Imagine an assistant who reads every report, note, and log across all regions and notifies you about important insights. The collective knowledge of your field sales force centralised in your private data lake - Gain a massive competitive advantage.\"})}),className:\"framer-c02csn\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w9ts3n\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 1px), 600px)`,src:\"https://framerusercontent.com/images/XPfSNAFsi11SJQvf3JEPE9Cw1M.svg\",srcSet:\"https://framerusercontent.com/images/XPfSNAFsi11SJQvf3JEPE9Cw1M.svg?scale-down-to=512 512w,https://framerusercontent.com/images/XPfSNAFsi11SJQvf3JEPE9Cw1M.svg 564w\"}},KZYm3bfcS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 1px), 600px)`,src:\"https://framerusercontent.com/images/XPfSNAFsi11SJQvf3JEPE9Cw1M.svg\",srcSet:\"https://framerusercontent.com/images/XPfSNAFsi11SJQvf3JEPE9Cw1M.svg?scale-down-to=512 512w,https://framerusercontent.com/images/XPfSNAFsi11SJQvf3JEPE9Cw1M.svg 564w\"}},s3lK_0fWl:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px) / 2, 1px), 599px), 400px)`,src:\"https://framerusercontent.com/images/XPfSNAFsi11SJQvf3JEPE9Cw1M.svg\",srcSet:\"https://framerusercontent.com/images/XPfSNAFsi11SJQvf3JEPE9Cw1M.svg?scale-down-to=512 512w,https://framerusercontent.com/images/XPfSNAFsi11SJQvf3JEPE9Cw1M.svg 564w\"}}},children:/*#__PURE__*/_jsx(Image,{\"aria-label\":\"An illustration of the VoiceLine recorder on a phone\",as:\"figure\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 112px) / 2, 1px), 599px), 400px)`,src:\"https://framerusercontent.com/images/XPfSNAFsi11SJQvf3JEPE9Cw1M.svg\",srcSet:\"https://framerusercontent.com/images/XPfSNAFsi11SJQvf3JEPE9Cw1M.svg?scale-down-to=512 512w,https://framerusercontent.com/images/XPfSNAFsi11SJQvf3JEPE9Cw1M.svg 564w\"},className:\"framer-a945yb\",\"data-border\":true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l38uij\",\"data-framer-name\":\".Element left\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11cavrh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:798,pixelWidth:1128,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 1px), 600px)`,src:\"https://framerusercontent.com/images/ikhQy6f5qQHJrIv8Ir7eNmuUT6U.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ikhQy6f5qQHJrIv8Ir7eNmuUT6U.png?scale-down-to=512 512w,https://framerusercontent.com/images/ikhQy6f5qQHJrIv8Ir7eNmuUT6U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ikhQy6f5qQHJrIv8Ir7eNmuUT6U.png 1128w\"}},KZYm3bfcS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:798,pixelWidth:1128,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 1px), 600px)`,src:\"https://framerusercontent.com/images/ikhQy6f5qQHJrIv8Ir7eNmuUT6U.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ikhQy6f5qQHJrIv8Ir7eNmuUT6U.png?scale-down-to=512 512w,https://framerusercontent.com/images/ikhQy6f5qQHJrIv8Ir7eNmuUT6U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ikhQy6f5qQHJrIv8Ir7eNmuUT6U.png 1128w\"}},s3lK_0fWl:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:798,pixelWidth:1128,positionX:\"center\",positionY:\"center\",sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px) / 2, 1px), 599px), 400px)`,src:\"https://framerusercontent.com/images/ikhQy6f5qQHJrIv8Ir7eNmuUT6U.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ikhQy6f5qQHJrIv8Ir7eNmuUT6U.png?scale-down-to=512 512w,https://framerusercontent.com/images/ikhQy6f5qQHJrIv8Ir7eNmuUT6U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ikhQy6f5qQHJrIv8Ir7eNmuUT6U.png 1128w\"}}},children:/*#__PURE__*/_jsx(Image,{\"aria-label\":\"An illustration of the VoiceLine recorder on a phone\",as:\"figure\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:798,pixelWidth:1128,positionX:\"center\",positionY:\"center\",sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 112px) / 2, 1px), 599px), 400px)`,src:\"https://framerusercontent.com/images/ikhQy6f5qQHJrIv8Ir7eNmuUT6U.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ikhQy6f5qQHJrIv8Ir7eNmuUT6U.png?scale-down-to=512 512w,https://framerusercontent.com/images/ikhQy6f5qQHJrIv8Ir7eNmuUT6U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ikhQy6f5qQHJrIv8Ir7eNmuUT6U.png 1128w\"},className:\"framer-lv5051\",\"data-border\":true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-py04in\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f7yl3u\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ofp28e\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yg2bmq\",\"data-styles-preset\":\"Iap84eHlG\",children:\"Discover market trends and patterns\"})}),className:\"framer-plaaqj\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",children:\"Cluster your market insights to reveal business-critical commonalities, anomalies, and new trends you should know about with the VoiceLine AI Market Radar. Find out about product feedback, competitive movements, and customer relationships - or set up custom trackers for full control. Be on top of the markets. Always.\"})}),className:\"framer-1j9eqly\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-is4s7f\",\"data-framer-name\":\".Element left\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4749zo\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1csynhh\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uponl1\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yg2bmq\",\"data-styles-preset\":\"Iap84eHlG\",children:\"Get real-time alerts\"})}),className:\"framer-vy106s\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",children:\"Feel the heartbeat of your field sales force. Get real-time notifications and alerts on urgent new insights with The VoiceLine AI Market Pulse. Never miss an opportunity or spot a risk too late again. Easily orchestrate and broadcast valuable information to your salesforce so they can act and take advantage in time.\"})}),className:\"framer-1rdnw4v\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f4cl6x\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:798,intrinsicWidth:1128,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 1px), 600px)`,src:\"https://framerusercontent.com/images/xRKn7Dmd4J6ZQ5w0xu0z29Xyidk.svg\",srcSet:\"https://framerusercontent.com/images/xRKn7Dmd4J6ZQ5w0xu0z29Xyidk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/xRKn7Dmd4J6ZQ5w0xu0z29Xyidk.svg 564w\"}},KZYm3bfcS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:798,intrinsicWidth:1128,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 1px), 600px)`,src:\"https://framerusercontent.com/images/xRKn7Dmd4J6ZQ5w0xu0z29Xyidk.svg\",srcSet:\"https://framerusercontent.com/images/xRKn7Dmd4J6ZQ5w0xu0z29Xyidk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/xRKn7Dmd4J6ZQ5w0xu0z29Xyidk.svg 564w\"}},s3lK_0fWl:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:798,intrinsicWidth:1128,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px) / 2, 1px), 599px), 400px)`,src:\"https://framerusercontent.com/images/xRKn7Dmd4J6ZQ5w0xu0z29Xyidk.svg\",srcSet:\"https://framerusercontent.com/images/xRKn7Dmd4J6ZQ5w0xu0z29Xyidk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/xRKn7Dmd4J6ZQ5w0xu0z29Xyidk.svg 564w\"}}},children:/*#__PURE__*/_jsx(Image,{\"aria-label\":\"An illustration of the VoiceLine recorder on a phone\",as:\"figure\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:798,intrinsicWidth:1128,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 112px) / 2, 1px), 599px), 400px)`,src:\"https://framerusercontent.com/images/xRKn7Dmd4J6ZQ5w0xu0z29Xyidk.svg\",srcSet:\"https://framerusercontent.com/images/xRKn7Dmd4J6ZQ5w0xu0z29Xyidk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/xRKn7Dmd4J6ZQ5w0xu0z29Xyidk.svg 564w\"},className:\"framer-1eg0f2h\",\"data-border\":true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ems8r1\",\"data-framer-name\":\".Element left\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xspg3k\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:798,pixelWidth:1128,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 1px), 600px)`,src:\"https://framerusercontent.com/images/DVrkvWqbpJwCJMPHZfWv2E4711I.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DVrkvWqbpJwCJMPHZfWv2E4711I.png?scale-down-to=512 512w,https://framerusercontent.com/images/DVrkvWqbpJwCJMPHZfWv2E4711I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DVrkvWqbpJwCJMPHZfWv2E4711I.png 1128w\"}},KZYm3bfcS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:798,pixelWidth:1128,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 1px), 600px)`,src:\"https://framerusercontent.com/images/DVrkvWqbpJwCJMPHZfWv2E4711I.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DVrkvWqbpJwCJMPHZfWv2E4711I.png?scale-down-to=512 512w,https://framerusercontent.com/images/DVrkvWqbpJwCJMPHZfWv2E4711I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DVrkvWqbpJwCJMPHZfWv2E4711I.png 1128w\"}},s3lK_0fWl:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:798,pixelWidth:1128,positionX:\"center\",positionY:\"center\",sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px) / 2, 1px), 599px), 400px)`,src:\"https://framerusercontent.com/images/DVrkvWqbpJwCJMPHZfWv2E4711I.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DVrkvWqbpJwCJMPHZfWv2E4711I.png?scale-down-to=512 512w,https://framerusercontent.com/images/DVrkvWqbpJwCJMPHZfWv2E4711I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DVrkvWqbpJwCJMPHZfWv2E4711I.png 1128w\"}}},children:/*#__PURE__*/_jsx(Image,{\"aria-label\":\"An illustration of the VoiceLine recorder on a phone\",as:\"figure\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:798,pixelWidth:1128,positionX:\"center\",positionY:\"center\",sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 112px) / 2, 1px), 599px), 400px)`,src:\"https://framerusercontent.com/images/DVrkvWqbpJwCJMPHZfWv2E4711I.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DVrkvWqbpJwCJMPHZfWv2E4711I.png?scale-down-to=512 512w,https://framerusercontent.com/images/DVrkvWqbpJwCJMPHZfWv2E4711I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DVrkvWqbpJwCJMPHZfWv2E4711I.png 1128w\"},className:\"framer-8dw5ft\",\"data-border\":true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13xbgud\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-9bsaz7\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c4y6a1\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yg2bmq\",\"data-styles-preset\":\"Iap84eHlG\",children:\"Extensive close lost analysis\"})}),className:\"framer-1wwzs86\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",children:\"Find the truth in your pipeline, customer interactions, and deals. VoiceLine provides deep qualitative data coupled with quantitative metrics, so you know exactly where and why you are winning or losing. Know, act, and improve to win more deals.\"})}),className:\"framer-zdjln4\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-6cu4fc\",\"data-framer-name\":\"Section 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{background:{alt:\"\",fit:\"stretch\",pixelHeight:2160,pixelWidth:4080,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 1440px)`,src:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png\",srcSet:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png 4080w\"}},KZYm3bfcS:{background:{alt:\"\",fit:\"stretch\",pixelHeight:2160,pixelWidth:4080,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 1440px)`,src:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png\",srcSet:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png 4080w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:2160,pixelWidth:4080,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 1440px)`,src:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png\",srcSet:\"https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RQnqC5Ntol9dq1QkNHbgXqAZiBo.png 4080w\"},className:\"framer-gg1zsp\",\"data-border\":true,\"data-framer-name\":\".Element left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i1e61b\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lramel\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x3x4bf\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-78e30l\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-h8coz\",\"data-styles-preset\":\"GI_1ocJJ9\",children:\"Coach\"})}),className:\"framer-8ctbof\",\"data-framer-name\":\"VoiceLine is field sales intelligence made easy. Work with voice to capture any field interaction in seconds. Use AI to bring data driven decision-making to your sales team.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-nbh0s8\",\"data-styles-preset\":\"FqarI9KTE\",children:\"Coach your team to excellence\"})}),className:\"framer-1br8j02\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",children:\"Use data to coach your sales team to win. Know high performers from low performers and replicate what works to standardize excellence across your entire salesforce - for every single visit. Launch, track and analyze new initiative in seconds to constantly improve. Say goodbye to endless 1-1s and follow-ups while still having no control, and say hello to a high-performing and happy salesforce. All available at scale to increase your sales numbers and revenue.\"})}),className:\"framer-1a51mxy\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-35retl hidden-72rtr7 hidden-e2x1a hidden-px9dbh hidden-o6179s\",\"data-framer-name\":\"KPIs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hihqq7\",\"data-framer-name\":\"KPI\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16zqws7\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17qq3ng-container\",isAuthoredByUser:true,nodeId:\"U421scqgC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Counter,{color:\"var(--token-2e1b7e26-b1fd-409d-a2bb-d754d7fd1197, rgb(39, 65, 61))\",damping:100,decimal:false,decimalValue:99.99,direction:\"up\",fontStyle:{fontFamily:'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',fontSize:\"70px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"U421scqgC\",layoutId:\"U421scqgC\",prefix:false,prefixText:\"$\",stiffness:214,suffix:false,suffixText:\"%\",value:5,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBCb2xk\",\"--framer-font-family\":'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-color\":\"var(--token-2e1b7e26-b1fd-409d-a2bb-d754d7fd1197, rgb(39, 65, 61))\"},children:\"h\"})}),className:\"framer-mxhk9x\",fonts:[\"CUSTOM;Aeonik Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBSZWd1bGFy\",\"--framer-font-family\":'\"Aeonik Regular\", \"Aeonik Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(45, 67, 63)\"},children:\"More active selleing time per week/rep\"})}),className:\"framer-uabv9s\",fonts:[\"CUSTOM;Aeonik Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tzwr2k\",\"data-framer-name\":\"KPI\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x5pf3j\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8qmhj1-container\",isAuthoredByUser:true,nodeId:\"DJbj8kppF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Counter,{color:\"var(--token-2e1b7e26-b1fd-409d-a2bb-d754d7fd1197, rgb(39, 65, 61))\",damping:100,decimal:false,decimalValue:99.99,direction:\"up\",fontStyle:{fontFamily:'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',fontSize:\"70px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"DJbj8kppF\",layoutId:\"DJbj8kppF\",prefix:false,prefixText:\"$\",stiffness:214,suffix:false,suffixText:\"%\",value:20,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBCb2xk\",\"--framer-font-family\":'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-color\":\"var(--token-2e1b7e26-b1fd-409d-a2bb-d754d7fd1197, rgb(39, 65, 61))\"},children:\"%\"})}),className:\"framer-103yugt\",fonts:[\"CUSTOM;Aeonik Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBSZWd1bGFy\",\"--framer-font-family\":'\"Aeonik Regular\", \"Aeonik Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(45, 67, 63)\"},children:\"Faster sales cycles\"})}),className:\"framer-11dz2wm\",fonts:[\"CUSTOM;Aeonik Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19kf18d hidden-outp7q\",\"data-framer-name\":\"KPIs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yda20g\",\"data-framer-name\":\"KPI\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1441ka3\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pnok6q-container\",isAuthoredByUser:true,nodeId:\"ARbaFgxga\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{s3lK_0fWl:{fontStyle:{fontFamily:'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',fontSize:\"80px\",letterSpacing:\"0em\",lineHeight:\"1em\"}}},children:/*#__PURE__*/_jsx(Counter,{color:\"var(--token-15971002-2dae-4039-a012-2f6fc0f2bac4, rgb(19, 32, 30))\",damping:100,decimal:false,decimalValue:99.99,direction:\"up\",fontStyle:{fontFamily:'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',fontSize:\"100px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"ARbaFgxga\",layoutId:\"ARbaFgxga\",prefix:false,prefixText:\"$\",stiffness:214,suffix:false,suffixText:\"%\",value:5,width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBCb2xk\",\"--framer-font-family\":'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-text-color\":\"var(--token-15971002-2dae-4039-a012-2f6fc0f2bac4, rgb(19, 32, 30))\"},children:\"h\"})}),className:\"framer-1jbh2pu\",fonts:[\"CUSTOM;Aeonik Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",style:{\"--framer-text-alignment\":\"center\"},children:\"More active selling time per week/rep\"})}),className:\"framer-1rffw5k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nqjr55\",\"data-framer-name\":\"KPI\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14j2iij\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15sltla-container\",isAuthoredByUser:true,nodeId:\"sMJ8nwFux\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{s3lK_0fWl:{fontStyle:{fontFamily:'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',fontSize:\"80px\",letterSpacing:\"0em\",lineHeight:\"1em\"}}},children:/*#__PURE__*/_jsx(Counter,{color:\"var(--token-15971002-2dae-4039-a012-2f6fc0f2bac4, rgb(19, 32, 30))\",damping:100,decimal:false,decimalValue:99.99,direction:\"up\",fontStyle:{fontFamily:'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',fontSize:\"100px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"sMJ8nwFux\",layoutId:\"sMJ8nwFux\",prefix:false,prefixText:\"$\",stiffness:214,suffix:false,suffixText:\"%\",value:20,width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBCb2xk\",\"--framer-font-family\":'\"Aeonik Bold\", \"Aeonik Bold Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-text-color\":\"var(--token-15971002-2dae-4039-a012-2f6fc0f2bac4, rgb(19, 32, 30))\"},children:\"%\"})}),className:\"framer-lizk8s\",fonts:[\"CUSTOM;Aeonik Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",children:\"Faster sales cycles\"})}),className:\"framer-1hgpvm3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:658,intrinsicWidth:530,pixelHeight:2166,pixelWidth:2667,positionX:\"10.6%\",positionY:\"43.8%\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 1440px) - 24px)`,src:\"https://framerusercontent.com/images/d9d7hyuDnxJ0WwoOBDkjo9cBdA.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/d9d7hyuDnxJ0WwoOBDkjo9cBdA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/d9d7hyuDnxJ0WwoOBDkjo9cBdA.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/d9d7hyuDnxJ0WwoOBDkjo9cBdA.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/d9d7hyuDnxJ0WwoOBDkjo9cBdA.webp 2667w\"}},KZYm3bfcS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:658,intrinsicWidth:530,pixelHeight:2166,pixelWidth:2667,positionX:\"10.6%\",positionY:\"43.8%\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 1440px) - 24px)`,src:\"https://framerusercontent.com/images/d9d7hyuDnxJ0WwoOBDkjo9cBdA.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/d9d7hyuDnxJ0WwoOBDkjo9cBdA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/d9d7hyuDnxJ0WwoOBDkjo9cBdA.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/d9d7hyuDnxJ0WwoOBDkjo9cBdA.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/d9d7hyuDnxJ0WwoOBDkjo9cBdA.webp 2667w\"}},s3lK_0fWl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:658,intrinsicWidth:530,pixelHeight:2166,pixelWidth:2667,positionX:\"10.6%\",positionY:\"43.8%\",sizes:`min(max((min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 1440px) - 40px) / 2, 1px), (min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 1440px) - 40px) * 0.48)`,src:\"https://framerusercontent.com/images/d9d7hyuDnxJ0WwoOBDkjo9cBdA.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/d9d7hyuDnxJ0WwoOBDkjo9cBdA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/d9d7hyuDnxJ0WwoOBDkjo9cBdA.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/d9d7hyuDnxJ0WwoOBDkjo9cBdA.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/d9d7hyuDnxJ0WwoOBDkjo9cBdA.webp 2667w\"}}},children:/*#__PURE__*/_jsx(Image,{\"aria-label\":\"An illustration of the VoiceLine Smart Report on a phone\",as:\"figure\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:658,intrinsicWidth:530,pixelHeight:2166,pixelWidth:2667,positionX:\"10.6%\",positionY:\"43.8%\",sizes:`min(max((min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 1440px) - 76px) / 2, 1px), (min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 1440px) - 76px) * 0.48)`,src:\"https://framerusercontent.com/images/d9d7hyuDnxJ0WwoOBDkjo9cBdA.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/d9d7hyuDnxJ0WwoOBDkjo9cBdA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/d9d7hyuDnxJ0WwoOBDkjo9cBdA.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/d9d7hyuDnxJ0WwoOBDkjo9cBdA.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/d9d7hyuDnxJ0WwoOBDkjo9cBdA.webp 2667w\"},className:\"framer-1u235rl\",\"data-framer-name\":\"Illustration placeholder\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m5ds7g\",\"data-framer-name\":\".Element left\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7z2slc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 1px), 600px)`,src:\"https://framerusercontent.com/images/tPvbhTvT1NcaT8RcWbmWOO7FE.svg\",srcSet:\"https://framerusercontent.com/images/tPvbhTvT1NcaT8RcWbmWOO7FE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/tPvbhTvT1NcaT8RcWbmWOO7FE.svg 564w\"}},KZYm3bfcS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 1px), 600px)`,src:\"https://framerusercontent.com/images/tPvbhTvT1NcaT8RcWbmWOO7FE.svg\",srcSet:\"https://framerusercontent.com/images/tPvbhTvT1NcaT8RcWbmWOO7FE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/tPvbhTvT1NcaT8RcWbmWOO7FE.svg 564w\"}}},children:/*#__PURE__*/_jsx(Image,{\"aria-label\":\"An illustration of the VoiceLine recorder on a phone\",as:\"figure\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 112px) / 2, 1px), 599px), 400px)`,src:\"https://framerusercontent.com/images/tPvbhTvT1NcaT8RcWbmWOO7FE.svg\",srcSet:\"https://framerusercontent.com/images/tPvbhTvT1NcaT8RcWbmWOO7FE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/tPvbhTvT1NcaT8RcWbmWOO7FE.svg 564w\"},className:\"framer-1ck00cc\",\"data-border\":true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18htao3\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-tqt60g\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q6ftd8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yg2bmq\",\"data-styles-preset\":\"Iap84eHlG\",children:\"Coach based on reality\"})}),className:\"framer-lhc51r\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",children:\"Know exactly what\u2019s going on in the field and in every visit, so you can quickly spot problem areas and coach them to success. Spot patterns and optimize on an individual, team, regional, or company-wide level.\"})}),className:\"framer-q63tdl\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cfgip5\",\"data-framer-name\":\".Element left\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mirbii\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ny8c09\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-127aegg\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yg2bmq\",\"data-styles-preset\":\"Iap84eHlG\",children:\"Standardize excellence\"})}),className:\"framer-169ren4\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",children:\"Replicate what works and establish a reporting standard in the field. Build a script and work-process proven for success and push it to every field sales rep with VoiceLine\u2019s dynamic checklist. The sales rep will receive clarifying questions from the AI Assistant - In the moment when the information is fresh, not weeks after. Win-win for both sales reps and executives.\"})}),className:\"framer-1u9slb\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-myye96\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 1px), 600px)`,src:\"https://framerusercontent.com/images/bocpeYZa50yNRaK26U2ZTCw6G6I.svg\",srcSet:\"https://framerusercontent.com/images/bocpeYZa50yNRaK26U2ZTCw6G6I.svg?scale-down-to=512 512w,https://framerusercontent.com/images/bocpeYZa50yNRaK26U2ZTCw6G6I.svg 564w\"}},KZYm3bfcS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 1px), 600px)`,src:\"https://framerusercontent.com/images/bocpeYZa50yNRaK26U2ZTCw6G6I.svg\",srcSet:\"https://framerusercontent.com/images/bocpeYZa50yNRaK26U2ZTCw6G6I.svg?scale-down-to=512 512w,https://framerusercontent.com/images/bocpeYZa50yNRaK26U2ZTCw6G6I.svg 564w\"}}},children:/*#__PURE__*/_jsx(Image,{\"aria-label\":\"An illustration of the VoiceLine recorder on a phone\",as:\"figure\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 112px) / 2, 1px), 599px), 400px)`,src:\"https://framerusercontent.com/images/bocpeYZa50yNRaK26U2ZTCw6G6I.svg\",srcSet:\"https://framerusercontent.com/images/bocpeYZa50yNRaK26U2ZTCw6G6I.svg?scale-down-to=512 512w,https://framerusercontent.com/images/bocpeYZa50yNRaK26U2ZTCw6G6I.svg 564w\"},className:\"framer-1s40cdi\",\"data-border\":true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a3y9ql\",\"data-framer-name\":\".Element left\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b3ufeq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 1px), 600px)`,src:\"https://framerusercontent.com/images/RCaj5Gr80k0fBUTS4SAvcNWokg.svg\",srcSet:\"https://framerusercontent.com/images/RCaj5Gr80k0fBUTS4SAvcNWokg.svg?scale-down-to=512 512w,https://framerusercontent.com/images/RCaj5Gr80k0fBUTS4SAvcNWokg.svg 564w\"}},KZYm3bfcS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 1px), 600px)`,src:\"https://framerusercontent.com/images/RCaj5Gr80k0fBUTS4SAvcNWokg.svg\",srcSet:\"https://framerusercontent.com/images/RCaj5Gr80k0fBUTS4SAvcNWokg.svg?scale-down-to=512 512w,https://framerusercontent.com/images/RCaj5Gr80k0fBUTS4SAvcNWokg.svg 564w\"}}},children:/*#__PURE__*/_jsx(Image,{\"aria-label\":\"An illustration of the VoiceLine recorder on a phone\",as:\"figure\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:399,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 112px) / 2, 1px), 599px), 400px)`,src:\"https://framerusercontent.com/images/RCaj5Gr80k0fBUTS4SAvcNWokg.svg\",srcSet:\"https://framerusercontent.com/images/RCaj5Gr80k0fBUTS4SAvcNWokg.svg?scale-down-to=512 512w,https://framerusercontent.com/images/RCaj5Gr80k0fBUTS4SAvcNWokg.svg 564w\"},className:\"framer-qn6tsj\",\"data-border\":true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cyonvs\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-pdlmqi\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nkrbp5\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yg2bmq\",\"data-styles-preset\":\"Iap84eHlG\",children:\"Turn strategy into action\"})}),className:\"framer-1kmjqfu\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",children:\"Launching and tracking new strategic initiatives has never been easier. Dynamically set up reporting content and specific agenda points for your entire salesforce with a few clicks. Then distribute it to specific teams, regions, or the entire company and track the implementation. Analyze the results and constantly improve.\"})}),className:\"framer-pb99rc\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14urwjs\",\"data-framer-name\":\".Element left\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yznhi9\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-vxcadx\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1abnpar\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yg2bmq\",\"data-styles-preset\":\"Iap84eHlG\",children:\"Done at scale. In seconds\"})}),className:\"framer-jw7y4k\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",children:\"Stop letting a lack of time or data constrain your coaching. With VoiceLine, you get everything served in a dashboard so you can overview and act immediately. Setup and deploy decisions across industries, territories and product areas with just a few clicks to coach your team at scale, no matter the size. Then analyze the results to constantly improve.\"})}),className:\"framer-gqv5ug\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rb68wl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:798,pixelWidth:1128,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 1px), 600px)`,src:\"https://framerusercontent.com/images/PhuxjTPhw0wjnyYGRrVfVxW5YE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PhuxjTPhw0wjnyYGRrVfVxW5YE.png?scale-down-to=512 512w,https://framerusercontent.com/images/PhuxjTPhw0wjnyYGRrVfVxW5YE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PhuxjTPhw0wjnyYGRrVfVxW5YE.png 1128w\"}},KZYm3bfcS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:798,pixelWidth:1128,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 1px), 600px)`,src:\"https://framerusercontent.com/images/PhuxjTPhw0wjnyYGRrVfVxW5YE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PhuxjTPhw0wjnyYGRrVfVxW5YE.png?scale-down-to=512 512w,https://framerusercontent.com/images/PhuxjTPhw0wjnyYGRrVfVxW5YE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PhuxjTPhw0wjnyYGRrVfVxW5YE.png 1128w\"}}},children:/*#__PURE__*/_jsx(Image,{\"aria-label\":\"An illustration of the VoiceLine recorder on a phone\",as:\"figure\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:399,intrinsicWidth:564,pixelHeight:798,pixelWidth:1128,positionX:\"center\",positionY:\"center\",sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 112px) / 2, 1px), 599px), 400px)`,src:\"https://framerusercontent.com/images/PhuxjTPhw0wjnyYGRrVfVxW5YE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PhuxjTPhw0wjnyYGRrVfVxW5YE.png?scale-down-to=512 512w,https://framerusercontent.com/images/PhuxjTPhw0wjnyYGRrVfVxW5YE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PhuxjTPhw0wjnyYGRrVfVxW5YE.png 1128w\"},className:\"framer-4dkn1v\",\"data-border\":true})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-kphken\",\"data-framer-name\":\"Testimonials\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1029,pixelWidth:2560,positionX:\"center\",positionY:\"top\",sizes:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,src:\"https://framerusercontent.com/images/dnVRhKDgPrZs2xkg4VQG3zncSuk.webp\",srcSet:\"https://framerusercontent.com/images/dnVRhKDgPrZs2xkg4VQG3zncSuk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/dnVRhKDgPrZs2xkg4VQG3zncSuk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/dnVRhKDgPrZs2xkg4VQG3zncSuk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/dnVRhKDgPrZs2xkg4VQG3zncSuk.webp 2560w\"},className:\"framer-mi4gfs hidden-outp7q\",\"data-framer-name\":\"Background image\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KZYm3bfcS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-nbh0s8\",\"data-styles-preset\":\"FqarI9KTE\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our users love VoiceLine\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-nbh0s8\",\"data-styles-preset\":\"FqarI9KTE\",children:\"Our users love VoiceLine\"})}),className:\"framer-1ayvzs3\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uboiw9-container hidden-72rtr7 hidden-e2x1a hidden-px9dbh hidden-o6179s\",isModuleExternal:true,nodeId:\"NK08wkKuF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow1,{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:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:.85},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:15,overflow:false},gap:10,height:\"100%\",id:\"NK08wkKuF\",intervalControl:4,itemAmount:1,layoutId:\"NK08wkKuF\",padding:24,paddingBottom:24,paddingLeft:24,paddingPerSide:true,paddingRight:24,paddingTop:24,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(ComponentViewportProvider,{height:178,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-u8iwha-container\",\"data-framer-name\":\"Marcel Grendel, Mobile\",inComponentSlot:true,name:\"Marcel Grendel, Mobile\",nodeId:\"aLKT1l8Fn\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"aLKT1l8Fn\",ke6OfpWgM:\"\u201CThe implementation of VoiceLine has not only allowed us to work more efficiently but has also redefined the way we interact with our customers. We are proud to be pioneers of our industry with this innovative solution.\u201D\",KwgsuQf3t:addImageAlt({pixelHeight:766,pixelWidth:1e3,positionX:\"36.4%\",positionY:\"48.1%\",src:\"https://framerusercontent.com/images/wjjTAZxBuNvoMS5QuhBHmqAHqcQ.png?scale-down-to=512\"},\"\"),layoutId:\"aLKT1l8Fn\",name:\"Marcel Grendel, Mobile\",PyCNd0BKx:\"Field Sales Executive\",style:{width:\"100%\"},variant:\"NJk3DJeKF\",vgKQQvS3x:addImageAlt({pixelHeight:48,pixelWidth:132,src:\"https://framerusercontent.com/images/OZsfM0XWJodmhDV5o7BWU9iwjvo.svg\"},\"\"),width:\"100%\",ZxDvDHCGG:\"Marcel Grendel\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:178,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4ff4ch-container\",\"data-framer-name\":\"Bernd Hohrein, mobile\",inComponentSlot:true,name:\"Bernd Hohrein, mobile\",nodeId:\"TlsolE1Dj\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"TlsolE1Dj\",ke6OfpWgM:\"\u201CWith VoiceLine, my team can focus on spending time with their customers again instead of writing reports.\u201D\",KwgsuQf3t:addImageAlt({pixelHeight:750,pixelWidth:750,src:\"https://framerusercontent.com/images/Kn6qSfpGVyqwmFuSZQsOY3jk9E.jpeg?scale-down-to=512\"},\"\"),layoutId:\"TlsolE1Dj\",name:\"Bernd Hohrein, mobile\",PyCNd0BKx:\"Field Sales Team\",style:{width:\"100%\"},variant:\"NJk3DJeKF\",vgKQQvS3x:addImageAlt({pixelHeight:26,pixelWidth:173,src:\"https://framerusercontent.com/images/f6uX1nSphgpNOCklFEO6a3FvY.svg\"},\"\"),width:\"100%\",ZxDvDHCGG:\"Bernd Hohrein\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:178,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2xffwp-container\",\"data-framer-name\":\"Mario Voit, Mobile\",inComponentSlot:true,name:\"Mario Voit, Mobile\",nodeId:\"ThppLkOxk\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"ThppLkOxk\",ke6OfpWgM:\"\u201CThanks to VoiceLine, we can finally have a clear view of the market and customers, allowing us to identify potential opportunities at an early stage.\u201D\",KwgsuQf3t:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/IoBS1sgsdzWpbLRDmarSaqGATfk.jpeg?scale-down-to=512\"},\"\"),layoutId:\"ThppLkOxk\",name:\"Mario Voit, Mobile\",PyCNd0BKx:\"Head of Sales\",style:{width:\"100%\"},variant:\"NJk3DJeKF\",vgKQQvS3x:addImageAlt({pixelHeight:37,pixelWidth:130,src:\"https://framerusercontent.com/images/JSv8sfn7JFYB4GwCXAtrl9z8OPw.svg\"},\"\"),width:\"100%\",ZxDvDHCGG:\"Mario Voitswinkler\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:178,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-t33frr-container\",\"data-framer-name\":\"Jorn Lange, Mobile\",inComponentSlot:true,name:\"Jorn Lange, Mobile\",nodeId:\"cLzAeqTqd\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"cLzAeqTqd\",ke6OfpWgM:\"\u201CI am really impressed, VoiceLine makes my work so much easier.\u201D\",KwgsuQf3t:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/jRyPJbKbfbBp5Qc2471Z1dW0iE.jpeg?scale-down-to=512\"},\"\"),layoutId:\"cLzAeqTqd\",name:\"Jorn Lange, Mobile\",PyCNd0BKx:\"Field sales representative\",style:{width:\"100%\"},variant:\"NJk3DJeKF\",vgKQQvS3x:addImageAlt({pixelHeight:41,pixelWidth:166,src:\"https://framerusercontent.com/images/8BaF0PLMvxhNsWjDFTPelQsNtMA.png\"},\"\"),width:\"100%\",ZxDvDHCGG:\"J\\xf6rn Lange\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:178,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wnhei7-container\",\"data-framer-name\":\"Micahel Busse, Mobile\",inComponentSlot:true,name:\"Micahel Busse, Mobile\",nodeId:\"vNsxI_lqW\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"vNsxI_lqW\",ke6OfpWgM:\"\u201CI always hated voice messages, but since I know VoiceLine, I use it every single day.\u201D\",KwgsuQf3t:addImageAlt({pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/t6gzNtvkk3xnafpYnbGY8Px310.jpeg\"},\"\"),layoutId:\"vNsxI_lqW\",name:\"Micahel Busse, Mobile\",PyCNd0BKx:\"Field sales representative\",style:{width:\"100%\"},variant:\"NJk3DJeKF\",vgKQQvS3x:addImageAlt({pixelHeight:266,pixelWidth:1920,src:\"https://framerusercontent.com/images/iBj2wViDs9wCFjqYoNvyf6xac.png\",srcSet:\"https://framerusercontent.com/images/iBj2wViDs9wCFjqYoNvyf6xac.png?scale-down-to=512 512w,https://framerusercontent.com/images/iBj2wViDs9wCFjqYoNvyf6xac.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iBj2wViDs9wCFjqYoNvyf6xac.png 1920w\"},\"\"),width:\"100%\",ZxDvDHCGG:\"Michael Busse\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:178,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rr4z1f-container\",\"data-framer-name\":\"Uwe Walter, Mobile\",inComponentSlot:true,name:\"Uwe Walter, Mobile\",nodeId:\"W0Og4JsP6\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"W0Og4JsP6\",ke6OfpWgM:\"\u201CI don\u2019t get why VoiceLine isn't already the standard in every sales organization.\u201D\",KwgsuQf3t:addImageAlt({pixelHeight:931,pixelWidth:911,positionX:\"44.9%\",positionY:\"95.4%\",src:\"https://framerusercontent.com/images/fwX8dshLwrYQDwisQ8RXcvixD0.png\",srcSet:\"https://framerusercontent.com/images/fwX8dshLwrYQDwisQ8RXcvixD0.png 911w\"},\"\"),layoutId:\"W0Og4JsP6\",name:\"Uwe Walter, Mobile\",PyCNd0BKx:\"Field sales representative\",style:{width:\"100%\"},variant:\"NJk3DJeKF\",vgKQQvS3x:addImageAlt({pixelHeight:255,pixelWidth:743,src:\"https://framerusercontent.com/images/sOxIuJj4BIQSfHzdsdrqf7TVw.png\",srcSet:\"https://framerusercontent.com/images/sOxIuJj4BIQSfHzdsdrqf7TVw.png?scale-down-to=512 512w,https://framerusercontent.com/images/sOxIuJj4BIQSfHzdsdrqf7TVw.png 743w\"},\"\"),width:\"100%\",ZxDvDHCGG:\"Uwe Walter\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cbxf8c hidden-outp7q\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7lmsk7-container\",isModuleExternal:true,nodeId:\"zrRRvau88\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:28,height:\"100%\",hoverFactor:0,id:\"zrRRvau88\",layoutId:\"zrRRvau88\",padding:10,paddingBottom:24,paddingLeft:28,paddingPerSide:true,paddingRight:10,paddingTop:28,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:178,width:\"544px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-go0mb3-container\",\"data-framer-name\":\"Uwe Walter\",inComponentSlot:true,name:\"Uwe Walter\",nodeId:\"OQ9_bmGFh\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"OQ9_bmGFh\",ke6OfpWgM:\"\u201CI don\u2019t get why VoiceLine isn't already the standard in every sales organization.\u201D\",KwgsuQf3t:addImageAlt({pixelHeight:931,pixelWidth:911,positionX:\"44.9%\",positionY:\"95.4%\",src:\"https://framerusercontent.com/images/fwX8dshLwrYQDwisQ8RXcvixD0.png\",srcSet:\"https://framerusercontent.com/images/fwX8dshLwrYQDwisQ8RXcvixD0.png 911w\"},\"\"),layoutId:\"OQ9_bmGFh\",name:\"Uwe Walter\",PyCNd0BKx:\"Field sales representative\",style:{width:\"100%\"},variant:\"VxgP0fjIC\",vgKQQvS3x:addImageAlt({pixelHeight:255,pixelWidth:743,src:\"https://framerusercontent.com/images/sOxIuJj4BIQSfHzdsdrqf7TVw.png\",srcSet:\"https://framerusercontent.com/images/sOxIuJj4BIQSfHzdsdrqf7TVw.png?scale-down-to=512 512w,https://framerusercontent.com/images/sOxIuJj4BIQSfHzdsdrqf7TVw.png 743w\"},\"\"),width:\"100%\",ZxDvDHCGG:\"Uwe Walter\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:178,width:\"573px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-14eek9o-container\",\"data-framer-name\":\"Micahel Busse\",inComponentSlot:true,name:\"Micahel Busse\",nodeId:\"dPxlLi47E\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"dPxlLi47E\",ke6OfpWgM:\"\u201CI always hated voice messages, but since I know VoiceLine, I use it every single day.\u201D\",KwgsuQf3t:addImageAlt({pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/t6gzNtvkk3xnafpYnbGY8Px310.jpeg\"},\"\"),layoutId:\"dPxlLi47E\",name:\"Micahel Busse\",PyCNd0BKx:\"Field sales representative\",style:{width:\"100%\"},variant:\"VxgP0fjIC\",vgKQQvS3x:addImageAlt({pixelHeight:266,pixelWidth:1920,src:\"https://framerusercontent.com/images/iBj2wViDs9wCFjqYoNvyf6xac.png\",srcSet:\"https://framerusercontent.com/images/iBj2wViDs9wCFjqYoNvyf6xac.png?scale-down-to=512 512w,https://framerusercontent.com/images/iBj2wViDs9wCFjqYoNvyf6xac.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iBj2wViDs9wCFjqYoNvyf6xac.png 1920w\"},\"\"),width:\"100%\",ZxDvDHCGG:\"Michael Busse\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:178,width:\"573px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-konchq-container\",\"data-framer-name\":\"Jorn Lange\",inComponentSlot:true,name:\"Jorn Lange\",nodeId:\"lPUsJfeT3\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"lPUsJfeT3\",ke6OfpWgM:\"\u201CI am really impressed, VoiceLine makes my work so much easier.\u201D\",KwgsuQf3t:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/jRyPJbKbfbBp5Qc2471Z1dW0iE.jpeg\",srcSet:\"https://framerusercontent.com/images/jRyPJbKbfbBp5Qc2471Z1dW0iE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/jRyPJbKbfbBp5Qc2471Z1dW0iE.jpeg 800w\"},\"\"),layoutId:\"lPUsJfeT3\",name:\"Jorn Lange\",PyCNd0BKx:\"Field sales representative\",style:{width:\"100%\"},variant:\"VxgP0fjIC\",vgKQQvS3x:addImageAlt({pixelHeight:41,pixelWidth:166,src:\"https://framerusercontent.com/images/8BaF0PLMvxhNsWjDFTPelQsNtMA.png\"},\"\"),width:\"100%\",ZxDvDHCGG:\"J\\xf6rn Lange\"})})})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9eyk9u-container\",isModuleExternal:true,nodeId:\"xNeoc5V38\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pYgsX8wis:{paddingTop:20}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:28,height:\"100%\",hoverFactor:0,id:\"xNeoc5V38\",layoutId:\"xNeoc5V38\",padding:10,paddingBottom:10,paddingLeft:28,paddingPerSide:true,paddingRight:10,paddingTop:14,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:178,width:\"544px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p3bzw4-container\",\"data-framer-name\":\"Bernd Hohrein\",inComponentSlot:true,name:\"Bernd Hohrein\",nodeId:\"tFKrluWHF\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"tFKrluWHF\",ke6OfpWgM:\"\u201CWith VoiceLine, my team can focus on spending time with their customers again instead of writing reports.\u201D\",KwgsuQf3t:addImageAlt({pixelHeight:750,pixelWidth:750,src:\"https://framerusercontent.com/images/Kn6qSfpGVyqwmFuSZQsOY3jk9E.jpeg\",srcSet:\"https://framerusercontent.com/images/Kn6qSfpGVyqwmFuSZQsOY3jk9E.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Kn6qSfpGVyqwmFuSZQsOY3jk9E.jpeg 750w\"},\"\"),layoutId:\"tFKrluWHF\",name:\"Bernd Hohrein\",PyCNd0BKx:\"Field Sales Team\",style:{width:\"100%\"},variant:\"VxgP0fjIC\",vgKQQvS3x:addImageAlt({pixelHeight:26,pixelWidth:173,src:\"https://framerusercontent.com/images/f6uX1nSphgpNOCklFEO6a3FvY.svg\"},\"\"),width:\"100%\",ZxDvDHCGG:\"Bernd Hohrein\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:178,width:\"544px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ujoi84-container\",\"data-framer-name\":\"Mario Voit\",inComponentSlot:true,name:\"Mario Voit\",nodeId:\"ezCBO6VAF\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"ezCBO6VAF\",ke6OfpWgM:\"\u201CThanks to VoiceLine, we can finally have a clear view of the market and customers, allowing us to identify potential opportunities at an early stage.\u201D\",KwgsuQf3t:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/IoBS1sgsdzWpbLRDmarSaqGATfk.jpeg\",srcSet:\"https://framerusercontent.com/images/IoBS1sgsdzWpbLRDmarSaqGATfk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/IoBS1sgsdzWpbLRDmarSaqGATfk.jpeg 800w\"},\"\"),layoutId:\"ezCBO6VAF\",name:\"Mario Voit\",PyCNd0BKx:\"Head of Sales\",style:{width:\"100%\"},variant:\"VxgP0fjIC\",vgKQQvS3x:addImageAlt({pixelHeight:37,pixelWidth:130,src:\"https://framerusercontent.com/images/JSv8sfn7JFYB4GwCXAtrl9z8OPw.svg\"},\"\"),width:\"100%\",ZxDvDHCGG:\"Mario Voitswinkler\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:178,width:\"691px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-134ekkv-container\",\"data-framer-name\":\"Marcel Grendel\",inComponentSlot:true,name:\"Marcel Grendel\",nodeId:\"hta9VWF5q\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"hta9VWF5q\",ke6OfpWgM:\"\u201CThe implementation of VoiceLine has not only allowed us to work more efficiently but has also redefined the way we interact with our customers. We are proud to be pioneers of our industry with this innovative solution.\u201D\",KwgsuQf3t:addImageAlt({pixelHeight:766,pixelWidth:1e3,positionX:\"36.4%\",positionY:\"48.1%\",src:\"https://framerusercontent.com/images/wjjTAZxBuNvoMS5QuhBHmqAHqcQ.png\",srcSet:\"https://framerusercontent.com/images/wjjTAZxBuNvoMS5QuhBHmqAHqcQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/wjjTAZxBuNvoMS5QuhBHmqAHqcQ.png 1000w\"},\"\"),layoutId:\"hta9VWF5q\",name:\"Marcel Grendel\",PyCNd0BKx:\"Field Sales Executive\",style:{width:\"100%\"},variant:\"VxgP0fjIC\",vgKQQvS3x:addImageAlt({pixelHeight:48,pixelWidth:132,src:\"https://framerusercontent.com/images/OZsfM0XWJodmhDV5o7BWU9iwjvo.svg\"},\"\"),width:\"100%\",ZxDvDHCGG:\"Marcel Grendel\"})})})],speed:15,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-at65vu\",\"data-framer-name\":\"Security\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kldzqj\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1efyr0o\",\"data-framer-name\":\"H1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-nbh0s8\",\"data-styles-preset\":\"FqarI9KTE\",style:{\"--framer-text-alignment\":\"center\"},children:\"Enterprise-grade security\"})})},KZYm3bfcS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-nbh0s8\",\"data-styles-preset\":\"FqarI9KTE\",style:{\"--framer-text-alignment\":\"center\"},children:\"Enterprise-grade security\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-nbh0s8\",\"data-styles-preset\":\"FqarI9KTE\",children:\"Enterprise-grade security\"})}),className:\"framer-at3t50\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kg67w9\",\"data-framer-name\":\"H2\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-12383cw\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1eou499\",\"data-styles-preset\":\"U2bDF_qa1\",style:{\"--framer-text-alignment\":\"center\"},children:[\"We put your data security and privacy first at VoiceLine. Our platform is engineered to provide enterprise-grade security and compliance while ensuring you retain control over your data. Read more in our \",/*#__PURE__*/_jsx(Link,{href:\"https://trust.voiceline.ai/\",motionChild:true,nodeId:\"egXzOd1yr\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-kezkuj\",\"data-styles-preset\":\"kIeVgHuHh\",children:\"Trust Center\"})}),\".\"]})}),className:\"framer-17xj0k3\",\"data-framer-name\":\"A couple of lines here about what makes their field documentation 80% faster. This is both working with voice and structuring data. We describe the specific in the individual features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15uwnms\",\"data-framer-name\":\"3-piece\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KZYm3bfcS:{background:{alt:\"\",fit:\"stretch\",pixelHeight:1760,pixelWidth:1744,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 250px)`,src:\"https://framerusercontent.com/images/QVFNOFAsVAAod0GTai2WjpxnRow.png\",srcSet:\"https://framerusercontent.com/images/QVFNOFAsVAAod0GTai2WjpxnRow.png?scale-down-to=1024 1014w,https://framerusercontent.com/images/QVFNOFAsVAAod0GTai2WjpxnRow.png 1744w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:1760,pixelWidth:1744,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 312px)`,src:\"https://framerusercontent.com/images/QVFNOFAsVAAod0GTai2WjpxnRow.png\",srcSet:\"https://framerusercontent.com/images/QVFNOFAsVAAod0GTai2WjpxnRow.png?scale-down-to=1024 1014w,https://framerusercontent.com/images/QVFNOFAsVAAod0GTai2WjpxnRow.png 1744w\"},className:\"framer-1p15w8e\",\"data-border\":true,\"data-framer-name\":\"3-piece\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cys3py\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yg2bmq\",\"data-styles-preset\":\"Iap84eHlG\",style:{\"--framer-text-alignment\":\"center\"},children:\"GDPR compliant\"})}),className:\"framer-14ys7l9\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",style:{\"--framer-text-alignment\":\"center\"},children:\"We comply to all GDPR requirements in partnership with DataGuard.\"})}),className:\"framer-c1q7cl\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17xfr43\",children:/*#__PURE__*/_jsx(Image,{\"aria-label\":\"A GDPR Compliant badge with a lock and EU starts on a blue background\",as:\"figure\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:253,intrinsicWidth:388,pixelHeight:253,pixelWidth:388,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/y0GazkkC1mQ0Hy0kO8pyzOoqUCk.svg\"},className:\"framer-1sg0nou\",\"data-framer-name\":\"Illustration\"})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KZYm3bfcS:{background:{alt:\"\",fit:\"stretch\",pixelHeight:1760,pixelWidth:1744,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 250px)`,src:\"https://framerusercontent.com/images/QVFNOFAsVAAod0GTai2WjpxnRow.png\",srcSet:\"https://framerusercontent.com/images/QVFNOFAsVAAod0GTai2WjpxnRow.png?scale-down-to=1024 1014w,https://framerusercontent.com/images/QVFNOFAsVAAod0GTai2WjpxnRow.png 1744w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:1760,pixelWidth:1744,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 312px)`,src:\"https://framerusercontent.com/images/QVFNOFAsVAAod0GTai2WjpxnRow.png\",srcSet:\"https://framerusercontent.com/images/QVFNOFAsVAAod0GTai2WjpxnRow.png?scale-down-to=1024 1014w,https://framerusercontent.com/images/QVFNOFAsVAAod0GTai2WjpxnRow.png 1744w\"},className:\"framer-1y2641u\",\"data-border\":true,\"data-framer-name\":\"3-piece\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6f4wnj\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yg2bmq\",\"data-styles-preset\":\"Iap84eHlG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Secure servers\"})}),className:\"framer-19zft27\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Located in Frankfurt Germany and ISO27001 certified. Penetration tested. Secure.\"})}),className:\"framer-1mq9jbp\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1firqwk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:791,intrinsicWidth:1214,pixelHeight:791,pixelWidth:1214,positionX:\"center\",positionY:\"center\",sizes:`max(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 312px) - 32px, 1px)`,src:\"https://framerusercontent.com/images/ZbYc6v9w6Ghzql1EclAWmYeV1sE.png\",srcSet:\"https://framerusercontent.com/images/ZbYc6v9w6Ghzql1EclAWmYeV1sE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZbYc6v9w6Ghzql1EclAWmYeV1sE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbYc6v9w6Ghzql1EclAWmYeV1sE.png 1214w\"}},KZYm3bfcS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:791,intrinsicWidth:1214,pixelHeight:791,pixelWidth:1214,positionX:\"center\",positionY:\"center\",sizes:`max(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 250px) - 32px, 1px)`,src:\"https://framerusercontent.com/images/ZbYc6v9w6Ghzql1EclAWmYeV1sE.png\",srcSet:\"https://framerusercontent.com/images/ZbYc6v9w6Ghzql1EclAWmYeV1sE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZbYc6v9w6Ghzql1EclAWmYeV1sE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbYc6v9w6Ghzql1EclAWmYeV1sE.png 1214w\"}}},children:/*#__PURE__*/_jsx(Image,{\"aria-label\":\"A ISO 27001 certification badge\",as:\"figure\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:791,intrinsicWidth:1214,pixelHeight:791,pixelWidth:1214,positionX:\"center\",positionY:\"center\",sizes:`max(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 312px) - 48px, 1px)`,src:\"https://framerusercontent.com/images/ZbYc6v9w6Ghzql1EclAWmYeV1sE.png\",srcSet:\"https://framerusercontent.com/images/ZbYc6v9w6Ghzql1EclAWmYeV1sE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZbYc6v9w6Ghzql1EclAWmYeV1sE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbYc6v9w6Ghzql1EclAWmYeV1sE.png 1214w\"},className:\"framer-1b6x0ts\",\"data-framer-name\":\"Illustration\"})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KZYm3bfcS:{background:{alt:\"\",fit:\"stretch\",pixelHeight:1760,pixelWidth:1744,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 250px)`,src:\"https://framerusercontent.com/images/QVFNOFAsVAAod0GTai2WjpxnRow.png\",srcSet:\"https://framerusercontent.com/images/QVFNOFAsVAAod0GTai2WjpxnRow.png?scale-down-to=1024 1014w,https://framerusercontent.com/images/QVFNOFAsVAAod0GTai2WjpxnRow.png 1744w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:1760,pixelWidth:1744,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 312px)`,src:\"https://framerusercontent.com/images/QVFNOFAsVAAod0GTai2WjpxnRow.png\",srcSet:\"https://framerusercontent.com/images/QVFNOFAsVAAod0GTai2WjpxnRow.png?scale-down-to=1024 1014w,https://framerusercontent.com/images/QVFNOFAsVAAod0GTai2WjpxnRow.png 1744w\"},className:\"framer-ebmvxq\",\"data-border\":true,\"data-framer-name\":\"3-piece\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iw9xjk\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yg2bmq\",\"data-styles-preset\":\"Iap84eHlG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Your data stays yours\"})}),className:\"framer-1tnq7ap\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Customer data will never be shared without permission. Your data is private.\"})}),className:\"framer-oa2m2l\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l4g0e1\",children:/*#__PURE__*/_jsx(Image,{\"aria-label\":\"An illustration of a fingerprint in blue showcasing security.\",as:\"figure\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:253,intrinsicWidth:388,pixelHeight:253,pixelWidth:388,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YbEIMNGuLWWc5he7xDMFX9TA.svg\"},className:\"framer-qdfl9k\",\"data-framer-name\":\"Illustration\"})})]})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1cuh3wu\",\"data-framer-name\":\"Easy Setup\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1an1enu\",\"data-framer-name\":\"Frame 157\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-oa5jwn\",\"data-framer-name\":\"Section heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-nbh0s8\",\"data-styles-preset\":\"FqarI9KTE\",style:{\"--framer-text-alignment\":\"center\"},children:\"Setup in seconds. For long-term benefits\"})}),className:\"framer-1gnwiap\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q64n45\",\"data-framer-name\":\"H2\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i7vllm\",\"data-framer-name\":\"Frame 3873\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1eou499\",\"data-styles-preset\":\"U2bDF_qa1\",style:{\"--framer-text-alignment\":\"center\"},children:\"IT and CRM managers love us. VoiceLine is plug-and-play and our users see a boost in CRM adoption as field documentation becomes easy.\"})}),className:\"framer-gcqa2d\",\"data-framer-name\":\"A couple of lines here about what makes their field documentation 80% faster. This is both working with voice and structuring data. We describe the specific in the individual features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dz3aww hidden-e2x1a hidden-outp7q\",\"data-framer-name\":\"2-piece (offset)\",children:[/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:2220,pixelWidth:2672,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 450px)`,src:\"https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png\",srcSet:\"https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png?scale-down-to=512 512w,https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png 2672w\"},className:\"framer-muqe2\",\"data-border\":true,\"data-framer-name\":\".Element left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ii690f\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yg2bmq\",\"data-styles-preset\":\"Iap84eHlG\",style:{\"--framer-text-alignment\":\"center\"},children:\"No IT project required\"})}),className:\"framer-p13jxh\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",style:{\"--framer-text-alignment\":\"center\"},children:\"VoiceLine is plug-and-play with any CRM. Want to \"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",style:{\"--framer-text-alignment\":\"center\"},children:[\"try VoiceLine without integrating your CRM? \",/*#__PURE__*/_jsx(Link,{href:\"mailto:hello@getvoiceline.com\",motionChild:true,nodeId:\"engbYu0nW\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-kezkuj\",\"data-styles-preset\":\"kIeVgHuHh\",children:\"Reach out\"})}),\"!\"]})]}),className:\"framer-3jdjgu\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uswr1r\",children:/*#__PURE__*/_jsx(Image,{\"aria-label\":\"An illustration of how easy VoiceLine integrates with CRMs like SAP, Hubspot, Pipedrive and more.\",as:\"figure\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:304,intrinsicWidth:646,pixelHeight:304,pixelWidth:646,positionX:\"center\",positionY:\"center\",sizes:`max(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 450px) - 48px, 1px)`,src:\"https://framerusercontent.com/images/XF99NII9eTVH4wwVfKTh5wInAgs.svg\",srcSet:\"https://framerusercontent.com/images/XF99NII9eTVH4wwVfKTh5wInAgs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/XF99NII9eTVH4wwVfKTh5wInAgs.svg 646w\"},className:\"framer-fg71hf\"})})]}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:2220,pixelWidth:2672,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 450px)`,src:\"https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png\",srcSet:\"https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png?scale-down-to=512 512w,https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png 2672w\"},className:\"framer-1x2x6vl\",\"data-border\":true,\"data-framer-name\":\".Element left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15z76we\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pYgsX8wis:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yg2bmq\",\"data-styles-preset\":\"Iap84eHlG\",style:{\"--framer-text-alignment\":\"center\"},children:\"New high of CRM adoption\"})})},s3lK_0fWl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yg2bmq\",\"data-styles-preset\":\"Iap84eHlG\",style:{\"--framer-text-alignment\":\"center\"},children:\"New high of CRM adoption\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yg2bmq\",\"data-styles-preset\":\"Iap84eHlG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Significantly increased CRM adoption\"})}),className:\"framer-h5zjpj\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",style:{\"--framer-text-alignment\":\"center\"},children:[\"VoiceLine is the easiest way for sales reps to \",/*#__PURE__*/_jsx(\"em\",{children:\"enjoy\"}),\" working with your CRM\"]})}),className:\"framer-lf88dv\",\"data-framer-name\":\"Description\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vkk71u\",children:/*#__PURE__*/_jsx(Image,{\"aria-label\":\"An illustration of a phone showcasing increased activity in different CRM systems.\",as:\"figure\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:375,intrinsicWidth:678,pixelHeight:375,pixelWidth:678,sizes:`max(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 450px) - 48px, 1px)`,src:\"https://framerusercontent.com/images/Tb5c7KJSHhyecKML3RcUD0GPBY.svg\",srcSet:\"https://framerusercontent.com/images/Tb5c7KJSHhyecKML3RcUD0GPBY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Tb5c7KJSHhyecKML3RcUD0GPBY.svg 678w\"},className:\"framer-1xu08lh\"})})]})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10q469n hidden-72rtr7 hidden-px9dbh hidden-o6179s\",children:[isDisplayed5()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{background:{alt:\"\",fit:\"stretch\",pixelHeight:2220,pixelWidth:2672,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px)`,src:\"https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png\",srcSet:\"https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png?scale-down-to=512 512w,https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png 2672w\"}},KZYm3bfcS:{background:{alt:\"\",fit:\"stretch\",pixelHeight:2220,pixelWidth:2672,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px)`,src:\"https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png\",srcSet:\"https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png?scale-down-to=512 512w,https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png 2672w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:2220,pixelWidth:2672,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png\",srcSet:\"https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png?scale-down-to=512 512w,https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png 2672w\"},className:\"framer-1itmwqq hidden-72rtr7\",\"data-border\":true,\"data-framer-name\":\".Element left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9u78kr\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yg2bmq\",\"data-styles-preset\":\"Iap84eHlG\",style:{\"--framer-text-alignment\":\"center\"},children:\"No IT project required\"})})},KZYm3bfcS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yg2bmq\",\"data-styles-preset\":\"Iap84eHlG\",style:{\"--framer-text-alignment\":\"center\"},children:\"No IT project required\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yg2bmq\",\"data-styles-preset\":\"Iap84eHlG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Not an IT Project\"})}),className:\"framer-dfhflp\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",style:{\"--framer-text-alignment\":\"center\"},children:\"VoiceLine is plug-and-play with any CRM. Want to \"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",style:{\"--framer-text-alignment\":\"center\"},children:[\"try VoiceLine without integrating your CRM? \",/*#__PURE__*/_jsx(Link,{href:\"mailto:hello@getvoiceline.com\",motionChild:true,nodeId:\"fwGpuAKAi\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-kezkuj\",\"data-styles-preset\":\"kIeVgHuHh\",children:\"Reach out\"})}),\"!\"]})]})},KZYm3bfcS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",style:{\"--framer-text-alignment\":\"center\"},children:[\"VoiceLine is plug-and-play with any CRM. Want to try VoiceLine without integrating your CRM? \",/*#__PURE__*/_jsx(Link,{href:\"mailto:hello@getvoiceline.com\",motionChild:true,nodeId:\"fwGpuAKAi\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-kezkuj\",\"data-styles-preset\":\"kIeVgHuHh\",children:\"Reach out\"})}),\"!\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",style:{\"--framer-text-alignment\":\"center\"},children:\"VoiceLine is plug-and-play with any CRM. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",style:{\"--framer-text-alignment\":\"center\"},children:\"No need for big IT projects.\"})]}),className:\"framer-yuglfp\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kf0dlo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:304,intrinsicWidth:646,pixelHeight:304,pixelWidth:646,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 112px, 1px)`,src:\"https://framerusercontent.com/images/XF99NII9eTVH4wwVfKTh5wInAgs.svg\",srcSet:\"https://framerusercontent.com/images/XF99NII9eTVH4wwVfKTh5wInAgs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/XF99NII9eTVH4wwVfKTh5wInAgs.svg 646w\"}},KZYm3bfcS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:304,intrinsicWidth:646,pixelHeight:304,pixelWidth:646,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px, 1px)`,src:\"https://framerusercontent.com/images/XF99NII9eTVH4wwVfKTh5wInAgs.svg\",srcSet:\"https://framerusercontent.com/images/XF99NII9eTVH4wwVfKTh5wInAgs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/XF99NII9eTVH4wwVfKTh5wInAgs.svg 646w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:348,intrinsicWidth:614,pixelHeight:348,pixelWidth:614,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Pe1QS42R48oQcpyYJANAoXhYbkI.svg\",srcSet:\"https://framerusercontent.com/images/Pe1QS42R48oQcpyYJANAoXhYbkI.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Pe1QS42R48oQcpyYJANAoXhYbkI.svg 614w\"},className:\"framer-1pa97d6\"})})})]})}),isDisplayed5()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{background:{alt:\"\",fit:\"stretch\",pixelHeight:2220,pixelWidth:2672,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px)`,src:\"https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png\",srcSet:\"https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png?scale-down-to=512 512w,https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png 2672w\"}},KZYm3bfcS:{background:{alt:\"\",fit:\"stretch\",pixelHeight:2220,pixelWidth:2672,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px)`,src:\"https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png\",srcSet:\"https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png?scale-down-to=512 512w,https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png 2672w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:2220,pixelWidth:2672,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png\",srcSet:\"https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png?scale-down-to=512 512w,https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tLLEpGlfuqTmSoGq9cWZQ94.png 2672w\"},className:\"framer-4btd2s hidden-72rtr7\",\"data-border\":true,\"data-framer-name\":\".Element left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-orajsa\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yg2bmq\",\"data-styles-preset\":\"Iap84eHlG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Off the charts CRM adoption\"})}),className:\"framer-15qwt2m\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",style:{\"--framer-text-alignment\":\"center\"},children:\"VoiceLine is the easiest way for sales reps \"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",style:{\"--framer-text-alignment\":\"center\"},children:[\"to \",/*#__PURE__*/_jsx(\"em\",{children:\"enjoy\"}),\" working with your CRM\"]})]}),fonts:[\"Inter\",\"Inter-Italic\"]},KZYm3bfcS:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",style:{\"--framer-text-alignment\":\"center\"},children:\"VoiceLine is the easiest way for sales reps \"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",style:{\"--framer-text-alignment\":\"center\"},children:[\"to \",/*#__PURE__*/_jsx(\"em\",{children:\"enjoy\"}),\" working with your CRM\"]})]}),fonts:[\"Inter\",\"Inter-Italic\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1wbx4zx\",\"data-styles-preset\":\"TFSvIsBKG\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Imagine sales reps that actually use your CRM. \",/*#__PURE__*/_jsx(\"br\",{}),\"This is the reality with VoiceLine.\"]})}),className:\"framer-g6gr1b\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10eekvg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:375,intrinsicWidth:678,pixelHeight:375,pixelWidth:678,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 112px, 1px)`,src:\"https://framerusercontent.com/images/Tb5c7KJSHhyecKML3RcUD0GPBY.svg\",srcSet:\"https://framerusercontent.com/images/Tb5c7KJSHhyecKML3RcUD0GPBY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Tb5c7KJSHhyecKML3RcUD0GPBY.svg 678w\"}},KZYm3bfcS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:375,intrinsicWidth:678,pixelHeight:375,pixelWidth:678,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px, 1px)`,src:\"https://framerusercontent.com/images/aVu5s71OLPpoSvFlG99KphxChrQ.svg\",srcSet:\"https://framerusercontent.com/images/aVu5s71OLPpoSvFlG99KphxChrQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/aVu5s71OLPpoSvFlG99KphxChrQ.svg 678w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:375,intrinsicWidth:678,pixelHeight:375,pixelWidth:678,src:\"https://framerusercontent.com/images/8FSmUxw6dLd9VGHIvAfz1ucKhY.svg\",srcSet:\"https://framerusercontent.com/images/8FSmUxw6dLd9VGHIvAfz1ucKhY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/8FSmUxw6dLd9VGHIvAfz1ucKhY.svg 678w\"},className:\"framer-19j12n0\"})})})]})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:585,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qqjbsy-container\",nodeId:\"urUvTQz34\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{variant:\"d5Vvz1Q6K\"},KZYm3bfcS:{variant:\"Vn7i_us4q\"},pYgsX8wis:{variant:\"DB1VsTyLr\"},s3lK_0fWl:{variant:\"XR0WZsX38\"}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"urUvTQz34\",layoutId:\"urUvTQz34\",style:{width:\"100%\"},variant:\"rMDWdlvYa\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:370,width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uvxxs4-container\",nodeId:\"jQWLwDxz7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IiAa_hY9m:{variant:\"orBqu4Y0m\"},KZYm3bfcS:{variant:\"ykNihn5Zi\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"jQWLwDxz7\",layoutId:\"jQWLwDxz7\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"bIGys4qlk\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Sstiw.framer-lux5qc, .framer-Sstiw .framer-lux5qc { display: block; }\",\".framer-Sstiw.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-Sstiw .framer-k1h223 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1620px; overflow: visible; padding: 8px; position: sticky; top: 0px; width: 100%; z-index: 3; }\",\".framer-Sstiw .framer-fnsjsl-container { flex: 1 0 0px; height: 70px; position: relative; width: 1px; }\",\".framer-Sstiw .framer-1w9lbyo-container { flex: none; height: auto; position: absolute; right: 19px; top: 85px; width: auto; z-index: 1; }\",\".framer-Sstiw .framer-kyar6d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 79px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-1f4qshj { flex: none; height: 740px; left: 0px; opacity: 0.9; overflow: visible; position: absolute; right: 0px; top: -74px; z-index: 0; }\",\".framer-Sstiw .framer-12t2wr2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-1cwespd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-126nysl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-1ms0r14, .framer-Sstiw .framer-3d9l76, .framer-Sstiw .framer-q64n45 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-12wvfoc { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Sstiw .framer-ghfhzy { flex: 1 0 0px; height: auto; max-width: 1040px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Sstiw .framer-191udfd-container, .framer-Sstiw .framer-dsjmpc-container, .framer-Sstiw .framer-1qo1ps2-container, .framer-Sstiw .framer-1rskpc3-container, .framer-Sstiw .framer-1g8fif-container, .framer-Sstiw .framer-1c51ncf-container, .framer-Sstiw .framer-5cdof2-container, .framer-Sstiw .framer-9msf8q-container, .framer-Sstiw .framer-1s9e2b5-container, .framer-Sstiw .framer-17qq3ng-container, .framer-Sstiw .framer-8qmhj1-container, .framer-Sstiw .framer-pnok6q-container, .framer-Sstiw .framer-15sltla-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Sstiw .framer-774t70 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-1sxqu3m-container { aspect-ratio: 1.6978776529338326 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 829px); max-width: 1600px; position: relative; width: 1px; }\",\".framer-Sstiw .framer-u0r29l-container, .framer-Sstiw .framer-1qqjbsy-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Sstiw .framer-57pk8u { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 654px; justify-content: center; overflow: hidden; padding: 24px 16px 24px 16px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-1q5rqrv-container { flex: none; height: 500px; max-width: 600px; position: relative; width: 358px; }\",\".framer-Sstiw .framer-1iixheq, .framer-Sstiw .framer-76m0a { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 4px 60px 0px rgba(146, 146, 146, 0.2); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 357px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Sstiw .framer-ialrqz, .framer-Sstiw .framer-10xvhvv { align-content: center; align-items: center; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 500px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Sstiw .framer-vtn38i, .framer-Sstiw .framer-1y88vta { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-Sstiw .framer-n29lqs, .framer-Sstiw .framer-1oiad23 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 20px 24px 20px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-9ryqiq, .framer-Sstiw .framer-dtxmcc, .framer-Sstiw .framer-ozbsck, .framer-Sstiw .framer-162tuh3, .framer-Sstiw .framer-cjulc2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-1uuyoti, .framer-Sstiw .framer-rkfv28, .framer-Sstiw .framer-1x5cuha, .framer-Sstiw .framer-17ish3, .framer-Sstiw .framer-1f3j271 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Sstiw .framer-1l5h4u0, .framer-Sstiw .framer-e4a31y, .framer-Sstiw .framer-1si0squ, .framer-Sstiw .framer-1ad0jh, .framer-Sstiw .framer-1o6x8ng { 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; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Sstiw .framer-1imo4kw, .framer-Sstiw .framer-1l0q5e4, .framer-Sstiw .framer-17u3ub3, .framer-Sstiw .framer-kuc2rk, .framer-Sstiw .framer-1c1tyj6, .framer-Sstiw .framer-19bscti, .framer-Sstiw .framer-ueur28, .framer-Sstiw .framer-1pyxpwk, .framer-Sstiw .framer-1bb9lpm, .framer-Sstiw .framer-zvt0cx, .framer-Sstiw .framer-lm3lxq, .framer-Sstiw .framer-1qsdl6o, .framer-Sstiw .framer-tvilnb, .framer-Sstiw .framer-73es9j, .framer-Sstiw .framer-uabv9s { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Sstiw .framer-31pve1 { aspect-ratio: 2.4054054054054053 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); position: relative; width: 80px; }\",\".framer-Sstiw .framer-c7iofg, .framer-Sstiw .framer-i3ctv2, .framer-Sstiw .framer-1kldzqj, .framer-Sstiw .framer-1an1enu { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-2u81c5, .framer-Sstiw .framer-hppky9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 16px 0px 28px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-xpn54e-container, .framer-Sstiw .framer-sdqfzl-container, .framer-Sstiw .framer-gn0nv4-container, .framer-Sstiw .framer-1srmvji-container, .framer-Sstiw .framer-10o4r66-container { flex: none; height: 24px; left: 0px; position: absolute; top: 0px; width: 24px; z-index: 1; }\",\".framer-Sstiw .framer-18niq7r, .framer-Sstiw .framer-2kwuy9, .framer-Sstiw .framer-16s8txt, .framer-Sstiw .framer-d995je, .framer-Sstiw .framer-13hvkzi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Sstiw .framer-1r41u4e-container, .framer-Sstiw .framer-7q1tjs-container { flex: none; height: 43px; position: relative; width: 179px; }\",\".framer-Sstiw .framer-1pyp90v { flex: none; height: 32px; overflow: visible; position: relative; width: 120px; }\",\".framer-Sstiw .framer-1j7ks19 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-ii61yo-container, .framer-Sstiw .framer-j2hk9k-container { flex: 1 0 0px; height: 316px; max-width: 1100px; position: relative; width: 1px; }\",\".framer-Sstiw .framer-1o6qb2g, .framer-Sstiw .framer-57rv3x, .framer-Sstiw .framer-1v9gbws { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 4px 60px 0px rgba(146, 146, 146, 0.3); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 316px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 900px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Sstiw .framer-zr9fo8, .framer-Sstiw .framer-1mbxx7b, .framer-Sstiw .framer-7s141l { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: grid; flex: 1 0 0px; gap: 0px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(8px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Sstiw .framer-13r63ub, .framer-Sstiw .framer-ochbkf, .framer-Sstiw .framer-1x56430 { align-self: start; flex: none; height: 100%; justify-self: start; overflow: hidden; position: relative; width: 100%; }\",\".framer-Sstiw .framer-8b72ap, .framer-Sstiw .framer-1664ner, .framer-Sstiw .framer-86mj69 { align-content: flex-end; align-items: flex-end; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 100%; justify-content: center; justify-self: start; overflow: hidden; padding: 32px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-xa5e46 { aspect-ratio: 2.4054054054054053 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); position: relative; width: 102px; }\",\".framer-Sstiw .framer-1a7ic3c, .framer-Sstiw .framer-1l64ucp, .framer-Sstiw .framer-at01fn { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-60wkwz, .framer-Sstiw .framer-1eq5u0a, .framer-Sstiw .framer-ug1ccj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 32px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-9n0v4u-container, .framer-Sstiw .framer-18algaz-container, .framer-Sstiw .framer-1u4vjqk-container { flex: none; height: 44px; position: relative; width: 150px; }\",\".framer-Sstiw .framer-13asis6 { flex: none; height: 39px; overflow: visible; position: relative; width: 146px; }\",\".framer-Sstiw .framer-1sk3g1o { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 40px 60px 40px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-os6k5i { aspect-ratio: 1.8518518518518519 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); overflow: hidden; position: relative; width: 79px; }\",\".framer-Sstiw .framer-1f2f2f5 { 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; max-width: 1400px; overflow: visible; padding: 100px 40px 60px 40px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-c2q9wo { --border-bottom-width: 1px; --border-color: #e8e8e8; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-end; align-items: flex-end; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; box-shadow: 0px 0.6021873017743928px 3.010936508871964px -0.5833333333333333px rgba(0, 0, 0, 0.09), 0px 2.288533303243457px 11.442666516217285px -1.1666666666666665px rgba(0, 0, 0, 0.1), 0px 10px 50px -1.75px rgba(0, 0, 0, 0.16); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 720px; justify-content: space-between; max-width: 1600px; overflow: hidden; padding: 16px 16px 16px 60px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Sstiw .framer-14p7izs, .framer-Sstiw .framer-1xqpkc7, .framer-Sstiw .framer-i1e61b { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 100%; justify-content: center; max-width: 616px; overflow: hidden; padding: 40px 32px 60px 32px; position: relative; width: 1px; }\",\".framer-Sstiw .framer-1ujz9g9, .framer-Sstiw .framer-6m10sg, .framer-Sstiw .framer-1lramel { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-15qo4tr, .framer-Sstiw .framer-1x3x4bf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-3li6nu, .framer-Sstiw .framer-1dtzu6t, .framer-Sstiw .framer-78e30l { --border-bottom-width: 1px; --border-color: #f3490e; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 24px 8px 24px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Sstiw .framer-1qz84zw, .framer-Sstiw .framer-yru23a, .framer-Sstiw .framer-8ctbof, .framer-Sstiw .framer-1ayvzs3, .framer-Sstiw .framer-at3t50 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Sstiw .framer-hrg3nu, .framer-Sstiw .framer-l3nviq, .framer-Sstiw .framer-1b6sn08, .framer-Sstiw .framer-1c690rg, .framer-Sstiw .framer-ssd6u9, .framer-Sstiw .framer-1fs3mb0, .framer-Sstiw .framer-1eyy3vj, .framer-Sstiw .framer-12h5zhh, .framer-Sstiw .framer-1aaxfbd, .framer-Sstiw .framer-1pi358t, .framer-Sstiw .framer-113hnhh, .framer-Sstiw .framer-1yfj4pf, .framer-Sstiw .framer-1h21d2j, .framer-Sstiw .framer-c02csn, .framer-Sstiw .framer-plaaqj, .framer-Sstiw .framer-1j9eqly, .framer-Sstiw .framer-vy106s, .framer-Sstiw .framer-1rdnw4v, .framer-Sstiw .framer-1wwzs86, .framer-Sstiw .framer-zdjln4, .framer-Sstiw .framer-1br8j02, .framer-Sstiw .framer-1a51mxy, .framer-Sstiw .framer-lhc51r, .framer-Sstiw .framer-q63tdl, .framer-Sstiw .framer-169ren4, .framer-Sstiw .framer-1u9slb, .framer-Sstiw .framer-1kmjqfu, .framer-Sstiw .framer-pb99rc, .framer-Sstiw .framer-jw7y4k, .framer-Sstiw .framer-gqv5ug, .framer-Sstiw .framer-14ys7l9, .framer-Sstiw .framer-c1q7cl, .framer-Sstiw .framer-19zft27, .framer-Sstiw .framer-1mq9jbp, .framer-Sstiw .framer-1tnq7ap, .framer-Sstiw .framer-1gnwiap, .framer-Sstiw .framer-p13jxh, .framer-Sstiw .framer-3jdjgu, .framer-Sstiw .framer-h5zjpj, .framer-Sstiw .framer-dfhflp, .framer-Sstiw .framer-yuglfp, .framer-Sstiw .framer-15qwt2m, .framer-Sstiw .framer-g6gr1b { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Sstiw .framer-y3dwa, .framer-Sstiw .framer-1fo9xgt, .framer-Sstiw .framer-19kf18d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-eujzow, .framer-Sstiw .framer-q5s4qg, .framer-Sstiw .framer-1htihyo, .framer-Sstiw .framer-py1yii, .framer-Sstiw .framer-1yda20g, .framer-Sstiw .framer-1nqjr55 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Sstiw .framer-1jsv4qf, .framer-Sstiw .framer-1otvat6, .framer-Sstiw .framer-1tlgq2o, .framer-Sstiw .framer-f8v5co, .framer-Sstiw .framer-1441ka3, .framer-Sstiw .framer-14j2iij { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 191px; }\",\".framer-Sstiw .framer-12abjhu, .framer-Sstiw .framer-etk810, .framer-Sstiw .framer-1cz98hx, .framer-Sstiw .framer-3v0kvb, .framer-Sstiw .framer-1afsyc1, .framer-Sstiw .framer-1qhts72, .framer-Sstiw .framer-1iohngb, .framer-Sstiw .framer-7ly1l, .framer-Sstiw .framer-z9qbw2, .framer-Sstiw .framer-1fsr0fo, .framer-Sstiw .framer-x1cn3x, .framer-Sstiw .framer-e0xasn, .framer-Sstiw .framer-mxhk9x, .framer-Sstiw .framer-103yugt, .framer-Sstiw .framer-11dz2wm, .framer-Sstiw .framer-1jbh2pu, .framer-Sstiw .framer-lizk8s, .framer-Sstiw .framer-1hgpvm3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Sstiw .framer-slcww3, .framer-Sstiw .framer-10eb0rz, .framer-Sstiw .framer-35retl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 8px 0px 8px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-q1k5y9, .framer-Sstiw .framer-15j7hqc, .framer-Sstiw .framer-1ody8gf, .framer-Sstiw .framer-1u1cqci, .framer-Sstiw .framer-1hihqq7, .framer-Sstiw .framer-tzwr2k { 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; position: relative; width: 1px; }\",\".framer-Sstiw .framer-1fwh2ms, .framer-Sstiw .framer-12meoh5, .framer-Sstiw .framer-1xmtupf, .framer-Sstiw .framer-13fas9f, .framer-Sstiw .framer-16zqws7, .framer-Sstiw .framer-x5pf3j { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Sstiw .framer-onopsb, .framer-Sstiw .framer-7di5tg, .framer-Sstiw .framer-1u235rl { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: 1 0 0px; height: 100%; max-width: 48%; position: relative; width: 1px; z-index: 1; }\",\".framer-Sstiw .framer-1nuju2e, .framer-Sstiw .framer-1flibr, .framer-Sstiw .framer-10fhr8e, .framer-Sstiw .framer-1cgcgkh, .framer-Sstiw .framer-1jlfxzw, .framer-Sstiw .framer-l38uij, .framer-Sstiw .framer-is4s7f, .framer-Sstiw .framer-ems8r1, .framer-Sstiw .framer-m5ds7g, .framer-Sstiw .framer-1cfgip5, .framer-Sstiw .framer-1a3y9ql, .framer-Sstiw .framer-14urwjs { align-content: center; align-items: center; 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: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 40px 16px 40px 16px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-dy9qiy, .framer-Sstiw .framer-w9ts3n, .framer-Sstiw .framer-11cavrh, .framer-Sstiw .framer-1f4cl6x, .framer-Sstiw .framer-xspg3k, .framer-Sstiw .framer-7z2slc, .framer-Sstiw .framer-myye96, .framer-Sstiw .framer-1b3ufeq, .framer-Sstiw .framer-1rb68wl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 424px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50%; }\",\".framer-Sstiw .framer-a9bri2, .framer-Sstiw .framer-gsocep, .framer-Sstiw .framer-12rykpy, .framer-Sstiw .framer-12m6xdc, .framer-Sstiw .framer-a945yb, .framer-Sstiw .framer-lv5051, .framer-Sstiw .framer-1eg0f2h, .framer-Sstiw .framer-8dw5ft, .framer-Sstiw .framer-1ck00cc, .framer-Sstiw .framer-1s40cdi, .framer-Sstiw .framer-qn6tsj, .framer-Sstiw .framer-4dkn1v { --border-bottom-width: 1px; --border-color: #f3f3f3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.413533834586466 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 424px); max-width: 599px; min-width: 400px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Sstiw .framer-1kqqo9d, .framer-Sstiw .framer-h3lq1k, .framer-Sstiw .framer-1rk6xq0, .framer-Sstiw .framer-to8qro, .framer-Sstiw .framer-1ckhjo9, .framer-Sstiw .framer-py04in, .framer-Sstiw .framer-4749zo, .framer-Sstiw .framer-13xbgud, .framer-Sstiw .framer-18htao3, .framer-Sstiw .framer-mirbii, .framer-Sstiw .framer-cyonvs, .framer-Sstiw .framer-yznhi9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 424px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-Sstiw .framer-amcuj8, .framer-Sstiw .framer-1tzcqgd, .framer-Sstiw .framer-nj5hni, .framer-Sstiw .framer-g73cp9, .framer-Sstiw .framer-kh5ek9, .framer-Sstiw .framer-1f7yl3u, .framer-Sstiw .framer-1csynhh, .framer-Sstiw .framer-9bsaz7, .framer-Sstiw .framer-tqt60g, .framer-Sstiw .framer-ny8c09, .framer-Sstiw .framer-pdlmqi, .framer-Sstiw .framer-vxcadx { 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: center; max-width: 517px; overflow: visible; padding: 0px 0px 0px 24px; position: relative; width: 1px; }\",\".framer-Sstiw .framer-exmean, .framer-Sstiw .framer-z4524i, .framer-Sstiw .framer-te0vkc, .framer-Sstiw .framer-5kxfbn, .framer-Sstiw .framer-1q7wyno, .framer-Sstiw .framer-ofp28e, .framer-Sstiw .framer-1uponl1, .framer-Sstiw .framer-c4y6a1, .framer-Sstiw .framer-q6ftd8, .framer-Sstiw .framer-127aegg, .framer-Sstiw .framer-nkrbp5, .framer-Sstiw .framer-1abnpar { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-17nethb, .framer-Sstiw .framer-zxhxub, .framer-Sstiw .framer-v7l0cu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 11px; height: 424px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50%; }\",\".framer-Sstiw .framer-a4bn4e { 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; max-width: 1440px; overflow: visible; padding: 100px 40px 60px 40px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-ob23qj { --border-bottom-width: 1px; --border-color: #e8e8e8; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-end; align-items: flex-end; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; box-shadow: 0px 0.6021873017743928px 3.010936508871964px -0.5833333333333333px rgba(0, 0, 0, 0.09), 0px 2.288533303243457px 11.442666516217285px -1.1666666666666665px rgba(0, 0, 0, 0.1), 0px 10px 50px -1.75px rgba(0, 0, 0, 0.16); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 720px; justify-content: space-between; max-width: 1440px; overflow: hidden; padding: 16px 60px 16px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Sstiw .framer-zfsqcy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-6cu4fc { 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; max-width: 1440px; overflow: visible; padding: 100px 40px 240px 40px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-gg1zsp { --border-bottom-width: 1px; --border-color: #e8e8e8; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-end; align-items: flex-end; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; box-shadow: 0px 0.6021873017743928px 3.010936508871964px -0.5833333333333333px rgba(0, 0, 0, 0.09), 0px 2.288533303243457px 11.442666516217285px -1.1666666666666665px rgba(0, 0, 0, 0.1), 0px 10px 50px -1.75px rgba(0, 0, 0, 0.16); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 720px; justify-content: space-between; max-width: 1440px; overflow: hidden; padding: 16px 16px 16px 60px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Sstiw .framer-1rffw5k { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 177px; word-break: break-word; word-wrap: break-word; }\",\".framer-Sstiw .framer-kphken { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 140px 24px 60px 24px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-mi4gfs { flex: none; height: 740px; left: 0px; opacity: 0.9; overflow: visible; position: absolute; right: 0px; top: -214px; z-index: 0; }\",\".framer-Sstiw .framer-uboiw9-container { flex: none; height: 353px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-u8iwha-container, .framer-Sstiw .framer-4ff4ch-container, .framer-Sstiw .framer-2xffwp-container, .framer-Sstiw .framer-t33frr-container, .framer-Sstiw .framer-1wnhei7-container, .framer-Sstiw .framer-rr4z1f-container { height: auto; position: relative; width: 300px; }\",\".framer-Sstiw .framer-1cbxf8c { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-7lmsk7-container { flex: none; height: 218px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-go0mb3-container, .framer-Sstiw .framer-1p3bzw4-container, .framer-Sstiw .framer-ujoi84-container { height: auto; position: relative; width: 544px; }\",\".framer-Sstiw .framer-14eek9o-container, .framer-Sstiw .framer-konchq-container { height: auto; position: relative; width: 573px; }\",\".framer-Sstiw .framer-9eyk9u-container { flex: none; height: 284px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-134ekkv-container { height: auto; position: relative; width: 691px; }\",\".framer-Sstiw .framer-at65vu, .framer-Sstiw .framer-1cuh3wu { 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; max-width: 1440px; overflow: visible; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-1efyr0o, .framer-Sstiw .framer-oa5jwn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-1kg67w9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-12383cw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-17xj0k3, .framer-Sstiw .framer-gcqa2d { flex: 1 0 0px; height: auto; max-width: 1120px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Sstiw .framer-15uwnms { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-1p15w8e, .framer-Sstiw .framer-1y2641u, .framer-Sstiw .framer-ebmvxq { --border-bottom-width: 1px; --border-color: #f3f3f3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 440px; justify-content: flex-start; min-width: 312px; overflow: hidden; padding: 32px 24px 32px 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Sstiw .framer-cys3py, .framer-Sstiw .framer-6f4wnj, .framer-Sstiw .framer-iw9xjk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 12px 0px 12px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-17xfr43, .framer-Sstiw .framer-1firqwk, .framer-Sstiw .framer-1l4g0e1, .framer-Sstiw .framer-1uswr1r, .framer-Sstiw .framer-vkk71u, .framer-Sstiw .framer-kf0dlo, .framer-Sstiw .framer-10eekvg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-1sg0nou, .framer-Sstiw .framer-1b6x0ts, .framer-Sstiw .framer-qdfl9k { flex: 1 0 0px; gap: 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-Sstiw .framer-oa2m2l { flex: none; height: auto; max-width: 450px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Sstiw .framer-1i7vllm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 1px; }\",\".framer-Sstiw .framer-1dz3aww { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-muqe2 { --border-bottom-width: 1px; --border-color: #f3f3f3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; 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: 24px; height: 555px; justify-content: center; min-width: 450px; overflow: hidden; padding: 40px 24px 40px 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Sstiw .framer-1ii690f, .framer-Sstiw .framer-9u78kr, .framer-Sstiw .framer-orajsa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-fg71hf, .framer-Sstiw .framer-1xu08lh, .framer-Sstiw .framer-1pa97d6, .framer-Sstiw .framer-19j12n0 { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-Sstiw .framer-1x2x6vl { --border-bottom-width: 1px; --border-color: #f3f3f3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; 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: 24px; height: 555px; justify-content: center; min-width: 450px; overflow: hidden; padding: 40px 24px 0px 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Sstiw .framer-15z76we { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-lf88dv { flex: none; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Sstiw .framer-10q469n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; min-height: 1174px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Sstiw .framer-1itmwqq { --border-bottom-width: 1px; --border-color: #f3f3f3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; 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: 24px; height: 555px; justify-content: center; overflow: hidden; padding: 40px 16px 40px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Sstiw .framer-4btd2s { --border-bottom-width: 1px; --border-color: #f3f3f3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; 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: 24px; height: 555px; justify-content: center; min-width: 450px; overflow: hidden; padding: 40px 16px 0px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Sstiw .framer-1uvxxs4-container { flex: none; height: auto; max-width: 1440px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-Sstiw[data-border=\"true\"]::after, .framer-Sstiw [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; }',\"@media (min-width: 810px) and (max-width: 899px) { .framer-Sstiw.framer-72rtr7 { width: 810px; } .framer-Sstiw .framer-k1h223 { align-content: flex-start; align-items: flex-start; justify-content: flex-start; order: 1; } .framer-Sstiw .framer-kyar6d { order: 2; padding: 60px 0px 80px 0px; } .framer-Sstiw .framer-1sxqu3m-container { height: var(--framer-aspect-ratio-supported, 458px); } .framer-Sstiw .framer-u0r29l-container { order: 3; } .framer-Sstiw .framer-1j7ks19 { order: 5; } .framer-Sstiw .framer-ii61yo-container { height: 401px; } .framer-Sstiw .framer-1f2f2f5 { order: 7; padding: 100px 24px 40px 24px; } .framer-Sstiw .framer-c2q9wo { align-content: center; align-items: center; flex-direction: column; gap: 0px; height: 1129px; justify-content: flex-start; order: 0; padding: 12px; } .framer-Sstiw .framer-14p7izs, .framer-Sstiw .framer-i1e61b { flex: none; height: min-content; max-width: unset; width: 100%; } .framer-Sstiw .framer-y3dwa, .framer-Sstiw .framer-1fo9xgt, .framer-Sstiw .framer-19kf18d { padding: 0px 40px 0px 40px; } .framer-Sstiw .framer-onopsb, .framer-Sstiw .framer-1u235rl { height: 1px; max-width: unset; width: 100%; } .framer-Sstiw .framer-1nuju2e { flex-direction: column; order: 1; padding: 32px 0px 32px 0px; } .framer-Sstiw .framer-dy9qiy, .framer-Sstiw .framer-zxhxub, .framer-Sstiw .framer-w9ts3n, .framer-Sstiw .framer-11cavrh, .framer-Sstiw .framer-1f4cl6x, .framer-Sstiw .framer-xspg3k, .framer-Sstiw .framer-7z2slc, .framer-Sstiw .framer-myye96, .framer-Sstiw .framer-1b3ufeq, .framer-Sstiw .framer-1rb68wl { height: min-content; order: 1; width: 100%; } .framer-Sstiw .framer-a9bri2, .framer-Sstiw .framer-12rykpy, .framer-Sstiw .framer-lv5051, .framer-Sstiw .framer-8dw5ft, .framer-Sstiw .framer-1s40cdi, .framer-Sstiw .framer-4dkn1v { height: var(--framer-aspect-ratio-supported, 425px); max-width: 600px; min-width: unset; } .framer-Sstiw .framer-1kqqo9d, .framer-Sstiw .framer-1rk6xq0, .framer-Sstiw .framer-1ckhjo9, .framer-Sstiw .framer-py04in, .framer-Sstiw .framer-4749zo, .framer-Sstiw .framer-13xbgud, .framer-Sstiw .framer-18htao3, .framer-Sstiw .framer-mirbii, .framer-Sstiw .framer-cyonvs, .framer-Sstiw .framer-yznhi9 { height: min-content; order: 0; width: 100%; } .framer-Sstiw .framer-amcuj8, .framer-Sstiw .framer-1tzcqgd, .framer-Sstiw .framer-nj5hni, .framer-Sstiw .framer-g73cp9, .framer-Sstiw .framer-kh5ek9, .framer-Sstiw .framer-1f7yl3u, .framer-Sstiw .framer-1csynhh, .framer-Sstiw .framer-9bsaz7, .framer-Sstiw .framer-tqt60g, .framer-Sstiw .framer-ny8c09, .framer-Sstiw .framer-pdlmqi, .framer-Sstiw .framer-vxcadx { max-width: 600px; padding: 0px 0px 0px 8px; } .framer-Sstiw .framer-1flibr { flex-direction: column; order: 2; padding: 32px 0px 32px 0px; } .framer-Sstiw .framer-h3lq1k, .framer-Sstiw .framer-17nethb, .framer-Sstiw .framer-to8qro, .framer-Sstiw .framer-v7l0cu { height: min-content; width: 100%; } .framer-Sstiw .framer-gsocep, .framer-Sstiw .framer-12m6xdc, .framer-Sstiw .framer-a945yb, .framer-Sstiw .framer-1eg0f2h, .framer-Sstiw .framer-1ck00cc, .framer-Sstiw .framer-qn6tsj { max-width: 600px; min-width: unset; } .framer-Sstiw .framer-10fhr8e { flex-direction: column; order: 3; padding: 32px 0px 32px 0px; } .framer-Sstiw .framer-1cgcgkh { flex-direction: column; order: 4; padding: 32px 0px 32px 0px; } .framer-Sstiw .framer-a4bn4e { order: 8; padding: 100px 24px 40px 24px; } .framer-Sstiw .framer-ob23qj, .framer-Sstiw .framer-gg1zsp { align-content: center; align-items: center; flex-direction: column; gap: 0px; height: 1129px; justify-content: flex-start; padding: 12px; } .framer-Sstiw .framer-7di5tg { height: 1px; max-width: unset; order: 2; width: 100%; } .framer-Sstiw .framer-1xqpkc7 { flex: none; height: min-content; max-width: unset; order: 1; width: 100%; } .framer-Sstiw .framer-1jlfxzw, .framer-Sstiw .framer-l38uij, .framer-Sstiw .framer-is4s7f, .framer-Sstiw .framer-ems8r1, .framer-Sstiw .framer-m5ds7g, .framer-Sstiw .framer-1cfgip5, .framer-Sstiw .framer-1a3y9ql, .framer-Sstiw .framer-14urwjs { flex-direction: column; padding: 32px 0px 32px 0px; } .framer-Sstiw .framer-6cu4fc { order: 9; padding: 100px 24px 100px 24px; } .framer-Sstiw .framer-kphken { order: 10; padding: 80px 0px 40px 0px; } .framer-Sstiw .framer-mi4gfs { top: -74px; } .framer-Sstiw .framer-at65vu { order: 11; } .framer-Sstiw .framer-at3t50 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-Sstiw .framer-1p15w8e, .framer-Sstiw .framer-1y2641u, .framer-Sstiw .framer-ebmvxq { padding: 32px 16px 32px 16px; } .framer-Sstiw .framer-1cuh3wu { order: 12; } .framer-Sstiw .framer-10q469n { min-height: unset; } .framer-Sstiw .framer-4btd2s { min-width: unset; } .framer-Sstiw .framer-1qqjbsy-container { order: 13; } .framer-Sstiw .framer-1uvxxs4-container { order: 14; }}\",\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-Sstiw.framer-72rtr7 { width: 1200px; } .framer-Sstiw .framer-1sxqu3m-container { height: var(--framer-aspect-ratio-supported, 688px); } .framer-Sstiw .framer-a9bri2, .framer-Sstiw .framer-gsocep, .framer-Sstiw .framer-12rykpy, .framer-Sstiw .framer-12m6xdc, .framer-Sstiw .framer-a945yb, .framer-Sstiw .framer-lv5051, .framer-Sstiw .framer-1eg0f2h, .framer-Sstiw .framer-8dw5ft, .framer-Sstiw .framer-1ck00cc, .framer-Sstiw .framer-1s40cdi, .framer-Sstiw .framer-qn6tsj, .framer-Sstiw .framer-4dkn1v { height: var(--framer-aspect-ratio-supported, 385px); } .framer-Sstiw .framer-mi4gfs { top: -144px; } .framer-Sstiw .framer-7lmsk7-container { height: 215px; }}\",\"@media (max-width: 809px) { .framer-Sstiw.framer-72rtr7 { width: 390px; } .framer-Sstiw .framer-k1h223 { align-content: flex-start; align-items: flex-start; justify-content: flex-start; min-height: 104px; order: 0; } .framer-Sstiw .framer-fnsjsl-container { flex: none; height: auto; left: 8px; position: absolute; right: 8px; top: 8px; width: unset; z-index: 2; } .framer-Sstiw .framer-kyar6d { gap: 56px; order: 1; padding: 12px 0px 80px 0px; } .framer-Sstiw .framer-1f4qshj { top: -104px; } .framer-Sstiw .framer-1cwespd, .framer-Sstiw .framer-12383cw, .framer-Sstiw .framer-1i7vllm { padding: 0px 16px 0px 16px; } .framer-Sstiw .framer-774t70 { padding: 0px 8px 0px 8px; } .framer-Sstiw .framer-1sxqu3m-container { aspect-ratio: unset; height: auto; } .framer-Sstiw .framer-u0r29l-container { order: 2; } .framer-Sstiw .framer-57pk8u { order: 4; } .framer-Sstiw .framer-1f2f2f5 { gap: 16px; order: 6; padding: 100px 12px 40px 16px; } .framer-Sstiw .framer-c2q9wo { flex-direction: column; gap: 0px; height: min-content; justify-content: center; order: 0; padding: 12px; } .framer-Sstiw .framer-14p7izs, .framer-Sstiw .framer-i1e61b { flex: none; height: min-content; max-width: unset; padding: 12px; width: 100%; } .framer-Sstiw .framer-3li6nu, .framer-Sstiw .framer-1dtzu6t, .framer-Sstiw .framer-78e30l { padding: 4px 24px 4px 24px; } .framer-Sstiw .framer-onopsb, .framer-Sstiw .framer-1u235rl { flex: none; height: 368px; max-width: unset; width: 100%; } .framer-Sstiw .framer-1nuju2e { flex-direction: column; order: 1; padding: 48px 0px 32px 0px; } .framer-Sstiw .framer-dy9qiy, .framer-Sstiw .framer-zxhxub, .framer-Sstiw .framer-w9ts3n, .framer-Sstiw .framer-11cavrh, .framer-Sstiw .framer-1f4cl6x, .framer-Sstiw .framer-xspg3k, .framer-Sstiw .framer-7z2slc, .framer-Sstiw .framer-myye96, .framer-Sstiw .framer-1b3ufeq, .framer-Sstiw .framer-1rb68wl { height: min-content; order: 1; width: 100%; } .framer-Sstiw .framer-a9bri2, .framer-Sstiw .framer-gsocep, .framer-Sstiw .framer-12rykpy, .framer-Sstiw .framer-12m6xdc { height: var(--framer-aspect-ratio-supported, 256px); max-width: 600px; min-width: unset; } .framer-Sstiw .framer-1kqqo9d, .framer-Sstiw .framer-1rk6xq0, .framer-Sstiw .framer-1ckhjo9, .framer-Sstiw .framer-py04in, .framer-Sstiw .framer-4749zo, .framer-Sstiw .framer-13xbgud, .framer-Sstiw .framer-18htao3, .framer-Sstiw .framer-mirbii, .framer-Sstiw .framer-cyonvs, .framer-Sstiw .framer-yznhi9 { height: min-content; order: 0; width: 100%; } .framer-Sstiw .framer-amcuj8, .framer-Sstiw .framer-1tzcqgd, .framer-Sstiw .framer-nj5hni, .framer-Sstiw .framer-g73cp9, .framer-Sstiw .framer-kh5ek9, .framer-Sstiw .framer-1f7yl3u, .framer-Sstiw .framer-1csynhh, .framer-Sstiw .framer-9bsaz7, .framer-Sstiw .framer-tqt60g, .framer-Sstiw .framer-ny8c09, .framer-Sstiw .framer-pdlmqi, .framer-Sstiw .framer-vxcadx { gap: 24px; max-width: 600px; padding: 0px 0px 0px 8px; } .framer-Sstiw .framer-exmean, .framer-Sstiw .framer-z4524i, .framer-Sstiw .framer-te0vkc, .framer-Sstiw .framer-5kxfbn, .framer-Sstiw .framer-1q7wyno, .framer-Sstiw .framer-ofp28e, .framer-Sstiw .framer-1uponl1, .framer-Sstiw .framer-c4y6a1, .framer-Sstiw .framer-q6ftd8, .framer-Sstiw .framer-127aegg, .framer-Sstiw .framer-nkrbp5, .framer-Sstiw .framer-1abnpar { gap: 8px; } .framer-Sstiw .framer-1flibr { flex-direction: column; order: 2; padding: 32px 0px 32px 0px; } .framer-Sstiw .framer-h3lq1k, .framer-Sstiw .framer-17nethb, .framer-Sstiw .framer-to8qro, .framer-Sstiw .framer-v7l0cu { height: min-content; width: 100%; } .framer-Sstiw .framer-10fhr8e { flex-direction: column; order: 3; padding: 32px 0px 32px 0px; } .framer-Sstiw .framer-1cgcgkh { flex-direction: column; order: 4; padding: 32px 0px 32px 0px; } .framer-Sstiw .framer-a4bn4e { order: 7; padding: 64px 16px 40px 16px; } .framer-Sstiw .framer-ob23qj, .framer-Sstiw .framer-gg1zsp { flex-direction: column; gap: 0px; height: min-content; justify-content: center; padding: 12px; } .framer-Sstiw .framer-7di5tg { flex: none; height: 368px; max-width: unset; order: 2; width: 100%; } .framer-Sstiw .framer-1xqpkc7 { flex: none; height: min-content; max-width: unset; order: 1; padding: 12px; width: 100%; } .framer-Sstiw .framer-1jlfxzw, .framer-Sstiw .framer-l38uij, .framer-Sstiw .framer-is4s7f, .framer-Sstiw .framer-ems8r1, .framer-Sstiw .framer-m5ds7g, .framer-Sstiw .framer-1cfgip5, .framer-Sstiw .framer-1a3y9ql, .framer-Sstiw .framer-14urwjs { flex-direction: column; padding: 48px 0px 32px 0px; } .framer-Sstiw .framer-a945yb, .framer-Sstiw .framer-1ck00cc, .framer-Sstiw .framer-4dkn1v { height: var(--framer-aspect-ratio-supported, 254px); max-width: 600px; min-width: unset; } .framer-Sstiw .framer-lv5051, .framer-Sstiw .framer-1eg0f2h, .framer-Sstiw .framer-8dw5ft, .framer-Sstiw .framer-1s40cdi, .framer-Sstiw .framer-qn6tsj { height: var(--framer-aspect-ratio-supported, 253px); max-width: 600px; min-width: unset; } .framer-Sstiw .framer-6cu4fc { order: 8; padding: 64px 16px 40px 16px; } .framer-Sstiw .framer-kphken { gap: 16px; order: 9; padding: 80px 0px 24px 0px; } .framer-Sstiw .framer-1ayvzs3, .framer-Sstiw .framer-at3t50 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-Sstiw .framer-at65vu { gap: 40px; order: 10; padding: 100px 16px 100px 16px; } .framer-Sstiw .framer-1kldzqj, .framer-Sstiw .framer-15uwnms, .framer-Sstiw .framer-1an1enu { gap: 16px; } .framer-Sstiw .framer-1p15w8e, .framer-Sstiw .framer-1y2641u, .framer-Sstiw .framer-ebmvxq { min-width: 250px; padding: 32px 16px 32px 16px; } .framer-Sstiw .framer-1cuh3wu { gap: 40px; order: 11; padding: 60px 16px 80px 16px; } .framer-Sstiw .framer-10q469n { gap: 16px; min-height: unset; } .framer-Sstiw .framer-1itmwqq { gap: 0px; height: 515px; padding: 40px 16px 0px 16px; } .framer-Sstiw .framer-9u78kr { gap: 8px; padding: 0px; } .framer-Sstiw .framer-4btd2s { gap: 48px; height: min-content; min-width: unset; overflow: visible; will-change: unset; } .framer-Sstiw .framer-orajsa { overflow: visible; padding: 0px; } .framer-Sstiw .framer-10eekvg { flex: none; height: 321px; overflow: visible; } .framer-Sstiw .framer-1qqjbsy-container { order: 12; } .framer-Sstiw .framer-1uvxxs4-container { order: 13; }}\",\"@media (min-width: 900px) and (max-width: 1199px) { .framer-Sstiw.framer-72rtr7 { width: 900px; } .framer-Sstiw .framer-k1h223 { order: 0; } .framer-Sstiw .framer-kyar6d { order: 1; } .framer-Sstiw .framer-1sxqu3m-container { height: var(--framer-aspect-ratio-supported, 511px); } .framer-Sstiw .framer-u0r29l-container { order: 2; } .framer-Sstiw .framer-1sk3g1o { order: 4; } .framer-Sstiw .framer-1f2f2f5 { order: 5; padding: 100px 24px 60px 24px; } .framer-Sstiw .framer-c2q9wo, .framer-Sstiw .framer-gg1zsp { padding: 16px 16px 16px 24px; } .framer-Sstiw .framer-a9bri2, .framer-Sstiw .framer-gsocep, .framer-Sstiw .framer-12rykpy, .framer-Sstiw .framer-12m6xdc, .framer-Sstiw .framer-a945yb, .framer-Sstiw .framer-lv5051, .framer-Sstiw .framer-1eg0f2h, .framer-Sstiw .framer-8dw5ft { height: var(--framer-aspect-ratio-supported, 290px); } .framer-Sstiw .framer-a4bn4e { order: 6; padding: 100px 24px 60px 24px; } .framer-Sstiw .framer-ob23qj { height: 847px; padding: 16px 24px 16px 24px; } .framer-Sstiw .framer-7ly1l, .framer-Sstiw .framer-1fsr0fo { align-self: stretch; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; } .framer-Sstiw .framer-6cu4fc { order: 7; } .framer-Sstiw .framer-1ck00cc, .framer-Sstiw .framer-1s40cdi, .framer-Sstiw .framer-qn6tsj, .framer-Sstiw .framer-4dkn1v { height: var(--framer-aspect-ratio-supported, 283px); } .framer-Sstiw .framer-kphken { order: 8; padding: 6px 24px 40px 24px; } .framer-Sstiw .framer-mi4gfs { top: -184px; } .framer-Sstiw .framer-at65vu { order: 9; } .framer-Sstiw .framer-1cuh3wu { order: 10; } .framer-Sstiw .framer-1qqjbsy-container { order: 11; } .framer-Sstiw .framer-1uvxxs4-container { order: 12; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 14937\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"IiAa_hY9m\":{\"layout\":[\"fixed\",\"auto\"]},\"pYgsX8wis\":{\"layout\":[\"fixed\",\"auto\"]},\"KZYm3bfcS\":{\"layout\":[\"fixed\",\"auto\"]},\"s3lK_0fWl\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"d_iWsDr09\":{\"pattern\":\":d_iWsDr09\",\"name\":\"hero1\"},\"fYlrXHB7e\":{\"pattern\":\":fYlrXHB7e\",\"name\":\"social1\"},\"NQNu9G4PZ\":{\"pattern\":\":NQNu9G4PZ\",\"name\":\"section1\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-Sstiw\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:14937,width:1440};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\"},{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Aeonik Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/awL1YFYNpefpej7pWphjGhHiK0.ttf\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"},{family:\"Aeonik Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/pFY1xpfKGn7gough0jeyrbHxIo.ttf\"}]},...NavbarV3Fonts,...PhoneNumberFonts,...ButtonSlideFonts,...HeroComponentFonts,...SocialProofTickerFonts,...PhosphorFonts,...ButtonCTAV3Fonts,...SlideshowFonts,...CounterFonts,...TestimonialCardFonts,...Slideshow1Fonts,...TickerFonts,...CTAFonts,...FooterFonts,...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\":{\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"14937\",\"framerScrollSections\":\"{\\\"d_iWsDr09\\\":{\\\"pattern\\\":\\\":d_iWsDr09\\\",\\\"name\\\":\\\"hero1\\\"},\\\"fYlrXHB7e\\\":{\\\"pattern\\\":\\\":fYlrXHB7e\\\",\\\"name\\\":\\\"social1\\\"},\\\"NQNu9G4PZ\\\":{\\\"pattern\\\":\\\":NQNu9G4PZ\\\",\\\"name\\\":\\\"section1\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IiAa_hY9m\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pYgsX8wis\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KZYm3bfcS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"s3lK_0fWl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "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", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "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", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "logo", "name1", "review", "role", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ke6OfpWgM", "ZxDvDHCGG", "PyCNd0BKx", "KwgsuQf3t", "vgKQQvS3x", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "RichText2", "css", "Framergg7iOWzGw", "withCSS", "gg7iOWzGw_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "NavbarV3Fonts", "getFonts", "SIOxrBKxK_default", "PhoneNumberFonts", "lCKtPEkWf_default", "ContainerWithFX", "withFX", "Container", "ButtonSlideFonts", "u81cFBdtG_default", "HeroComponentFonts", "ploBRATPa_default", "SocialProofTickerFonts", "D31nIKIL6_default", "PhosphorFonts", "Icon", "ButtonCTAV3Fonts", "L_fRY7lcR_default", "SlideshowFonts", "Slideshow", "CounterFonts", "Counter", "TestimonialCardFonts", "gg7iOWzGw_default", "Slideshow1Fonts", "TickerFonts", "Ticker", "CTAFonts", "OhbfYXeog_default", "FooterFonts", "Chwg7yHFM_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "ref1", "elementId", "useRouteElementId", "router", "useRouter", "elementId1", "ref2", "isDisplayed1", "isDisplayed2", "isDisplayed3", "elementId2", "ref3", "isDisplayed4", "isDisplayed5", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Image2", "RichText2", "x", "ResolveLinks", "resolvedLinks", "SVG", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
