{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js", "ssg:https://framerusercontent.com/modules/VIS1iyYr3QY5KBz4g62C/bI05zV6yvrdVUnrrwXeK/cf0G3GyX_.js", "ssg:https://framerusercontent.com/modules/iOtkIVgrVVMbfV4OMBMr/VKK8uw5IzSmZdZEzMVWB/SLDACpKMM.js", "ssg:https://framerusercontent.com/modules/qMPaDqiwbkzBRfPEnSvj/fvTAJbNGB69lgChSIoN3/mY6FcSiYG.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.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\";/**\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;const hasChildren=Children.count(slots)>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 slots.map(index=>/*#__PURE__*/createRef());},[slots]);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=slots.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=slots===null||slots===void 0?void 0:slots.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(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.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:slots===null||slots===void 0?void 0:slots.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<(slots===null||slots===void 0?void 0:slots.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: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?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: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\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (d03ec02)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"TzUeSAEc1\"];const serializationHash=\"framer-Ta5ix\";const variantClassNames={TzUeSAEc1:\"framer-v-uj7r8q\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping: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!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({backgroundColor,height,id,image,name1,positions,subPosiColor,testimonials,textColor,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6;return{...props,CQ8TzxnMf:(_ref=testimonials!==null&&testimonials!==void 0?testimonials:props.CQ8TzxnMf)!==null&&_ref!==void 0?_ref:\"The ease of use and high-quality video have brought our team closer together and making meetings more productive\",H4ktKHGbS:(_ref1=name1!==null&&name1!==void 0?name1:props.H4ktKHGbS)!==null&&_ref1!==void 0?_ref1:\"Marcus Greene\",iFiH2ArEc:(_ref2=image!==null&&image!==void 0?image:props.iFiH2ArEc)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/K0YeksX7PvRAkVPLxoEdD30dfP0.png\"},UapNMPyRP:(_ref3=textColor!==null&&textColor!==void 0?textColor:props.UapNMPyRP)!==null&&_ref3!==void 0?_ref3:\"rgb(35, 56, 118)\",W0moGAXa6:(_ref4=subPosiColor!==null&&subPosiColor!==void 0?subPosiColor:props.W0moGAXa6)!==null&&_ref4!==void 0?_ref4:\"rgb(82, 82, 91)\",xPg18Cf0H:(_ref5=backgroundColor!==null&&backgroundColor!==void 0?backgroundColor:props.xPg18Cf0H)!==null&&_ref5!==void 0?_ref5:\"rgb(222, 226, 255)\",yOX7HSevq:(_ref6=positions!==null&&positions!==void 0?positions:props.yOX7HSevq)!==null&&_ref6!==void 0?_ref6:\" Chief Medical Officer\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,iFiH2ArEc,CQ8TzxnMf,H4ktKHGbS,yOX7HSevq,xPg18Cf0H,UapNMPyRP,W0moGAXa6,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"TzUeSAEc1\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-uj7r8q\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"TzUeSAEc1\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:xPg18Cf0H,borderBottomLeftRadius:26,borderBottomRightRadius:26,borderTopLeftRadius:26,borderTopRightRadius:26,...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-155kbtl\",\"data-framer-name\":\"Testimonials\",layoutDependency:layoutDependency,layoutId:\"IUCO3VbUL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-UapNMPyRP-cf0G3GyX_))\"},children:\"The ease of use and high-quality video have brought our team closer together and making meetings more productive\"})}),className:\"framer-z3auvs\",\"data-framer-name\":\"The ease of use and high-quality video have brought our team closer together and making meetings more productive\",fonts:[\"GF;Plus Jakarta Sans-500\"],layoutDependency:layoutDependency,layoutId:\"pXksr3Foz\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-UapNMPyRP-cf0G3GyX_)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-UapNMPyRP-cf0G3GyX_\":UapNMPyRP},text:CQ8TzxnMf,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h0mnx8\",\"data-framer-name\":\"Details\",layoutDependency:layoutDependency,layoutId:\"SsyjtSyGh\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",sizes:\"74px\",...toResponsiveImage(iFiH2ArEc),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1bxfsfa\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"JxUvmnWYW\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15hkcn3\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"i22I6Vq24\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-UapNMPyRP-cf0G3GyX_))\"},children:\"Marcus Greene\"})}),className:\"framer-wowfex\",\"data-framer-name\":\"Marcus Greene\",fonts:[\"GF;Plus Jakarta Sans-700\"],layoutDependency:layoutDependency,layoutId:\"UWZQVKWI1\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-UapNMPyRP-cf0G3GyX_)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-UapNMPyRP-cf0G3GyX_\":UapNMPyRP},text:H4ktKHGbS,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-W0moGAXa6-cf0G3GyX_))\"},children:\" Chief Medical Officer\"})}),className:\"framer-kn6tzr\",\"data-framer-name\":\"Chief Medical Officer\",fonts:[\"GF;Plus Jakarta Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"ALF2Q0OMt\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-W0moGAXa6-cf0G3GyX_)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-W0moGAXa6-cf0G3GyX_\":W0moGAXa6},text:yOX7HSevq,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})})});});const css=['.framer-Ta5ix[data-border=\"true\"]::after, .framer-Ta5ix [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ta5ix.framer-1jw2jar, .framer-Ta5ix .framer-1jw2jar { display: block; }\",\".framer-Ta5ix.framer-uj7r8q { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 32px 32px 32px 32px; position: relative; width: 384px; }\",\".framer-Ta5ix .framer-155kbtl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-Ta5ix .framer-z3auvs, .framer-Ta5ix .framer-wowfex, .framer-Ta5ix .framer-kn6tzr { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Ta5ix .framer-1h0mnx8 { 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 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Ta5ix .framer-1bxfsfa { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 74px); position: relative; width: 74px; }\",\".framer-Ta5ix .framer-15hkcn3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ta5ix.framer-uj7r8q, .framer-Ta5ix .framer-155kbtl, .framer-Ta5ix .framer-1h0mnx8, .framer-Ta5ix .framer-15hkcn3 { gap: 0px; } .framer-Ta5ix.framer-uj7r8q > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Ta5ix.framer-uj7r8q > :first-child { margin-left: 0px; } .framer-Ta5ix.framer-uj7r8q > :last-child { margin-right: 0px; } .framer-Ta5ix .framer-155kbtl > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-Ta5ix .framer-155kbtl > :first-child, .framer-Ta5ix .framer-1h0mnx8 > :first-child, .framer-Ta5ix .framer-15hkcn3 > :first-child { margin-top: 0px; } .framer-Ta5ix .framer-155kbtl > :last-child, .framer-Ta5ix .framer-1h0mnx8 > :last-child, .framer-Ta5ix .framer-15hkcn3 > :last-child { margin-bottom: 0px; } .framer-Ta5ix .framer-1h0mnx8 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Ta5ix .framer-15hkcn3 > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 374\n * @framerIntrinsicWidth 384\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"iFiH2ArEc\":\"image\",\"CQ8TzxnMf\":\"testimonials\",\"H4ktKHGbS\":\"name1\",\"yOX7HSevq\":\"positions\",\"xPg18Cf0H\":\"backgroundColor\",\"UapNMPyRP\":\"textColor\",\"W0moGAXa6\":\"subPosiColor\"}\n * @framerImmutableVariables true\n */const Framercf0G3GyX_=withCSS(Component,css,\"framer-Ta5ix\");export default Framercf0G3GyX_;Framercf0G3GyX_.displayName=\"Testimonials card\";Framercf0G3GyX_.defaultProps={height:374,width:384};addPropertyControls(Framercf0G3GyX_,{iFiH2ArEc:{__defaultAssetReference:\"data:framer/asset-reference,K0YeksX7PvRAkVPLxoEdD30dfP0.png?originalFilename=Ellipse+45.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},CQ8TzxnMf:{defaultValue:\"The ease of use and high-quality video have brought our team closer together and making meetings more productive\",displayTextArea:true,title:\"testimonials\",type:ControlType.String},H4ktKHGbS:{defaultValue:\"Marcus Greene\",displayTextArea:false,title:\"Name\",type:ControlType.String},yOX7HSevq:{defaultValue:\" Chief Medical Officer\",displayTextArea:false,title:\"Positions\",type:ControlType.String},xPg18Cf0H:{defaultValue:\"rgb(222, 226, 255)\",title:\"Background color\",type:ControlType.Color},UapNMPyRP:{defaultValue:\"rgb(35, 56, 118)\",title:\"Text color\",type:ControlType.Color},W0moGAXa6:{defaultValue:\"rgb(82, 82, 91)\",title:\"Sub posi color\",type:ControlType.Color}});addFonts(Framercf0G3GyX_,[{family:\"Plus Jakarta Sans\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NTxXUEKi4Rw.woff2\",weight:\"500\"},{family:\"Plus Jakarta Sans\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNTxXUEKi4Rw.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NTxXUEKi4Rw.woff2\",weight:\"400\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framercf0G3GyX_\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"374\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"384\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"iFiH2ArEc\\\":\\\"image\\\",\\\"CQ8TzxnMf\\\":\\\"testimonials\\\",\\\"H4ktKHGbS\\\":\\\"name1\\\",\\\"yOX7HSevq\\\":\\\"positions\\\",\\\"xPg18Cf0H\\\":\\\"backgroundColor\\\",\\\"UapNMPyRP\\\":\\\"textColor\\\",\\\"W0moGAXa6\\\":\\\"subPosiColor\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cf0G3GyX_.map", "// Generated by Framer (41c59c7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SVG,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/rNNQaSo9gnSTDyR90Hbh/K4obIb7oy47huVG44MBh/X1ScQMjcy.js\";import ButtonWithoutIcon from\"https://framerusercontent.com/modules/3nE3mtwCJyvIXeGJZKpn/0HNynH2VjyBXxq1vG8SD/zWSd_ITwN.js\";const ButtonWithoutIconFonts=getFonts(ButtonWithoutIcon);const cycleOrder=[\"Mu4YFzYW9\",\"EjoWghrdD\",\"WuE8B2i8w\"];const serializationHash=\"framer-fIqgz\";const variantClassNames={EjoWghrdD:\"framer-v-889bc7\",Mu4YFzYW9:\"framer-v-8c3bdd\",WuE8B2i8w:\"framer-v-1p6g6sd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"Mu4YFzYW9\",\"Variant 2\":\"EjoWghrdD\",tablet:\"WuE8B2i8w\"};const getProps=({height,id,link,listItem1,listItem2,listItem3,listItem4,listItem5,planText,price,subText,visible,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_ref7,_humanReadableVariantMap_props_variant,_ref8,_ref9;return{...props,aPwZx_2FG:(_ref=listItem4!==null&&listItem4!==void 0?listItem4:props.aPwZx_2FG)!==null&&_ref!==void 0?_ref:\"Multi-host option\",D4iGdOPsh:(_ref1=subText!==null&&subText!==void 0?subText:props.D4iGdOPsh)!==null&&_ref1!==void 0?_ref1:\"For most businesses that want to otpimize web queries\",FespGoCrh:(_ref2=planText!==null&&planText!==void 0?planText:props.FespGoCrh)!==null&&_ref2!==void 0?_ref2:\"Pro Plan\",it5JACkBa:link!==null&&link!==void 0?link:props.it5JACkBa,KiQbFb7mS:(_ref3=listItem5!==null&&listItem5!==void 0?listItem5:props.KiQbFb7mS)!==null&&_ref3!==void 0?_ref3:\"Cloud storage\",Oh78w6EY6:(_ref4=listItem1!==null&&listItem1!==void 0?listItem1:props.Oh78w6EY6)!==null&&_ref4!==void 0?_ref4:\"Unlimited\",RcxMgaI3E:(_ref5=price!==null&&price!==void 0?price:props.RcxMgaI3E)!==null&&_ref5!==void 0?_ref5:\"$100\",s7F2P6Zcw:(_ref6=listItem3!==null&&listItem3!==void 0?listItem3:props.s7F2P6Zcw)!==null&&_ref6!==void 0?_ref6:\"Advanced admin controls\",Uo8JR1hFh:(_ref7=visible!==null&&visible!==void 0?visible:props.Uo8JR1hFh)!==null&&_ref7!==void 0?_ref7:true,variant:(_ref8=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref8!==void 0?_ref8:\"Mu4YFzYW9\",weDe1GsIM:(_ref9=listItem2!==null&&listItem2!==void 0?listItem2:props.weDe1GsIM)!==null&&_ref9!==void 0?_ref9:\"Full HD video quality\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,D4iGdOPsh,FespGoCrh,Oh78w6EY6,weDe1GsIM,s7F2P6Zcw,aPwZx_2FG,KiQbFb7mS,RcxMgaI3E,Uo8JR1hFh,it5JACkBa,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Mu4YFzYW9\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-8c3bdd\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Mu4YFzYW9\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:26,borderBottomRightRadius:26,borderTopLeftRadius:26,borderTopRightRadius:26,...style},...addPropertyOverrides({EjoWghrdD:{\"data-framer-name\":\"Variant 2\"},WuE8B2i8w:{\"data-framer-name\":\"tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17vd7zp\",layoutDependency:layoutDependency,layoutId:\"GrTth_jpS\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t08gwg\",layoutDependency:layoutDependency,layoutId:\"ckHVG8iuI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-w16bu8\",\"data-styles-preset\":\"X1ScQMjcy\",children:\"Pro Plan\"})}),className:\"framer-kvyu\",\"data-framer-name\":\"MOST POPULAR\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"X9LD7ikPu\",text:FespGoCrh,verticalAlignment:\"top\",withExternalLayout:true}),Uo8JR1hFh&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-bhgkc5\",\"data-framer-name\":\"Popular\",layoutDependency:layoutDependency,layoutId:\"eLDu60E5Y\",style:{backgroundColor:\"rgb(211, 216, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(35, 56, 118))\"},children:\"Popular\"})}),className:\"framer-hyx68s\",\"data-framer-name\":\"MOST POPULAR\",fonts:[\"GF;Plus Jakarta Sans-700\"],layoutDependency:layoutDependency,layoutId:\"AK0DSf7HC\",style:{\"--extracted-r6o4lv\":\"rgb(35, 56, 118)\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wog97y\",\"data-framer-name\":\"Price\",layoutDependency:layoutDependency,layoutId:\"fmAWXciFi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(35, 56, 118))\"},children:\"$100\"})}),className:\"framer-1732fn0\",\"data-framer-name\":\"$50\",fonts:[\"GF;Plus Jakarta Sans-800\"],layoutDependency:layoutDependency,layoutId:\"sId9UjhLt\",style:{\"--extracted-r6o4lv\":\"rgb(35, 56, 118)\"},text:RcxMgaI3E,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(75, 85, 99))\"},children:\"/month\"})}),className:\"framer-168sk5d\",\"data-framer-name\":\"/month\",fonts:[\"GF;Plus Jakarta Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"geyruullD\",style:{\"--extracted-r6o4lv\":\"rgb(75, 85, 99)\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(82, 82, 91))\"},children:\"For most businesses that want to otpimize web queries\"})}),className:\"framer-1t0gq2u\",\"data-framer-name\":\"For most businesses\",fonts:[\"GF;Plus Jakarta Sans-500\"],layoutDependency:layoutDependency,layoutId:\"UcwYyyeZ7\",style:{\"--extracted-r6o4lv\":\"rgb(82, 82, 91)\"},text:D4iGdOPsh,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l5mhhu\",\"data-framer-name\":\"Frame 39582\",layoutDependency:layoutDependency,layoutId:\"taVV546cm\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1862m65\",\"data-framer-name\":\"List Item\",layoutDependency:layoutDependency,layoutId:\"ekiLwJV3r\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18jt0fo\",\"data-framer-name\":\"check-circle-1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:21,layoutDependency:layoutDependency,layoutId:\"elAPy7doA\",svg:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.2991 0C4.61108 0 0 4.47715 0 10C0 15.5228 4.61108 20 10.2991 20C15.9872 20 20.5983 15.5228 20.5983 10C20.5917 4.47982 15.9845 0.00642897 10.2991 0Z\" fill=\"#D0E5FE\"/>\\n<path d=\"M14.8547 7.00701L10.3777 12.7511C10.271 12.885 10.1118 12.9728 9.93589 12.9947C9.76001 13.0165 9.58222 12.9707 9.44246 12.8674L6.24548 10.4507C5.96337 10.2373 5.91769 9.84804 6.14345 9.58131C6.36921 9.31458 6.78093 9.27139 7.06304 9.48484L9.72893 11.5014L13.8017 6.27547C13.9352 6.08599 14.1681 5.98123 14.4079 6.00278C14.6476 6.02434 14.8554 6.16872 14.9488 6.37859C15.0422 6.58847 15.006 6.82989 14.8547 7.00701Z\" fill=\"#1C64F2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(82, 82, 91))\"},children:\"Unlimited\"})}),className:\"framer-1nnzczd\",\"data-framer-name\":\"All limited links\",fonts:[\"GF;Plus Jakarta Sans-500\"],layoutDependency:layoutDependency,layoutId:\"uQJXV70Ej\",style:{\"--extracted-r6o4lv\":\"rgb(82, 82, 91)\"},text:Oh78w6EY6,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-peepgg\",\"data-framer-name\":\"List Item\",layoutDependency:layoutDependency,layoutId:\"wlhFZ5AoQ\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1748j61\",\"data-framer-name\":\"check-circle-1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:21,layoutDependency:layoutDependency,layoutId:\"ZsO1ZD0Sy\",svg:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.2991 0C4.61108 0 0 4.47715 0 10C0 15.5228 4.61108 20 10.2991 20C15.9872 20 20.5983 15.5228 20.5983 10C20.5917 4.47982 15.9845 0.00642897 10.2991 0Z\" fill=\"#D0E5FE\"/>\\n<path d=\"M14.8547 7.00701L10.3777 12.7511C10.271 12.885 10.1118 12.9728 9.93589 12.9947C9.76001 13.0165 9.58222 12.9707 9.44246 12.8674L6.24548 10.4507C5.96337 10.2373 5.91769 9.84804 6.14345 9.58131C6.36921 9.31458 6.78093 9.27139 7.06304 9.48484L9.72893 11.5014L13.8017 6.27547C13.9352 6.08599 14.1681 5.98123 14.4079 6.00278C14.6476 6.02434 14.8554 6.16872 14.9488 6.37859C15.0422 6.58847 15.006 6.82989 14.8547 7.00701Z\" fill=\"#1C64F2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(82, 82, 91))\"},children:\"Full HD video quality\"})}),className:\"framer-fzhh2c\",\"data-framer-name\":\"All limited links\",fonts:[\"GF;Plus Jakarta Sans-500\"],layoutDependency:layoutDependency,layoutId:\"JkXjPHSqY\",style:{\"--extracted-r6o4lv\":\"rgb(82, 82, 91)\"},text:weDe1GsIM,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2bqbix\",\"data-framer-name\":\"List Item\",layoutDependency:layoutDependency,layoutId:\"fiRaNbIgE\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-krnup5\",\"data-framer-name\":\"check-circle-1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:21,layoutDependency:layoutDependency,layoutId:\"HBqtNRtGF\",svg:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.2991 0C4.61108 0 0 4.47715 0 10C0 15.5228 4.61108 20 10.2991 20C15.9872 20 20.5983 15.5228 20.5983 10C20.5917 4.47982 15.9845 0.00642897 10.2991 0Z\" fill=\"#D0E5FE\"/>\\n<path d=\"M14.8547 7.00701L10.3777 12.7511C10.271 12.885 10.1118 12.9728 9.93589 12.9947C9.76001 13.0165 9.58222 12.9707 9.44246 12.8674L6.24548 10.4507C5.96337 10.2373 5.91769 9.84804 6.14345 9.58131C6.36921 9.31458 6.78093 9.27139 7.06304 9.48484L9.72893 11.5014L13.8017 6.27547C13.9352 6.08599 14.1681 5.98123 14.4079 6.00278C14.6476 6.02434 14.8554 6.16872 14.9488 6.37859C15.0422 6.58847 15.006 6.82989 14.8547 7.00701Z\" fill=\"#1C64F2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(82, 82, 91))\"},children:\"Advanced admin controls\"})}),className:\"framer-13nel8r\",\"data-framer-name\":\"All limited links\",fonts:[\"GF;Plus Jakarta Sans-500\"],layoutDependency:layoutDependency,layoutId:\"EKD2AMJ4Q\",style:{\"--extracted-r6o4lv\":\"rgb(82, 82, 91)\"},text:s7F2P6Zcw,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wnqw67\",\"data-framer-name\":\"List Item\",layoutDependency:layoutDependency,layoutId:\"FBryXxBMG\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18b9nir\",\"data-framer-name\":\"check-circle-1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:21,layoutDependency:layoutDependency,layoutId:\"qbHUZugxR\",svg:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.2991 0C4.61108 0 0 4.47715 0 10C0 15.5228 4.61108 20 10.2991 20C15.9872 20 20.5983 15.5228 20.5983 10C20.5917 4.47982 15.9845 0.00642897 10.2991 0Z\" fill=\"#D0E5FE\"/>\\n<path d=\"M14.8547 7.00701L10.3777 12.7511C10.271 12.885 10.1118 12.9728 9.93589 12.9947C9.76001 13.0165 9.58222 12.9707 9.44246 12.8674L6.24548 10.4507C5.96337 10.2373 5.91769 9.84804 6.14345 9.58131C6.36921 9.31458 6.78093 9.27139 7.06304 9.48484L9.72893 11.5014L13.8017 6.27547C13.9352 6.08599 14.1681 5.98123 14.4079 6.00278C14.6476 6.02434 14.8554 6.16872 14.9488 6.37859C15.0422 6.58847 15.006 6.82989 14.8547 7.00701Z\" fill=\"#1C64F2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(82, 82, 91))\"},children:\"Multi-host option\"})}),className:\"framer-19r8hdy\",\"data-framer-name\":\"All limited links\",fonts:[\"GF;Plus Jakarta Sans-500\"],layoutDependency:layoutDependency,layoutId:\"zwaZtTt7o\",style:{\"--extracted-r6o4lv\":\"rgb(82, 82, 91)\"},text:aPwZx_2FG,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qpr0we\",\"data-framer-name\":\"List Item\",layoutDependency:layoutDependency,layoutId:\"BRi4nysLv\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-a12udk\",\"data-framer-name\":\"check-circle-1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:21,layoutDependency:layoutDependency,layoutId:\"T9lq58jId\",svg:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.2991 0C4.61108 0 0 4.47715 0 10C0 15.5228 4.61108 20 10.2991 20C15.9872 20 20.5983 15.5228 20.5983 10C20.5917 4.47982 15.9845 0.00642897 10.2991 0Z\" fill=\"#D0E5FE\"/>\\n<path d=\"M14.8547 7.00701L10.3777 12.7511C10.271 12.885 10.1118 12.9728 9.93589 12.9947C9.76001 13.0165 9.58222 12.9707 9.44246 12.8674L6.24548 10.4507C5.96337 10.2373 5.91769 9.84804 6.14345 9.58131C6.36921 9.31458 6.78093 9.27139 7.06304 9.48484L9.72893 11.5014L13.8017 6.27547C13.9352 6.08599 14.1681 5.98123 14.4079 6.00278C14.6476 6.02434 14.8554 6.16872 14.9488 6.37859C15.0422 6.58847 15.006 6.82989 14.8547 7.00701Z\" fill=\"#1C64F2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(82, 82, 91))\"},children:\"Cloud storage\"})}),className:\"framer-1yiomsd\",\"data-framer-name\":\"All limited links\",fonts:[\"GF;Plus Jakarta Sans-500\"],layoutDependency:layoutDependency,layoutId:\"WtBlkug7P\",style:{\"--extracted-r6o4lv\":\"rgb(82, 82, 91)\"},text:KiQbFb7mS,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h0tjt9\",layoutDependency:layoutDependency,layoutId:\"KiMpDvfq2\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yf6vl6-container\",layoutDependency:layoutDependency,layoutId:\"JKjhjciFN-container\",children:/*#__PURE__*/_jsx(ButtonWithoutIcon,{aPIJcQDNQ:it5JACkBa,height:\"100%\",id:\"JKjhjciFN\",IJ8Rzsu5g:\"var(--token-15b2631b-3952-418c-8fee-1fcfb2e39183, rgb(0, 0, 0))\",JRXRfq7xp:\"rgb(255, 255, 255)\",krKVQc9kv:\"var(--token-23a245a0-89dd-4471-9e48-3df6c8e56362, rgb(28, 100, 242))\",layoutId:\"JKjhjciFN\",style:{width:\"100%\"},variant:\"y8SH4tiKI\",width:\"100%\",XuT9qVtcz:\"Get the Plan\",...addPropertyOverrides({EjoWghrdD:{variant:\"jtZAj8PSG\"}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fIqgz.framer-4r4ath, .framer-fIqgz .framer-4r4ath { display: block; }\",\".framer-fIqgz.framer-8c3bdd { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 24px 24px 24px 24px; position: relative; width: 286px; }\",\".framer-fIqgz .framer-17vd7zp { 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 0px 0px 0px; position: relative; width: 100%; }\",\".framer-fIqgz .framer-1t08gwg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-fIqgz .framer-kvyu, .framer-fIqgz .framer-1nnzczd, .framer-fIqgz .framer-fzhh2c, .framer-fIqgz .framer-13nel8r, .framer-fIqgz .framer-19r8hdy, .framer-fIqgz .framer-1yiomsd { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-fIqgz .framer-bhgkc5 { 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: 7px 16px 7px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-fIqgz .framer-hyx68s, .framer-fIqgz .framer-1732fn0, .framer-fIqgz .framer-168sk5d { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-fIqgz .framer-wog97y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-fIqgz .framer-1t0gq2u { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-fIqgz .framer-l5mhhu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-fIqgz .framer-1862m65, .framer-fIqgz .framer-peepgg, .framer-fIqgz .framer-2bqbix, .framer-fIqgz .framer-1wnqw67, .framer-fIqgz .framer-qpr0we { 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 0px 0px 0px; position: relative; width: 100%; }\",\".framer-fIqgz .framer-18jt0fo, .framer-fIqgz .framer-1748j61, .framer-fIqgz .framer-krnup5, .framer-fIqgz .framer-18b9nir, .framer-fIqgz .framer-a12udk { aspect-ratio: 1.05 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 21px; }\",\".framer-fIqgz .framer-1h0tjt9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-fIqgz .framer-1yf6vl6-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fIqgz.framer-8c3bdd, .framer-fIqgz .framer-17vd7zp, .framer-fIqgz .framer-1t08gwg, .framer-fIqgz .framer-bhgkc5, .framer-fIqgz .framer-wog97y, .framer-fIqgz .framer-l5mhhu, .framer-fIqgz .framer-1862m65, .framer-fIqgz .framer-peepgg, .framer-fIqgz .framer-2bqbix, .framer-fIqgz .framer-1wnqw67, .framer-fIqgz .framer-qpr0we, .framer-fIqgz .framer-1h0tjt9 { gap: 0px; } .framer-fIqgz.framer-8c3bdd > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-fIqgz.framer-8c3bdd > :first-child, .framer-fIqgz .framer-17vd7zp > :first-child, .framer-fIqgz .framer-l5mhhu > :first-child, .framer-fIqgz .framer-1h0tjt9 > :first-child { margin-top: 0px; } .framer-fIqgz.framer-8c3bdd > :last-child, .framer-fIqgz .framer-17vd7zp > :last-child, .framer-fIqgz .framer-l5mhhu > :last-child, .framer-fIqgz .framer-1h0tjt9 > :last-child { margin-bottom: 0px; } .framer-fIqgz .framer-17vd7zp > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fIqgz .framer-1t08gwg > *, .framer-fIqgz .framer-1862m65 > *, .framer-fIqgz .framer-peepgg > *, .framer-fIqgz .framer-2bqbix > *, .framer-fIqgz .framer-1wnqw67 > *, .framer-fIqgz .framer-qpr0we > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-fIqgz .framer-1t08gwg > :first-child, .framer-fIqgz .framer-bhgkc5 > :first-child, .framer-fIqgz .framer-wog97y > :first-child, .framer-fIqgz .framer-1862m65 > :first-child, .framer-fIqgz .framer-peepgg > :first-child, .framer-fIqgz .framer-2bqbix > :first-child, .framer-fIqgz .framer-1wnqw67 > :first-child, .framer-fIqgz .framer-qpr0we > :first-child { margin-left: 0px; } .framer-fIqgz .framer-1t08gwg > :last-child, .framer-fIqgz .framer-bhgkc5 > :last-child, .framer-fIqgz .framer-wog97y > :last-child, .framer-fIqgz .framer-1862m65 > :last-child, .framer-fIqgz .framer-peepgg > :last-child, .framer-fIqgz .framer-2bqbix > :last-child, .framer-fIqgz .framer-1wnqw67 > :last-child, .framer-fIqgz .framer-qpr0we > :last-child { margin-right: 0px; } .framer-fIqgz .framer-bhgkc5 > *, .framer-fIqgz .framer-wog97y > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-fIqgz .framer-l5mhhu > *, .framer-fIqgz .framer-1h0tjt9 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-fIqgz.framer-v-1p6g6sd .framer-1t08gwg { align-content: flex-start; align-items: flex-start; flex-direction: column; }\",\".framer-fIqgz.framer-v-1p6g6sd .framer-kvyu { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fIqgz.framer-v-1p6g6sd .framer-1t08gwg { gap: 0px; } .framer-fIqgz.framer-v-1p6g6sd .framer-1t08gwg > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fIqgz.framer-v-1p6g6sd .framer-1t08gwg > :first-child { margin-top: 0px; } .framer-fIqgz.framer-v-1p6g6sd .framer-1t08gwg > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 455\n * @framerIntrinsicWidth 286\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"EjoWghrdD\":{\"layout\":[\"fixed\",\"auto\"]},\"WuE8B2i8w\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"D4iGdOPsh\":\"subText\",\"FespGoCrh\":\"planText\",\"Oh78w6EY6\":\"listItem1\",\"weDe1GsIM\":\"listItem2\",\"s7F2P6Zcw\":\"listItem3\",\"aPwZx_2FG\":\"listItem4\",\"KiQbFb7mS\":\"listItem5\",\"RcxMgaI3E\":\"price\",\"Uo8JR1hFh\":\"visible\",\"it5JACkBa\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSLDACpKMM=withCSS(Component,css,\"framer-fIqgz\");export default FramerSLDACpKMM;FramerSLDACpKMM.displayName=\"Pricing card 2\";FramerSLDACpKMM.defaultProps={height:455,width:286};addPropertyControls(FramerSLDACpKMM,{variant:{options:[\"Mu4YFzYW9\",\"EjoWghrdD\",\"WuE8B2i8w\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"tablet\"],title:\"Variant\",type:ControlType.Enum},D4iGdOPsh:{defaultValue:\"For most businesses that want to otpimize web queries\",displayTextArea:false,title:\"sub text\",type:ControlType.String},FespGoCrh:{defaultValue:\"Pro Plan\",displayTextArea:false,title:\"Plan text\",type:ControlType.String},Oh78w6EY6:{defaultValue:\"Unlimited\",displayTextArea:false,title:\"list item 1\",type:ControlType.String},weDe1GsIM:{defaultValue:\"Full HD video quality\",displayTextArea:false,title:\"list item 2\",type:ControlType.String},s7F2P6Zcw:{defaultValue:\"Advanced admin controls\",title:\"list item 3\",type:ControlType.String},aPwZx_2FG:{defaultValue:\"Multi-host option\",title:\"list item 4\",type:ControlType.String},KiQbFb7mS:{defaultValue:\"Cloud storage\",title:\"list item 5\",type:ControlType.String},RcxMgaI3E:{defaultValue:\"$100\",displayTextArea:false,title:\"Price\",type:ControlType.String},Uo8JR1hFh:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean},it5JACkBa:{title:\"Link\",type:ControlType.Link}});addFonts(FramerSLDACpKMM,[{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\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNTxXUEKi4Rw.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNTxXUEKi4Rw.woff2\",weight:\"800\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NTxXUEKi4Rw.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NTxXUEKi4Rw.woff2\",weight:\"500\"}]},...ButtonWithoutIconFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSLDACpKMM\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"D4iGdOPsh\\\":\\\"subText\\\",\\\"FespGoCrh\\\":\\\"planText\\\",\\\"Oh78w6EY6\\\":\\\"listItem1\\\",\\\"weDe1GsIM\\\":\\\"listItem2\\\",\\\"s7F2P6Zcw\\\":\\\"listItem3\\\",\\\"aPwZx_2FG\\\":\\\"listItem4\\\",\\\"KiQbFb7mS\\\":\\\"listItem5\\\",\\\"RcxMgaI3E\\\":\\\"price\\\",\\\"Uo8JR1hFh\\\":\\\"visible\\\",\\\"it5JACkBa\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EjoWghrdD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WuE8B2i8w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"455\",\"framerIntrinsicWidth\":\"286\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SLDACpKMM.map", "// Generated by Framer (508aa67)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,optimizeAppear,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import Footer2nd from\"#framer/local/canvasComponent/b86CvLFdI/b86CvLFdI.js\";import TestimonialsCard from\"#framer/local/canvasComponent/cf0G3GyX_/cf0G3GyX_.js\";import Navbar3 from\"#framer/local/canvasComponent/NBa_kmYy3/NBa_kmYy3.js\";import FAQs2nd from\"#framer/local/canvasComponent/oL5tmqAlK/oL5tmqAlK.js\";import PricingCard2 from\"#framer/local/canvasComponent/SLDACpKMM/SLDACpKMM.js\";import ButtonWithoutIcon from\"#framer/local/canvasComponent/zWSd_ITwN/zWSd_ITwN.js\";import*as sharedStyle2 from\"#framer/local/css/DPlOy0VMe/DPlOy0VMe.js\";import*as sharedStyle from\"#framer/local/css/tVYy6BljG/tVYy6BljG.js\";import*as sharedStyle1 from\"#framer/local/css/W0YAFGlkw/W0YAFGlkw.js\";import*as sharedStyle3 from\"#framer/local/css/X1ScQMjcy/X1ScQMjcy.js\";import metadataProvider from\"#framer/local/webPageMetadata/mY6FcSiYG/mY6FcSiYG.js\";const Navbar3Fonts=getFonts(Navbar3);const ContainerWithFX=withFX(Container);const ButtonWithoutIconFonts=getFonts(ButtonWithoutIcon);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const ImageWithFX=withFX(Image);const PricingCard2Fonts=getFonts(PricingCard2);const TestimonialsCardFonts=getFonts(TestimonialsCard);const SlideshowFonts=getFonts(Slideshow);const FAQs2ndFonts=getFonts(FAQs2nd);const Footer2ndFonts=getFonts(Footer2nd);const cycleOrder=[\"OdOfSsIWU\",\"MsRu6q_2e\",\"AH6gjMoBC\"];const breakpoints={AH6gjMoBC:\"(max-width: 809px)\",MsRu6q_2e:\"(min-width: 810px) and (max-width: 1439px)\",OdOfSsIWU:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-AxfM9\";const variantClassNames={AH6gjMoBC:\"framer-v-4ufibd\",MsRu6q_2e:\"framer-v-1elvecx\",OdOfSsIWU:\"framer-v-1dt5h5z\"};const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-82};const transition2={damping:50,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:30};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition3={damping:50,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:30};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition4={damping:30,delay:.5,mass:1,stiffness:150,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition5={damping:50,delay:.4,mass:1,stiffness:150,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:90,y:0};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation11={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:90,y:0};const inertia={bounceDamping:30,bounceStiffness:400,delay:0,type:\"inertia\"};const preventDefault=e=>e.preventDefault();const transition6={damping:50,delay:.5,mass:1,stiffness:150,type:\"spring\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation14={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const transition7={damping:50,delay:.7,mass:1,stiffness:150,type:\"spring\"};const animation15={opacity:0,rotate:15,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,transition:transition7,x:0,y:0};const animation16={cursor:\"grabbing\"};const animation17={opacity:1,rotate:15,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const animation18={opacity:.001,rotate:15,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,x:0,y:0};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition8={damping:40,delay:0,mass:1,stiffness:150,type:\"spring\"};const transition9={damping:30,delay:0,mass:1,stiffness:150,type:\"spring\"};const transition10={damping:30,delay:.1,mass:1,stiffness:150,type:\"spring\"};const transition11={damping:30,delay:.3,mass:1,stiffness:150,type:\"spring\"};const transition12={damping:30,delay:.7,mass:1,stiffness:150,type:\"spring\"};const transition13={damping:30,delay:.9,mass:1,stiffness:150,type:\"spring\"};const transition14={damping:30,delay:1.1,mass:1,stiffness:150,type:\"spring\"};const transition15={damping:30,delay:1.3,mass:1,stiffness:150,type:\"spring\"};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transition16={damping:35,delay:.25,mass:1,stiffness:150,type:\"spring\"};const transition17={damping:35,delay:.3,mass:1,stiffness:150,type:\"spring\"};const transition18={damping:35,delay:.35,mass:1,stiffness:150,type:\"spring\"};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const transition19={damping:40,delay:.5,mass:1,stiffness:150,type:\"spring\"};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition19,x:150,y:0};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:20};const transition20={damping:40,delay:.6,mass:1,stiffness:150,type:\"spring\"};const transition21={damping:35,delay:.3,mass:1,stiffness:200,type:\"spring\"};const transition22={damping:30,delay:.8,mass:1,stiffness:150,type:\"spring\"};const transition23={damping:35,delay:1.2,mass:1,stiffness:200,type:\"spring\"};const animation23={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition24={damping:30,delay:.1,mass:1,stiffness:130,type:\"spring\"};const transition25={damping:30,delay:.3,mass:1,stiffness:130,type:\"spring\"};const transition26={damping:30,delay:.5,mass:1,stiffness:130,type:\"spring\"};const transition27={damping:39,delay:.7,mass:1,stiffness:130,type:\"spring\"};const transition28={damping:30,delay:.2,mass:1,stiffness:150,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition29={damping:30,delay:.4,mass:1,stiffness:150,type:\"spring\"};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"OdOfSsIWU\",Phone:\"AH6gjMoBC\",Tablet:\"MsRu6q_2e\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"OdOfSsIWU\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-AxfM9`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-AxfM9`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if([\"MsRu6q_2e\",\"AH6gjMoBC\"].includes(baseVariant))return!isBrowser();return true;};const isDisplayed1=()=>{if(baseVariant===\"MsRu6q_2e\")return true;return!isBrowser();};const isDisplayed2=()=>{if(baseVariant===\"AH6gjMoBC\")return!isBrowser();return true;};const id=useRouteElementId(\"uYWrgJzsZ\");const ref2=React.useRef(null);const id1=useRouteElementId(\"g6_uhF_21\");const ref3=React.useRef(null);const id2=useRouteElementId(\"XfD3zjFUQ\");const ref4=React.useRef(null);const id3=useRouteElementId(\"SQqbexdnJ\");const ref5=React.useRef(null);const id4=useRouteElementId(\"kweYA22Cj\");const ref6=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"OdOfSsIWU\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1dt5h5z\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1b4tgn7-container\",layoutScroll:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{variant:\"R6LE0RS3C\"},MsRu6q_2e:{variant:\"kCOs2RhDe\"}},children:/*#__PURE__*/_jsx(Navbar3,{height:\"100%\",id:\"d9nE3DAdC\",layoutId:\"d9nE3DAdC\",style:{width:\"100%\"},variant:\"g5PSbA_4I\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-spkecc\",\"data-framer-name\":\"Hero section\",name:\"Hero section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i63bhu\",\"data-framer-name\":\"Conatent\",name:\"Conatent\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t00kla\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11sv69k\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jmxer1\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{\"data-framer-appear-id\":\"zh3qpz\",animate:optimizeAppear(\"animate\",\"zh3qpz\",animation2,\"4ufibd\"),initial:optimizeAppear(\"initial\",\"zh3qpz\",animation3,\"4ufibd\")},MsRu6q_2e:{\"data-framer-appear-id\":\"1hy3eby\",animate:optimizeAppear(\"animate\",\"1hy3eby\",animation2,\"1elvecx\"),initial:optimizeAppear(\"initial\",\"1hy3eby\",animation3,\"1elvecx\")}},children:/*#__PURE__*/_jsxs(motion.div,{animate:optimizeAppear(\"animate\",\"1h4xvc4\",animation2,\"1dt5h5z\"),className:\"framer-1h4xvc4\",\"data-framer-appear-id\":\"1h4xvc4\",\"data-framer-name\":\"Testimonial\",exit:animation1,initial:optimizeAppear(\"initial\",\"1h4xvc4\",animation3,\"1dt5h5z\"),name:\"Testimonial\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1h3ov0t\",\"data-framer-name\":\"fi_10629607\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,name:\"fi_10629607\",svg:'<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_507_854)\">\\n<path d=\"M21.3125 11C21.3125 11.88 20.2314 12.6053 20.0148 13.4166C19.7914 14.2553 20.3569 15.4241 19.9323 16.158C19.5009 16.9039 18.2033 16.9933 17.5983 17.5983C16.9933 18.2033 16.9039 19.5009 16.158 19.9323C15.4241 20.3569 14.2553 19.7914 13.4166 20.0148C12.6053 20.2314 11.88 21.3125 11 21.3125C10.12 21.3125 9.39469 20.2314 8.58344 20.0148C7.74469 19.7914 6.57594 20.3569 5.84203 19.9323C5.09609 19.5009 5.00672 18.2033 4.40172 17.5983C3.79672 16.9933 2.49906 16.9039 2.06766 16.158C1.64312 15.4241 2.20859 14.2553 1.98516 13.4166C1.76859 12.6053 0.6875 11.88 0.6875 11C0.6875 10.12 1.76859 9.39469 1.98516 8.58344C2.20859 7.74469 1.64312 6.57594 2.06766 5.84203C2.49906 5.09609 3.79672 5.00672 4.40172 4.40172C5.00672 3.79672 5.09609 2.49906 5.84203 2.06766C6.57594 1.64312 7.74469 2.20859 8.58344 1.98516C9.39469 1.76859 10.12 0.6875 11 0.6875C11.88 0.6875 12.6053 1.76859 13.4166 1.98516C14.2553 2.20859 15.4241 1.64312 16.158 2.06766C16.9039 2.49906 16.9933 3.79672 17.5983 4.40172C18.2033 5.00672 19.5009 5.09609 19.9323 5.84203C20.3569 6.57594 19.7914 7.74469 20.0148 8.58344C20.2314 9.39469 21.3125 10.12 21.3125 11Z\" fill=\"#1C64F2\"/>\\n<path d=\"M13.9803 7.92699L10.0547 11.8526L8.0197 9.81934C7.57798 9.37762 6.86126 9.37762 6.41955 9.81934C5.97783 10.2611 5.97783 10.9778 6.41955 11.4195L9.27439 14.2743C9.70408 14.704 10.4019 14.704 10.8316 14.2743L15.5788 9.52715C16.0205 9.08543 16.0205 8.36871 15.5788 7.92699C15.137 7.48527 14.422 7.48527 13.9803 7.92699Z\" fill=\"#FFFCEE\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_507_854\">\\n<rect width=\"22\" height=\"22\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(28, 100, 242)\"},children:\"Unlimited Advantages\"})}),className:\"framer-1xzq9ew\",\"data-framer-name\":\"Unlimited Advantages\",fonts:[\"GF;Plus Jakarta Sans-600\"],name:\"Unlimited Advantages\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{\"data-framer-appear-id\":\"sd81o7\",animate:optimizeAppear(\"animate\",\"sd81o7\",animation5,\"4ufibd\"),initial:optimizeAppear(\"initial\",\"sd81o7\",animation3,\"4ufibd\")},MsRu6q_2e:{\"data-framer-appear-id\":\"4x2t7u\",animate:optimizeAppear(\"animate\",\"4x2t7u\",animation5,\"1elvecx\"),initial:optimizeAppear(\"initial\",\"4x2t7u\",animation3,\"1elvecx\")}},children:/*#__PURE__*/_jsxs(motion.div,{animate:optimizeAppear(\"animate\",\"1fll5qj\",animation5,\"1dt5h5z\"),className:\"framer-1fll5qj\",\"data-framer-appear-id\":\"1fll5qj\",exit:animation4,initial:optimizeAppear(\"initial\",\"1fll5qj\",animation3,\"1dt5h5z\"),style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1gqm0ns\",\"data-styles-preset\":\"tVYy6BljG\",children:\"Help Organize\"})}),className:\"framer-1199i04\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:128,intrinsicWidth:184,pixelHeight:128,pixelWidth:184,src:\"https://framerusercontent.com/images/XdcBeTHWkNfErLgI8bYWB01UmZA.png\"},className:\"framer-1muzb1v\"})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{\"data-framer-appear-id\":\"iyjafx\",animate:optimizeAppear(\"animate\",\"iyjafx\",animation5,\"4ufibd\"),initial:optimizeAppear(\"initial\",\"iyjafx\",animation3,\"4ufibd\")},MsRu6q_2e:{\"data-framer-appear-id\":\"zivisw\",animate:optimizeAppear(\"animate\",\"zivisw\",animation5,\"1elvecx\"),initial:optimizeAppear(\"initial\",\"zivisw\",animation3,\"1elvecx\")}},children:/*#__PURE__*/_jsxs(motion.div,{animate:optimizeAppear(\"animate\",\"yg9ksi\",animation5,\"1dt5h5z\"),className:\"framer-yg9ksi\",\"data-framer-appear-id\":\"yg9ksi\",exit:animation4,initial:optimizeAppear(\"initial\",\"yg9ksi\",animation3,\"1dt5h5z\"),style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:128,intrinsicWidth:148,pixelHeight:128,pixelWidth:148,src:\"https://framerusercontent.com/images/QwE9JkjX7ivEGtHAMqDVYWWuyH0.jpg\"},className:\"framer-kyc3hw\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1gqm0ns\",\"data-styles-preset\":\"tVYy6BljG\",children:\"Your Meeting\"})}),className:\"framer-kquv8g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{\"data-framer-appear-id\":\"1e04ktz\",animate:optimizeAppear(\"animate\",\"1e04ktz\",animation5,\"4ufibd\"),initial:optimizeAppear(\"initial\",\"1e04ktz\",animation3,\"4ufibd\")},MsRu6q_2e:{\"data-framer-appear-id\":\"vkwy7b\",animate:optimizeAppear(\"animate\",\"vkwy7b\",animation5,\"1elvecx\"),initial:optimizeAppear(\"initial\",\"vkwy7b\",animation3,\"1elvecx\")}},children:/*#__PURE__*/_jsxs(motion.div,{animate:optimizeAppear(\"animate\",\"w4wbeh\",animation5,\"1dt5h5z\"),className:\"framer-w4wbeh\",\"data-framer-appear-id\":\"w4wbeh\",exit:animation4,initial:optimizeAppear(\"initial\",\"w4wbeh\",animation3,\"1dt5h5z\"),style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1gqm0ns\",\"data-styles-preset\":\"tVYy6BljG\",children:\"Schedule\"})}),className:\"framer-rvs7p2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11gt8kb\",\"data-framer-name\":\"Image card\",name:\"Image card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gyshtx\",\"data-framer-name\":\"Frame 39550\",name:\"Frame 39550\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zn225h\",\"data-framer-name\":\"Frame 39549\",name:\"Frame 39549\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/pbMMal0JnwLWWALCbEz08vMRQE.png\"},className:\"framer-7uecu\",\"data-border\":true,\"data-framer-name\":\"Rectangle 13\",name:\"Rectangle 13\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wdwHdIQkPlIESSJ11qT2pe1eo4.png\"},className:\"framer-1v7jlin\",\"data-border\":true,\"data-framer-name\":\"Rectangle 14\",name:\"Rectangle 14\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/D0I12w70ZggAsfFUklDvRhrt2I.png\"},className:\"framer-dz14sm\",\"data-border\":true,\"data-framer-name\":\"Rectangle 15\",name:\"Rectangle 15\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(35, 56, 118)\"},children:\"+8 peoples\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(35, 56, 118)\"},children:\"+8 peoples\"})}),className:\"framer-theqlv\",\"data-framer-name\":\"+8 peoples\",fonts:[\"GF;Plus Jakarta Sans-600\"],name:\"+8 peoples\",verticalAlignment:\"top\",withExternalLayout:true})})]})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{\"data-framer-appear-id\":\"1oi1moj\",animate:optimizeAppear(\"animate\",\"1oi1moj\",animation2,\"4ufibd\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-33923584-a60b-43dd-9aa3-cb81db66a605, rgb(82, 82, 91))\"},children:[\"Feel free to use this title to introduce the section where you will showcase the various features of your video conferencing tool. \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-weight\":\"700\"},children:\"60 Days free trial\"})]})}),initial:optimizeAppear(\"initial\",\"1oi1moj\",animation3,\"4ufibd\")},MsRu6q_2e:{\"data-framer-appear-id\":\"g8xrg6\",animate:optimizeAppear(\"animate\",\"g8xrg6\",animation2,\"1elvecx\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-33923584-a60b-43dd-9aa3-cb81db66a605, rgb(82, 82, 91))\"},children:[\"Feel free to use this title to introduce the section where you will showcase the various features of your video conferencing tool. \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-weight\":\"700\"},children:\"60 Days free trial\"})]})}),initial:optimizeAppear(\"initial\",\"g8xrg6\",animation3,\"1elvecx\")}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:optimizeAppear(\"animate\",\"283x12\",animation2,\"1dt5h5z\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--token-33923584-a60b-43dd-9aa3-cb81db66a605, rgb(82, 82, 91))\"},children:[\"Feel free to use this title to introduce the section where you will showcase the various features of your video conferencing tool. \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-weight\":\"700\"},children:\"60 Days free trial\"})]})}),className:\"framer-283x12\",\"data-framer-appear-id\":\"283x12\",exit:animation1,fonts:[\"GF;Plus Jakarta Sans-regular\",\"GF;Plus Jakarta Sans-700\"],initial:optimizeAppear(\"initial\",\"283x12\",animation3,\"1dt5h5z\"),style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined},{href:{webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined},{href:{webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{\"data-framer-appear-id\":\"cvpg5y\",animate:optimizeAppear(\"animate\",\"cvpg5y\",animation7,\"4ufibd\"),initial:optimizeAppear(\"initial\",\"cvpg5y\",animation8,\"4ufibd\")},MsRu6q_2e:{\"data-framer-appear-id\":\"b0gh5s\",animate:optimizeAppear(\"animate\",\"b0gh5s\",animation7,\"1elvecx\"),initial:optimizeAppear(\"initial\",\"b0gh5s\",animation8,\"1elvecx\")}},children:/*#__PURE__*/_jsx(Container,{animate:optimizeAppear(\"animate\",\"1ll19r5\",animation7,\"1dt5h5z\"),className:\"framer-1ll19r5-container\",\"data-framer-appear-id\":\"1ll19r5\",exit:animation6,initial:optimizeAppear(\"initial\",\"1ll19r5\",animation8,\"1dt5h5z\"),style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{aPIJcQDNQ:resolvedLinks[2]},MsRu6q_2e:{aPIJcQDNQ:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonWithoutIcon,{aPIJcQDNQ:resolvedLinks[0],height:\"100%\",id:\"BhWV76sNW\",IJ8Rzsu5g:\"var(--token-15b2631b-3952-418c-8fee-1fcfb2e39183, rgb(0, 0, 0))\",JRXRfq7xp:\"rgb(255, 255, 255)\",krKVQc9kv:\"var(--token-23a245a0-89dd-4471-9e48-3df6c8e56362, rgb(28, 100, 242))\",layoutId:\"BhWV76sNW\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"y8SH4tiKI\",width:\"100%\",XuT9qVtcz:\"Get Access\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yqmmls\",\"data-framer-name\":\"Image\",name:\"Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{\"data-framer-appear-id\":\"1996ott\",animate:optimizeAppear(\"animate\",\"1996ott\",animation10,\"4ufibd\"),background:{alt:\"\",fit:\"fill\",intrinsicHeight:1008,intrinsicWidth:1312,pixelHeight:1008,pixelWidth:1312,sizes:\"max(min(100vw, 1440px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/pEYcH45Khc3KqpvVzLGd0HvZVv4.png\",srcSet:\"https://framerusercontent.com/images/pEYcH45Khc3KqpvVzLGd0HvZVv4.png?scale-down-to=512 512w,https://framerusercontent.com/images/pEYcH45Khc3KqpvVzLGd0HvZVv4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pEYcH45Khc3KqpvVzLGd0HvZVv4.png 1312w\"},initial:optimizeAppear(\"initial\",\"1996ott\",animation11,\"4ufibd\")},MsRu6q_2e:{\"data-framer-appear-id\":\"pswq4e\",animate:optimizeAppear(\"animate\",\"pswq4e\",animation10,\"1elvecx\"),background:{alt:\"\",fit:\"fill\",intrinsicHeight:1008,intrinsicWidth:1312,pixelHeight:1008,pixelWidth:1312,sizes:\"max(min(100vw, 1440px) - 80px, 1px)\",src:\"https://framerusercontent.com/images/pEYcH45Khc3KqpvVzLGd0HvZVv4.png\",srcSet:\"https://framerusercontent.com/images/pEYcH45Khc3KqpvVzLGd0HvZVv4.png?scale-down-to=512 512w,https://framerusercontent.com/images/pEYcH45Khc3KqpvVzLGd0HvZVv4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pEYcH45Khc3KqpvVzLGd0HvZVv4.png 1312w\"},initial:optimizeAppear(\"initial\",\"pswq4e\",animation11,\"1elvecx\")}},children:/*#__PURE__*/_jsx(Image,{animate:optimizeAppear(\"animate\",\"14ivmi4\",animation10,\"1dt5h5z\"),background:{alt:\"\",fit:\"fill\",intrinsicHeight:1008,intrinsicWidth:1312,pixelHeight:1008,pixelWidth:1312,sizes:\"max((min(100vw, 1440px) - 248px) / 2, 1px)\",src:\"https://framerusercontent.com/images/pEYcH45Khc3KqpvVzLGd0HvZVv4.png\",srcSet:\"https://framerusercontent.com/images/pEYcH45Khc3KqpvVzLGd0HvZVv4.png?scale-down-to=512 512w,https://framerusercontent.com/images/pEYcH45Khc3KqpvVzLGd0HvZVv4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pEYcH45Khc3KqpvVzLGd0HvZVv4.png 1312w\"},className:\"framer-14ivmi4\",\"data-framer-appear-id\":\"14ivmi4\",exit:animation9,initial:optimizeAppear(\"initial\",\"14ivmi4\",animation11,\"1dt5h5z\"),style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{\"data-framer-appear-id\":\"170y91n\",animate:optimizeAppear(\"animate\",\"170y91n\",animation13,\"4ufibd\"),initial:optimizeAppear(\"initial\",\"170y91n\",animation14,\"4ufibd\")},MsRu6q_2e:{\"data-framer-appear-id\":\"14gj06t\",animate:optimizeAppear(\"animate\",\"14gj06t\",animation13,\"1elvecx\"),initial:optimizeAppear(\"initial\",\"14gj06t\",animation14,\"1elvecx\")}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1ruego6\",animation13,\"1dt5h5z\"),className:\"framer-1ruego6\",\"data-framer-appear-id\":\"1ruego6\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,exit:animation12,initial:optimizeAppear(\"initial\",\"1ruego6\",animation14,\"1dt5h5z\"),onMouseDown:preventDefault,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 73 70\"><path d=\"M 63.448 49.736 C 67.191 26.01 37.745 7.409 27.255 24.717 C 26.81 25.451 26.463 26.267 26.278 27.104 C 23.846 38.138 40.549 36.186 36.492 27.155 C 29.382 11.325 6.953 14.722 1.77 31.114\" fill=\"transparent\" stroke-width=\"1.07\" stroke=\"rgb(35, 56, 118)\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:55542557}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-13qc11c\",\"data-framer-name\":\"Vector 1\",layout:\"position\",name:\"Vector 1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 137 132\"><path d=\"M 119.074 93.788 C 126.099 49.047 70.836 13.971 51.15 46.609 C 50.315 47.993 49.663 49.531 49.317 51.11 C 44.752 71.918 76.098 68.236 68.486 51.207 C 55.141 21.356 13.048 27.762 3.321 58.672\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(35, 56, 118)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:61671791,withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{\"data-framer-appear-id\":\"kcze64\",animate:optimizeAppear(\"animate\",\"kcze64\",animation17,\"4ufibd\"),initial:optimizeAppear(\"initial\",\"kcze64\",animation18,\"4ufibd\")},MsRu6q_2e:{\"data-framer-appear-id\":\"4l4jpd\",animate:optimizeAppear(\"animate\",\"4l4jpd\",animation17,\"1elvecx\"),initial:optimizeAppear(\"initial\",\"4l4jpd\",animation18,\"1elvecx\")}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"avtuh0\",animation17,\"1dt5h5z\"),className:\"framer-avtuh0\",\"data-framer-appear-id\":\"avtuh0\",\"data-framer-name\":\"Hand-drawn accents\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,exit:animation15,initial:optimizeAppear(\"initial\",\"avtuh0\",animation18,\"1dt5h5z\"),name:\"Hand-drawn accents\",onMouseDown:preventDefault,style:{rotate:15,transformPerspective:1200},whileTap:animation16,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-xk022m\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:77,intrinsicWidth:75,name:\"Vector\",style:{rotate:-15},svg:'<svg width=\"75\" height=\"77\" viewBox=\"0 0 75 77\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.6772 62.3714C15.5209 59.4145 9.90876 57.126 4.45391 54.9466C3.27798 54.4811 1.93786 54.9874 1.55117 56.098C1.07753 57.1865 1.67072 58.4536 2.75993 58.8961C8.04814 61.0039 13.497 63.2039 18.4078 66.0365C19.453 66.6456 20.8369 66.3273 21.4749 65.3187C22.1128 64.3109 21.7221 62.9813 20.6772 62.3714Z\" fill=\"#1C64F2\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M43.0838 45.7241C36.4564 34.6508 28.4049 24.4002 22.0128 13.139C21.4533 12.0973 20.0776 11.6853 19.0041 12.2356C17.9303 12.7866 17.4966 14.0763 18.1428 15.1411C24.5281 26.4279 32.573 36.7033 39.1936 47.8024C39.845 48.8472 41.2292 49.2259 42.3086 48.6533C43.3012 48.0585 43.7352 46.769 43.0838 45.7241Z\" fill=\"#1C64F2\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M68.6881 16.6535C67.6291 21.7073 66.5695 26.761 65.5103 31.8157C65.2081 32.9575 66.016 34.1147 67.2448 34.3805C68.4738 34.6454 69.5977 33.9028 69.9001 32.7601C70.9613 27.698 72.0228 22.6369 73.0838 17.5756C73.2992 16.4108 72.4902 15.2595 71.2596 15.0004C70.1158 14.7642 68.9033 15.4896 68.6881 16.6535Z\" fill=\"#1C64F2\"/>\\n</svg>\\n',withExternalLayout:true})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-spibs1\",\"data-framer-name\":\"Testimonials\",name:\"Testimonials\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19y59w1\",\"data-framer-name\":\"text\",name:\"text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MsRu6q_2e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1rwtwsr\",\"data-styles-preset\":\"W0YAFGlkw\",children:[\"More Than \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-23a245a0-89dd-4471-9e48-3df6c8e56362, rgb(28, 100, 242))\"},children:\"14 Million People\"}),\" trusted \",/*#__PURE__*/_jsx(\"br\",{}),\"across the world\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1rwtwsr\",\"data-styles-preset\":\"W0YAFGlkw\",children:[\"More Than \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-23a245a0-89dd-4471-9e48-3df6c8e56362, rgb(28, 100, 242))\"},children:\"14 Million People\"}),\" trusted across the world\"]})}),className:\"framer-1mho2ir\",\"data-framer-name\":\"More Than 14 Million People trusted across the world\",fonts:[\"Inter\"],name:\"More Than 14 Million People trusted across the world\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l5b9xd\",\"data-framer-name\":\"Logos\",name:\"Logos\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m02ddy\",\"data-framer-name\":\"Logos\",name:\"Logos\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9jrv5z\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-av5lcx\",\"data-framer-name\":\"logoipsum-218 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:168,name:\"logoipsum-218 1\",svg:'<svg width=\"168\" height=\"36\" viewBox=\"0 0 168 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M26.9026 16.0463C26.4478 16.5038 26.0995 17.0561 25.8826 17.6635C25.6656 18.2711 25.5853 18.919 25.6474 19.5611L25.6258 19.5395C25.6896 20.2954 25.5876 21.0559 25.3271 21.7684C25.0666 22.4807 24.6538 23.1276 24.1175 23.664C23.5811 24.2003 22.9342 24.6132 22.2217 24.8736C21.5094 25.1341 20.7487 25.2361 19.993 25.1723L20.0146 25.1939C19.1105 25.1098 18.2024 25.3064 17.4142 25.7573C16.626 26.2081 15.996 26.891 15.6102 27.713C15.2244 28.535 15.1014 29.4559 15.2581 30.3504C15.415 31.2448 15.8437 32.069 16.4861 32.7108C17.1284 33.3526 17.9531 33.7806 18.8476 33.9365C19.7422 34.0925 20.6629 33.9686 21.4846 33.5821C22.3062 33.1955 22.9885 32.565 23.4386 31.7764C23.8888 30.9877 24.0847 30.0796 23.9998 29.1755L24.0226 29.1971C23.9587 28.4413 24.0606 27.6806 24.3211 26.9682C24.5816 26.2559 24.9946 25.609 25.5308 25.0726C26.0672 24.5363 26.7142 24.1234 27.4265 23.863C28.1389 23.6024 28.8995 23.5004 29.6554 23.5643L29.6326 23.5427C30.371 23.609 31.1144 23.488 31.7938 23.1906C32.473 22.8932 33.0662 22.4292 33.5184 21.8416C33.9706 21.2539 34.2672 20.5615 34.3805 19.8288C34.4939 19.096 34.4204 18.3464 34.167 17.6495C33.9136 16.9526 33.4883 16.331 32.9306 15.8423C32.373 15.3535 31.701 15.0134 30.9769 14.8536C30.2528 14.6938 29.5001 14.7192 28.7885 14.9276C28.0769 15.1362 27.4295 15.5209 26.9062 16.0463H26.9026Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M18.0504 22.3639L18.0276 22.3423C18.6699 22.407 19.3187 22.3281 19.927 22.1114C20.5351 21.8947 21.0876 21.5456 21.5443 21.0892C22.0009 20.6329 22.3506 20.0806 22.5677 19.4726C22.7849 18.8646 22.8642 18.216 22.8 17.5735L22.8228 17.5951C22.7589 16.8392 22.8609 16.0786 23.1213 15.3662C23.3819 14.6539 23.7948 14.007 24.3311 13.4706C24.8675 12.9343 25.5144 12.5214 26.2267 12.261C26.9391 12.0004 27.6997 11.8985 28.4556 11.9623L28.4328 11.9407C29.337 12.0256 30.2453 11.8295 31.0339 11.3792C31.8227 10.9289 32.4531 10.2462 32.8395 9.4244C33.2259 8.60257 33.3494 7.68153 33.1932 6.78692C33.0369 5.89231 32.6085 5.06769 31.9663 4.42552C31.3242 3.78337 30.4995 3.35492 29.6049 3.19865C28.7103 3.04238 27.7893 3.16587 26.9675 3.55229C26.1456 3.93871 25.463 4.56925 25.0127 5.3579C24.5623 6.14654 24.3662 7.0549 24.4512 7.95908L24.4296 7.93628C24.4935 8.69215 24.3918 9.45287 24.1314 10.1653C23.871 10.8778 23.4581 11.5248 22.9218 12.0613C22.3854 12.5976 21.7383 13.0105 21.0259 13.2709C20.3134 13.5313 19.5527 13.633 18.7968 13.5691L18.8184 13.5919C18.176 13.5272 17.5272 13.606 16.919 13.8228C16.3109 14.0394 15.7584 14.3886 15.3017 14.8449C14.8449 15.3013 14.4954 15.8535 14.2782 16.4616C14.0611 17.0696 13.9818 17.7182 14.046 18.3607L14.0244 18.3391C14.088 19.0948 13.9859 19.8554 13.7254 20.5677C13.4647 21.2799 13.0519 21.9268 12.5156 22.4631C11.9793 22.9994 11.3325 23.4122 10.6202 23.6728C9.90791 23.9334 9.14736 24.0355 8.39159 23.9719L8.41319 23.9935C7.50901 23.9085 6.60065 24.1046 5.812 24.555C5.02336 25.0053 4.39282 25.6879 4.00641 26.5098C3.61998 27.3316 3.49648 28.2526 3.65275 29.1472C3.80903 30.0418 4.23748 30.8665 4.87963 31.5086C5.5218 32.1508 6.34642 32.5792 7.24103 32.7355C8.13564 32.8917 9.05668 32.7682 9.87852 32.3818C10.7004 31.9954 11.383 31.365 11.8333 30.5763C12.2837 29.7876 12.4797 28.8793 12.3948 27.9751L12.4176 27.9967C12.3537 27.2408 12.4557 26.4802 12.7163 25.7678C12.9767 25.0555 13.3896 24.4086 13.9259 23.8722C14.4623 23.3359 15.1092 22.923 15.8215 22.6626C16.5339 22.402 17.2945 22.3 18.0504 22.3639Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M10.0078 19.9532C10.4626 19.4957 10.8108 18.9435 11.0276 18.3359C11.2443 17.7284 11.3243 17.0804 11.2618 16.4384L11.2846 16.46C11.2207 15.704 11.3227 14.943 11.5833 14.2305C11.844 13.5179 12.257 12.8709 12.7937 12.3345C13.3303 11.7981 13.9775 11.3853 14.6902 11.125C15.4028 10.8646 16.1638 10.763 16.9198 10.8272L16.897 10.8056C17.8008 10.8902 18.7088 10.6941 19.4971 10.2438C20.2854 9.7935 20.9155 9.11102 21.3018 8.28944C21.688 7.46785 21.8113 6.54715 21.6551 5.65287C21.4988 4.7586 21.0704 3.93429 20.4286 3.29236C19.7867 2.65044 18.9623 2.22213 18.068 2.06587C17.1738 1.90959 16.253 2.03298 15.4315 2.41916C14.6099 2.80534 13.9274 3.43555 13.4772 4.22383C13.0268 5.01211 12.8306 5.9201 12.9154 6.82397L12.8938 6.80237C12.9576 7.55819 12.8556 8.31883 12.5951 9.0312C12.3346 9.74357 11.9218 10.3905 11.3854 10.9268C10.8491 11.4632 10.2022 11.876 9.48979 12.1365C8.77742 12.397 8.01679 12.499 7.26097 12.4352L7.28257 12.4568C6.54405 12.3905 5.80076 12.5118 5.12158 12.8093C4.44241 13.1068 3.84931 13.571 3.39725 14.1587C2.9452 14.7464 2.64883 15.4388 2.53557 16.1715C2.42233 16.9043 2.49587 17.6538 2.7494 18.3506C3.00292 19.0474 3.42824 19.6689 3.98591 20.1575C4.54359 20.6463 5.21559 20.9862 5.93965 21.1461C6.66369 21.3058 7.41637 21.2802 8.12793 21.0718C8.83948 20.8632 9.48688 20.4785 10.0102 19.9532H10.0078Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M47.1802 7.98438H50.7442V25.328H47.1802V7.98438Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M52.7629 19.3919C52.7579 18.1456 53.123 16.9257 53.8118 15.8869C54.5006 14.8482 55.4822 14.0373 56.6323 13.5569C57.7823 13.0764 59.0491 12.9481 60.2721 13.1883C61.4951 13.4284 62.6194 14.026 63.5025 14.9056C64.3856 15.7851 64.9877 16.9069 65.2328 18.129C65.4778 19.3511 65.3546 20.6184 64.8788 21.7704C64.403 22.9223 63.596 23.9073 62.56 24.6001C61.5239 25.2931 60.3057 25.6631 59.0593 25.6631C58.232 25.6726 57.4111 25.5169 56.6445 25.2054C55.8779 24.8939 55.1812 24.4327 54.595 23.8489C54.0087 23.265 53.5448 22.5701 53.2303 21.8049C52.9156 21.0396 52.7567 20.2193 52.7629 19.3919ZM61.7917 19.3919C61.7768 18.8547 61.6039 18.3337 61.2946 17.8942C60.9853 17.4547 60.5533 17.1161 60.0526 16.9209C59.5519 16.7255 59.0048 16.6821 58.4795 16.7961C57.9543 16.9101 57.4743 17.1762 57.0995 17.5615C56.7249 17.9467 56.4719 18.4339 56.3727 18.9622C56.2733 19.4903 56.3318 20.0361 56.5409 20.5312C56.7501 21.0263 57.1005 21.4487 57.5483 21.7457C57.9963 22.0427 58.5219 22.2011 59.0593 22.2011C59.4273 22.2109 59.7934 22.1443 60.1346 22.0056C60.4756 21.8669 60.7843 21.6591 61.0409 21.3952C61.2976 21.1312 61.4969 20.8169 61.6261 20.4721C61.7553 20.1274 61.8117 19.7596 61.7917 19.3919Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M79.5602 13.449V24.729C79.5602 28.7202 76.4474 30.4074 73.2878 30.4074C72.1754 30.4907 71.0614 30.2659 70.0682 29.758C69.0751 29.2499 68.2409 28.4782 67.6574 27.5274L70.6982 25.7694C70.9435 26.265 71.3343 26.6739 71.8183 26.9413C72.3023 27.2087 72.8565 27.322 73.4066 27.2658C73.7582 27.3145 74.1163 27.2836 74.4543 27.1752C74.7922 27.0668 75.1016 26.8839 75.3593 26.6399C75.6171 26.3958 75.8167 26.097 75.9434 25.7653C76.07 25.4338 76.1204 25.078 76.091 24.7242V23.6382C75.6736 24.1488 75.1425 24.5545 74.54 24.8227C73.9375 25.0909 73.2806 25.2142 72.6218 25.1826C71.0543 25.1332 69.5677 24.4758 68.4764 23.3495C67.3851 22.2233 66.7749 20.7166 66.7749 19.1484C66.7749 17.5803 67.3851 16.0735 68.4764 14.9473C69.5677 13.821 71.0543 13.1637 72.6218 13.1142C73.2806 13.0827 73.9375 13.2059 74.54 13.4741C75.1425 13.7423 75.6736 14.148 76.091 14.6586V13.4466L79.5602 13.449ZM76.0922 19.1502C76.1162 18.5759 75.9676 18.0075 75.6658 17.5182C75.364 17.0289 74.9227 16.6411 74.3986 16.4049C73.8746 16.1685 73.2919 16.0944 72.7253 16.1921C72.1588 16.2898 71.6345 16.5547 71.2198 16.953C70.8052 17.3512 70.5193 17.8643 70.3987 18.4264C70.2782 18.9885 70.3286 19.5738 70.5436 20.107C70.7585 20.6401 71.1281 21.0969 71.6048 21.4182C72.0814 21.7396 72.6434 21.9109 73.2182 21.9102C73.5927 21.9364 73.9684 21.8838 74.3213 21.7559C74.6743 21.628 74.9965 21.4275 75.2672 21.1675C75.5379 20.9075 75.7513 20.5937 75.8933 20.2462C76.0354 19.8988 76.1032 19.5255 76.0922 19.1502Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M81.5783 19.3919C81.5734 18.1456 81.9383 16.9257 82.6272 15.8869C83.316 14.8482 84.2976 14.0373 85.4477 13.5569C86.5978 13.0764 87.8645 12.9481 89.0875 13.1883C90.3106 13.4284 91.4349 14.026 92.3179 14.9056C93.201 15.7851 93.8032 16.9069 94.0482 18.129C94.2932 19.3511 94.17 20.6184 93.6942 21.7704C93.2184 22.9223 92.4114 23.9073 91.3755 24.6001C90.3394 25.2931 89.1211 25.6631 87.8747 25.6631C87.0474 25.6726 86.2264 25.5169 85.4599 25.2054C84.6934 24.8939 83.9966 24.4327 83.4104 23.8489C82.8241 23.265 82.3602 22.5701 82.0457 21.8049C81.7311 21.0396 81.5722 20.2193 81.5783 19.3919ZM90.6071 19.3919C90.5922 18.8547 90.4193 18.3337 90.11 17.8942C89.8007 17.4547 89.3687 17.1161 88.8681 16.9209C88.3673 16.7255 87.8201 16.6821 87.295 16.7961C86.7697 16.9101 86.2897 17.1762 85.915 17.5615C85.5403 17.9467 85.2874 18.4339 85.188 18.9622C85.0886 19.4903 85.1472 20.0361 85.3564 20.5312C85.5655 21.0263 85.9159 21.4487 86.3638 21.7457C86.8117 22.0427 87.3372 22.2011 87.8747 22.2011C88.2427 22.2109 88.6089 22.1443 88.9499 22.0056C89.2911 21.8669 89.5997 21.6591 89.8564 21.3952C90.1131 21.1312 90.3124 20.8169 90.4415 20.4721C90.5707 20.1274 90.6271 19.7596 90.6071 19.3919Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M95.833 10.2673C95.833 9.84437 95.9584 9.43093 96.1934 9.07928C96.4283 8.72762 96.7624 8.45353 97.1531 8.29169C97.5438 8.12983 97.9738 8.08748 98.3886 8.17C98.8034 8.25251 99.1845 8.45617 99.4835 8.75524C99.7826 9.05429 99.9862 9.43531 100.069 9.85013C100.151 10.2649 100.109 10.6949 99.9471 11.0856C99.7852 11.4764 99.5111 11.8104 99.1594 12.0453C98.8078 12.2803 98.3944 12.4057 97.9714 12.4057C97.4061 12.4001 96.8654 12.173 96.4655 11.7732C96.0658 11.3733 95.8386 10.8327 95.833 10.2673ZM96.193 13.4509H99.7582V25.3309H96.1882L96.193 13.4509Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M115.147 19.3923C115.189 20.1775 115.074 20.963 114.811 21.7037C114.547 22.4445 114.14 23.1259 113.612 23.7087C113.085 24.2914 112.447 24.7642 111.736 25.0997C111.025 25.4351 110.254 25.6268 109.469 25.6635C108.809 25.6995 108.148 25.5881 107.536 25.3375C106.924 25.0867 106.376 24.7029 105.93 24.2139V30.0831H102.366V13.4523H105.93V14.5683C106.376 14.0797 106.925 13.6961 107.537 13.4457C108.149 13.1951 108.809 13.0839 109.469 13.1199C110.255 13.1565 111.025 13.348 111.736 13.6835C112.448 14.0191 113.085 14.4919 113.613 15.0748C114.141 15.6578 114.548 16.3394 114.811 17.0804C115.075 17.8213 115.189 18.607 115.147 19.3923ZM111.583 19.3923C111.569 18.8363 111.392 18.2968 111.073 17.8412C110.754 17.3857 110.307 17.0343 109.79 16.8313C109.272 16.6281 108.706 16.5821 108.162 16.6993C107.618 16.8163 107.121 17.0911 106.733 17.4892C106.345 17.8875 106.082 18.3913 105.979 18.9379C105.876 19.4843 105.936 20.0491 106.152 20.5616C106.368 21.0741 106.731 21.5114 107.194 21.8189C107.657 22.1264 108.201 22.2904 108.757 22.2903C109.139 22.3073 109.52 22.2434 109.876 22.1027C110.231 21.9622 110.553 21.748 110.82 21.4744C111.086 21.2007 111.292 20.8738 111.424 20.515C111.556 20.1562 111.61 19.7735 111.583 19.3923Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M126.145 21.767C126.145 24.4994 123.77 25.6634 121.205 25.6634C120.168 25.7572 119.127 25.5381 118.216 25.034C117.306 24.53 116.567 23.7644 116.096 22.8362L119.184 21.0782C119.309 21.5072 119.577 21.8805 119.944 22.1355C120.311 22.3906 120.755 22.5122 121.2 22.4798C122.054 22.4798 122.483 22.2182 122.483 21.7442C122.483 20.4362 116.637 21.1262 116.637 17.0162C116.637 14.4254 118.824 13.1198 121.295 13.1198C122.223 13.0904 123.143 13.3107 123.957 13.7577C124.772 14.2048 125.453 14.8622 125.927 15.6614L122.886 17.3006C122.753 16.9894 122.531 16.7243 122.247 16.5385C121.964 16.3526 121.633 16.2542 121.295 16.2554C120.677 16.2554 120.296 16.4954 120.296 16.9202C120.301 18.275 126.145 17.3714 126.145 21.767Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M139.164 13.4492V25.3292H135.6V24.212C135.189 24.705 134.667 25.0934 134.076 25.3454C133.486 25.5974 132.845 25.7058 132.204 25.6616C129.804 25.6616 127.764 23.9516 127.764 20.7416V13.4492H131.328V20.2196C131.298 20.5026 131.331 20.7887 131.423 21.0578C131.514 21.3271 131.664 21.5731 131.861 21.7787C132.058 21.9842 132.297 22.1444 132.562 22.2482C132.826 22.352 133.11 22.3969 133.395 22.3796C134.701 22.3796 135.604 21.62 135.604 19.9328V13.4528L139.164 13.4492Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M159.6 18.0361V25.3297H156.036V18.3445C156.036 17.1565 155.466 16.3969 154.326 16.3969C153.138 16.3969 152.472 17.2285 152.472 18.6301V25.3297H148.909V18.3445C148.909 17.1565 148.339 16.3969 147.198 16.3969C146.01 16.3969 145.345 17.2285 145.345 18.6301V25.3297H141.781V13.4497H145.345V14.5417C145.715 14.0572 146.2 13.673 146.755 13.4242C147.312 13.1754 147.922 13.0699 148.529 13.1173C149.138 13.0874 149.746 13.2162 150.292 13.4908C150.836 13.7654 151.301 14.1768 151.64 14.6845C152.035 14.1532 152.558 13.7308 153.161 13.4568C153.763 13.1827 154.426 13.0659 155.086 13.1173C157.813 13.1185 159.6 15.0661 159.6 18.0361Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M162.615 13.3794C164.075 13.3794 165.259 12.1953 165.259 10.7346C165.259 9.27396 164.075 8.08984 162.615 8.08984C161.154 8.08984 159.97 9.27396 159.97 10.7346C159.97 12.1953 161.154 13.3794 162.615 13.3794Z\" fill=\"#8E8E8E\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7jwskb\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1be666l\",\"data-framer-name\":\"logoipsum-212 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:133,name:\"logoipsum-212 1\",svg:'<svg width=\"133\" height=\"35\" viewBox=\"0 0 133 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M30.7204 12.25C31.0804 12.25 31.2004 12.38 31.2004 12.73V20.65H35.2704C35.6204 20.65 35.7504 20.78 35.7504 21.13V21.83C35.7504 22.18 35.6204 22.31 35.2704 22.31H29.9104C29.5604 22.31 29.4204 22.18 29.4204 21.83V12.73C29.4204 12.38 29.5604 12.25 29.9104 12.25H30.7204Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M39.3003 15.7391C39.3003 13.4291 40.7603 12.0391 43.3003 12.0391C45.8403 12.0391 47.3003 13.4291 47.3003 15.7391V18.8191C47.3003 21.1291 45.8303 22.5191 43.3003 22.5191C40.7703 22.5191 39.3003 21.1291 39.3003 18.8191V15.7391ZM45.6203 15.7391C45.6203 14.4391 44.8103 13.7391 43.3503 13.7391C41.8903 13.7391 41.0903 14.4491 41.0903 15.7391V18.8391C41.0903 20.1491 41.8903 20.8391 43.3503 20.8391C44.8103 20.8391 45.6203 20.1191 45.6203 18.8391V15.7391Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M59.2104 16.8C59.6004 16.8 59.6904 16.93 59.6904 17.28V19.18C59.701 19.6275 59.6113 20.0718 59.4279 20.4801C59.2444 20.8885 58.972 21.2506 58.6304 21.54C57.7821 22.2155 56.7125 22.5506 55.6304 22.48C53.0404 22.48 51.6304 21.09 51.6304 18.78V15.68C51.6304 13.4 53.0904 12 55.6304 12C57.6304 12 58.9304 12.79 59.4804 14.37C59.5112 14.4294 59.5277 14.4951 59.5286 14.5619C59.5295 14.6288 59.5148 14.695 59.4857 14.7551C59.4566 14.8153 59.4138 14.8679 59.3608 14.9087C59.3078 14.9494 59.246 14.9773 59.1804 14.99L58.4004 15.26C58.0604 15.38 57.9204 15.31 57.8004 14.96C57.6347 14.5329 57.3314 14.1731 56.9384 13.9377C56.5454 13.7023 56.0852 13.6045 55.6304 13.66C54.1604 13.66 53.3604 14.37 53.3604 15.66V18.84C53.3604 20.15 54.1704 20.84 55.6304 20.84C57.0904 20.84 57.9904 20.17 57.9904 19.19V18.45H55.8204C55.4604 18.45 55.3304 18.31 55.3304 17.96V17.28C55.3304 16.93 55.4604 16.8 55.8204 16.8H59.2104Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M63.8203 15.7391C63.8203 13.4291 65.2803 12.0391 67.8203 12.0391C70.3603 12.0391 71.8203 13.4291 71.8203 15.7391V18.8191C71.8203 21.1291 70.3503 22.5191 67.8203 22.5191C65.2903 22.5191 63.8203 21.1291 63.8203 18.8191V15.7391ZM70.1303 15.7391C70.1303 14.4391 69.3203 13.7391 67.8703 13.7391C66.4203 13.7391 65.6003 14.4491 65.6003 15.7391V18.8391C65.6003 20.1491 66.4103 20.8391 67.8703 20.8391C69.3303 20.8391 70.1303 20.1191 70.1303 18.8391V15.7391Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M76.5303 12.54C76.5303 12.32 76.6003 12.25 76.8203 12.25H77.2803C77.5003 12.25 77.5503 12.32 77.5503 12.54V22.02C77.5503 22.24 77.5503 22.31 77.2803 22.31H76.8203C76.6003 22.31 76.5303 22.24 76.5303 22.02V12.54Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M86.6601 12.25C87.4929 12.25 88.2915 12.5808 88.8804 13.1697C89.4693 13.7585 89.8001 14.5572 89.8001 15.39C89.8001 16.2228 89.4693 17.0215 88.8804 17.6103C88.2915 18.1992 87.4929 18.53 86.6601 18.53H83.6601V22.02C83.6601 22.24 83.6101 22.31 83.4001 22.31H82.9301C82.7201 22.31 82.6401 22.24 82.6401 22.02V12.54C82.6401 12.32 82.7201 12.25 82.9301 12.25H86.6601ZM86.5701 17.54C86.8564 17.54 87.1399 17.4836 87.4044 17.3741C87.6688 17.2645 87.9092 17.1039 88.1116 16.9015C88.314 16.6991 88.4746 16.4587 88.5842 16.1943C88.6937 15.9298 88.7501 15.6463 88.7501 15.36C88.7501 15.0737 88.6937 14.7902 88.5842 14.5257C88.4746 14.2613 88.314 14.0209 88.1116 13.8185C87.9092 13.6161 87.6688 13.4555 87.4044 13.3459C87.1399 13.2364 86.8564 13.18 86.5701 13.18H83.5701V17.54H86.5701Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M97.61 12.0491C98.3821 11.9639 99.161 12.13 99.8312 12.5227C100.501 12.9155 101.027 13.5139 101.33 14.2291C101.41 14.3891 101.33 14.5191 101.17 14.5991L100.73 14.7991C100.55 14.8691 100.48 14.8591 100.37 14.6691C100.143 14.1383 99.7539 13.6933 99.2577 13.3985C98.7616 13.1037 98.1845 12.9743 97.61 13.0291C95.92 13.0291 95 13.6991 95 14.8991C94.9902 15.2658 95.1133 15.6238 95.3468 15.9068C95.5802 16.1898 95.9081 16.3789 96.27 16.4391C96.8078 16.6145 97.3655 16.722 97.93 16.7591C98.6133 16.7955 99.2874 16.9337 99.93 17.1691C100.423 17.325 100.847 17.6456 101.131 18.0772C101.415 18.5088 101.542 19.025 101.49 19.5391C101.49 21.4091 100.13 22.5391 97.63 22.5391C96.81 22.6329 95.9826 22.4429 95.2857 22.0007C94.5888 21.5586 94.0644 20.8909 93.8 20.1091C93.7823 20.0735 93.7728 20.0344 93.772 19.9946C93.7712 19.9548 93.7793 19.9154 93.7955 19.8791C93.8117 19.8428 93.8358 19.8105 93.866 19.7846C93.8961 19.7586 93.9316 19.7397 93.97 19.7291L94.41 19.5691C94.4446 19.5549 94.4819 19.5481 94.5193 19.5491C94.5567 19.5501 94.5935 19.5589 94.6274 19.5749C94.6612 19.5909 94.6914 19.6137 94.7159 19.642C94.7405 19.6703 94.7589 19.7033 94.77 19.7391C94.9937 20.304 95.3915 20.783 95.9057 21.1067C96.4199 21.4303 97.0239 21.5818 97.63 21.5391C99.52 21.5391 100.45 20.8791 100.45 19.5391C100.468 19.1869 100.36 18.8398 100.145 18.5596C99.9312 18.2795 99.6245 18.0844 99.28 18.0091C98.7626 17.8548 98.229 17.7608 97.69 17.7291L96.61 17.5891C96.272 17.5174 95.9382 17.4272 95.61 17.3191C95.2858 17.2212 94.9836 17.0616 94.72 16.8491C94.4547 16.6089 94.2456 16.3133 94.1073 15.9832C93.9691 15.6531 93.9051 15.2967 93.92 14.9391C93.99 13.1891 95.3 12.0491 97.61 12.0491Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M106.88 18.89C106.922 19.5972 107.233 20.2615 107.749 20.7472C108.265 21.2329 108.947 21.5033 109.655 21.5033C110.363 21.5033 111.045 21.2329 111.561 20.7472C112.077 20.2615 112.387 19.5972 112.43 18.89V12.54C112.43 12.32 112.5 12.25 112.72 12.25H113.18C113.4 12.25 113.47 12.32 113.47 12.54V18.88C113.47 21.15 112.13 22.52 109.66 22.52C107.19 22.52 105.85 21.15 105.85 18.88V12.54C105.85 12.32 105.92 12.25 106.13 12.25H106.6C106.81 12.25 106.88 12.32 106.88 12.54V18.89Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M127.27 12.2517C127.49 12.2517 127.56 12.3217 127.56 12.5417V22.0217C127.56 22.2417 127.49 22.3117 127.27 22.3117H126.85C126.64 22.3117 126.57 22.2417 126.57 22.0217V16.2517C126.57 15.4122 126.627 14.5736 126.74 13.7417H126.68C126.368 14.5024 126.003 15.2408 125.59 15.9517L123.44 19.7417C123.414 19.8075 123.368 19.8637 123.309 19.903C123.25 19.9422 123.181 19.9627 123.11 19.9617H122.83C122.758 19.9621 122.688 19.9414 122.627 19.9024C122.567 19.8633 122.519 19.8075 122.49 19.7417L120.31 15.9117C119.923 15.211 119.589 14.4823 119.31 13.7317H119.25C119.352 14.5712 119.406 15.416 119.41 16.2617V22.0217C119.41 22.2417 119.34 22.3117 119.12 22.3117H118.73C118.51 22.3117 118.44 22.2417 118.44 22.0217V12.5417C118.44 12.3217 118.51 12.2517 118.73 12.2517H119.09C119.172 12.2441 119.255 12.262 119.326 12.3032C119.398 12.3444 119.455 12.4068 119.49 12.4817L122.99 18.7017L126.47 12.5417C126.58 12.3317 126.64 12.3017 126.86 12.3017L127.27 12.2517Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M12.9302 20.79V28.02C12.9302 28.2972 12.8201 28.563 12.6241 28.7589C12.4282 28.9549 12.1624 29.065 11.8852 29.065C11.6081 29.065 11.3423 28.9549 11.1463 28.7589C10.9503 28.563 10.8402 28.2972 10.8402 28.02V20.8C11.1312 21.0125 11.48 21.1311 11.8402 21.14C12.2328 21.1512 12.6175 21.0277 12.9302 20.79ZM21.8302 18.7C21.565 18.7 21.3106 18.8054 21.1231 18.9929C20.9356 19.1804 20.8302 19.4348 20.8302 19.7V20.96C20.8302 21.2372 20.9403 21.503 21.1363 21.6989C21.3322 21.8949 21.598 22.005 21.8752 22.005C22.1524 22.005 22.4182 21.8949 22.6141 21.6989C22.8101 21.503 22.9202 21.2372 22.9202 20.96V19.75C22.928 19.6066 22.9048 19.4632 22.8522 19.3296C22.7996 19.196 22.7189 19.0752 22.6154 18.9756C22.512 18.876 22.3883 18.7998 22.2529 18.7522C22.1174 18.7047 21.9732 18.6869 21.8302 18.7ZM8.5702 23.53C8.21037 23.5192 7.86203 23.4008 7.5702 23.19V30.44C7.5702 30.7185 7.68082 30.9856 7.87774 31.1825C8.07465 31.3794 8.34172 31.49 8.6202 31.49C8.89868 31.49 9.16575 31.3794 9.36266 31.1825C9.55958 30.9856 9.6702 30.7185 9.6702 30.44V23.24C9.34365 23.4511 8.95835 23.5527 8.5702 23.53ZM18.5702 16.53C18.4347 16.5232 18.2993 16.5441 18.1721 16.5913C18.045 16.6385 17.9288 16.7111 17.8305 16.8046C17.7323 16.8982 17.6542 17.0107 17.6008 17.1354C17.5475 17.2601 17.52 17.3944 17.5202 17.53V23.1C17.5202 23.3785 17.6308 23.6456 17.8277 23.8425C18.0247 24.0394 18.2917 24.15 18.5702 24.15C18.8487 24.15 19.1158 24.0394 19.3127 23.8425C19.5096 23.6456 19.6202 23.3785 19.6202 23.1V17.6C19.6282 17.4557 19.6048 17.3114 19.5516 17.177C19.4984 17.0426 19.4168 16.9213 19.3122 16.8215C19.2076 16.7217 19.0827 16.6457 18.946 16.5989C18.8093 16.552 18.664 16.5353 18.5202 16.55L18.5702 16.53ZM15.2502 18.67C14.8735 18.6674 14.5069 18.5487 14.2002 18.33V25.6C14.2002 25.8785 14.3108 26.1456 14.5077 26.3425C14.7047 26.5394 14.9717 26.65 15.2502 26.65C15.5287 26.65 15.7957 26.5394 15.9927 26.3425C16.1896 26.1456 16.3002 25.8785 16.3002 25.6V18.34C15.983 18.5763 15.5957 18.6995 15.2002 18.69L15.2502 18.67ZM6.3002 24.24V3.93C6.29757 3.68243 6.19737 3.44591 6.02137 3.27178C5.84537 3.09765 5.60778 2.99999 5.3602 3H5.1402C4.89262 2.99999 4.65503 3.09765 4.47903 3.27178C4.30303 3.44591 4.20283 3.68243 4.2002 3.93V24.24C4.2002 24.4893 4.29924 24.7284 4.47552 24.9047C4.6518 25.081 4.8909 25.18 5.1402 25.18H5.3602C5.60951 25.18 5.8486 25.081 6.02488 24.9047C6.20117 24.7284 6.3002 24.4893 6.3002 24.24ZM8.68019 22.76H8.4602C8.2109 22.76 7.9718 22.661 7.79552 22.4847C7.61924 22.3084 7.5202 22.0693 7.5202 21.82V6.35C7.52284 6.10244 7.62303 5.8659 7.79903 5.69178C7.97503 5.51765 8.21262 5.41999 8.4602 5.42H8.68019C8.92777 5.41999 9.16536 5.51765 9.34136 5.69178C9.51736 5.8659 9.61757 6.10244 9.6202 6.35V21.84C9.6202 22.0893 9.52116 22.3284 9.34488 22.5047C9.1686 22.681 8.92949 22.78 8.68019 22.78V22.76ZM11.9902 20.38H11.7602C11.5136 20.38 11.277 20.282 11.1026 20.1076C10.9282 19.9332 10.8302 19.6967 10.8302 19.45V8.75C10.8289 8.62703 10.852 8.50502 10.8981 8.39103C10.9442 8.27704 11.0125 8.17334 11.099 8.08592C11.1855 7.9985 11.2885 7.9291 11.402 7.88174C11.5155 7.83438 11.6372 7.80999 11.7602 7.81H11.9902C12.2378 7.81264 12.4743 7.91283 12.6484 8.08883C12.8226 8.26483 12.9202 8.50242 12.9202 8.75V19.45C12.9202 19.6967 12.8222 19.9332 12.6478 20.1076C12.4734 20.282 12.2369 20.38 11.9902 20.38ZM15.3002 17.93H15.0902C14.8426 17.93 14.605 17.8324 14.429 17.6582C14.253 17.4841 14.1528 17.2476 14.1502 17V11.24C14.142 11.1116 14.1602 10.9829 14.2038 10.8618C14.2473 10.7408 14.3153 10.6299 14.4034 10.5362C14.4915 10.4424 14.5979 10.3678 14.7161 10.3168C14.8342 10.2659 14.9615 10.2397 15.0902 10.24H15.3102C15.5595 10.24 15.7986 10.339 15.9749 10.5153C16.1512 10.6916 16.2502 10.9307 16.2502 11.18V16.98C16.2515 17.1043 16.2282 17.2276 16.1815 17.3428C16.1349 17.458 16.0659 17.5628 15.9784 17.6512C15.891 17.7395 15.787 17.8096 15.6722 17.8575C15.5575 17.9054 15.4345 17.93 15.3102 17.93H15.3002ZM18.6202 15.78H18.4002C18.1509 15.78 17.9118 15.681 17.7355 15.5047C17.5592 15.3284 17.4602 15.0893 17.4602 14.84V13.35C17.4628 13.1024 17.563 12.8659 17.739 12.6918C17.915 12.5176 18.1526 12.42 18.4002 12.42H18.6202C18.8678 12.42 19.1054 12.5176 19.2814 12.6918C19.4574 12.8659 19.5576 13.1024 19.5602 13.35V14.84C19.5602 15.0876 19.4626 15.3252 19.2884 15.5012C19.1143 15.6772 18.8778 15.7774 18.6302 15.78H18.6202Z\" fill=\"#8E8E8E\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vfbo66\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1uhsua\",\"data-framer-name\":\"logoipsum-220 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:42,intrinsicWidth:164,name:\"logoipsum-220 1\",svg:'<svg width=\"164\" height=\"42\" viewBox=\"0 0 164 42\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M30.6101 17.7188C33.7481 17.7188 34.4541 19.0817 34.4541 20.7817C34.4541 22.5837 33.6001 23.8748 30.6231 23.8748C27.6651 23.8748 26.8101 22.6587 26.8101 20.7817C26.8101 18.9347 27.7421 17.7188 30.6101 17.7188Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M63.404 17.7188C66.542 17.7188 67.248 19.0817 67.248 20.7817C67.248 22.5837 66.393 23.8748 63.417 23.8748C60.46 23.8748 59.604 22.6587 59.604 20.7817C59.604 18.9347 60.536 17.7188 63.404 17.7188Z\" fill=\"#8E8E8E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.82666 38.4999V3.04688H161.405V38.4999H2.82666ZM78.4047 36.4999H159.405V5.04688H78.4047V36.4999ZM30.6249 26.8929C36.1959 26.8929 38.5379 24.4899 38.5379 20.7369C38.5379 16.9229 35.8999 14.6559 30.6249 14.6559C25.4309 14.6559 22.6969 17.1179 22.6969 20.7369C22.6969 24.8209 25.5649 26.8929 30.6249 26.8929ZM11.2559 14.9259V26.7129H22.4999V23.5739H15.3239V14.9259H11.2559ZM51.1219 26.7129L51.0169 25.5709C49.656 26.5421 47.9996 27.0095 46.3319 26.8929C43.8249 26.8929 41.7369 26.1419 40.5659 24.6259C39.7935 23.5191 39.4035 22.1905 39.4549 20.8419C39.411 19.5216 39.8145 18.2252 40.5999 17.1629C41.7849 15.6919 43.9329 14.7159 47.1309 14.7159C50.8099 14.7159 52.9719 15.8419 53.9019 17.7339C54.1015 18.1795 54.2188 18.6575 54.2479 19.1449H50.3559C50.2578 18.8487 50.0753 18.5877 49.8309 18.3939C49.0556 17.8799 48.1298 17.6422 47.2029 17.7189C46.6592 17.653 46.1076 17.7032 45.5848 17.8663C45.062 18.0294 44.5797 18.3016 44.1699 18.6649C43.7045 19.3019 43.486 20.0861 43.5549 20.8719C43.5009 21.6216 43.7018 22.3676 44.1249 22.9889C44.5384 23.3742 45.03 23.666 45.5662 23.8448C46.1025 24.0235 46.6708 24.085 47.2329 24.0249C48.3492 24.1157 49.4575 23.7714 50.3259 23.0639C50.5124 22.8307 50.641 22.5565 50.7009 22.2639H46.5129V19.7309H54.3499V26.7129H51.1219ZM63.4189 26.8929C68.9889 26.8929 71.3319 24.4899 71.3319 20.7369C71.3319 16.9229 68.6898 14.6559 63.4189 14.6559C58.2249 14.6559 55.4909 17.1179 55.4909 20.7369C55.4909 24.8209 58.3589 26.8929 63.4189 26.8929Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M85.2568 26.6698V14.8828H88.1568V26.6698H85.2568Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M103.049 21.7436C102.314 22.7046 101.049 23.1436 99.2659 23.1546C98.8899 23.1546 93.9049 23.1396 93.9049 23.1396V26.6686H91.0669V14.8816H99.2669C99.9241 14.8121 100.589 14.8818 101.217 15.0861C101.846 15.2905 102.424 15.6249 102.915 16.0676C103.563 16.9118 103.878 17.9644 103.801 19.0256C103.867 19.9908 103.602 20.9497 103.049 21.7436ZM100.722 17.9006C100.422 17.4506 99.7749 17.2006 98.6799 17.2006H93.8899V20.7886H98.6489C99.8199 20.7886 100.437 20.5486 100.722 20.0826C100.891 19.7543 100.964 19.3846 100.932 19.0166C100.957 18.6328 100.885 18.2489 100.722 17.9006Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M112.164 26.8462C106.818 26.8462 105.182 24.8462 105.182 22.8672H108.215C108.215 23.8432 109.551 24.5792 112.299 24.5792C115.031 24.5792 115.752 24.0982 115.752 23.3172C115.752 22.4462 115.212 22.1762 112.674 21.8912C112.174 21.8462 110.813 21.6812 110.302 21.6062C106.702 21.2002 105.316 20.1342 105.316 18.2272C105.316 16.2152 107.344 14.6992 111.743 14.6992C116.518 14.6992 118.35 16.5762 118.35 18.5282H115.35C115.35 17.5372 114.224 16.9662 111.566 16.9662C108.833 16.9662 108.248 17.3412 108.248 18.0772C108.248 18.8432 108.848 19.0832 111.748 19.4282C112.409 19.5192 113.88 19.6842 114.285 19.7282C117.349 20.0432 118.73 21.1542 118.73 23.1212C118.725 25.4642 116.623 26.8462 112.164 26.8462Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M127.27 26.8348C123.352 26.8348 120.799 25.2878 120.799 22.0348V14.8828H123.666V22.0748C123.666 23.5618 124.883 24.5518 127.39 24.5518C129.657 24.5518 131.009 23.6218 131.009 22.0748V14.8828H133.847V22.3018C133.847 25.2588 131.474 26.8348 127.27 26.8348Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M149.387 26.6698V18.8018L145.708 26.6698H142.916L139.342 18.8018V26.6698H136.642V14.8828H140.3L144.354 23.8618L148.498 14.8828H152.098V26.6698H149.387Z\" fill=\"#8E8E8E\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18i02si\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1yo42mc\",\"data-framer-name\":\"logoipsum-213 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:39,intrinsicWidth:148,name:\"logoipsum-213 1\",svg:'<svg width=\"148\" height=\"39\" viewBox=\"0 0 148 39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M50.5245 28.0868C49.8621 28.1228 49.2069 27.9344 48.6647 27.552C48.4382 27.3839 48.2559 27.1632 48.1336 26.9089C48.0113 26.6545 47.9529 26.3743 47.9631 26.0922V15.7628C47.9578 15.7191 47.9623 15.6747 47.9767 15.633C47.9909 15.5913 48.0146 15.5535 48.0457 15.5223C48.0769 15.4911 48.1147 15.4675 48.1563 15.4533C48.198 15.4389 48.2424 15.4343 48.2861 15.4397H50.157C50.3686 15.4397 50.4688 15.5511 50.4688 15.7628V25.29C50.4688 25.7134 50.6581 25.9251 51.0479 25.9251C51.2131 25.9319 51.3784 25.9132 51.5379 25.8694C51.7606 25.8694 51.8831 25.9362 51.8942 26.1368L52.0613 27.5297C52.0693 27.5703 52.0685 27.6121 52.0591 27.6525C52.0496 27.6927 52.0316 27.7306 52.0062 27.7632C51.9809 27.796 51.9488 27.8229 51.9123 27.8422C51.8756 27.8615 51.8353 27.8728 51.794 27.8751C51.3842 28.0106 50.956 28.082 50.5245 28.0868Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M61.0483 26.891C60.1083 27.6683 58.9268 28.0934 57.7074 28.0934C56.488 28.0934 55.3066 27.6683 54.3665 26.891C53.5403 26.0564 53.0767 24.9291 53.0767 23.7543C53.0767 22.5795 53.5403 21.4522 54.3665 20.6176C55.3084 19.8444 56.4891 19.4219 57.7074 19.4219C58.9257 19.4219 60.1064 19.8444 61.0483 20.6176C61.8556 21.4599 62.3063 22.5818 62.3063 23.7488C62.3063 24.9157 61.8556 26.0376 61.0483 26.8799V26.891ZM56.126 25.4202C56.5623 25.8156 57.1299 26.0346 57.7185 26.0346C58.3072 26.0346 58.8748 25.8156 59.311 25.4202C59.7059 24.966 59.9233 24.3842 59.9233 23.7822C59.9233 23.1802 59.7059 22.5985 59.311 22.1442C58.8748 21.7488 58.3072 21.5298 57.7185 21.5298C57.1299 21.5298 56.5623 21.7488 56.126 22.1442C55.7312 22.5985 55.5137 23.1802 55.5137 23.7822C55.5137 24.3842 55.7312 24.966 56.126 25.4202Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M72.608 19.7044C72.8196 19.7044 72.9198 19.8158 72.9198 20.0275V28.0169C72.9393 28.5563 72.8384 29.093 72.6246 29.5883C72.4107 30.0837 72.0894 30.5252 71.6837 30.8807C70.7832 31.649 69.6252 32.0471 68.443 31.9949C67.3752 32.0325 66.3216 31.7408 65.425 31.1592C65.0422 30.9077 64.7151 30.58 64.4642 30.1967C64.2132 29.8133 64.0437 29.3824 63.9662 28.9307C63.9662 28.7078 63.9662 28.6075 64.2668 28.6075H66.1377C66.2172 28.6102 66.2942 28.6359 66.3594 28.6814C66.4246 28.7268 66.4753 28.7901 66.5053 28.8638C66.6266 29.2022 66.8685 29.484 67.1846 29.6549C67.5698 29.8538 67.9985 29.9535 68.4318 29.9447C68.6933 29.959 68.955 29.921 69.2017 29.833C69.4484 29.7451 69.675 29.6087 69.8684 29.4321C70.0452 29.2473 70.1826 29.0286 70.2726 28.7892C70.3626 28.5499 70.4031 28.2947 70.3918 28.0392V27.3372C69.722 27.8302 68.9067 28.0851 68.0755 28.0615C67.4937 28.0827 66.9137 27.9861 66.3702 27.7774C65.8267 27.5686 65.331 27.2522 64.9128 26.8469C64.1099 26.0159 63.6611 24.9052 63.6611 23.7492C63.6611 22.5934 64.1099 21.4827 64.9128 20.6515C65.333 20.2499 65.8294 19.9366 66.3725 19.7299C66.9157 19.5232 67.4947 19.4274 68.0755 19.4481C68.9308 19.4255 69.768 19.6969 70.4475 20.2169V20.0387C70.4424 19.996 70.4469 19.9526 70.4606 19.9118C70.4743 19.8712 70.4969 19.834 70.5267 19.803C70.5565 19.772 70.593 19.7482 70.6332 19.733C70.6735 19.7178 70.7166 19.7119 70.7593 19.7155L72.608 19.7044ZM68.2871 26.0781C68.5739 26.087 68.8594 26.0327 69.123 25.9191C69.3866 25.8055 69.6221 25.6354 69.8128 25.4207C70.183 24.9423 70.3839 24.3543 70.3839 23.7492C70.3839 23.1442 70.183 22.5563 69.8128 22.0778C69.6228 21.8661 69.3887 21.6984 69.1271 21.5867C68.8654 21.4751 68.5825 21.4221 68.2982 21.4315C68.008 21.4224 67.7193 21.4764 67.4521 21.59C67.1848 21.7035 66.9454 21.8738 66.7503 22.0889C66.3401 22.5466 66.1244 23.1462 66.1489 23.7604C66.1288 24.3685 66.3398 24.9618 66.7391 25.4207C66.9347 25.6353 67.1742 25.8052 67.4414 25.9186C67.7085 26.0321 67.997 26.0864 68.2871 26.0781Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M82.5301 26.8917C81.5882 27.6649 80.4075 28.0875 79.1892 28.0875C77.9709 28.0875 76.7902 27.6649 75.8483 26.8917C75.0404 26.0475 74.5894 24.9239 74.5894 23.755C74.5894 22.5862 75.0404 21.4625 75.8483 20.6183C76.7911 19.8471 77.9715 19.4258 79.1892 19.4258C80.407 19.4258 81.5873 19.8471 82.5301 20.6183C83.3374 21.4606 83.7881 22.5824 83.7881 23.7494C83.7881 24.9164 83.3374 26.0383 82.5301 26.8806V26.8917ZM77.5967 25.4209C77.8102 25.6241 78.0619 25.7829 78.3372 25.8881C78.6125 25.9933 78.9058 26.0429 79.2004 26.0337C79.493 26.0413 79.7844 25.9912 80.0576 25.886C80.3309 25.7808 80.5807 25.6228 80.7929 25.4209C81.1813 24.9636 81.3946 24.383 81.3946 23.7829C81.3946 23.1827 81.1813 22.6022 80.7929 22.1449C80.5807 21.9431 80.3309 21.7849 80.0576 21.6799C79.7844 21.5747 79.493 21.5244 79.2004 21.532C78.9058 21.523 78.6125 21.5725 78.3372 21.6776C78.0619 21.7828 77.8102 21.9417 77.5967 22.1449C77.2084 22.6022 76.9951 23.1827 76.9951 23.7829C76.9951 24.383 77.2084 24.9636 77.5967 25.4209Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M87.8089 17.8113C87.5146 18.0691 87.1366 18.2112 86.7454 18.2112C86.3542 18.2112 85.9763 18.0691 85.6819 17.8113C85.5485 17.6853 85.4421 17.5333 85.3694 17.3647C85.2968 17.1961 85.2593 17.0144 85.2593 16.8307C85.2593 16.6471 85.2968 16.4655 85.3694 16.2968C85.4421 16.1282 85.5485 15.9762 85.6819 15.8502C85.9794 15.5988 86.3561 15.4609 86.7454 15.4609C87.1348 15.4609 87.5115 15.5988 87.8089 15.8502C87.9425 15.9762 88.0488 16.1282 88.1214 16.2968C88.1942 16.4655 88.2316 16.6471 88.2316 16.8307C88.2316 17.0144 88.1942 17.1961 88.1214 17.3647C88.0488 17.5333 87.9425 17.6853 87.8089 17.8113ZM88.0428 28.085C87.3809 28.1176 86.7268 27.9295 86.183 27.5502C85.96 27.3797 85.7808 27.1582 85.6607 26.9042C85.5406 26.6503 85.4829 26.3712 85.4926 26.0904V20.0287C85.4872 19.9851 85.4918 19.9406 85.5062 19.8989C85.5204 19.8572 85.544 19.8195 85.5752 19.7883C85.6064 19.7571 85.6442 19.7334 85.6858 19.7192C85.7275 19.7048 85.7719 19.7002 85.8155 19.7056H87.6864C87.898 19.7056 87.9983 19.817 87.9983 20.0287V25.2882C87.9983 25.7116 88.1876 25.9233 88.5662 25.9233C88.7352 25.9294 88.904 25.9106 89.0674 25.8676C89.2901 25.8676 89.4126 25.9344 89.4237 26.135L89.5908 27.5279C89.5988 27.5685 89.598 27.6103 89.5885 27.6507C89.5791 27.6909 89.561 27.7288 89.5356 27.7614C89.5104 27.7942 89.4783 27.8212 89.4418 27.8404C89.4051 27.8597 89.3648 27.871 89.3235 27.8733C88.9101 28.0096 88.4781 28.081 88.0428 28.085Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M96.4732 19.4377C97.0576 19.4147 97.6406 19.5093 98.1878 19.716C98.7349 19.9228 99.235 20.2373 99.6582 20.6411C100.446 21.4869 100.884 22.5997 100.884 23.7556C100.884 24.9114 100.446 26.0244 99.6582 26.87C99.237 27.2775 98.7376 27.5952 98.1901 27.8039C97.6426 28.0127 97.0586 28.1082 96.4732 28.0846C95.6393 28.1032 94.822 27.8489 94.1457 27.3603V31.3829C94.1457 31.5946 94.0343 31.6949 93.8227 31.6949H91.9518C91.9092 31.7029 91.8652 31.7003 91.8237 31.6875C91.7822 31.6746 91.7445 31.6519 91.7137 31.6211C91.6831 31.5903 91.6603 31.5527 91.6475 31.5111C91.6346 31.4697 91.6321 31.4257 91.64 31.3829V22.2457C91.6532 22.1564 91.6451 22.0652 91.6169 21.9794C91.5885 21.8937 91.5403 21.8157 91.4765 21.7519C91.4127 21.688 91.3349 21.64 91.2491 21.6116C91.1635 21.5832 91.0723 21.5753 90.983 21.5883H90.6155C90.3705 21.5883 90.248 21.4991 90.248 21.3209V20.006C90.2422 19.9247 90.2645 19.8438 90.3111 19.7769C90.3577 19.7099 90.4258 19.661 90.5041 19.6383C90.8893 19.4982 91.297 19.4303 91.7068 19.4377C92.1155 19.4015 92.5257 19.4883 92.8848 19.6868C93.2439 19.8853 93.5357 20.1866 93.7225 20.552C94.0812 20.189 94.5102 19.9029 94.9832 19.7113C95.4561 19.5197 95.9631 19.4266 96.4732 19.4377ZM94.7359 25.4214C94.9345 25.6291 95.173 25.7944 95.4372 25.9073C95.7013 26.0201 95.9855 26.0783 96.2727 26.0783C96.56 26.0783 96.8443 26.0201 97.1083 25.9073C97.3725 25.7944 97.611 25.6291 97.8096 25.4214C98.2278 24.9547 98.4476 24.343 98.4221 23.7166C98.4512 23.0897 98.231 22.4766 97.8096 22.0117C97.611 21.8041 97.3725 21.6389 97.1083 21.526C96.8443 21.413 96.56 21.3548 96.2727 21.3548C95.9855 21.3548 95.7013 21.413 95.4372 21.526C95.173 21.6389 94.9345 21.8041 94.7359 22.0117C94.3308 22.4848 94.1199 23.094 94.1457 23.7166C94.1231 24.3387 94.3337 24.9467 94.7359 25.4214Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M106.139 28.0839C105.139 28.125 104.148 27.8858 103.277 27.3931C102.928 27.1825 102.63 26.8957 102.406 26.5543C102.183 26.2129 102.039 25.8255 101.985 25.4208C101.985 25.1979 102.063 25.0865 102.308 25.0865H103.945C104.023 25.0896 104.099 25.114 104.164 25.1574C104.228 25.2006 104.28 25.2609 104.313 25.3316C104.547 25.9333 105.159 26.2342 106.139 26.2342C106.481 26.2499 106.821 26.1809 107.13 26.0336C107.237 25.9855 107.328 25.9093 107.395 25.8131C107.462 25.7169 107.501 25.6044 107.509 25.4876C107.509 25.1979 107.331 24.9973 106.974 24.8636C106.552 24.7229 106.115 24.6294 105.671 24.5851C105.146 24.5255 104.626 24.4325 104.112 24.3065C103.613 24.1935 103.159 23.9334 102.809 23.5599C102.603 23.3061 102.452 23.0125 102.364 22.6975C102.276 22.3824 102.254 22.0526 102.299 21.7287C102.343 21.4047 102.455 21.0933 102.625 20.8142C102.795 20.535 103.021 20.2938 103.288 20.1056C104.091 19.5941 105.033 19.3448 105.983 19.3925C106.904 19.3614 107.814 19.5892 108.611 20.0499C108.933 20.2321 109.21 20.4836 109.421 20.7862C109.633 21.0889 109.775 21.435 109.836 21.7993C109.836 22.0222 109.736 22.1336 109.536 22.1336H107.888C107.818 22.1377 107.749 22.1208 107.69 22.085C107.63 22.0493 107.583 21.9962 107.554 21.9331C107.443 21.6692 107.236 21.4577 106.974 21.3425C106.679 21.188 106.35 21.1113 106.017 21.1196C105.69 21.1019 105.365 21.1671 105.07 21.3091C104.966 21.3492 104.877 21.4194 104.813 21.5107C104.75 21.6021 104.715 21.7104 104.714 21.8216C104.721 21.9741 104.777 22.1201 104.873 22.2385C104.969 22.3568 105.101 22.4411 105.248 22.4791C105.676 22.6404 106.121 22.7525 106.574 22.8133C107.094 22.882 107.611 22.9787 108.121 23.1031C108.621 23.2162 109.074 23.4761 109.424 23.8496C109.612 24.0554 109.756 24.2962 109.85 24.5583C109.944 24.8203 109.984 25.0983 109.97 25.3762C109.98 25.7614 109.889 26.1425 109.708 26.4823C109.526 26.8221 109.26 27.109 108.934 27.3151C108.102 27.8496 107.127 28.1177 106.139 28.0839Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M121.742 27.5293C121.748 27.5689 121.746 27.6093 121.737 27.6482C121.727 27.6872 121.71 27.7238 121.686 27.756C121.662 27.7882 121.632 27.8152 121.598 27.8356C121.563 27.856 121.525 27.8693 121.485 27.8747C121.079 28.0076 120.655 28.079 120.227 28.0865C119.804 28.1304 119.376 28.0642 118.986 27.8944C118.596 27.7245 118.256 27.4568 118 27.117C117.213 27.7937 116.196 28.1409 115.16 28.0865C114.679 28.1086 114.199 28.0299 113.75 27.8552C113.301 27.6806 112.894 27.414 112.554 27.0725C112.217 26.7147 111.955 26.2923 111.785 25.8309C111.614 25.3695 111.539 24.8784 111.563 24.387V20.0302C111.563 19.8185 111.663 19.707 111.875 19.707H113.746C113.957 19.707 114.057 19.8185 114.057 20.0302V24.0527C114.037 24.554 114.208 25.044 114.536 25.4233C114.7 25.5971 114.899 25.7338 115.12 25.8241C115.34 25.9145 115.579 25.9564 115.817 25.947C116.061 25.9577 116.305 25.92 116.534 25.8357C116.764 25.7516 116.974 25.6228 117.153 25.4567C117.323 25.2818 117.455 25.0739 117.541 24.8458C117.628 24.6177 117.666 24.3743 117.654 24.1307V20.0302C117.654 19.8185 117.755 19.707 117.966 19.707H119.859C120.071 19.707 120.171 19.8185 120.171 20.0302V25.2785C120.171 25.713 120.361 25.9247 120.728 25.9247C120.901 25.9314 121.073 25.9127 121.24 25.869C121.283 25.8572 121.327 25.8551 121.37 25.8629C121.413 25.8706 121.453 25.888 121.489 25.9137C121.524 25.9395 121.553 25.9729 121.574 26.0114C121.595 26.05 121.606 26.0928 121.608 26.1365L121.742 27.5293Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M139.437 27.527C139.447 27.5669 139.448 27.6086 139.44 27.6489C139.431 27.6891 139.415 27.7272 139.39 27.7602C139.366 27.7932 139.334 27.8204 139.298 27.8398C139.262 27.8593 139.222 27.8704 139.181 27.8724C138.767 28.0071 138.336 28.0786 137.9 28.0841C137.237 28.1184 136.584 27.9302 136.04 27.5493C135.805 27.3862 135.615 27.1676 135.485 26.913C135.354 26.6584 135.289 26.3755 135.294 26.0896V23.471C135.318 22.9714 135.151 22.4814 134.826 22.1004C134.671 21.9263 134.477 21.789 134.262 21.6984C134.046 21.6079 133.813 21.5664 133.579 21.5767C133.369 21.5688 133.159 21.6088 132.966 21.6937C132.773 21.7786 132.603 21.9063 132.466 22.067C132.172 22.4404 132.021 22.9071 132.042 23.3819V27.4936C132.042 27.7053 131.942 27.8167 131.731 27.8167H129.849C129.805 27.8222 129.761 27.8175 129.719 27.8032C129.677 27.7889 129.639 27.7652 129.608 27.734C129.577 27.7029 129.553 27.6651 129.539 27.6234C129.524 27.5817 129.52 27.5374 129.526 27.4936V23.471C129.55 22.9768 129.395 22.4903 129.091 22.1004C128.955 21.9366 128.785 21.8048 128.592 21.7143C128.401 21.6238 128.19 21.5768 127.978 21.5767C127.75 21.5676 127.524 21.6065 127.313 21.691C127.101 21.7755 126.911 21.9036 126.753 22.067C126.434 22.4285 126.27 22.9007 126.296 23.3819V27.4936C126.302 27.5374 126.297 27.5817 126.283 27.6234C126.268 27.6651 126.245 27.7029 126.214 27.734C126.182 27.7652 126.145 27.7889 126.103 27.8032C126.061 27.8175 126.016 27.8222 125.973 27.8167H124.158C123.946 27.8167 123.846 27.7053 123.846 27.4936V22.2453C123.859 22.1559 123.852 22.0648 123.823 21.979C123.795 21.8933 123.747 21.8153 123.682 21.7514C123.619 21.6876 123.541 21.6396 123.455 21.6111C123.369 21.5827 123.278 21.5748 123.189 21.5879H122.821C122.576 21.5879 122.454 21.4987 122.454 21.3204V20.0056C122.448 19.9242 122.471 19.8433 122.517 19.7765C122.564 19.7095 122.632 19.6606 122.71 19.6379C123.095 19.4978 123.503 19.4298 123.913 19.4373C124.306 19.4037 124.701 19.4822 125.052 19.6636C125.403 19.845 125.695 20.1219 125.895 20.4624C126.27 20.1062 126.716 19.8312 127.203 19.6548C127.689 19.4784 128.207 19.4044 128.724 19.4373C129.226 19.4128 129.726 19.5069 130.185 19.7122C130.644 19.9174 131.047 20.2279 131.363 20.6184C131.732 20.2176 132.185 19.9038 132.689 19.6995C133.194 19.4952 133.737 19.4058 134.281 19.4373C134.766 19.4146 135.252 19.4929 135.706 19.6675C136.161 19.842 136.574 20.1089 136.92 20.4513C137.259 20.8084 137.52 21.2306 137.691 21.6923C137.861 22.1538 137.937 22.6453 137.911 23.1367V25.2873C137.911 25.7107 138.101 25.9224 138.457 25.9224C138.63 25.9305 138.802 25.9117 138.969 25.8667C139.2 25.8667 139.322 25.9559 139.337 26.1341L139.437 27.527Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M8.8521 18.259C9.67371 14.9548 11.5765 12.0206 14.2576 9.92365C16.9387 7.82668 20.2438 6.6875 23.6468 6.6875C27.0497 6.6875 30.3549 7.82668 33.0359 9.92365C35.717 12.0206 37.6198 14.9548 38.4414 18.259H37.1051C34.8507 18.2258 32.6426 18.9 30.7907 20.1867C30.6838 20.2642 30.5722 20.3349 30.4566 20.3985H30.3007C30.1851 20.3349 30.0736 20.2642 29.9666 20.1867C28.0984 18.9297 25.8981 18.2584 23.6468 18.2584C21.3954 18.2584 19.1951 18.9297 17.3269 20.1867C17.22 20.2642 17.1084 20.3349 16.9928 20.3985H16.8369C16.7213 20.3349 16.6097 20.2642 16.5028 20.1867C14.6509 18.9 12.4428 18.2258 10.1885 18.259H8.8521ZM34.6996 25.2456C35.3856 24.7111 36.2359 24.4314 37.1051 24.4545H38.898V20.8776H37.1051C35.574 20.8591 34.0781 21.3359 32.8398 22.237C32.143 22.751 31.3001 23.0284 30.4344 23.0284C29.5686 23.0284 28.7257 22.751 28.0289 22.237C26.7593 21.3527 25.2494 20.8786 23.7024 20.8786C22.1555 20.8786 20.6456 21.3527 19.376 22.237C18.6792 22.751 17.8362 23.0284 16.9705 23.0284C16.1048 23.0284 15.2619 22.751 14.5651 22.237C13.3115 21.3243 11.7941 20.847 10.2441 20.8776H8.39551V24.4545H10.1885C11.0577 24.4314 11.9079 24.7111 12.5939 25.2456C13.8612 26.1306 15.3694 26.605 16.9148 26.605C18.4602 26.605 19.9684 26.1306 21.2357 25.2456C21.9226 24.7127 22.7722 24.4333 23.6412 24.4545C24.5107 24.4295 25.3615 24.7094 26.0466 25.2456C27.3163 26.13 28.8262 26.604 30.3731 26.604C31.9201 26.604 33.4299 26.13 34.6996 25.2456ZM34.6996 31.6416C35.3856 31.1071 36.2359 30.8274 37.1051 30.8505H38.898V27.2736H37.1051C35.574 27.2551 34.0781 27.7319 32.8398 28.633C32.143 29.147 31.3001 29.4244 30.4344 29.4244C29.5686 29.4244 28.7257 29.147 28.0289 28.633C26.7593 27.7487 25.2494 27.2747 23.7024 27.2747C22.1555 27.2747 20.6456 27.7487 19.376 28.633C18.6792 29.147 17.8362 29.4244 16.9705 29.4244C16.1048 29.4244 15.2619 29.147 14.5651 28.633C13.3115 27.7204 11.7941 27.243 10.2441 27.2736H8.39551V30.8505H10.1885C11.0577 30.8274 11.9079 31.1071 12.5939 31.6416C13.8612 32.5266 15.3694 33.001 16.9148 33.001C18.4602 33.001 19.9684 32.5266 21.2357 31.6416C21.9226 31.1087 22.7722 30.8293 23.6412 30.8505C24.5107 30.8255 25.3615 31.1054 26.0466 31.6416C27.3163 32.526 28.8262 33 30.3731 33C31.9201 33 33.4299 32.526 34.6996 31.6416Z\" fill=\"#8E8E8E\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fp98ep\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1dttvki\",\"data-framer-name\":\"logoipsum-227 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:39,intrinsicWidth:128,name:\"logoipsum-227 1\",svg:'<svg width=\"128\" height=\"39\" viewBox=\"0 0 128 39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.2998 2C18.0017 2 15.726 2.4527 13.6028 3.3321C11.4796 4.2116 9.5505 5.5006 7.9254 7.1256C6.3004 8.7507 5.0114 10.6798 4.1319 12.803C3.2525 14.9262 2.7998 17.2019 2.7998 19.5C2.7998 21.7981 3.2525 24.0738 4.1319 26.197C5.0114 28.3202 6.3004 30.2493 7.9254 31.8744C9.5505 33.4994 11.4796 34.7884 13.6028 35.6679C15.726 36.5473 18.0017 37 20.2998 37V28.25C19.1507 28.25 18.0129 28.0237 16.9513 27.5839C15.8897 27.1442 14.9251 26.4997 14.1126 25.6872C13.3001 24.8747 12.6556 23.9101 12.2159 22.8485C11.7761 21.7869 11.5498 20.6491 11.5498 19.5C11.5498 18.3509 11.7761 17.2131 12.2159 16.1515C12.6556 15.0899 13.3001 14.1253 14.1126 13.3128C14.9251 12.5003 15.8897 11.8558 16.9513 11.4161C18.0129 10.9763 19.1507 10.75 20.2998 10.75V2Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M20.3001 25.3346C23.5218 25.3346 26.1334 22.723 26.1334 19.5013C26.1334 16.2796 23.5218 13.668 20.3001 13.668C17.0784 13.668 14.4668 16.2796 14.4668 19.5013C14.4668 22.723 17.0784 25.3346 20.3001 25.3346Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M2.7998 19.5C2.7998 21.7981 3.2525 24.0738 4.1319 26.197C5.0114 28.3202 6.3004 30.2493 7.9254 31.8744C9.5505 33.4994 11.4796 34.7884 13.6028 35.6679C15.726 36.5473 18.0017 37 20.2998 37C22.5979 37 24.8736 36.5473 26.9968 35.6679C29.12 34.7884 31.0491 33.4994 32.6742 31.8744C34.2992 30.2493 35.5882 28.3202 36.4677 26.197C37.3471 24.0738 37.7998 21.7981 37.7998 19.5H29.0498C29.0498 20.6491 28.8235 21.7869 28.3837 22.8485C27.944 23.9101 27.2995 24.8747 26.487 25.6872C25.6745 26.4997 24.7099 27.1442 23.6483 27.5839C22.5867 28.0237 21.4489 28.25 20.2998 28.25C19.1507 28.25 18.0129 28.0237 16.9513 27.5839C15.8897 27.1442 14.9251 26.4997 14.1126 25.6872C13.3001 24.8747 12.6556 23.9101 12.2159 22.8485C11.7761 21.7869 11.5498 20.6491 11.5498 19.5H2.7998Z\" fill=\"#757575\"/>\\n<path d=\"M26.133 19.5014C26.133 17.9543 25.5184 16.4706 24.4245 15.3766C23.3305 14.2826 21.8468 13.668 20.2997 13.668C18.7526 13.668 17.2689 14.2826 16.1749 15.3766C15.0809 16.4706 14.4663 17.9543 14.4663 19.5014H20.2997H26.133Z\" fill=\"#757575\"/>\\n<path d=\"M46.9396 12.9258H44.7661V25.0008H46.9396V12.9258Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M48.3589 20.7226C48.3589 23.5171 50.2909 25.2421 52.8439 25.2421C55.3969 25.2421 57.3289 23.5171 57.3289 20.7226C57.3289 17.9281 55.3969 16.2031 52.8439 16.2031C50.2909 16.2031 48.3589 17.9281 48.3589 20.7226ZM50.5324 20.7226C50.5324 19.0666 51.4984 18.1006 52.8439 18.1006C54.1894 18.1006 55.1554 19.0666 55.1554 20.7226C55.1554 22.3786 54.1894 23.3446 52.8439 23.3446C51.4984 23.3446 50.5324 22.3786 50.5324 20.7226Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M65.096 16.4446V17.6003H64.9235C64.406 16.8586 63.578 16.2031 62.0945 16.2031C60.059 16.2031 58.2305 17.9281 58.2305 20.5846C58.2305 23.2411 60.059 24.9661 62.0945 24.9661C63.578 24.9661 64.406 24.2933 64.889 23.6206H65.0615V24.4486C65.0615 26.1046 64.0955 26.8636 62.681 26.8636C61.2665 26.8636 60.542 26.1046 60.2487 25.1213L58.2995 25.9666C58.748 27.2603 60.059 28.6921 62.7155 28.6921C65.441 28.6921 67.235 27.2603 67.235 24.5003V16.4446H65.096ZM62.75 23.1031C61.4045 23.1031 60.404 22.1371 60.404 20.5846C60.404 19.0321 61.4045 18.0661 62.75 18.0661C64.0955 18.0661 65.096 19.0321 65.096 20.5846C65.096 22.1371 64.0955 23.1031 62.75 23.1031Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M68.6411 20.7226C68.6411 23.5171 70.5731 25.2421 73.1261 25.2421C75.6791 25.2421 77.611 23.5171 77.611 20.7226C77.611 17.9281 75.6791 16.2031 73.1261 16.2031C70.5731 16.2031 68.6411 17.9281 68.6411 20.7226ZM70.8146 20.7226C70.8146 19.0666 71.7806 18.1006 73.1261 18.1006C74.4716 18.1006 75.4376 19.0666 75.4376 20.7226C75.4376 22.3786 74.4716 23.3446 73.1261 23.3446C71.7806 23.3446 70.8146 22.3786 70.8146 20.7226Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M79.3169 13.9601C79.3169 14.8399 79.9899 15.4436 80.8529 15.4436C81.7149 15.4436 82.3879 14.8399 82.3879 13.9601C82.3879 13.0804 81.7149 12.4766 80.8529 12.4766C79.9899 12.4766 79.3169 13.0804 79.3169 13.9601ZM81.9389 16.4441H79.7659V25.0001H81.9389V16.4441Z\" fill=\"#757575\"/>\\n<path d=\"M83.876 28.4506H86.05V23.8966H86.222C86.705 24.5866 87.533 25.2421 89.017 25.2421C91.052 25.2421 92.881 23.5171 92.881 20.7226C92.881 17.9281 91.052 16.2031 89.017 16.2031C87.533 16.2031 86.705 16.8586 86.188 17.6004H86.015V16.4446H83.876V28.4506ZM88.361 23.3791C87.016 23.3791 86.015 22.4131 86.015 20.7226C86.015 19.0321 87.016 18.0661 88.361 18.0661C89.707 18.0661 90.707 19.0321 90.707 20.7226C90.707 22.4131 89.707 23.3791 88.361 23.3791Z\" fill=\"#757575\"/>\\n<path d=\"M94.1489 18.8424C94.1489 20.5329 95.5629 21.1539 97.3569 21.4989L97.8059 21.5851C98.8749 21.7921 99.3579 22.0509 99.3579 22.6029C99.3579 23.1549 98.8749 23.5861 97.8749 23.5861C96.8739 23.5861 96.0639 23.1721 95.8389 21.9301L93.8379 22.4476C94.1319 24.2416 95.6319 25.2421 97.8749 25.2421C100.048 25.2421 101.463 24.2244 101.463 22.4304C101.463 20.6363 100.014 20.1534 98.0819 19.7739L97.6329 19.6876C96.7359 19.5151 96.2529 19.2736 96.2529 18.7044C96.2529 18.1869 96.7019 17.8591 97.5299 17.8591C98.3579 17.8591 98.9439 18.2041 99.1509 19.1356L101.118 18.5319C100.704 17.1519 99.4449 16.2031 97.5299 16.2031C95.4939 16.2031 94.1489 17.1519 94.1489 18.8424Z\" fill=\"#757575\"/>\\n<path d=\"M111.226 25.0013V16.4453H109.053V20.8613C109.053 22.4483 108.277 23.3798 106.948 23.3798C105.775 23.3798 105.12 22.7416 105.12 21.4478V16.4453H102.946V21.5513C102.946 23.6731 104.275 25.1393 106.276 25.1393C107.845 25.1393 108.57 24.4493 108.915 23.7248H109.087V25.0013H111.226Z\" fill=\"#757575\"/>\\n<path d=\"M113.154 16.4427V24.9987H115.328V19.8927C115.328 18.7197 115.88 18.0642 116.88 18.0642C117.743 18.0642 118.26 18.5472 118.26 19.4787V24.9987H120.434V19.8927C120.434 18.7197 120.986 18.0642 121.986 18.0642C122.849 18.0642 123.366 18.5472 123.366 19.4787V24.9987H125.54V19.3752C125.54 17.3052 124.263 16.3047 122.676 16.3047C121.279 16.3047 120.641 16.9257 120.227 17.6502H120.054C119.657 16.8395 118.95 16.3047 117.708 16.3047C116.466 16.3047 115.793 16.8567 115.466 17.5122H115.293V16.4427H113.154Z\" fill=\"#757575\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uvxdg2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1emaitp\",\"data-framer-name\":\"logoipsum-215 (2) 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:132,name:\"logoipsum-215 (2) 1\",svg:'<svg width=\"132\" height=\"40\" viewBox=\"0 0 132 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M23.23 11.3917H25.23V25.3117H31.23V27.3117H23.23V11.3917ZM37.46 11.3917C38.6467 11.3917 39.8067 11.7436 40.7934 12.4029C41.7801 13.0622 42.5492 13.9992 43.0033 15.0956C43.4574 16.192 43.5762 17.3984 43.3447 18.5622C43.1132 19.7261 42.5418 20.7952 41.7026 21.6343C40.8635 22.4735 39.7944 23.0449 38.6305 23.2764C37.4667 23.5079 36.2603 23.3891 35.1639 22.935C34.0675 22.4808 33.1305 21.7118 32.4712 20.7251C31.8119 19.7384 31.46 18.5784 31.46 17.3917C31.46 16.6038 31.6152 15.8235 31.9167 15.0956C32.2182 14.3676 32.6602 13.7062 33.2174 13.1491C33.7745 12.5919 34.4359 12.1499 35.1639 11.8484C35.8918 11.5469 36.6721 11.3917 37.46 11.3917ZM37.46 21.3917C38.2511 21.3917 39.0245 21.1571 39.6823 20.7176C40.3401 20.278 40.8528 19.6533 41.1555 18.9224C41.4583 18.1915 41.5375 17.3873 41.3831 16.6113C41.2288 15.8354 40.8478 15.1227 40.2884 14.5633C39.729 14.0039 39.0163 13.6229 38.2404 13.4686C37.4644 13.3142 36.6602 13.3934 35.9293 13.6962C35.1984 13.9989 34.5736 14.5116 34.1341 15.1694C33.6946 15.8272 33.46 16.6006 33.46 17.3917C33.4653 18.4491 33.889 19.4614 34.6386 20.2072C35.3882 20.953 36.4026 21.3717 37.46 21.3717V21.3917ZM33.46 25.3317H41.46V27.3317H33.46V25.3317ZM59.06 27.3317H57.06V25.9017C55.7702 26.8045 54.2344 27.2897 52.66 27.2917C51.3175 27.3007 49.9943 26.9717 48.8124 26.335C47.6304 25.6982 46.6277 24.7743 45.8967 23.6483C45.1656 22.5223 44.7296 21.2304 44.629 19.8916C44.5283 18.5529 44.7662 17.2103 45.3207 15.9877C45.8752 14.765 46.7285 13.7015 47.8019 12.8953C48.8754 12.089 50.1345 11.5658 51.4632 11.374C52.792 11.1821 54.1477 11.3278 55.4053 11.7975C56.663 12.2672 57.7823 13.0458 58.66 14.0617L57.19 15.3717C56.5224 14.6253 55.6787 14.0579 54.7356 13.7212C53.7926 13.3844 52.7803 13.289 51.791 13.4437C50.8016 13.5984 49.8668 13.9983 49.0715 14.6068C48.2763 15.2154 47.646 16.0132 47.2382 16.9278C46.8303 17.8423 46.6578 18.8443 46.7364 19.8426C46.815 20.8409 47.1421 21.8036 47.6881 22.643C48.2341 23.4824 48.9814 24.1719 49.8621 24.6485C50.7427 25.1251 51.7287 25.3737 52.73 25.3717C53.561 25.3734 54.3826 25.1956 55.1386 24.8504C55.8945 24.5052 56.567 24.0008 57.11 23.3717H51.71V21.3717H59.08L59.06 27.3317ZM66.42 11.4317C67.6067 11.4317 68.7667 11.7836 69.7534 12.4429C70.7401 13.1022 71.5092 14.0392 71.9633 15.1356C72.4174 16.232 72.5362 17.4384 72.3047 18.6022C72.0732 19.7661 71.5018 20.8352 70.6626 21.6743C69.8235 22.5135 68.7544 23.0849 67.5905 23.3164C66.4267 23.5479 65.2203 23.4291 64.1239 22.975C63.0275 22.5208 62.0905 21.7518 61.4312 20.7651C60.7719 19.7784 60.42 18.6184 60.42 17.4317C60.4147 16.6387 60.5667 15.8526 60.8671 15.1187C61.1675 14.3848 61.6104 13.7177 62.1702 13.1561C62.73 12.5944 63.3956 12.1493 64.1285 11.8464C64.8614 11.5436 65.647 11.389 66.44 11.3917L66.42 11.4317ZM66.42 21.4317C67.2111 21.4317 67.9845 21.1971 68.6423 20.7576C69.3001 20.318 69.8128 19.6933 70.1155 18.9624C70.4183 18.2315 70.4975 17.4273 70.3431 16.6513C70.1888 15.8754 69.8078 15.1627 69.2484 14.6033C68.689 14.0439 67.9763 13.6629 67.2004 13.5086C66.4244 13.3542 65.6202 13.4334 64.8893 13.7362C64.1584 14.0389 63.5336 14.5516 63.0941 15.2094C62.6546 15.8672 62.42 16.6406 62.42 17.4317C62.4358 18.4856 62.8669 19.4907 63.6197 20.2285C64.3724 20.9662 65.386 21.3771 66.44 21.3717L66.42 21.4317ZM62.42 25.3717H70.42V27.3717H62.42V25.3717ZM74.55 11.3917H76.55V27.2917H74.55V11.3917ZM79.32 11.3917H81.32C81.423 11.3808 81.5269 11.3808 81.63 11.3917C82.4676 11.3008 83.315 11.3874 84.1169 11.6457C84.9188 11.9041 85.6574 12.3284 86.2844 12.8911C86.9115 13.4538 87.413 14.1423 87.7563 14.9117C88.0997 15.6811 88.2771 16.5142 88.2771 17.3567C88.2771 18.1992 88.0997 19.0323 87.7563 19.8017C87.413 20.5711 86.9115 21.2596 86.2844 21.8223C85.6574 22.385 84.9188 22.8093 84.1169 23.0677C83.315 23.326 82.4676 23.4126 81.63 23.3217H81.32V27.3217H79.32V11.3917ZM81.32 13.3917V21.3017H81.63C82.1949 21.3769 82.7693 21.3306 83.3149 21.1657C83.8604 21.0009 84.3644 20.7214 84.7931 20.346C85.2219 19.9706 85.5654 19.5079 85.8008 18.9889C86.0362 18.4699 86.158 17.9066 86.158 17.3367C86.158 16.7668 86.0362 16.2035 85.8008 15.6845C85.5654 15.1655 85.2219 14.7028 84.7931 14.3274C84.3644 13.9519 83.8604 13.6725 83.3149 13.5076C82.7693 13.3428 82.1949 13.2965 81.63 13.3717C81.5211 13.383 81.4137 13.4065 81.31 13.4417L81.32 13.3917ZM95.73 12.5417L94.25 13.7117C93.9947 13.4449 93.6685 13.2565 93.3098 13.1687C92.9511 13.0809 92.5748 13.0973 92.2251 13.216C91.8753 13.3346 91.5668 13.5506 91.3356 13.8386C91.1044 14.1266 90.9602 14.4746 90.92 14.8417V15.0017C90.92 15.8817 91.53 16.4717 92.72 16.5517C97.3 16.8317 99.4 18.9817 99.4 21.8217V22.0017C99.2817 23.1257 98.8431 24.1921 98.1363 25.0741C97.4295 25.9561 96.4842 26.6164 95.413 26.9767C94.3417 27.3369 93.1895 27.3819 92.0934 27.1062C90.9973 26.8306 90.0034 26.2459 89.23 25.4217L90.76 24.2417C91.1161 24.6234 91.551 24.923 92.0345 25.1199C92.518 25.3167 93.0385 25.4061 93.56 25.3817C94.5232 25.4325 95.4687 25.1092 96.1991 24.4793C96.9296 23.8495 97.3885 22.9618 97.48 22.0017V21.8617C97.48 19.1917 94.86 18.7017 92.59 18.4817C90.49 18.2817 88.98 16.9717 88.98 15.0817V15.0017C89.054 14.0177 89.5031 13.0997 90.2344 12.4373C90.9657 11.7748 91.9235 11.4184 92.91 11.4417C93.4328 11.4263 93.9529 11.5206 94.437 11.7187C94.921 11.9168 95.3581 12.2142 95.72 12.5917L95.73 12.5417ZM107.23 25.2617C109.72 25.2617 111.69 22.5717 111.69 19.2617V11.2617H113.69V19.2617C113.69 23.6617 110.81 27.2117 107.27 27.2117C103.73 27.2117 100.85 23.6617 100.85 19.2617V11.2617H102.85V19.2617C102.77 22.6217 104.74 25.3117 107.22 25.3117L107.23 25.2617ZM129.04 27.2617H127.04V17.3617L122.43 23.3617L117.82 17.3617V27.2917H115.82V11.3917L122.42 20.0817L129.02 11.3917L129.04 27.2617Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M13.63 8.99859C13.63 7.55581 13.0569 6.17212 12.0367 5.15193C11.0165 4.13173 9.63278 3.55859 8.19 3.55859C6.74722 3.55859 5.36354 4.13173 4.34334 5.15193C3.32314 6.17212 2.75 7.55581 2.75 8.99859V25.4486L7.23 28.6586V36.4786H9.15V28.6586L13.63 25.4486V8.99859ZM11.71 18.1986L9.15 20.7586V18.3586L11.71 15.7986V18.1986ZM4.71 15.7986L7.27 18.3586V20.7586L4.71 18.1986V15.7986ZM11.71 13.0786L8.19 16.5986L4.67 12.9986V10.5986L8.19 14.1186L11.71 10.5986V13.0786ZM8.19 5.47859C8.96415 5.48201 9.71583 5.73912 10.3299 6.21052C10.944 6.68192 11.3866 7.34162 11.59 8.08859L8.19 11.4786L4.79 8.08859C4.98594 7.33419 5.42537 6.66554 6.04013 6.1864C6.65489 5.70725 7.41059 5.44438 8.19 5.43858V5.47859ZM4.67 24.4786V20.8786L7.23 23.4386V26.2986L4.67 24.4786ZM9.15 26.3086V23.4386L11.71 20.8786V24.4686L9.15 26.3086Z\" fill=\"#8E8E8E\"/>\\n</svg>\\n',withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d6dshp hidden-1elvecx hidden-4ufibd\",\"data-framer-name\":\"Logos\",name:\"Logos\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hnnvm3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1y43dv4\",\"data-framer-name\":\"logoipsum-233 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:130,name:\"logoipsum-233 1\",svg:'<svg width=\"130\" height=\"40\" viewBox=\"0 0 130 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.9517 17.2216C12.9152 17.9508 12.897 18.874 12.897 19.9911C12.897 21.1082 12.9152 22.0391 12.9517 22.7839C12.9881 23.5131 13.061 24.0949 13.1704 24.5294C13.298 24.9638 13.4712 25.2663 13.69 25.4371C13.927 25.6077 14.2369 25.6931 14.6198 25.6931C15.0026 25.6931 15.3034 25.6077 15.5222 25.4371C15.7592 25.2663 15.9324 24.9638 16.0418 24.5294C16.1694 24.0949 16.2514 23.5131 16.2879 22.7839C16.3244 22.0391 16.3426 21.1082 16.3426 19.9911C16.3426 18.874 16.3244 17.9508 16.2879 17.2216C16.2514 16.4768 16.1694 15.8872 16.0418 15.4528C15.9324 15.0183 15.7592 14.7158 15.5222 14.5451C15.3034 14.3744 15.0026 14.2891 14.6198 14.2891C14.2369 14.2891 13.927 14.3744 13.69 14.5451C13.4712 14.7158 13.298 15.0183 13.1704 15.4528C13.061 15.8872 12.9881 16.4768 12.9517 17.2216Z\" fill=\"#575757\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.9207 2.70218C7.32692 2.82226 2.08572 7.45307 2.19152 13.0653L2.32152 19.961L2.19152 26.8566C2.08572 32.469 7.32692 37.0998 13.9207 37.2198L22.0243 37.3674L30.1279 37.2198C36.7217 37.0998 41.963 32.469 41.8572 26.8566L41.7272 19.961L41.8572 13.0653C41.963 7.45307 36.7217 2.82226 30.1279 2.70218L22.0243 2.55469L13.9207 2.70218ZM22.3043 28.7417L19.2415 30.9993L16.4522 28.4392C16.2334 28.4703 16.0146 28.4936 15.7959 28.5091C15.5953 28.54 15.3674 28.5556 15.1122 28.5556H14.62C13.3256 28.5556 12.2317 28.4082 11.3384 28.1134C10.4451 27.8186 9.72502 27.3298 9.17812 26.6472C8.63122 25.949 8.23922 25.0568 8.00222 23.9708C7.76522 22.8692 7.64672 21.5425 7.64672 19.991C7.64672 18.4395 7.76522 17.1206 8.00222 16.0345C8.23922 14.9329 8.63122 14.0408 9.17812 13.3581C9.72502 12.6599 10.4451 12.1556 11.3384 11.8453C12.2317 11.5195 13.3256 11.3566 14.62 11.3566C15.9144 11.3566 17.0082 11.5195 17.9015 11.8453C18.7948 12.1556 19.515 12.6599 20.0619 13.3581C20.6088 14.0408 21.0008 14.9329 21.2378 16.0345C21.4748 17.1206 21.5933 18.4395 21.5933 19.991C21.5933 21.5891 21.4657 22.9389 21.2104 24.0406C20.9552 25.1422 20.5359 26.0421 19.9525 26.7403L22.3043 28.7417ZM30.9365 17.6636V16.7327C30.9365 15.7863 30.8271 15.1423 30.6083 14.8011C30.3896 14.4597 30.0341 14.289 29.5418 14.289C29.159 14.289 28.8491 14.3743 28.6121 14.5451C28.3933 14.7157 28.2201 15.0183 28.0925 15.4527C27.9831 15.8871 27.9102 16.4767 27.8737 17.2215C27.8372 17.9507 27.819 18.8739 27.819 19.991C27.819 21.1081 27.8372 22.039 27.8737 22.7838C27.9102 23.5131 27.9831 24.0949 28.0925 24.5293C28.2201 24.9637 28.3933 25.2663 28.6121 25.437C28.8491 25.6076 29.159 25.693 29.5418 25.693C29.8517 25.693 30.107 25.6309 30.3075 25.5068C30.5081 25.3671 30.663 25.1422 30.7724 24.8319C30.8818 24.5216 30.9547 24.1103 30.9912 23.5983C31.0459 23.0709 31.0732 22.4115 31.0732 21.6201H35.9955V22.8537C35.9955 24.0173 35.8132 24.9715 35.4486 25.7162C35.084 26.461 34.6009 27.0506 33.9993 27.485C33.3976 27.904 32.7049 28.1832 31.9209 28.3229C31.1553 28.478 30.3622 28.5556 29.5418 28.5556C28.1198 28.5556 26.9531 28.4082 26.0415 28.1134C25.13 27.8186 24.419 27.3298 23.9085 26.6472C23.398 25.949 23.0425 25.0568 22.842 23.9708C22.6597 22.8692 22.5685 21.5425 22.5685 19.991C22.5685 18.4084 22.6779 17.0663 22.8967 15.9647C23.1337 14.8631 23.5257 13.9709 24.0726 13.2883C24.6195 12.6056 25.3396 12.1168 26.2329 11.822C27.1262 11.5117 28.2292 11.3566 29.5418 11.3566C30.6904 11.3566 31.6657 11.4807 32.4679 11.729C33.27 11.9772 33.9172 12.3341 34.4095 12.7995C34.9199 13.2495 35.2845 13.8003 35.5033 14.452C35.7403 15.088 35.8588 15.8096 35.8588 16.6164V17.6636H30.9365Z\" fill=\"#575757\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M65.7551 14.4156L70.2133 18.3531L74.6715 14.4156H82.4172L74.0803 21.1656L82.4172 27.9155H74.6715L70.2133 23.968L65.7551 27.9155H57.9976L66.3346 21.1656L57.9976 14.4156H65.7551ZM65.3253 21.1656L56.2578 13.8242H66.0515L70.2133 17.4999L74.3751 13.8242H83.8192V13.8142H99.8252C103.485 13.7824 106.583 16.3871 106.533 19.5125C106.532 20.6367 106.175 21.6729 105.46 22.5952C104.922 23.2933 104.24 23.8677 103.423 24.3045L106.836 28.0339V25.6153C106.836 23.7203 108.5 22.5122 110.414 21.711C112.347 20.9022 114.786 20.3968 116.817 19.988L116.82 19.9874L116.843 19.9824C118.095 19.7204 119.161 19.4973 119.92 19.2567C120.304 19.1348 120.556 19.0244 120.7 18.9306C120.718 18.9187 120.733 18.9081 120.746 18.899C120.702 18.8647 120.612 18.8133 120.435 18.7542C120.022 18.6166 119.317 18.5129 118.249 18.5127C117.108 18.5227 116.138 18.6017 115.476 18.7993C115.15 18.8967 114.953 19.0077 114.842 19.1119C114.748 19.2013 114.692 19.3075 114.697 19.4739L114.714 20.0795H107.084V19.4881C107.084 18.274 107.364 17.2589 107.924 16.4271C108.487 15.5916 109.307 14.9816 110.307 14.5441C112.269 13.6856 114.972 13.4727 117.986 13.4727C121.072 13.4727 123.634 13.7757 125.448 14.556C126.366 14.9514 127.112 15.4776 127.625 16.1619C128.139 16.8481 128.391 17.6557 128.391 18.5741C128.391 20.2736 127.186 21.3561 125.709 22.0616C124.275 22.7466 122.47 23.1356 120.971 23.4469H128.131V28.4869H107.25L107.259 28.4969H98.8952L95.9032 25.2023H91.4082V28.4969H84.1442L84.1572 28.507H74.3746L70.2133 24.8224L66.052 28.507H56.2578L65.3253 21.1656ZM83.8192 28.2331V14.098L75.0895 21.1656L83.8192 28.2331ZM96.2462 24.6109L99.2382 27.9054H105.836L102.371 24.1186C102.588 24.0331 102.795 23.9384 102.994 23.835C103.752 23.4399 104.382 22.915 104.878 22.2704C105.517 21.4468 105.836 20.5227 105.836 19.5082C105.884 16.7158 103.105 14.3755 99.8292 14.4056H84.5152V27.9054H90.7112V24.6109H96.2462ZM117.324 24.0383C117.541 23.8125 117.934 23.6205 118.456 23.4469C119.071 23.2419 119.863 23.0625 120.753 22.8832C123.804 22.2504 127.695 21.3865 127.695 18.5741C127.695 15.2795 124.1 14.0641 117.986 14.0641C112.237 14.0641 108.16 14.8612 107.806 18.8967C107.789 19.0866 107.78 19.2836 107.78 19.4881H114.001C114 19.4658 114 19.4439 114.001 19.4223C114.035 18.2224 115.981 17.9409 118.246 17.9212C120.457 17.9212 121.474 18.343 121.474 18.9156C121.474 19.6224 119.512 20.0332 117.048 20.5488L116.981 20.5629C112.889 21.3865 107.532 22.5316 107.532 25.6153V27.8954H127.434V24.0383H117.324ZM120.785 18.9444C120.785 18.9444 120.781 18.9407 120.779 18.932C120.785 18.9398 120.785 18.9444 120.785 18.9444ZM98.9322 19.5082C98.9322 19.1921 98.6402 18.9446 98.2682 18.9446H91.4082V20.0618H98.2682C98.4682 20.0618 98.6082 20.0102 98.7332 19.9036C98.8762 19.7823 98.9322 19.6609 98.9322 19.5082ZM99.6282 19.5082C99.6282 18.8653 99.0252 18.3531 98.2682 18.3531H90.7112V20.6533H98.2682C98.6462 20.6533 98.9662 20.5428 99.2262 20.3218C99.4982 20.0908 99.6282 19.8196 99.6282 19.5082Z\" fill=\"#575757\"/>\\n<path d=\"M58.5708 37.6548H61.5387V34.1963L64.5121 37.6548H65.996L68.9695 34.1963V37.6548H71.9374V31.1719H68.2276L65.2541 34.4133L62.2863 31.1719H58.5708V37.6548Z\" fill=\"#575757\"/>\\n<path d=\"M78.1899 31.0117C75.3243 31.0166 72.9795 31.7207 72.9908 34.176V34.6487C72.9795 37.099 75.3243 37.8081 78.1899 37.8129C81.0499 37.8081 83.3949 37.099 83.3839 34.6487V34.176C83.3839 31.7256 81.0559 31.0117 78.1899 31.0117ZM80.4159 34.4895C80.4329 35.5507 79.4019 35.7436 78.1899 35.7581C76.9725 35.7436 75.9416 35.5507 75.9586 34.4895V34.3304C75.9416 33.2739 76.9725 33.081 78.1899 33.0665C79.4019 33.081 80.4329 33.2739 80.4159 34.3304V34.4895Z\" fill=\"#575757\"/>\\n<path d=\"M91.6979 34.4214C91.6979 35.0726 91.2619 35.608 90.4919 35.608H87.2409V33.2348H90.4919C91.2619 33.2348 91.6979 33.7653 91.6979 34.4214ZM84.2729 31.18V37.6628H91.0469C93.1369 37.687 94.6889 36.182 94.6719 34.4214C94.6889 32.6511 93.1369 31.1558 91.0469 31.18H84.2729Z\" fill=\"#575757\"/>\\n<path d=\"M102.935 34.4954C102.952 35.5613 101.922 35.7446 100.709 35.7591C99.4918 35.7446 98.4668 35.5613 98.4778 34.4954V31.1719H95.5098V34.6545C95.4988 37.1049 97.8548 37.8091 100.709 37.8139C103.564 37.8091 105.92 37.1049 105.909 34.6545V31.1719H102.935V34.4954Z\" fill=\"#575757\"/>\\n<path d=\"M107.245 31.1719V37.6548H116.155V35.6H110.213V31.1719H107.245Z\" fill=\"#575757\"/>\\n<path d=\"M117.168 37.6625H126.078V35.9984H120.136V35.1687H126.078V33.6686H120.136V32.8389H126.078V31.1797H117.168V37.6625Z\" fill=\"#575757\"/>\\n<path d=\"M60.2797 6.4727V5.10649H64.6786C64.8917 5.10649 65.0772 5.1721 65.2284 5.30929C65.3865 5.44061 65.4621 5.60164 65.4621 5.79253C65.4621 5.97755 65.3865 6.13857 65.2284 6.27585C65.0772 6.40708 64.8917 6.4727 64.6786 6.4727H60.2797ZM56.6782 2.76189V10.7801H60.2797V8.82325H65.579C67.4829 8.84717 69.0981 7.44512 69.0706 5.79253C69.0981 4.13406 67.4829 2.74393 65.579 2.76189H56.6782Z\" fill=\"#575757\"/>\\n<path d=\"M76.2393 2.55469C72.7615 2.56064 69.916 3.43171 69.9297 6.46839V7.05307C69.916 10.0838 72.7615 10.9607 76.2393 10.9667C79.71 10.9607 82.556 10.0838 82.542 7.05307V6.46839C82.542 3.43767 79.717 2.55469 76.2393 2.55469ZM78.94 6.85613C78.961 8.16864 77.71 8.40728 76.2393 8.42524C74.7616 8.40728 73.5107 8.16864 73.5313 6.85613V6.65928C73.5107 5.35273 74.7616 5.11409 76.2393 5.09622C77.71 5.11409 78.961 5.35273 78.94 6.65928V6.85613Z\" fill=\"#575757\"/>\\n<path d=\"M96.5842 7.83874L94.4462 2.76172H90.3912L88.2472 7.83874L86.1092 2.76172H82.0542L86.1092 10.7799H90.3912L92.4192 6.77083L94.4462 10.7799H98.7282L102.784 2.76172H98.7282L96.5842 7.83874Z\" fill=\"#575757\"/>\\n<path d=\"M103.059 10.7799H113.87V8.72172H106.66V7.69551H113.87V5.8401H106.66V4.81397H113.87V2.76172H103.059V10.7799Z\" fill=\"#575757\"/>\\n<path d=\"M115.788 2.75408V10.7724H119.389V8.81552H122.606L124.345 10.7724H128.18L126.166 8.52318C126.771 8.27859 127.259 7.90871 127.623 7.42548C127.995 6.93629 128.18 6.38744 128.18 5.7848C128.208 4.12625 126.592 2.7362 124.689 2.75408H115.788ZM123.781 5.09876C124.221 5.09876 124.572 5.40301 124.572 5.7848C124.572 5.96974 124.496 6.13084 124.338 6.26803C124.187 6.39935 124.001 6.46497 123.781 6.46497H119.389V5.09876H123.781Z\" fill=\"#575757\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iv6vwu\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-o92mt4\",\"data-framer-name\":\"logoipsum-232 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:104,name:\"logoipsum-232 1\",svg:'<svg width=\"104\" height=\"44\" viewBox=\"0 0 104 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.43112 9.45749C7.79582 8.09129 8.07162 6.52041 8.65682 5.19922C9.27252 3.80899 10.3446 2.42257 11.947 1.69141C12.0265 3.15644 11.4976 4.60387 10.9197 5.90906C10.4 7.08301 9.76232 8.33371 8.70932 9.30459C8.54752 10.0402 8.42352 10.7739 8.33632 11.5041C8.68532 10.7326 9.25122 10.0295 9.95732 9.46409C10.8664 8.73606 12.2187 8.1743 13.4881 8.5065C13.1163 9.69382 12.2688 10.832 11.2651 11.6304C10.4751 12.2589 9.43222 13.0641 8.20382 13.0958C8.15322 14.1704 8.18182 15.2352 8.28632 16.2855C8.45962 15.5169 8.83092 14.7931 9.36742 14.2541C10.1044 13.5134 11.1972 12.6086 12.5928 12.7599C12.5166 13.9617 11.9501 15.1929 11.1612 16.1181C10.5343 16.8533 9.70672 17.7903 8.53202 18.0324C8.72012 19.0645 8.98212 20.0794 9.31452 21.0726C9.31772 20.3121 9.51622 19.5657 9.91002 18.9671C10.465 18.1229 11.3294 17.0701 12.7266 16.9878C12.9314 18.1667 12.6539 19.4555 12.0941 20.4805C11.6467 21.2998 11.0502 22.3447 9.96292 22.777C10.4195 23.8455 10.9598 24.8841 11.5793 25.8867C11.3618 25.0226 11.3705 24.112 11.6279 23.2928C11.9826 22.1633 12.8631 20.9769 14.2767 20.6326C14.7764 21.8795 14.7075 23.2711 14.4172 24.5385C14.1783 25.582 13.7089 26.8075 12.6567 27.4854C13.3446 28.4247 14.1056 29.3262 14.9355 30.1839C14.4896 29.3427 14.268 28.4227 14.3869 27.5803C14.5601 26.3532 14.9676 25.0405 16.4489 24.3863C17.2893 25.6132 17.484 26.9896 17.5554 28.3491C17.6131 29.4482 17.426 30.8038 16.5239 31.698C17.5162 32.5709 18.5869 33.388 19.7305 34.1414C18.9922 33.34 18.4752 32.3996 18.3657 31.4696C18.2111 30.1556 18.2867 28.7091 19.6648 27.7448C20.8434 28.7864 21.5467 30.3204 21.8914 31.6528C22.1962 32.8308 22.5144 34.2251 21.7887 35.3844C23.2441 36.1883 24.7978 36.8965 26.4405 37.4962C25.2846 36.7993 24.3384 35.843 23.8876 34.8557C23.2969 33.5615 22.9315 32.0194 24.0822 30.7233C25.6239 31.5589 26.757 32.9845 27.6497 34.2847C28.4157 35.4003 29.2086 36.9401 28.8152 38.2689C29.7247 38.53 30.6577 38.7593 31.613 38.9549L31.5562 39.1533C30.5973 38.957 29.6607 38.7269 28.7475 38.465C28.1077 40.0648 26.0118 40.5933 24.3168 40.8267C21.9017 41.1592 19.026 40.515 16.9642 39.2173C18.0524 37.916 20.2727 37.784 21.9469 37.6844L21.9687 37.6832C23.8028 37.5741 25.7865 37.7198 27.6309 38.1253C25.5002 37.439 23.5065 36.576 21.6681 35.5616L21.641 35.5978C20.6336 36.98 18.611 37.0339 17.0234 36.9465C14.8691 36.8279 12.3819 35.7195 10.9424 34.1874C12.2964 33.1821 14.2963 33.4635 15.8459 33.6814L15.8534 33.6825C17.5829 33.9257 19.4728 34.4564 21.0592 35.2736C20.9081 35.1729 20.7602 35.0663 20.6165 34.9546C19.0741 34.0241 17.6513 32.9833 16.3602 31.8484C16.3452 31.8611 16.33 31.8737 16.3147 31.8862C15.0593 32.9548 13.2309 32.675 11.804 32.3273C9.89452 31.8619 7.91422 30.4578 6.96522 28.846C8.43582 28.1488 10.194 28.7233 11.5616 29.1778C13.0626 29.6766 14.6507 30.4745 15.8718 31.4917C15.7459 31.3573 15.6258 31.2169 15.5123 31.0716C14.3773 29.9877 13.3563 28.8271 12.4587 27.6026L12.4137 27.6264C10.9935 28.4019 9.38442 27.8404 8.10912 27.2881C6.38002 26.5393 4.99052 24.8937 4.39012 23.2754C5.92402 22.8596 7.43952 23.6756 8.61762 24.3218C9.90612 25.0285 11.2113 26.0364 12.1072 27.1924C12.0414 27.0785 11.9801 26.962 11.9236 26.8434C11.0628 25.5727 10.3315 24.2386 9.73952 22.8547L9.70902 22.8635L9.70652 22.8643C8.41522 23.2797 6.97722 22.6339 6.03972 21.9257C4.73672 20.9414 3.81832 19.4282 3.60302 17.9499C4.94932 17.8023 6.21772 18.6837 7.08492 19.4354C8.08312 20.3006 8.97902 21.3232 9.52982 22.459C9.48962 22.3356 9.45512 22.2103 9.42612 22.0837C8.92492 20.7833 8.54522 19.4421 8.29492 18.071L8.27542 18.073L8.26882 18.074C6.90362 18.2668 5.64142 17.3886 4.88732 16.5362C3.82932 15.3402 3.28392 13.6849 3.42062 12.1846C4.78052 12.265 5.81602 13.3597 6.48752 14.2452C7.26472 15.2703 7.90922 16.4305 8.19152 17.6442C8.18292 17.5477 8.17782 17.4505 8.17602 17.3531C7.96872 15.9576 7.89482 14.5336 7.96242 13.0919L7.95852 13.0917C6.57052 13.0494 5.54472 11.959 5.01512 10.9917C4.25732 9.6076 4.13532 7.85801 4.64112 6.3835C5.96402 6.69768 6.70152 7.98171 7.13682 8.97011C7.63872 10.1097 7.98902 11.3526 7.99182 12.5883C8.06402 11.5516 8.20942 10.5067 8.43112 9.45749Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M35.7684 6.90234V11.8522C35.7684 14.0292 33.4382 15.0767 29.9065 15.0767C26.6054 15.0767 24.2388 14.0396 24.2388 11.5955V6.90234H27.5278V11.5955C27.5278 12.4683 28.4137 13.0126 30.04 13.0126C31.5935 13.0126 32.5159 12.4478 32.5159 11.6057V6.90234H35.7684Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M46.722 12.8175V14.9637H37.6318V6.90234H40.9208V12.8175H46.722Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M56.4969 8.92541V6.90234H45.125V8.92541H49.1422V14.9637H52.4676V8.92541H56.4969Z\" fill=\"#8E8E8E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M68.1628 7.72396C68.5998 8.10388 68.8068 8.62765 68.8068 9.3567C68.8068 9.98319 68.6248 10.5172 68.3208 10.8766C67.9808 11.2668 67.4588 11.5955 66.8158 11.6776L69.6928 14.9637H66.0758L63.7088 12.1191H60.76V14.9637H57.5195V6.90234H65.1048C66.6098 6.90234 67.5928 7.21043 68.1628 7.72396ZM65.5418 10.0346C65.6268 9.91127 65.6508 9.74694 65.6508 9.61351C65.6508 9.45942 65.6268 9.2951 65.5418 9.19246C65.3718 8.92541 65.0318 8.85357 64.5218 8.85357H60.7721V10.3221H64.5828C65.1048 10.3221 65.4208 10.2399 65.5418 10.0346Z\" fill=\"#8E8E8E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M74.071 13.4748H79.217L80.054 14.9637H83.562L78.756 6.90234H74.836L69.751 14.9637H73.185L74.071 13.4748ZM78.185 11.6673H75.139L76.341 9.72647L76.705 8.98701L77.045 9.71614L78.185 11.6673Z\" fill=\"#8E8E8E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M67.816 16.4805C65.78 16.4805 64.709 17.297 64.709 18.4969C64.709 19.8511 65.833 20.5381 67.816 20.5381C69.999 20.5381 70.917 19.7415 70.917 18.4969C70.917 17.2323 69.881 16.4805 67.816 16.4805ZM67.816 19.5375C66.657 19.5375 66.321 19.1342 66.321 18.5118C66.321 17.8995 66.686 17.4962 67.81 17.4962C69.04 17.4962 69.316 17.9492 69.316 18.5118C69.316 19.1093 68.981 19.5375 67.816 19.5375Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M61.6913 20.4779V18.1629H58.6199V19.0043H60.2615C60.2498 19.069 60.1909 19.1935 60.1144 19.2681C59.9438 19.4374 59.4907 19.5868 58.9023 19.5868C58.2904 19.5868 57.8962 19.4523 57.6844 19.2432C57.5432 19.0889 57.4608 18.8698 57.4608 18.5413C57.4608 18.1977 57.5432 17.9638 57.702 17.8094C57.9315 17.5904 58.3198 17.4958 58.8906 17.4958C59.4025 17.4958 59.7555 17.5953 59.9203 17.7197C60.0262 17.7944 60.1085 17.899 60.1262 17.9687H61.6501C61.6443 17.8442 61.5972 17.6451 61.5148 17.5007C61.15 16.8734 60.3027 16.5 58.8612 16.5C57.6079 16.5 56.7665 16.8236 56.3017 17.3115C55.9957 17.6451 55.8545 18.0633 55.8545 18.5313C55.8545 19.0491 56.0192 19.4922 56.2899 19.786C56.7488 20.2888 57.5667 20.5377 58.5493 20.5377C59.4143 20.5377 60.0085 20.3635 60.3851 20.0996L60.4263 20.4779H61.6913Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M45.6629 18.1148C46.8573 18.2243 47.3692 18.5829 47.3692 19.2649C47.3692 20.0914 46.416 20.5394 44.539 20.5394C42.7915 20.5394 42.0384 20.1212 41.75 19.5736C41.6853 19.4441 41.6559 19.2848 41.6382 19.1852H43.3328C43.3446 19.245 43.3858 19.3346 43.4446 19.3943C43.5858 19.5387 43.98 19.6234 44.6508 19.6234C45.5158 19.6234 45.7217 19.5188 45.7217 19.3247C45.7217 19.1155 45.5099 19.0707 44.7273 19.001C44.4155 18.9761 43.9212 18.9363 43.7153 18.9214C42.2208 18.8068 41.6677 18.4135 41.6677 17.7414C41.6677 17.0444 42.6444 16.5117 44.4272 16.5117C46.01 16.5117 46.7455 16.91 47.0515 17.4079C47.1456 17.5572 47.2044 17.7265 47.2221 17.8459H45.5275C45.5216 17.7912 45.4981 17.7364 45.4334 17.6667C45.3039 17.5224 44.9744 17.4278 44.386 17.4278C43.5564 17.4278 43.3387 17.5124 43.3387 17.6916C43.3387 17.8908 43.6153 17.9356 44.539 18.0202C44.8979 18.0451 45.4687 18.0949 45.6629 18.1148Z\" fill=\"#8E8E8E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28.7704 16.9039C29.0822 17.113 29.2587 17.4665 29.2587 17.9792C29.2587 18.3975 29.1352 18.7111 28.8998 18.9302C28.5821 19.2388 28.0584 19.3783 27.3759 19.3833C27.164 19.3883 25.3518 19.3833 25.3518 19.3833V20.4785H23.769V16.5703H27.3523C27.9878 16.5703 28.4703 16.6798 28.7704 16.9039ZM27.5995 18.2829C27.6465 18.2133 27.6701 18.1236 27.6701 17.9991C27.6701 17.8698 27.6406 17.7602 27.5877 17.7004C27.4877 17.576 27.2994 17.5162 26.9934 17.5162H25.34V18.4721H26.9816C27.3111 18.4721 27.5053 18.4074 27.5995 18.2829Z\" fill=\"#8E8E8E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35.0489 16.9686C35.2608 17.1528 35.3608 17.4067 35.3608 17.7602C35.3608 18.0639 35.2725 18.3228 35.1254 18.497C34.9607 18.6862 34.7077 18.8455 34.3958 18.8854L35.7903 20.4785H34.0369L32.8895 19.0995H31.4597V20.4785H29.8887V16.5703H33.5662C34.2958 16.5703 34.7724 16.7197 35.0489 16.9686ZM33.778 18.0888C33.8192 18.0291 33.8309 17.9494 33.8309 17.8846C33.8309 17.81 33.8192 17.7303 33.778 17.6806C33.6956 17.5511 33.5309 17.5162 33.2838 17.5162H31.4656V18.2282H33.3132C33.5662 18.2282 33.7192 18.1883 33.778 18.0888Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M41.1614 20.4785V19.5077H37.8488V18.9999H41.0261V18.049H37.8488V17.5461H41.1202V16.5703H36.2954V20.4785H41.1614Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M53.0952 17.5511V16.5703H47.582V17.5511H49.5295V20.4785H51.1417V17.5511H53.0952Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M55.2148 16.5703V20.4785H53.5967V16.5703H55.2148Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M64.0701 16.5703V20.4785H62.4517V16.5703H64.0701Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M77.1598 16.5703V18.97C77.1598 20.0255 76.0298 20.5334 74.3178 20.5334C72.7178 20.5334 71.5698 20.0305 71.5698 18.8455V16.5703H73.1648V18.8455C73.1648 19.2687 73.5938 19.5326 74.3828 19.5326C75.1358 19.5326 75.5828 19.2588 75.5828 18.8505V16.5703H77.1598Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M83.5118 19.2649C83.5118 18.5829 82.9998 18.2243 81.8058 18.1148C81.6108 18.0949 81.0408 18.0451 80.6818 18.0202C79.7578 17.9356 79.4808 17.8908 79.4808 17.6916C79.4808 17.5124 79.6988 17.4278 80.5288 17.4278C81.1168 17.4278 81.4468 17.5224 81.5758 17.6667C81.6408 17.7364 81.6638 17.7912 81.6698 17.8459H83.3648C83.3468 17.7265 83.2878 17.5572 83.1938 17.4079C82.8878 16.91 82.1528 16.5117 80.5698 16.5117C78.7868 16.5117 77.8098 17.0444 77.8098 17.7414C77.8098 18.4135 78.3638 18.8068 79.8578 18.9214L79.9538 18.9286L80.1138 18.9409L80.8698 19.001C81.6528 19.0707 81.8638 19.1155 81.8638 19.3247C81.8638 19.5188 81.6588 19.6234 80.7938 19.6234C80.1228 19.6234 79.7288 19.5387 79.5868 19.3943C79.5288 19.3346 79.4868 19.245 79.4758 19.1852H77.7808C77.7988 19.2848 77.8278 19.4441 77.8928 19.5736C78.1808 20.1212 78.9338 20.5394 80.6818 20.5394C82.5588 20.5394 83.5118 20.0914 83.5118 19.2649Z\" fill=\"#8E8E8E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M42.3663 21.9766C41.0432 21.9766 40.3472 22.5073 40.3472 23.2871C40.3472 24.1672 41.0776 24.6137 42.3663 24.6137C43.7851 24.6137 44.3816 24.096 44.3816 23.2871C44.3816 22.4652 43.7086 21.9766 42.3663 21.9766ZM42.3663 23.9633C41.613 23.9633 41.395 23.7012 41.395 23.2967C41.395 22.8988 41.6321 22.6366 42.3625 22.6366C43.1617 22.6366 43.3415 22.9311 43.3415 23.2967C43.3415 23.685 43.1235 23.9633 42.3663 23.9633Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M35.0084 23.7855C35.0084 23.3422 34.6757 23.1091 33.8994 23.038C33.7732 23.025 33.4023 22.9927 33.169 22.9765C32.5686 22.9214 32.3889 22.8923 32.3889 22.763C32.3889 22.6464 32.5304 22.5914 33.0696 22.5914C33.452 22.5914 33.6661 22.6529 33.7503 22.7467C33.7923 22.7921 33.8076 22.8276 33.8115 22.8632H34.9128C34.9013 22.7856 34.8631 22.6756 34.8019 22.5785C34.603 22.2549 34.125 21.9961 33.0963 21.9961C31.9377 21.9961 31.3029 22.3423 31.3029 22.7953C31.3029 23.2322 31.6623 23.4878 32.6336 23.5622C32.7675 23.5719 33.0887 23.5978 33.2914 23.6139C33.8 23.6592 33.9376 23.6884 33.9376 23.8243C33.9376 23.9505 33.8038 24.0184 33.2417 24.0184C32.8057 24.0184 32.5495 23.9634 32.4577 23.8696C32.4195 23.8307 32.3927 23.7725 32.3851 23.7337H31.2837C31.2952 23.7984 31.3143 23.9019 31.3564 23.9861C31.5438 24.342 32.0333 24.6138 33.169 24.6138C34.3889 24.6138 35.0084 24.3226 35.0084 23.7855Z\" fill=\"#8E8E8E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M27.3731 23.853C27.3731 24.0277 27.3157 24.1993 27.201 24.3125C27.0251 24.4937 26.6962 24.5713 26.2718 24.5713H23.6064V22.0312H26.1991C26.6121 22.0312 26.876 22.1154 27.0213 22.2416C27.1513 22.3516 27.2087 22.4972 27.2087 22.6622C27.2087 22.8273 27.1628 22.9632 27.0634 23.0635C26.983 23.1477 26.8454 23.2123 26.7001 23.2286C26.9142 23.2511 27.1169 23.3418 27.2316 23.4679C27.3272 23.5618 27.3731 23.7042 27.3731 23.853ZM26.0844 22.9632C26.1226 22.9276 26.1456 22.8758 26.1456 22.8144C26.1456 22.7528 26.1226 22.7011 26.0729 22.6655C26.0194 22.6234 25.9199 22.6072 25.7746 22.6072H24.6083V23.0214H25.8014C25.9314 23.0214 26.0309 23.0053 26.0844 22.9632ZM25.9123 23.9954C26.092 23.9954 26.1991 23.976 26.2603 23.9275C26.2985 23.8951 26.3138 23.8466 26.3138 23.7851C26.3138 23.7203 26.2947 23.6719 26.2488 23.633C26.1915 23.591 26.092 23.5715 25.9238 23.5715H24.6083V23.9954H25.9123Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M30.974 23.9404V24.5713H27.8115V22.0312H30.9472V22.6655H28.821V22.9923H30.886V23.6103H28.821V23.9404H30.974Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M38.7296 22.0312V22.6687H37.46V24.5713H36.4123V22.6687H35.1465V22.0312H38.7296Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M47.8809 22.0312V22.6752H45.8427V23.0344H47.7853V23.6719H45.8427V24.5713H44.814V22.0312H47.8809Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M53.0626 22.6687V22.0312H49.4795V22.6687H50.7453V24.5713H51.7931V22.6687H53.0626Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M56.9718 22.0312V24.5713H55.9469V23.6492H54.4096V24.5713H53.3848V22.0312H54.4096V22.9567H55.9469V22.0312H56.9718Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M60.7411 24.5713V23.9404H58.5881V23.6103H60.6531V22.9923H58.5881V22.6655H60.7143V22.0312H57.5786V24.5713H60.7411Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M67.0809 22.0312H68.0709L66.9739 24.5713H65.8499C65.8499 24.5713 65.2489 23.0538 65.2449 23.0117C65.2419 23.0538 64.6369 24.5713 64.6369 24.5713H63.5169L62.3926 22.0312H63.5049C63.5049 22.0312 64.1559 23.6297 64.1559 23.6686C64.1559 23.6297 64.7559 22.0312 64.7559 22.0312H65.8309C65.8309 22.0312 66.4349 23.6297 66.4349 23.6686C66.4349 23.6297 67.0809 22.0312 67.0809 22.0312Z\" fill=\"#8E8E8E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M70.0351 21.9766C68.7121 21.9766 68.0161 22.5073 68.0161 23.2871C68.0161 24.1672 68.7461 24.6137 70.0351 24.6137C71.4541 24.6137 72.0501 24.096 72.0501 23.2871C72.0501 22.4652 71.3771 21.9766 70.0351 21.9766ZM70.0351 23.9633C69.2821 23.9633 69.0641 23.7012 69.0641 23.2967C69.0641 22.8988 69.3011 22.6366 70.0311 22.6366C70.8311 22.6366 71.0101 22.9311 71.0101 23.2967C71.0101 23.685 70.7921 23.9633 70.0351 23.9633Z\" fill=\"#8E8E8E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M75.8369 22.2902C75.9739 22.4099 76.0389 22.5749 76.0389 22.8046C76.0389 23.002 75.9819 23.1703 75.8859 23.2836C75.7789 23.4065 75.6149 23.5101 75.4119 23.5359L76.3179 24.5713H75.1789L74.4329 23.6751H73.5039V24.5713H72.4829V22.0312H74.8729C75.3469 22.0312 75.6569 22.1284 75.8369 22.2902ZM75.0109 23.0182C75.0369 22.9794 75.0449 22.9276 75.0449 22.8855C75.0449 22.837 75.0369 22.7853 75.0109 22.7529C74.9569 22.6687 74.8499 22.6461 74.6889 22.6461H73.5079V23.1088H74.7079C74.8729 23.1088 74.9719 23.0829 75.0109 23.0182Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M79.511 24.5713V23.8951H77.683V22.0312H76.647V24.5713H79.511Z\" fill=\"#8E8E8E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M83.566 23.2544C83.566 23.6492 83.52 23.8627 83.383 24.0634C83.176 24.3836 82.767 24.5713 82.044 24.5713H79.918V22.0312H82.021C82.74 22.0312 83.165 22.2028 83.375 22.4972C83.524 22.6946 83.566 22.9049 83.566 23.2544ZM81.849 23.9469C82.174 23.9469 82.358 23.8821 82.469 23.7398C82.538 23.6524 82.557 23.4486 82.557 23.2706C82.553 23.1088 82.53 22.9373 82.469 22.8596C82.35 22.7076 82.171 22.6526 81.857 22.6526H80.943V23.9469H81.849Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M42.5448 36.9258H40.9602C40.9602 36.9258 39.9262 39.4833 39.9262 39.5454C39.9262 39.4833 38.9595 36.9258 38.9595 36.9258H37.2402C37.2402 36.9258 36.2796 39.4833 36.2796 39.5454C36.2796 39.4833 35.2395 36.9258 35.2395 36.9258H33.459L35.2578 40.9898H37.0505C37.0505 40.9898 38.0172 38.5617 38.0233 38.4945C38.0295 38.5617 38.99 40.9898 38.99 40.9898H40.7888L42.5448 36.9258Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M44.7134 40.9898V36.9258H43.0308V40.9898H44.7134Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M51.258 36.9258V40.9898H49.6182L47.2382 38.7274V40.9898H45.6597V36.9258H47.385L49.6916 39.1364V36.9258H51.258Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M57.8122 40.9898V36.9258H56.2459V39.1364L53.9393 36.9258H52.2139V40.9898H53.7924V38.7274L56.1725 40.9898H57.8122Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M63.829 39.9802V40.9898H58.7686V36.9258H63.786V37.9405H60.3839V38.4634H63.688V39.4522H60.3839V39.9802H63.829Z\" fill=\"#8E8E8E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M70.296 38.1631C70.296 37.7955 70.192 37.5315 69.972 37.34C69.684 37.0811 69.189 36.9258 68.43 36.9258H64.606V40.9898H66.24V39.5557H67.727L68.92 40.9898H70.743L69.293 39.3332C69.617 39.2917 69.88 39.126 70.052 38.9293C70.204 38.7481 70.296 38.4789 70.296 38.1631ZM68.705 38.2926C68.705 38.3598 68.693 38.4427 68.65 38.5048C68.589 38.6084 68.43 38.6497 68.167 38.6497H66.246V37.9094H68.136C68.393 37.9094 68.565 37.9457 68.65 38.0803C68.693 38.1321 68.705 38.2149 68.705 38.2926Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M37.6595 29.7554L36.996 28.0273L36.3324 29.7554H34.1851L35.9223 30.8233L35.2588 32.5513L36.996 31.4834L38.7331 32.5513L38.0696 30.8233L39.8068 29.7554H37.6595Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M44.6563 28.0273L45.3334 29.7554H47.5245L45.7519 30.8234L46.429 32.5513L44.6563 31.4834L42.8837 32.5513L43.5608 30.8234L41.7881 29.7554H43.9792L44.6563 28.0273Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M52.933 29.7554L52.256 28.0273L51.5789 29.7554H49.3877L51.1604 30.8234L50.4833 32.5513L52.256 31.4834L54.0286 32.5513L53.3515 30.8234L55.1242 29.7554H52.933Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M59.8555 28.0273L60.5326 29.7554H62.7237L60.9511 30.8234L61.6282 32.5513L59.8555 31.4834L58.0829 32.5513L58.76 30.8234L56.9873 29.7554H59.1785L59.8555 28.0273Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M68.1801 29.7554L67.5161 28.0273L66.8521 29.7554H64.7051L66.4421 30.8234L65.7791 32.5513L67.5161 31.4834L69.2531 32.5513L68.5901 30.8234L70.3271 29.7554H68.1801Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M96.038 9.49672C96.673 8.13061 96.397 6.55955 95.812 5.23837C95.196 3.84822 94.124 2.46163 92.522 1.73047C92.442 3.19558 92.971 4.64293 93.549 5.94812C94.069 7.12199 94.706 8.37261 95.759 9.3434C95.921 10.0789 96.045 10.8123 96.132 11.5424C95.783 10.7713 95.218 10.0685 94.512 9.50324C93.603 8.77512 92.25 8.21345 90.981 8.54565C91.353 9.73288 92.2 10.8711 93.204 11.6696C93.994 12.298 95.037 13.1032 96.265 13.1349C96.316 14.2096 96.287 15.2745 96.182 16.3249C96.009 15.5563 95.638 14.8325 95.101 14.2935C94.364 13.5528 93.271 12.648 91.876 12.7993C91.952 14.0011 92.519 15.2323 93.308 16.1575C93.934 16.8927 94.762 17.8298 95.937 18.0719C95.749 19.1038 95.487 20.1186 95.154 21.1116C95.151 20.3513 94.953 19.6049 94.559 19.0062C94.004 18.1621 93.139 17.1092 91.742 17.0269C91.537 18.2058 91.815 19.4946 92.375 20.5197C92.822 21.339 93.419 22.3838 94.506 22.8161C94.049 23.8848 93.509 24.9237 92.889 25.9263C93.107 25.0621 93.098 24.1513 92.841 23.3318C92.486 22.2024 91.606 21.0159 90.192 20.6717C89.692 21.9188 89.761 23.3102 90.052 24.5776C90.291 25.6211 90.76 26.8467 91.812 27.5245C91.124 28.4644 90.363 29.3663 89.532 30.2244C89.979 29.3829 90.2 28.4623 90.081 27.6196C89.908 26.3924 89.501 25.0797 88.02 24.4257C87.179 25.6526 86.984 27.029 86.913 28.3885C86.855 29.4877 87.042 30.8434 87.945 31.7376C86.952 32.6103 85.882 33.4271 84.739 34.1804C85.477 33.379 85.994 32.4387 86.103 31.5087C86.258 30.1947 86.183 28.7483 84.804 27.784C83.626 28.8256 82.922 30.3596 82.578 31.6919C82.273 32.8699 81.955 34.2642 82.68 35.4236C81.225 36.2276 79.671 36.9359 78.028 37.5358C79.184 36.8387 80.13 35.8823 80.581 34.8949C81.172 33.6008 81.537 32.0586 80.387 30.7624C78.845 31.598 77.712 33.0235 76.819 34.3238C76.053 35.4395 75.26 36.9795 75.654 38.3082C74.744 38.5693 73.811 38.7986 72.856 38.9942L72.913 39.1927C73.871 38.9963 74.808 38.7662 75.721 38.5043C76.361 40.1041 78.457 40.6327 80.152 40.866C82.567 41.1985 85.443 40.5544 87.505 39.2566C86.416 37.9553 84.196 37.8233 82.522 37.7237L82.5 37.7225C80.666 37.6134 78.682 37.7591 76.838 38.1647C78.968 37.4784 80.962 36.6153 82.801 35.6007L82.826 35.6346C83.833 37.0191 85.857 37.0732 87.445 36.9857C89.6 36.8671 92.087 35.7587 93.526 34.2266C92.172 33.2215 90.173 33.5027 88.623 33.7206L88.615 33.7218C86.886 33.965 84.997 34.4954 83.411 35.3123C83.562 35.2117 83.709 35.1053 83.853 34.9937C85.395 34.0634 86.817 33.0227 88.108 31.888C88.126 31.9031 88.144 31.918 88.162 31.9328C89.418 32.9931 91.241 32.7134 92.665 32.3664C94.575 31.901 96.555 30.497 97.504 28.8852C96.033 28.1879 94.275 28.7624 92.908 29.2169C91.405 29.7162 89.816 30.515 88.594 31.5335C88.72 31.399 88.841 31.2584 88.955 31.1128C90.09 30.0283 91.112 28.867 92.01 27.6417L92.049 27.6621L92.059 27.6675C93.478 28.4402 95.086 27.8791 96.36 27.3272C98.089 26.5785 99.479 24.9329 100.079 23.3145C98.545 22.8988 97.03 23.7147 95.852 24.3609C94.562 25.0681 93.256 26.0767 92.36 27.2335C92.426 27.1193 92.488 27.0025 92.545 26.8837C93.406 25.6125 94.137 24.2781 94.729 22.8939L94.76 22.9027L94.765 22.9044C96.056 23.3179 97.493 22.6725 98.43 21.9648C99.732 20.9806 100.651 19.4674 100.866 17.9891C99.52 17.8415 98.251 18.7228 97.384 19.4745C96.386 20.3403 95.489 21.3635 94.938 22.5002C94.979 22.3762 95.014 22.2502 95.043 22.1229C95.544 20.8225 95.924 19.4814 96.174 18.1105L96.212 18.1147C97.572 18.301 98.83 17.4254 99.582 16.5754C100.64 15.3794 101.185 13.724 101.048 12.2236C99.689 12.3042 98.653 13.3988 97.982 14.2843C97.204 15.31 96.559 16.4708 96.277 17.6853C96.286 17.5882 96.291 17.4905 96.293 17.3925C96.5 15.997 96.574 14.5728 96.506 13.1311C97.895 13.0899 98.924 11.9987 99.454 11.0311C100.211 9.647 100.333 7.89732 99.828 6.4229C98.505 6.73708 97.767 8.02095 97.332 9.00934C96.83 10.1489 96.48 11.392 96.477 12.6277C96.405 11.591 96.259 10.546 96.038 9.49672Z\" fill=\"#8E8E8E\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x95vq5\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12z7pd5\",\"data-framer-name\":\"logoipsum-263 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:42,intrinsicWidth:170,name:\"logoipsum-263 1\",svg:'<svg width=\"170\" height=\"42\" viewBox=\"0 0 170 42\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1783_9889)\">\\n<path d=\"M51.6597 29.3514H63.6117V25.7514H55.9077V12.1914H51.6597V29.3514Z\" fill=\"#5E5A5A\"/>\\n<path d=\"M70.6931 26.9545C68.9891 26.9545 68.1011 25.4665 68.1011 23.2345C68.1011 21.0025 68.9891 19.4905 70.6931 19.4905C72.3971 19.4905 73.3091 21.0025 73.3091 23.2345C73.3091 25.4665 72.3971 26.9545 70.6931 26.9545ZM70.7171 29.7385C74.6771 29.7385 77.2691 26.9305 77.2691 23.2345C77.2691 19.5385 74.6771 16.7305 70.7171 16.7305C66.7811 16.7305 64.1411 19.5385 64.1411 23.2345C64.1411 26.9305 66.7811 29.7385 70.7171 29.7385Z\" fill=\"#5E5A5A\"/>\\n<path d=\"M84.1234 33.603C85.9474 33.603 87.5554 33.195 88.6354 32.235C89.6194 31.347 90.2674 30.003 90.2674 28.155V17.067H86.5234V18.387H86.4754C85.7554 17.355 84.6514 16.707 83.0194 16.707C79.9714 16.707 77.8594 19.251 77.8594 22.851C77.8594 26.619 80.4274 28.683 83.1874 28.683C84.6754 28.683 85.6114 28.083 86.3314 27.267H86.4274V28.491C86.4274 29.979 85.7314 30.843 84.0754 30.843C82.7794 30.843 82.1314 30.291 81.9154 29.643H78.1234C78.5074 32.211 80.7394 33.603 84.1234 33.603ZM84.0994 25.779C82.6354 25.779 81.6754 24.579 81.6754 22.731C81.6754 20.859 82.6354 19.659 84.0994 19.659C85.7314 19.659 86.5954 21.051 86.5954 22.707C86.5954 24.435 85.8034 25.779 84.0994 25.779Z\" fill=\"#5E5A5A\"/>\\n<path d=\"M97.9656 26.9545C96.2616 26.9545 95.3736 25.4665 95.3736 23.2345C95.3736 21.0025 96.2616 19.4905 97.9656 19.4905C99.6696 19.4905 100.582 21.0025 100.582 23.2345C100.582 25.4665 99.6696 26.9545 97.9656 26.9545ZM97.9896 29.7385C101.95 29.7385 104.542 26.9305 104.542 23.2345C104.542 19.5385 101.95 16.7305 97.9896 16.7305C94.0536 16.7305 91.4136 19.5385 91.4136 23.2345C91.4136 26.9305 94.0536 29.7385 97.9896 29.7385Z\" fill=\"#5E5A5A\"/>\\n<path d=\"M105.684 29.3514H109.596V17.0634H105.684V29.3514ZM105.684 15.3594H109.596V12.1914H105.684V15.3594Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M111.294 33.411H115.206V28.083H115.254C116.022 29.115 117.15 29.739 118.734 29.739C121.95 29.739 124.086 27.195 124.086 23.211C124.086 19.515 122.094 16.707 118.83 16.707C117.15 16.707 115.95 17.451 115.11 18.555H115.038V17.067H111.294V33.411ZM117.726 26.715C116.046 26.715 115.086 25.347 115.086 23.355C115.086 21.363 115.95 19.851 117.654 19.851C119.334 19.851 120.126 21.243 120.126 23.355C120.126 25.443 119.214 26.715 117.726 26.715Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M130.455 29.739C133.671 29.739 136.047 28.347 136.047 25.659C136.047 22.515 133.503 21.963 131.343 21.603C129.783 21.315 128.391 21.195 128.391 20.331C128.391 19.563 129.135 19.203 130.095 19.203C131.175 19.203 131.919 19.539 132.063 20.643H135.663C135.471 18.219 133.599 16.707 130.119 16.707C127.215 16.707 124.815 18.051 124.815 20.643C124.815 23.523 127.095 24.099 129.231 24.459C130.863 24.747 132.351 24.867 132.351 25.971C132.351 26.763 131.607 27.195 130.431 27.195C129.135 27.195 128.319 26.595 128.175 25.371H124.479C124.599 28.083 126.855 29.739 130.455 29.739Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M141.361 29.7144C143.065 29.7144 144.145 29.0424 145.033 27.8424H145.105V29.3544H148.849V17.0664H144.937V23.9304C144.937 25.3944 144.121 26.4024 142.777 26.4024C141.529 26.4024 140.929 25.6584 140.929 24.3144V17.0664H137.041V25.1304C137.041 27.8664 138.529 29.7144 141.361 29.7144Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M150.55 29.355H154.462V22.467C154.462 21.003 155.182 19.971 156.406 19.971C157.582 19.971 158.134 20.739 158.134 22.059V29.355H162.046V22.467C162.046 21.003 162.742 19.971 163.99 19.971C165.166 19.971 165.718 20.739 165.718 22.059V29.355H169.63V21.363C169.63 18.603 168.238 16.707 165.454 16.707C163.87 16.707 162.55 17.379 161.59 18.867H161.542C160.918 17.547 159.694 16.707 158.086 16.707C156.31 16.707 155.134 17.547 154.366 18.819H154.294V17.067H150.55V29.355Z\" fill=\"#8E8E8E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.4841 0.960938C32.7459 0.960938 41.8754 10.0904 41.8754 21.3522C41.8754 32.6141 32.7459 41.7436 21.4841 41.7436C10.2223 41.7436 1.09277 32.6141 1.09277 21.3522C1.09277 10.0904 10.2223 0.960938 21.4841 0.960938ZM41.0927 21.3522C41.0927 10.5227 32.3136 1.74356 21.4841 1.74356C20.6105 1.74356 19.7504 1.80068 18.907 1.91139C19.4519 1.86375 20.0033 1.83943 20.5605 1.83943C30.9087 1.83943 39.2976 10.2283 39.2976 20.5765C39.2976 30.9246 30.9087 39.3135 20.5605 39.3135C10.7636 39.3135 2.72277 31.7946 1.89394 22.2125C2.34419 32.6429 10.9427 40.9609 21.4841 40.9609C32.3136 40.9609 41.0927 32.1818 41.0927 21.3522ZM38.5149 20.5765C38.5149 10.6605 30.4765 2.62206 20.5605 2.62206C19.7554 2.62206 18.9626 2.67506 18.1855 2.77775C18.664 2.73749 19.1481 2.71695 19.637 2.71695C29.0716 2.71695 36.7198 10.3652 36.7198 19.7997C36.7198 29.2343 29.0716 36.8825 19.637 36.8825C10.7164 36.8825 3.3928 30.0448 2.62143 21.3246C3.01362 30.8936 10.8952 38.5309 20.5605 38.5309C30.4765 38.5309 38.5149 30.4924 38.5149 20.5765ZM19.637 3.49958C28.6393 3.49958 35.9372 10.7974 35.9372 19.7997C35.9372 28.802 28.6393 36.0998 19.637 36.0998C10.8433 36.0998 3.67595 29.1362 3.3486 20.4225C4.05535 28.2875 10.6646 34.4514 18.7136 34.4514C27.2339 34.4514 34.1411 27.5443 34.1411 19.0239C34.1411 10.5035 27.2339 3.59642 18.7136 3.59642C18.2728 3.59642 17.8363 3.61491 17.4049 3.65114C18.1347 3.55121 18.8798 3.49958 19.637 3.49958ZM33.3584 19.0239C33.3584 10.9358 26.8017 4.37905 18.7136 4.37905C18.0302 4.37905 17.3577 4.42585 16.6993 4.51643C17.0588 4.48829 17.4222 4.47396 17.789 4.47396C25.3958 4.47396 31.5623 10.6404 31.5623 18.2472C31.5623 25.8539 25.3958 32.0204 17.789 32.0204C10.6294 32.0204 4.74569 26.5575 4.07878 19.5726C4.36731 27.4065 10.8091 33.6688 18.7136 33.6688C26.8017 33.6688 33.3584 27.1121 33.3584 19.0239ZM17.789 5.25658C24.9635 5.25658 30.7796 11.0727 30.7796 18.2472C30.7796 25.4217 24.9635 31.2378 17.789 31.2378C10.7559 31.2378 5.02813 25.6486 4.80519 18.6696C5.40732 24.7998 10.5771 29.5894 16.8655 29.5894C23.5587 29.5894 28.9845 24.1635 28.9845 17.4704C28.9845 10.7773 23.5587 5.35147 16.8655 5.35147C16.5586 5.35147 16.2543 5.36288 15.9531 5.3853C16.5529 5.30046 17.1658 5.25658 17.789 5.25658ZM28.2019 17.4704C28.2019 11.2095 23.1264 6.1341 16.8655 6.1341C16.294 6.1341 15.7324 6.17639 15.1836 6.25801C15.4341 6.24007 15.687 6.23094 15.9421 6.23094C21.721 6.23094 26.4058 10.9157 26.4058 16.6946C26.4058 22.4736 21.721 27.1583 15.9421 27.1583C10.5269 27.1583 6.0725 23.0448 5.53317 17.772C5.69306 23.8935 10.7055 28.8068 16.8655 28.8068C23.1264 28.8068 28.2019 23.7313 28.2019 17.4704ZM15.9421 7.01357C21.2888 7.01357 25.6231 11.3479 25.6231 16.6946C25.6231 22.0414 21.2888 26.3757 15.9421 26.3757C10.6634 26.3757 6.37149 22.151 6.2631 16.8983C6.75073 21.3022 10.4847 24.7273 15.0186 24.7273C19.8839 24.7273 23.828 20.7832 23.828 15.9179C23.828 11.0526 19.8839 7.10846 15.0186 7.10846C14.8325 7.10846 14.6478 7.11423 14.4646 7.1256C14.9463 7.05183 15.4397 7.01357 15.9421 7.01357ZM23.0454 15.9179C23.0454 11.4848 19.4517 7.89109 15.0186 7.89109C14.5734 7.89109 14.1367 7.92733 13.7112 7.99702C13.838 7.99034 13.9656 7.98696 14.0941 7.98696C18.0457 7.98696 21.2492 11.1904 21.2492 15.1421C21.2492 19.0938 18.0457 22.2973 14.0941 22.2973C10.4402 22.2973 7.42593 19.5583 6.99245 16.0215C7.04795 20.4069 10.6201 23.9447 15.0186 23.9447C19.4517 23.9447 23.0454 20.351 23.0454 15.9179ZM14.0941 8.76958C17.6135 8.76958 20.4666 11.6226 20.4666 15.1421C20.4666 18.6616 17.6135 21.5146 14.0941 21.5146C10.5746 21.5146 7.72156 18.6616 7.72156 15.1421C7.72156 15.1337 7.72158 15.1252 7.72161 15.1168C8.08803 17.7988 10.388 19.8653 13.1706 19.8653C16.2081 19.8653 18.6705 17.4029 18.6705 14.3654C18.6705 11.3278 16.2081 8.86547 13.1706 8.86547C13.1019 8.86547 13.0335 8.86672 12.9654 8.86922C13.3317 8.80375 13.7089 8.76958 14.0941 8.76958ZM17.8878 14.3654C17.8878 11.7601 15.7759 9.64809 13.1706 9.64809C10.5653 9.64809 8.45333 11.7601 8.45333 14.3654C8.45333 16.9706 10.5653 19.0826 13.1706 19.0826C15.7759 19.0826 17.8878 16.9706 17.8878 14.3654Z\" fill=\"#8E8E8E\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1783_9889\">\\n<rect width=\"169\" height=\"42\" fill=\"white\" transform=\"translate(0.799805)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wy9lr0\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1pwmgja\",\"data-framer-name\":\"logoipsum-243 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:46,intrinsicWidth:161,name:\"logoipsum-243 1\",svg:'<svg width=\"161\" height=\"46\" viewBox=\"0 0 161 46\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M26.8048 3.72499C25.311 2.23186 22.8897 2.23235 21.3966 3.7261L8.93524 16.1926L8.92462 16.1895L8.88524 16.1937C8.90146 16.2015 8.91738 16.2092 8.93298 16.217C6.747 16.446 5.81952 17.1029 5.80902 17.9465C5.81272 18.2603 5.94147 18.5992 6.17796 18.951L6.16659 18.9624C8.15387 21.9597 17.9988 25.9136 24.9638 23.2347C19.7438 25.8447 7.45044 26.362 3.83969 21.2944C3.05555 22.1427 2.72747 23.2575 2.85102 24.3288C3.80488 29.5862 14.4691 31.0205 25.1334 23.4032L27.4411 25.7109C24.5695 28.6611 20.3278 45.7976 26.6305 43.1812C26.78 43.0797 26.9069 42.9889 27.0795 42.8583L27.3604 42.5931C27.3442 42.5971 27.3281 42.6009 27.3121 42.6047L44.1921 26.669C45.7594 25.1893 45.7949 22.7074 44.2704 21.1835L26.8048 3.72499ZM24.9666 8.91828L25.5435 6.61059L26.1204 8.91828L27.8512 9.49521L26.1204 10.0722L25.5435 12.3799L24.9666 10.0722L23.2358 9.49521L24.9666 8.91828ZM17.8257 16.4517L18.2103 14.9132L18.5949 16.4517L19.7488 16.8363L18.5949 17.2209L18.2103 18.7594L17.8257 17.2209L16.6719 16.8363L17.8257 16.4517ZM31.2213 29.4286L30.8367 30.967L29.6829 31.3517L30.8367 31.7363L31.2213 33.2747L31.6059 31.7363L32.7598 31.3517L31.6059 30.967L31.2213 29.4286Z\" fill=\"#CDC8C8\"/>\\n<path d=\"M55.0982 12.2773H51.5161V28.4405H61.4325V25.2734H55.0982V12.2773Z\" fill=\"#827D7D\"/>\\n<path d=\"M61.7744 22.9577C61.7744 26.4088 64.0897 28.7022 67.5844 28.7022C71.0574 28.7022 73.3726 26.4088 73.3726 22.9577C73.3726 19.5066 71.0574 17.1914 67.5844 17.1914C64.0897 17.1914 61.7744 19.5066 61.7744 22.9577ZM65.16 22.9359C65.16 21.2977 66.121 20.2056 67.5844 20.2056C69.026 20.2056 69.9871 21.2977 69.9871 22.9359C69.9871 24.5959 69.026 25.688 67.5844 25.688C66.121 25.688 65.16 24.5959 65.16 22.9359Z\" fill=\"#827D7D\"/>\\n<path d=\"M73.9137 22.7798C73.9137 26.0779 76.0543 28.3058 79.0903 28.3058C80.5538 28.3058 81.8206 27.7816 82.454 26.9298V28.4369C82.454 29.944 81.5148 30.9488 79.8548 30.9488C78.3695 30.9488 77.343 30.2498 77.2774 29.0048H73.8701C74.1758 31.9972 76.4911 34.0067 79.6582 34.0067C83.3933 34.0067 85.7522 31.5822 85.7522 27.7379V17.5158H82.7161L82.5414 18.6297C81.9298 17.7342 80.6411 17.1445 79.1559 17.1445C76.098 17.1445 73.9137 19.4379 73.9137 22.7798ZM77.3211 22.6924C77.3211 21.1198 78.3696 20.0713 79.7019 20.0713C81.2527 20.0713 82.3885 21.0979 82.3885 22.6924C82.3885 24.2869 81.2746 25.379 79.7238 25.379C78.3914 25.379 77.3211 24.2869 77.3211 22.6924Z\" fill=\"#827D7D\"/>\\n<path d=\"M86.7329 22.9577C86.7329 26.4088 89.0481 28.7022 92.5429 28.7022C96.0158 28.7022 98.3311 26.4088 98.3311 22.9577C98.3311 19.5066 96.0158 17.1914 92.5429 17.1914C89.0481 17.1914 86.7329 19.5066 86.7329 22.9577ZM90.1184 22.9359C90.1184 21.2977 91.0795 20.2056 92.5429 20.2056C93.9845 20.2056 94.9455 21.2977 94.9455 22.9359C94.9455 24.5959 93.9845 25.688 92.5429 25.688C91.0795 25.688 90.1184 24.5959 90.1184 22.9359Z\" fill=\"#827D7D\"/>\\n<path d=\"M101.231 15.8146C102.279 15.8146 103.131 14.9628 103.131 13.8925C103.131 12.8222 102.279 11.9922 101.231 11.9922C100.161 11.9922 99.3091 12.8222 99.3091 13.8925C99.3091 14.9628 100.161 15.8146 101.231 15.8146ZM99.5275 28.4394H102.913V17.5183H99.5275V28.4394Z\" fill=\"#ADADAD\"/>\\n<path d=\"M104.883 33.6807H108.203V27.3465C108.837 28.1765 110.278 28.7444 111.786 28.7444C115.04 28.7444 117.006 26.2544 116.918 22.8033C116.831 19.2867 114.8 17.168 111.764 17.168C110.213 17.168 108.75 17.8451 108.138 18.8499L107.963 17.5175H104.883V33.6807ZM108.269 22.978C108.269 21.3399 109.361 20.2478 110.934 20.2478C112.528 20.2478 113.533 21.3617 113.533 22.978C113.533 24.5944 112.528 25.7083 110.934 25.7083C109.361 25.7083 108.269 24.6162 108.269 22.978Z\" fill=\"#ADADAD\"/>\\n<path d=\"M117.277 24.9875C117.364 27.1936 119.112 28.7225 121.864 28.7225C124.507 28.7225 126.342 27.3246 126.342 25.0749C126.342 23.4586 125.38 22.3883 123.589 21.9515L121.645 21.4709C120.946 21.2962 120.51 21.1215 120.51 20.5536C120.51 19.9857 120.968 19.6143 121.645 19.6143C122.41 19.6143 122.912 20.1167 122.89 20.8594H125.927C125.839 18.5878 124.114 17.168 121.711 17.168C119.286 17.168 117.474 18.6096 117.474 20.7938C117.474 22.2573 118.282 23.4586 120.444 24.0265L122.366 24.5288C122.934 24.6817 123.174 24.9438 123.174 25.3152C123.174 25.8612 122.672 26.2107 121.82 26.2107C120.837 26.2107 120.313 25.752 120.313 24.9875H117.277Z\" fill=\"#ADADAD\"/>\\n<path d=\"M131.49 28.7245C132.823 28.7245 134.155 28.113 134.832 27.2174L135.051 28.4406H138.218V17.5195H134.854V23.1985C134.854 24.8366 134.373 25.7322 132.823 25.7322C131.621 25.7322 130.835 25.1861 130.835 23.1548V17.5195H127.471V24.3779C127.471 26.9772 128.913 28.7245 131.49 28.7245Z\" fill=\"#ADADAD\"/>\\n<path d=\"M143.552 28.4369V22.474C143.552 20.6392 144.535 20.115 145.496 20.115C146.566 20.115 147.265 20.7703 147.265 22.1245V28.4369H150.585V22.474C150.585 20.6174 151.546 20.0932 152.507 20.0932C153.577 20.0932 154.298 20.7484 154.298 22.1245V28.4369H157.575V21.2945C157.575 18.8045 156.264 17.1445 153.446 17.1445C151.874 17.1445 150.585 17.909 150.017 19.0884C149.362 17.909 148.226 17.1445 146.413 17.1445C145.212 17.1445 144.098 17.6905 143.443 18.5642L143.312 17.5158H140.166V28.4369H143.552Z\" fill=\"#ADADAD\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M45.4919 5.25C41.8832 5.25 38.4609 6.85291 36.1506 9.62521L27.9316 19.4881L32.6776 12.369L24.7996 15.7453C23.7991 16.1741 23.5481 17.4776 24.3177 18.2473L26.8529 20.7824L25.5585 22.3357L28.4062 25.1833L29.9594 23.8889L32.4946 26.4241C33.2642 27.1937 34.5678 26.9427 34.9965 25.9423L38.3728 18.0643L31.2538 22.8103L41.1167 14.5912C43.889 12.281 45.4919 8.85872 45.4919 5.25ZM37.661 13.0811C38.4473 13.8674 39.7222 13.8674 40.5086 13.0811C41.2949 12.2947 41.2949 11.0198 40.5086 10.2335C39.7222 9.44713 38.4473 9.44713 37.661 10.2335C36.8746 11.0198 36.8746 12.2947 37.661 13.0811Z\" fill=\"#6F6A6A\"/>\\n<path opacity=\"0.6\" d=\"M3.74805 21.1602C5.63351 27.62 17.0967 27.2832 24.9615 23.2341C19.6951 25.8657 7.23707 26.3683 3.74805 21.1602Z\" fill=\"#676767\"/>\\n<path opacity=\"0.6\" d=\"M26.6303 43.1792C21.3195 45.3838 23.4955 33.5634 26.0299 28.0234C24.1825 32.9476 22.6055 43.8027 27.3602 42.5911L27.0793 42.8563C26.9067 42.9869 26.7798 43.0777 26.6303 43.1792Z\" fill=\"#676767\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d0nt5a\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-mxl2ao\",\"data-framer-name\":\"logoipsum-321 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:39,intrinsicWidth:175,name:\"logoipsum-321 1\",svg:'<svg width=\"175\" height=\"39\" viewBox=\"0 0 175 39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1783_9914)\">\\n<path d=\"M50.8031 20.282C50.8377 19.6158 50.8377 18.9482 50.8031 18.282H12.8541C12.8461 18.448 12.8391 18.615 12.8351 18.782H4.8851L4.8811 19.032H0.600098V19.532H4.8801L4.8861 19.782H12.8351C12.8391 19.95 12.8451 20.116 12.8551 20.282H23.7501C23.7087 19.9503 23.688 19.6163 23.6881 19.282H39.6881C39.6881 19.621 39.6681 19.955 39.6261 20.282H50.8031ZM50.7241 17.282H39.4371C39.3493 16.9417 39.2391 16.6077 39.1071 16.282H24.2721C24.1411 16.606 24.0301 16.939 23.9421 17.282H12.9321C12.9501 17.115 12.9701 16.948 12.9921 16.782H5.0421L5.0761 16.538H0.600098V16.038H5.1551L5.2011 15.782H13.1511C13.1811 15.615 13.2151 15.448 13.2511 15.282H50.4071C50.5471 15.937 50.6541 16.604 50.7241 17.282ZM50.1641 14.282H37.9341C37.6457 13.922 37.3268 13.5874 36.9811 13.282H26.3971C26.0521 13.588 25.7321 13.922 25.4441 14.282H13.4941C13.5391 14.115 13.5871 13.948 13.6371 13.782H5.6871L5.7751 13.501H0.600098V13H5.9421L6.0201 12.781H13.9701C14.0301 12.613 14.0941 12.447 14.1601 12.281H49.4971C49.7551 12.931 49.9781 13.6 50.1641 14.282ZM49.0671 11.282H14.5901C14.6681 11.114 14.7481 10.948 14.8311 10.782H6.8821L7.0231 10.506H0.600098V10.006H7.2941L7.4211 9.782H15.3711C15.4681 9.614 15.5681 9.447 15.6701 9.282H47.9871C48.3851 9.924 48.7471 10.592 49.0671 11.282ZM12.9321 21.282H50.7251C50.6541 21.96 50.5471 22.628 50.4071 23.282H38.6191C38.8041 22.962 38.9681 22.628 39.1081 22.282H24.2701C24.4101 22.628 24.5731 22.962 24.7581 23.282H13.2501C13.2145 23.1158 13.1812 22.9491 13.1501 22.782H5.2011C5.18481 22.6941 5.16914 22.6061 5.1541 22.518H0.600098V22.018H5.0751C5.06362 21.9394 5.05262 21.8607 5.0421 21.782H12.9921C12.9699 21.6156 12.9499 21.4489 12.9321 21.282ZM13.4931 24.282H50.1631C49.9781 24.965 49.7551 25.632 49.4971 26.282H35.5651C36.0718 26.0007 36.5466 25.6655 36.9811 25.282H26.3971C26.8316 25.6655 27.3064 26.0007 27.8131 26.282H14.1601C14.0945 26.1162 14.0311 25.9495 13.9701 25.782H6.0201L5.9341 25.541H0.600098V25.041H5.7681C5.74082 24.9549 5.71415 24.8685 5.6881 24.782H13.6371C13.5871 24.616 13.5391 24.45 13.4931 24.282ZM14.5901 27.282H49.0671C48.7474 27.9697 48.3867 28.6375 47.9871 29.282H15.6701C15.5675 29.1169 15.4675 28.9502 15.3701 28.782H7.4211C7.3711 28.696 7.3221 28.61 7.2741 28.523H0.600098V28.023H7.0051L6.8821 27.783H14.8321C14.749 27.6175 14.6683 27.4508 14.5901 27.283V27.282ZM17.5201 31.782C17.6671 31.952 17.8181 32.118 17.9721 32.282H45.6851C46.2753 31.6531 46.8222 30.9849 47.3221 30.282H16.3351C16.4551 30.451 16.5771 30.618 16.7031 30.782H8.7531L8.9511 31.037H0.600098V31.537H9.3601C9.4291 31.62 9.4991 31.701 9.5701 31.782H17.5201ZM20.8371 34.782C21.0801 34.955 21.3271 35.122 21.5771 35.282H42.0801C43.0005 34.6909 43.8684 34.0218 44.6741 33.282H18.9841C19.1691 33.452 19.3581 33.619 19.5501 33.782H11.6001C11.7081 33.874 11.8171 33.964 11.9271 34.052H0.600098V34.552H12.5721C12.6761 34.63 12.7821 34.707 12.8881 34.782H20.8381H20.8371ZM27.8541 37.866C29.1361 38.139 30.4651 38.282 31.8281 38.282C34.8821 38.282 37.7671 37.562 40.3231 36.282H23.3331C23.6891 36.46 24.0501 36.627 24.4171 36.782H16.4671C16.6091 36.842 16.7521 36.901 16.8951 36.958H0.600098V37.458H18.3251C20.0821 37.994 21.9471 38.282 23.8791 38.282C25.2421 38.282 26.5721 38.139 27.8541 37.866ZM16.3351 8.282H47.3221C46.8222 7.57912 46.2753 6.91092 45.6851 6.282H17.9721C17.8181 6.446 17.6671 6.612 17.5191 6.782H9.5701L9.3941 6.988H0.600098V7.488H8.9821C8.9051 7.585 8.8291 7.683 8.7541 7.782H16.7031C16.5771 7.947 16.4551 8.114 16.3351 8.282ZM18.9831 5.282H44.6731C43.8677 4.54225 43.0002 3.87312 42.0801 3.282H21.5771C21.3271 3.443 21.0801 3.61 20.8371 3.782H12.8881C12.7781 3.861 12.6681 3.94 12.5601 4.021H0.600098V4.521H11.9161C11.8101 4.607 11.7051 4.694 11.6011 4.782H19.5501C19.3581 4.945 19.1691 5.112 18.9831 5.282ZM23.3341 2.282H40.3241C37.687 0.962435 34.7779 0.27755 31.8291 0.282C30.4651 0.282 29.1361 0.426 27.8541 0.699C26.5474 0.421201 25.215 0.281434 23.8791 0.282C21.7451 0.282 19.6941 0.634 17.7791 1.282H0.600098V1.782H24.4171C24.0509 1.93722 23.6897 2.10397 23.3341 2.282ZM111.848 0C112.505 0 113.021 0.164 113.396 0.492C113.787 0.805 113.982 1.242 113.982 1.806C113.982 2.369 113.787 2.814 113.396 3.142C113.021 3.455 112.505 3.612 111.848 3.612C111.192 3.612 110.668 3.455 110.277 3.142C109.902 2.814 109.714 2.369 109.714 1.806C109.714 1.243 109.902 0.806 110.277 0.492C110.668 0.164 111.192 0 111.848 0ZM113.677 5.792V15.993C113.677 16.65 113.787 17.096 114.006 17.33C114.24 17.565 114.631 17.682 115.178 17.682V18.174C114.741 18.1526 114.303 18.137 113.865 18.127C113.264 18.0955 112.661 18.0799 112.059 18.08C111.45 18.08 110.832 18.096 110.207 18.127C109.738 18.1373 109.269 18.153 108.8 18.174V17.682C109.347 17.682 109.73 17.565 109.949 17.33C110.183 17.096 110.301 16.65 110.301 15.993V8.606C110.301 7.903 110.191 7.386 109.972 7.059C109.769 6.715 109.378 6.543 108.8 6.543V6.05C109.3 6.097 109.785 6.12 110.254 6.12C110.91 6.12 111.52 6.097 112.083 6.05C112.661 5.988 113.193 5.902 113.677 5.792Z\" fill=\"#8E8E8E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M120.277 7.94501V5.79301C119.793 5.90301 119.261 5.98901 118.683 6.05101C118.104 6.09801 117.494 6.12101 116.853 6.12101C116.384 6.12101 115.9 6.09801 115.399 6.05101V6.54401C115.962 6.54401 116.353 6.71601 116.572 7.06001C116.791 7.38801 116.9 7.90401 116.9 8.60701V20.333C116.9 20.958 116.791 21.38 116.572 21.599C116.369 21.818 116.009 21.927 115.493 21.927V22.42L116.736 22.35C117.306 22.3341 117.877 22.3261 118.448 22.326C119.245 22.326 119.996 22.334 120.699 22.349C121.418 22.381 121.981 22.404 122.388 22.419V21.927C121.731 21.927 121.215 21.802 120.84 21.552C120.465 21.318 120.277 20.833 120.277 20.098V17.748C120.483 17.92 120.725 18.062 121.004 18.175C121.504 18.395 122.059 18.504 122.669 18.504C123.498 18.504 124.24 18.355 124.897 18.058C125.565 17.7643 126.152 17.3139 126.609 16.745C127.093 16.151 127.461 15.424 127.711 14.564C127.977 13.704 128.11 12.704 128.11 11.562C128.11 10.265 127.922 9.18601 127.547 8.32601C127.172 7.45001 126.671 6.80201 126.046 6.38001C125.421 5.94224 124.675 5.71236 123.912 5.72301C123.005 5.72301 122.208 5.95701 121.52 6.42601C120.979 6.79101 120.565 7.29701 120.277 7.94601V7.94501ZM120.277 8.75101V17.252C120.407 17.406 120.564 17.534 120.746 17.636C121.043 17.792 121.379 17.87 121.755 17.87C122.458 17.87 123.013 17.636 123.42 17.167C123.826 16.682 124.115 16.01 124.287 15.15C124.475 14.275 124.569 13.235 124.569 12.031C124.569 10.687 124.483 9.63101 124.311 8.86501C124.139 8.09901 123.904 7.55201 123.607 7.22401C123.31 6.89501 122.951 6.73101 122.528 6.73101C121.966 6.73101 121.45 6.95101 120.981 7.38801C120.628 7.72801 120.393 8.18301 120.277 8.75101Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M133.494 5.72288C134.151 5.72288 134.721 5.80888 135.206 5.98088C135.706 6.13688 136.066 6.29388 136.285 6.44988C136.816 6.80988 137.145 6.57488 137.27 5.74588H137.762C137.731 6.18388 137.707 6.72388 137.692 7.36388C137.676 7.98988 137.668 8.82588 137.668 9.87388H137.176C137.096 9.28754 136.946 8.71283 136.73 8.16188C136.531 7.62719 136.201 7.15122 135.769 6.77788C135.362 6.41788 134.831 6.23788 134.174 6.23788C133.721 6.23788 133.338 6.37188 133.025 6.63788C132.712 6.88788 132.556 7.25488 132.556 7.73988C132.556 8.20888 132.697 8.62288 132.978 8.98288C133.26 9.32688 133.619 9.66288 134.057 9.99088C134.51 10.3039 134.979 10.6399 135.464 10.9989C135.98 11.3899 136.449 11.7809 136.871 12.1719C137.276 12.5255 137.617 12.946 137.879 13.4149C138.13 13.8679 138.255 14.4069 138.255 15.0329C138.255 15.7359 138.051 16.3529 137.645 16.8849C137.238 17.4009 136.699 17.7999 136.027 18.0809C135.37 18.3629 134.635 18.5039 133.823 18.5039C133.397 18.5087 132.971 18.4614 132.556 18.3629C132.231 18.2819 131.916 18.1638 131.618 18.0109C131.415 17.9169 131.219 17.8309 131.032 17.7529C130.873 17.6651 130.708 17.587 130.539 17.5189C130.383 17.4719 130.242 17.5259 130.117 17.6829C130.008 17.8389 129.922 18.0579 129.859 18.3389H129.367C129.398 17.8389 129.422 17.2289 129.437 16.5099C129.453 15.7909 129.461 14.8369 129.461 13.6499H129.953C130.047 14.4939 130.219 15.2439 130.469 15.8999C130.719 16.5419 131.055 17.0499 131.477 17.4249C131.915 17.7849 132.462 17.9649 133.119 17.9649C133.385 17.9649 133.643 17.9099 133.893 17.7999C134.143 17.6899 134.346 17.5099 134.503 17.2599C134.675 17.0099 134.761 16.6899 134.761 16.2999C134.761 15.6109 134.534 15.0399 134.08 14.5869C133.643 14.1339 133.08 13.6409 132.392 13.1099C131.892 12.7029 131.415 12.3049 130.962 11.9139C130.542 11.5295 130.179 11.0875 129.883 10.6009C129.598 10.1014 129.452 9.53418 129.461 8.95888C129.461 8.25588 129.648 7.66188 130.023 7.17688C130.406 6.68683 130.918 6.31318 131.501 6.09788C132.135 5.84615 132.812 5.71883 133.494 5.72288ZM162.605 5.98088C162.198 5.80888 161.667 5.72288 161.01 5.72288C160.275 5.71541 159.549 5.89285 158.9 6.23888C158.259 6.56688 157.751 7.12188 157.375 7.90388V5.79388C156.891 5.90288 156.359 5.98888 155.781 6.05088C155.218 6.09788 154.608 6.12088 153.952 6.12088C153.483 6.12088 152.998 6.09788 152.498 6.05088V6.54388C153.076 6.54388 153.467 6.71588 153.67 7.05988C153.889 7.38788 153.998 7.90388 153.998 8.60688V15.9939C153.998 16.6509 153.881 17.0969 153.647 17.3309C153.428 17.5659 153.045 17.6829 152.498 17.6829V18.1749C152.967 18.1539 153.436 18.1382 153.905 18.1279C154.514 18.097 155.124 18.0814 155.734 18.0809C156.281 18.0809 156.813 18.0969 157.328 18.1279C157.86 18.1439 158.251 18.1599 158.501 18.1749V17.6829C158.095 17.6829 157.805 17.5659 157.633 17.3309C157.461 17.0969 157.375 16.6509 157.375 15.9939V9.47488C157.375 8.95888 157.477 8.49788 157.68 8.09088C157.899 7.66888 158.18 7.34088 158.524 7.10688C158.854 6.8767 159.248 6.75379 159.65 6.75488C160.01 6.75488 160.275 6.84088 160.447 7.01288C160.635 7.16888 160.76 7.39588 160.823 7.69288C160.885 7.97388 160.916 8.30988 160.916 8.70088V15.9939C160.916 16.6509 160.83 17.0969 160.658 17.3309C160.502 17.5659 160.213 17.6829 159.791 17.6829V18.1749C160.072 18.1599 160.486 18.1439 161.034 18.1279C162.143 18.0646 163.255 18.0646 164.364 18.1279C164.942 18.1439 165.372 18.1599 165.653 18.1749V17.6829C165.153 17.6829 164.801 17.5659 164.598 17.3309C164.395 17.0969 164.293 16.6509 164.293 15.9939V9.57888L164.292 9.50588L164.288 9.26888C164.324 8.87689 164.429 8.49434 164.598 8.13888C164.817 7.71588 165.098 7.37988 165.442 7.12988C165.786 6.87988 166.162 6.75488 166.568 6.75488C166.974 6.75488 167.272 6.84088 167.459 7.01288C167.662 7.16888 167.795 7.39588 167.858 7.69288C167.936 7.97388 167.975 8.30988 167.975 8.70088V15.9939C167.975 16.6509 167.889 17.0969 167.717 17.3309C167.561 17.5659 167.272 17.6829 166.849 17.6829V18.1749C167.131 18.1599 167.545 18.1439 168.092 18.1279C168.647 18.0964 169.202 18.0807 169.757 18.0809C170.336 18.0809 170.922 18.0969 171.516 18.1279C172.11 18.1439 172.556 18.1599 172.853 18.1749V17.6829C172.306 17.6829 171.915 17.5659 171.68 17.3309C171.461 17.0969 171.352 16.6509 171.352 15.9939V9.68588C171.352 8.90388 171.297 8.27888 171.188 7.80988C171.078 7.32488 170.899 6.93488 170.648 6.63788C170.398 6.35588 170.07 6.13788 169.663 5.98088C169.257 5.80888 168.725 5.72288 168.069 5.72288C167.272 5.72288 166.521 5.88688 165.818 6.21488C165.144 6.53688 164.598 7.15088 164.179 8.05688C164.165 7.9741 164.148 7.89174 164.129 7.80988C164.02 7.32488 163.84 6.93488 163.59 6.63788C163.34 6.35588 163.011 6.13788 162.605 5.98088ZM150.658 15.6189V5.79288C150.173 5.90288 149.642 5.98888 149.063 6.05088C148.501 6.09788 147.891 6.12088 147.234 6.12088C146.765 6.12088 146.281 6.09788 145.78 6.05088V6.54388C146.359 6.54388 146.75 6.71588 146.953 7.05988C147.172 7.38788 147.281 7.90388 147.281 8.60688V14.7509C147.281 15.2669 147.172 15.7359 146.953 16.1579C146.767 16.5443 146.485 16.8758 146.132 17.1199C145.804 17.3546 145.41 17.478 145.006 17.4719C144.616 17.4719 144.319 17.3929 144.115 17.2369C143.904 17.0525 143.757 16.8066 143.693 16.5339C143.627 16.194 143.595 15.8482 143.599 15.5019V5.79288C143.115 5.90288 142.583 5.98888 142.005 6.05088C141.442 6.09788 140.832 6.12088 140.176 6.12088C139.707 6.12088 139.222 6.09788 138.722 6.05088V6.54388C139.3 6.54388 139.691 6.71588 139.894 7.05988C140.113 7.38788 140.222 7.90388 140.222 8.60688V14.5399C140.222 15.3059 140.277 15.9319 140.387 16.4159C140.496 16.9009 140.684 17.2919 140.949 17.5889C141.184 17.8549 141.504 18.0739 141.911 18.2459C142.317 18.4169 142.849 18.5039 143.506 18.5039C144.319 18.5039 145.053 18.3389 145.71 18.0109C146.382 17.6669 146.906 17.1039 147.281 16.3229V18.4329C147.805 18.3039 148.338 18.2176 148.876 18.1749C149.439 18.1279 150.048 18.1049 150.705 18.1049C151.19 18.1049 151.674 18.1279 152.159 18.1749V17.6829C151.596 17.6829 151.205 17.5189 150.986 17.1899C150.767 16.8459 150.658 16.3229 150.658 15.6199V15.6189Z\" fill=\"#8E8E8E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M105.296 6.35641C104.436 5.93441 103.435 5.72341 102.294 5.72341C101.184 5.72341 100.191 5.93441 99.3161 6.35641C98.4561 6.77841 97.7761 7.45841 97.2761 8.39641C96.7911 9.33441 96.5481 10.5774 96.5481 12.1254C96.5481 13.6734 96.7911 14.9154 97.2751 15.8544C97.7751 16.7764 98.4551 17.4484 99.3151 17.8704C100.191 18.2924 101.184 18.5044 102.294 18.5044C103.435 18.5044 104.436 18.2924 105.296 17.8704C106.155 17.4484 106.828 16.7764 107.312 15.8544C107.797 14.9164 108.039 13.6734 108.039 12.1254C108.039 10.5774 107.797 9.33541 107.312 8.39641C106.828 7.45841 106.155 6.77841 105.296 6.35641ZM100.723 7.59941C101.145 6.66141 101.669 6.19241 102.294 6.19241C102.935 6.19241 103.459 6.66141 103.865 7.59941C104.287 8.52141 104.498 10.0304 104.498 12.1254C104.498 14.2204 104.287 15.7294 103.865 16.6514C103.459 17.5734 102.935 18.0354 102.294 18.0354C101.669 18.0354 101.145 17.5734 100.723 16.6514C100.301 15.7294 100.09 14.2204 100.09 12.1254C100.09 10.0304 100.3 8.52141 100.723 7.59941ZM88.9011 22.5844C87.9311 22.5844 87.0641 22.4984 86.2981 22.3264C85.5481 22.1704 84.9541 21.9204 84.5161 21.5764C84.0941 21.2474 83.8831 20.8414 83.8831 20.3564C83.8831 19.8714 84.1011 19.4344 84.5391 19.0434C84.9771 18.6684 85.6261 18.3714 86.4861 18.1524L86.6961 18.5274C86.4276 18.729 86.2042 18.9845 86.0401 19.2774C85.9151 19.5594 85.8521 19.8484 85.8521 20.1454C85.8521 20.8024 86.1491 21.3024 86.7441 21.6454C87.3541 22.0054 88.1741 22.1854 89.2061 22.1854C89.9091 22.1854 90.5351 22.0914 91.0821 21.9044C91.6451 21.7164 92.0821 21.4344 92.3951 21.0604C92.7241 20.6844 92.8881 20.2234 92.8881 19.6764C92.8881 19.2074 92.7161 18.8084 92.3721 18.4804C92.0281 18.1674 91.3401 18.0114 90.3081 18.0114H88.8541C88.2141 18.0114 87.6501 17.9414 87.1661 17.8004C86.6961 17.6604 86.3291 17.4404 86.0631 17.1434C85.7981 16.8314 85.6651 16.4404 85.6651 15.9714C85.6651 15.3144 85.9231 14.7364 86.4391 14.2354C86.8431 13.8434 87.4011 13.4704 88.1131 13.1174C87.645 13.0592 87.1852 12.9468 86.7431 12.7824C86.0401 12.5164 85.4851 12.1094 85.0791 11.5624C84.6721 11.0154 84.4691 10.3124 84.4691 9.45241C84.4691 8.59241 84.6721 7.88841 85.0791 7.34141C85.4851 6.77841 86.0401 6.37141 86.7441 6.12141C87.4471 5.85641 88.2441 5.72341 89.1351 5.72341C90.0271 5.72341 90.8241 5.85641 91.5271 6.12241C91.9911 6.28641 92.3891 6.51941 92.7241 6.81941C92.9231 6.53241 93.1651 6.27641 93.4501 6.05141C93.9821 5.64541 94.5531 5.44141 95.1621 5.44141C95.6621 5.44141 96.0381 5.58241 96.2881 5.86441C96.5541 6.12941 96.6871 6.48141 96.6871 6.91941C96.6871 7.38841 96.5611 7.73941 96.3111 7.97441C96.0611 8.19441 95.7801 8.30341 95.4671 8.30341C95.1919 8.29976 94.9265 8.20001 94.7171 8.02141C94.4971 7.83341 94.3731 7.55241 94.3421 7.17741C94.3151 6.84141 94.4091 6.42541 94.6241 5.92741C94.1681 6.12141 93.8161 6.34241 93.5681 6.59141C93.3811 6.77167 93.2178 6.97496 93.0821 7.19641C93.1201 7.24341 93.1571 7.29241 93.1921 7.34141C93.5991 7.88841 93.8021 8.59141 93.8021 9.45141C93.8021 10.3114 93.5991 11.0154 93.1921 11.5624C92.7861 12.1094 92.2311 12.5164 91.5271 12.7824C90.8241 13.0474 90.0271 13.1804 89.1351 13.1804C89.0017 13.1805 88.8683 13.1775 88.7351 13.1714C88.5241 13.3144 88.3211 13.4664 88.1271 13.6264C88.0066 13.7207 87.9099 13.8419 87.8448 13.9803C87.7797 14.1187 87.7479 14.2705 87.7521 14.4234C87.7521 14.9234 88.0651 15.1734 88.6901 15.1734H91.2461C92.1061 15.1734 92.8721 15.2754 93.5441 15.4784C94.2321 15.6824 94.7711 16.0184 95.1621 16.4874C95.5691 16.9404 95.7721 17.5344 95.7721 18.2694C95.7721 19.0354 95.5221 19.7464 95.0221 20.4034C94.5371 21.0604 93.7871 21.5834 92.7701 21.9744C91.7541 22.3814 90.4641 22.5844 88.9011 22.5844ZM89.1351 12.7584C89.5581 12.7584 89.8851 12.5244 90.1201 12.0554C90.3551 11.5704 90.4721 10.7024 90.4721 9.45241C90.4721 8.20141 90.3551 7.34141 90.1201 6.87241C89.8861 6.38741 89.5581 6.14541 89.1361 6.14541C88.7291 6.14541 88.4011 6.38741 88.1511 6.87241C87.9161 7.34141 87.7991 8.20141 87.7991 9.45241C87.7991 10.7024 87.9161 11.5704 88.1511 12.0554C88.4011 12.5244 88.7291 12.7584 89.1351 12.7584ZM80.8471 6.35641C79.9871 5.93441 78.9871 5.72341 77.8461 5.72341C76.7361 5.72341 75.7431 5.93441 74.8681 6.35641C74.0081 6.77841 73.3281 7.45841 72.8281 8.39641C72.3431 9.33441 72.1001 10.5774 72.1001 12.1254C72.1001 13.6734 72.3431 14.9154 72.8271 15.8544C73.3271 16.7764 74.0071 17.4484 74.8671 17.8704C75.7431 18.2924 76.7361 18.5044 77.8461 18.5044C78.9871 18.5044 79.9881 18.2924 80.8471 17.8704C81.7071 17.4484 82.3791 16.7764 82.8641 15.8544C83.3491 14.9164 83.5911 13.6734 83.5911 12.1254C83.5911 10.5774 83.3491 9.33541 82.8641 8.39641C82.3801 7.45841 81.7071 6.77841 80.8471 6.35641ZM76.2741 7.59941C76.6971 6.66141 77.2201 6.19241 77.8461 6.19241C78.4861 6.19241 79.0101 6.66141 79.4161 7.59941C79.8391 8.52141 80.0501 10.0304 80.0501 12.1254C80.0501 14.2204 79.8391 15.7294 79.4171 16.6514C79.0101 17.5734 78.4871 18.0354 77.8461 18.0354C77.2201 18.0354 76.6961 17.5734 76.2741 16.6514C75.8521 15.7294 75.6411 14.2204 75.6411 12.1254C75.6411 10.0304 75.8521 8.52141 76.2741 7.59941Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M65.7839 1.57031V2.04031C65.2529 2.05531 64.8459 2.11731 64.5649 2.22731C64.4363 2.27086 64.3201 2.34476 64.2261 2.44277C64.1321 2.54077 64.0631 2.65998 64.0249 2.79031C63.9319 3.05531 63.8849 3.47831 63.8849 4.05631V15.9693C63.8849 16.4533 63.916 16.8133 63.979 17.0483C64.057 17.2823 64.1979 17.4383 64.4009 17.5173C64.6199 17.5953 64.9409 17.6343 65.3619 17.6343H66.512C67.042 17.6343 67.543 17.5093 68.012 17.2593C68.482 17.0093 68.903 16.6573 69.278 16.2033C69.6735 15.6991 69.9901 15.1377 70.2169 14.5383C70.4669 13.8983 70.6539 13.1863 70.7789 12.4043H71.319C71.272 12.9363 71.249 13.6243 71.249 14.4683C71.249 14.8283 71.2559 15.3513 71.2719 16.0393C71.2879 16.7273 71.3339 17.4393 71.4119 18.1733C70.5137 18.1402 69.6148 18.1245 68.7159 18.1263C67.7159 18.1113 66.8239 18.1033 66.042 18.1033H64.542C63.932 18.1033 63.2749 18.1113 62.5719 18.1263C61.8679 18.1263 61.1569 18.1343 60.438 18.1503C59.718 18.1503 59.0379 18.1583 58.3979 18.1733V17.7043C58.8979 17.6733 59.2729 17.6103 59.5229 17.5173C59.7729 17.4233 59.9369 17.2353 60.0159 16.9543C60.1089 16.6723 60.1559 16.2503 60.1559 15.6873V4.05631C60.1559 3.47731 60.1089 3.05631 60.0159 2.79031C59.9852 2.66023 59.9216 2.54019 59.8312 2.44164C59.7409 2.34309 59.6269 2.2693 59.5 2.22731C59.25 2.11731 58.8819 2.05531 58.3979 2.03931V1.57031C59.6324 1.61605 60.8676 1.63939 62.1029 1.64031C62.7909 1.64031 63.4629 1.63331 64.1189 1.61731C64.7919 1.60131 65.3469 1.58631 65.7839 1.57031Z\" fill=\"#8E8E8E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M170.471 37.5537C170.438 37.3857 170.46 37.1667 170.539 36.8967L173.842 24.9297C173.313 25.1466 172.766 25.3156 172.207 25.4347C171.634 25.5477 170.977 25.6087 170.235 25.6207L170.117 25.9747C170.668 25.9747 171.011 26.0647 171.146 26.2447C171.28 26.4247 171.297 26.7047 171.196 27.0867L170.414 30.0357C170.365 29.8934 170.28 29.7661 170.168 29.6657C169.977 29.4857 169.713 29.3957 169.376 29.3957C168.702 29.3957 168.078 29.5477 167.505 29.8507C166.929 30.1656 166.41 30.5761 165.971 31.0647C165.51 31.5598 165.119 32.1156 164.808 32.7167C164.502 33.3016 164.259 33.9174 164.083 34.5537C163.923 35.1018 163.838 35.6689 163.83 36.2397C163.83 36.7787 163.915 37.2227 164.083 37.5707C164.252 37.9077 164.482 38.1607 164.774 38.3287C165.066 38.4867 165.392 38.5647 165.752 38.5647C166.302 38.5647 166.797 38.4027 167.235 38.0767C167.673 37.7397 168.083 37.2227 168.466 36.5257C168.626 36.2417 168.787 35.9227 168.947 35.5687L168.836 35.9867C168.735 36.3159 168.667 36.6547 168.634 36.9977C168.612 37.2897 168.634 37.5377 168.702 37.7397C168.836 38.2897 169.252 38.5657 169.949 38.5657C170.207 38.5657 170.471 38.5147 170.741 38.4137C171.011 38.3127 171.263 38.1387 171.499 37.8907C171.747 37.6437 171.943 37.2907 172.089 36.8287L172.494 35.5987H172.174L171.904 36.3567C171.702 36.9307 171.511 37.3177 171.331 37.5197C171.162 37.7117 170.988 37.8067 170.808 37.8067C170.617 37.8067 170.505 37.7227 170.471 37.5537ZM169.572 33.2137C169.445 33.6247 169.307 34.0157 169.157 34.3847C168.876 35.1047 168.578 35.7227 168.263 36.2397C167.96 36.7447 167.662 37.1377 167.37 37.4197C167.078 37.6887 166.819 37.8237 166.595 37.8237C166.381 37.8237 166.224 37.7227 166.123 37.5207C166.033 37.3067 165.988 36.9867 165.988 36.5597C165.988 35.9527 166.055 35.3347 166.19 34.7057C166.325 34.0657 166.51 33.4527 166.746 32.8687C166.963 32.3206 167.234 31.7954 167.555 31.3007C167.859 30.8287 168.179 30.4577 168.516 30.1877C168.864 29.9177 169.207 29.7837 169.544 29.7837C169.769 29.7837 169.949 29.8627 170.084 30.0197C170.178 30.1217 170.25 30.2697 170.3 30.4657L169.572 33.2137Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M159.255 38.3276H157.182L159.204 31.0636C159.306 30.7266 159.339 30.4906 159.306 30.3556C159.272 30.2206 159.171 30.1536 159.002 30.1536C158.789 30.1536 158.592 30.2606 158.412 30.4736C158.232 30.6866 158.047 31.0636 157.856 31.6036L157.569 32.3946H157.249L157.687 31.1306C157.845 30.6806 158.041 30.3336 158.277 30.0856C158.513 29.8276 158.772 29.6476 159.053 29.5466C159.334 29.4456 159.62 29.3946 159.912 29.3946C160.272 29.3946 160.536 29.4676 160.704 29.6146C160.884 29.7606 160.997 29.9516 161.042 30.1876C161.099 30.4419 161.11 30.7043 161.075 30.9626C161.053 31.2326 161.008 31.4966 160.94 31.7546L160.669 32.8116L160.738 32.6316C161.053 31.8336 161.356 31.1986 161.648 30.7266C161.952 30.2436 162.272 29.9006 162.609 29.6986C162.939 29.4979 163.319 29.3926 163.705 29.3946C164.109 29.3946 164.418 29.5126 164.632 29.7486C164.857 29.9846 164.969 30.2766 164.969 30.6256C164.969 30.9056 164.901 31.1706 164.767 31.4176C164.636 31.6493 164.451 31.8459 164.227 31.9906C164.014 32.1256 163.767 32.1926 163.486 32.1926C163.205 32.1926 162.98 32.1196 162.811 31.9736C162.654 31.8276 162.575 31.6136 162.575 31.3336C162.575 31.0856 162.632 30.8616 162.744 30.6586C162.852 30.4609 163.002 30.2887 163.182 30.1536C163.362 30.0076 163.559 29.9066 163.772 29.8496C163.749 29.8264 163.72 29.8092 163.688 29.7996C163.65 29.7877 163.61 29.7819 163.57 29.7826C163.323 29.7826 163.07 29.8726 162.811 30.0526C162.553 30.2206 162.283 30.4966 162.002 30.8786C161.721 31.2606 161.435 31.7656 161.143 32.3946C160.814 33.1383 160.521 33.8979 160.266 34.6706C160.139 35.0446 160.011 35.4466 159.883 35.8776L159.255 38.3276Z\" fill=\"#8E8E8E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M152.957 35.7247L152.886 35.9867C152.78 36.3673 152.707 36.7564 152.667 37.1497C152.633 37.5097 152.689 37.8127 152.835 38.0597C153.06 38.3967 153.442 38.5657 153.981 38.5657C154.24 38.5657 154.498 38.5147 154.757 38.4137C155.026 38.3127 155.279 38.1387 155.515 37.8907C155.751 37.6327 155.948 37.2727 156.105 36.8127L156.527 35.5827H156.206L155.953 36.3407C155.751 36.9247 155.555 37.3127 155.364 37.5037C155.173 37.6937 154.987 37.7897 154.807 37.7897C154.661 37.7897 154.566 37.7447 154.521 37.6547C154.486 37.5402 154.474 37.4198 154.487 37.3007C154.509 37.1578 154.543 37.017 154.588 36.8797L156.763 29.3957C156.425 29.4766 156.081 29.5331 155.734 29.5647C155.386 29.5987 155.01 29.6207 154.605 29.6317L154.361 30.5337C154.351 30.3047 154.284 30.0817 154.167 29.8847C154.079 29.7311 153.951 29.6043 153.797 29.5182C153.642 29.432 153.467 29.3896 153.29 29.3957C152.796 29.3957 152.302 29.5477 151.807 29.8507C151.281 30.1813 150.81 30.5907 150.408 31.0647C149.955 31.5816 149.559 32.1466 149.228 32.7497C148.897 33.3545 148.631 33.9931 148.436 34.6547C148.252 35.2499 148.156 35.8687 148.15 36.4917C148.15 37.1217 148.296 37.6267 148.588 38.0087C148.88 38.3797 149.329 38.5647 149.936 38.5647C150.363 38.5647 150.773 38.4417 151.167 38.1947C151.571 37.9467 151.953 37.5367 152.313 36.9647C152.536 36.6197 152.75 36.2067 152.957 35.7247ZM151.504 37.4357C151.245 37.6717 151.015 37.7897 150.813 37.7897C150.644 37.7897 150.515 37.7057 150.425 37.5367C150.346 37.3567 150.307 37.0597 150.307 36.6437C150.307 36.0477 150.374 35.4357 150.509 34.8067C150.644 34.1767 150.824 33.5707 151.049 32.9867C151.285 32.4017 151.543 31.8797 151.824 31.4187C152.105 30.9587 152.386 30.5927 152.667 30.3227C152.959 30.0527 153.234 29.9187 153.493 29.9187C153.762 29.9187 153.953 30.0537 154.066 30.3227C154.178 30.5667 154.207 30.8937 154.153 31.3027L153.655 33.1447L153.712 32.8517C153.532 33.5707 153.318 34.2337 153.071 34.8407C152.856 35.3833 152.597 35.9074 152.296 36.4077C152.026 36.8457 151.762 37.1887 151.504 37.4357ZM145.884 36.8967C145.805 37.1667 145.783 37.3857 145.817 37.5537C145.85 37.7227 145.963 37.8067 146.154 37.8067C146.334 37.8067 146.508 37.7117 146.676 37.5207C146.856 37.3177 147.047 36.9307 147.249 36.3567L147.519 35.5987H147.839L147.435 36.8287C147.289 37.2897 147.092 37.6437 146.845 37.8907C146.635 38.1204 146.376 38.2992 146.086 38.4137C145.834 38.5118 145.565 38.5633 145.294 38.5657C144.598 38.5657 144.182 38.2897 144.047 37.7397C143.976 37.4992 143.953 37.247 143.98 36.9977C144.002 36.7057 144.069 36.3677 144.182 35.9867L144.293 35.5687C144.132 35.9227 143.971 36.2417 143.811 36.5257C143.429 37.2227 143.019 37.7397 142.581 38.0757C142.154 38.3982 141.632 38.5705 141.097 38.5657C140.738 38.5657 140.412 38.4857 140.12 38.3297C139.819 38.1516 139.578 37.8872 139.429 37.5707C139.26 37.2227 139.176 36.7787 139.176 36.2397C139.176 35.7227 139.26 35.1597 139.429 34.5537C139.597 33.9357 139.839 33.3237 140.153 32.7167C140.464 32.1158 140.855 31.56 141.316 31.0647C141.777 30.5587 142.288 30.1547 142.85 29.8507C143.427 29.5465 144.07 29.3902 144.721 29.3957C145.058 29.3957 145.322 29.4857 145.513 29.6657C145.623 29.7627 145.706 29.8857 145.76 30.0357L146.541 27.0867C146.643 26.7047 146.626 26.4237 146.491 26.2437C146.356 26.0637 146.013 25.9737 145.463 25.9737L145.581 25.6207C146.243 25.6169 146.903 25.5547 147.553 25.4347C148.112 25.3156 148.659 25.1466 149.188 24.9297L145.884 36.8967ZM144.502 34.3847C144.652 34.0147 144.791 33.6247 144.917 33.2137L145.646 30.4657C145.611 30.3016 145.537 30.1486 145.429 30.0197C145.363 29.9422 145.28 29.8807 145.187 29.8399C145.093 29.799 144.992 29.7798 144.89 29.7837C144.553 29.7837 144.21 29.9187 143.862 30.1877C143.524 30.4577 143.204 30.8287 142.901 31.3007C142.58 31.7948 142.309 32.3198 142.092 32.8677C141.853 33.4626 141.667 34.0777 141.536 34.7057C141.403 35.3148 141.335 35.9362 141.333 36.5597C141.333 36.9867 141.378 37.3067 141.468 37.5197C141.569 37.7227 141.727 37.8237 141.94 37.8237C142.165 37.8237 142.423 37.6887 142.715 37.4187C143.008 37.1387 143.305 36.7447 143.609 36.2387C143.96 35.6474 144.258 35.0271 144.502 34.3847Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M129.894 38.3275H131.967L132.162 37.5655L132.152 37.6205C132.366 36.8335 132.607 36.0755 132.877 35.3445C133.139 34.6469 133.432 33.9609 133.753 33.2885C134.057 32.6585 134.36 32.1085 134.664 31.6365C134.967 31.1645 135.259 30.7995 135.54 30.5405C135.821 30.2705 136.079 30.1365 136.315 30.1365C136.506 30.1365 136.624 30.2035 136.669 30.3385C136.716 30.4917 136.722 30.6544 136.686 30.8105C136.652 30.9932 136.607 31.1735 136.551 31.3505L135.018 35.9855C134.86 36.4575 134.77 36.8615 134.748 37.1985C134.725 37.5355 134.787 37.8115 134.933 38.0245C135.046 38.1935 135.203 38.3225 135.405 38.4125C135.619 38.5125 135.872 38.5645 136.164 38.5645C136.433 38.5645 136.703 38.5135 136.973 38.4125C137.254 38.3225 137.512 38.1535 137.748 37.9065C137.995 37.6595 138.198 37.2995 138.355 36.8275L138.776 35.5975H138.456L138.186 36.3555C137.973 36.9405 137.771 37.3275 137.58 37.5185C137.4 37.7105 137.226 37.8055 137.057 37.8055C136.877 37.8055 136.765 37.7325 136.72 37.5855C136.675 37.4295 136.703 37.1985 136.804 36.8955L138.456 31.9395C138.602 31.5015 138.675 31.0915 138.675 30.7095C138.686 30.3165 138.58 30.0015 138.355 29.7655C138.141 29.5185 137.759 29.3955 137.209 29.3955C136.793 29.3955 136.394 29.4855 136.012 29.6645C135.63 29.8445 135.259 30.1585 134.9 30.6085C134.54 31.0465 134.169 31.6425 133.787 32.3945C133.534 32.9018 133.301 33.4192 133.09 33.9455L133.652 31.7545C133.72 31.4845 133.77 31.2145 133.804 30.9455C133.838 30.6655 133.826 30.4115 133.77 30.1865C133.716 29.9542 133.579 29.75 133.383 29.6135C133.192 29.4675 132.911 29.3945 132.54 29.3945C132.09 29.3945 131.68 29.5185 131.309 29.7655C130.939 30.0125 130.635 30.4675 130.399 31.1305L129.961 32.3945H130.281L130.568 31.6025C130.77 31.0525 130.955 30.6755 131.124 30.4735C131.304 30.2605 131.5 30.1535 131.714 30.1535C131.871 30.1535 131.967 30.1985 132.001 30.2885C132.045 30.3785 132.057 30.4905 132.034 30.6255C132.009 30.7734 131.975 30.9196 131.933 31.0635L129.894 38.3275Z\" fill=\"#8E8E8E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M125.598 35.9855L125.669 35.7235C125.489 36.1539 125.274 36.5687 125.025 36.9635C124.665 37.5355 124.283 37.9465 123.878 38.1935C123.485 38.4405 123.075 38.5635 122.648 38.5635C122.041 38.5635 121.592 38.3785 121.3 38.0075C121.007 37.6255 120.861 37.1205 120.861 36.4905C120.861 35.9065 120.957 35.2945 121.148 34.6535C121.343 33.992 121.609 33.3533 121.94 32.7485C122.271 32.1452 122.666 31.5802 123.12 31.0635C123.522 30.5896 123.994 30.1801 124.519 29.8495C125.013 29.5465 125.508 29.3945 126.002 29.3945C126.384 29.3945 126.676 29.5575 126.879 29.8845C126.987 30.0515 127.052 30.2675 127.073 30.5325L127.317 29.6305C127.721 29.6195 128.098 29.5975 128.446 29.5635C128.806 29.5295 129.148 29.4735 129.474 29.3945L127.3 36.8795C127.255 37.0167 127.221 37.1575 127.199 37.3005C127.187 37.4196 127.198 37.5401 127.233 37.6545C127.278 37.7445 127.373 37.7895 127.519 37.7895C127.699 37.7895 127.884 37.6945 128.075 37.5035C128.266 37.3125 128.463 36.9235 128.665 36.3405L128.918 35.5815H129.238L128.817 36.8115C128.66 37.2725 128.463 37.6315 128.227 37.8915C128.017 38.1206 127.758 38.2991 127.469 38.4135C127.222 38.5125 126.959 38.564 126.693 38.5655C126.154 38.5655 125.772 38.3965 125.547 38.0595C125.401 37.8125 125.345 37.5095 125.379 37.1495C125.419 36.7563 125.492 36.3661 125.598 35.9855ZM123.524 37.7885C123.727 37.7885 123.957 37.6705 124.216 37.4345C124.474 37.1875 124.738 36.8445 125.008 36.4065C125.277 35.9685 125.536 35.4465 125.783 34.8395C126.03 34.2325 126.244 33.5695 126.424 32.8495L126.367 33.1435L126.865 31.3025C126.918 30.8925 126.889 30.5655 126.778 30.3225C126.665 30.0525 126.474 29.9175 126.204 29.9175C125.946 29.9175 125.671 30.0525 125.379 30.3215C125.098 30.5915 124.817 30.9565 124.536 31.4175C124.255 31.8775 123.996 32.4005 123.76 32.9845C123.534 33.5764 123.354 34.1849 123.221 34.8045C123.089 35.4083 123.022 36.0244 123.019 36.6425C123.019 37.0585 123.058 37.3565 123.137 37.5355C123.227 37.7045 123.356 37.7885 123.524 37.7885Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M122.03 29.9692L122.081 29.6322H120.073L120.867 26.8682C120.535 26.95 120.197 27.0065 119.856 27.0372C119.508 27.0702 119.131 27.0932 118.727 27.1042L118.002 29.6322H116.468L116.384 29.9692H117.906L116.181 35.9872C116.035 36.4812 115.985 36.9252 116.03 37.3182C116.086 37.7002 116.243 38.0042 116.502 38.2282C116.771 38.4532 117.159 38.5662 117.665 38.5662C118.238 38.5662 118.732 38.4142 119.148 38.1102C119.564 37.8072 119.89 37.3072 120.126 36.6102L120.463 35.5992H120.142L119.89 36.2902C119.687 36.8522 119.463 37.2452 119.215 37.4702C118.979 37.6952 118.743 37.8072 118.507 37.8072C118.414 37.8102 118.322 37.792 118.238 37.7539C118.153 37.7157 118.078 37.6587 118.019 37.5872C117.906 37.4422 117.895 37.2122 117.985 36.8972L119.976 29.9692H122.03ZM116.448 26.2782C116.336 26.5702 116.184 26.9982 115.993 27.5592C115.813 28.1092 115.634 28.8292 115.454 29.7162H115.117C115.15 29.5592 115.173 29.3962 115.184 29.2282C115.206 29.0774 115.217 28.9254 115.218 28.7732C115.218 28.3342 115.128 27.9532 114.948 27.6272C114.775 27.2853 114.498 27.0075 114.156 26.8342C113.808 26.6322 113.358 26.5312 112.808 26.5312C112.212 26.5312 111.706 26.6882 111.291 27.0032C110.875 27.3062 110.667 27.7952 110.667 28.4692C110.667 28.8852 110.762 29.2792 110.953 29.6492C111.156 30.0092 111.409 30.3632 111.712 30.7112C112.027 31.0482 112.358 31.3912 112.706 31.7392C113.055 32.0762 113.381 32.4252 113.684 32.7842C113.987 33.1442 114.235 33.5262 114.426 33.9302C114.628 34.3242 114.729 34.7562 114.729 35.2282C114.729 35.8242 114.583 36.3352 114.291 36.7622C114.006 37.1816 113.632 37.5327 113.195 37.7902C112.737 38.052 112.243 38.2451 111.729 38.3632C111.234 38.4953 110.724 38.5636 110.212 38.5662C109.706 38.5662 109.285 38.5262 108.948 38.4482C108.66 38.3939 108.382 38.2972 108.122 38.1612C107.901 38.0402 107.682 37.9168 107.464 37.7912C107.365 37.7079 107.25 37.6447 107.127 37.6052C107.049 37.5657 106.963 37.5426 106.875 37.5372C106.728 37.5372 106.605 37.6102 106.504 37.7572C106.372 37.9767 106.259 38.2076 106.167 38.4472H105.829C106.107 37.7617 106.339 37.0581 106.521 36.3412C106.655 35.8242 106.807 35.1782 106.976 34.4022H107.313C107.266 34.6254 107.227 34.8502 107.195 35.0762C107.161 35.3012 107.15 35.5262 107.161 35.7512C107.195 36.5372 107.436 37.1442 107.886 37.5712C108.347 37.9982 109.021 38.2112 109.908 38.2112C110.661 38.2112 111.229 38.0542 111.611 37.7402C111.993 37.4142 112.184 36.9422 112.184 36.3242C112.184 35.8522 112.094 35.4242 111.914 35.0432C111.744 34.6468 111.517 34.2776 111.24 33.9472C110.954 33.6052 110.657 33.2737 110.347 32.9532C110.037 32.6326 109.739 32.3007 109.453 31.9582C109.177 31.6178 108.945 31.2442 108.762 30.8462C108.578 30.4206 108.486 29.9608 108.493 29.4972C108.493 28.9362 108.611 28.4472 108.847 28.0312C109.085 27.6254 109.406 27.2749 109.79 27.0032C110.184 26.7221 110.623 26.5111 111.088 26.3792C111.541 26.2362 112.012 26.1624 112.487 26.1602C113.094 26.1602 113.594 26.2332 113.987 26.3802C114.381 26.5252 114.718 26.7002 114.999 26.9022L115.319 27.1042C115.42 27.1492 115.499 27.1712 115.555 27.1712C115.712 27.1712 115.898 26.8742 116.111 26.2782H116.448Z\" fill=\"#8E8E8E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M100.178 37.5537C100.144 37.3857 100.167 37.1667 100.246 36.8967L103.549 24.9297C103.02 25.1466 102.473 25.3156 101.914 25.4347C101.341 25.5477 100.684 25.6087 99.9421 25.6207L99.8241 25.9747C100.374 25.9747 100.718 26.0647 100.852 26.2447C100.987 26.4247 101.004 26.7047 100.903 27.0867L100.121 30.0357C100.072 29.8934 99.9873 29.766 99.8751 29.6657C99.6841 29.4857 99.4201 29.3957 99.0831 29.3957C98.4081 29.3957 97.7851 29.5477 97.2121 29.8507C96.6357 30.1656 96.117 30.5761 95.6781 31.0647C95.217 31.5598 94.8257 32.1156 94.5151 32.7167C94.209 33.3016 93.966 33.9174 93.7901 34.5537C93.6301 35.1017 93.545 35.6688 93.5371 36.2397C93.5371 36.7787 93.6221 37.2227 93.7901 37.5707C93.9591 37.9077 94.1891 38.1607 94.4811 38.3287C94.7731 38.4867 95.0991 38.5647 95.4591 38.5647C96.0091 38.5647 96.5041 38.4027 96.9421 38.0767C97.3801 37.7397 97.7901 37.2227 98.1721 36.5257C98.3321 36.2417 98.4931 35.9227 98.6541 35.5687L98.5441 35.9867C98.4419 36.3158 98.3738 36.6546 98.3411 36.9977C98.3143 37.247 98.337 37.4992 98.4081 37.7397C98.5431 38.2897 98.9581 38.5657 99.6561 38.5657C99.9141 38.5657 100.178 38.5147 100.448 38.4137C100.718 38.3127 100.97 38.1387 101.206 37.8907C101.454 37.6437 101.65 37.2907 101.796 36.8287L102.201 35.5987H101.881L101.611 36.3567C101.409 36.9307 101.218 37.3177 101.038 37.5197C100.869 37.7117 100.695 37.8067 100.515 37.8067C100.325 37.8067 100.212 37.7227 100.178 37.5537ZM99.2781 33.2137C99.1521 33.6247 99.0141 34.0157 98.8631 34.3847C98.5831 35.1047 98.2851 35.7227 97.9701 36.2397C97.6671 36.7447 97.3691 37.1377 97.0771 37.4197C96.7851 37.6887 96.5271 37.8237 96.3011 37.8237C96.0881 37.8237 95.9311 37.7227 95.8301 37.5207C95.7401 37.3067 95.6951 36.9867 95.6951 36.5597C95.6951 35.9527 95.7621 35.3347 95.8971 34.7057C96.0321 34.0657 96.2171 33.4527 96.4531 32.8687C96.6706 32.3205 96.9419 31.7953 97.2631 31.3007C97.5661 30.8287 97.8861 30.4577 98.2231 30.1877C98.5711 29.9177 98.9141 29.7837 99.2511 29.7837C99.4761 29.7837 99.6561 29.8627 99.7911 30.0197C99.8851 30.1217 99.9571 30.2697 100.007 30.4657L99.2781 33.2137Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M86.3279 38.3275H84.2549L86.2949 31.0635C86.3399 30.9065 86.3729 30.7605 86.3949 30.6255C86.4199 30.5125 86.4084 30.3945 86.3619 30.2885C86.3279 30.1985 86.2319 30.1535 86.0749 30.1535C85.8619 30.1535 85.6649 30.2605 85.4849 30.4735C85.3169 30.6755 85.1309 31.0525 84.9289 31.6035L84.6429 32.3945H84.3229L84.7609 31.1305C84.9969 30.4675 85.3009 30.0125 85.6709 29.7655C86.0409 29.5185 86.4509 29.3955 86.9009 29.3955C87.2719 29.3955 87.5529 29.4675 87.7439 29.6135C87.9397 29.7499 88.078 29.9541 88.1319 30.1865C88.1879 30.4115 88.1989 30.6645 88.1659 30.9455C88.1315 31.218 88.0807 31.4882 88.0139 31.7545L87.4519 33.9465C87.6899 33.3575 87.9219 32.8415 88.1489 32.3945C88.5309 31.6425 88.9009 31.0465 89.2609 30.6085C89.6209 30.1585 89.9909 29.8445 90.3729 29.6645C90.7559 29.4845 91.1539 29.3945 91.5699 29.3945C92.1199 29.3945 92.5029 29.5185 92.7159 29.7655C92.9409 30.0015 93.0479 30.3155 93.0359 30.7095C93.0359 31.0915 92.9639 31.5015 92.8169 31.9395L91.1659 36.8955C91.0639 37.1985 91.0359 37.4295 91.0809 37.5855C91.1259 37.7325 91.2389 37.8055 91.4189 37.8055C91.5869 37.8055 91.7609 37.7105 91.9409 37.5195C92.1319 37.3275 92.3339 36.9395 92.5479 36.3555L92.8179 35.5975H93.1379L92.7159 36.8275C92.5589 37.2995 92.3559 37.6595 92.1099 37.9075C91.8981 38.1388 91.6311 38.3125 91.3339 38.4125C91.0756 38.5116 90.8015 38.5631 90.5249 38.5645C90.2329 38.5645 89.9799 38.5135 89.7669 38.4125C89.5639 38.3225 89.4069 38.1925 89.2949 38.0245C89.1489 37.8115 89.0869 37.5355 89.1089 37.1985C89.1319 36.8615 89.2219 36.4575 89.3789 35.9855L90.9129 31.3505C90.9689 31.1705 91.0139 30.9905 91.0479 30.8105C91.0832 30.6544 91.0774 30.4917 91.0309 30.3385C90.9859 30.2035 90.8679 30.1365 90.6769 30.1365C90.4409 30.1365 90.1819 30.2715 89.9019 30.5405C89.6209 30.7995 89.3279 31.1645 89.0249 31.6365C88.6885 32.1684 88.3847 32.72 88.1149 33.2885C87.8119 33.9185 87.5189 34.6025 87.2379 35.3445C86.9679 36.0745 86.7279 36.8335 86.5139 37.6205L86.5239 37.5655L86.3279 38.3275Z\" fill=\"#8E8E8E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M80.0301 35.7241L79.9601 35.9861C79.854 36.3668 79.7804 36.7559 79.7401 37.1491C79.7061 37.5091 79.7621 37.8121 79.9081 38.0591C80.1331 38.3961 80.5151 38.5651 81.0551 38.5651C81.3433 38.563 81.6281 38.5021 81.8919 38.386C82.1556 38.2699 82.3929 38.1012 82.5891 37.8901C82.8251 37.6321 83.0211 37.2721 83.1791 36.8121L83.5991 35.5821H83.2791L83.0271 36.3401C82.8241 36.9241 82.6271 37.3121 82.4371 37.5031C82.2461 37.6931 82.0601 37.7891 81.8811 37.7891C81.7341 37.7891 81.6391 37.7441 81.5941 37.6541C81.559 37.5396 81.5474 37.4191 81.5601 37.3001C81.5831 37.1541 81.6161 37.0141 81.6621 36.8791L83.8361 29.3951C83.498 29.4759 83.1544 29.5324 82.8081 29.5641C82.4591 29.5981 82.0831 29.6201 81.6781 29.6311L81.4341 30.5331C81.4237 30.3041 81.3571 30.0812 81.2401 29.8841C81.1524 29.7306 81.0245 29.604 80.8701 29.5178C80.7158 29.4316 80.5408 29.3892 80.3641 29.3951C79.8691 29.3951 79.3741 29.5471 78.8801 29.8501C78.3861 30.1541 77.9201 30.5581 77.4811 31.0641C77.0271 31.5807 76.6314 32.1458 76.3011 32.7491C75.9697 33.3539 75.7041 33.9925 75.5091 34.6541C75.3253 35.2493 75.2289 35.8681 75.2231 36.4911C75.2231 37.1211 75.3691 37.6261 75.6611 38.0081C75.9531 38.3791 76.4031 38.5641 77.0091 38.5641C77.4361 38.5641 77.8471 38.4411 78.2391 38.1941C78.6441 37.9461 79.0271 37.5361 79.3861 36.9641C79.6091 36.6191 79.8231 36.2061 80.0301 35.7241ZM78.5771 37.4351C78.3191 37.6711 78.0881 37.7891 77.8861 37.7891C77.7171 37.7891 77.5881 37.7051 77.4981 37.5361C77.4201 37.3561 77.3801 37.0591 77.3801 36.6431C77.3801 36.0471 77.4481 35.4351 77.5831 34.8061C77.7171 34.1761 77.8971 33.5701 78.1221 32.9861C78.3581 32.4011 78.6161 31.8791 78.8971 31.4181C79.1781 30.9581 79.4591 30.5921 79.7401 30.3221C80.0321 30.0521 80.3071 29.9181 80.5661 29.9181C80.8361 29.9181 81.0261 30.0531 81.1391 30.3221C81.2511 30.5661 81.2791 30.8931 81.2261 31.3021L80.7281 33.1441L80.7851 32.8511C80.6051 33.5701 80.3921 34.2331 80.1451 34.8401C79.8971 35.4461 79.6391 35.9691 79.3691 36.4071C79.0991 36.8451 78.8351 37.1881 78.5771 37.4351Z\" fill=\"#8E8E8E\"/>\\n<path d=\"M70.7151 38.3276H68.6421L70.6641 31.0636C70.7651 30.7266 70.7991 30.4906 70.7651 30.3556C70.7321 30.2206 70.6311 30.1536 70.4621 30.1536C70.2491 30.1536 70.0521 30.2606 69.8721 30.4736C69.6921 30.6866 69.5071 31.0636 69.3161 31.6036L69.0291 32.3946H68.7091L69.1471 31.1306C69.3051 30.6806 69.5011 30.3336 69.7371 30.0856C69.9731 29.8276 70.2321 29.6476 70.5131 29.5466C70.7931 29.4456 71.0801 29.3946 71.3731 29.3946C71.7321 29.3946 71.9961 29.4676 72.1641 29.6146C72.3428 29.758 72.463 29.9617 72.5021 30.1876C72.5581 30.4236 72.5691 30.6816 72.5351 30.9626C72.5131 31.2326 72.4681 31.4966 72.4001 31.7546L72.1301 32.8116L72.1571 32.7386L72.1981 32.6316C72.5131 31.8336 72.8161 31.1986 73.1081 30.7266C73.4121 30.2436 73.7321 29.9006 74.0691 29.6986C74.3993 29.4979 74.7787 29.3926 75.1651 29.3946C75.5691 29.3946 75.8781 29.5126 76.0921 29.7486C76.3161 29.9846 76.4291 30.2766 76.4291 30.6256C76.4291 30.9056 76.3611 31.1706 76.2261 31.4176C76.0953 31.6493 75.9104 31.8459 75.6871 31.9906C75.4643 32.1279 75.2067 32.198 74.9451 32.1926C74.6651 32.1926 74.4401 32.1196 74.2711 31.9736C74.1141 31.8276 74.0351 31.6136 74.0351 31.3336C74.0351 31.0856 74.0911 30.8616 74.2041 30.6586C74.3161 30.4566 74.4621 30.2886 74.6421 30.1536C74.8221 30.0076 75.0181 29.9066 75.2321 29.8496C75.2084 29.8265 75.1796 29.8094 75.1481 29.7996C75.1257 29.792 75.1026 29.7869 75.0791 29.7846C75.0625 29.783 75.0458 29.7823 75.0291 29.7826C74.7831 29.7826 74.5291 29.8726 74.2711 30.0526C74.0131 30.2206 73.7431 30.4966 73.4621 30.8786C73.1821 31.2606 72.8951 31.7656 72.6021 32.3946C72.2726 33.1383 71.9803 33.8979 71.7261 34.6706C71.5991 35.0436 71.4711 35.4466 71.3431 35.8776L70.7151 38.3276Z\" fill=\"#8E8E8E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M67.5619 27.0185C66.9999 26.6135 66.1009 26.4115 64.8649 26.4115C64.4829 26.4115 64.1009 26.4175 63.7179 26.4285C63.3479 26.4395 62.9209 26.4455 62.4379 26.4455H61.5949C61.2909 26.4335 61.0049 26.4285 60.7349 26.4285C60.5101 26.4186 60.2855 26.4073 60.0609 26.3945L59.9769 26.7315C60.4149 26.7315 60.7129 26.7875 60.8699 26.9005C61.0389 27.0005 61.1169 27.1585 61.1059 27.3725C61.0832 27.6455 61.038 27.916 60.9709 28.1815L58.7459 36.5415C58.6459 36.9455 58.5329 37.2495 58.4089 37.4515C58.2969 37.6447 58.1168 37.7892 57.9039 37.8565C57.6899 37.9235 57.3919 37.9685 57.0099 37.9905L56.9429 38.3275C57.1329 38.3175 57.3639 38.3115 57.6329 38.3115C57.9029 38.2995 58.1899 38.2945 58.4929 38.2945C59.3411 38.2687 60.19 38.2744 61.0379 38.3115C61.4989 38.3215 61.9209 38.3285 62.3029 38.3285C63.0329 38.3285 63.7239 38.2545 64.3759 38.1085C64.9768 37.9722 65.5516 37.7392 66.0779 37.4185C66.5486 37.1381 66.947 36.751 67.2409 36.2885C67.5329 35.8385 67.6789 35.3115 67.6789 34.7045C67.6789 34.0185 67.3989 33.4285 66.8369 32.9345C66.2869 32.4395 65.4149 32.1475 64.2239 32.0575C64.967 31.9508 65.6889 31.7292 66.3639 31.4005C66.9939 31.0745 67.4879 30.6755 67.8479 30.2035C68.2102 29.7554 68.4067 29.1958 68.4039 28.6195C68.4039 27.9455 68.1249 27.4115 67.5619 27.0185ZM62.1819 32.2775L61.0549 36.5415C60.9879 36.8215 60.9429 37.0695 60.9209 37.2825C60.9089 37.4965 60.9649 37.6595 61.0889 37.7725C61.2129 37.8845 61.4429 37.9405 61.7799 37.9405C62.5779 37.9405 63.2299 37.7885 63.7349 37.4855C64.2297 37.1946 64.6239 36.7595 64.8649 36.2385C65.1119 35.6985 65.2349 35.0915 65.2349 34.4185C65.2349 34.0015 65.1619 33.6365 65.0159 33.3225C64.8873 33.0035 64.6562 32.7365 64.3589 32.5635C64.0559 32.3725 63.6509 32.2775 63.1449 32.2775H62.1819ZM62.2579 31.9905H63.0279C63.6679 31.9905 64.2129 31.8275 64.6619 31.5015C65.1229 31.1645 65.4719 30.7265 65.7079 30.1875C65.9536 29.6535 66.0799 29.0724 66.0779 28.4845C66.0779 27.9225 65.9659 27.4905 65.7409 27.1865C65.5279 26.8835 65.1509 26.7315 64.6109 26.7315C64.2189 26.7315 63.9379 26.8105 63.7689 26.9675C63.6009 27.1135 63.4549 27.4335 63.3309 27.9275L62.2579 31.9905Z\" fill=\"#8E8E8E\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1783_9914\">\\n<rect width=\"174\" height=\"39\" fill=\"white\" transform=\"translate(0.600098)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-immzup\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-v8bz6e\",\"data-framer-name\":\"logoipsum-234 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:43,intrinsicWidth:97,name:\"logoipsum-234 1\",svg:'<svg width=\"97\" height=\"43\" viewBox=\"0 0 97 43\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M24.5786 21.1377L24.7772 21.1016H41.2954L47.5023 26.4395H30.7437L24.5786 21.1377Z\" fill=\"#434343\"/>\\n<path d=\"M19.2611 21.0977L2.50244 21.0977L8.70932 26.4357H19.2609L19.2611 21.0977Z\" fill=\"#434343\"/>\\n<path d=\"M53.27 5.76562H55.8441V12.6443H60.2652V14.5079H53.27V5.76562Z\" fill=\"#434343\"/>\\n<path d=\"M64.9387 14.6948C64.0758 14.6948 63.3199 14.5614 62.6698 14.2946C62.0203 14.0195 61.5162 13.6443 61.1574 13.169C60.8083 12.6854 60.6338 12.131 60.6338 11.5056C60.6338 10.8803 60.8083 10.33 61.1574 9.85473C61.5162 9.37115 62.0203 8.99594 62.6698 8.72916C63.3199 8.45395 64.0758 8.31641 64.9387 8.31641C65.8016 8.31641 66.5581 8.45395 67.2076 8.72916C67.857 8.99594 68.3563 9.37115 68.7053 9.85473C69.0641 10.33 69.2435 10.8803 69.2435 11.5056C69.2435 12.131 69.0641 12.6854 68.7053 13.169C68.3563 13.6443 67.857 14.0195 67.2076 14.2946C66.5581 14.5614 65.8016 14.6948 64.9387 14.6948ZM64.9387 12.9814C65.4525 12.9814 65.86 12.8522 66.1604 12.5937C66.4705 12.3269 66.6256 11.9642 66.6256 11.5056C66.6256 11.047 66.4705 10.6885 66.1604 10.43C65.86 10.1632 65.4525 10.0298 64.9387 10.0298C64.4248 10.0298 64.0132 10.1632 63.7024 10.43C63.402 10.6885 63.2518 11.047 63.2518 11.5056C63.2518 11.9642 63.402 12.3269 63.7024 12.5937C64.0132 12.8522 64.4248 12.9814 64.9387 12.9814Z\" fill=\"#434343\"/>\\n<path d=\"M74.0513 17.3838C73.5861 17.3838 73.116 17.3463 72.6404 17.2712C72.1752 17.1962 71.7733 17.0961 71.434 16.9711V15.4452C72.1996 15.7287 73.0722 15.8705 74.0513 15.8705C74.7591 15.8705 75.2681 15.7454 75.5782 15.4952C75.8981 15.2451 76.058 14.8783 76.058 14.3947V14.0319C75.7771 14.2404 75.4281 14.403 75.0115 14.5197C74.6041 14.6365 74.1674 14.6948 73.7022 14.6948C72.9658 14.6948 72.3157 14.5614 71.7539 14.2946C71.1913 14.0279 70.7505 13.6526 70.4299 13.169C70.1198 12.6854 69.9648 12.131 69.9648 11.5056C69.9648 10.8719 70.1198 10.3133 70.4299 9.82971C70.7408 9.34613 71.1767 8.97512 71.7393 8.71661C72.3011 8.44982 72.9464 8.31641 73.673 8.31641C74.6722 8.31641 75.4962 8.57905 76.1456 9.1043V8.504H78.6176V14.0945C78.6176 15.1368 78.2449 15.9455 77.4981 16.5209C76.761 17.0961 75.6123 17.3838 74.0513 17.3838ZM74.3419 12.9939C74.7397 12.9939 75.0936 12.9064 75.4037 12.7313C75.7138 12.5562 75.9322 12.3228 76.058 12.0309V10.9804C75.9224 10.6885 75.6992 10.4592 75.3891 10.2925C75.079 10.1174 74.7299 10.0298 74.3419 10.0298C73.819 10.0298 73.397 10.1632 73.0771 10.43C72.7572 10.6885 72.5973 11.0429 72.5973 11.4931C72.5973 11.9517 72.7572 12.3185 73.0771 12.5937C73.397 12.8605 73.819 12.9939 74.3419 12.9939Z\" fill=\"#434343\"/>\\n<path d=\"M83.5719 14.6948C82.709 14.6948 81.9525 14.5614 81.303 14.2946C80.6536 14.0195 80.1495 13.6443 79.7907 13.169C79.4416 12.6854 79.2671 12.131 79.2671 11.5056C79.2671 10.8803 79.4416 10.33 79.7907 9.85473C80.1495 9.37115 80.6536 8.99594 81.303 8.72916C81.9525 8.45395 82.709 8.31641 83.5719 8.31641C84.4348 8.31641 85.1907 8.45395 85.8408 8.72916C86.4903 8.99594 86.9895 9.37115 87.3386 9.85473C87.6974 10.33 87.8768 10.8803 87.8768 11.5056C87.8768 12.131 87.6974 12.6854 87.3386 13.169C86.9895 13.6443 86.4903 14.0195 85.8408 14.2946C85.1907 14.5614 84.4348 14.6948 83.5719 14.6948ZM83.5719 12.9814C84.0858 12.9814 84.4926 12.8522 84.7936 12.5937C85.1038 12.3269 85.2588 11.9642 85.2588 11.5056C85.2588 11.047 85.1038 10.6885 84.7936 10.43C84.4926 10.1632 84.0858 10.0298 83.5719 10.0298C83.0581 10.0298 82.6457 10.1632 82.3356 10.43C82.0352 10.6885 81.885 11.047 81.885 11.5056C81.885 11.9642 82.0352 12.3269 82.3356 12.5937C82.6457 12.8522 83.0581 12.9814 83.5719 12.9814Z\" fill=\"#434343\"/>\\n<path d=\"M53.27 17.7266H55.8441V26.4688H53.27V17.7266Z\" fill=\"#434343\"/>\\n<path d=\"M57.1475 20.4649H59.6195V21.0652C60.269 20.54 61.0937 20.2773 62.0922 20.2773C62.8188 20.2773 63.4641 20.4107 64.0259 20.6776C64.5884 20.936 65.0244 21.307 65.3352 21.7906C65.6454 22.2658 65.8004 22.8204 65.8004 23.454C65.8004 24.0793 65.6454 24.638 65.3352 25.1299C65.0244 25.6135 64.5884 25.9888 64.0259 26.2555C63.4738 26.5223 62.8285 26.6557 62.0922 26.6557C61.6263 26.6557 61.1806 26.5932 60.7543 26.4681C60.3371 26.3514 59.9881 26.1888 59.7072 25.9803V29.2072H57.1475V20.4649ZM61.4233 24.9423C61.9468 24.9423 62.3682 24.8089 62.6881 24.5421C63.0079 24.2753 63.1679 23.9126 63.1679 23.454C63.1679 22.9955 63.0079 22.6369 62.6881 22.3784C62.3682 22.1116 61.9468 21.9783 61.4233 21.9783C61.0353 21.9783 60.6862 22.0658 60.3761 22.2409C60.0659 22.4076 59.8427 22.6369 59.7072 22.9287V23.9918C59.8427 24.2837 60.0659 24.5171 60.3761 24.6922C60.6862 24.859 61.0353 24.9423 61.4233 24.9423Z\" fill=\"#434343\"/>\\n<path d=\"M69.6164 26.6557C69.0538 26.6557 68.467 26.6057 67.8565 26.5056C67.246 26.414 66.7606 26.2806 66.4025 26.1055V24.4921C66.7995 24.6922 67.2745 24.859 67.8273 24.9924C68.3898 25.1174 68.9036 25.1799 69.3688 25.1799C69.7082 25.1799 69.9557 25.159 70.1108 25.1174C70.2658 25.0757 70.343 24.9924 70.343 24.8672C70.343 24.7672 70.2902 24.688 70.1831 24.6297C70.0864 24.563 69.9022 24.4962 69.631 24.4295C69.3688 24.3545 69.0636 24.2753 68.7145 24.1919C68.1228 24.0418 67.6576 23.8875 67.3183 23.7291C66.9789 23.5707 66.7272 23.3707 66.5624 23.1288C66.3976 22.8871 66.3149 22.5827 66.3149 22.2158C66.3149 21.5655 66.6104 21.0819 67.2021 20.7651C67.8029 20.4399 68.6227 20.2773 69.6595 20.2773C70.1636 20.2773 70.6921 20.3232 71.2449 20.4149C71.8074 20.5066 72.2288 20.6275 72.5104 20.7776V22.3659C72.219 22.1992 71.8317 22.0616 71.3471 21.9532C70.8715 21.8449 70.4257 21.7906 70.0085 21.7906C69.679 21.7906 69.4224 21.8198 69.2381 21.8781C69.0538 21.9282 68.9621 22.02 68.9621 22.1533C68.9621 22.2784 69.0538 22.3743 69.2381 22.4409C69.4224 22.5077 69.752 22.5911 70.2269 22.6911C70.537 22.7578 70.6684 22.787 70.6197 22.7787C71.24 22.9204 71.7198 23.0788 72.0591 23.2539C72.3984 23.4291 72.6362 23.6374 72.7718 23.8793C72.9172 24.1127 72.9902 24.4128 72.9902 24.7797C72.9902 25.355 72.6995 25.8137 72.1175 26.1554C71.5452 26.489 70.7115 26.6557 69.6164 26.6557Z\" fill=\"#434343\"/>\\n<path d=\"M76.8115 26.6556C75.8519 26.6556 75.1295 26.4264 74.6448 25.9678C74.1699 25.5092 73.9321 24.9048 73.9321 24.1543V20.4648H76.4917V23.9042C76.4917 24.5962 76.8553 24.9423 77.582 24.9423C77.9122 24.9423 78.2126 24.8755 78.4838 24.7421C78.7557 24.6088 78.9782 24.4128 79.1527 24.1543V20.4648H81.7123V26.4681H79.2403V25.8177C78.9399 26.0929 78.5763 26.3013 78.1493 26.443C77.7231 26.5848 77.2767 26.6556 76.8115 26.6556Z\" fill=\"#434343\"/>\\n<path d=\"M83.0234 20.4649H85.3938V21.1152C85.6844 20.8485 86.0189 20.6442 86.3972 20.5024C86.7754 20.3523 87.178 20.2773 87.6043 20.2773C88.1278 20.2773 88.5451 20.344 88.8552 20.4774C89.175 20.6109 89.4316 20.8109 89.6256 21.0777C89.9163 20.8276 90.2702 20.6317 90.6874 20.4899C91.1039 20.3482 91.526 20.2773 91.9522 20.2773C92.8736 20.2773 93.5279 20.4816 93.9159 20.8901C94.3039 21.2903 94.4979 21.8698 94.4979 22.6286V26.4681H92.0544V22.9413C92.0544 22.6078 91.9814 22.3659 91.8361 22.2158C91.6908 22.0658 91.4481 21.9907 91.1088 21.9907C90.6728 21.9907 90.3189 22.1242 90.0477 22.3909C90.0574 22.5327 90.0623 22.7495 90.0623 23.0413V26.4681H87.6189V22.8537C87.6189 22.5452 87.5556 22.3242 87.4297 22.1908C87.3039 22.0575 87.0807 21.9907 86.7608 21.9907C86.2664 21.9907 85.8395 22.2283 85.4814 22.7036V26.4681H83.0234V20.4649Z\" fill=\"#434343\"/>\\n<path d=\"M24.7774 21.0981L24.5787 21.1343L30.7435 26.436V40.8484H25.4676L19.2607 35.5105H24.5366V21.098H19.2607V16.5609H24.5366V2.14844L30.7435 7.48636V16.5608L24.5366 16.5609V21.098L24.7774 21.0981Z\" fill=\"#898989\"/>\\n<path d=\"M41.2954 21.0998L47.5023 26.4377V21.9004L41.2954 16.5625V21.0998Z\" fill=\"#898989\"/>\\n<path d=\"M53.6338 30.5703H57.4003C58.4666 30.5703 59.2954 30.7871 59.8872 31.2207C60.4879 31.6543 60.789 32.2962 60.789 33.1467C60.789 34.0055 60.4928 34.6476 59.9018 35.0728C59.31 35.498 58.4763 35.7106 57.4003 35.7106H54.7681V39.3126H53.6338V30.5703ZM57.3131 34.8852C58.0403 34.8852 58.6126 34.7601 59.0291 34.51C59.4463 34.2515 59.6542 33.7971 59.6542 33.1467C59.6542 32.488 59.4463 32.0336 59.0291 31.7835C58.6126 31.525 58.0403 31.3958 57.3131 31.3958H54.7681V34.8852H57.3131Z\" fill=\"#898989\"/>\\n<path d=\"M62.2402 30.0703H63.3597V39.3128H62.2402V30.0703Z\" fill=\"#898989\"/>\\n<path d=\"M68.2148 39.5034C67.2838 39.5034 66.5662 39.2866 66.062 38.853C65.5676 38.4194 65.3208 37.84 65.3208 37.1146V33.3125H66.4403V37.1646C66.4403 38.2152 67.0751 38.7405 68.3455 38.7405C68.8789 38.7405 69.344 38.6404 69.7418 38.4403C70.1486 38.2401 70.5122 37.9233 70.8321 37.4898V33.3125H71.9523V39.3157H70.8613V38.4152C70.2313 39.1406 69.3489 39.5034 68.2148 39.5034Z\" fill=\"#898989\"/>\\n<path d=\"M76.4142 39.5034C75.9581 39.5034 75.4686 39.4451 74.945 39.3284C74.4214 39.2199 74.0146 39.0824 73.7233 38.9156V38.1027C74.0918 38.2945 74.5139 38.4487 74.9888 38.5654C75.4734 38.6821 75.9386 38.7405 76.385 38.7405C76.9858 38.7405 77.4176 38.6696 77.6791 38.5279C77.9509 38.3778 78.0865 38.1569 78.0865 37.8651C78.0865 37.6399 78.0281 37.4648 77.912 37.3398C77.7952 37.2063 77.6019 37.0896 77.33 36.9896C77.0588 36.8895 76.6368 36.7728 76.0652 36.6394C75.5027 36.506 75.0521 36.3684 74.7127 36.2267C74.3832 36.0765 74.1307 35.889 73.9562 35.6638C73.7817 35.4387 73.6948 35.1511 73.6948 34.8009C73.6948 34.2589 73.9465 33.8462 74.4506 33.5627C74.9645 33.2709 75.6431 33.125 76.4866 33.125C76.942 33.125 77.3689 33.1625 77.7667 33.2375C78.1735 33.3042 78.5128 33.4001 78.7847 33.5252V34.3381C78.503 34.2047 78.1637 34.1005 77.7667 34.0254C77.3689 33.9421 76.9566 33.9004 76.5304 33.9004C75.9678 33.9004 75.5416 33.9712 75.2502 34.113C74.9596 34.2548 74.8143 34.4841 74.8143 34.8009C74.8143 35.0177 74.8629 35.1844 74.9596 35.3011C75.0667 35.4178 75.2551 35.5263 75.527 35.6263C75.8079 35.7181 76.2543 35.8348 76.8648 35.9765C77.7375 36.185 78.3431 36.4309 78.6824 36.7145C79.0315 36.9896 79.206 37.3731 79.206 37.8651C79.206 38.3736 78.9738 38.7738 78.5079 39.0657C78.0525 39.3575 77.3543 39.5034 76.4142 39.5034Z\" fill=\"#898989\"/>\\n</svg>\\n',withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-40dry6\",\"data-framer-name\":\"works\",name:\"works\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-96u1ba\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rwtwsr\",\"data-styles-preset\":\"W0YAFGlkw\",children:\"How Monks Meet Works\"})}),className:\"framer-1alr1lo\",\"data-framer-name\":\"More Than 14 Million People trusted across the world\",fonts:[\"Inter\"],name:\"More Than 14 Million People trusted across the world\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y6dvwk\",\"data-styles-preset\":\"DPlOy0VMe\",style:{\"--framer-text-alignment\":\"center\"},children:\"Feel free to use this title to introduce the section where you will showcase the various features of your video conferencing tool.\"})}),className:\"framer-2rwcb8\",\"data-framer-name\":\"More Than 14 Million People trusted across the world\",fonts:[\"Inter\"],name:\"More Than 14 Million People trusted across the world\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u9jo19\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kqv9p1\",\"data-framer-name\":\"Left card\",name:\"Left card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6qe903\",\"data-framer-name\":\"Line\",name:\"Line\",style:{rotate:-30},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nba3iv\",\"data-border\":true,\"data-framer-name\":\"Ellipse 36\",name:\"Ellipse 36\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u12a11\",\"data-border\":true,\"data-framer-name\":\"Ellipse 37\",name:\"Ellipse 37\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1od6yyn\",\"data-border\":true,\"data-framer-name\":\"Ellipse 38\",name:\"Ellipse 38\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jg99c9\",\"data-border\":true,\"data-framer-name\":\"Ellipse 39\",name:\"Ellipse 39\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ywcrd9\",\"data-border\":true,\"data-framer-name\":\"Ellipse 40\",name:\"Ellipse 40\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ebfzhc\",\"data-border\":true,\"data-framer-name\":\"Ellipse 41\",name:\"Ellipse 41\"})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6yy5aq\",\"data-framer-name\":\"Text\",name:\"Text\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-w16bu8\",\"data-styles-preset\":\"X1ScQMjcy\",children:\"Crystal-Clear Video Calls\"})}),className:\"framer-1tjgs9w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y6dvwk\",\"data-styles-preset\":\"DPlOy0VMe\",children:\"Engage in high-definition video conferences that bring teams together with lifelike clarity and visual presence.\"})}),className:\"framer-1nqfw6i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r6kilm\",\"data-framer-name\":\"card colums\",name:\"card colums\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-q3auhf\",\"data-framer-name\":\"Card\",name:\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(35, 56, 118)\"},children:\"Real time chat\"})}),className:\"framer-2u6ais\",\"data-framer-name\":\"Real time chat\",fonts:[\"GF;Plus Jakarta Sans-800\"],name:\"Real time chat\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(82, 82, 91)\"},children:\"Stay connected with real-time chat functionality that ...\"})}),className:\"framer-1ydr472\",\"data-framer-name\":\"Stay connected with real-time chat functionality that ...\",fonts:[\"GF;Plus Jakarta Sans-regular\"],name:\"Stay connected with real-time chat functionality that ...\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ynlgw4\",\"data-framer-name\":\"Card\",name:\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(35, 56, 118)\"},children:\"Real time chat\"})}),className:\"framer-1j04a8y\",\"data-framer-name\":\"Real time chat\",fonts:[\"GF;Plus Jakarta Sans-800\"],name:\"Real time chat\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(82, 82, 91)\"},children:\"Stay connected with real-time chat functionality that ...\"})}),className:\"framer-1ybvhkb\",\"data-framer-name\":\"Stay connected with real-time chat functionality that ...\",fonts:[\"GF;Plus Jakarta Sans-regular\"],name:\"Stay connected with real-time chat functionality that ...\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-spdu3u\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-w84afv\",\"data-framer-name\":\"Text\",name:\"Text\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-w16bu8\",\"data-styles-preset\":\"X1ScQMjcy\",children:\"Secure-End-to End Encryption\"})}),className:\"framer-1y4olj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y6dvwk\",\"data-styles-preset\":\"DPlOy0VMe\",children:\"Experience unparalleled privacy and security with our end-to-end encryption feature. Our platform goes beyond boundaries, seamlessly integrating with a variety of industries to cater to diverse needs.\"})}),className:\"framer-rhzmch\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hj24pf\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{background:{alt:\"\",fit:\"stretch\",loading:\"lazy\",positionX:\"center\",positionY:\"center\",sizes:\"122px\",src:\"https://framerusercontent.com/images/vE771lu4MeGWCNQXA89nIa6HPo.png\",srcSet:\"https://framerusercontent.com/images/vE771lu4MeGWCNQXA89nIa6HPo.png?scale-down-to=512 512w,https://framerusercontent.com/images/vE771lu4MeGWCNQXA89nIa6HPo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vE771lu4MeGWCNQXA89nIa6HPo.png 1284w\"},transformTemplate:transformTemplate2},MsRu6q_2e:{background:{alt:\"\",fit:\"stretch\",loading:\"lazy\",positionX:\"center\",positionY:\"center\",sizes:\"131px\",src:\"https://framerusercontent.com/images/vE771lu4MeGWCNQXA89nIa6HPo.png\",srcSet:\"https://framerusercontent.com/images/vE771lu4MeGWCNQXA89nIa6HPo.png?scale-down-to=512 512w,https://framerusercontent.com/images/vE771lu4MeGWCNQXA89nIa6HPo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vE771lu4MeGWCNQXA89nIa6HPo.png 1284w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:\"lazy\",positionX:\"center\",positionY:\"center\",sizes:\"281px\",src:\"https://framerusercontent.com/images/vE771lu4MeGWCNQXA89nIa6HPo.png\",srcSet:\"https://framerusercontent.com/images/vE771lu4MeGWCNQXA89nIa6HPo.png?scale-down-to=512 512w,https://framerusercontent.com/images/vE771lu4MeGWCNQXA89nIa6HPo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vE771lu4MeGWCNQXA89nIa6HPo.png 1284w\"},className:\"framer-1f5mb0m\",\"data-framer-name\":\"image 38\",name:\"image 38\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{background:{alt:\"\",fit:\"stretch\",loading:\"lazy\",positionX:\"center\",positionY:\"center\",sizes:\"243px\",src:\"https://framerusercontent.com/images/V00EIvg3aBnb3lRdBC5kdOrS0U.png\",srcSet:\"https://framerusercontent.com/images/V00EIvg3aBnb3lRdBC5kdOrS0U.png?scale-down-to=512 512w,https://framerusercontent.com/images/V00EIvg3aBnb3lRdBC5kdOrS0U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/V00EIvg3aBnb3lRdBC5kdOrS0U.png 1956w\"}},MsRu6q_2e:{background:{alt:\"\",fit:\"stretch\",loading:\"lazy\",positionX:\"center\",positionY:\"center\",sizes:\"292px\",src:\"https://framerusercontent.com/images/V00EIvg3aBnb3lRdBC5kdOrS0U.png\",srcSet:\"https://framerusercontent.com/images/V00EIvg3aBnb3lRdBC5kdOrS0U.png?scale-down-to=512 512w,https://framerusercontent.com/images/V00EIvg3aBnb3lRdBC5kdOrS0U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/V00EIvg3aBnb3lRdBC5kdOrS0U.png 1956w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:\"lazy\",positionX:\"center\",positionY:\"center\",sizes:\"469px\",src:\"https://framerusercontent.com/images/V00EIvg3aBnb3lRdBC5kdOrS0U.png\",srcSet:\"https://framerusercontent.com/images/V00EIvg3aBnb3lRdBC5kdOrS0U.png?scale-down-to=512 512w,https://framerusercontent.com/images/V00EIvg3aBnb3lRdBC5kdOrS0U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/V00EIvg3aBnb3lRdBC5kdOrS0U.png 1956w\"},className:\"framer-1fj6b7w\",\"data-framer-name\":\"image 50\",name:\"image 50\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bdnz0l\",\"data-framer-name\":\"line 2\",name:\"line 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ftpse8\",\"data-border\":true,\"data-framer-name\":\"Ellipse 36\",name:\"Ellipse 36\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rtr97t\",\"data-border\":true,\"data-framer-name\":\"Ellipse 37\",name:\"Ellipse 37\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oesu4d\",\"data-border\":true,\"data-framer-name\":\"Ellipse 38\",name:\"Ellipse 38\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rq7jii\",\"data-border\":true,\"data-framer-name\":\"Ellipse 39\",name:\"Ellipse 39\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u409se\",\"data-border\":true,\"data-framer-name\":\"Ellipse 40\",name:\"Ellipse 40\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15w2wfr\",\"data-border\":true,\"data-framer-name\":\"Ellipse 41\",name:\"Ellipse 41\"})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1drv1qj\",\"data-framer-name\":\"BEnifits\",name:\"BEnifits\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mxs2xp\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c4ozt1\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m2f1sz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rwtwsr\",\"data-styles-preset\":\"W0YAFGlkw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our video Conferencing Platform More Flexible and Helpful For Users\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rwtwsr\",\"data-styles-preset\":\"W0YAFGlkw\",style:{\"--framer-text-alignment\":\"left\"},children:\"Our video Conferencing Platform More Flexible and Helpful For Users\"})}),className:\"framer-11rip2c\",\"data-framer-name\":\"More Than 14 Million People trusted across the world\",fonts:[\"Inter\"],name:\"More Than 14 Million People trusted across the world\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y6dvwk\",\"data-styles-preset\":\"DPlOy0VMe\",style:{\"--framer-text-alignment\":\"center\"},children:\"Transform your team's potential into performance. Witness the real results that our tool brings to the table, amplifying collaboration and productivity. Virtual events make it easier for users\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y6dvwk\",\"data-styles-preset\":\"DPlOy0VMe\",style:{\"--framer-text-alignment\":\"left\"},children:\"Transform your team's potential into performance. Witness the real results that our tool brings to the table, amplifying collaboration and productivity. Virtual events make it easier for users\"})}),className:\"framer-3kwnyf\",\"data-framer-name\":\"More Than 14 Million People trusted across the world\",fonts:[\"Inter\"],name:\"More Than 14 Million People trusted across the world\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17g5czm\",\"data-framer-name\":\"button\",name:\"button\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined},{href:{webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined},{href:{webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-luqvld-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{aPIJcQDNQ:resolvedLinks1[2],style:{width:\"100%\"}},MsRu6q_2e:{aPIJcQDNQ:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonWithoutIcon,{aPIJcQDNQ:resolvedLinks1[0],height:\"100%\",id:\"ivJxf2oJA\",IJ8Rzsu5g:\"var(--token-15b2631b-3952-418c-8fee-1fcfb2e39183, rgb(0, 0, 0))\",JRXRfq7xp:\"rgb(255, 255, 255)\",krKVQc9kv:\"var(--token-23a245a0-89dd-4471-9e48-3df6c8e56362, rgb(28, 100, 242))\",layoutId:\"ivJxf2oJA\",variant:\"y8SH4tiKI\",width:\"100%\",XuT9qVtcz:\"Get Access\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined},{href:{webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined},{href:{webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10q87vl-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{aPIJcQDNQ:resolvedLinks2[2],style:{width:\"100%\"}},MsRu6q_2e:{aPIJcQDNQ:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ButtonWithoutIcon,{aPIJcQDNQ:resolvedLinks2[0],height:\"100%\",id:\"FXTaH05FG\",IJ8Rzsu5g:\"var(--token-15b2631b-3952-418c-8fee-1fcfb2e39183, rgb(0, 0, 0))\",JRXRfq7xp:\"rgb(255, 255, 255)\",krKVQc9kv:\"var(--token-23a245a0-89dd-4471-9e48-3df6c8e56362, rgb(28, 100, 242))\",layoutId:\"FXTaH05FG\",variant:\"jtZAj8PSG\",width:\"100%\",XuT9qVtcz:\"Learn More\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1agp5uw\",\"data-framer-name\":\"Frame 616\",name:\"Frame 616\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-112phvf\",\"data-framer-name\":\"Frame 605\",name:\"Frame 605\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ebelyr\",\"data-framer-name\":\"fi_1634264\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:21,name:\"fi_1634264\",svg:'<svg width=\"21\" height=\"22\" viewBox=\"0 0 21 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_340_306)\">\\n<path d=\"M21 6.18114L10.5006 15.9126L7.31023 18.8696L0 11.0683L2.9935 8.26317L7.5182 13.0923L10.5006 10.3258L18.2183 3.16602L21 6.18114Z\" fill=\"#1C64F2\"/>\\n<path d=\"M20.9994 6.18114L10.5 15.9126V10.3258L18.2177 3.16602L20.9994 6.18114Z\" fill=\"#233876\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_340_306\">\\n<rect width=\"21\" height=\"21\" fill=\"white\" transform=\"translate(0 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(75, 85, 99)\"},children:\"Connect Globally, Collaborate Seamlessly\"})}),className:\"framer-xm3kj5\",\"data-framer-name\":\"Connect Globally, Collaborate Seamlessly\",fonts:[\"GF;Plus Jakarta Sans-700\"],name:\"Connect Globally, Collaborate Seamlessly\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12ln7af\",\"data-framer-name\":\"Frame 606\",name:\"Frame 606\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1k0gfmp\",\"data-framer-name\":\"fi_1634264\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:21,name:\"fi_1634264\",svg:'<svg width=\"21\" height=\"22\" viewBox=\"0 0 21 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_340_311)\">\\n<path d=\"M21 6.18114L10.5006 15.9126L7.31023 18.8696L0 11.0683L2.9935 8.26317L7.5182 13.0923L10.5006 10.3258L18.2183 3.16602L21 6.18114Z\" fill=\"#1C64F2\"/>\\n<path d=\"M20.9994 6.18114L10.5 15.9126V10.3258L18.2177 3.16602L20.9994 6.18114Z\" fill=\"#233876\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_340_311\">\\n<rect width=\"21\" height=\"21\" fill=\"white\" transform=\"translate(0 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(75, 85, 99)\"},children:\"Boost Team Productivity and Efficiency\"})}),className:\"framer-1n7j60o\",\"data-framer-name\":\"Boost Team Productivity and Efficiency\",fonts:[\"GF;Plus Jakarta Sans-700\"],name:\"Boost Team Productivity and Efficiency\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1e8470v\",\"data-framer-name\":\"Frame 607\",name:\"Frame 607\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-16ekz3n\",\"data-framer-name\":\"fi_1634264\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:21,name:\"fi_1634264\",svg:'<svg width=\"21\" height=\"22\" viewBox=\"0 0 21 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_340_316)\">\\n<path d=\"M21 6.18114L10.5006 15.9126L7.31023 18.8696L0 11.0683L2.9935 8.26317L7.5182 13.0923L10.5006 10.3258L18.2183 3.16602L21 6.18114Z\" fill=\"#1C64F2\"/>\\n<path d=\"M20.9994 6.18114L10.5 15.9126V10.3258L18.2177 3.16602L20.9994 6.18114Z\" fill=\"#233876\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_340_316\">\\n<rect width=\"21\" height=\"21\" fill=\"white\" transform=\"translate(0 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(75, 85, 99)\"},children:\"Secure, Private, and Reliable Communication\"})}),className:\"framer-1gicti\",\"data-framer-name\":\"Secure, Private, and Reliable Communication\",fonts:[\"GF;Plus Jakarta Sans-700\"],name:\"Secure, Private, and Reliable Communication\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1548,intrinsicWidth:1278,loading:\"lazy\",pixelHeight:1548,pixelWidth:1278,sizes:\"min(100vw - 20px, 1280px)\",src:\"https://framerusercontent.com/images/XnRAoIxfx4fYDXUpx5wj9DQ7HPk.png\",srcSet:\"https://framerusercontent.com/images/XnRAoIxfx4fYDXUpx5wj9DQ7HPk.png?scale-down-to=1024 845w,https://framerusercontent.com/images/XnRAoIxfx4fYDXUpx5wj9DQ7HPk.png 1278w\"}},MsRu6q_2e:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1548,intrinsicWidth:1278,loading:\"lazy\",pixelHeight:1548,pixelWidth:1278,sizes:\"max((min(max(100vw - 40px, 1px), 1280px) - 48px) / 2, 1px)\",src:\"https://framerusercontent.com/images/XnRAoIxfx4fYDXUpx5wj9DQ7HPk.png\",srcSet:\"https://framerusercontent.com/images/XnRAoIxfx4fYDXUpx5wj9DQ7HPk.png?scale-down-to=1024 845w,https://framerusercontent.com/images/XnRAoIxfx4fYDXUpx5wj9DQ7HPk.png 1278w\"}}},children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1548,intrinsicWidth:1278,loading:\"lazy\",pixelHeight:1548,pixelWidth:1278,sizes:\"max((min(max(100vw - 120px, 1px), 1280px) - 48px) / 2, 1px)\",src:\"https://framerusercontent.com/images/XnRAoIxfx4fYDXUpx5wj9DQ7HPk.png\",srcSet:\"https://framerusercontent.com/images/XnRAoIxfx4fYDXUpx5wj9DQ7HPk.png?scale-down-to=1024 845w,https://framerusercontent.com/images/XnRAoIxfx4fYDXUpx5wj9DQ7HPk.png 1278w\"},className:\"framer-lwxapc\",\"data-framer-name\":\"image\",name:\"image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1548,intrinsicWidth:1278,loading:\"lazy\",pixelHeight:1548,pixelWidth:1278,positionX:\"center\",positionY:\"center\",sizes:\"max(min(100vw - 20px, 1280px), 1px)\",src:\"https://framerusercontent.com/images/yTWwCDoiS8kYz8bBoNwTg2diR4.png\",srcSet:\"https://framerusercontent.com/images/yTWwCDoiS8kYz8bBoNwTg2diR4.png?scale-down-to=1024 845w,https://framerusercontent.com/images/yTWwCDoiS8kYz8bBoNwTg2diR4.png 1278w\"}},MsRu6q_2e:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1548,intrinsicWidth:1278,loading:\"lazy\",pixelHeight:1548,pixelWidth:1278,positionX:\"center\",positionY:\"center\",sizes:\"max((min(max(100vw - 40px, 1px), 1280px) - 48px) / 2, 1px)\",src:\"https://framerusercontent.com/images/yTWwCDoiS8kYz8bBoNwTg2diR4.png\",srcSet:\"https://framerusercontent.com/images/yTWwCDoiS8kYz8bBoNwTg2diR4.png?scale-down-to=1024 845w,https://framerusercontent.com/images/yTWwCDoiS8kYz8bBoNwTg2diR4.png 1278w\"}}},children:/*#__PURE__*/_jsxs(ImageWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:1548,intrinsicWidth:1278,loading:\"lazy\",pixelHeight:1548,pixelWidth:1278,positionX:\"center\",positionY:\"center\",sizes:\"max((min(max(100vw - 120px, 1px), 1280px) - 48px) / 2, 1px)\",src:\"https://framerusercontent.com/images/yTWwCDoiS8kYz8bBoNwTg2diR4.png\",srcSet:\"https://framerusercontent.com/images/yTWwCDoiS8kYz8bBoNwTg2diR4.png?scale-down-to=1024 845w,https://framerusercontent.com/images/yTWwCDoiS8kYz8bBoNwTg2diR4.png 1278w\"},className:\"framer-p43wc7\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l1o8vj\",children:isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-ebtfju hidden-1dt5h5z hidden-4ufibd\",\"data-framer-name\":\"Vector 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:102,intrinsicWidth:122,name:\"Vector 1\",style:{rotate:-22},svg:'<svg width=\"122\" height=\"102\" viewBox=\"-1 -1 122 102\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M103.702 80.0395C104.149 79.7143 104.247 79.0888 103.922 78.6424C103.596 78.1961 102.971 78.0979 102.524 78.4231L103.702 80.0395ZM48.7405 56.4229L48.794 57.4215L48.794 57.4215L48.7405 56.4229ZM28.1421 1.68218L17.4275 5.98691L26.5128 13.1137L28.1421 1.68218ZM37.9008 44.7609L38.7558 45.2795L37.9008 44.7609ZM41.0722 41.0824L40.4463 40.3026L41.0722 41.0824ZM102.524 78.4231C86.6189 90.0127 66.3712 88.6572 52.2234 80.829C45.155 76.918 39.6941 71.4357 37.0524 65.2535C34.4271 59.1097 34.5523 52.2083 38.7558 45.2795L37.0458 44.2422C32.5035 51.7295 32.3379 59.3103 35.2133 66.0393C38.0722 72.7299 43.9033 78.5111 51.2551 82.579C65.9474 90.7085 87.0516 92.1721 103.702 80.0395L102.524 78.4231ZM41.6982 41.8623C45.1382 39.101 48.1309 38.6854 50.4348 39.389C52.7812 40.1056 54.6378 42.0496 55.6331 44.4308C56.6302 46.8162 56.6995 49.4889 55.6648 51.5654C54.6599 53.5822 52.5222 55.2187 48.687 55.4243L48.794 57.4215C53.2238 57.184 56.0769 55.223 57.4549 52.4573C58.8033 49.7514 58.6477 46.4568 57.4784 43.6594C56.3073 40.8579 54.0559 38.4037 51.019 37.4762C47.9397 36.5358 44.2739 37.2302 40.4463 40.3026L41.6982 41.8623ZM48.687 55.4243C36.1328 56.0974 26.899 49.5712 22.2454 40.38C17.577 31.1596 17.5262 19.2603 23.4462 9.27517L21.7258 8.2552C15.4471 18.8454 15.4929 31.4709 20.4611 41.2834C25.4441 51.1252 35.3869 58.1402 48.794 57.4215L48.687 55.4243ZM38.7558 45.2795C39.5428 43.9823 40.5411 42.7911 41.6982 41.8623L40.4463 40.3026C39.0819 41.3977 37.9358 42.7751 37.0458 44.2422L38.7558 45.2795Z\" fill=\"#233876\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jjzgj8 hidden-4ufibd\",\"data-framer-name\":\"call card\",name:\"call card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-c0u3ht\",\"data-framer-name\":\"Mute\",layout:\"position\",name:\"Mute\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\"><path d=\"M 0 24 C 0 10.745 10.745 0 24 0 C 37.255 0 48 10.745 48 24 C 48 37.255 37.255 48 24 48 C 10.745 48 0 37.255 0 24 Z\" fill=\"rgb(28,100,242)\"></path><path d=\"M 30.4 24.329 C 30.4 23.929 30.094 23.623 29.694 23.623 C 29.294 23.623 28.988 23.929 28.988 24.329 C 28.988 27.082 26.753 29.317 24 29.317 C 21.247 29.317 19.011 27.082 19.011 24.329 C 19.011 23.929 18.706 23.623 18.305 23.623 C 17.905 23.623 17.6 23.929 17.6 24.329 C 17.6 27.599 20.047 30.352 23.294 30.705 L 23.294 32.588 L 20.729 32.588 C 20.329 32.588 20.023 32.894 20.023 33.294 C 20.023 33.694 20.329 33.999 20.729 33.999 L 27.27 33.999 C 27.67 33.999 27.976 33.694 27.976 33.294 C 27.976 32.894 27.67 32.588 27.27 32.588 L 24.706 32.588 L 24.706 30.705 C 27.953 30.352 30.4 27.599 30.4 24.329 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 24 14 C 21.835 14 20.07 15.765 20.07 17.929 L 20.07 24.306 C 20.07 26.494 21.835 28.235 24 28.259 C 26.164 28.259 27.929 26.494 27.929 24.329 L 27.929 17.929 C 27.929 15.765 26.164 14 24 14 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:1030614083,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bzmqma\",\"data-framer-name\":\"Frame 39574\",name:\"Frame 39574\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(35, 56, 118)\"},children:\"Start Voice Call\"})}),className:\"framer-1whor62\",\"data-framer-name\":\"Start Voice Call\",fonts:[\"GF;Plus Jakarta Sans-600\"],name:\"Start Voice Call\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(82, 82, 91)\"},children:\"with Bil Mukarama\"})}),className:\"framer-1eson2x\",\"data-framer-name\":\"with Bil Mukarama\",fonts:[\"GF;Plus Jakarta Sans-regular\"],name:\"with Bil Mukarama\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dailp9\",\"data-framer-name\":\"Feature\",id:id,name:\"Feature\",ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sdwycc\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1rwtwsr\",\"data-styles-preset\":\"W0YAFGlkw\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Introducing Our New \",/*#__PURE__*/_jsx(\"br\",{}),\"Features\"]})}),className:\"framer-wk0939\",\"data-framer-name\":\"More Than 14 Million People trusted across the world\",fonts:[\"Inter\"],name:\"More Than 14 Million People trusted across the world\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":kweYA22Cj\",webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined},{href:{hash:\":kweYA22Cj\",webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ogiw9a-container hidden-4ufibd\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MsRu6q_2e:{aPIJcQDNQ:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(ButtonWithoutIcon,{aPIJcQDNQ:resolvedLinks3[0],height:\"100%\",id:\"UzjL9dPse\",IJ8Rzsu5g:\"var(--token-15b2631b-3952-418c-8fee-1fcfb2e39183, rgb(0, 0, 0))\",JRXRfq7xp:\"rgb(255, 255, 255)\",krKVQc9kv:\"var(--token-23a245a0-89dd-4471-9e48-3df6c8e56362, rgb(28, 100, 242))\",layoutId:\"UzjL9dPse\",variant:\"y8SH4tiKI\",width:\"100%\",XuT9qVtcz:\"Get Access\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g4n2pq\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition21},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mlgwj3\",\"data-framer-name\":\"Card\",name:\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mo0ka2\",\"data-framer-name\":\"yext\",name:\"yext\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-w16bu8\",\"data-styles-preset\":\"X1ScQMjcy\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Integrated HD Audio for Online Meetings\"})}),className:\"framer-9zlutq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y6dvwk\",\"data-styles-preset\":\"DPlOy0VMe\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Experience crystal-clear sound with our integrated HD audio feature for online meetings. Say goodbye to fuzzy calls and embrace conversations . with unparalleled clarity, ensuring every word is heard distinctly.\"})}),className:\"framer-3wfppx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gbwz0t\",\"data-framer-name\":\"image\",name:\"image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13wvdi6\",\"data-framer-name\":\"cta\",name:\"cta\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":kweYA22Cj\",webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined},{href:{hash:\":kweYA22Cj\",webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined},{href:{hash:\":kweYA22Cj\",webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gk7ool-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{aPIJcQDNQ:resolvedLinks4[2]},MsRu6q_2e:{aPIJcQDNQ:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(ButtonWithoutIcon,{aPIJcQDNQ:resolvedLinks4[0],height:\"100%\",id:\"PpBYqe80E\",IJ8Rzsu5g:\"var(--token-15b2631b-3952-418c-8fee-1fcfb2e39183, rgb(0, 0, 0))\",JRXRfq7xp:\"rgb(255, 255, 255)\",krKVQc9kv:\"var(--token-23a245a0-89dd-4471-9e48-3df6c8e56362, rgb(28, 100, 242))\",layoutId:\"PpBYqe80E\",variant:\"y8SH4tiKI\",width:\"100%\",XuT9qVtcz:\"Try For Free\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jperut\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:236,intrinsicWidth:231,loading:\"lazy\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/lvsfy68ZP4T9web36Tf0WQyd3I.svg\"},className:\"framer-1lah7x1\",\"data-framer-name\":\"Group\",name:\"Group\"})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition22},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gr6cvb\",\"data-framer-name\":\"Card\",name:\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e7bazx\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nj1wvn\",\"data-framer-name\":\"science _ thought, mind, idea, innovation, innovative, nerd\",name:\"science _ thought, mind, idea, innovation, innovative, nerd\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1tlg1gt\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:223,intrinsicWidth:204,name:\"Group\",svg:'<svg width=\"204\" height=\"223\" viewBox=\"0 0 204 223\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M104.429 4.91647C90.6493 7.13907 76.5898 9.99076 64.0382 16.3301C56.1053 20.3359 47.8833 26.148 43.112 34.0208C38.4032 41.7894 39.9504 49.7062 42.0597 58.0507C44.3077 66.9504 43.5538 74.5456 37.3161 81.5974C33.0282 86.4542 27.4891 89.972 22.2829 93.8089C14.2205 99.7413 6.48189 107.047 3.61865 116.636C0.755402 126.225 4.54377 138.377 13.9407 141.846C19.237 143.809 26.2124 143.321 29.2052 148.111C31.1826 151.273 30.387 155.396 31.3861 158.981C33.2364 165.633 40.7761 169.042 47.659 169.586C53.1945 170.018 58.7561 169.19 63.9249 167.162C68.2938 165.441 72.3042 162.892 76.6985 161.243C85.7601 157.841 95.8485 158.484 105.345 160.362C114.841 162.24 124.102 165.314 133.686 166.646C145.904 168.341 159.846 166.849 168.475 157.036C172.203 152.795 174.465 147.165 174.162 141.524C173.808 134.947 170.23 128.469 172.664 121.898C174.914 115.787 181.075 112.311 185.615 108.077C200.417 94.253 209.65 62.4474 190.525 48.189C182.481 42.1919 173.642 43.6374 164.37 44.1393C158.003 44.4839 147.234 45.0991 145.37 36.995C144.047 31.25 151.913 28.4377 154.897 24.8736C159.483 19.4085 157.408 11.4154 151.957 7.4328C147.794 4.39147 142.56 3.26976 137.447 2.6985C127.647 1.58642 117.731 2.13374 108.113 4.31746\" fill=\"#D1D7FF\"/>\\n<path d=\"M104.151 3.89959C91.9329 5.74983 79.6542 8.06263 68.1989 12.8524C57.937 17.1381 47.504 23.3988 41.5578 33.1103C38.4563 38.1776 37.7 44.0151 38.4355 49.8341C39.1478 55.4773 41.2779 60.9356 41.2109 66.6551C41.153 71.7294 39.2149 76.3434 35.829 80.1063C31.8695 84.5007 26.8784 87.6923 22.1094 91.1245C13.2699 97.4824 4.41883 105.482 1.36362 116.334C-1.13421 125.206 1.38443 136.016 8.97273 141.678C12.8351 144.559 17.4908 144.916 21.9961 146.123C23.8764 146.625 25.9047 147.335 27.1074 148.965C28.5992 150.991 28.428 153.857 28.6732 156.237C28.9484 158.906 29.5983 161.473 31.1664 163.689C32.5866 165.66 34.4072 167.31 36.5089 168.529C41.0004 171.175 46.3291 172.086 51.4866 171.95C58.129 171.776 64.207 169.762 70.1 166.811C72.8407 165.439 75.5513 163.985 78.4654 163.009C81.2758 162.073 84.1885 161.479 87.1408 161.239C99.919 160.18 112.177 164.433 124.46 167.169C134.889 169.482 146.069 170.777 156.407 167.294C166.847 163.774 175.677 154.909 176.19 143.445C176.461 137.411 173.494 131.726 173.917 125.71C174.287 120.432 178.385 116.787 182.211 113.656C185.58 110.897 188.798 108.161 191.497 104.721C194.143 101.357 196.393 97.6997 198.204 93.8213C205.325 78.5151 206.777 57.7416 191.869 46.4806C187.283 43.0114 181.762 41.6121 176.084 41.4595C171.068 41.323 166.065 41.9798 161.051 42.1163C157.478 42.2157 153.525 42.1857 150.518 40.4973C149.147 39.7272 148.169 38.7142 147.678 37.2155C147.132 35.5549 147.422 34.4401 148.462 33.1935C151.067 30.0967 155.019 28.5425 157.371 25.1612C160.255 21.0143 160.11 15.533 157.882 11.1433C155.364 6.18233 150.273 3.35609 145.083 1.9314C139.109 0.291626 132.634 -0.0460428 126.468 0.0395308C120.073 0.12973 113.828 1.00397 107.6 2.40784C105.107 2.96985 106.161 6.80216 108.657 6.24015C114.868 4.87864 121.21 4.20848 127.568 4.24189C133.441 4.24189 139.625 4.58187 145.248 6.42055C149.686 7.87298 153.726 10.6877 154.961 15.4104C155.49 17.3486 155.372 19.4064 154.624 21.271C153.93 22.9316 152.614 24.2453 151.302 25.2722C148.277 27.6335 144.274 29.8978 143.289 33.9244C142.278 38.0573 144.868 42.343 148.444 44.2973C151.936 46.2053 156.127 46.5129 160.031 46.4759C164.657 46.4297 169.25 45.8723 173.866 45.7983C179.167 45.715 184.313 46.5129 188.758 49.5866C191.971 51.8445 194.564 54.8739 196.3 58.3961C199.781 65.3345 199.751 73.7369 198.037 81.2812C196.275 89.0407 192.776 96.6406 187.694 102.79C184.919 106.158 181.547 108.771 178.235 111.579C174.229 114.972 170.691 119.04 169.962 124.427C169.15 130.44 171.963 135.991 172.171 141.9C172.356 147.268 169.976 152.495 166.296 156.325C159.534 163.36 149.505 165.345 140.09 165.005C128.008 164.565 116.52 160.189 104.725 157.997C98.8158 156.901 92.7447 156.253 86.7406 156.796C83.8031 157.038 80.8987 157.586 78.0746 158.429C75.0517 159.354 72.1954 160.742 69.3761 162.153C66.6863 163.506 64.0151 164.873 61.1403 165.796C58.2941 166.719 55.3396 167.267 52.3516 167.426C47.5826 167.657 42.6494 167.026 38.5118 164.493C36.7448 163.411 35.223 161.977 34.2424 160.141C33.1022 158.004 33.1253 155.552 32.894 153.202C32.6165 150.392 31.9851 147.749 30.0863 145.57C28.5367 143.796 26.3025 142.746 24.0915 142.066C19.9285 140.792 15.3607 140.741 11.7065 138.151C8.45698 135.868 6.48185 132.135 5.55673 128.354C3.19767 118.765 8.14706 109.826 14.7432 103.167C22.6714 95.1627 33.5416 90.2595 40.3528 81.1471C43.4209 77.0585 45.1205 72.106 45.2097 66.9951C45.3091 61.4444 43.4011 56.2637 42.4343 50.8679C41.4398 45.2987 41.7752 39.7017 44.7471 34.7662C47.5433 30.1406 51.5606 26.232 55.911 23.0519C65.2917 16.1968 76.3307 12.1517 87.5316 9.39018C93.2003 8.0025 98.943 6.91086 104.695 5.92098C106.034 5.6897 105.454 3.69607 104.138 3.89497L104.151 3.89959Z\" fill=\"#D1D7FF\"/>\\n<path d=\"M79.3469 220.507C79.673 214.698 79.8095 208.874 80.1217 203.062C80.4339 197.25 80.6467 191.442 80.5519 185.616L79.1341 187.034C94.4148 186.902 109.753 186.199 125.022 187.011L123.709 185.697C123.882 197.749 124.016 209.811 124.403 221.858C124.444 223.1 126.315 223.107 126.336 221.858C126.53 209.808 126.355 197.747 126.336 185.697C126.321 184.978 125.742 184.399 125.022 184.384C109.758 183.392 94.4148 183.921 79.1341 184.196C78.3549 184.208 77.7263 184.837 77.7164 185.616C77.8621 191.431 77.8043 197.248 77.6886 203.062C77.573 208.876 77.4412 214.716 78.0032 220.507C78.0864 221.361 79.3006 221.384 79.3492 220.507H79.3469Z\" fill=\"#111928\"/>\\n<path d=\"M64.1218 135.266C63.9275 142.614 63.939 149.961 64.0107 157.309C64.1287 169.116 65.1024 181.825 72.353 191.668C79.9852 202.013 93.8482 210.402 107.068 208.491C118.262 206.872 128.614 198.257 134.04 188.333C138.737 179.746 139.686 171.255 139.949 161.47C140.215 151.642 139.887 141.807 138.966 132.019C138.254 124.465 137.116 116.726 133.342 110.147C124.812 95.2937 104.524 90.5201 88.0615 95.2521C83.5377 96.5542 79.1041 98.49 75.5956 101.631C67.1978 109.143 65.8147 121.563 64.9891 132.798\" fill=\"white\"/>\\n<path d=\"M101.163 154.303C100.999 159.68 100.557 165.133 100.754 170.508C100.807 171.956 102.893 171.938 102.99 170.508C103.358 165.143 103.087 159.68 103.094 154.303C103.094 153.058 101.2 153.063 101.163 154.303Z\" fill=\"#111928\"/>\\n<path d=\"M63.4256 166.892C60.7892 167.26 58.1424 166.292 56.3669 164.308C54.5167 162.204 53.9362 159.283 53.7373 156.489C53.6309 155.02 53.6401 153.45 54.4311 152.205C55.0163 151.28 55.9668 150.649 56.922 150.112C57.8772 149.576 58.8671 149.118 59.9402 149.072C61.0134 149.025 62.1698 149.488 62.6693 150.441C62.8518 150.836 62.9749 151.256 63.0347 151.687L64.1588 157.617\" fill=\"white\"/>\\n<path d=\"M63.4252 166.098C60.7354 165.883 58.3116 165.235 56.7181 162.86C55.2749 160.683 54.8679 157.772 54.9095 155.2C54.9373 153.747 55.3929 152.626 56.6025 151.779C57.6294 151.06 59.1026 150.179 60.4047 150.392C61.834 150.623 61.841 152.152 62.0907 153.299C62.4238 154.839 62.8308 156.363 63.2171 157.892C63.4761 158.914 65.2523 158.736 65.1113 157.635C64.843 155.554 64.6001 153.447 64.2255 151.372C63.9155 149.665 62.9812 148.391 61.2373 147.949C59.3871 147.487 57.5183 148.289 55.9595 149.228C54.3406 150.197 53.0315 151.509 52.6406 153.41C52.2775 155.188 52.5019 157.066 52.7864 158.84C53.0708 160.614 53.6074 162.39 54.5834 163.908C56.3828 166.701 60.2868 168.818 63.6288 167.677C64.0033 167.564 64.24 167.195 64.1877 166.807C64.1354 166.419 63.8095 166.127 63.4183 166.116L63.4252 166.098Z\" fill=\"#111928\"/>\\n<path d=\"M140.575 166.892C143.211 167.26 145.858 166.292 147.634 164.308C149.484 162.204 150.065 159.283 150.263 156.489C150.37 155.02 150.361 153.45 149.57 152.205C148.984 151.28 148.034 150.649 147.079 150.112C146.124 149.576 145.134 149.118 144.072 149.072C143.01 149.025 141.843 149.488 141.343 150.441C141.161 150.836 141.037 151.256 140.978 151.687L139.854 157.617\" fill=\"white\"/>\\n<path d=\"M140.365 167.659C143.643 168.779 147.489 166.746 149.314 164.04C150.32 162.548 150.877 160.765 151.178 159.005C151.49 157.18 151.728 155.223 151.354 153.392C150.674 150.08 146.228 147.223 142.919 147.901C141.193 148.255 140.111 149.499 139.797 151.192C139.403 153.32 139.158 155.473 138.883 157.617C138.742 158.707 140.516 158.908 140.777 157.874C141.163 156.345 141.57 154.821 141.903 153.281C142.135 152.205 142.135 150.707 143.439 150.399C144.776 150.084 146.335 151.035 147.392 151.768C148.606 152.61 149.057 153.741 149.085 155.189C149.133 157.705 148.731 160.534 147.371 162.696C145.805 165.194 143.333 165.888 140.576 166.098C140.185 166.109 139.859 166.401 139.807 166.789C139.754 167.177 139.991 167.546 140.365 167.659Z\" fill=\"#111928\"/>\\n<path d=\"M116.863 206.198C130.187 199.916 138.624 186.925 140.606 172.542C141.686 164.701 141.637 156.669 141.438 148.771C141.235 140.692 140.796 132.521 139.53 124.533C138.432 117.594 136.237 110.813 131.741 105.302C128.121 100.864 123.269 97.6001 118.008 95.4238C106.885 90.8236 93.5913 91.0595 82.55 95.7661C76.2684 98.4443 71.3236 102.994 68.4257 109.203C65.6943 115.059 64.6235 121.538 64.08 127.937C63.9412 129.556 63.8348 131.175 63.7353 132.794C63.6359 134.413 66.106 134.385 66.2447 132.794C67.2601 121.052 68.6732 107.041 79.7307 100.241C84.916 97.052 91.1883 95.4284 97.227 94.9774C102.752 94.5414 108.31 95.1518 113.609 96.7768C118.697 98.3634 123.512 100.998 127.337 104.744C131.88 109.199 134.477 114.96 135.881 121.105C137.551 128.421 137.962 136.081 138.3 143.553C138.656 151.255 138.749 159.023 138.24 166.72C137.794 173.476 136.517 180.246 133.517 186.365C130.481 192.516 126.019 197.852 120.503 201.928C119.074 202.975 117.575 203.923 116.016 204.766C115.068 205.282 115.901 206.646 116.853 206.198H116.863Z\" fill=\"#111928\"/>\\n<path d=\"M63.2936 135.268C62.6437 142.46 62.461 149.632 62.5304 156.851C62.5882 162.695 62.8311 168.551 63.8418 174.317C64.8386 180.009 66.6981 185.601 69.8435 190.479C72.9634 195.31 77.1959 199.476 81.8862 202.776C87.1432 206.476 93.2028 209.136 99.6323 209.793C101.02 209.936 101.362 207.552 99.9654 207.33C89.1785 205.611 78.9975 199.094 72.8848 190.025C66.5917 180.691 65.6411 169.002 65.4954 158.058C65.396 150.453 65.241 142.867 64.9519 135.268C64.9103 134.187 63.3885 134.218 63.2936 135.268Z\" fill=\"#111928\"/>\\n<path d=\"M87.1474 157.331C87.3162 156.741 86.5553 156.382 86.0858 156.322C85.4218 156.243 84.7752 156.57 84.4461 157.153C83.7522 158.309 84.1731 160.02 85.6418 160.215C86.2887 160.33 86.9351 160.01 87.2345 159.425C87.5339 158.84 87.4159 158.128 86.9439 157.671C86.3934 157.139 85.2 157.439 85.4567 158.346C85.5126 158.507 85.6034 158.654 85.7227 158.776C85.843 158.91 85.7482 158.827 85.7597 158.799C85.7713 158.772 85.8476 158.628 85.8476 158.623C85.8476 158.681 85.6441 158.448 85.6163 158.36C85.5715 158.116 85.6444 157.866 85.8129 157.684C86.1807 157.351 86.9693 157.916 87.1358 157.331H87.1474Z\" fill=\"#111928\"/>\\n<path d=\"M119.154 157.331C119.323 156.741 118.562 156.382 118.095 156.322C117.43 156.243 116.783 156.57 116.453 157.153C115.759 158.309 116.18 160.021 117.649 160.215C118.294 160.318 118.934 160 119.242 159.424C119.524 158.837 119.408 158.136 118.953 157.671C118.4 157.139 117.207 157.439 117.464 158.346C117.519 158.508 117.611 158.655 117.732 158.776C117.85 158.91 117.755 158.827 117.767 158.799C117.778 158.772 117.857 158.628 117.857 158.624C117.857 158.681 117.653 158.448 117.625 158.36C117.581 158.116 117.654 157.866 117.822 157.685C118.192 157.352 118.978 157.916 119.145 157.331H119.154Z\" fill=\"#111928\"/>\\n<path d=\"M81.4856 149.773C82.5596 148.771 83.8766 148.067 85.3063 147.731C86.0025 147.553 86.7179 147.462 87.4364 147.46C88.1302 147.46 88.8241 147.664 89.5179 147.597C90.4638 147.502 90.9287 146.278 90.0221 145.746C88.5882 144.884 86.2592 145.173 84.7235 145.633C82.985 146.164 81.4205 147.151 80.1927 148.492C79.3925 149.357 80.6229 150.589 81.4856 149.784V149.773Z\" fill=\"#111928\"/>\\n<path d=\"M123.74 148.385C122.707 147.162 121.249 146.401 119.748 145.89C118.377 145.427 116.265 144.981 114.959 145.76C113.99 146.336 114.235 147.749 115.262 148.073C116.418 148.45 117.843 148.073 119.078 148.304C120.387 148.536 121.545 149.102 122.737 149.671C123.096 149.866 123.544 149.772 123.793 149.448C124.043 149.124 124.02 148.667 123.74 148.369V148.385Z\" fill=\"#111928\"/>\\n<path d=\"M99.6324 182.267C103.041 182.413 106.858 181.43 109.33 178.969C110.172 178.132 109.073 176.615 108.037 177.293C105.398 179.02 102.861 180.299 99.6324 180.299C98.3627 180.299 98.3719 182.21 99.6324 182.265V182.267Z\" fill=\"#111928\"/>\\n<path d=\"M58.9411 157.33C59.5054 157.226 60.1368 158.267 60.3635 158.669C60.5147 158.927 60.6468 159.196 60.759 159.474C60.817 159.639 60.8656 159.807 60.9047 159.978C60.9047 160.277 61.0411 160.237 61.3071 159.856L62.3294 160.126C62.2763 160.218 62.2366 160.317 62.2114 160.42C63.2614 159.754 62.3502 158.255 61.2493 158.773C60.2409 159.25 59.9911 160.665 60.7243 161.488C61.7003 162.582 63.0695 161.405 63.1157 160.246C63.2082 158.033 60.8654 155.02 58.4739 156.218C57.8194 156.546 58.3028 157.446 58.9365 157.33H58.9411Z\" fill=\"#111928\"/>\\n<path d=\"M144.698 155.67C143.696 156.248 142.907 157.272 142.234 158.197C141.631 159.025 140.752 160.182 141.615 161.155C142.424 162.081 143.927 161.495 144.304 160.462C144.49 159.948 144.372 159.375 143.999 158.976C143.626 158.577 143.062 158.421 142.537 158.572C141.164 158.97 141.774 160.85 143.113 160.654C143.185 160.654 143.576 159.497 143.641 159.347C143.805 158.998 143.99 158.659 144.193 158.332C144.586 157.677 145.118 157.113 145.498 156.46C145.625 156.231 145.585 155.945 145.399 155.759C145.213 155.574 144.927 155.534 144.698 155.663V155.67Z\" fill=\"#111928\"/>\\n<path d=\"M64.8342 150.84C66.7168 151.384 68.0212 149.111 68.4283 147.311C69.112 144.284 69.6186 141.22 69.9455 138.134C70.0195 137.424 70.0889 136.698 70.4081 136.052C70.9007 135.032 71.9137 134.341 72.781 133.571C77.5084 129.375 78.0866 122.641 78.3641 116.556C86.9371 120.747 95.9596 123.949 105.257 126.098C106.946 126.487 108.727 126.843 110.406 126.427C112.085 126.01 113.604 124.558 113.412 122.946C117.689 126.519 123.707 128.205 129.384 127.419C129.013 130.515 129.954 133.626 131.979 135.997C132.604 136.732 133.335 137.408 133.77 138.254C134.077 138.921 134.288 139.628 134.396 140.354L135.608 146.483C135.826 147.584 136.071 148.757 136.936 149.543C137.801 150.329 139.452 150.431 140.046 149.462C140.259 149.117 142.288 149.504 142.322 149.108C142.949 142.364 146.152 135 146.485 128.235C146.491 127.612 146.568 126.991 146.717 126.385C146.911 125.705 147.279 125.083 147.547 124.428C148.599 121.868 148.102 118.989 147.283 116.357C144.011 105.845 130.962 96.6978 120.455 91.8409C109.948 86.9841 97.4354 86.2208 86.1999 89.3339C80.7578 90.8441 75.2326 93.5617 72.7625 98.3353C72.4595 98.9204 72.2028 99.5356 71.7541 100.033C71.2499 100.59 70.5468 100.958 69.8761 101.326C62.0126 105.72 56.7718 113.944 56.3717 122.49C56.1774 126.653 57.0655 130.8 58.0045 134.878C58.8279 138.424 59.706 141.957 60.6388 145.477C61.0088 146.865 62.304 148.646 63.5946 147.869\" fill=\"#010101\"/>\\n<path d=\"M64.5868 151.738C68.1046 152.676 69.3303 148.423 69.8762 145.87C70.3002 143.89 70.6456 141.897 70.9123 139.889C71.0441 138.876 70.9933 137.639 71.4049 136.688C71.738 135.916 72.4619 135.388 73.084 134.859C78.4844 130.272 79.2731 123.209 79.6015 116.546L77.7304 117.621C84.2723 120.841 91.0765 123.497 98.0692 125.561C99.7807 126.065 101.503 126.533 103.236 126.965C105.012 127.407 106.851 127.93 108.697 127.941C111.548 127.96 114.941 126.209 114.765 122.936L112.453 123.896C117.184 127.786 123.309 129.557 129.387 128.792L127.999 127.405C127.585 131.105 128.91 134.632 131.355 137.375C131.931 138.023 132.493 138.622 132.759 139.457C133.09 140.493 133.221 141.61 133.439 142.674C133.814 144.579 134.008 146.654 134.681 148.483C135.264 150.068 136.434 151.314 138.173 151.509C138.868 151.602 139.574 151.48 140.197 151.159C140.463 151.014 140.851 150.782 140.997 150.498C141.277 149.945 140.68 150.847 140.611 150.69C140.611 150.706 140.817 150.671 140.907 150.69C142.306 150.97 143.583 150.345 143.752 148.895C143.981 146.985 144.327 145.09 144.788 143.222C145.729 139.32 146.941 135.474 147.54 131.501C147.813 129.699 147.644 127.624 148.414 125.95C149.242 124.162 149.7 122.39 149.571 120.399C149.134 113.512 144.755 107.48 139.94 102.859C129.357 92.701 114.93 85.8736 100.16 85.8227C92.759 85.7949 84.6365 87.0901 78.1398 90.8322C75.1039 92.5631 72.629 95.1295 71.0094 98.2262C70.1884 99.7365 68.1878 100.377 66.8186 101.337C65.4094 102.319 64.0884 103.422 62.8707 104.633C57.9838 109.529 54.8915 116.215 54.7597 123.167C54.6764 127.573 55.6848 131.931 56.6909 136.191C57.1951 138.333 57.7201 140.469 58.2659 142.6C58.7285 144.45 59.0268 146.564 60.2457 148.104C61.3142 149.457 62.7897 149.954 64.3856 149.21C66.1803 148.359 64.6169 145.696 62.8268 146.543C63.1251 146.402 62.9193 146.573 62.7874 146.277C62.6556 145.981 62.422 145.745 62.2994 145.447C61.9687 144.635 61.8184 143.71 61.6056 142.861C61.0968 140.877 60.6042 138.888 60.1277 136.896C59.2026 133.043 58.2081 129.144 58.0023 125.173C57.698 118.949 59.8442 112.854 63.9808 108.194C66.0073 105.933 68.3978 104.026 71.0534 102.553C71.8001 102.166 72.4745 101.653 73.047 101.036C73.6437 100.342 73.9721 99.5099 74.4347 98.7235C75.1588 97.4944 76.089 96.3991 77.1846 95.4856C79.4974 93.4989 82.4139 92.2292 85.2956 91.3225C88.6266 90.2772 92.0625 89.6017 95.5413 89.3081C102.646 88.6696 109.805 89.585 116.521 91.9909C122.381 94.121 127.946 97.4515 132.942 101.14C137.674 104.628 142.225 108.923 144.848 114.261C146.222 117.062 147.392 120.795 146.236 123.836C145.956 124.564 145.542 125.244 145.341 126.001C145.109 126.847 145.109 127.742 145.044 128.612C144.919 130.325 144.663 132.026 144.279 133.7C143.513 137.241 142.445 140.708 141.691 144.251C141.511 145.093 141.349 145.939 141.228 146.795C141.171 147.177 141.117 147.561 141.069 147.951C141.017 148.14 140.993 148.335 140.999 148.53C140.914 148.909 141.062 148.833 141.448 148.298C141.995 147.99 142.12 147.851 141.82 147.882C141.612 147.743 140.689 147.882 140.433 147.912C140.211 147.927 139.992 147.969 139.781 148.037C139.341 148.19 139.212 148.587 138.869 148.745C137.81 149.23 137.236 147.234 137.063 146.432C136.647 144.505 136.293 142.563 135.907 140.629C135.578 138.971 135.178 137.555 134.082 136.235C132.986 134.914 131.915 133.746 131.306 132.1C130.775 130.599 130.598 128.996 130.791 127.416C130.867 126.736 130.097 125.943 129.403 126.028C124.104 126.722 118.572 125.381 114.391 121.979C113.56 121.303 111.995 121.655 112.078 122.941C112.147 124.097 111.118 124.851 110.08 125.124C108.495 125.543 106.77 125.073 105.223 124.715C102.233 124.022 99.2711 123.221 96.3369 122.312C90.3893 120.471 84.5893 118.183 78.9863 115.468C78.1259 115.052 77.1569 115.556 77.1129 116.541C76.8608 122.363 76.3728 128.859 71.6686 132.941C70.5307 133.929 69.4229 134.877 69.0227 136.397C68.5602 138.115 68.5602 140.012 68.3127 141.769C68.0467 143.606 67.7831 145.493 67.3066 147.288C67.0569 148.229 66.3561 150.158 65.0817 149.938C63.9253 149.737 63.4096 151.418 64.5868 151.733V151.738Z\" fill=\"#111928\"/>\\n<path d=\"M88.2208 151.431C85.7739 150.566 83.1327 150.236 80.5886 150.881C78.2064 151.489 75.9214 152.757 74.6008 154.894C71.416 160.049 76.1087 165.921 80.8083 167.949C85.8849 170.137 91.9491 168.53 94.6851 163.555C96.9401 159.471 97.7056 152.1 91.9098 150.652C90.714 150.351 89.4744 150.347 88.2532 150.277C86.9951 150.208 85.7415 150.099 84.481 150.088C81.9971 150.062 79.0043 150.3 77.1703 152.183C76.0139 153.367 77.4964 155.377 78.9604 154.496C81.8606 152.757 85.1656 153.272 88.392 153.467C89.701 153.545 91.616 153.45 92.4509 154.676C93.4593 156.154 92.9575 158.358 92.4509 159.917C91.2807 163.456 88.1607 165.916 84.3215 165.331C80.8129 164.797 76.5412 161.538 77.1217 157.595C77.4108 155.618 79.2402 154.357 80.9748 153.689C83.1119 152.868 85.5588 152.315 87.8207 152.819C88.7458 153.025 89.0835 151.73 88.207 151.418L88.2208 151.431Z\" fill=\"#D1D7FF\"/>\\n<path d=\"M116.166 152.832C118.248 152.369 120.294 152.832 122.302 153.459C123.921 153.965 125.637 154.846 126.465 156.412C128.405 160.071 124.307 163.936 121.118 164.981C117.376 166.209 113.77 164.643 112.033 161.151C111.272 159.624 110.731 157.638 111.057 155.931C111.397 154.143 112.741 153.688 114.385 153.553C117.901 153.264 121.858 152.614 125.024 154.509C126.474 155.378 127.978 153.387 126.814 152.196C125.209 150.547 122.697 150.184 120.498 150.114C118.3 150.075 116.102 150.168 113.916 150.392C111.372 150.611 109.175 151.548 108.155 154.041C107.188 156.393 107.549 159.204 108.402 161.539C110.326 166.813 115.38 169.872 120.965 168.681C126.035 167.601 131.643 162.358 130.17 156.736C129.444 153.96 127.066 152.11 124.462 151.201C121.606 150.197 118.604 150.429 115.773 151.433C114.896 151.742 115.239 153.051 116.159 152.834L116.166 152.832Z\" fill=\"#D1D7FF\"/>\\n<path d=\"M63.5802 150.452C67.1142 152.983 70.4562 155.962 74.3579 157.932C76.5041 159.014 78.2665 156.024 76.2428 154.694C72.577 152.31 68.3145 150.915 64.3481 149.127C63.9861 148.923 63.5276 149.048 63.318 149.406C63.1084 149.765 63.2251 150.225 63.5802 150.441V150.452Z\" fill=\"#D1D7FF\"/>\\n<path d=\"M95.49 161.515C97.109 159.339 100.002 159.514 102.408 159.637C103.571 159.692 104.724 159.876 105.847 160.185C106.95 160.493 108.16 161.376 109.29 161.298C110.373 161.224 110.909 160.215 110.461 159.255C109.862 157.953 107.806 157.38 106.506 157.06C104.911 156.662 103.261 156.534 101.624 156.683C98.7117 156.991 95.5524 157.914 94.1486 160.729C93.686 161.64 94.9025 162.311 95.49 161.515Z\" fill=\"#D1D7FF\"/>\\n<path d=\"M141.489 147.155C139.255 148.61 137.035 150.074 134.826 151.566C133.811 152.26 132.8 152.954 131.778 153.62C130.709 154.325 129.55 154.887 128.494 155.604C126.997 156.622 127.876 159.376 129.803 158.708C132.252 157.857 134.25 155.713 136.188 154.061C138.328 152.233 140.451 150.393 142.555 148.543C143.302 147.886 142.324 146.616 141.489 147.155Z\" fill=\"#D1D7FF\"/>\\n<path d=\"M50.1078 7.11593C42.4964 10.192 36.4276 17.4726 35.9419 25.6669C35.4562 33.8611 41.3747 42.2959 49.4811 43.5934C51.3868 43.8964 53.7482 44.0976 54.5068 45.8715C54.8745 46.7296 54.7195 47.7218 54.9693 48.6237C55.4157 50.3005 57.1781 51.3552 58.9011 51.5171C60.6241 51.679 62.3333 51.1285 63.9754 50.5688C65.5018 50.0484 67.0583 49.491 68.2957 48.4572C69.533 47.4234 70.4073 45.8021 70.1112 44.2156C69.8938 43.0453 69.0728 42.0045 69.0936 40.8134C69.1167 39.5691 70.0349 38.5538 70.8398 37.6056C74.5402 33.2598 76.8785 27.6605 76.7813 21.9595C76.6842 16.2584 73.9805 10.5342 69.2879 7.29401C64.5952 4.05378 57.9552 3.63979 53.1653 6.73663\" fill=\"white\"/>\\n<path d=\"M49.976 6.63572C41.6685 9.82507 34.7278 17.714 34.8804 26.9629C34.9944 31.3888 36.638 35.6385 39.5314 38.9895C40.9068 40.6059 42.5662 41.9572 44.4276 42.9767C46.4282 44.0568 48.4727 44.4616 50.6722 44.8617C51.5071 45.0143 52.5964 45.1809 53.2163 45.8377C54.0512 46.7374 53.6626 48.3679 54.1414 49.4734C55.0365 51.5688 57.3631 52.6142 59.5464 52.6096C62.1159 52.6096 65.0116 51.5549 67.2804 50.3847C69.2602 49.3624 71.0225 47.5584 71.2122 45.234C71.3116 44.0036 70.8121 43.0253 70.405 41.9082C69.8499 40.3887 70.6363 39.4729 71.5799 38.3442C73.1964 36.4302 74.5491 34.3082 75.6019 32.0349C77.6556 27.5041 78.4027 22.409 77.2208 17.5359C75.9927 12.4478 72.6993 7.72043 67.9095 5.41456C63.1197 3.1087 57.3053 3.18271 52.7953 6.1084C52.0113 6.61491 52.7236 7.85688 53.5308 7.36888C57.3654 5.05608 62.2524 4.915 66.3299 6.70973C70.2871 8.45127 73.2359 12.0292 74.6767 16.0604C76.2171 20.3738 76.0321 25.0155 74.5079 29.3081C73.7141 31.501 72.6088 33.5683 71.2261 35.4463C70.0697 37.0421 68.1685 38.5477 68.0436 40.657C67.9858 41.6816 68.4021 42.5535 68.7583 43.4833C69.2209 44.6882 69.163 45.7359 68.3952 46.8044C67.0422 48.6894 64.3455 49.4017 62.2293 50.0215C60.268 50.5951 56.9584 50.9999 56.0495 48.5252C55.6702 47.4937 55.9153 46.365 55.4319 45.3427C55.0443 44.56 54.4094 43.9268 53.6256 43.5411C52.0067 42.6923 50.0917 42.7362 48.3525 42.2644C46.4253 41.7348 44.6352 40.7952 43.1047 39.5099C40.0838 36.9576 38.017 33.4568 37.2418 29.5787C35.3684 20.272 42.1472 11.1781 50.353 7.54928C50.8665 7.318 50.4987 6.4322 49.9691 6.62416L49.976 6.63572Z\" fill=\"#111928\"/>\\n<path d=\"M102.167 51.7701C102.364 49.337 102.25 46.867 102.26 44.427C102.26 43.2428 102.199 42.3292 103.483 41.9222C104.552 41.5845 105.729 41.4411 106.832 41.2515C107.41 41.1513 107.99 41.0595 108.571 40.9763C109.066 40.9046 109.936 40.6802 110.438 40.8652C111.432 41.233 111.212 43.259 111.277 44.043L111.869 51.1896C111.879 51.6185 112.224 51.9638 112.653 51.9736L119.067 51.7817C120.02 51.7539 121.028 51.6336 121.979 51.71C123.253 51.8117 123.165 53.4168 123.269 54.4206C123.372 55.4195 123.424 56.423 123.426 57.4272C123.426 57.9314 123.426 58.4356 123.392 58.9375C123.348 59.7053 123.091 60.0129 122.33 60.117C120.133 60.4177 117.913 60.6073 115.709 60.8525L102.623 62.3095L96.0798 63.0381L92.9205 63.3896C92.6291 63.422 91.9098 63.6394 91.6646 63.4266C91.4704 63.2555 91.5906 62.1199 91.5791 61.8076L91.4287 58.35C91.4079 57.8759 91.253 57.1682 91.364 56.701C91.549 55.9355 92.185 55.991 92.791 55.8961C95.2865 55.5053 97.7866 55.126 100.284 54.7397C101.392 54.5686 100.923 52.8895 99.8219 53.0537C97.0974 53.4816 94.2712 53.7475 91.5906 54.3489C89.0327 54.9294 89.6779 57.6423 89.7705 59.6475C89.826 60.8825 89.8167 62.143 89.9462 63.3757C90.0364 64.2569 90.4828 64.9739 91.401 65.1473C92.5042 65.3578 93.8479 64.9785 94.9534 64.8513L99.4565 64.3564L116.386 62.4321L120.498 61.9695C121.544 61.8516 122.959 61.9256 123.907 61.3983C124.687 60.9635 124.918 60.1447 124.987 59.3168C125.083 57.9742 125.07 56.6262 124.95 55.2856C124.791 53.204 124.812 50.3038 122.133 50.1234C120.614 50.0216 119.034 50.1997 117.508 50.2506L112.651 50.4102L113.435 51.1942C113.169 48.0812 113.04 44.9173 112.621 41.8227C112.212 38.8161 109.614 39.2787 107.301 39.6418C105.856 39.8731 104.33 40.0766 102.93 40.5183C101.968 40.8213 101.249 41.4434 101.001 42.4379C100.671 43.784 100.964 45.3613 101.02 46.7259C101.092 48.4096 101.11 50.1003 101.311 51.7747C101.328 52.0007 101.516 52.1756 101.743 52.1756C101.969 52.1756 102.157 52.0007 102.174 51.7747L102.167 51.7701Z\" fill=\"#111928\"/>\\n<path d=\"M24.6322 77.7399C24.9126 81.9434 25.5548 86.115 26.5519 90.2082C26.7831 91.1888 27.1324 92.2758 28.0297 92.7523C28.6079 93.0529 29.2971 93.0205 29.947 92.972C34.1147 92.6477 38.2293 91.831 42.2049 90.5389C43.2433 90.2012 44.3303 89.7873 44.9802 88.92C45.8637 87.7497 45.7111 86.1261 45.5191 84.6737C45.129 81.7086 44.7374 78.7452 44.3442 75.7833C44.1638 74.4326 43.9325 72.9732 42.9565 72.025C41.6544 70.7598 39.5845 70.8894 37.7828 71.0998L27.7846 72.2932C27.0283 72.3834 26.2512 72.4806 25.5874 72.8506C24.9236 73.2207 24.3963 73.9446 24.4842 74.7009\" fill=\"#010101\"/>\\n<path d=\"M24.2191 77.7403C24.359 80.5398 24.6532 83.3294 25.1003 86.0965C25.3085 87.387 25.5521 88.6722 25.8312 89.9519C26.0463 90.9325 26.2729 91.9987 26.9691 92.7689C28.4793 94.441 31.6571 93.62 33.5929 93.3448C36.4452 92.9433 39.26 92.3098 42.0092 91.4506C44.026 90.8169 45.9641 89.9334 46.4035 87.6484C46.6209 86.492 46.4567 85.3494 46.3064 84.2069C46.1121 82.7267 45.9155 81.2458 45.7166 79.764C45.5293 78.3555 45.3489 76.947 45.1569 75.5408C45.0066 74.4585 44.8331 73.346 44.2873 72.3816C43.2026 70.4643 41.0494 70.0156 39.0003 70.1405C35.7924 70.3324 32.5753 70.8782 29.3836 71.2622C27.3738 71.4934 23.3703 71.6831 23.7543 74.6828C23.7543 75.0903 24.0846 75.4206 24.4921 75.4206C24.8995 75.4206 25.2298 75.0903 25.2298 74.6828C25.3732 73.4339 26.7956 73.228 27.7924 73.1008C29.002 72.9482 30.2162 72.8141 31.4281 72.6707C33.6623 72.4047 35.8942 72.1063 38.1353 71.8751C39.9855 71.6831 42.215 71.5975 43.0477 73.6328C43.8063 75.483 43.7901 77.7958 44.0491 79.764C44.3266 81.864 44.7707 84.0173 44.8331 86.1404C44.8632 87.1118 44.7314 88.104 43.9589 88.7816C43.1864 89.4593 42.0971 89.7067 41.1673 89.9889C39.1056 90.6297 37.0062 91.1426 34.8812 91.5246C33.8173 91.7166 32.7464 91.8785 31.6756 92.0195C30.6649 92.1514 28.9003 92.6301 28.0561 91.897C27.309 91.254 27.131 89.8733 26.9182 88.9759C26.6221 87.781 26.3562 86.5775 26.1203 85.3656C25.634 82.8416 25.2788 80.2941 25.0564 77.7334C25.0101 77.2107 24.2006 77.1945 24.2284 77.7334L24.2191 77.7403Z\" fill=\"#111928\"/>\\n<path d=\"M163.311 7.14844C157.649 7.30262 151.989 7.5339 146.332 7.84228C144.73 7.93016 142.937 8.11519 141.906 9.3456C140.347 11.2051 141.549 14.0221 142.937 16.018C146.51 21.1918 150.972 25.6786 155.408 30.1261C156.007 30.7274 156.666 31.3611 157.505 31.4883C159.314 31.7613 160.489 29.6913 161.116 27.9729L165.903 14.8107C166.703 12.6136 167.444 9.96774 166.033 8.10362\" fill=\"#010101\"/>\\n<path d=\"M163.311 6.63285C160.096 6.6606 156.883 6.71457 153.671 6.79474C150.709 6.87107 147.644 6.77162 144.702 7.16248C142.607 7.44002 140.65 8.55016 140.338 10.8098C139.996 13.2868 141.513 15.5926 142.882 17.4984C146.21 22.0916 150.17 26.1783 154.175 30.1772C155.7 31.6967 157.617 33.3272 159.726 31.7129C161.648 30.2327 162.24 27.3995 163.015 25.237C164.187 21.979 165.355 18.7188 166.519 15.4562C167.398 12.9977 168.33 10.0859 166.678 7.73605C166.133 6.95895 164.849 7.68517 165.388 8.49003C166.646 10.3634 165.839 12.6716 165.136 14.6074C164.259 17.015 163.36 19.4134 162.472 21.8164C161.63 24.0899 160.961 26.5484 159.87 28.7132C159.523 29.407 158.958 30.4223 158.126 30.605C156.939 30.8641 155.882 29.3469 155.154 28.6091C151.819 25.2278 148.479 21.8349 145.556 18.0812C144.24 16.3929 142.667 14.5287 142.181 12.3894C141.596 9.81064 143.655 8.87395 145.845 8.68893C151.648 8.15467 157.492 7.92339 163.311 7.66667C163.973 7.6366 163.979 6.62591 163.311 6.63285Z\" fill=\"#111928\"/>\\n<path d=\"M192.537 39.7624C186.038 43.7497 179.506 47.6884 172.989 51.6479C171.809 52.3649 170.311 53.0101 169.751 54.3631C169.288 55.4686 169.501 56.736 170.059 57.7676C170.766 59.0766 171.981 60.1081 173.065 61.1049C174.423 62.3654 175.841 63.5681 177.288 64.7198L177.14 63.5819C175.436 65.9433 173.828 68.3764 172.341 70.8834C171.469 72.3498 168.946 75.5229 171.171 76.9592C172.943 78.104 176.028 76.5197 177.647 75.7172C179.997 74.5608 182.101 72.9788 184.25 71.4986C186.602 69.8797 189.047 68.4342 191.547 67.0558C193.314 66.0798 195.277 64.7175 195.354 62.4857C195.435 60.1428 193.552 58.4498 191.806 57.2055C190.865 56.5325 189.808 55.8803 189.167 54.8927C188.73 54.1989 188.899 53.9676 189.292 53.3478C189.77 52.6068 190.286 51.8904 190.837 51.2015C192.574 48.972 194.426 46.8072 195.381 44.0943C195.756 43.035 196.165 41.5687 195.786 40.4632C195.469 39.5381 194.651 39.0293 193.744 39.4733C192.837 39.9174 193.628 41.2611 194.549 40.861L194.743 40.7662L194.126 40.8471C194.604 40.9304 193.823 43.3126 193.702 43.6364C193.297 44.6594 192.771 45.63 192.134 46.5274C190.899 48.336 189.382 49.9318 188.098 51.7057C187.606 52.388 186.942 53.179 186.903 54.0555C186.847 54.9806 187.365 55.8202 187.923 56.5025C189.1 57.9387 190.832 58.7042 192.132 59.9971C192.773 60.6354 193.459 61.5305 193.365 62.4972C193.263 63.5311 192.356 64.2388 191.544 64.7545C189.78 65.8762 187.879 66.7829 186.1 67.8884C182.485 70.1202 179.111 73.1454 175.084 74.6117C174.54 74.8106 173.984 74.9767 173.419 75.1089C172.7 75.2755 172.263 75.4027 172.561 74.5562C172.961 73.3813 173.859 72.1948 174.488 71.1286C175.82 68.8713 177.244 66.6718 178.759 64.5302C178.974 64.1613 178.914 63.6938 178.611 63.3923C176.366 61.6507 173.886 59.8005 172.055 57.6103C171.573 57.0367 171.162 56.3452 171.178 55.5727C171.196 54.7193 171.777 54.3007 172.425 53.8682C173.773 52.9731 175.151 52.1197 176.511 51.2455C182.027 47.7069 187.532 44.1544 193.062 40.639C193.612 40.2897 193.11 39.4178 192.548 39.7624H192.537Z\" fill=\"#111928\"/>\\n<path d=\"M138.573 65.9081C138.72 74.0831 139.365 82.2415 140.502 90.3382C140.56 90.7499 140.631 91.1917 140.923 91.4946C141.265 91.8462 141.806 91.8971 142.297 91.9248C144.378 92.0405 146.485 92.1561 148.479 91.5848C150.472 91.0136 152.362 89.6351 152.966 87.6531C153.308 86.5244 153.213 85.3148 153.114 84.1399L151.539 65.2814C151.381 63.4011 151.108 61.2987 149.621 60.1377C148.446 59.2126 146.846 59.164 145.343 59.1478C143.756 59.1316 142.132 59.1201 140.638 59.6474C139.144 60.1747 137.777 61.3589 137.488 62.9177\" fill=\"white\"/>\\n<path d=\"M138.15 65.9079C138.113 72.6406 138.476 79.3696 139.237 86.0593C139.404 87.551 139.545 89.0659 139.785 90.5369C139.973 91.6933 140.509 92.4311 141.707 92.6184C144.27 93.0231 147.399 92.9607 149.802 91.9084C151.914 90.9832 153.595 89.2232 153.905 86.8803C154.085 85.5112 153.884 84.1165 153.771 82.7497L153.308 77.2313L152.464 67.1105C152.267 64.7677 152.332 61.8882 150.644 60.031C148.763 57.9495 145.093 58.1808 142.565 58.4491C140.037 58.7174 137.341 59.9894 136.765 62.707C136.563 63.6506 137.977 64.0553 138.219 63.1071C138.855 60.6254 141.506 59.9871 143.752 59.9154C145.798 59.8483 148.692 59.5847 149.904 61.6153C151.06 63.5419 150.861 66.3357 151.042 68.4913L151.735 76.7711C151.967 79.484 152.253 82.1992 152.411 84.9168C152.554 87.3706 151.742 89.2533 149.478 90.3773C147.36 91.4296 144.605 91.418 142.308 91.1521C141.645 91.0758 141.397 90.9925 141.263 90.2917C141.154 89.7228 141.09 89.1353 141.009 88.5641C140.799 87.053 140.605 85.5405 140.428 84.0263C139.734 78.0131 139.293 71.9558 139.008 65.9056C139.008 65.6718 138.819 65.4823 138.585 65.4823C138.351 65.4823 138.162 65.6718 138.162 65.9056L138.15 65.9079Z\" fill=\"#111928\"/>\\n<path d=\"M68.9279 62.7374C65.8981 61.9326 63.213 64.0441 61.365 66.2367C59.4408 68.5171 57.9143 71.3734 58.3237 74.4448C59.0661 80.0325 65.0424 83.6174 70.119 80.7217C72.5819 79.344 74.0515 76.6898 73.912 73.8712C73.8611 72.3471 73.6391 70.372 72.7163 69.1069C71.923 68.0222 70.5885 67.4324 69.2818 67.2751C66.6937 66.9652 63.9507 68.3228 62.8753 70.7443C61.8484 73.0571 62.4844 76.1979 65.0748 77.1161C68.0328 78.1638 70.3942 75.844 70.1352 72.8952C70.0265 71.6533 69.2841 70.3511 67.8571 70.4876C66.3699 70.6379 65.7755 72.2338 66.511 73.4295C66.9736 74.165 68.0513 73.522 67.6674 72.7518L68.5232 72.2661L68.6434 72.6431C68.6967 72.8703 68.7139 73.1045 68.6943 73.337C68.7052 73.8065 68.6169 74.273 68.4353 74.7061C68.0421 75.5734 67.1332 75.9342 66.215 75.8371C64.1728 75.6197 63.5275 73.411 64.1173 71.6856C64.7232 69.9187 66.518 68.7969 68.3474 68.7276C69.2625 68.6762 70.1689 68.9282 70.9262 69.4445C71.997 70.217 72.2005 71.8036 72.3416 73.0363C72.5729 75.023 72.1982 76.9126 70.7596 78.3557C69.5678 79.5509 67.9645 80.2459 66.2774 80.2985C62.5307 80.3794 59.6998 76.79 59.7345 73.2213C59.7576 70.8276 61.0459 68.6535 62.5237 66.8542C64.0016 65.0548 66.1757 63.0751 68.7221 63.4659C69.1846 63.5399 69.4159 62.8623 68.9256 62.7328L68.9279 62.7374Z\" fill=\"#111928\"/>\\n<path d=\"M169.071 90.7084C173.35 91.6891 172.642 96.9183 171.546 99.9874C170.403 103.191 168.916 107.213 165.412 108.475C164.825 108.686 163.793 108.989 163.215 108.612C162.429 108.11 163.162 106.678 163.527 106.068C164.415 104.581 165.852 103.524 167.42 102.844C169.147 102.106 170.976 101.638 172.845 101.456C174.663 101.283 175.389 102.568 175.572 104.201C175.917 107.34 174.807 111.371 171.909 112.99H172.862C173.183 113.221 173.128 112.856 173.306 112.497C173.436 112.223 173.602 111.967 173.801 111.736C174.057 111.452 174.407 111.154 174.821 111.151C175.165 111.151 175.746 111.475 175.352 111.877C174.557 112.71 175.771 113.915 176.613 113.138C178.533 111.359 176.268 108.767 174.069 109.398C172.29 109.909 169.906 113.159 171.913 114.62C172.207 114.797 172.573 114.797 172.866 114.62C176.488 112.608 177.924 107.731 177.383 103.81C177.136 102.025 176.266 100.233 174.395 99.7376C173.239 99.4346 172.024 99.7376 170.896 99.9804C169.601 100.234 168.332 100.605 167.105 101.088C165.024 101.944 163.046 103.339 161.966 105.372C161.103 106.991 160.611 109.509 162.852 110.203C164.721 110.781 166.807 109.74 168.204 108.556C169.978 107.055 171.028 104.944 171.849 102.814C172.85 100.221 173.974 97.293 173.451 94.469C173.051 92.3043 171.541 90.306 169.316 89.8619C168.754 89.7486 168.511 90.5974 169.085 90.7269L169.071 90.7084Z\" fill=\"white\"/>\\n<path d=\"M93.9637 72.178C94.6575 74.3058 95.5826 76.3619 96.2765 78.4966C96.5077 79.2112 97.6503 78.8967 97.4028 78.1867C96.665 76.0543 95.874 73.8062 94.6991 71.8727C94.4678 71.498 93.8295 71.7386 93.9729 72.178H93.9637Z\" fill=\"white\"/>\\n<path d=\"M93.3903 77.1752C95.2406 75.7273 97.2897 74.712 99.2487 73.4492C99.7505 73.1231 99.436 72.1818 98.8162 72.427C96.5866 73.3035 94.5537 74.9826 92.8029 76.59C92.4005 76.9601 92.981 77.4943 93.388 77.1752H93.3903Z\" fill=\"white\"/>\\n<path d=\"M41.6368 104.109C44.2253 106.675 47.2307 108.783 50.5249 110.342C51.5379 110.805 52.4284 109.313 51.4061 108.832C48.2015 107.367 45.193 105.507 42.4509 103.295C41.8889 102.832 41.0956 103.582 41.6368 104.109Z\" fill=\"white\"/>\\n<path d=\"M48.4525 94.149C48.9544 95.509 50.2172 96.7324 51.1122 97.8495C52.1915 99.2079 53.2916 100.547 54.4126 101.867C55.1411 102.725 56.4594 101.444 55.6615 100.618C54.5128 99.4291 53.3772 98.2265 52.2547 97.01C51.2625 95.9299 50.2981 94.4543 49.0492 93.6818C48.9056 93.6007 48.7274 93.6137 48.5971 93.7147C48.4667 93.8158 48.4097 93.9851 48.4525 94.1444V94.149Z\" fill=\"white\"/>\\n<path d=\"M57.5946 85.5964C58.8897 89.2599 60.6752 92.8262 62.2988 96.3556C62.6318 97.0771 63.698 96.4481 63.3673 95.7288C61.7645 92.2457 60.2358 88.6146 58.3208 85.2911C58.1011 84.9118 57.4396 85.1639 57.5946 85.5964Z\" fill=\"white\"/>\\n<path d=\"M67.6116 88.9219C68.1475 89.7096 68.3457 90.6791 68.162 91.614C68.051 92.1991 68.9368 92.4512 69.0617 91.8615C69.3206 90.6876 69.0637 89.459 68.3563 88.4871C68.0371 88.043 67.2993 88.4547 67.6116 88.9219Z\" fill=\"white\"/>\\n<path d=\"M43.0538 117.603L45.0799 117.416C45.7621 117.353 45.7598 116.275 45.0799 116.349L43.0538 116.581C42.4016 116.65 42.3854 117.675 43.0538 117.614V117.603Z\" fill=\"white\"/>\\n<path d=\"M106.857 13.2672C105.238 15.6032 103.529 17.9044 102 20.3005C101.625 20.8856 102.532 21.3944 102.925 20.8393C104.556 18.5104 106.038 16.068 107.581 13.6697C107.865 13.2256 107.174 12.8371 106.887 13.2603L106.857 13.2672Z\" fill=\"white\"/>\\n<path d=\"M101.538 15.0493C103.451 16.7723 105.109 18.6734 106.802 20.6C107.17 21.0209 107.928 20.452 107.586 19.9964C106.03 17.9287 104.117 16.1039 102.16 14.4225C101.735 14.0571 101.115 14.6538 101.538 15.0447V15.0493Z\" fill=\"white\"/>\\n<path d=\"M55.097 48.5487L54.3893 45.7895C54.2857 45.4776 54.251 45.147 54.2875 44.8205C54.4355 44.0387 55.3075 43.6641 56.0614 43.4073L63.3606 40.9673C64.9403 40.44 66.5985 39.9034 68.2406 40.174C68.7495 41.187 69.2629 42.2116 69.5127 43.3171C69.7625 44.4227 69.7255 45.6299 69.1727 46.6221C68.5991 47.649 67.5537 48.3151 66.506 48.854C64.3758 49.9516 62.0844 50.7034 59.718 51.0812C58.5616 51.2662 57.1878 51.2894 56.4176 50.3989C56.2668 50.1807 56.0922 49.9798 55.8972 49.7999C55.6884 49.6206 55.3799 49.6206 55.171 49.7999\" fill=\"#010101\"/>\\n<path d=\"M55.5294 48.4272L55.1038 46.4359C54.9211 45.5709 54.6412 44.9048 55.5386 44.3243C56.089 43.9635 56.9101 43.827 57.5299 43.6304L59.6808 42.9366C62.3475 42.0716 65.3865 40.5729 68.2382 40.9383L67.586 40.5637C68.451 42.3006 69.6374 44.7036 68.3145 46.5353C67.2552 47.9993 65.0118 48.7926 63.3929 49.3593C61.8179 49.9097 59.6554 50.7146 57.967 50.3792C56.7945 50.1479 56.1492 48.2214 54.8008 49.1719C54.4776 49.3859 54.3776 49.8149 54.573 50.1497C54.7683 50.4844 55.191 50.6085 55.5363 50.4324C55.2773 50.5434 56.8176 51.6374 56.9563 51.6929C57.739 51.9633 58.5759 52.038 59.394 51.9103C61.4571 51.6492 63.4711 51.089 65.3726 50.2474C67.0309 49.5373 68.9182 48.6677 69.841 47.0094C70.7638 45.3512 70.4677 43.376 69.7878 41.7016C69.5287 41.0563 69.2234 39.9045 68.6314 39.5183C67.9815 39.102 66.7141 39.3518 65.9971 39.4697C63.719 39.8467 61.4964 40.8366 59.3223 41.5836C58.1798 41.9768 57.0257 42.3445 55.8948 42.7631C55.2264 43.0106 54.5348 43.272 54.0862 43.8571C53.0778 45.1661 54.2666 47.3124 54.6736 48.6631C54.7497 48.8867 54.9861 49.0131 55.2143 48.952C55.4425 48.891 55.5843 48.6636 55.5386 48.4318L55.5294 48.4272Z\" fill=\"#111928\"/>\\n<path d=\"M56.9006 40.1339C56.6184 38.4109 55.7442 36.9423 54.5878 35.6587C54.0151 35.0323 53.4024 34.4436 52.7538 33.8963C52.12 33.3528 51.4285 32.6312 50.6352 32.319C49.6592 31.9374 48.216 32.5641 48.5745 33.8015C49.0371 35.3696 51.2227 35.0111 52.3074 34.5439C54.7474 33.4939 59.676 30.885 59.2134 27.5824C59.0515 26.4144 57.8257 25.3551 56.6184 25.8524C55.4112 26.3496 55.4135 27.8738 56.0888 28.785C57.1781 30.2467 59.9535 30.3091 61.6002 30.3276C63.5291 30.3485 65.3747 29.7425 66.5126 28.1166C66.6141 27.9447 66.6141 27.7312 66.5126 27.5592C66.0761 26.8121 65.1739 26.4757 64.3548 26.7544C63.2469 27.099 62.7774 28.26 62.6109 29.31C62.4069 30.6702 62.4611 32.0566 62.7705 33.3967C62.9323 34.1118 63.1647 34.8091 63.4643 35.4783C63.6956 36.0102 64.6207 37.1412 64.4403 37.717C64.2368 38.3947 65.2776 38.6745 65.495 38.0085C65.7471 37.229 65.3631 36.6693 64.9885 35.9986C64.5064 35.1519 64.143 34.2429 63.9084 33.2973C63.6688 32.3477 63.5675 31.3686 63.6077 30.3901C63.6115 29.841 63.6965 29.2954 63.8598 28.7711C64.0657 28.2091 64.9954 27.1522 65.5482 28.1074V27.5592C64.0148 29.7518 60.3906 29.4742 58.1241 28.7827C57.6615 28.6439 57.199 28.445 56.9353 28.0334C56.6231 27.543 56.6346 27.4112 57.1851 27.173C58.4988 26.6017 58.1102 28.519 57.7286 29.1712C57.0764 30.2906 56.0032 31.1348 54.9347 31.8263C53.9497 32.4971 52.9045 33.0747 51.8124 33.5517C51.5095 33.6743 51.107 33.8709 50.7671 33.8292C50.3924 33.9742 50.2899 33.8346 50.4595 33.4106L50.7462 33.591C51.2296 33.7737 51.8309 34.3936 52.2102 34.6965C54.0605 36.1744 55.7766 37.9044 56.2761 40.3051C56.3617 40.7167 56.97 40.5363 56.9006 40.1339Z\" fill=\"#D1D7FF\"/>\\n<path d=\"M58.1426 31.1659C58.3114 33.8996 59.0538 36.6611 59.8309 39.2769C59.9998 39.8482 60.911 39.5984 60.726 39.0294C59.8749 36.4113 59.3799 33.7493 58.7277 31.0873C58.6869 30.9449 58.5479 30.8541 58.4012 30.8738C58.2544 30.8935 58.1443 31.0179 58.1426 31.1659H58.1426Z\" fill=\"#D1D7FF\"/>\\n<path d=\"M157.046 135.759C159.668 133.461 162.474 131.383 165.437 129.545L164.544 128.652C162.828 131.322 161.112 133.995 159.396 136.668L156.699 140.864C156.044 141.883 155.172 143.028 155.337 144.317C155.633 146.657 158.396 146.74 160.045 145.882C161.338 145.209 162.525 144.263 163.725 143.431L167.712 140.699L166.628 139.615L162.014 150.161C161.801 150.649 162.032 151.489 162.721 151.396C164.763 151.148 166.716 150.419 168.42 149.268L167.199 148.773C167.414 149.964 167.316 151.189 166.914 152.33C166.577 153.339 168.163 153.767 168.501 152.768C168.984 151.341 169.087 149.813 168.799 148.334C168.709 147.823 167.999 147.554 167.581 147.837C166.065 148.877 164.326 149.545 162.504 149.786L163.429 150.991L167.995 140.413C168.272 139.77 167.641 138.821 166.91 139.328L161.128 143.329C160.272 143.921 159.204 144.89 158.107 144.918C157.342 144.936 156.757 144.499 156.865 143.653C156.944 143.024 157.527 142.314 157.851 141.803C160.459 137.639 163.068 133.476 165.675 129.313C165.817 129.056 165.772 128.735 165.564 128.526C165.356 128.318 165.036 128.272 164.777 128.414C161.707 130.28 158.864 132.496 156.306 135.019C155.822 135.505 156.537 136.199 157.048 135.761L157.046 135.759Z\" fill=\"#111928\"/>\\n<path d=\"M22.8145 122.673C25.0093 127.446 26.9775 132.287 28.4693 137.326C28.6728 138.02 29.7622 137.717 29.5471 137.028C27.9697 131.954 26.027 126.951 23.5338 122.254C23.2794 121.775 22.6087 122.196 22.8168 122.673H22.8145Z\" fill=\"#111928\"/>\\n<path d=\"M17.9577 131.927C22.5926 129.831 27.2182 127.717 31.8345 125.583C32.5538 125.252 31.927 124.17 31.2101 124.514C26.6354 126.713 22.0653 128.921 17.4998 131.138C16.9655 131.399 17.4327 132.167 17.9624 131.927H17.9577Z\" fill=\"#111928\"/>\\n<path d=\"M116.665 75.7786C117.528 75.7786 117.528 74.4395 116.665 74.4395C115.803 74.4395 115.8 75.7786 116.665 75.7786Z\" fill=\"#111928\"/>\\n<path d=\"M124.372 86.5588C125.003 86.5588 125.003 85.5781 124.372 85.5781C123.74 85.5781 123.738 86.5588 124.372 86.5588Z\" fill=\"#111928\"/>\\n<path d=\"M131.267 29.4325C131.998 29.4325 131.998 28.2969 131.267 28.2969C130.536 28.2969 130.534 29.4325 131.267 29.4325Z\" fill=\"#111928\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yoiml7\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-w16bu8\",\"data-styles-preset\":\"X1ScQMjcy\",children:\"Customize your Avatar\"})}),className:\"framer-10jzi12\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y6dvwk\",\"data-styles-preset\":\"DPlOy0VMe\",children:\"Use your avatar during the meeting to represent yourself uniquely, maintaining a professional demeanor while showcasing your individuality.\"})}),className:\"framer-kuju9v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition23},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nu6lyz\",\"data-framer-name\":\"Card\",name:\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qgyrzo\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-w16bu8\",\"data-styles-preset\":\"X1ScQMjcy\",children:\"Integrated Real Time Video into Your Product\"})}),className:\"framer-1rc8i7q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y6dvwk\",\"data-styles-preset\":\"DPlOy0VMe\",children:\"integrating live video can transform your product into a dynamic and interactive experience.\"})}),className:\"framer-1sqqka3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-134q2pf\",\"data-framer-name\":\"Art\",name:\"Art\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y968se\",\"data-framer-name\":\"social media _ social network, social, photo, picture, image, posts\",name:\"social media _ social network, social, photo, picture, image, posts\",style:{rotate:-8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:237,intrinsicWidth:259,loading:\"lazy\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/fMDXKgRGUAsjtC24c1jnaZVf164.svg\"},className:\"framer-l9fd7d\",\"data-framer-name\":\"Group\",name:\"Group\",style:{rotate:8}})})})]})]})]}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1850,intrinsicWidth:2880,loading:\"lazy\",pixelHeight:1850,pixelWidth:2880,sizes:\"100vw\",src:\"https://framerusercontent.com/images/oICpp3NfmGNniRiRAAZZU6L1ls.jpg\",srcSet:\"https://framerusercontent.com/images/oICpp3NfmGNniRiRAAZZU6L1ls.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oICpp3NfmGNniRiRAAZZU6L1ls.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oICpp3NfmGNniRiRAAZZU6L1ls.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/oICpp3NfmGNniRiRAAZZU6L1ls.jpg 2880w\"},className:\"framer-14b3gtq\",\"data-framer-name\":\"Pricing\",id:id1,name:\"Pricing\",ref:ref3,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-g3o2tu\",\"data-framer-name\":\"text\",name:\"text\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rwtwsr\",\"data-styles-preset\":\"W0YAFGlkw\",children:\"Plan and Pricing Comparison\"})}),className:\"framer-16xfcnq\",\"data-framer-name\":\"More Than 14 Million People trusted across the world\",fonts:[\"Inter\"],name:\"More Than 14 Million People trusted across the world\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y6dvwk\",\"data-styles-preset\":\"DPlOy0VMe\",style:{\"--framer-text-alignment\":\"center\"},children:\"Choose from our affordable 4 packages\"})}),className:\"framer-mdb885\",\"data-framer-name\":\"More Than 14 Million People trusted across the world\",fonts:[\"Inter\"],name:\"More Than 14 Million People trusted across the world\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cduf0q\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined},{href:{webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined},{href:{webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{width:\"min(100vw - 40px, 1440px)\"},MsRu6q_2e:{width:\"max((min(100vw - 80px, 1440px) - 72px) / 4, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((min(100vw - 240px, 1440px) - 96px) / 4, 1px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition24},__framer__animateOnce:true,__framer__enter:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hmjjwk-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{it5JACkBa:resolvedLinks5[2]},MsRu6q_2e:{it5JACkBa:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(PricingCard2,{aPwZx_2FG:\"Multi-host option\",D4iGdOPsh:\"For most businesses that want to otpimize web queries\",FespGoCrh:\"Trial\",height:\"100%\",id:\"nWzFvWWsD\",it5JACkBa:resolvedLinks5[0],KiQbFb7mS:\"Cloud storage\",layoutId:\"nWzFvWWsD\",Oh78w6EY6:\"Unlimited\",RcxMgaI3E:\"Free\",s7F2P6Zcw:\"Advanced admin controls\",style:{width:\"100%\"},Uo8JR1hFh:false,variant:\"EjoWghrdD\",weDe1GsIM:\"Full HD video quality\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined},{href:{webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined},{href:{webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{width:\"min(100vw - 40px, 1440px)\"},MsRu6q_2e:{width:\"max((min(100vw - 80px, 1440px) - 72px) / 4, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((min(100vw - 240px, 1440px) - 96px) / 4, 1px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition25},__framer__animateOnce:true,__framer__enter:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dlu6b2-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{it5JACkBa:resolvedLinks6[2]},MsRu6q_2e:{it5JACkBa:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(PricingCard2,{aPwZx_2FG:\"Multi-host option\",D4iGdOPsh:\"For most businesses that want to otpimize web queries\",FespGoCrh:\"Starter\",height:\"100%\",id:\"TYMKlWxmE\",it5JACkBa:resolvedLinks6[0],KiQbFb7mS:\"Cloud storage\",layoutId:\"TYMKlWxmE\",Oh78w6EY6:\"Unlimited\",RcxMgaI3E:\"$50\",s7F2P6Zcw:\"Advanced admin controls\",style:{width:\"100%\"},Uo8JR1hFh:false,variant:\"EjoWghrdD\",weDe1GsIM:\"Full HD video quality\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined},{href:{webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined},{href:{webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{width:\"min(100vw - 40px, 1440px)\"},MsRu6q_2e:{width:\"max((min(100vw - 80px, 1440px) - 72px) / 4, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((min(100vw - 240px, 1440px) - 96px) / 4, 1px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition26},__framer__animateOnce:true,__framer__enter:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18u5bz0-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{it5JACkBa:resolvedLinks7[2]},MsRu6q_2e:{it5JACkBa:resolvedLinks7[1],variant:\"WuE8B2i8w\"}},children:/*#__PURE__*/_jsx(PricingCard2,{aPwZx_2FG:\"Multi-host option\",D4iGdOPsh:\"For most businesses that want to otpimize web queries\",FespGoCrh:\"Professional\",height:\"100%\",id:\"bh_UTcEcD\",it5JACkBa:resolvedLinks7[0],KiQbFb7mS:\"Cloud storage\",layoutId:\"bh_UTcEcD\",Oh78w6EY6:\"Unlimited\",RcxMgaI3E:\"$100\",s7F2P6Zcw:\"Advanced admin controls\",style:{width:\"100%\"},Uo8JR1hFh:true,variant:\"Mu4YFzYW9\",weDe1GsIM:\"Full HD video quality\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined},{href:{webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined},{href:{webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{width:\"min(100vw - 40px, 1440px)\"},MsRu6q_2e:{width:\"max((min(100vw - 80px, 1440px) - 72px) / 4, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((min(100vw - 240px, 1440px) - 96px) / 4, 1px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition27},__framer__animateOnce:true,__framer__enter:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pok7if-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{it5JACkBa:resolvedLinks8[2]},MsRu6q_2e:{it5JACkBa:resolvedLinks8[1]}},children:/*#__PURE__*/_jsx(PricingCard2,{aPwZx_2FG:\"Multi-host option\",D4iGdOPsh:\"For most businesses that want to otpimize web queries\",FespGoCrh:\"Enterprise\",height:\"100%\",id:\"T1Hx9uiDT\",it5JACkBa:resolvedLinks8[0],KiQbFb7mS:\"Cloud storage\",layoutId:\"T1Hx9uiDT\",Oh78w6EY6:\"Unlimited\",RcxMgaI3E:\"200\",s7F2P6Zcw:\"Advanced admin controls\",style:{width:\"100%\"},Uo8JR1hFh:false,variant:\"EjoWghrdD\",weDe1GsIM:\"Full HD video quality\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4d4t8w\",\"data-framer-name\":\"CTA\",name:\"CTA\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fwqdwt\",\"data-framer-name\":\"Card\",name:\"Card\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ug0vlz\",\"data-framer-name\":\"CTA\",name:\"CTA\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mvabew\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2d3vl\",\"data-framer-name\":\"hub\",name:\"hub\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-19d5i47\",\"data-framer-name\":\"fi_10629607\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:23,name:\"fi_10629607\",svg:'<svg width=\"23\" height=\"22\" viewBox=\"0 0 23 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M21.8125 11C21.8125 11.88 20.7314 12.6053 20.5148 13.4166C20.2914 14.2553 20.8569 15.4241 20.4323 16.158C20.0009 16.9039 18.7033 16.9933 18.0983 17.5983C17.4933 18.2033 17.4039 19.5009 16.658 19.9323C15.9241 20.3569 14.7553 19.7914 13.9166 20.0148C13.1053 20.2314 12.38 21.3125 11.5 21.3125C10.62 21.3125 9.89469 20.2314 9.08344 20.0148C8.24469 19.7914 7.07594 20.3569 6.34203 19.9323C5.59609 19.5009 5.50672 18.2033 4.90172 17.5983C4.29672 16.9933 2.99906 16.9039 2.56766 16.158C2.14312 15.4241 2.70859 14.2553 2.48516 13.4166C2.26859 12.6053 1.1875 11.88 1.1875 11C1.1875 10.12 2.26859 9.39469 2.48516 8.58344C2.70859 7.74469 2.14312 6.57594 2.56766 5.84203C2.99906 5.09609 4.29672 5.00672 4.90172 4.40172C5.50672 3.79672 5.59609 2.49906 6.34203 2.06766C7.07594 1.64312 8.24469 2.20859 9.08344 1.98516C9.89469 1.76859 10.62 0.6875 11.5 0.6875C12.38 0.6875 13.1053 1.76859 13.9166 1.98516C14.7553 2.20859 15.9241 1.64312 16.658 2.06766C17.4039 2.49906 17.4933 3.79672 18.0983 4.40172C18.7033 5.00672 20.0009 5.09609 20.4323 5.84203C20.8569 6.57594 20.2914 7.74469 20.5148 8.58344C20.7314 9.39469 21.8125 10.12 21.8125 11Z\" fill=\"#1C64F2\"/>\\n<path d=\"M14.48 7.92699L10.5543 11.8526L8.51934 9.81934C8.07762 9.37762 7.3609 9.37762 6.91918 9.81934C6.47746 10.2611 6.47746 10.9778 6.91918 11.4195L9.77402 14.2743C10.2037 14.704 10.9015 14.704 11.3312 14.2743L16.0784 9.52715C16.5201 9.08543 16.5201 8.36871 16.0784 7.92699C15.6367 7.48527 14.9217 7.48527 14.48 7.92699Z\" fill=\"#FFFCEE\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(28, 100, 242)\"},children:\"Integration Hub\"})}),className:\"framer-hfgl0u\",\"data-framer-name\":\"Integration Hub\",fonts:[\"GF;Plus Jakarta Sans-600\"],name:\"Integration Hub\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jdckib\",\"data-framer-name\":\"text\",name:\"text\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rwtwsr\",\"data-styles-preset\":\"W0YAFGlkw\",children:\"Easy Integrations,\"})}),className:\"framer-18syogr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1syzrvp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rwtwsr\",\"data-styles-preset\":\"W0YAFGlkw\",children:\"Simplify\"})}),className:\"framer-16rmerq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cn31p6\",\"data-framer-name\":\"Image\",name:\"Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-q8etya\",\"data-framer-name\":\"Ellipse 42\",name:\"Ellipse 42\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:\"lazy\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NFdCuFep2c06Y6JgEinRYhmI4.png\"},className:\"framer-utragp\",\"data-framer-name\":\"Ellipse 43\",name:\"Ellipse 43\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rwtwsr\",\"data-styles-preset\":\"W0YAFGlkw\",children:\"Your Site\"})}),className:\"framer-9j1c8u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y6dvwk\",\"data-styles-preset\":\"DPlOy0VMe\",style:{\"--framer-text-alignment\":\"center\"},children:\"Integrate Anything with Ease, Simplified Integration Solutions\"})}),className:\"framer-143s6w9\",\"data-framer-name\":\"Integrate Anything with Ease, Simplified Integration Solutions\",fonts:[\"Inter\"],name:\"Integrate Anything with Ease, Simplified Integration Solutions\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined},{href:{webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined},{href:{webPageId:\"mY6FcSiYG\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pkxoen-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{aPIJcQDNQ:resolvedLinks9[2]},MsRu6q_2e:{aPIJcQDNQ:resolvedLinks9[1]}},children:/*#__PURE__*/_jsx(ButtonWithoutIcon,{aPIJcQDNQ:resolvedLinks9[0],height:\"100%\",id:\"qYbYOUxS2\",IJ8Rzsu5g:\"var(--token-15b2631b-3952-418c-8fee-1fcfb2e39183, rgb(0, 0, 0))\",JRXRfq7xp:\"rgb(255, 255, 255)\",krKVQc9kv:\"var(--token-23a245a0-89dd-4471-9e48-3df6c8e56362, rgb(28, 100, 242))\",layoutId:\"qYbYOUxS2\",variant:\"y8SH4tiKI\",width:\"100%\",XuT9qVtcz:\"Explore Now\"})})})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c3khxc\",\"data-framer-name\":\"Testimonial card\",id:id2,name:\"Testimonial card\",ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sobp48\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rwtwsr\",\"data-styles-preset\":\"W0YAFGlkw\",children:\"What Our Clients Say About Us\"})}),className:\"framer-8pz1g1\",\"data-framer-name\":\"More Than 14 Million People trusted across the world\",fonts:[\"Inter\"],name:\"More Than 14 Million People trusted across the world\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y6dvwk\",\"data-styles-preset\":\"DPlOy0VMe\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our integrated real-time video feature fosters unparalleled connectivity, allowing seamless face-to-face interaction\"})}),className:\"framer-lci3je\",\"data-framer-name\":\"More Than 14 Million People trusted across the world\",fonts:[\"Inter\"],name:\"More Than 14 Million People trusted across the world\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yuwswt-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{alignment:\"flex-start\",arrowOptions:{arrowFill:\"var(--token-23a245a0-89dd-4471-9e48-3df6c8e56362, rgb(28, 100, 242))\",arrowGap:20,arrowPadding:20,arrowPaddingBottom:16,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,showMouseControls:false},dragControl:true,itemAmount:1},MsRu6q_2e:{arrowOptions:{arrowFill:\"var(--token-23a245a0-89dd-4471-9e48-3df6c8e56362, rgb(28, 100, 242))\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:16,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,showMouseControls:true},gap:24,itemAmount:2}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-23a245a0-89dd-4471-9e48-3df6c8e56362, rgb(28, 100, 242))\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:32,height:\"100%\",id:\"d5W_Yx4AD\",intervalControl:1.5,itemAmount:3,layoutId:\"d5W_Yx4AD\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-i3o0zk-container\",children:/*#__PURE__*/_jsx(TestimonialsCard,{CQ8TzxnMf:\"The ease of use and high-quality video have brought our team closer together and making meetings more productive\",H4ktKHGbS:\"Marcus Greene\",height:\"100%\",id:\"g6qQz8wxB\",layoutId:\"g6qQz8wxB\",style:{width:\"100%\"},UapNMPyRP:\"rgb(35, 56, 118)\",W0moGAXa6:\"rgb(82, 82, 91)\",width:\"100%\",xPg18Cf0H:\"rgb(222, 226, 255)\",yOX7HSevq:\" Chief Medical Officer\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tejn44-container\",children:/*#__PURE__*/_jsx(TestimonialsCard,{CQ8TzxnMf:\"The ability to troubleshoot issues face-to-face has led to quicker resolutions It's transformed the way we handle support queries\",H4ktKHGbS:\"James Rodriguez\",height:\"100%\",id:\"yzJIdlfEj\",iFiH2ArEc:addImageAlt({src:\"https://framerusercontent.com/images/NzDdyL2pB2t0bZDaphbE8X4O9o.jpg\"},\"\"),layoutId:\"yzJIdlfEj\",style:{width:\"100%\"},UapNMPyRP:\"rgb(255, 255, 255)\",W0moGAXa6:\"rgb(179, 179, 180)\",width:\"100%\",xPg18Cf0H:\"rgb(17, 25, 40)\",yOX7HSevq:\"Educational Consultant\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ulhjn8-container\",children:/*#__PURE__*/_jsx(TestimonialsCard,{CQ8TzxnMf:\" It's revolutionized how we teach and learn. The interactive sessions and face-to-face interactions have boosted student participation\",H4ktKHGbS:\"Fredric Alexander\",height:\"100%\",id:\"X4MBTFSI8\",iFiH2ArEc:addImageAlt({src:\"https://framerusercontent.com/images/siVoaa4Q3DcrjN1FiYLlk7Olof4.jpg\"},\"\"),layoutId:\"X4MBTFSI8\",style:{width:\"100%\"},UapNMPyRP:\"rgb(35, 56, 118)\",W0moGAXa6:\"rgb(82, 82, 91)\",width:\"100%\",xPg18Cf0H:\"rgb(222, 226, 255)\",yOX7HSevq:\"Fusion Enterprises LLC\"})})})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1370,intrinsicWidth:2880,loading:\"lazy\",pixelHeight:1370,pixelWidth:2880,sizes:\"100vw\",src:\"https://framerusercontent.com/images/czvSGjrdw59P8Cw5iDtNfsVrQ2I.jpg\",srcSet:\"https://framerusercontent.com/images/czvSGjrdw59P8Cw5iDtNfsVrQ2I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/czvSGjrdw59P8Cw5iDtNfsVrQ2I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/czvSGjrdw59P8Cw5iDtNfsVrQ2I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/czvSGjrdw59P8Cw5iDtNfsVrQ2I.jpg 2880w\"},className:\"framer-1xxsu70\",\"data-framer-name\":\"FAQs\",id:id3,name:\"FAQs\",ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jzqka3\",\"data-framer-name\":\"FAQs\",name:\"FAQs\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1rwtwsr\",\"data-styles-preset\":\"W0YAFGlkw\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Frequently \",/*#__PURE__*/_jsx(\"br\",{}),\"Asked Questions\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1rwtwsr\",\"data-styles-preset\":\"W0YAFGlkw\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Frequently \",/*#__PURE__*/_jsx(\"br\",{}),\"Asked Questions\"]})}),className:\"framer-5jvjeu\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t6y2bb\",\"data-framer-name\":\"Faqs\",name:\"Faqs\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qswe47-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{variant:\"WQXinKhY9\"}},children:/*#__PURE__*/_jsx(FAQs2nd,{c0DKjhCjP:\"The easiest way is to go to Monks Meet.com or download one of the mobile apps If you prefer, you can also setup your own Remotio Meet instance or embed a meet.remotio.si room into your own website.\",CwcaNtqqn:\"How can I use Monks Meet for video conferencing?\",height:\"100%\",id:\"t1IcJE0kq\",layoutId:\"t1IcJE0kq\",style:{width:\"100%\"},variant:\"zJiq9mmpm\",width:\"100%\",YRW6gPphx:\"rgb(207, 214, 243)\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vu3zug-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{variant:\"fduj1OVSY\"}},children:/*#__PURE__*/_jsx(FAQs2nd,{c0DKjhCjP:\"The easiest way is to go to Monks Meet.com or download one of the mobile apps If you prefer, you can also setup your own Remotio Meet instance or embed a meet.remotio.si room into your own website.\",CwcaNtqqn:\"How do I setup my own Monks Meet installation?\",height:\"100%\",id:\"uxQENjPer\",layoutId:\"uxQENjPer\",style:{width:\"100%\"},variant:\"wycCJX2dc\",width:\"100%\",YRW6gPphx:\"rgb(207, 214, 243)\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-56ntjb-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{variant:\"fduj1OVSY\"}},children:/*#__PURE__*/_jsx(FAQs2nd,{c0DKjhCjP:\"The easiest way is to go to Monks Meet.com or download one of the mobile apps If you prefer, you can also setup your own Remotio Meet instance or embed a meet.remotio.si room into your own website.\",CwcaNtqqn:\"Can I record Monks Meet conference\",height:\"100%\",id:\"QQNBHEazt\",layoutId:\"QQNBHEazt\",style:{width:\"100%\"},variant:\"wycCJX2dc\",width:\"100%\",YRW6gPphx:\"rgb(207, 214, 243)\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pmppmi-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{variant:\"fduj1OVSY\"}},children:/*#__PURE__*/_jsx(FAQs2nd,{c0DKjhCjP:\"The easiest way is to go to Monks Meet.com or download one of the mobile apps If you prefer, you can also setup your own Remotio Meet instance or embed a meet.remotio.si room into your own website.\",CwcaNtqqn:\"If Monks Meet doesn\u2019t make money  how can it continue to support the project\",height:\"100%\",id:\"EuwO0Q6SD\",layoutId:\"EuwO0Q6SD\",style:{width:\"100%\"},variant:\"wycCJX2dc\",width:\"100%\",YRW6gPphx:\"rgba(255, 255, 255, 0)\"})})})})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3v5qu7-container\",id:id4,ref:ref6,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH6gjMoBC:{variant:\"O9qW1PgK0\"},MsRu6q_2e:{variant:\"UocEqs0gp\"}},children:/*#__PURE__*/_jsx(Footer2nd,{height:\"100%\",id:\"kweYA22Cj\",layoutId:\"kweYA22Cj\",style:{width:\"100%\"},variant:\"uowFAErQq\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-AxfM9 { background: white; }`,\".framer-AxfM9.framer-1kxwkgu, .framer-AxfM9 .framer-1kxwkgu { display: block; }\",\".framer-AxfM9.framer-1dt5h5z { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-AxfM9 .framer-1b4tgn7-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 9; }\",\".framer-AxfM9 .framer-spkecc { align-content: center; align-items: center; background-color: #f7fafc; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-1i63bhu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: auto; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 160px 100px 100px 100px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-1t00kla, .framer-AxfM9 .framer-1c4ozt1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-AxfM9 .framer-11sv69k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-1jmxer1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-1h4xvc4, .framer-AxfM9 .framer-2d3vl { align-content: center; align-items: center; background-color: #e8f2ff; 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: 8px; height: min-content; justify-content: center; overflow: visible; padding: 8px 16px 8px 8px; position: relative; width: min-content; }\",\".framer-AxfM9 .framer-1h3ov0t { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-AxfM9 .framer-1xzq9ew, .framer-AxfM9 .framer-theqlv, .framer-AxfM9 .framer-1whor62, .framer-AxfM9 .framer-1eson2x, .framer-AxfM9 .framer-hfgl0u { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-AxfM9 .framer-1fll5qj, .framer-AxfM9 .framer-yg9ksi, .framer-AxfM9 .framer-w4wbeh, .framer-AxfM9 .framer-9jrv5z, .framer-AxfM9 .framer-7jwskb, .framer-AxfM9 .framer-vfbo66, .framer-AxfM9 .framer-18i02si, .framer-AxfM9 .framer-1fp98ep, .framer-AxfM9 .framer-uvxdg2, .framer-AxfM9 .framer-hnnvm3, .framer-AxfM9 .framer-1iv6vwu, .framer-AxfM9 .framer-1x95vq5, .framer-AxfM9 .framer-1wy9lr0, .framer-AxfM9 .framer-1d0nt5a, .framer-AxfM9 .framer-immzup { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-AxfM9 .framer-1199i04, .framer-AxfM9 .framer-kquv8g, .framer-AxfM9 .framer-rvs7p2, .framer-AxfM9 .framer-16rmerq, .framer-AxfM9 .framer-9j1c8u { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-AxfM9 .framer-1muzb1v { aspect-ratio: 1.4375 / 1; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: hidden; position: relative; width: 92px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AxfM9 .framer-kyc3hw { aspect-ratio: 1.15625 / 1; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: hidden; position: relative; width: 74px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AxfM9 .framer-11gt8kb { align-content: flex-start; align-items: flex-start; background-color: #d9e9fc; border-bottom-left-radius: 46px; border-bottom-right-radius: 46px; border-top-left-radius: 46px; border-top-right-radius: 46px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 7px 12px 7px 7px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-AxfM9 .framer-gyshtx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-AxfM9 .framer-zn225h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 50px; min-width: 106px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-AxfM9 .framer-7uecu { --border-bottom-width: 1.5px; --border-color: #ffffff; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 46px; border-bottom-right-radius: 46px; border-top-left-radius: 46px; border-top-right-radius: 46px; flex: none; height: var(--framer-aspect-ratio-supported, 50px); left: 0px; position: absolute; right: 56px; top: 0px; z-index: 1; }\",\".framer-AxfM9 .framer-1v7jlin { --border-bottom-width: 1.5px; --border-color: #ffffff; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 46px; border-bottom-right-radius: 46px; border-top-left-radius: 46px; border-top-right-radius: 46px; bottom: 0px; flex: none; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 50px); z-index: 1; }\",\".framer-AxfM9 .framer-dz14sm { --border-bottom-width: 1.5px; --border-color: #ffffff; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 46px; border-bottom-right-radius: 46px; border-top-left-radius: 46px; border-top-right-radius: 46px; bottom: 0px; flex: none; position: absolute; right: 0px; top: 0px; width: var(--framer-aspect-ratio-supported, 50px); z-index: 1; }\",\".framer-AxfM9 .framer-283x12 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 512px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AxfM9 .framer-1ll19r5-container { flex: none; height: auto; max-width: 222px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-1yqmmls { align-content: center; align-items: center; aspect-ratio: 1.286610878661088 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 463px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-AxfM9 .framer-14ivmi4 { aspect-ratio: 1.286610878661088 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 463px); position: relative; width: 1px; }\",\".framer-AxfM9 .framer-1ruego6 { align-content: center; align-items: center; bottom: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 132px; justify-content: center; left: -84px; overflow: hidden; padding: 0px; position: absolute; width: 137px; z-index: 1; }\",\".framer-AxfM9 .framer-13qc11c { flex: none; height: 132px; position: relative; width: 137px; }\",\".framer-AxfM9 .framer-avtuh0 { cursor: grab; flex: none; height: 64px; left: -31px; overflow: visible; position: absolute; top: -32px; width: 61px; z-index: 1; }\",\".framer-AxfM9 .framer-xk022m { bottom: 8px; flex: none; left: -7px; position: absolute; right: 8px; top: -7px; }\",\".framer-AxfM9 .framer-spibs1, .framer-AxfM9 .framer-14b3gtq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 120px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-19y59w1, .framer-AxfM9 .framer-96u1ba, .framer-AxfM9 .framer-1r6kilm, .framer-AxfM9 .framer-mo0ka2, .framer-AxfM9 .framer-yoiml7, .framer-AxfM9 .framer-1qgyrzo, .framer-AxfM9 .framer-g3o2tu, .framer-AxfM9 .framer-1sobp48 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-1mho2ir, .framer-AxfM9 .framer-1alr1lo, .framer-AxfM9 .framer-11rip2c, .framer-AxfM9 .framer-16xfcnq, .framer-AxfM9 .framer-8pz1g1 { flex: none; height: auto; max-width: 812px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AxfM9 .framer-l5b9xd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-1m02ddy, .framer-AxfM9 .framer-1d6dshp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-av5lcx { flex: none; height: 36px; position: relative; width: 168px; }\",\".framer-AxfM9 .framer-1be666l { flex: none; height: 35px; position: relative; width: 133px; }\",\".framer-AxfM9 .framer-1uhsua { flex: none; height: 42px; position: relative; width: 164px; }\",\".framer-AxfM9 .framer-1yo42mc { flex: none; height: 39px; position: relative; width: 148px; }\",\".framer-AxfM9 .framer-1dttvki { flex: none; height: 39px; position: relative; width: 128px; }\",\".framer-AxfM9 .framer-1emaitp { flex: none; height: 40px; position: relative; width: 132px; }\",\".framer-AxfM9 .framer-1y43dv4 { flex: none; height: 40px; position: relative; width: 130px; }\",\".framer-AxfM9 .framer-o92mt4 { flex: none; height: 44px; position: relative; width: 104px; }\",\".framer-AxfM9 .framer-12z7pd5 { flex: none; height: 42px; position: relative; width: 170px; }\",\".framer-AxfM9 .framer-1pwmgja { flex: none; height: 46px; position: relative; width: 161px; }\",\".framer-AxfM9 .framer-mxl2ao { flex: none; height: 39px; position: relative; width: 175px; }\",\".framer-AxfM9 .framer-v8bz6e { flex: none; height: 43px; position: relative; width: 97px; }\",\".framer-AxfM9 .framer-40dry6 { align-content: center; align-items: center; background-color: #f2f7fa; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 120px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-2rwcb8, .framer-AxfM9 .framer-3kwnyf, .framer-AxfM9 .framer-mdb885, .framer-AxfM9 .framer-lci3je { flex: none; height: auto; max-width: 660px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AxfM9 .framer-1u9jo19 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: auto; justify-content: flex-start; max-width: 1240px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-1kqv9p1 { align-content: center; align-items: center; background-color: #dee2ff; border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 108px; height: min-content; justify-content: center; overflow: hidden; padding: 44px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AxfM9 .framer-6qe903 { bottom: -544px; flex: none; height: 892px; overflow: visible; position: absolute; right: -280px; width: 671px; z-index: 0; }\",\".framer-AxfM9 .framer-nba3iv { --border-bottom-width: 1.5px; --border-color: #cbd1fb; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; aspect-ratio: 1.0011148528917908 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 670px); left: 0px; position: absolute; top: 0px; width: 671px; }\",\".framer-AxfM9 .framer-1u12a11 { --border-bottom-width: 1.5px; --border-color: #cbd1fb; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 632px); left: 19px; position: absolute; top: 53px; width: 632px; }\",\".framer-AxfM9 .framer-1od6yyn { --border-bottom-width: 1.5px; --border-color: #cbd1fb; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 598px); left: 37px; position: absolute; top: 113px; width: 598px; }\",\".framer-AxfM9 .framer-jg99c9 { --border-bottom-width: 1.5px; --border-color: #cbd1fb; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 597px); left: 44px; position: absolute; top: 175px; width: 598px; }\",\".framer-AxfM9 .framer-ywcrd9 { --border-bottom-width: 1.5px; --border-color: #cbd1fb; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 598px); left: 44px; position: absolute; top: 232px; width: 598px; }\",\".framer-AxfM9 .framer-ebfzhc { --border-bottom-width: 1.5px; --border-color: #cbd1fb; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 598px); left: 37px; position: absolute; top: 294px; width: 598px; }\",\".framer-AxfM9 .framer-6yy5aq, .framer-AxfM9 .framer-jdckib { 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: 100%; }\",\".framer-AxfM9 .framer-1tjgs9w, .framer-AxfM9 .framer-1nqfw6i, .framer-AxfM9 .framer-1y4olj, .framer-AxfM9 .framer-rhzmch, .framer-AxfM9 .framer-9zlutq, .framer-AxfM9 .framer-3wfppx, .framer-AxfM9 .framer-10jzi12, .framer-AxfM9 .framer-kuju9v, .framer-AxfM9 .framer-1rc8i7q, .framer-AxfM9 .framer-1sqqka3, .framer-AxfM9 .framer-18syogr { --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-AxfM9 .framer-q3auhf, .framer-AxfM9 .framer-ynlgw4 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px 20px 12px 20px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-2u6ais, .framer-AxfM9 .framer-1ydr472, .framer-AxfM9 .framer-1j04a8y, .framer-AxfM9 .framer-1ybvhkb, .framer-AxfM9 .framer-143s6w9 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AxfM9 .framer-spdu3u { align-content: center; align-items: center; align-self: stretch; background-color: #d0e5fe; border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: hidden; padding: 44px 44px 0px 44px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AxfM9 .framer-w84afv { 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: 100%; z-index: 1; }\",\".framer-AxfM9 .framer-1hj24pf { align-content: center; align-items: center; aspect-ratio: 1.8310249307479225 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 362px); justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-AxfM9 .framer-1f5mb0m { aspect-ratio: 2.183673469387755 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 38px; box-shadow: 12px 16px 40px 0px rgba(84, 97, 113, 0.16); flex: none; height: 35%; left: 0px; position: absolute; width: var(--framer-aspect-ratio-supported, 280px); z-index: 1; }\",\".framer-AxfM9 .framer-1fj6b7w { -webkit-filter: drop-shadow(10px 14px 65px rgba(0, 0, 0, 0.05)); aspect-ratio: 1.297082228116711 / 1; filter: drop-shadow(10px 14px 65px rgba(0, 0, 0, 0.05)); flex: none; height: 100%; position: relative; width: var(--framer-aspect-ratio-supported, 468px); }\",\".framer-AxfM9 .framer-bdnz0l { bottom: 0px; flex: none; left: -75px; overflow: visible; position: absolute; right: -74px; top: 200px; z-index: 0; }\",\".framer-AxfM9 .framer-ftpse8 { --border-bottom-width: 1.5px; --border-color: #aed2ff; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; aspect-ratio: 1.0011148272017838 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 897px); left: 0px; position: absolute; top: 0px; width: 898px; }\",\".framer-AxfM9 .framer-rtr97t { --border-bottom-width: 1.5px; --border-color: #aed2ff; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 846px); left: 26px; position: absolute; top: 71px; width: 846px; }\",\".framer-AxfM9 .framer-1oesu4d { --border-bottom-width: 1.5px; --border-color: #aed2ff; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 800px); left: 49px; position: absolute; top: 152px; width: 800px; }\",\".framer-AxfM9 .framer-1rq7jii { --border-bottom-width: 1.5px; --border-color: #aed2ff; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 800px); left: 59px; position: absolute; top: 234px; width: 800px; }\",\".framer-AxfM9 .framer-1u409se { --border-bottom-width: 1.5px; --border-color: #aed2ff; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 800px); left: 59px; position: absolute; top: 311px; width: 800px; }\",\".framer-AxfM9 .framer-15w2wfr { --border-bottom-width: 1.5px; --border-color: rgba(159, 225, 240, 0.9); --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 800px); left: 49px; position: absolute; top: 394px; width: 800px; }\",\".framer-AxfM9 .framer-1drv1qj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 120px 0px 120px 120px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-mxs2xp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-AxfM9 .framer-m2f1sz { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-17g5czm { 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: min-content; }\",\".framer-AxfM9 .framer-luqvld-container, .framer-AxfM9 .framer-10q87vl-container, .framer-AxfM9 .framer-1ogiw9a-container, .framer-AxfM9 .framer-gk7ool-container, .framer-AxfM9 .framer-1pkxoen-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-AxfM9 .framer-1agp5uw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-112phvf, .framer-AxfM9 .framer-12ln7af, .framer-AxfM9 .framer-1e8470v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-ebelyr, .framer-AxfM9 .framer-1k0gfmp, .framer-AxfM9 .framer-16ekz3n { flex: none; height: 22px; position: relative; width: 21px; }\",\".framer-AxfM9 .framer-xm3kj5, .framer-AxfM9 .framer-1n7j60o, .framer-AxfM9 .framer-1gicti { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-AxfM9 .framer-lwxapc { align-content: center; align-items: center; aspect-ratio: 0.7955801104972375 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 775px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-AxfM9 .framer-p43wc7 { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-AxfM9 .framer-1l1o8vj { align-content: center; align-items: center; bottom: -3514px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 142px; justify-content: center; left: 703px; overflow: hidden; padding: 0px; position: absolute; width: 152px; }\",\".framer-AxfM9 .framer-ebtfju { flex: none; height: 102px; position: relative; width: 122px; }\",\".framer-AxfM9 .framer-jjzgj8 { align-content: flex-end; align-items: flex-end; background-color: #ffffff; border-bottom-left-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; bottom: 131px; box-shadow: -12px 24px 34px 0px rgba(51, 66, 95, 0.12); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; left: -99px; overflow: visible; padding: 12px 16px 12px 12px; position: absolute; width: 220px; }\",\".framer-AxfM9 .framer-c0u3ht { flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-AxfM9 .framer-1bzmqma { 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-AxfM9 .framer-dailp9 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px 120px 120px 120px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-sdwycc { 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; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-wk0939 { flex: 1 0 0px; height: auto; max-width: 812px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-AxfM9 .framer-1g4n2pq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-1mlgwj3 { align-content: flex-start; align-items: flex-start; background-color: #111928; border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; display: flex; flex: 1.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: auto; justify-content: center; overflow: hidden; padding: 48px 48px 13px 48px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AxfM9 .framer-1gbwz0t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-13wvdi6 { 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: 28px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-AxfM9 .framer-jperut { flex: 1 0 0px; height: 252px; overflow: visible; position: relative; width: 1px; }\",\".framer-AxfM9 .framer-1lah7x1 { aspect-ratio: 0.9788135593220338 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 236px); left: 0px; position: absolute; top: 0px; width: 231px; }\",\".framer-AxfM9 .framer-1gr6cvb { align-content: flex-start; align-items: flex-start; background-color: #d0e5fe; border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: auto; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AxfM9 .framer-1e7bazx { align-content: center; align-items: center; aspect-ratio: 1.1711711711711712 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 236px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-1nj1wvn { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 236px); overflow: visible; position: relative; width: 236px; }\",\".framer-AxfM9 .framer-1tlg1gt { aspect-ratio: 0.9147982062780269 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 223px); left: 0px; position: absolute; right: 0px; top: 6px; }\",\".framer-AxfM9 .framer-1nu6lyz { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; box-shadow: -20px 10px 48px 10px rgba(15, 21, 34, 0.08); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: auto; justify-content: center; overflow: visible; padding: 32px; position: relative; width: 1px; }\",\".framer-AxfM9 .framer-134q2pf { align-content: center; align-items: center; aspect-ratio: 1.7754237288135593 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 246px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-y968se { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 246px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-AxfM9 .framer-l9fd7d { flex: none; height: 237px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-cduf0q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-1hmjjwk-container, .framer-AxfM9 .framer-dlu6b2-container, .framer-AxfM9 .framer-18u5bz0-container, .framer-AxfM9 .framer-pok7if-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-AxfM9 .framer-4d4t8w { align-content: center; align-items: center; background-color: var(--token-bfa9d294-cece-44b2-bfcc-bb8484f4a5a5, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 120px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-1fwqdwt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 715px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-ug0vlz { -webkit-backdrop-filter: blur(7px); align-content: center; align-items: center; backdrop-filter: blur(7px); background-color: rgba(242, 247, 250, 0.5); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 715px; overflow: visible; padding: 80px; position: relative; width: 1px; z-index: 2; }\",\".framer-AxfM9 .framer-1mvabew { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-19d5i47 { flex: none; height: 22px; position: relative; width: 23px; }\",\".framer-AxfM9 .framer-1syzrvp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-cn31p6 { aspect-ratio: 1.2916666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; width: 62px; }\",\".framer-AxfM9 .framer-q8etya { aspect-ratio: 1 / 1; background-color: #dee2ff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 14px; position: absolute; top: 0px; width: 48px; }\",\".framer-AxfM9 .framer-utragp { aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; position: absolute; top: 0px; width: 48px; }\",\".framer-AxfM9 .framer-c3khxc { align-content: center; align-items: center; background-color: var(--token-bfa9d294-cece-44b2-bfcc-bb8484f4a5a5, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px 120px 120px 120px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-1yuwswt-container { aspect-ratio: 2.575107296137339 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 466px); max-width: 1280px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-i3o0zk-container, .framer-AxfM9 .framer-ulhjn8-container { height: auto; position: relative; width: 379px; }\",\".framer-AxfM9 .framer-1tejn44-container { height: auto; position: relative; width: 378px; }\",\".framer-AxfM9 .framer-1xxsu70 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 120px; position: relative; width: 100%; }\",\".framer-AxfM9 .framer-jzqka3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-AxfM9 .framer-5jvjeu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 0.75 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-AxfM9 .framer-1t6y2bb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-AxfM9 .framer-qswe47-container, .framer-AxfM9 .framer-vu3zug-container, .framer-AxfM9 .framer-56ntjb-container, .framer-AxfM9 .framer-1pmppmi-container, .framer-AxfM9 .framer-3v5qu7-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-AxfM9.framer-1dt5h5z, .framer-AxfM9 .framer-spkecc, .framer-AxfM9 .framer-1i63bhu, .framer-AxfM9 .framer-1t00kla, .framer-AxfM9 .framer-11sv69k, .framer-AxfM9 .framer-1jmxer1, .framer-AxfM9 .framer-1h4xvc4, .framer-AxfM9 .framer-1fll5qj, .framer-AxfM9 .framer-yg9ksi, .framer-AxfM9 .framer-w4wbeh, .framer-AxfM9 .framer-11gt8kb, .framer-AxfM9 .framer-gyshtx, .framer-AxfM9 .framer-zn225h, .framer-AxfM9 .framer-1yqmmls, .framer-AxfM9 .framer-1ruego6, .framer-AxfM9 .framer-spibs1, .framer-AxfM9 .framer-19y59w1, .framer-AxfM9 .framer-l5b9xd, .framer-AxfM9 .framer-9jrv5z, .framer-AxfM9 .framer-7jwskb, .framer-AxfM9 .framer-vfbo66, .framer-AxfM9 .framer-18i02si, .framer-AxfM9 .framer-1fp98ep, .framer-AxfM9 .framer-uvxdg2, .framer-AxfM9 .framer-hnnvm3, .framer-AxfM9 .framer-1iv6vwu, .framer-AxfM9 .framer-1x95vq5, .framer-AxfM9 .framer-1wy9lr0, .framer-AxfM9 .framer-1d0nt5a, .framer-AxfM9 .framer-immzup, .framer-AxfM9 .framer-40dry6, .framer-AxfM9 .framer-96u1ba, .framer-AxfM9 .framer-1u9jo19, .framer-AxfM9 .framer-1kqv9p1, .framer-AxfM9 .framer-6yy5aq, .framer-AxfM9 .framer-1r6kilm, .framer-AxfM9 .framer-q3auhf, .framer-AxfM9 .framer-ynlgw4, .framer-AxfM9 .framer-w84afv, .framer-AxfM9 .framer-1hj24pf, .framer-AxfM9 .framer-1drv1qj, .framer-AxfM9 .framer-mxs2xp, .framer-AxfM9 .framer-1c4ozt1, .framer-AxfM9 .framer-m2f1sz, .framer-AxfM9 .framer-17g5czm, .framer-AxfM9 .framer-1agp5uw, .framer-AxfM9 .framer-112phvf, .framer-AxfM9 .framer-12ln7af, .framer-AxfM9 .framer-1e8470v, .framer-AxfM9 .framer-lwxapc, .framer-AxfM9 .framer-1l1o8vj, .framer-AxfM9 .framer-jjzgj8, .framer-AxfM9 .framer-1bzmqma, .framer-AxfM9 .framer-dailp9, .framer-AxfM9 .framer-1g4n2pq, .framer-AxfM9 .framer-1mlgwj3, .framer-AxfM9 .framer-mo0ka2, .framer-AxfM9 .framer-1gbwz0t, .framer-AxfM9 .framer-13wvdi6, .framer-AxfM9 .framer-1gr6cvb, .framer-AxfM9 .framer-1e7bazx, .framer-AxfM9 .framer-yoiml7, .framer-AxfM9 .framer-1nu6lyz, .framer-AxfM9 .framer-1qgyrzo, .framer-AxfM9 .framer-134q2pf, .framer-AxfM9 .framer-y968se, .framer-AxfM9 .framer-14b3gtq, .framer-AxfM9 .framer-g3o2tu, .framer-AxfM9 .framer-cduf0q, .framer-AxfM9 .framer-4d4t8w, .framer-AxfM9 .framer-1fwqdwt, .framer-AxfM9 .framer-ug0vlz, .framer-AxfM9 .framer-1mvabew, .framer-AxfM9 .framer-2d3vl, .framer-AxfM9 .framer-jdckib, .framer-AxfM9 .framer-1syzrvp, .framer-AxfM9 .framer-c3khxc, .framer-AxfM9 .framer-1sobp48, .framer-AxfM9 .framer-1xxsu70, .framer-AxfM9 .framer-jzqka3, .framer-AxfM9 .framer-1t6y2bb { gap: 0px; } .framer-AxfM9.framer-1dt5h5z > *, .framer-AxfM9 .framer-y968se > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-AxfM9.framer-1dt5h5z > :first-child, .framer-AxfM9 .framer-spkecc > :first-child, .framer-AxfM9 .framer-1t00kla > :first-child, .framer-AxfM9 .framer-11sv69k > :first-child, .framer-AxfM9 .framer-1jmxer1 > :first-child, .framer-AxfM9 .framer-11gt8kb > :first-child, .framer-AxfM9 .framer-spibs1 > :first-child, .framer-AxfM9 .framer-19y59w1 > :first-child, .framer-AxfM9 .framer-l5b9xd > :first-child, .framer-AxfM9 .framer-40dry6 > :first-child, .framer-AxfM9 .framer-96u1ba > :first-child, .framer-AxfM9 .framer-1kqv9p1 > :first-child, .framer-AxfM9 .framer-6yy5aq > :first-child, .framer-AxfM9 .framer-1r6kilm > :first-child, .framer-AxfM9 .framer-q3auhf > :first-child, .framer-AxfM9 .framer-ynlgw4 > :first-child, .framer-AxfM9 .framer-w84afv > :first-child, .framer-AxfM9 .framer-1c4ozt1 > :first-child, .framer-AxfM9 .framer-m2f1sz > :first-child, .framer-AxfM9 .framer-1agp5uw > :first-child, .framer-AxfM9 .framer-1l1o8vj > :first-child, .framer-AxfM9 .framer-1bzmqma > :first-child, .framer-AxfM9 .framer-dailp9 > :first-child, .framer-AxfM9 .framer-1mlgwj3 > :first-child, .framer-AxfM9 .framer-mo0ka2 > :first-child, .framer-AxfM9 .framer-1gr6cvb > :first-child, .framer-AxfM9 .framer-yoiml7 > :first-child, .framer-AxfM9 .framer-1nu6lyz > :first-child, .framer-AxfM9 .framer-1qgyrzo > :first-child, .framer-AxfM9 .framer-y968se > :first-child, .framer-AxfM9 .framer-14b3gtq > :first-child, .framer-AxfM9 .framer-g3o2tu > :first-child, .framer-AxfM9 .framer-4d4t8w > :first-child, .framer-AxfM9 .framer-ug0vlz > :first-child, .framer-AxfM9 .framer-1mvabew > :first-child, .framer-AxfM9 .framer-jdckib > :first-child, .framer-AxfM9 .framer-c3khxc > :first-child, .framer-AxfM9 .framer-1sobp48 > :first-child, .framer-AxfM9 .framer-1t6y2bb > :first-child { margin-top: 0px; } .framer-AxfM9.framer-1dt5h5z > :last-child, .framer-AxfM9 .framer-spkecc > :last-child, .framer-AxfM9 .framer-1t00kla > :last-child, .framer-AxfM9 .framer-11sv69k > :last-child, .framer-AxfM9 .framer-1jmxer1 > :last-child, .framer-AxfM9 .framer-11gt8kb > :last-child, .framer-AxfM9 .framer-spibs1 > :last-child, .framer-AxfM9 .framer-19y59w1 > :last-child, .framer-AxfM9 .framer-l5b9xd > :last-child, .framer-AxfM9 .framer-40dry6 > :last-child, .framer-AxfM9 .framer-96u1ba > :last-child, .framer-AxfM9 .framer-1kqv9p1 > :last-child, .framer-AxfM9 .framer-6yy5aq > :last-child, .framer-AxfM9 .framer-1r6kilm > :last-child, .framer-AxfM9 .framer-q3auhf > :last-child, .framer-AxfM9 .framer-ynlgw4 > :last-child, .framer-AxfM9 .framer-w84afv > :last-child, .framer-AxfM9 .framer-1c4ozt1 > :last-child, .framer-AxfM9 .framer-m2f1sz > :last-child, .framer-AxfM9 .framer-1agp5uw > :last-child, .framer-AxfM9 .framer-1l1o8vj > :last-child, .framer-AxfM9 .framer-1bzmqma > :last-child, .framer-AxfM9 .framer-dailp9 > :last-child, .framer-AxfM9 .framer-1mlgwj3 > :last-child, .framer-AxfM9 .framer-mo0ka2 > :last-child, .framer-AxfM9 .framer-1gr6cvb > :last-child, .framer-AxfM9 .framer-yoiml7 > :last-child, .framer-AxfM9 .framer-1nu6lyz > :last-child, .framer-AxfM9 .framer-1qgyrzo > :last-child, .framer-AxfM9 .framer-y968se > :last-child, .framer-AxfM9 .framer-14b3gtq > :last-child, .framer-AxfM9 .framer-g3o2tu > :last-child, .framer-AxfM9 .framer-4d4t8w > :last-child, .framer-AxfM9 .framer-ug0vlz > :last-child, .framer-AxfM9 .framer-1mvabew > :last-child, .framer-AxfM9 .framer-jdckib > :last-child, .framer-AxfM9 .framer-c3khxc > :last-child, .framer-AxfM9 .framer-1sobp48 > :last-child, .framer-AxfM9 .framer-1t6y2bb > :last-child { margin-bottom: 0px; } .framer-AxfM9 .framer-spkecc > *, .framer-AxfM9 .framer-11gt8kb > *, .framer-AxfM9 .framer-6yy5aq > *, .framer-AxfM9 .framer-w84afv > *, .framer-AxfM9 .framer-1l1o8vj > *, .framer-AxfM9 .framer-jdckib > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-AxfM9 .framer-1i63bhu > *, .framer-AxfM9 .framer-1drv1qj > *, .framer-AxfM9 .framer-mxs2xp > *, .framer-AxfM9 .framer-1gbwz0t > *, .framer-AxfM9 .framer-1xxsu70 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-AxfM9 .framer-1i63bhu > :first-child, .framer-AxfM9 .framer-1h4xvc4 > :first-child, .framer-AxfM9 .framer-1fll5qj > :first-child, .framer-AxfM9 .framer-yg9ksi > :first-child, .framer-AxfM9 .framer-w4wbeh > :first-child, .framer-AxfM9 .framer-gyshtx > :first-child, .framer-AxfM9 .framer-zn225h > :first-child, .framer-AxfM9 .framer-1yqmmls > :first-child, .framer-AxfM9 .framer-1ruego6 > :first-child, .framer-AxfM9 .framer-9jrv5z > :first-child, .framer-AxfM9 .framer-7jwskb > :first-child, .framer-AxfM9 .framer-vfbo66 > :first-child, .framer-AxfM9 .framer-18i02si > :first-child, .framer-AxfM9 .framer-1fp98ep > :first-child, .framer-AxfM9 .framer-uvxdg2 > :first-child, .framer-AxfM9 .framer-hnnvm3 > :first-child, .framer-AxfM9 .framer-1iv6vwu > :first-child, .framer-AxfM9 .framer-1x95vq5 > :first-child, .framer-AxfM9 .framer-1wy9lr0 > :first-child, .framer-AxfM9 .framer-1d0nt5a > :first-child, .framer-AxfM9 .framer-immzup > :first-child, .framer-AxfM9 .framer-1u9jo19 > :first-child, .framer-AxfM9 .framer-1hj24pf > :first-child, .framer-AxfM9 .framer-1drv1qj > :first-child, .framer-AxfM9 .framer-mxs2xp > :first-child, .framer-AxfM9 .framer-17g5czm > :first-child, .framer-AxfM9 .framer-112phvf > :first-child, .framer-AxfM9 .framer-12ln7af > :first-child, .framer-AxfM9 .framer-1e8470v > :first-child, .framer-AxfM9 .framer-lwxapc > :first-child, .framer-AxfM9 .framer-jjzgj8 > :first-child, .framer-AxfM9 .framer-1g4n2pq > :first-child, .framer-AxfM9 .framer-1gbwz0t > :first-child, .framer-AxfM9 .framer-13wvdi6 > :first-child, .framer-AxfM9 .framer-1e7bazx > :first-child, .framer-AxfM9 .framer-134q2pf > :first-child, .framer-AxfM9 .framer-cduf0q > :first-child, .framer-AxfM9 .framer-1fwqdwt > :first-child, .framer-AxfM9 .framer-2d3vl > :first-child, .framer-AxfM9 .framer-1syzrvp > :first-child, .framer-AxfM9 .framer-1xxsu70 > :first-child, .framer-AxfM9 .framer-jzqka3 > :first-child { margin-left: 0px; } .framer-AxfM9 .framer-1i63bhu > :last-child, .framer-AxfM9 .framer-1h4xvc4 > :last-child, .framer-AxfM9 .framer-1fll5qj > :last-child, .framer-AxfM9 .framer-yg9ksi > :last-child, .framer-AxfM9 .framer-w4wbeh > :last-child, .framer-AxfM9 .framer-gyshtx > :last-child, .framer-AxfM9 .framer-zn225h > :last-child, .framer-AxfM9 .framer-1yqmmls > :last-child, .framer-AxfM9 .framer-1ruego6 > :last-child, .framer-AxfM9 .framer-9jrv5z > :last-child, .framer-AxfM9 .framer-7jwskb > :last-child, .framer-AxfM9 .framer-vfbo66 > :last-child, .framer-AxfM9 .framer-18i02si > :last-child, .framer-AxfM9 .framer-1fp98ep > :last-child, .framer-AxfM9 .framer-uvxdg2 > :last-child, .framer-AxfM9 .framer-hnnvm3 > :last-child, .framer-AxfM9 .framer-1iv6vwu > :last-child, .framer-AxfM9 .framer-1x95vq5 > :last-child, .framer-AxfM9 .framer-1wy9lr0 > :last-child, .framer-AxfM9 .framer-1d0nt5a > :last-child, .framer-AxfM9 .framer-immzup > :last-child, .framer-AxfM9 .framer-1u9jo19 > :last-child, .framer-AxfM9 .framer-1hj24pf > :last-child, .framer-AxfM9 .framer-1drv1qj > :last-child, .framer-AxfM9 .framer-mxs2xp > :last-child, .framer-AxfM9 .framer-17g5czm > :last-child, .framer-AxfM9 .framer-112phvf > :last-child, .framer-AxfM9 .framer-12ln7af > :last-child, .framer-AxfM9 .framer-1e8470v > :last-child, .framer-AxfM9 .framer-lwxapc > :last-child, .framer-AxfM9 .framer-jjzgj8 > :last-child, .framer-AxfM9 .framer-1g4n2pq > :last-child, .framer-AxfM9 .framer-1gbwz0t > :last-child, .framer-AxfM9 .framer-13wvdi6 > :last-child, .framer-AxfM9 .framer-1e7bazx > :last-child, .framer-AxfM9 .framer-134q2pf > :last-child, .framer-AxfM9 .framer-cduf0q > :last-child, .framer-AxfM9 .framer-1fwqdwt > :last-child, .framer-AxfM9 .framer-2d3vl > :last-child, .framer-AxfM9 .framer-1syzrvp > :last-child, .framer-AxfM9 .framer-1xxsu70 > :last-child, .framer-AxfM9 .framer-jzqka3 > :last-child { margin-right: 0px; } .framer-AxfM9 .framer-1t00kla > *, .framer-AxfM9 .framer-l5b9xd > *, .framer-AxfM9 .framer-1c4ozt1 > *, .framer-AxfM9 .framer-1gr6cvb > *, .framer-AxfM9 .framer-ug0vlz > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-AxfM9 .framer-11sv69k > *, .framer-AxfM9 .framer-1agp5uw > *, .framer-AxfM9 .framer-1nu6lyz > *, .framer-AxfM9 .framer-1t6y2bb > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-AxfM9 .framer-1jmxer1 > *, .framer-AxfM9 .framer-q3auhf > *, .framer-AxfM9 .framer-ynlgw4 > *, .framer-AxfM9 .framer-1mvabew > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-AxfM9 .framer-1h4xvc4 > *, .framer-AxfM9 .framer-2d3vl > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-AxfM9 .framer-1fll5qj > *, .framer-AxfM9 .framer-yg9ksi > *, .framer-AxfM9 .framer-w4wbeh > *, .framer-AxfM9 .framer-1yqmmls > *, .framer-AxfM9 .framer-1ruego6 > *, .framer-AxfM9 .framer-9jrv5z > *, .framer-AxfM9 .framer-7jwskb > *, .framer-AxfM9 .framer-vfbo66 > *, .framer-AxfM9 .framer-18i02si > *, .framer-AxfM9 .framer-1fp98ep > *, .framer-AxfM9 .framer-uvxdg2 > *, .framer-AxfM9 .framer-hnnvm3 > *, .framer-AxfM9 .framer-1iv6vwu > *, .framer-AxfM9 .framer-1x95vq5 > *, .framer-AxfM9 .framer-1wy9lr0 > *, .framer-AxfM9 .framer-1d0nt5a > *, .framer-AxfM9 .framer-immzup > *, .framer-AxfM9 .framer-lwxapc > *, .framer-AxfM9 .framer-13wvdi6 > *, .framer-AxfM9 .framer-1fwqdwt > *, .framer-AxfM9 .framer-1syzrvp > *, .framer-AxfM9 .framer-jzqka3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-AxfM9 .framer-gyshtx > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-AxfM9 .framer-zn225h > * { margin: 0px; margin-left: calc(-22px / 2); margin-right: calc(-22px / 2); } .framer-AxfM9 .framer-spibs1 > *, .framer-AxfM9 .framer-40dry6 > *, .framer-AxfM9 .framer-dailp9 > *, .framer-AxfM9 .framer-14b3gtq > *, .framer-AxfM9 .framer-4d4t8w > *, .framer-AxfM9 .framer-c3khxc > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-AxfM9 .framer-19y59w1 > *, .framer-AxfM9 .framer-96u1ba > *, .framer-AxfM9 .framer-1r6kilm > *, .framer-AxfM9 .framer-m2f1sz > *, .framer-AxfM9 .framer-mo0ka2 > *, .framer-AxfM9 .framer-yoiml7 > *, .framer-AxfM9 .framer-1qgyrzo > *, .framer-AxfM9 .framer-g3o2tu > *, .framer-AxfM9 .framer-1sobp48 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-AxfM9 .framer-1u9jo19 > *, .framer-AxfM9 .framer-1g4n2pq > *, .framer-AxfM9 .framer-cduf0q > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-AxfM9 .framer-1kqv9p1 > * { margin: 0px; margin-bottom: calc(108px / 2); margin-top: calc(108px / 2); } .framer-AxfM9 .framer-1hj24pf > *, .framer-AxfM9 .framer-1e7bazx > *, .framer-AxfM9 .framer-134q2pf > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-AxfM9 .framer-17g5czm > *, .framer-AxfM9 .framer-112phvf > *, .framer-AxfM9 .framer-12ln7af > *, .framer-AxfM9 .framer-1e8470v > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-AxfM9 .framer-jjzgj8 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-AxfM9 .framer-1bzmqma > * { margin: 0px; margin-bottom: calc(-3px / 2); margin-top: calc(-3px / 2); } .framer-AxfM9 .framer-1mlgwj3 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",\"@media (min-width: 1440px) { .framer-AxfM9 .hidden-1dt5h5z { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1439px) { .framer-AxfM9 .hidden-1elvecx { display: none !important; } .${metadata.bodyClassName}-framer-AxfM9 { background: white; } .framer-AxfM9.framer-1dt5h5z { width: 810px; } .framer-AxfM9 .framer-1i63bhu { flex-direction: column; padding: 160px 40px 100px 40px; } .framer-AxfM9 .framer-1t00kla { align-content: center; align-items: center; flex: none; width: 100%; } .framer-AxfM9 .framer-11sv69k { align-content: center; align-items: center; } .framer-AxfM9 .framer-1jmxer1 { align-content: center; align-items: center; gap: 0px; } .framer-AxfM9 .framer-1yqmmls { flex: none; height: var(--framer-aspect-ratio-supported, 567px); width: 100%; } .framer-AxfM9 .framer-14ivmi4 { height: var(--framer-aspect-ratio-supported, 567px); } .framer-AxfM9 .framer-spibs1, .framer-AxfM9 .framer-40dry6, .framer-AxfM9 .framer-dailp9, .framer-AxfM9 .framer-14b3gtq, .framer-AxfM9 .framer-1xxsu70 { padding: 100px 40px 100px 40px; } .framer-AxfM9 .framer-1m02ddy { flex-wrap: wrap; gap: 32px; justify-content: center; } .framer-AxfM9 .framer-1u9jo19, .framer-AxfM9 .framer-1gbwz0t { gap: 24px; } .framer-AxfM9 .framer-1kqv9p1, .framer-AxfM9 .framer-1gr6cvb, .framer-AxfM9 .framer-1nu6lyz { padding: 24px; } .framer-AxfM9 .framer-spdu3u { padding: 24px 24px 0px 24px; } .framer-AxfM9 .framer-1hj24pf { height: var(--framer-aspect-ratio-supported, 222px); } .framer-AxfM9 .framer-1f5mb0m { height: 27%; width: var(--framer-aspect-ratio-supported, 130px); } .framer-AxfM9 .framer-1fj6b7w { width: var(--framer-aspect-ratio-supported, 288px); } .framer-AxfM9 .framer-1drv1qj { padding: 100px 0px 100px 40px; } .framer-AxfM9 .framer-lwxapc { height: var(--framer-aspect-ratio-supported, 453px); } .framer-AxfM9 .framer-1l1o8vj { bottom: 91px; left: -1266px; } .framer-AxfM9 .framer-jjzgj8 { bottom: 36px; left: -114px; } .framer-AxfM9 .framer-1g4n2pq { gap: 24px; height: 631px; } .framer-AxfM9 .framer-1mlgwj3 { gap: 28px; padding: 24px; } .framer-AxfM9 .framer-jperut { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; } .framer-AxfM9 .framer-1lah7x1 { height: var(--framer-aspect-ratio-supported, 72px); left: unset; position: relative; top: unset; width: 100%; } .framer-AxfM9 .framer-1e7bazx { aspect-ratio: unset; height: min-content; } .framer-AxfM9 .framer-1nj1wvn { flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 154px); width: 1px; } .framer-AxfM9 .framer-1tlg1gt { height: var(--framer-aspect-ratio-supported, 167px); top: 0px; } .framer-AxfM9 .framer-134q2pf { height: var(--framer-aspect-ratio-supported, 165px); } .framer-AxfM9 .framer-y968se { height: min-content; } .framer-AxfM9 .framer-l9fd7d { height: 165px; } .framer-AxfM9 .framer-cduf0q { align-content: flex-start; align-items: flex-start; gap: 24px; } .framer-AxfM9 .framer-4d4t8w { padding: 120px 40px 120px 40px; } .framer-AxfM9 .framer-c3khxc { padding: 0px 40px 100px 40px; } .framer-AxfM9 .framer-1yuwswt-container { aspect-ratio: unset; height: 482px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-AxfM9 .framer-1i63bhu, .framer-AxfM9 .framer-1jmxer1, .framer-AxfM9 .framer-1m02ddy, .framer-AxfM9 .framer-1u9jo19, .framer-AxfM9 .framer-1g4n2pq, .framer-AxfM9 .framer-1mlgwj3, .framer-AxfM9 .framer-1gbwz0t, .framer-AxfM9 .framer-jperut, .framer-AxfM9 .framer-cduf0q { gap: 0px; } .framer-AxfM9 .framer-1i63bhu > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-AxfM9 .framer-1i63bhu > :first-child, .framer-AxfM9 .framer-1jmxer1 > :first-child, .framer-AxfM9 .framer-1mlgwj3 > :first-child, .framer-AxfM9 .framer-jperut > :first-child { margin-top: 0px; } .framer-AxfM9 .framer-1i63bhu > :last-child, .framer-AxfM9 .framer-1jmxer1 > :last-child, .framer-AxfM9 .framer-1mlgwj3 > :last-child, .framer-AxfM9 .framer-jperut > :last-child { margin-bottom: 0px; } .framer-AxfM9 .framer-1jmxer1 > *, .framer-AxfM9 .framer-jperut > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-AxfM9 .framer-1m02ddy > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-AxfM9 .framer-1m02ddy > :first-child, .framer-AxfM9 .framer-1u9jo19 > :first-child, .framer-AxfM9 .framer-1g4n2pq > :first-child, .framer-AxfM9 .framer-1gbwz0t > :first-child, .framer-AxfM9 .framer-cduf0q > :first-child { margin-left: 0px; } .framer-AxfM9 .framer-1m02ddy > :last-child, .framer-AxfM9 .framer-1u9jo19 > :last-child, .framer-AxfM9 .framer-1g4n2pq > :last-child, .framer-AxfM9 .framer-1gbwz0t > :last-child, .framer-AxfM9 .framer-cduf0q > :last-child { margin-right: 0px; } .framer-AxfM9 .framer-1u9jo19 > *, .framer-AxfM9 .framer-1g4n2pq > *, .framer-AxfM9 .framer-1gbwz0t > *, .framer-AxfM9 .framer-cduf0q > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-AxfM9 .framer-1mlgwj3 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } }}`,`@media (max-width: 809px) { .framer-AxfM9 .hidden-4ufibd { display: none !important; } .${metadata.bodyClassName}-framer-AxfM9 { background: white; } .framer-AxfM9.framer-1dt5h5z { width: 390px; } .framer-AxfM9 .framer-1b4tgn7-container { order: 1; } .framer-AxfM9 .framer-spkecc, .framer-AxfM9 .framer-p43wc7 { order: 0; } .framer-AxfM9 .framer-1i63bhu { flex-direction: column; padding: 160px 20px 60px 20px; } .framer-AxfM9 .framer-1t00kla { align-content: center; align-items: center; flex: none; width: 100%; } .framer-AxfM9 .framer-1jmxer1, .framer-AxfM9 .framer-m2f1sz { align-content: center; align-items: center; } .framer-AxfM9 .framer-1muzb1v { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 48px); width: 69px; } .framer-AxfM9 .framer-kyc3hw { height: var(--framer-aspect-ratio-supported, 50px); width: 58px; } .framer-AxfM9 .framer-11gt8kb { padding: 5px 12px 5px 7px; } .framer-AxfM9 .framer-gyshtx { justify-content: center; } .framer-AxfM9 .framer-zn225h { height: 39px; min-height: unset; min-width: 79px; } .framer-AxfM9 .framer-7uecu { height: var(--framer-aspect-ratio-supported, 38px); right: 41px; } .framer-AxfM9 .framer-1v7jlin { bottom: unset; height: var(--framer-aspect-ratio-supported, 38px); left: 21px; transform: unset; width: 38px; } .framer-AxfM9 .framer-dz14sm { bottom: unset; height: var(--framer-aspect-ratio-supported, 38px); left: 40px; right: unset; width: 38px; } .framer-AxfM9 .framer-1ll19r5-container { max-width: 360px; } .framer-AxfM9 .framer-1yqmmls { flex: none; height: var(--framer-aspect-ratio-supported, 272px); width: 100%; } .framer-AxfM9 .framer-14ivmi4 { height: var(--framer-aspect-ratio-supported, 272px); } .framer-AxfM9 .framer-1ruego6 { height: 82px; left: -46px; width: 99px; } .framer-AxfM9 .framer-13qc11c { height: 70px; order: 0; width: 73px; } .framer-AxfM9 .framer-avtuh0 { height: 65px; left: -29px; top: -33px; width: 59px; } .framer-AxfM9 .framer-xk022m { bottom: unset; height: 42px; left: 13px; right: unset; top: calc(50.00000000000002% - 42px / 2); width: 42px; } .framer-AxfM9 .framer-spibs1 { order: 2; padding: 80px 20px 80px 20px; } .framer-AxfM9 .framer-1m02ddy { flex-wrap: wrap; gap: 32px; justify-content: center; } .framer-AxfM9 .framer-40dry6 { order: 3; padding: 80px 20px 80px 20px; } .framer-AxfM9 .framer-1u9jo19 { flex-direction: column; justify-content: center; } .framer-AxfM9 .framer-1kqv9p1 { flex: none; gap: 48px; padding: 44px 20px 44px 20px; width: 100%; } .framer-AxfM9 .framer-spdu3u { align-self: unset; flex: none; gap: 24px; height: min-content; justify-content: center; padding: 44px 20px 0px 20px; width: 100%; } .framer-AxfM9 .framer-1hj24pf { height: var(--framer-aspect-ratio-supported, 169px); } .framer-AxfM9 .framer-1f5mb0m { bottom: unset; height: 33%; top: 66%; transform: translateY(-50%); width: var(--framer-aspect-ratio-supported, 122px); } .framer-AxfM9 .framer-1fj6b7w { width: var(--framer-aspect-ratio-supported, 220px); } .framer-AxfM9 .framer-1drv1qj { flex-direction: column; order: 4; padding: 80px 0px 80px 20px; } .framer-AxfM9 .framer-mxs2xp { flex: none; flex-direction: column; width: 100%; } .framer-AxfM9 .framer-1c4ozt1 { align-content: center; align-items: center; flex: none; padding: 0px 20px 0px 0px; width: 100%; } .framer-AxfM9 .framer-17g5czm { flex-direction: column; max-width: 370px; width: 100%; } .framer-AxfM9 .framer-luqvld-container, .framer-AxfM9 .framer-10q87vl-container { width: 100%; } .framer-AxfM9 .framer-lwxapc { flex: none; height: var(--framer-aspect-ratio-supported, 465px); width: 100%; } .framer-AxfM9 .framer-dailp9 { order: 6; padding: 80px 20px 80px 20px; } .framer-AxfM9 .framer-sdwycc { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 16px; justify-content: center; } .framer-AxfM9 .framer-wk0939, .framer-AxfM9 .framer-1gr6cvb, .framer-AxfM9 .framer-1nu6lyz, .framer-AxfM9 .framer-1hmjjwk-container, .framer-AxfM9 .framer-dlu6b2-container, .framer-AxfM9 .framer-18u5bz0-container, .framer-AxfM9 .framer-pok7if-container, .framer-AxfM9 .framer-5jvjeu, .framer-AxfM9 .framer-1t6y2bb { flex: none; width: 100%; } .framer-AxfM9 .framer-1g4n2pq, .framer-AxfM9 .framer-cduf0q { flex-direction: column; } .framer-AxfM9 .framer-1mlgwj3 { flex: none; padding: 48px 20px 13px 20px; width: 100%; } .framer-AxfM9 .framer-1gbwz0t { gap: 16px; } .framer-AxfM9 .framer-jperut { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; } .framer-AxfM9 .framer-1lah7x1 { height: var(--framer-aspect-ratio-supported, 160px); left: unset; position: relative; top: unset; width: 100%; } .framer-AxfM9 .framer-1e7bazx { height: var(--framer-aspect-ratio-supported, 244px); } .framer-AxfM9 .framer-14b3gtq { order: 8; padding: 80px 20px 80px 20px; } .framer-AxfM9 .framer-4d4t8w { order: 5; padding: 80px 20px 80px 20px; } .framer-AxfM9 .framer-ug0vlz { padding: 80px 20px 80px 20px; } .framer-AxfM9 .framer-c3khxc { order: 7; padding: 60px 20px 80px 20px; } .framer-AxfM9 .framer-1yuwswt-container { aspect-ratio: unset; height: 455px; max-width: 390px; } .framer-AxfM9 .framer-1xxsu70 { flex-direction: column; order: 9; padding: 80px 20px 80px 20px; } .framer-AxfM9 .framer-jzqka3 { flex: none; flex-direction: column; gap: 80px; width: 100%; } .framer-AxfM9 .framer-3v5qu7-container { order: 10; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-AxfM9 .framer-1i63bhu, .framer-AxfM9 .framer-1m02ddy, .framer-AxfM9 .framer-1u9jo19, .framer-AxfM9 .framer-1kqv9p1, .framer-AxfM9 .framer-spdu3u, .framer-AxfM9 .framer-1drv1qj, .framer-AxfM9 .framer-mxs2xp, .framer-AxfM9 .framer-17g5czm, .framer-AxfM9 .framer-sdwycc, .framer-AxfM9 .framer-1g4n2pq, .framer-AxfM9 .framer-1gbwz0t, .framer-AxfM9 .framer-jperut, .framer-AxfM9 .framer-cduf0q, .framer-AxfM9 .framer-1xxsu70, .framer-AxfM9 .framer-jzqka3 { gap: 0px; } .framer-AxfM9 .framer-1i63bhu > *, .framer-AxfM9 .framer-1kqv9p1 > *, .framer-AxfM9 .framer-1drv1qj > *, .framer-AxfM9 .framer-mxs2xp > *, .framer-AxfM9 .framer-1xxsu70 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-AxfM9 .framer-1i63bhu > :first-child, .framer-AxfM9 .framer-1u9jo19 > :first-child, .framer-AxfM9 .framer-1kqv9p1 > :first-child, .framer-AxfM9 .framer-spdu3u > :first-child, .framer-AxfM9 .framer-1drv1qj > :first-child, .framer-AxfM9 .framer-mxs2xp > :first-child, .framer-AxfM9 .framer-17g5czm > :first-child, .framer-AxfM9 .framer-sdwycc > :first-child, .framer-AxfM9 .framer-1g4n2pq > :first-child, .framer-AxfM9 .framer-jperut > :first-child, .framer-AxfM9 .framer-cduf0q > :first-child, .framer-AxfM9 .framer-1xxsu70 > :first-child, .framer-AxfM9 .framer-jzqka3 > :first-child { margin-top: 0px; } .framer-AxfM9 .framer-1i63bhu > :last-child, .framer-AxfM9 .framer-1u9jo19 > :last-child, .framer-AxfM9 .framer-1kqv9p1 > :last-child, .framer-AxfM9 .framer-spdu3u > :last-child, .framer-AxfM9 .framer-1drv1qj > :last-child, .framer-AxfM9 .framer-mxs2xp > :last-child, .framer-AxfM9 .framer-17g5czm > :last-child, .framer-AxfM9 .framer-sdwycc > :last-child, .framer-AxfM9 .framer-1g4n2pq > :last-child, .framer-AxfM9 .framer-jperut > :last-child, .framer-AxfM9 .framer-cduf0q > :last-child, .framer-AxfM9 .framer-1xxsu70 > :last-child, .framer-AxfM9 .framer-jzqka3 > :last-child { margin-bottom: 0px; } .framer-AxfM9 .framer-1m02ddy > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-AxfM9 .framer-1m02ddy > :first-child, .framer-AxfM9 .framer-1gbwz0t > :first-child { margin-left: 0px; } .framer-AxfM9 .framer-1m02ddy > :last-child, .framer-AxfM9 .framer-1gbwz0t > :last-child { margin-right: 0px; } .framer-AxfM9 .framer-1u9jo19 > *, .framer-AxfM9 .framer-1g4n2pq > *, .framer-AxfM9 .framer-cduf0q > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-AxfM9 .framer-spdu3u > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-AxfM9 .framer-17g5czm > *, .framer-AxfM9 .framer-sdwycc > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-AxfM9 .framer-1gbwz0t > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-AxfM9 .framer-jperut > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-AxfM9 .framer-jzqka3 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-AxfM9[data-border=\"true\"]::after, .framer-AxfM9 [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 8666\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"MsRu6q_2e\":{\"layout\":[\"fixed\",\"auto\"]},\"AH6gjMoBC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramermY6FcSiYG=withCSS(Component,css,\"framer-AxfM9\");export default FramermY6FcSiYG;FramermY6FcSiYG.displayName=\"Page\";FramermY6FcSiYG.defaultProps={height:8666,width:1440};addFonts(FramermY6FcSiYG,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNTxXUEKi4Rw.woff2\",weight:\"600\"},{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\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NTxXUEKi4Rw.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNTxXUEKi4Rw.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNTxXUEKi4Rw.woff2\",weight:\"800\"}]},...Navbar3Fonts,...ButtonWithoutIconFonts,...PricingCard2Fonts,...TestimonialsCardFonts,...SlideshowFonts,...FAQs2ndFonts,...Footer2ndFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermY6FcSiYG\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MsRu6q_2e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AH6gjMoBC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"8666\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "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", "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", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "backgroundColor", "height", "id", "image", "name1", "positions", "subPosiColor", "testimonials", "textColor", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "iFiH2ArEc", "CQ8TzxnMf", "H4ktKHGbS", "yOX7HSevq", "xPg18Cf0H", "UapNMPyRP", "W0moGAXa6", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "serializationHash", "u", "RichText2", "x", "Image2", "css", "Framercf0G3GyX_", "withCSS", "cf0G3GyX_default", "addPropertyControls", "ControlType", "addFonts", "ButtonWithoutIconFonts", "getFonts", "zWSd_ITwN_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "listItem1", "listItem2", "listItem3", "listItem4", "listItem5", "planText", "price", "subText", "visible", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_ref7", "_humanReadableVariantMap_props_variant", "_ref8", "_ref9", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "D4iGdOPsh", "FespGoCrh", "Oh78w6EY6", "weDe1GsIM", "s7F2P6Zcw", "aPwZx_2FG", "KiQbFb7mS", "RcxMgaI3E", "Uo8JR1hFh", "it5JACkBa", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "SVG", "ComponentViewportProvider", "css", "FramerSLDACpKMM", "withCSS", "SLDACpKMM_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Navbar3Fonts", "getFonts", "NBa_kmYy3_default", "ContainerWithFX", "withFX", "Container", "ButtonWithoutIconFonts", "zWSd_ITwN_default", "MotionDivWithFX", "motion", "RichTextWithFX", "RichText2", "ImageWithFX", "Image2", "PricingCard2Fonts", "SLDACpKMM_default", "TestimonialsCardFonts", "cf0G3GyX_default", "SlideshowFonts", "Slideshow", "FAQs2ndFonts", "oL5tmqAlK_default", "Footer2ndFonts", "b86CvLFdI_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "animation2", "animation3", "transition3", "animation4", "animation5", "transformTemplate1", "_", "t", "transition4", "animation6", "animation7", "animation8", "transition5", "animation9", "animation10", "animation11", "inertia", "preventDefault", "e", "transition6", "animation12", "animation13", "animation14", "transition7", "animation15", "animation16", "animation17", "animation18", "animation19", "transition8", "transition9", "transition10", "transition11", "transition12", "transition13", "transition14", "transition15", "transformTemplate2", "transition16", "transition17", "transition18", "animation20", "transition19", "animation21", "animation22", "transition20", "transition21", "transition22", "transition23", "animation23", "transition24", "transition25", "transition26", "transition27", "transition28", "addImageAlt", "image", "alt", "transition29", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ie", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "useRouteElementId", "ref2", "id1", "ref3", "id2", "ref4", "id3", "ref5", "id4", "ref6", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "ContainerWithFX", "PropertyOverrides2", "NBa_kmYy3_default", "optimizeAppear", "SVG", "RichText2", "x", "Image2", "ResolveLinks", "resolvedLinks", "Container", "zWSd_ITwN_default", "MotionDivWithFX", "RichTextWithFX", "resolvedLinks1", "resolvedLinks2", "ImageWithFX", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "SLDACpKMM_default", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "Slideshow", "cf0G3GyX_default", "oL5tmqAlK_default", "b86CvLFdI_default", "css", "FramermY6FcSiYG", "withCSS", "mY6FcSiYG_default", "addFonts", "Navbar3Fonts", "ButtonWithoutIconFonts", "PricingCard2Fonts", "TestimonialsCardFonts", "SlideshowFonts", "FAQs2ndFonts", "Footer2ndFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
