{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js", "ssg:https://framerusercontent.com/modules/jH1v24MI5kSFWq29oHk1/RK0xdXliO577KxBrQsZE/BEttAkvi5.js", "ssg:https://framerusercontent.com/modules/2xwe5MAsVAxi33CBwjkD/0qn5ghuR6o7TsrLQaNcY/cLyuCUAMX.js", "ssg:https://framerusercontent.com/modules/7atxx0hcrmQCo3z9cb7x/aGimgTc6vh1hYXleoCej/v_9vYvSUb.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (aab6bf9)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/bXa6fSitOGSrt4uoj0vf/JVppcpDoXq9fCSHNbZ9c/EAT2CDplj.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/EkT1PGXESGI7pbreBcu8/yjrbD7Gs8TLhfCzzs1m8/vuztVCB_C.js\";const enabledGestures={lUtKSBVjl:{hover:true}};const cycleOrder=[\"lUtKSBVjl\"];const serializationHash=\"framer-bmHCV\";const variantClassNames={lUtKSBVjl:\"framer-v-19s9s6x\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableEnumMap={\"Space Around\":\"space-around\",\"Space Between\":\"space-between\",\"Space Evenly\":\"space-evenly\",Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const getProps=({ava,distribute,header,height,id,image,link,name1,text,width,...props})=>{return{...props,eQ1asmYhF:humanReadableEnumMap[distribute]??distribute??props.eQ1asmYhF??\"center\",o0nk7MAQk:link??props.o0nk7MAQk,QJCg6biOO:text??props.QJCg6biOO??\"Zephyr Mobile team created a successful mobile app in the trivia category. The app was downloaded more than 10M times on\\xa0Play Store\\xa0and monetized successfully with ads. But the team was eager to grow revenue further and decided to test an added subscription monetization.\",TrrMsinaQ:image??props.TrrMsinaQ??{src:\"https://framerusercontent.com/images/SIL4pcQW6HFK8yVObR1WP7t2w.png\"},wAv9piO5q:ava??props.wAv9piO5q??{src:\"https://framerusercontent.com/images/TOFGdlYIjiAmKk4gQS6uzSiesY.png\"},x1kI00cTG:header??props.x1kI00cTG??\"Adding in-app subscriptions to accelerate the revenue growth of an app monetizing with ads\",Z8TYSdOyI:name1??props.Z8TYSdOyI??\"Kate\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,TrrMsinaQ,x1kI00cTG,QJCg6biOO,Z8TYSdOyI,wAv9piO5q,o0nk7MAQk,eQ1asmYhF,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lUtKSBVjl\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:o0nk7MAQk,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-19s9s6x\",className,classNames)} framer-18kiwq3`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"lUtKSBVjl\",ref:ref??ref1,style:{\"--4kjw4n\":eQ1asmYhF,backgroundColor:\"var(--token-fb52538e-e373-4cdf-9be7-7b90e01bb6eb, rgb(255, 255, 255))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},variants:{\"lUtKSBVjl-hover\":{backgroundColor:\"var(--token-8c8b8f26-f8b1-4a51-aab3-b2b93f3876b9, rgb(233, 242, 242))\"}},...addPropertyOverrides({\"lUtKSBVjl-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-zifys1\",layoutDependency:layoutDependency,layoutId:\"wJHtz9GaY\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-thxlr3\",layoutDependency:layoutDependency,layoutId:\"d5Cjp9Ic8\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-x27j9w\",layoutDependency:layoutDependency,layoutId:\"KH9UgaI8r\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80,intrinsicWidth:80,pixelHeight:160,pixelWidth:160,sizes:\"80px\",...toResponsiveImage(TrrMsinaQ)},className:\"framer-rhjozq\",\"data-framer-name\":\"Blog1\",layoutDependency:layoutDependency,layoutId:\"F_LGRkrSn\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-113xpsu\",layoutDependency:layoutDependency,layoutId:\"EeSVwFM9O\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1c3yy2\",\"data-styles-preset\":\"EAT2CDplj\",children:\"Adding in-app subscriptions to accelerate the revenue growth of an app monetizing with ads\"})}),className:\"framer-4mth6c\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BK9N8ShF5\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:x1kI00cTG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1qvmci1\",\"data-styles-preset\":\"vuztVCB_C\",children:\"Zephyr Mobile team created a successful mobile app in the trivia category. The app was downloaded more than 10M times on\\xa0Play Store\\xa0and monetized successfully with ads. But the team was eager to grow revenue further and decided to test an added subscription monetization.\"})}),className:\"framer-1o3u6pf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wNSpnSAKD\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:QJCg6biOO,verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ndkvzz\",layoutDependency:layoutDependency,layoutId:\"NVJlf8fkR\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-le4kio\",layoutDependency:layoutDependency,layoutId:\"GACukDpYr\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:96,intrinsicWidth:96,pixelHeight:96,pixelWidth:96,sizes:\"30px\",...toResponsiveImage(wAv9piO5q)},className:\"framer-1k4uz6e\",\"data-framer-name\":\"Ava1\",layoutDependency:layoutDependency,layoutId:\"kFitPMCXd\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w28ikw\",layoutDependency:layoutDependency,layoutId:\"jV76y_IZO\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0RlbmltIElOSyBXRCBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Denim INK WD SemiBold\", \"Denim INK WD SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e3f42397-3791-44ce-9b85-9a083b9ec181, rgb(36, 40, 48)))\"},children:\"Kate\"})}),className:\"framer-12om0yn\",fonts:[\"CUSTOM;Denim INK WD SemiBold\"],layoutDependency:layoutDependency,layoutId:\"X5t66lNWP\",style:{\"--extracted-r6o4lv\":\"var(--token-e3f42397-3791-44ce-9b85-9a083b9ec181, rgb(36, 40, 48))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:Z8TYSdOyI,verticalAlignment:\"top\",withExternalLayout:true})})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bmHCV.framer-18kiwq3, .framer-bmHCV .framer-18kiwq3 { display: block; }\",\".framer-bmHCV.framer-19s9s6x { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: var(--4kjw4n); overflow: hidden; padding: 20px; position: relative; text-decoration: none; width: 480px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bmHCV .framer-zifys1 { 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: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bmHCV .framer-thxlr3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bmHCV .framer-x27j9w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bmHCV .framer-rhjozq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); overflow: visible; position: relative; width: 80px; }\",\".framer-bmHCV .framer-113xpsu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bmHCV .framer-4mth6c, .framer-bmHCV .framer-1o3u6pf, .framer-bmHCV .framer-12om0yn { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bmHCV .framer-ndkvzz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bmHCV .framer-le4kio { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bmHCV .framer-1k4uz6e { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 30px; }\",\".framer-bmHCV .framer-1w28ikw { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bmHCV.framer-19s9s6x, .framer-bmHCV .framer-zifys1, .framer-bmHCV .framer-thxlr3, .framer-bmHCV .framer-113xpsu, .framer-bmHCV .framer-le4kio, .framer-bmHCV .framer-1w28ikw { gap: 0px; } .framer-bmHCV.framer-19s9s6x > *, .framer-bmHCV .framer-zifys1 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-bmHCV.framer-19s9s6x > :first-child, .framer-bmHCV .framer-zifys1 > :first-child, .framer-bmHCV .framer-thxlr3 > :first-child, .framer-bmHCV .framer-113xpsu > :first-child, .framer-bmHCV .framer-1w28ikw > :first-child { margin-top: 0px; } .framer-bmHCV.framer-19s9s6x > :last-child, .framer-bmHCV .framer-zifys1 > :last-child, .framer-bmHCV .framer-thxlr3 > :last-child, .framer-bmHCV .framer-113xpsu > :last-child, .framer-bmHCV .framer-1w28ikw > :last-child { margin-bottom: 0px; } .framer-bmHCV .framer-thxlr3 > *, .framer-bmHCV .framer-113xpsu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-bmHCV .framer-le4kio > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-bmHCV .framer-le4kio > :first-child { margin-left: 0px; } .framer-bmHCV .framer-le4kio > :last-child { margin-right: 0px; } .framer-bmHCV .framer-1w28ikw > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 348\n * @framerIntrinsicWidth 480\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"LDjEwN42d\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"TrrMsinaQ\":\"image\",\"x1kI00cTG\":\"header\",\"QJCg6biOO\":\"text\",\"Z8TYSdOyI\":\"name1\",\"wAv9piO5q\":\"ava\",\"o0nk7MAQk\":\"link\",\"eQ1asmYhF\":\"distribute\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBEttAkvi5=withCSS(Component,css,\"framer-bmHCV\");export default FramerBEttAkvi5;FramerBEttAkvi5.displayName=\"BLog\";FramerBEttAkvi5.defaultProps={height:348,width:480};addPropertyControls(FramerBEttAkvi5,{TrrMsinaQ:{__defaultAssetReference:\"data:framer/asset-reference,SIL4pcQW6HFK8yVObR1WP7t2w.png?originalFilename=Blog1.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},x1kI00cTG:{defaultValue:\"Adding in-app subscriptions to accelerate the revenue growth of an app monetizing with ads\",displayTextArea:false,title:\"Header\",type:ControlType.String},QJCg6biOO:{defaultValue:\"Zephyr Mobile team created a successful mobile app in the trivia category. The app was downloaded more than 10M times on\\xa0Play Store\\xa0and monetized successfully with ads. But the team was eager to grow revenue further and decided to test an added subscription monetization.\",displayTextArea:false,title:\"Text\",type:ControlType.String},Z8TYSdOyI:{defaultValue:\"Kate\",displayTextArea:false,title:\"Name\",type:ControlType.String},wAv9piO5q:{__defaultAssetReference:\"data:framer/asset-reference,TOFGdlYIjiAmKk4gQS6uzSiesY.png?originalFilename=Ava4.png&preferredSize=auto\",title:\"Ava\",type:ControlType.ResponsiveImage},o0nk7MAQk:{title:\"Link\",type:ControlType.Link},eQ1asmYhF:{defaultValue:\"center\",options:[\"flex-start\",\"center\",\"flex-end\",\"space-between\",\"space-around\",\"space-evenly\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Space Between\",\"Space Around\",\"Space Evenly\"],title:\"Distribute\",type:ControlType.Enum}});addFonts(FramerBEttAkvi5,[{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:\"Denim INK WD SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/q21mEeWodYgE37AFEPCsecvtn8.woff2\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBEttAkvi5\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"TrrMsinaQ\\\":\\\"image\\\",\\\"x1kI00cTG\\\":\\\"header\\\",\\\"QJCg6biOO\\\":\\\"text\\\",\\\"Z8TYSdOyI\\\":\\\"name1\\\",\\\"wAv9piO5q\\\":\\\"ava\\\",\\\"o0nk7MAQk\\\":\\\"link\\\",\\\"eQ1asmYhF\\\":\\\"distribute\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LDjEwN42d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"480\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"348\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (aab6bf9)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/bwgDNfOkuRQlrlKseDFD/SlideShow.js\";import BLog from\"https://framerusercontent.com/modules/jH1v24MI5kSFWq29oHk1/RK0xdXliO577KxBrQsZE/BEttAkvi5.js\";const BLogFonts=getFonts(BLog);const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"AlmDDkPUZ\",\"Ke4B_Qy14\"];const serializationHash=\"framer-zI7KL\";const variantClassNames={AlmDDkPUZ:\"framer-v-174x8pi\",Ke4B_Qy14:\"framer-v-13j9oeh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"AlmDDkPUZ\",Mobile:\"Ke4B_Qy14\"};const getProps=({height,id,items,width,...props})=>{return{...props,SVunKCEkQ:items??props.SVunKCEkQ??1,variant:humanReadableVariantMap[props.variant]??props.variant??\"AlmDDkPUZ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,SVunKCEkQ,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"AlmDDkPUZ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-174x8pi\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"AlmDDkPUZ\",ref:ref??ref1,style:{...style},...addPropertyOverrides({Ke4B_Qy14:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-48ryra-container\",layoutDependency:layoutDependency,layoutId:\"waMUKd_td-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(207, 225, 225, 0.3)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:-60,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:8,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/h4Yy4Yu9am7XR6q5c7HCRqU0w.svg\",rightArrow:\"https://framerusercontent.com/images/S9sIEtBmZtpcPqU4O60t7V19ga0.svg\",showMouseControls:false},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",id:\"waMUKd_td\",intervalControl:3,itemAmount:SVunKCEkQ,layoutId:\"waMUKd_td\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(207, 225, 225, 0)\",dotsBlur:0,dotsFill:\"var(--token-e3f42397-3791-44ce-9b85-9a083b9ec181, rgb(36, 40, 48))\",dotsGap:8,dotsInset:-40,dotSize:8,dotsOpacity:.1,dotsPadding:10,dotsRadius:8,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"480px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5587k2-container\",\"data-framer-name\":\"Blog 1\",layoutDependency:layoutDependency,layoutId:\"pQNtDG0Sc-container\",name:\"Blog 1\",children:/*#__PURE__*/_jsx(BLog,{eQ1asmYhF:\"space-between\",height:\"100%\",id:\"pQNtDG0Sc\",layoutId:\"pQNtDG0Sc\",name:\"Blog 1\",o0nk7MAQk:\"https://qonversion.io/blog/in-app-subscriptions-to-accelerate-revenue-growth/\",QJCg6biOO:\"Zephyr Mobile team created a successful mobile app in the trivia category. The app was downloaded more than 10M times on\\xa0Play Store\\xa0and monetized successfully with ads. But the team was eager to grow revenue further and decided to test an added subscription monetization.\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",x1kI00cTG:\"Adding in-app subscriptions to accelerate the revenue growth of an app monetizing with ads\",Z8TYSdOyI:\"Kate\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"480px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yzrbuy-container\",\"data-framer-name\":\"Blog 2\",layoutDependency:layoutDependency,layoutId:\"BWhG_tAZb-container\",name:\"Blog 2\",children:/*#__PURE__*/_jsx(BLog,{eQ1asmYhF:\"space-between\",height:\"100%\",id:\"BWhG_tAZb\",layoutId:\"BWhG_tAZb\",name:\"Blog 2\",o0nk7MAQk:\"https://qonversion.io/blog/apple-search-ads-for-subscription-apps/\",QJCg6biOO:\"Interval Timer\\xa0is the mobile app in the fitness category monetizing with in-app subscriptions. The app helps to create and monitor interval training. Leveraging Qonversion\u2019s Apple Search Ads attribution dashboard, the app\u2019s team doubled its monthly revenue in six weeks.\",style:{height:\"100%\",width:\"100%\"},TrrMsinaQ:addImageAlt({src:\"https://framerusercontent.com/images/608u8X5xYLrPLN7Xg2bAnyyU.png\"},\"\"),wAv9piO5q:addImageAlt({src:\"https://framerusercontent.com/images/zcEEslIE71u3mbEsK2dqt4q4FQ.png\"},\"\"),width:\"100%\",x1kI00cTG:\"How Intervals Fitness App Used Qonversion Apple Search Ads Dashboard to Grow In-App Subscription Revenue by 2x\",Z8TYSdOyI:\"Michael\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"480px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-160gvra-container\",\"data-framer-name\":\"Blog 3\",layoutDependency:layoutDependency,layoutId:\"IqlFGHbYj-container\",name:\"Blog 3\",children:/*#__PURE__*/_jsx(BLog,{eQ1asmYhF:\"space-between\",height:\"100%\",id:\"IqlFGHbYj\",layoutId:\"IqlFGHbYj\",name:\"Blog 3\",o0nk7MAQk:\"https://qonversion.io/blog/high-data-accuracy-bp-mobile/\",QJCg6biOO:\"BP Mobile is an international app developer with top titles across several categories of App Store and Google Play Store. The company\u2019s projects top the list of the most downloaded apps on both platforms and simplify the life of 500M+ users worldwide. BP Mobile embraces data and analytics as key factors for making marketing and product decisions. Tracking mobile subscription data with high accuracy is where Qonversion helps.\",style:{height:\"100%\",width:\"100%\"},TrrMsinaQ:addImageAlt({src:\"https://framerusercontent.com/images/lbcFHs9nft8d8ar81uOoYf4lSBk.png\"},\"\"),width:\"100%\",x1kI00cTG:\"BP Mobile + Qonversion: 100% data accuracy for better decisions\",Z8TYSdOyI:\"Kate\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zI7KL.framer-4m56ct, .framer-zI7KL .framer-4m56ct { display: block; }\",\".framer-zI7KL.framer-174x8pi { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 10px 40px 10px; position: relative; width: 1070px; }\",\".framer-zI7KL .framer-48ryra-container { flex: 1 0 0px; height: 520px; position: relative; width: 1px; }\",\".framer-zI7KL .framer-5587k2-container, .framer-zI7KL .framer-yzrbuy-container, .framer-zI7KL .framer-160gvra-container { height: 520px; position: relative; width: 480px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zI7KL.framer-174x8pi { gap: 0px; } .framer-zI7KL.framer-174x8pi > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-zI7KL.framer-174x8pi > :first-child { margin-left: 0px; } .framer-zI7KL.framer-174x8pi > :last-child { margin-right: 0px; } }\",\".framer-zI7KL.framer-v-13j9oeh.framer-174x8pi { overflow: auto; width: 320px; }\",\".framer-zI7KL.framer-v-13j9oeh .framer-48ryra-container { height: 560px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 570\n * @framerIntrinsicWidth 1070\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Ke4B_Qy14\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"SVunKCEkQ\":\"items\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercLyuCUAMX=withCSS(Component,css,\"framer-zI7KL\");export default FramercLyuCUAMX;FramercLyuCUAMX.displayName=\"Testimonials Slide History\";FramercLyuCUAMX.defaultProps={height:570,width:1070};addPropertyControls(FramercLyuCUAMX,{variant:{options:[\"AlmDDkPUZ\",\"Ke4B_Qy14\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},SVunKCEkQ:{defaultValue:1,displayStepper:true,max:3,min:1,step:1,title:\"Items\",type:ControlType.Number}});addFonts(FramercLyuCUAMX,[{explicitInter:true,fonts:[]},...BLogFonts,...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercLyuCUAMX\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"570\",\"framerIntrinsicWidth\":\"1070\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ke4B_Qy14\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"SVunKCEkQ\\\":\\\"items\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9d598a4)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleCode,useLocaleInfo,useQueryData,useVariantState,withCodeBoundaryForOverrides,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";import{withCharacterLimit}from\"https://framerusercontent.com/modules/28ji8X9cU0iRbuZQgw2K/x599mAm8Sz2SP6wjIRzp/Textlimit.js\";import Authors from\"https://framerusercontent.com/modules/ec2C9J2KTKFe0TUMRaYa/dJjAQIaDWTj7m6hRXNZg/H65AUkI8_.js\";import Blog from\"https://framerusercontent.com/modules/qKCZNX39dB8Va8lehIlO/V4TlR1gpIZVitH6A9VfA/wtbflg75e.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/0fKx7rHKQKsATSG6QBk6/hWeQMPoL7HPW23B4wcvj/AbgDedWrB.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/FpaAYcyQYdxKbznY0efx/lrNVFeYi9YKaEKzCxfZo/cR3uUHNN6.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/bXa6fSitOGSrt4uoj0vf/JVppcpDoXq9fCSHNbZ9c/EAT2CDplj.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/retTdSUOZxFSLZxQUJnT/1ZnDhczkNLRs8Yi6HRxk/MqWGsmK9e.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/EkT1PGXESGI7pbreBcu8/yjrbD7Gs8TLhfCzzs1m8/vuztVCB_C.js\";import BLog from\"https://framerusercontent.com/modules/jH1v24MI5kSFWq29oHk1/RK0xdXliO577KxBrQsZE/BEttAkvi5.js\";import TestimonialsSlideHistory from\"https://framerusercontent.com/modules/2xwe5MAsVAxi33CBwjkD/0qn5ghuR6o7TsrLQaNcY/cLyuCUAMX.js\";import ButtonSecond from\"https://framerusercontent.com/modules/tPbq6wewHzzRXnWkT8c2/jIdLzeHLvrEXkksJNaIn/veChdCY8w.js\";const SlideshowFonts=getFonts(Slideshow);const ButtonSecondFonts=getFonts(ButtonSecond);const MotionDivWithFX=withFX(motion.div);const MotionDivWithCharacterLimit1bjmy5p=withCodeBoundaryForOverrides(motion.div,{nodeId:\"uu6POGEwY\",override:withCharacterLimit,scopeId:\"v_9vYvSUb\"});const BLogFonts=getFonts(BLog);const TestimonialsSlideHistoryFonts=getFonts(TestimonialsSlideHistory);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const cycleOrder=[\"D980VcOHM\",\"iug5WSMNd\",\"Bicevj3t8\",\"YwpzaPeNG\",\"fj9za_ryr\",\"t7wua6TOi\",\"DTyuQzyra\"];const serializationHash=\"framer-GZQp2\";const variantClassNames={Bicevj3t8:\"framer-v-794pz3\",D980VcOHM:\"framer-v-p8vp4g\",DTyuQzyra:\"framer-v-1oxc8qt\",fj9za_ryr:\"framer-v-1i5kjhu\",iug5WSMNd:\"framer-v-1r3hiv8\",t7wua6TOi:\"framer-v-wc85tj\",YwpzaPeNG:\"framer-v-dhyp24\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const query=prequery=>prequery({from:{alias:\"Sy2cDosXR\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"Sy2cDosXR\",name:\"OCLWutXkk\",type:\"Identifier\"},{collection:\"Sy2cDosXR\",name:\"TKIypsQLf\",type:\"Identifier\"},{collection:\"Sy2cDosXR\",name:\"A3vKzOhlb\",type:\"Identifier\"},{collection:\"Sy2cDosXR\",name:\"zSrHxsOOR\",type:\"Identifier\"},{collection:\"Sy2cDosXR\",name:\"fzGHZNBYl\",type:\"Identifier\"},{collection:\"Sy2cDosXR\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Sy2cDosXR\",name:\"FfIvsOts2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"customer-stories\"},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const query1=prequery=>prequery({from:{alias:\"loosdgCn5\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"loosdgCn5\",name:\"OCLWutXkk\",type:\"Identifier\"},{collection:\"loosdgCn5\",name:\"TKIypsQLf\",type:\"Identifier\"},{collection:\"loosdgCn5\",name:\"A3vKzOhlb\",type:\"Identifier\"},{collection:\"loosdgCn5\",name:\"zSrHxsOOR\",type:\"Identifier\"},{collection:\"loosdgCn5\",name:\"fzGHZNBYl\",type:\"Identifier\"},{collection:\"loosdgCn5\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"loosdgCn5\",name:\"FfIvsOts2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"customer-stories\"},type:\"BinaryOperation\"}});const query2=prequery=>prequery({from:{alias:\"NDlLap4pO\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"NDlLap4pO\",name:\"OCLWutXkk\",type:\"Identifier\"},{collection:\"NDlLap4pO\",name:\"TKIypsQLf\",type:\"Identifier\"},{collection:\"NDlLap4pO\",name:\"A3vKzOhlb\",type:\"Identifier\"},{collection:\"NDlLap4pO\",name:\"zSrHxsOOR\",type:\"Identifier\"},{collection:\"NDlLap4pO\",name:\"fzGHZNBYl\",type:\"Identifier\"},{collection:\"NDlLap4pO\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"NDlLap4pO\",name:\"FfIvsOts2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"customer-stories\"},type:\"BinaryOperation\"}});const query3=prequery=>prequery({from:{alias:\"AvCcLGQs8\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"AvCcLGQs8\",name:\"OCLWutXkk\",type:\"Identifier\"},{collection:\"AvCcLGQs8\",name:\"TKIypsQLf\",type:\"Identifier\"},{collection:\"AvCcLGQs8\",name:\"A3vKzOhlb\",type:\"Identifier\"},{collection:\"AvCcLGQs8\",name:\"zSrHxsOOR\",type:\"Identifier\"},{collection:\"AvCcLGQs8\",name:\"fzGHZNBYl\",type:\"Identifier\"},{collection:\"AvCcLGQs8\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"AvCcLGQs8\",name:\"FfIvsOts2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"customer-stories\"},type:\"BinaryOperation\"}});const query4=prequery=>prequery({from:{alias:\"a4dPG507a\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"a4dPG507a\",name:\"OCLWutXkk\",type:\"Identifier\"},{collection:\"a4dPG507a\",name:\"TKIypsQLf\",type:\"Identifier\"},{collection:\"a4dPG507a\",name:\"A3vKzOhlb\",type:\"Identifier\"},{collection:\"a4dPG507a\",name:\"zSrHxsOOR\",type:\"Identifier\"},{collection:\"a4dPG507a\",name:\"fzGHZNBYl\",type:\"Identifier\"},{collection:\"a4dPG507a\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"a4dPG507a\",name:\"FfIvsOts2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"customer-stories\"},type:\"BinaryOperation\"}});const query5=prequery=>prequery({from:{alias:\"I9y63w2CE\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:6},select:[{collection:\"I9y63w2CE\",name:\"OCLWutXkk\",type:\"Identifier\"},{collection:\"I9y63w2CE\",name:\"TKIypsQLf\",type:\"Identifier\"},{collection:\"I9y63w2CE\",name:\"A3vKzOhlb\",type:\"Identifier\"},{collection:\"I9y63w2CE\",name:\"zSrHxsOOR\",type:\"Identifier\"},{collection:\"I9y63w2CE\",name:\"fzGHZNBYl\",type:\"Identifier\"},{collection:\"I9y63w2CE\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"I9y63w2CE\",name:\"FfIvsOts2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"customer-stories\"},type:\"BinaryOperation\"}});const query6=prequery=>prequery({from:{alias:\"D7lTEIjOQ\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"D7lTEIjOQ\",name:\"OCLWutXkk\",type:\"Identifier\"},{collection:\"D7lTEIjOQ\",name:\"Qnead82bu\",type:\"Identifier\"},{collection:\"D7lTEIjOQ\",name:\"TKIypsQLf\",type:\"Identifier\"},{collection:\"D7lTEIjOQ\",name:\"zSrHxsOOR\",type:\"Identifier\"},{collection:\"D7lTEIjOQ\",name:\"fzGHZNBYl\",type:\"Identifier\"},{collection:\"D7lTEIjOQ\",name:\"id\",type:\"Identifier\"},{alias:\"tDEdDgk2w\",arguments:[{from:{alias:\"tDEdDgk2w\",data:Authors,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[],type:\"Select\",where:{left:{collection:\"tDEdDgk2w\",name:\"bntrxX93W\",type:\"Identifier\"},operator:\"==\",right:{collection:\"D7lTEIjOQ\",name:\"nb6kNh1DB\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{collection:\"D7lTEIjOQ\",name:\"FfIvsOts2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"customer-stories\"},type:\"BinaryOperation\"}});const query7=prequery=>prequery({from:{alias:\"AYmMCI7Lo\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"AYmMCI7Lo\",name:\"OCLWutXkk\",type:\"Identifier\"},{collection:\"AYmMCI7Lo\",name:\"Qnead82bu\",type:\"Identifier\"},{collection:\"AYmMCI7Lo\",name:\"TKIypsQLf\",type:\"Identifier\"},{collection:\"AYmMCI7Lo\",name:\"zSrHxsOOR\",type:\"Identifier\"},{collection:\"AYmMCI7Lo\",name:\"fzGHZNBYl\",type:\"Identifier\"},{collection:\"AYmMCI7Lo\",name:\"id\",type:\"Identifier\"},{alias:\"Mzo2LkPVN\",arguments:[{from:{alias:\"Mzo2LkPVN\",data:Authors,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[],type:\"Select\",where:{left:{collection:\"Mzo2LkPVN\",name:\"bntrxX93W\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AYmMCI7Lo\",name:\"nb6kNh1DB\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{collection:\"AYmMCI7Lo\",name:\"FfIvsOts2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"customer-stories\"},type:\"BinaryOperation\"}});const query8=prequery=>prequery({from:{alias:\"NUJjPEyzQ\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"NUJjPEyzQ\",name:\"OCLWutXkk\",type:\"Identifier\"},{collection:\"NUJjPEyzQ\",name:\"Qnead82bu\",type:\"Identifier\"},{collection:\"NUJjPEyzQ\",name:\"TKIypsQLf\",type:\"Identifier\"},{collection:\"NUJjPEyzQ\",name:\"zSrHxsOOR\",type:\"Identifier\"},{collection:\"NUJjPEyzQ\",name:\"fzGHZNBYl\",type:\"Identifier\"},{collection:\"NUJjPEyzQ\",name:\"id\",type:\"Identifier\"},{alias:\"C4cnf_EX6\",arguments:[{from:{alias:\"C4cnf_EX6\",data:Authors,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[],type:\"Select\",where:{left:{collection:\"C4cnf_EX6\",name:\"bntrxX93W\",type:\"Identifier\"},operator:\"==\",right:{collection:\"NUJjPEyzQ\",name:\"nb6kNh1DB\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{collection:\"NUJjPEyzQ\",name:\"FfIvsOts2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"customer-stories\"},type:\"BinaryOperation\"}});const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition3={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const transition4={bounce:.25,delay:0,duration:1.25,type:\"spring\"};const animation2={opacity:1,rotate:-3,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4};const query9=prequery=>prequery({from:{alias:\"uu6POGEwY\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"uu6POGEwY\",name:\"OCLWutXkk\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"Qnead82bu\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"FfIvsOts2\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"zSrHxsOOR\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"A3vKzOhlb\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"MxhyBu40p\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"nb6kNh1DB\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"JC3wnPmq3\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"fzGHZNBYl\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"BUd9Lsea7\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"G7_5nehH2\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"idEpwcJUT\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"JaT2sGpKH\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"n60P84P9B\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"fScUbc55C\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"bDIh5NX0z\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"iiG3mFAdQ\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"qYg78qqCl\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"VZALrd9nt\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"CDB1RSbQH\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"U3rtPOsP9\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"astAQR4GF\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"le1D44MTm\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"TWGD7Ccyf\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"a3l1UfPmj\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"yiBP_R_PN\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"ZsDVb4yYk\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"WxOeO57y0\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"Z9OiPHU8D\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"ZmihUC2Ug\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"id\",type:\"Identifier\"},{alias:\"HVyBQ3Nw2\",arguments:[{from:{alias:\"HVyBQ3Nw2\",data:Authors,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"HVyBQ3Nw2\",name:\"StPv4LTej\",type:\"Identifier\"},{collection:\"HVyBQ3Nw2\",name:\"bntrxX93W\",type:\"Identifier\"},{collection:\"HVyBQ3Nw2\",name:\"fv7F_RP9o\",type:\"Identifier\"},{collection:\"HVyBQ3Nw2\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"HVyBQ3Nw2\",name:\"bntrxX93W\",type:\"Identifier\"},operator:\"==\",right:{collection:\"uu6POGEwY\",name:\"nb6kNh1DB\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{collection:\"uu6POGEwY\",name:\"FfIvsOts2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"customer-stories\"},type:\"BinaryOperation\"}});const query10=prequery=>prequery({from:{alias:\"dj0KmmAXA\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"dj0KmmAXA\",name:\"OCLWutXkk\",type:\"Identifier\"},{collection:\"dj0KmmAXA\",name:\"Qnead82bu\",type:\"Identifier\"},{collection:\"dj0KmmAXA\",name:\"zSrHxsOOR\",type:\"Identifier\"},{collection:\"dj0KmmAXA\",name:\"fzGHZNBYl\",type:\"Identifier\"},{collection:\"dj0KmmAXA\",name:\"id\",type:\"Identifier\"},{alias:\"S3J0DaC11\",arguments:[{from:{alias:\"S3J0DaC11\",data:Authors,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"S3J0DaC11\",name:\"StPv4LTej\",type:\"Identifier\"},{collection:\"S3J0DaC11\",name:\"bntrxX93W\",type:\"Identifier\"},{collection:\"S3J0DaC11\",name:\"fv7F_RP9o\",type:\"Identifier\"},{collection:\"S3J0DaC11\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"S3J0DaC11\",name:\"bntrxX93W\",type:\"Identifier\"},operator:\"==\",right:{collection:\"dj0KmmAXA\",name:\"nb6kNh1DB\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{collection:\"dj0KmmAXA\",name:\"FfIvsOts2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"customer-stories\"},type:\"BinaryOperation\"}});const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Blog CS Desktop\":\"YwpzaPeNG\",\"Blog CS Mobile\":\"t7wua6TOi\",\"Blog CS Tablet\":\"fj9za_ryr\",Customers:\"DTyuQzyra\",Desktop:\"D980VcOHM\",Mobile:\"Bicevj3t8\",Tablet:\"iug5WSMNd\"};const getProps=({background,background2,colorText,height,id,visible,visible2,width,...props})=>{return{...props,BRa6gC5If:background??props.BRa6gC5If??\"var(--token-f59bf36d-1ef9-4d92-af9e-4fff460f4d01, rgb(207, 225, 225))\",bT7Hm6uJ9:visible2??props.bT7Hm6uJ9??true,fWI_Zfl2E:background2??props.fWI_Zfl2E??\"var(--token-fb52538e-e373-4cdf-9be7-7b90e01bb6eb, rgb(255, 255, 255))\",TnNISQv1y:colorText??props.TnNISQv1y??\"var(--token-e3f42397-3791-44ce-9b85-9a083b9ec181, rgb(36, 40, 48))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"D980VcOHM\",WBcuNbXr0:visible??props.WBcuNbXr0??true};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,BRa6gC5If,fWI_Zfl2E,TnNISQv1y,WBcuNbXr0,bT7Hm6uJ9,OCLWutXkkSy2cDosXR,TKIypsQLfSy2cDosXR,A3vKzOhlbSy2cDosXR,zSrHxsOORSy2cDosXR,fzGHZNBYlSy2cDosXR,idSy2cDosXR,OCLWutXkkloosdgCn5,TKIypsQLfloosdgCn5,A3vKzOhlbloosdgCn5,zSrHxsOORloosdgCn5,fzGHZNBYlloosdgCn5,idloosdgCn5,OCLWutXkkNDlLap4pO,TKIypsQLfNDlLap4pO,A3vKzOhlbNDlLap4pO,zSrHxsOORNDlLap4pO,fzGHZNBYlNDlLap4pO,idNDlLap4pO,OCLWutXkkAvCcLGQs8,TKIypsQLfAvCcLGQs8,A3vKzOhlbAvCcLGQs8,zSrHxsOORAvCcLGQs8,fzGHZNBYlAvCcLGQs8,idAvCcLGQs8,OCLWutXkka4dPG507a,TKIypsQLfa4dPG507a,A3vKzOhlba4dPG507a,zSrHxsOORa4dPG507a,fzGHZNBYla4dPG507a,ida4dPG507a,OCLWutXkkI9y63w2CE,TKIypsQLfI9y63w2CE,A3vKzOhlbI9y63w2CE,zSrHxsOORI9y63w2CE,fzGHZNBYlI9y63w2CE,idI9y63w2CE,OCLWutXkkD7lTEIjOQ,Qnead82buD7lTEIjOQ,TKIypsQLfD7lTEIjOQ,zSrHxsOORD7lTEIjOQ,fzGHZNBYlD7lTEIjOQ,idD7lTEIjOQ,OCLWutXkkAYmMCI7Lo,Qnead82buAYmMCI7Lo,TKIypsQLfAYmMCI7Lo,zSrHxsOORAYmMCI7Lo,fzGHZNBYlAYmMCI7Lo,idAYmMCI7Lo,OCLWutXkkNUJjPEyzQ,Qnead82buNUJjPEyzQ,TKIypsQLfNUJjPEyzQ,zSrHxsOORNUJjPEyzQ,fzGHZNBYlNUJjPEyzQ,idNUJjPEyzQ,OCLWutXkkuu6POGEwY,Qnead82buuu6POGEwY,FfIvsOts2uu6POGEwY,zSrHxsOORuu6POGEwY,A3vKzOhlbuu6POGEwY,MxhyBu40puu6POGEwY,nb6kNh1DBuu6POGEwY,JC3wnPmq3uu6POGEwY,StPv4LTejHVyBQ3Nw2,bntrxX93WHVyBQ3Nw2,fv7F_RP9oHVyBQ3Nw2,idHVyBQ3Nw2,fzGHZNBYluu6POGEwY,BUd9Lsea7uu6POGEwY,G7_5nehH2uu6POGEwY,idEpwcJUTuu6POGEwY,JaT2sGpKHuu6POGEwY,n60P84P9Buu6POGEwY,fScUbc55Cuu6POGEwY,bDIh5NX0zuu6POGEwY,iiG3mFAdQuu6POGEwY,qYg78qqCluu6POGEwY,VZALrd9ntuu6POGEwY,CDB1RSbQHuu6POGEwY,U3rtPOsP9uu6POGEwY,astAQR4GFuu6POGEwY,le1D44MTmuu6POGEwY,TWGD7Ccyfuu6POGEwY,a3l1UfPmjuu6POGEwY,yiBP_R_PNuu6POGEwY,ZsDVb4yYkuu6POGEwY,WxOeO57y0uu6POGEwY,Z9OiPHU8Duu6POGEwY,ZmihUC2Uguu6POGEwY,iduu6POGEwY,OCLWutXkkdj0KmmAXA,Qnead82budj0KmmAXA,zSrHxsOORdj0KmmAXA,StPv4LTejS3J0DaC11,bntrxX93WS3J0DaC11,fv7F_RP9oS3J0DaC11,idS3J0DaC11,fzGHZNBYldj0KmmAXA,iddj0KmmAXA,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"D980VcOHM\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"DTyuQzyra\")return true;return false;};const activeLocaleCode=useLocaleCode();const isDisplayed1=()=>{if(baseVariant===\"t7wua6TOi\")return true;return false;};const isDisplayed2=()=>{if([\"Bicevj3t8\",\"t7wua6TOi\",\"DTyuQzyra\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"YwpzaPeNG\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"YwpzaPeNG\")return false;return true;};const isDisplayed5=()=>{if([\"YwpzaPeNG\",\"fj9za_ryr\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if(baseVariant===\"fj9za_ryr\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"fj9za_ryr\")return false;return true;};const isDisplayed8=()=>{if(baseVariant===\"Bicevj3t8\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-p8vp4g\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"D980VcOHM\",ref:refBinding,style:{backgroundColor:\"var(--token-f59bf36d-1ef9-4d92-af9e-4fff460f4d01, rgb(207, 225, 225))\",...style},variants:{DTyuQzyra:{backgroundColor:\"var(--token-e7abc003-b039-44da-a2e6-68a7fe7e60cc, rgb(202, 186, 249))\"},YwpzaPeNG:{backgroundColor:BRa6gC5If}},...addPropertyOverrides({Bicevj3t8:{\"data-framer-name\":\"Mobile\"},DTyuQzyra:{\"data-framer-name\":\"Customers\"},fj9za_ryr:{\"data-framer-name\":\"Blog CS Tablet\"},iug5WSMNd:{\"data-framer-name\":\"Tablet\"},t7wua6TOi:{\"data-framer-name\":\"Blog CS Mobile\"},YwpzaPeNG:{\"data-framer-name\":\"Blog CS Desktop\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tfsh1n\",layoutDependency:layoutDependency,layoutId:\"SrWAttufq\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-rs4hy3\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"mJl28lSLl\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-15izn3a\",\"data-styles-preset\":\"MqWGsmK9e\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-e3f42397-3791-44ce-9b85-9a083b9ec181, rgb(36, 40, 48)))\"},children:\"Transform Your App the Way They Did\"})}),className:\"framer-hat5jb\",\"data-framer-name\":\"How our clients did it\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Rw0Kvw8RW\",style:{\"--extracted-1of0zx5\":\"var(--token-e3f42397-3791-44ce-9b85-9a083b9ec181, rgb(36, 40, 48))\",\"--framer-paragraph-spacing\":\"20px\"},variants:{Bicevj3t8:{\"--extracted-a0htzi\":\"var(--token-e3f42397-3791-44ce-9b85-9a083b9ec181, rgb(36, 40, 48))\"},DTyuQzyra:{\"--extracted-a0htzi\":\"var(--token-e3f42397-3791-44ce-9b85-9a083b9ec181, rgb(36, 40, 48))\"},t7wua6TOi:{\"--extracted-a0htzi\":\"var(--token-e3f42397-3791-44ce-9b85-9a083b9ec181, rgb(36, 40, 48))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Bicevj3t8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-fzd3w5\",\"data-styles-preset\":\"cR3uUHNN6\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-e3f42397-3791-44ce-9b85-9a083b9ec181, rgb(36, 40, 48)))\"},children:\"Transform Your App the Way They Did\"})})},DTyuQzyra:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-fzd3w5\",\"data-styles-preset\":\"cR3uUHNN6\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-e3f42397-3791-44ce-9b85-9a083b9ec181, rgb(36, 40, 48)))\"},children:\"Read the Stories\"})})},t7wua6TOi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-fzd3w5\",\"data-styles-preset\":\"cR3uUHNN6\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-e3f42397-3791-44ce-9b85-9a083b9ec181, rgb(36, 40, 48)))\"},children:\"Transform Your App the Way They Did\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cg05z5-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"EfZjQ_xB5-container\",nodeId:\"EfZjQ_xB5\",rendersWithMotion:true,scopeId:\"v_9vYvSUb\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:-27,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",id:\"EfZjQ_xB5\",intervalControl:1.5,itemAmount:1,layoutId:\"EfZjQ_xB5\",padding:0,paddingBottom:0,paddingLeft:20,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"var(--token-e3f42397-3791-44ce-9b85-9a083b9ec181, rgb(36, 40, 48))\",dotsGap:10,dotsInset:-40,dotSize:6,dotsOpacity:.2,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-miqj51\",layoutDependency:layoutDependency,layoutId:\"Sy2cDosXR\",style:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Sy2cDosXR\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"Sy2cDosXR\",name:\"OCLWutXkk\",type:\"Identifier\"},{collection:\"Sy2cDosXR\",name:\"TKIypsQLf\",type:\"Identifier\"},{collection:\"Sy2cDosXR\",name:\"A3vKzOhlb\",type:\"Identifier\"},{collection:\"Sy2cDosXR\",name:\"zSrHxsOOR\",type:\"Identifier\"},{collection:\"Sy2cDosXR\",name:\"fzGHZNBYl\",type:\"Identifier\"},{collection:\"Sy2cDosXR\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Sy2cDosXR\",name:\"FfIvsOts2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"customer-stories\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({A3vKzOhlb:A3vKzOhlbSy2cDosXR,fzGHZNBYl:fzGHZNBYlSy2cDosXR,id:idSy2cDosXR,OCLWutXkk:OCLWutXkkSy2cDosXR,TKIypsQLf:TKIypsQLfSy2cDosXR,zSrHxsOOR:zSrHxsOORSy2cDosXR},index)=>{OCLWutXkkSy2cDosXR??=\"\";zSrHxsOORSy2cDosXR??=\"\";fzGHZNBYlSy2cDosXR??=\"\";const textContent=toDateString(A3vKzOhlbSy2cDosXR,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`Sy2cDosXR-${idSy2cDosXR}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{OCLWutXkk:OCLWutXkkSy2cDosXR},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{OCLWutXkk:OCLWutXkkSy2cDosXR},webPageId:\"ijq6wqs_G\"},motionChild:true,nodeId:\"hFBGXB8UX\",scopeId:\"v_9vYvSUb\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1902u9m framer-15xno8h\",layoutDependency:layoutDependency,layoutId:\"hFBGXB8UX\",style:{backgroundColor:fWI_Zfl2E,borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:[bT7Hm6uJ9&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"100px\",...toResponsiveImage(TKIypsQLfSy2cDosXR)},className:\"framer-1kxtupt\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"g65oBF2eJ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-m0v17o\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"izTOr84x2\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ky60uw\",\"data-framer-name\":\"Title + Description\",layoutDependency:layoutDependency,layoutId:\"BjEnoa4d8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-d9cb3292-14f8-45e9-9ed5-eac9e824e6a5, rgb(18, 163, 88)))\"},children:\"Content\"})}),className:\"framer-45vu8e\",\"data-framer-name\":\"Date\",fonts:[\"GF;IBM Plex Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"CYjneV1Gm\",style:{\"--extracted-1lwpl3i\":\"var(--token-d9cb3292-14f8-45e9-9ed5-eac9e824e6a5, rgb(18, 163, 88))\"},text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"Q1VTVE9NO0RlbmltIElOSyBXRCBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Denim INK WD SemiBold\", \"Denim INK WD SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--variable-reference-TnNISQv1y-v_9vYvSUb))\"},children:\"Title\"})}),className:\"framer-1y63dfy\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Denim INK WD SemiBold\"],layoutDependency:layoutDependency,layoutId:\"GcSZA_d_J\",style:{\"--extracted-1lwpl3i\":\"var(--variable-reference-TnNISQv1y-v_9vYvSUb)\",\"--variable-reference-TnNISQv1y-v_9vYvSUb\":TnNISQv1y},text:zSrHxsOORSy2cDosXR,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0RlbmltIFdEIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Denim WD Regular\", \"Denim WD Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-TnNISQv1y-v_9vYvSUb))\"},children:\"Description\"})}),className:\"framer-1w9v0z3\",\"data-framer-name\":\"Description\",fonts:[\"CUSTOM;Denim WD Regular\"],layoutDependency:layoutDependency,layoutId:\"h96Q9mXGs\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-TnNISQv1y-v_9vYvSUb)\",\"--variable-reference-TnNISQv1y-v_9vYvSUb\":TnNISQv1y},text:fzGHZNBYlSy2cDosXR,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})},idSy2cDosXR);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lgkqnn\",layoutDependency:layoutDependency,layoutId:\"loosdgCn5\",style:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"loosdgCn5\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"loosdgCn5\",name:\"OCLWutXkk\",type:\"Identifier\"},{collection:\"loosdgCn5\",name:\"TKIypsQLf\",type:\"Identifier\"},{collection:\"loosdgCn5\",name:\"A3vKzOhlb\",type:\"Identifier\"},{collection:\"loosdgCn5\",name:\"zSrHxsOOR\",type:\"Identifier\"},{collection:\"loosdgCn5\",name:\"fzGHZNBYl\",type:\"Identifier\"},{collection:\"loosdgCn5\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"loosdgCn5\",name:\"FfIvsOts2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"customer-stories\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({A3vKzOhlb:A3vKzOhlbloosdgCn5,fzGHZNBYl:fzGHZNBYlloosdgCn5,id:idloosdgCn5,OCLWutXkk:OCLWutXkkloosdgCn5,TKIypsQLf:TKIypsQLfloosdgCn5,zSrHxsOOR:zSrHxsOORloosdgCn5},index1)=>{OCLWutXkkloosdgCn5??=\"\";zSrHxsOORloosdgCn5??=\"\";fzGHZNBYlloosdgCn5??=\"\";const textContent1=toDateString(A3vKzOhlbloosdgCn5,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`loosdgCn5-${idloosdgCn5}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{OCLWutXkk:OCLWutXkkloosdgCn5},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{OCLWutXkk:OCLWutXkkloosdgCn5},webPageId:\"ijq6wqs_G\"},motionChild:true,nodeId:\"Vx7X58XEt\",scopeId:\"v_9vYvSUb\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-138apxa framer-15xno8h\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"Vx7X58XEt\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-fb52538e-e373-4cdf-9be7-7b90e01bb6eb, rgb(255, 255, 255))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:fWI_Zfl2E,borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:[bT7Hm6uJ9&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"100px\",...toResponsiveImage(TKIypsQLfloosdgCn5)},className:\"framer-15at339\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"w8aE8NWpH\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17t08bl\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"eUlFpeWtn\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lcilgw\",\"data-framer-name\":\"Title + Description\",layoutDependency:layoutDependency,layoutId:\"rVUWEZKky\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-d9cb3292-14f8-45e9-9ed5-eac9e824e6a5, rgb(18, 163, 88)))\"},children:\"Content\"})}),className:\"framer-y612dk\",\"data-framer-name\":\"Date\",fonts:[\"GF;IBM Plex Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"uYcpVRyZI\",style:{\"--extracted-1lwpl3i\":\"var(--token-d9cb3292-14f8-45e9-9ed5-eac9e824e6a5, rgb(18, 163, 88))\"},text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"Q1VTVE9NO0RlbmltIElOSyBXRCBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Denim INK WD SemiBold\", \"Denim INK WD SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--variable-reference-TnNISQv1y-v_9vYvSUb))\"},children:\"Title\"})}),className:\"framer-1trfwde\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Denim INK WD SemiBold\"],layoutDependency:layoutDependency,layoutId:\"VikxAIcI8\",style:{\"--extracted-1lwpl3i\":\"var(--variable-reference-TnNISQv1y-v_9vYvSUb)\",\"--variable-reference-TnNISQv1y-v_9vYvSUb\":TnNISQv1y},text:zSrHxsOORloosdgCn5,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0RlbmltIFdEIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Denim WD Regular\", \"Denim WD Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-TnNISQv1y-v_9vYvSUb))\"},children:\"Description\"})}),className:\"framer-spw3vt\",\"data-framer-name\":\"Description\",fonts:[\"CUSTOM;Denim WD Regular\"],layoutDependency:layoutDependency,layoutId:\"tXGQsnfwb\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-TnNISQv1y-v_9vYvSUb)\",\"--variable-reference-TnNISQv1y-v_9vYvSUb\":TnNISQv1y},text:fzGHZNBYlloosdgCn5,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})},idloosdgCn5);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dalzhf\",layoutDependency:layoutDependency,layoutId:\"NDlLap4pO\",style:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"NDlLap4pO\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"NDlLap4pO\",name:\"OCLWutXkk\",type:\"Identifier\"},{collection:\"NDlLap4pO\",name:\"TKIypsQLf\",type:\"Identifier\"},{collection:\"NDlLap4pO\",name:\"A3vKzOhlb\",type:\"Identifier\"},{collection:\"NDlLap4pO\",name:\"zSrHxsOOR\",type:\"Identifier\"},{collection:\"NDlLap4pO\",name:\"fzGHZNBYl\",type:\"Identifier\"},{collection:\"NDlLap4pO\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"NDlLap4pO\",name:\"FfIvsOts2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"customer-stories\"},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({A3vKzOhlb:A3vKzOhlbNDlLap4pO,fzGHZNBYl:fzGHZNBYlNDlLap4pO,id:idNDlLap4pO,OCLWutXkk:OCLWutXkkNDlLap4pO,TKIypsQLf:TKIypsQLfNDlLap4pO,zSrHxsOOR:zSrHxsOORNDlLap4pO},index2)=>{OCLWutXkkNDlLap4pO??=\"\";zSrHxsOORNDlLap4pO??=\"\";fzGHZNBYlNDlLap4pO??=\"\";const textContent2=toDateString(A3vKzOhlbNDlLap4pO,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`NDlLap4pO-${idNDlLap4pO}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{OCLWutXkk:OCLWutXkkNDlLap4pO},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{OCLWutXkk:OCLWutXkkNDlLap4pO},webPageId:\"ijq6wqs_G\"},motionChild:true,nodeId:\"nFqSoN3wx\",scopeId:\"v_9vYvSUb\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-bdoazt framer-15xno8h\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"nFqSoN3wx\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-fb52538e-e373-4cdf-9be7-7b90e01bb6eb, rgb(255, 255, 255))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:fWI_Zfl2E,borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:[bT7Hm6uJ9&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"100px\",...toResponsiveImage(TKIypsQLfNDlLap4pO)},className:\"framer-vrro61\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"MKedtz1If\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t8vj2r\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"ADaZvSlxp\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jc7tmd\",\"data-framer-name\":\"Title + Description\",layoutDependency:layoutDependency,layoutId:\"wJ5gDuddW\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-d9cb3292-14f8-45e9-9ed5-eac9e824e6a5, rgb(18, 163, 88)))\"},children:\"Content\"})}),className:\"framer-1j7a7ja\",\"data-framer-name\":\"Date\",fonts:[\"GF;IBM Plex Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"FyV4Z2Fm7\",style:{\"--extracted-1lwpl3i\":\"var(--token-d9cb3292-14f8-45e9-9ed5-eac9e824e6a5, rgb(18, 163, 88))\"},text:textContent2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"Q1VTVE9NO0RlbmltIElOSyBXRCBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Denim INK WD SemiBold\", \"Denim INK WD SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--variable-reference-TnNISQv1y-v_9vYvSUb))\"},children:\"Title\"})}),className:\"framer-732pmc\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Denim INK WD SemiBold\"],layoutDependency:layoutDependency,layoutId:\"QjYcjsfDO\",style:{\"--extracted-1lwpl3i\":\"var(--variable-reference-TnNISQv1y-v_9vYvSUb)\",\"--variable-reference-TnNISQv1y-v_9vYvSUb\":TnNISQv1y},text:zSrHxsOORNDlLap4pO,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0RlbmltIFdEIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Denim WD Regular\", \"Denim WD Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-TnNISQv1y-v_9vYvSUb))\"},children:\"Description\"})}),className:\"framer-xaaxxi\",\"data-framer-name\":\"Description\",fonts:[\"CUSTOM;Denim WD Regular\"],layoutDependency:layoutDependency,layoutId:\"mDIIAWs03\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-TnNISQv1y-v_9vYvSUb)\",\"--variable-reference-TnNISQv1y-v_9vYvSUb\":TnNISQv1y},text:fzGHZNBYlNDlLap4pO,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})},idNDlLap4pO);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gnhvgm\",layoutDependency:layoutDependency,layoutId:\"AvCcLGQs8\",style:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"AvCcLGQs8\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"AvCcLGQs8\",name:\"OCLWutXkk\",type:\"Identifier\"},{collection:\"AvCcLGQs8\",name:\"TKIypsQLf\",type:\"Identifier\"},{collection:\"AvCcLGQs8\",name:\"A3vKzOhlb\",type:\"Identifier\"},{collection:\"AvCcLGQs8\",name:\"zSrHxsOOR\",type:\"Identifier\"},{collection:\"AvCcLGQs8\",name:\"fzGHZNBYl\",type:\"Identifier\"},{collection:\"AvCcLGQs8\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"AvCcLGQs8\",name:\"FfIvsOts2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"customer-stories\"},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({A3vKzOhlb:A3vKzOhlbAvCcLGQs8,fzGHZNBYl:fzGHZNBYlAvCcLGQs8,id:idAvCcLGQs8,OCLWutXkk:OCLWutXkkAvCcLGQs8,TKIypsQLf:TKIypsQLfAvCcLGQs8,zSrHxsOOR:zSrHxsOORAvCcLGQs8},index3)=>{OCLWutXkkAvCcLGQs8??=\"\";zSrHxsOORAvCcLGQs8??=\"\";fzGHZNBYlAvCcLGQs8??=\"\";const textContent3=toDateString(A3vKzOhlbAvCcLGQs8,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`AvCcLGQs8-${idAvCcLGQs8}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{OCLWutXkk:OCLWutXkkAvCcLGQs8},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{OCLWutXkk:OCLWutXkkAvCcLGQs8},webPageId:\"ijq6wqs_G\"},motionChild:true,nodeId:\"W6BLIbBoR\",scopeId:\"v_9vYvSUb\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-ammlu framer-15xno8h\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"W6BLIbBoR\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-fb52538e-e373-4cdf-9be7-7b90e01bb6eb, rgb(255, 255, 255))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:fWI_Zfl2E,borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:[bT7Hm6uJ9&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"100px\",...toResponsiveImage(TKIypsQLfAvCcLGQs8)},className:\"framer-we114p\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"h_lHUH6YZ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13o3yjv\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"dP7ORMWxm\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dc4x9\",\"data-framer-name\":\"Title + Description\",layoutDependency:layoutDependency,layoutId:\"czago8Eeu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-d9cb3292-14f8-45e9-9ed5-eac9e824e6a5, rgb(18, 163, 88)))\"},children:\"Content\"})}),className:\"framer-1v9hq2p\",\"data-framer-name\":\"Date\",fonts:[\"GF;IBM Plex Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"YhKphtz0O\",style:{\"--extracted-1lwpl3i\":\"var(--token-d9cb3292-14f8-45e9-9ed5-eac9e824e6a5, rgb(18, 163, 88))\"},text:textContent3,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"Q1VTVE9NO0RlbmltIElOSyBXRCBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Denim INK WD SemiBold\", \"Denim INK WD SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--variable-reference-TnNISQv1y-v_9vYvSUb))\"},children:\"Title\"})}),className:\"framer-10o8zfq\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Denim INK WD SemiBold\"],layoutDependency:layoutDependency,layoutId:\"nYffBLnZJ\",style:{\"--extracted-1lwpl3i\":\"var(--variable-reference-TnNISQv1y-v_9vYvSUb)\",\"--variable-reference-TnNISQv1y-v_9vYvSUb\":TnNISQv1y},text:zSrHxsOORAvCcLGQs8,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0RlbmltIFdEIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Denim WD Regular\", \"Denim WD Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-TnNISQv1y-v_9vYvSUb))\"},children:\"Description\"})}),className:\"framer-1b76c41\",\"data-framer-name\":\"Description\",fonts:[\"CUSTOM;Denim WD Regular\"],layoutDependency:layoutDependency,layoutId:\"Bv6nhWYFd\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-TnNISQv1y-v_9vYvSUb)\",\"--variable-reference-TnNISQv1y-v_9vYvSUb\":TnNISQv1y},text:fzGHZNBYlAvCcLGQs8,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})},idAvCcLGQs8);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bfet77\",layoutDependency:layoutDependency,layoutId:\"a4dPG507a\",style:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"a4dPG507a\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"a4dPG507a\",name:\"OCLWutXkk\",type:\"Identifier\"},{collection:\"a4dPG507a\",name:\"TKIypsQLf\",type:\"Identifier\"},{collection:\"a4dPG507a\",name:\"A3vKzOhlb\",type:\"Identifier\"},{collection:\"a4dPG507a\",name:\"zSrHxsOOR\",type:\"Identifier\"},{collection:\"a4dPG507a\",name:\"fzGHZNBYl\",type:\"Identifier\"},{collection:\"a4dPG507a\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"a4dPG507a\",name:\"FfIvsOts2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"customer-stories\"},type:\"BinaryOperation\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({A3vKzOhlb:A3vKzOhlba4dPG507a,fzGHZNBYl:fzGHZNBYla4dPG507a,id:ida4dPG507a,OCLWutXkk:OCLWutXkka4dPG507a,TKIypsQLf:TKIypsQLfa4dPG507a,zSrHxsOOR:zSrHxsOORa4dPG507a},index4)=>{OCLWutXkka4dPG507a??=\"\";zSrHxsOORa4dPG507a??=\"\";fzGHZNBYla4dPG507a??=\"\";const textContent4=toDateString(A3vKzOhlba4dPG507a,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`a4dPG507a-${ida4dPG507a}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{OCLWutXkk:OCLWutXkka4dPG507a},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{OCLWutXkk:OCLWutXkka4dPG507a},webPageId:\"ijq6wqs_G\"},motionChild:true,nodeId:\"S8GqRFkxm\",scopeId:\"v_9vYvSUb\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-133a94l framer-15xno8h\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"S8GqRFkxm\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-fb52538e-e373-4cdf-9be7-7b90e01bb6eb, rgb(255, 255, 255))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:fWI_Zfl2E,borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:[bT7Hm6uJ9&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"100px\",...toResponsiveImage(TKIypsQLfa4dPG507a)},className:\"framer-1dfem7t\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"dYiQ_cXP3\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qp5cp0\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"wf_g8pJ9b\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13e9250\",\"data-framer-name\":\"Title + Description\",layoutDependency:layoutDependency,layoutId:\"lR5gTIw5u\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-d9cb3292-14f8-45e9-9ed5-eac9e824e6a5, rgb(18, 163, 88)))\"},children:\"Content\"})}),className:\"framer-1uge9j9\",\"data-framer-name\":\"Date\",fonts:[\"GF;IBM Plex Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"HJcCyWocF\",style:{\"--extracted-1lwpl3i\":\"var(--token-d9cb3292-14f8-45e9-9ed5-eac9e824e6a5, rgb(18, 163, 88))\"},text:textContent4,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"Q1VTVE9NO0RlbmltIElOSyBXRCBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Denim INK WD SemiBold\", \"Denim INK WD SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--variable-reference-TnNISQv1y-v_9vYvSUb))\"},children:\"Title\"})}),className:\"framer-1qldc2l\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Denim INK WD SemiBold\"],layoutDependency:layoutDependency,layoutId:\"ZIco4M9Co\",style:{\"--extracted-1lwpl3i\":\"var(--variable-reference-TnNISQv1y-v_9vYvSUb)\",\"--variable-reference-TnNISQv1y-v_9vYvSUb\":TnNISQv1y},text:zSrHxsOORa4dPG507a,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0RlbmltIFdEIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Denim WD Regular\", \"Denim WD Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-TnNISQv1y-v_9vYvSUb))\"},children:\"Description\"})}),className:\"framer-8ltrfg\",\"data-framer-name\":\"Description\",fonts:[\"CUSTOM;Denim WD Regular\"],layoutDependency:layoutDependency,layoutId:\"f60fHRocL\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-TnNISQv1y-v_9vYvSUb)\",\"--variable-reference-TnNISQv1y-v_9vYvSUb\":TnNISQv1y},text:fzGHZNBYla4dPG507a,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})},ida4dPG507a);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ojjps3\",layoutDependency:layoutDependency,layoutId:\"I9y63w2CE\",style:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"I9y63w2CE\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:6},select:[{collection:\"I9y63w2CE\",name:\"OCLWutXkk\",type:\"Identifier\"},{collection:\"I9y63w2CE\",name:\"TKIypsQLf\",type:\"Identifier\"},{collection:\"I9y63w2CE\",name:\"A3vKzOhlb\",type:\"Identifier\"},{collection:\"I9y63w2CE\",name:\"zSrHxsOOR\",type:\"Identifier\"},{collection:\"I9y63w2CE\",name:\"fzGHZNBYl\",type:\"Identifier\"},{collection:\"I9y63w2CE\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"I9y63w2CE\",name:\"FfIvsOts2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"customer-stories\"},type:\"BinaryOperation\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({A3vKzOhlb:A3vKzOhlbI9y63w2CE,fzGHZNBYl:fzGHZNBYlI9y63w2CE,id:idI9y63w2CE,OCLWutXkk:OCLWutXkkI9y63w2CE,TKIypsQLf:TKIypsQLfI9y63w2CE,zSrHxsOOR:zSrHxsOORI9y63w2CE},index5)=>{OCLWutXkkI9y63w2CE??=\"\";zSrHxsOORI9y63w2CE??=\"\";fzGHZNBYlI9y63w2CE??=\"\";const textContent5=toDateString(A3vKzOhlbI9y63w2CE,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`I9y63w2CE-${idI9y63w2CE}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{OCLWutXkk:OCLWutXkkI9y63w2CE},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{OCLWutXkk:OCLWutXkkI9y63w2CE},webPageId:\"ijq6wqs_G\"},motionChild:true,nodeId:\"bGK2Ok__K\",scopeId:\"v_9vYvSUb\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1cbxxut framer-15xno8h\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"bGK2Ok__K\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-fb52538e-e373-4cdf-9be7-7b90e01bb6eb, rgb(255, 255, 255))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:fWI_Zfl2E,borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:[bT7Hm6uJ9&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"100px\",...toResponsiveImage(TKIypsQLfI9y63w2CE)},className:\"framer-psbjoh\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"zun18SnqA\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-v4va2g\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"wYGE8dxu4\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rfjh3z\",\"data-framer-name\":\"Title + Description\",layoutDependency:layoutDependency,layoutId:\"WFGY3wxmT\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-d9cb3292-14f8-45e9-9ed5-eac9e824e6a5, rgb(18, 163, 88)))\"},children:\"Content\"})}),className:\"framer-xme9da\",\"data-framer-name\":\"Date\",fonts:[\"GF;IBM Plex Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"pt4zKBRuz\",style:{\"--extracted-1lwpl3i\":\"var(--token-d9cb3292-14f8-45e9-9ed5-eac9e824e6a5, rgb(18, 163, 88))\"},text:textContent5,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"Q1VTVE9NO0RlbmltIElOSyBXRCBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Denim INK WD SemiBold\", \"Denim INK WD SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--variable-reference-TnNISQv1y-v_9vYvSUb))\"},children:\"Title\"})}),className:\"framer-1wcir08\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Denim INK WD SemiBold\"],layoutDependency:layoutDependency,layoutId:\"wAVaDvAHo\",style:{\"--extracted-1lwpl3i\":\"var(--variable-reference-TnNISQv1y-v_9vYvSUb)\",\"--variable-reference-TnNISQv1y-v_9vYvSUb\":TnNISQv1y},text:zSrHxsOORI9y63w2CE,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0RlbmltIFdEIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Denim WD Regular\", \"Denim WD Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-TnNISQv1y-v_9vYvSUb))\"},children:\"Description\"})}),className:\"framer-12kp7qc\",\"data-framer-name\":\"Description\",fonts:[\"CUSTOM;Denim WD Regular\"],layoutDependency:layoutDependency,layoutId:\"FbRJOWKO0\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-TnNISQv1y-v_9vYvSUb)\",\"--variable-reference-TnNISQv1y-v_9vYvSUb\":TnNISQv1y},text:fzGHZNBYlI9y63w2CE,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})},idI9y63w2CE);})})})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+100+(((componentViewport?.height||748)-200-438)/2+0+0)+0+0+1,...addPropertyOverrides({Bicevj3t8:{y:(componentViewport?.y||0)+60+(((componentViewport?.height||860)-120-718)/2+0+0)+0+0+0+60},DTyuQzyra:{y:(componentViewport?.y||0)+60+(((componentViewport?.height||719)-160-567)/2+0+0)+0+0+0+50},fj9za_ryr:{y:(componentViewport?.y||0)+100+(((componentViewport?.height||1911)-200-623)/2+0+0)+0+0+1},iug5WSMNd:{y:(componentViewport?.y||0)+100+(((componentViewport?.height||1350)-200-1174)/2+0+0)+0+0+1},t7wua6TOi:{y:(componentViewport?.y||0)+60+(((componentViewport?.height||979)-160-797)/2+0+0)+0+0+0+50},YwpzaPeNG:{y:(componentViewport?.y||0)+100+(((componentViewport?.height||765)-200-1070)/2+0+0)+0+0+1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1whft0p-container\",layoutDependency:layoutDependency,layoutId:\"XD5P9HxiZ-container\",nodeId:\"XD5P9HxiZ\",rendersWithMotion:true,scopeId:\"v_9vYvSUb\",children:/*#__PURE__*/_jsx(ButtonSecond,{AQxHbEkWT:\"Read Blog\",height:\"100%\",id:\"XD5P9HxiZ\",igM3Z66m1:true,layoutId:\"XD5P9HxiZ\",PwB7g0JSC:\"https://qonversion.io/tag/customers-stories/\",variant:\"PSLGYLQNK\",width:\"100%\",...addPropertyOverrides({Bicevj3t8:{variant:\"iTLO1vuXW\"},DTyuQzyra:{variant:\"iTLO1vuXW\"},t7wua6TOi:{variant:\"iTLO1vuXW\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1juzz8f-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Fp1KQDadS-container\",nodeId:\"Fp1KQDadS\",rendersWithMotion:true,scopeId:\"v_9vYvSUb\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:-27,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",id:\"Fp1KQDadS\",intervalControl:1.5,itemAmount:1,layoutId:\"Fp1KQDadS\",padding:0,paddingBottom:0,paddingLeft:20,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"var(--token-e3f42397-3791-44ce-9b85-9a083b9ec181, rgb(36, 40, 48))\",dotsGap:10,dotsInset:-40,dotSize:6,dotsOpacity:.2,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xi0bqq\",layoutDependency:layoutDependency,layoutId:\"D7lTEIjOQ\",style:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"D7lTEIjOQ\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"D7lTEIjOQ\",name:\"OCLWutXkk\",type:\"Identifier\"},{collection:\"D7lTEIjOQ\",name:\"Qnead82bu\",type:\"Identifier\"},{collection:\"D7lTEIjOQ\",name:\"TKIypsQLf\",type:\"Identifier\"},{collection:\"D7lTEIjOQ\",name:\"zSrHxsOOR\",type:\"Identifier\"},{collection:\"D7lTEIjOQ\",name:\"fzGHZNBYl\",type:\"Identifier\"},{collection:\"D7lTEIjOQ\",name:\"id\",type:\"Identifier\"},{alias:\"tDEdDgk2w\",arguments:[{from:{alias:\"tDEdDgk2w\",data:Authors,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[],type:\"Select\",where:{left:{collection:\"tDEdDgk2w\",name:\"bntrxX93W\",type:\"Identifier\"},operator:\"==\",right:{collection:\"D7lTEIjOQ\",name:\"nb6kNh1DB\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{collection:\"D7lTEIjOQ\",name:\"FfIvsOts2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"customer-stories\"},type:\"BinaryOperation\"}},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6?.map(({fzGHZNBYl:fzGHZNBYlD7lTEIjOQ,id:idD7lTEIjOQ,OCLWutXkk:OCLWutXkkD7lTEIjOQ,Qnead82bu:Qnead82buD7lTEIjOQ,tDEdDgk2w:collection7,TKIypsQLf:TKIypsQLfD7lTEIjOQ,zSrHxsOOR:zSrHxsOORD7lTEIjOQ},index6)=>{OCLWutXkkD7lTEIjOQ??=\"\";zSrHxsOORD7lTEIjOQ??=\"\";fzGHZNBYlD7lTEIjOQ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`D7lTEIjOQ-${idD7lTEIjOQ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{OCLWutXkk:OCLWutXkkD7lTEIjOQ},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{OCLWutXkk:OCLWutXkkD7lTEIjOQ},webPageId:\"ijq6wqs_G\"},motionChild:true,nodeId:\"GDH4kQIPr\",scopeId:\"v_9vYvSUb\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-zaiar3 framer-15xno8h\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"GDH4kQIPr\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-fb52538e-e373-4cdf-9be7-7b90e01bb6eb, rgb(255, 255, 255))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:fWI_Zfl2E,borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:[WBcuNbXr0&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"263px\",...toResponsiveImage(Qnead82buD7lTEIjOQ)},className:\"framer-1d1676n\",layoutDependency:layoutDependency,layoutId:\"EtFZBdVdV\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),bT7Hm6uJ9&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"40px\",...toResponsiveImage(TKIypsQLfD7lTEIjOQ)},className:\"framer-hors87\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"ZcEkWrrKs\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hqanbv\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Roh5r4IyF\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3py2o6\",\"data-framer-name\":\"Title + Description\",layoutDependency:layoutDependency,layoutId:\"xw8T4pvX_\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"Q1VTVE9NO0RlbmltIElOSyBXRCBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Denim INK WD SemiBold\", \"Denim INK WD SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--variable-reference-TnNISQv1y-v_9vYvSUb))\"},children:\"Title\"})}),className:\"framer-4gpvbo\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Denim INK WD SemiBold\"],layoutDependency:layoutDependency,layoutId:\"bOYuweQa7\",style:{\"--extracted-1lwpl3i\":\"var(--variable-reference-TnNISQv1y-v_9vYvSUb)\",\"--variable-reference-TnNISQv1y-v_9vYvSUb\":TnNISQv1y},text:zSrHxsOORD7lTEIjOQ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0RlbmltIFdEIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Denim WD Regular\", \"Denim WD Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-TnNISQv1y-v_9vYvSUb))\"},children:\"Description\"})}),className:\"framer-136f2cd\",\"data-framer-name\":\"Description\",fonts:[\"CUSTOM;Denim WD Regular\"],layoutDependency:layoutDependency,layoutId:\"evUwBPe5p\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-TnNISQv1y-v_9vYvSUb)\",\"--variable-reference-TnNISQv1y-v_9vYvSUb\":TnNISQv1y},text:fzGHZNBYlD7lTEIjOQ,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i5ni6m\",layoutDependency:layoutDependency,layoutId:\"tDEdDgk2w\"})]})]})})})},idD7lTEIjOQ);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mtmokz\",layoutDependency:layoutDependency,layoutId:\"AYmMCI7Lo\",style:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"AYmMCI7Lo\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"AYmMCI7Lo\",name:\"OCLWutXkk\",type:\"Identifier\"},{collection:\"AYmMCI7Lo\",name:\"Qnead82bu\",type:\"Identifier\"},{collection:\"AYmMCI7Lo\",name:\"TKIypsQLf\",type:\"Identifier\"},{collection:\"AYmMCI7Lo\",name:\"zSrHxsOOR\",type:\"Identifier\"},{collection:\"AYmMCI7Lo\",name:\"fzGHZNBYl\",type:\"Identifier\"},{collection:\"AYmMCI7Lo\",name:\"id\",type:\"Identifier\"},{alias:\"Mzo2LkPVN\",arguments:[{from:{alias:\"Mzo2LkPVN\",data:Authors,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[],type:\"Select\",where:{left:{collection:\"Mzo2LkPVN\",name:\"bntrxX93W\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AYmMCI7Lo\",name:\"nb6kNh1DB\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{collection:\"AYmMCI7Lo\",name:\"FfIvsOts2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"customer-stories\"},type:\"BinaryOperation\"}},children:(collection8,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection8?.map(({fzGHZNBYl:fzGHZNBYlAYmMCI7Lo,id:idAYmMCI7Lo,Mzo2LkPVN:collection9,OCLWutXkk:OCLWutXkkAYmMCI7Lo,Qnead82bu:Qnead82buAYmMCI7Lo,TKIypsQLf:TKIypsQLfAYmMCI7Lo,zSrHxsOOR:zSrHxsOORAYmMCI7Lo},index7)=>{OCLWutXkkAYmMCI7Lo??=\"\";zSrHxsOORAYmMCI7Lo??=\"\";fzGHZNBYlAYmMCI7Lo??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`AYmMCI7Lo-${idAYmMCI7Lo}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{OCLWutXkk:OCLWutXkkAYmMCI7Lo},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{OCLWutXkk:OCLWutXkkAYmMCI7Lo},webPageId:\"ijq6wqs_G\"},motionChild:true,nodeId:\"kLcIwwO5v\",scopeId:\"v_9vYvSUb\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-oeh81t framer-15xno8h\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"kLcIwwO5v\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-fb52538e-e373-4cdf-9be7-7b90e01bb6eb, rgb(255, 255, 255))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"var(--token-fb52538e-e373-4cdf-9be7-7b90e01bb6eb, rgb(255, 255, 255))\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"263px\",...toResponsiveImage(Qnead82buAYmMCI7Lo)},className:\"framer-1pij7v7\",layoutDependency:layoutDependency,layoutId:\"FgQZUGbto\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"40px\",...toResponsiveImage(TKIypsQLfAYmMCI7Lo)},className:\"framer-zfvhvc\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"VL4EZvuCP\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s6x7p4\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"m3M5ED11T\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2oq8dx\",\"data-framer-name\":\"Title + Description\",layoutDependency:layoutDependency,layoutId:\"IIIWljW2X\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1c3yy2\",\"data-styles-preset\":\"EAT2CDplj\",children:\"Title\"})}),className:\"framer-1xblo8t\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mzhl1dVIw\",text:zSrHxsOORAYmMCI7Lo,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1qvmci1\",\"data-styles-preset\":\"vuztVCB_C\",children:\"Description\"})}),className:\"framer-y5whxj\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OgVlOjECB\",text:fzGHZNBYlAYmMCI7Lo,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lr3xio\",layoutDependency:layoutDependency,layoutId:\"Mzo2LkPVN\"})]})]})})})},idAYmMCI7Lo);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bmog81\",layoutDependency:layoutDependency,layoutId:\"NUJjPEyzQ\",style:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"NUJjPEyzQ\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"NUJjPEyzQ\",name:\"OCLWutXkk\",type:\"Identifier\"},{collection:\"NUJjPEyzQ\",name:\"Qnead82bu\",type:\"Identifier\"},{collection:\"NUJjPEyzQ\",name:\"TKIypsQLf\",type:\"Identifier\"},{collection:\"NUJjPEyzQ\",name:\"zSrHxsOOR\",type:\"Identifier\"},{collection:\"NUJjPEyzQ\",name:\"fzGHZNBYl\",type:\"Identifier\"},{collection:\"NUJjPEyzQ\",name:\"id\",type:\"Identifier\"},{alias:\"C4cnf_EX6\",arguments:[{from:{alias:\"C4cnf_EX6\",data:Authors,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[],type:\"Select\",where:{left:{collection:\"C4cnf_EX6\",name:\"bntrxX93W\",type:\"Identifier\"},operator:\"==\",right:{collection:\"NUJjPEyzQ\",name:\"nb6kNh1DB\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{collection:\"NUJjPEyzQ\",name:\"FfIvsOts2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"customer-stories\"},type:\"BinaryOperation\"}},children:(collection10,paginationInfo8,loadMore8)=>/*#__PURE__*/_jsx(_Fragment,{children:collection10?.map(({C4cnf_EX6:collection11,fzGHZNBYl:fzGHZNBYlNUJjPEyzQ,id:idNUJjPEyzQ,OCLWutXkk:OCLWutXkkNUJjPEyzQ,Qnead82bu:Qnead82buNUJjPEyzQ,TKIypsQLf:TKIypsQLfNUJjPEyzQ,zSrHxsOOR:zSrHxsOORNUJjPEyzQ},index8)=>{OCLWutXkkNUJjPEyzQ??=\"\";zSrHxsOORNUJjPEyzQ??=\"\";fzGHZNBYlNUJjPEyzQ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`NUJjPEyzQ-${idNUJjPEyzQ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{OCLWutXkk:OCLWutXkkNUJjPEyzQ},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{OCLWutXkk:OCLWutXkkNUJjPEyzQ},webPageId:\"ijq6wqs_G\"},motionChild:true,nodeId:\"x3Z4V0jiS\",scopeId:\"v_9vYvSUb\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-bt2ngc framer-15xno8h\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"x3Z4V0jiS\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-fb52538e-e373-4cdf-9be7-7b90e01bb6eb, rgb(255, 255, 255))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"var(--token-fb52538e-e373-4cdf-9be7-7b90e01bb6eb, rgb(255, 255, 255))\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"263px\",...toResponsiveImage(Qnead82buNUJjPEyzQ)},className:\"framer-pck858\",layoutDependency:layoutDependency,layoutId:\"kBHC_lvpI\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"40px\",...toResponsiveImage(TKIypsQLfNUJjPEyzQ)},className:\"framer-obeukl\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"Ug3CQNJrx\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w0mitv\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"UmcyKgopi\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-orneg9\",\"data-framer-name\":\"Title + Description\",layoutDependency:layoutDependency,layoutId:\"sYfp84DYZ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1c3yy2\",\"data-styles-preset\":\"EAT2CDplj\",children:\"Title\"})}),className:\"framer-1erlq2o\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ME51IGzDd\",text:zSrHxsOORNUJjPEyzQ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1qvmci1\",\"data-styles-preset\":\"vuztVCB_C\",children:\"Description\"})}),className:\"framer-17mzfmg\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CAseVlbGk\",text:fzGHZNBYlNUJjPEyzQ,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1glynx4\",layoutDependency:layoutDependency,layoutId:\"C4cnf_EX6\"})]})]})})})},idNUJjPEyzQ);})})})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-2jeq0a\",layoutDependency:layoutDependency,layoutId:\"AVB0yFrII\",style:{transformPerspective:1200},children:[isDisplayed3()&&/*#__PURE__*/_jsx(MotionDivWithCharacterLimit1bjmy5p,{className:\"framer-1bjmy5p\",layoutDependency:layoutDependency,layoutId:\"uu6POGEwY\",style:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"uu6POGEwY\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"uu6POGEwY\",name:\"OCLWutXkk\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"Qnead82bu\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"FfIvsOts2\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"zSrHxsOOR\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"A3vKzOhlb\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"MxhyBu40p\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"nb6kNh1DB\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"JC3wnPmq3\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"fzGHZNBYl\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"BUd9Lsea7\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"G7_5nehH2\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"idEpwcJUT\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"JaT2sGpKH\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"n60P84P9B\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"fScUbc55C\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"bDIh5NX0z\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"iiG3mFAdQ\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"qYg78qqCl\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"VZALrd9nt\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"CDB1RSbQH\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"U3rtPOsP9\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"astAQR4GF\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"le1D44MTm\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"TWGD7Ccyf\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"a3l1UfPmj\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"yiBP_R_PN\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"ZsDVb4yYk\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"WxOeO57y0\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"Z9OiPHU8D\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"ZmihUC2Ug\",type:\"Identifier\"},{collection:\"uu6POGEwY\",name:\"id\",type:\"Identifier\"},{alias:\"HVyBQ3Nw2\",arguments:[{from:{alias:\"HVyBQ3Nw2\",data:Authors,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"HVyBQ3Nw2\",name:\"StPv4LTej\",type:\"Identifier\"},{collection:\"HVyBQ3Nw2\",name:\"bntrxX93W\",type:\"Identifier\"},{collection:\"HVyBQ3Nw2\",name:\"fv7F_RP9o\",type:\"Identifier\"},{collection:\"HVyBQ3Nw2\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"HVyBQ3Nw2\",name:\"bntrxX93W\",type:\"Identifier\"},operator:\"==\",right:{collection:\"uu6POGEwY\",name:\"nb6kNh1DB\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{collection:\"uu6POGEwY\",name:\"FfIvsOts2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"customer-stories\"},type:\"BinaryOperation\"}},children:(collection13,paginationInfo9,loadMore9)=>/*#__PURE__*/_jsx(_Fragment,{children:collection13?.map(({a3l1UfPmj:a3l1UfPmjuu6POGEwY,A3vKzOhlb:A3vKzOhlbuu6POGEwY,astAQR4GF:astAQR4GFuu6POGEwY,bDIh5NX0z:bDIh5NX0zuu6POGEwY,BUd9Lsea7:BUd9Lsea7uu6POGEwY,CDB1RSbQH:CDB1RSbQHuu6POGEwY,FfIvsOts2:FfIvsOts2uu6POGEwY,fScUbc55C:fScUbc55Cuu6POGEwY,fzGHZNBYl:fzGHZNBYluu6POGEwY,G7_5nehH2:G7_5nehH2uu6POGEwY,HVyBQ3Nw2:collection12,id:iduu6POGEwY,idEpwcJUT:idEpwcJUTuu6POGEwY,iiG3mFAdQ:iiG3mFAdQuu6POGEwY,JaT2sGpKH:JaT2sGpKHuu6POGEwY,JC3wnPmq3:JC3wnPmq3uu6POGEwY,le1D44MTm:le1D44MTmuu6POGEwY,MxhyBu40p:MxhyBu40puu6POGEwY,n60P84P9B:n60P84P9Buu6POGEwY,nb6kNh1DB:nb6kNh1DBuu6POGEwY,OCLWutXkk:OCLWutXkkuu6POGEwY,Qnead82bu:Qnead82buuu6POGEwY,qYg78qqCl:qYg78qqCluu6POGEwY,TWGD7Ccyf:TWGD7Ccyfuu6POGEwY,U3rtPOsP9:U3rtPOsP9uu6POGEwY,VZALrd9nt:VZALrd9ntuu6POGEwY,WxOeO57y0:WxOeO57y0uu6POGEwY,yiBP_R_PN:yiBP_R_PNuu6POGEwY,Z9OiPHU8D:Z9OiPHU8Duu6POGEwY,ZmihUC2Ug:ZmihUC2Uguu6POGEwY,ZsDVb4yYk:ZsDVb4yYkuu6POGEwY,zSrHxsOOR:zSrHxsOORuu6POGEwY},index10)=>{OCLWutXkkuu6POGEwY??=\"\";FfIvsOts2uu6POGEwY??=\"\";zSrHxsOORuu6POGEwY??=\"\";nb6kNh1DBuu6POGEwY??=\"\";JC3wnPmq3uu6POGEwY??=\"\";fzGHZNBYluu6POGEwY??=\"\";BUd9Lsea7uu6POGEwY??=\"\";const textContent6=toDateString(A3vKzOhlbuu6POGEwY,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const textContent7=toDateString(MxhyBu40puu6POGEwY,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`uu6POGEwY-${iduu6POGEwY}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{OCLWutXkk:OCLWutXkkuu6POGEwY},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{OCLWutXkk:OCLWutXkkuu6POGEwY},webPageId:\"ijq6wqs_G\"},motionChild:true,nodeId:\"NpqmI8Do0\",scopeId:\"v_9vYvSUb\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-hjso8d framer-15xno8h\",layoutDependency:layoutDependency,layoutId:\"NpqmI8Do0\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gejhnf\",layoutDependency:layoutDependency,layoutId:\"AmyBJmyEK\",style:{backgroundColor:\"var(--token-fb52538e-e373-4cdf-9be7-7b90e01bb6eb, rgb(255, 255, 255))\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},whileHover:animation2,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"296.5px\",...toResponsiveImage(Qnead82buuu6POGEwY),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1t8kp2h\",layoutDependency:layoutDependency,layoutId:\"o2WXxziVc\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({YwpzaPeNG:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||765)-200-1070)/2+0+0)+0+90+0+0+0+0+0+20+0),sizes:\"296.5px\",...toResponsiveImage(Qnead82buuu6POGEwY),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nivase\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"nO6vo7i5L\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Category\"})}),className:\"framer-1rt7ban\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Tm6KDtMWZ\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:FfIvsOts2uu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1c3yy2\",\"data-styles-preset\":\"EAT2CDplj\",children:\"Title\"})}),className:\"framer-mxo4zt\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Yb71gvGvF\",text:zSrHxsOORuu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d9cb3292-14f8-45e9-9ed5-eac9e824e6a5, rgb(18, 163, 88)))\"},children:\"Content\"})}),className:\"framer-1lohx13\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"v5_R_kyD2\",style:{\"--extracted-r6o4lv\":\"var(--token-d9cb3292-14f8-45e9-9ed5-eac9e824e6a5, rgb(18, 163, 88))\"},text:textContent6,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Content\"})}),className:\"framer-1hait59\",\"data-framer-name\":\"Last Update\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hHiO8J4FW\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:textContent7,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Author\"})}),className:\"framer-yyzy6m\",\"data-framer-name\":\"Author\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fXs4msqRx\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:nb6kNh1DBuu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Meta Title\"})}),className:\"framer-k7s87y\",\"data-framer-name\":\"Meta Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x1H1rjNT5\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:JC3wnPmq3uu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xt43sb\",layoutDependency:layoutDependency,layoutId:\"HVyBQ3Nw2\",children:collection12?.map(({bntrxX93W:bntrxX93WHVyBQ3Nw2,fv7F_RP9o:fv7F_RP9oHVyBQ3Nw2,id:idHVyBQ3Nw2,StPv4LTej:StPv4LTejHVyBQ3Nw2},index9)=>{bntrxX93WHVyBQ3Nw2??=\"\";fv7F_RP9oHVyBQ3Nw2??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`HVyBQ3Nw2-${idHVyBQ3Nw2}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{fv7F_RP9o:fv7F_RP9oHVyBQ3Nw2},children:isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2aibkz\",\"data-framer-name\":\"Author\",layoutDependency:layoutDependency,layoutId:\"pKHXRTE1u\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"40px\",...toResponsiveImage(StPv4LTejHVyBQ3Nw2)},className:\"framer-1rcp4l6\",layoutDependency:layoutDependency,layoutId:\"JMQvNWp0W\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-22gwxj\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"snbdBwn18\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0RlbmltIElOSyBXRCBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Denim INK WD SemiBold\", \"Denim INK WD SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e3f42397-3791-44ce-9b85-9a083b9ec181, rgb(36, 40, 48)))\"},children:\"Title\"})}),className:\"framer-1n39q18\",\"data-framer-name\":\"Name\",fonts:[\"CUSTOM;Denim INK WD SemiBold\"],layoutDependency:layoutDependency,layoutId:\"coLXQjptb\",style:{\"--extracted-r6o4lv\":\"var(--token-e3f42397-3791-44ce-9b85-9a083b9ec181, rgb(36, 40, 48))\"},text:bntrxX93WHVyBQ3Nw2,verticalAlignment:\"top\",withExternalLayout:true})})]})})},idHVyBQ3Nw2);})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1qvmci1\",\"data-styles-preset\":\"vuztVCB_C\",children:\"Description\"})}),className:\"framer-6bqqyz\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sG15OXOPD\",text:fzGHZNBYluu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Preview\"})}),className:\"framer-10vmlg5\",\"data-framer-name\":\"Preview\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xg6Y9LqKL\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:BUd9Lsea7uu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Section Title 1\"})}),className:\"framer-ts4hv0\",\"data-framer-name\":\"Section Title 1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MuodXIoQi\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:G7_5nehH2uu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Section Title 2\"})}),className:\"framer-dfh6bh\",\"data-framer-name\":\"Section Title 2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"thkpiudmZ\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:idEpwcJUTuu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Section Title 3\"})}),className:\"framer-urcbkf\",\"data-framer-name\":\"Section Title 3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GuRoqRMni\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:JaT2sGpKHuu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Section Title 4\"})}),className:\"framer-ea6q8h\",\"data-framer-name\":\"Section Title 4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EUOlxvE8T\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:n60P84P9Buu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Section Title 5\"})}),className:\"framer-gsq8n9\",\"data-framer-name\":\"Section Title 5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OnQL7b8rJ\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:fScUbc55Cuu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Section Title 6\"})}),className:\"framer-3ghnm\",\"data-framer-name\":\"Section Title 6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mzkA5ymd5\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:bDIh5NX0zuu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Section Title 7\"})}),className:\"framer-krhw65\",\"data-framer-name\":\"Section Title 7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xh19Kvcdy\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:iiG3mFAdQuu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Section Title 8\"})}),className:\"framer-omxkoc\",\"data-framer-name\":\"Section Title 8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gS5tdxYiE\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:qYg78qqCluu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Section Title 9\"})}),className:\"framer-1naolhu\",\"data-framer-name\":\"Section Title 9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HOiY5SzH6\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:VZALrd9ntuu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Section Title 10\"})}),className:\"framer-ozsb2k\",\"data-framer-name\":\"Section Title 10\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZP7KTd7Ip\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:CDB1RSbQHuu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Section Title 11\"})}),className:\"framer-1murr84\",\"data-framer-name\":\"Section Title 11\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JhbK9ob9o\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:U3rtPOsP9uu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Section Title 12\"})}),className:\"framer-m65tku\",\"data-framer-name\":\"Section Title 12\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dO0093zbk\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:astAQR4GFuu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Section Title 13\"})}),className:\"framer-17yi6lo\",\"data-framer-name\":\"Section Title 13\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mtR9ueX41\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:le1D44MTmuu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Section Title 14\"})}),className:\"framer-gvrtkg\",\"data-framer-name\":\"Section Title 14\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EQqbO2cLv\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:TWGD7Ccyfuu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Section Title 15\"})}),className:\"framer-azg1jy\",\"data-framer-name\":\"Section Title 15\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UG1c_pOLu\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:a3l1UfPmjuu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Section Title 16\"})}),className:\"framer-1k6vz3j\",\"data-framer-name\":\"Section Title 16\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fpoQdZY1j\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:yiBP_R_PNuu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Section Title 17\"})}),className:\"framer-1a3mecw\",\"data-framer-name\":\"Section Title 17\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KCt12Sgbt\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:ZsDVb4yYkuu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Section Title 18\"})}),className:\"framer-fxl9nb\",\"data-framer-name\":\"Section Title 18\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RycTMmAbd\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:WxOeO57y0uu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Section Title 19\"})}),className:\"framer-ajvbf\",\"data-framer-name\":\"Section Title 19\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"y62Ann0YB\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:Z9OiPHU8Duu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yqvvn\",\"data-styles-preset\":\"AbgDedWrB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Section Title 20\"})}),className:\"framer-3vvda1\",\"data-framer-name\":\"Section Title 20\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cmTgD7mHC\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:ZmihUC2Uguu6POGEwY,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})},iduu6POGEwY);})})})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,width:\"343.5px\",y:(componentViewport?.y||0)+100+(((componentViewport?.height||748)-200-438)/2+0+0)+0+90+0,...addPropertyOverrides({iug5WSMNd:{width:`min(${componentViewport?.width||\"100vw\"} - 200px, 1070px)`,y:(componentViewport?.y||0)+100+(((componentViewport?.height||1350)-200-1174)/2+0+0)+0+90+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yoqg4g-container\",\"data-framer-name\":\"Blog 1\",layoutDependency:layoutDependency,layoutId:\"QG0aBA2oM-container\",name:\"Blog 1\",nodeId:\"QG0aBA2oM\",rendersWithMotion:true,scopeId:\"v_9vYvSUb\",children:/*#__PURE__*/_jsx(BLog,{eQ1asmYhF:\"space-between\",height:\"100%\",id:\"QG0aBA2oM\",layoutId:\"QG0aBA2oM\",name:\"Blog 1\",o0nk7MAQk:\"https://qonversion.io/blog/in-app-subscriptions-to-accelerate-revenue-growth/\",QJCg6biOO:\"Zephyr Mobile team created a successful mobile app in the trivia category. The app was downloaded more than 10M times on\\xa0Play Store\\xa0and monetized successfully with ads. But the team was eager to grow revenue further and decided to test an added subscription monetization.\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",x1kI00cTG:\"Adding in-app subscriptions to accelerate the revenue growth of an app monetizing with ads\",Z8TYSdOyI:\"Kate\",...addPropertyOverrides({iug5WSMNd:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})}),isDisplayed6()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-vy4rzj\",layoutDependency:layoutDependency,layoutId:\"dj0KmmAXA\",style:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"dj0KmmAXA\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"dj0KmmAXA\",name:\"OCLWutXkk\",type:\"Identifier\"},{collection:\"dj0KmmAXA\",name:\"Qnead82bu\",type:\"Identifier\"},{collection:\"dj0KmmAXA\",name:\"zSrHxsOOR\",type:\"Identifier\"},{collection:\"dj0KmmAXA\",name:\"fzGHZNBYl\",type:\"Identifier\"},{collection:\"dj0KmmAXA\",name:\"id\",type:\"Identifier\"},{alias:\"S3J0DaC11\",arguments:[{from:{alias:\"S3J0DaC11\",data:Authors,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"S3J0DaC11\",name:\"StPv4LTej\",type:\"Identifier\"},{collection:\"S3J0DaC11\",name:\"bntrxX93W\",type:\"Identifier\"},{collection:\"S3J0DaC11\",name:\"fv7F_RP9o\",type:\"Identifier\"},{collection:\"S3J0DaC11\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"S3J0DaC11\",name:\"bntrxX93W\",type:\"Identifier\"},operator:\"==\",right:{collection:\"dj0KmmAXA\",name:\"nb6kNh1DB\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{collection:\"dj0KmmAXA\",name:\"FfIvsOts2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"customer-stories\"},type:\"BinaryOperation\"}},children:(collection15,paginationInfo10,loadMore10)=>/*#__PURE__*/_jsx(_Fragment,{children:collection15?.map(({fzGHZNBYl:fzGHZNBYldj0KmmAXA,id:iddj0KmmAXA,OCLWutXkk:OCLWutXkkdj0KmmAXA,Qnead82bu:Qnead82budj0KmmAXA,S3J0DaC11:collection14,zSrHxsOOR:zSrHxsOORdj0KmmAXA},index12)=>{OCLWutXkkdj0KmmAXA??=\"\";zSrHxsOORdj0KmmAXA??=\"\";fzGHZNBYldj0KmmAXA??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`dj0KmmAXA-${iddj0KmmAXA}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{OCLWutXkk:OCLWutXkkdj0KmmAXA},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{OCLWutXkk:OCLWutXkkdj0KmmAXA},webPageId:\"ijq6wqs_G\"},motionChild:true,nodeId:\"nwyRmh88S\",scopeId:\"v_9vYvSUb\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-kblhyt framer-15xno8h\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"nwyRmh88S\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-fb52538e-e373-4cdf-9be7-7b90e01bb6eb, rgb(255, 255, 255))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"var(--token-fb52538e-e373-4cdf-9be7-7b90e01bb6eb, rgb(255, 255, 255))\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"561px\",...toResponsiveImage(Qnead82budj0KmmAXA)},className:\"framer-1rr4hpv\",layoutDependency:layoutDependency,layoutId:\"pOtumNy3d\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({fj9za_ryr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||1911)-200-623)/2+0+0)+0+90+0+0+0+0+20+0),sizes:\"561px\",...toResponsiveImage(Qnead82budj0KmmAXA)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1be2i9e\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"dhmTvy1_W\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1c3yy2\",\"data-styles-preset\":\"EAT2CDplj\",children:\"Title\"})}),className:\"framer-46dw1q\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tjKnJ6Uvy\",text:zSrHxsOORdj0KmmAXA,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4e7nog\",layoutDependency:layoutDependency,layoutId:\"S3J0DaC11\",children:collection14?.map(({bntrxX93W:bntrxX93WS3J0DaC11,fv7F_RP9o:fv7F_RP9oS3J0DaC11,id:idS3J0DaC11,StPv4LTej:StPv4LTejS3J0DaC11},index11)=>{bntrxX93WS3J0DaC11??=\"\";fv7F_RP9oS3J0DaC11??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`S3J0DaC11-${idS3J0DaC11}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{fv7F_RP9o:fv7F_RP9oS3J0DaC11},children:isDisplayed7()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q95h7q\",\"data-framer-name\":\"Author\",layoutDependency:layoutDependency,layoutId:\"B3rB4Ffh3\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"40px\",...toResponsiveImage(StPv4LTejS3J0DaC11)},className:\"framer-1k42jot\",layoutDependency:layoutDependency,layoutId:\"XMY4mCAXs\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-oz79zv\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"ukBMqsmCa\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0RlbmltIElOSyBXRCBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Denim INK WD SemiBold\", \"Denim INK WD SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e3f42397-3791-44ce-9b85-9a083b9ec181, rgb(36, 40, 48)))\"},children:\"Title\"})}),className:\"framer-yonteu\",\"data-framer-name\":\"Name\",fonts:[\"CUSTOM;Denim INK WD SemiBold\"],layoutDependency:layoutDependency,layoutId:\"Ji5o_BFPI\",style:{\"--extracted-r6o4lv\":\"var(--token-e3f42397-3791-44ce-9b85-9a083b9ec181, rgb(36, 40, 48))\"},text:bntrxX93WS3J0DaC11,verticalAlignment:\"top\",withExternalLayout:true})})]})})},idS3J0DaC11);})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1qvmci1\",\"data-styles-preset\":\"vuztVCB_C\",children:\"Description\"})}),className:\"framer-owfurf\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"X7dwNImuj\",text:fzGHZNBYldj0KmmAXA,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},iddj0KmmAXA);})})})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,width:\"343px\",y:(componentViewport?.y||0)+100+(((componentViewport?.height||748)-200-438)/2+0+0)+0+90+0,...addPropertyOverrides({iug5WSMNd:{width:`min(${componentViewport?.width||\"100vw\"} - 200px, 1070px)`,y:(componentViewport?.y||0)+100+(((componentViewport?.height||1350)-200-1174)/2+0+0)+0+90+0+368}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pjzvow-container\",\"data-framer-name\":\"Blog 2\",layoutDependency:layoutDependency,layoutId:\"uxPm9zebW-container\",name:\"Blog 2\",nodeId:\"uxPm9zebW\",rendersWithMotion:true,scopeId:\"v_9vYvSUb\",children:/*#__PURE__*/_jsx(BLog,{eQ1asmYhF:\"space-between\",height:\"100%\",id:\"uxPm9zebW\",layoutId:\"uxPm9zebW\",name:\"Blog 2\",o0nk7MAQk:\"https://qonversion.io/blog/apple-search-ads-for-subscription-apps/\",QJCg6biOO:\"Interval Timer\\xa0is the mobile app in the fitness category monetizing with in-app subscriptions. The app helps to create and monitor interval training. Leveraging Qonversion\u2019s Apple Search Ads attribution dashboard, the app\u2019s team doubled its monthly revenue in six weeks.\",style:{height:\"100%\",width:\"100%\"},TrrMsinaQ:addImageAlt({src:\"https://framerusercontent.com/images/608u8X5xYLrPLN7Xg2bAnyyU.png\"},\"\"),wAv9piO5q:addImageAlt({src:\"https://framerusercontent.com/images/zcEEslIE71u3mbEsK2dqt4q4FQ.png\"},\"\"),width:\"100%\",x1kI00cTG:\"How Intervals Fitness App Used Qonversion Apple Search Ads Dashboard to Grow In-App Subscription Revenue by 2x\",Z8TYSdOyI:\"Michael\",...addPropertyOverrides({iug5WSMNd:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,width:\"343.5px\",y:(componentViewport?.y||0)+100+(((componentViewport?.height||748)-200-438)/2+0+0)+0+90+0,...addPropertyOverrides({iug5WSMNd:{width:`min(${componentViewport?.width||\"100vw\"} - 200px, 1070px)`,y:(componentViewport?.y||0)+100+(((componentViewport?.height||1350)-200-1174)/2+0+0)+0+90+0+736}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1psnlhc-container\",\"data-framer-name\":\"Blog 3\",layoutDependency:layoutDependency,layoutId:\"z7oDD5x_V-container\",name:\"Blog 3\",nodeId:\"z7oDD5x_V\",rendersWithMotion:true,scopeId:\"v_9vYvSUb\",children:/*#__PURE__*/_jsx(BLog,{eQ1asmYhF:\"space-between\",height:\"100%\",id:\"z7oDD5x_V\",layoutId:\"z7oDD5x_V\",name:\"Blog 3\",o0nk7MAQk:\"https://qonversion.io/blog/high-data-accuracy-bp-mobile/\",QJCg6biOO:\"BP Mobile is an international app developer with top titles across several categories of App Store and Google Play Store. The company\u2019s projects top the list of the most downloaded apps on both platforms and simplify the life of 500M+ users worldwide. BP Mobile embraces data and analytics as key factors for making marketing and product decisions. Tracking mobile subscription data with high accuracy is where Qonversion helps.\",style:{width:\"100%\"},TrrMsinaQ:addImageAlt({src:\"https://framerusercontent.com/images/lbcFHs9nft8d8ar81uOoYf4lSBk.png\"},\"\"),width:\"100%\",x1kI00cTG:\"BP Mobile + Qonversion: 100% data accuracy for better decisions\",Z8TYSdOyI:\"Kate\"})})})]})]}),isDisplayed8()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Bicevj3t8:{height:570,width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+60+(((componentViewport?.height||860)-120-718)/2+108+40)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-lodxpy-container\",layoutDependency:layoutDependency,layoutId:\"UaeK99BKj-container\",nodeId:\"UaeK99BKj\",rendersWithMotion:true,scopeId:\"v_9vYvSUb\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(TestimonialsSlideHistory,{height:\"100%\",id:\"UaeK99BKj\",layoutId:\"UaeK99BKj\",style:{width:\"100%\"},SVunKCEkQ:1,variant:\"AlmDDkPUZ\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GZQp2.framer-15xno8h, .framer-GZQp2 .framer-15xno8h { display: block; }\",\".framer-GZQp2.framer-p8vp4g { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 1512px; }\",\".framer-GZQp2 .framer-tfsh1n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1070px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GZQp2 .framer-rs4hy3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 50px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GZQp2 .framer-hat5jb { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-GZQp2 .framer-1cg05z5-container { flex: none; height: 449px; position: relative; width: 303px; }\",\".framer-GZQp2 .framer-miqj51, .framer-GZQp2 .framer-1lgkqnn, .framer-GZQp2 .framer-1dalzhf, .framer-GZQp2 .framer-gnhvgm, .framer-GZQp2 .framer-bfet77, .framer-GZQp2 .framer-1ojjps3 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: 420px; justify-content: flex-start; padding: 0px; position: relative; width: 303px; }\",\".framer-GZQp2 .framer-1902u9m, .framer-GZQp2 .framer-138apxa, .framer-GZQp2 .framer-bdoazt, .framer-GZQp2 .framer-ammlu, .framer-GZQp2 .framer-133a94l, .framer-GZQp2 .framer-1cbxxut, .framer-GZQp2 .framer-zaiar3, .framer-GZQp2 .framer-oeh81t, .framer-GZQp2 .framer-bt2ngc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-start; padding: 20px; position: relative; text-decoration: none; width: 1px; }\",\".framer-GZQp2 .framer-1kxtupt, .framer-GZQp2 .framer-15at339, .framer-GZQp2 .framer-vrro61, .framer-GZQp2 .framer-we114p, .framer-GZQp2 .framer-1dfem7t, .framer-GZQp2 .framer-psbjoh { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 100px); overflow: visible; position: relative; width: 100px; }\",\".framer-GZQp2 .framer-m0v17o, .framer-GZQp2 .framer-17t08bl, .framer-GZQp2 .framer-1t8vj2r, .framer-GZQp2 .framer-13o3yjv, .framer-GZQp2 .framer-qp5cp0, .framer-GZQp2 .framer-v4va2g, .framer-GZQp2 .framer-1hqanbv, .framer-GZQp2 .framer-1s6x7p4, .framer-GZQp2 .framer-1w0mitv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; padding: 0px; position: relative; width: 100%; }\",\".framer-GZQp2 .framer-ky60uw, .framer-GZQp2 .framer-1lcilgw, .framer-GZQp2 .framer-1jc7tmd, .framer-GZQp2 .framer-1dc4x9, .framer-GZQp2 .framer-13e9250, .framer-GZQp2 .framer-1rfjh3z, .framer-GZQp2 .framer-3py2o6, .framer-GZQp2 .framer-2oq8dx, .framer-GZQp2 .framer-orneg9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GZQp2 .framer-45vu8e, .framer-GZQp2 .framer-1y63dfy, .framer-GZQp2 .framer-1w9v0z3, .framer-GZQp2 .framer-y612dk, .framer-GZQp2 .framer-1trfwde, .framer-GZQp2 .framer-spw3vt, .framer-GZQp2 .framer-1j7a7ja, .framer-GZQp2 .framer-732pmc, .framer-GZQp2 .framer-xaaxxi, .framer-GZQp2 .framer-1v9hq2p, .framer-GZQp2 .framer-10o8zfq, .framer-GZQp2 .framer-1b76c41, .framer-GZQp2 .framer-1uge9j9, .framer-GZQp2 .framer-1qldc2l, .framer-GZQp2 .framer-8ltrfg, .framer-GZQp2 .framer-xme9da, .framer-GZQp2 .framer-1wcir08, .framer-GZQp2 .framer-12kp7qc, .framer-GZQp2 .framer-4gpvbo, .framer-GZQp2 .framer-136f2cd, .framer-GZQp2 .framer-1xblo8t, .framer-GZQp2 .framer-y5whxj, .framer-GZQp2 .framer-1erlq2o, .framer-GZQp2 .framer-17mzfmg, .framer-GZQp2 .framer-1rt7ban, .framer-GZQp2 .framer-mxo4zt, .framer-GZQp2 .framer-1lohx13, .framer-GZQp2 .framer-1hait59, .framer-GZQp2 .framer-yyzy6m, .framer-GZQp2 .framer-k7s87y, .framer-GZQp2 .framer-6bqqyz, .framer-GZQp2 .framer-10vmlg5, .framer-GZQp2 .framer-ts4hv0, .framer-GZQp2 .framer-dfh6bh, .framer-GZQp2 .framer-urcbkf, .framer-GZQp2 .framer-ea6q8h, .framer-GZQp2 .framer-gsq8n9, .framer-GZQp2 .framer-3ghnm, .framer-GZQp2 .framer-krhw65, .framer-GZQp2 .framer-omxkoc, .framer-GZQp2 .framer-1naolhu, .framer-GZQp2 .framer-ozsb2k, .framer-GZQp2 .framer-1murr84, .framer-GZQp2 .framer-m65tku, .framer-GZQp2 .framer-17yi6lo, .framer-GZQp2 .framer-gvrtkg, .framer-GZQp2 .framer-azg1jy, .framer-GZQp2 .framer-1k6vz3j, .framer-GZQp2 .framer-1a3mecw, .framer-GZQp2 .framer-fxl9nb, .framer-GZQp2 .framer-ajvbf, .framer-GZQp2 .framer-3vvda1, .framer-GZQp2 .framer-46dw1q, .framer-GZQp2 .framer-owfurf { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-GZQp2 .framer-1whft0p-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-GZQp2 .framer-1juzz8f-container { flex: none; height: 679px; position: relative; width: 303px; }\",\".framer-GZQp2 .framer-1xi0bqq, .framer-GZQp2 .framer-mtmokz, .framer-GZQp2 .framer-bmog81 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: 679px; justify-content: flex-start; padding: 0px; position: relative; width: 303px; }\",\".framer-GZQp2 .framer-1d1676n { flex: none; height: 309px; position: relative; width: 263px; }\",\".framer-GZQp2 .framer-hors87, .framer-GZQp2 .framer-obeukl { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 40px; }\",\".framer-GZQp2 .framer-1i5ni6m, .framer-GZQp2 .framer-lr3xio, .framer-GZQp2 .framer-1glynx4, .framer-GZQp2 .framer-1xt43sb, .framer-GZQp2 .framer-4e7nog { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-GZQp2 .framer-1pij7v7, .framer-GZQp2 .framer-pck858 { flex: none; height: 309px; position: relative; width: 100%; }\",\".framer-GZQp2 .framer-zfvhvc { flex: none; height: 40px; overflow: visible; position: relative; width: 40px; }\",\".framer-GZQp2 .framer-2jeq0a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GZQp2 .framer-1bjmy5p { display: grid; flex: 1 0 0px; gap: 30px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-GZQp2 .framer-hjso8d { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 40px; height: 100%; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-GZQp2 .framer-1gejhnf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-GZQp2 .framer-1t8kp2h { flex: none; height: 150px; position: relative; width: 297px; }\",\".framer-GZQp2 .framer-1nivase { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 260px; padding: 0px; position: relative; width: 100%; }\",\".framer-GZQp2 .framer-2aibkz, .framer-GZQp2 .framer-1q95h7q { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 13px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-GZQp2 .framer-1rcp4l6, .framer-GZQp2 .framer-1k42jot { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-GZQp2 .framer-22gwxj, .framer-GZQp2 .framer-oz79zv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 1px; }\",\".framer-GZQp2 .framer-1n39q18, .framer-GZQp2 .framer-yonteu { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-GZQp2 .framer-yoqg4g-container { align-self: stretch; flex: none; height: auto; position: relative; width: 344px; }\",\".framer-GZQp2 .framer-vy4rzj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-GZQp2 .framer-kblhyt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 20px; position: relative; text-decoration: none; width: 100%; }\",\".framer-GZQp2 .framer-1rr4hpv { flex: none; height: 309px; position: relative; width: 561px; }\",\".framer-GZQp2 .framer-1be2i9e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 543px; }\",\".framer-GZQp2 .framer-1pjzvow-container { align-self: stretch; flex: none; height: auto; position: relative; width: 343px; }\",\".framer-GZQp2 .framer-1psnlhc-container { flex: none; height: auto; position: relative; width: 344px; }\",\".framer-GZQp2 .framer-lodxpy-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GZQp2.framer-p8vp4g, .framer-GZQp2 .framer-tfsh1n, .framer-GZQp2 .framer-miqj51, .framer-GZQp2 .framer-1902u9m, .framer-GZQp2 .framer-ky60uw, .framer-GZQp2 .framer-1lgkqnn, .framer-GZQp2 .framer-138apxa, .framer-GZQp2 .framer-1lcilgw, .framer-GZQp2 .framer-1dalzhf, .framer-GZQp2 .framer-bdoazt, .framer-GZQp2 .framer-1jc7tmd, .framer-GZQp2 .framer-gnhvgm, .framer-GZQp2 .framer-ammlu, .framer-GZQp2 .framer-1dc4x9, .framer-GZQp2 .framer-bfet77, .framer-GZQp2 .framer-133a94l, .framer-GZQp2 .framer-13e9250, .framer-GZQp2 .framer-1ojjps3, .framer-GZQp2 .framer-1cbxxut, .framer-GZQp2 .framer-1rfjh3z, .framer-GZQp2 .framer-1xi0bqq, .framer-GZQp2 .framer-zaiar3, .framer-GZQp2 .framer-3py2o6, .framer-GZQp2 .framer-1i5ni6m, .framer-GZQp2 .framer-mtmokz, .framer-GZQp2 .framer-oeh81t, .framer-GZQp2 .framer-2oq8dx, .framer-GZQp2 .framer-lr3xio, .framer-GZQp2 .framer-bmog81, .framer-GZQp2 .framer-bt2ngc, .framer-GZQp2 .framer-orneg9, .framer-GZQp2 .framer-1glynx4, .framer-GZQp2 .framer-2jeq0a, .framer-GZQp2 .framer-hjso8d, .framer-GZQp2 .framer-1gejhnf, .framer-GZQp2 .framer-1nivase, .framer-GZQp2 .framer-1xt43sb, .framer-GZQp2 .framer-2aibkz, .framer-GZQp2 .framer-22gwxj, .framer-GZQp2 .framer-vy4rzj, .framer-GZQp2 .framer-kblhyt, .framer-GZQp2 .framer-1be2i9e, .framer-GZQp2 .framer-4e7nog, .framer-GZQp2 .framer-1q95h7q, .framer-GZQp2 .framer-oz79zv { gap: 0px; } .framer-GZQp2.framer-p8vp4g > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-GZQp2.framer-p8vp4g > :first-child, .framer-GZQp2 .framer-tfsh1n > :first-child, .framer-GZQp2 .framer-1902u9m > :first-child, .framer-GZQp2 .framer-ky60uw > :first-child, .framer-GZQp2 .framer-138apxa > :first-child, .framer-GZQp2 .framer-1lcilgw > :first-child, .framer-GZQp2 .framer-bdoazt > :first-child, .framer-GZQp2 .framer-1jc7tmd > :first-child, .framer-GZQp2 .framer-ammlu > :first-child, .framer-GZQp2 .framer-1dc4x9 > :first-child, .framer-GZQp2 .framer-133a94l > :first-child, .framer-GZQp2 .framer-13e9250 > :first-child, .framer-GZQp2 .framer-1cbxxut > :first-child, .framer-GZQp2 .framer-1rfjh3z > :first-child, .framer-GZQp2 .framer-zaiar3 > :first-child, .framer-GZQp2 .framer-3py2o6 > :first-child, .framer-GZQp2 .framer-oeh81t > :first-child, .framer-GZQp2 .framer-2oq8dx > :first-child, .framer-GZQp2 .framer-bt2ngc > :first-child, .framer-GZQp2 .framer-orneg9 > :first-child, .framer-GZQp2 .framer-hjso8d > :first-child, .framer-GZQp2 .framer-1gejhnf > :first-child, .framer-GZQp2 .framer-1nivase > :first-child, .framer-GZQp2 .framer-22gwxj > :first-child, .framer-GZQp2 .framer-vy4rzj > :first-child, .framer-GZQp2 .framer-kblhyt > :first-child, .framer-GZQp2 .framer-1be2i9e > :first-child, .framer-GZQp2 .framer-oz79zv > :first-child { margin-top: 0px; } .framer-GZQp2.framer-p8vp4g > :last-child, .framer-GZQp2 .framer-tfsh1n > :last-child, .framer-GZQp2 .framer-1902u9m > :last-child, .framer-GZQp2 .framer-ky60uw > :last-child, .framer-GZQp2 .framer-138apxa > :last-child, .framer-GZQp2 .framer-1lcilgw > :last-child, .framer-GZQp2 .framer-bdoazt > :last-child, .framer-GZQp2 .framer-1jc7tmd > :last-child, .framer-GZQp2 .framer-ammlu > :last-child, .framer-GZQp2 .framer-1dc4x9 > :last-child, .framer-GZQp2 .framer-133a94l > :last-child, .framer-GZQp2 .framer-13e9250 > :last-child, .framer-GZQp2 .framer-1cbxxut > :last-child, .framer-GZQp2 .framer-1rfjh3z > :last-child, .framer-GZQp2 .framer-zaiar3 > :last-child, .framer-GZQp2 .framer-3py2o6 > :last-child, .framer-GZQp2 .framer-oeh81t > :last-child, .framer-GZQp2 .framer-2oq8dx > :last-child, .framer-GZQp2 .framer-bt2ngc > :last-child, .framer-GZQp2 .framer-orneg9 > :last-child, .framer-GZQp2 .framer-hjso8d > :last-child, .framer-GZQp2 .framer-1gejhnf > :last-child, .framer-GZQp2 .framer-1nivase > :last-child, .framer-GZQp2 .framer-22gwxj > :last-child, .framer-GZQp2 .framer-vy4rzj > :last-child, .framer-GZQp2 .framer-kblhyt > :last-child, .framer-GZQp2 .framer-1be2i9e > :last-child, .framer-GZQp2 .framer-oz79zv > :last-child { margin-bottom: 0px; } .framer-GZQp2 .framer-tfsh1n > *, .framer-GZQp2 .framer-hjso8d > *, .framer-GZQp2 .framer-kblhyt > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-GZQp2 .framer-miqj51 > *, .framer-GZQp2 .framer-1lgkqnn > *, .framer-GZQp2 .framer-1dalzhf > *, .framer-GZQp2 .framer-gnhvgm > *, .framer-GZQp2 .framer-bfet77 > *, .framer-GZQp2 .framer-1ojjps3 > *, .framer-GZQp2 .framer-1xi0bqq > *, .framer-GZQp2 .framer-mtmokz > *, .framer-GZQp2 .framer-bmog81 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-GZQp2 .framer-miqj51 > :first-child, .framer-GZQp2 .framer-1lgkqnn > :first-child, .framer-GZQp2 .framer-1dalzhf > :first-child, .framer-GZQp2 .framer-gnhvgm > :first-child, .framer-GZQp2 .framer-bfet77 > :first-child, .framer-GZQp2 .framer-1ojjps3 > :first-child, .framer-GZQp2 .framer-1xi0bqq > :first-child, .framer-GZQp2 .framer-1i5ni6m > :first-child, .framer-GZQp2 .framer-mtmokz > :first-child, .framer-GZQp2 .framer-lr3xio > :first-child, .framer-GZQp2 .framer-bmog81 > :first-child, .framer-GZQp2 .framer-1glynx4 > :first-child, .framer-GZQp2 .framer-2jeq0a > :first-child, .framer-GZQp2 .framer-1xt43sb > :first-child, .framer-GZQp2 .framer-2aibkz > :first-child, .framer-GZQp2 .framer-4e7nog > :first-child, .framer-GZQp2 .framer-1q95h7q > :first-child { margin-left: 0px; } .framer-GZQp2 .framer-miqj51 > :last-child, .framer-GZQp2 .framer-1lgkqnn > :last-child, .framer-GZQp2 .framer-1dalzhf > :last-child, .framer-GZQp2 .framer-gnhvgm > :last-child, .framer-GZQp2 .framer-bfet77 > :last-child, .framer-GZQp2 .framer-1ojjps3 > :last-child, .framer-GZQp2 .framer-1xi0bqq > :last-child, .framer-GZQp2 .framer-1i5ni6m > :last-child, .framer-GZQp2 .framer-mtmokz > :last-child, .framer-GZQp2 .framer-lr3xio > :last-child, .framer-GZQp2 .framer-bmog81 > :last-child, .framer-GZQp2 .framer-1glynx4 > :last-child, .framer-GZQp2 .framer-2jeq0a > :last-child, .framer-GZQp2 .framer-1xt43sb > :last-child, .framer-GZQp2 .framer-2aibkz > :last-child, .framer-GZQp2 .framer-4e7nog > :last-child, .framer-GZQp2 .framer-1q95h7q > :last-child { margin-right: 0px; } .framer-GZQp2 .framer-1902u9m > *, .framer-GZQp2 .framer-138apxa > *, .framer-GZQp2 .framer-bdoazt > *, .framer-GZQp2 .framer-ammlu > *, .framer-GZQp2 .framer-133a94l > *, .framer-GZQp2 .framer-1cbxxut > *, .framer-GZQp2 .framer-zaiar3 > *, .framer-GZQp2 .framer-oeh81t > *, .framer-GZQp2 .framer-bt2ngc > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-GZQp2 .framer-ky60uw > *, .framer-GZQp2 .framer-1lcilgw > *, .framer-GZQp2 .framer-1jc7tmd > *, .framer-GZQp2 .framer-1dc4x9 > *, .framer-GZQp2 .framer-13e9250 > *, .framer-GZQp2 .framer-1rfjh3z > *, .framer-GZQp2 .framer-3py2o6 > *, .framer-GZQp2 .framer-2oq8dx > *, .framer-GZQp2 .framer-orneg9 > *, .framer-GZQp2 .framer-1nivase > *, .framer-GZQp2 .framer-22gwxj > *, .framer-GZQp2 .framer-1be2i9e > *, .framer-GZQp2 .framer-oz79zv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GZQp2 .framer-1i5ni6m > *, .framer-GZQp2 .framer-lr3xio > *, .framer-GZQp2 .framer-1glynx4 > *, .framer-GZQp2 .framer-1xt43sb > *, .framer-GZQp2 .framer-4e7nog > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-GZQp2 .framer-2jeq0a > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-GZQp2 .framer-1gejhnf > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-GZQp2 .framer-2aibkz > *, .framer-GZQp2 .framer-1q95h7q > * { margin: 0px; margin-left: calc(13px / 2); margin-right: calc(13px / 2); } .framer-GZQp2 .framer-vy4rzj > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\".framer-GZQp2.framer-v-1r3hiv8.framer-p8vp4g, .framer-GZQp2.framer-v-1i5kjhu.framer-p8vp4g { padding: 100px; width: 801px; }\",\".framer-GZQp2.framer-v-1r3hiv8 .framer-rs4hy3, .framer-GZQp2.framer-v-1i5kjhu .framer-rs4hy3 { height: min-content; }\",\".framer-GZQp2.framer-v-1r3hiv8 .framer-2jeq0a, .framer-GZQp2.framer-v-1i5kjhu .framer-2jeq0a { flex-direction: column; justify-content: flex-start; }\",\".framer-GZQp2.framer-v-1r3hiv8 .framer-yoqg4g-container, .framer-GZQp2.framer-v-1r3hiv8 .framer-1pjzvow-container { align-self: unset; width: 100%; }\",\".framer-GZQp2.framer-v-1r3hiv8 .framer-1psnlhc-container { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GZQp2.framer-v-1r3hiv8 .framer-2jeq0a { gap: 0px; } .framer-GZQp2.framer-v-1r3hiv8 .framer-2jeq0a > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-GZQp2.framer-v-1r3hiv8 .framer-2jeq0a > :first-child { margin-top: 0px; } .framer-GZQp2.framer-v-1r3hiv8 .framer-2jeq0a > :last-child { margin-bottom: 0px; } }\",\".framer-GZQp2.framer-v-794pz3.framer-p8vp4g { gap: 40px; padding: 60px 40px 60px 40px; width: 383px; }\",\".framer-GZQp2.framer-v-794pz3 .framer-tfsh1n { gap: 60px; max-width: unset; }\",\".framer-GZQp2.framer-v-794pz3 .framer-rs4hy3 { flex-direction: column; gap: 30px; height: min-content; justify-content: flex-start; }\",\".framer-GZQp2.framer-v-794pz3 .framer-hat5jb { --framer-text-wrap-override: balance; flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GZQp2.framer-v-794pz3.framer-p8vp4g, .framer-GZQp2.framer-v-794pz3 .framer-tfsh1n, .framer-GZQp2.framer-v-794pz3 .framer-rs4hy3 { gap: 0px; } .framer-GZQp2.framer-v-794pz3.framer-p8vp4g > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-GZQp2.framer-v-794pz3.framer-p8vp4g > :first-child, .framer-GZQp2.framer-v-794pz3 .framer-tfsh1n > :first-child, .framer-GZQp2.framer-v-794pz3 .framer-rs4hy3 > :first-child { margin-top: 0px; } .framer-GZQp2.framer-v-794pz3.framer-p8vp4g > :last-child, .framer-GZQp2.framer-v-794pz3 .framer-tfsh1n > :last-child, .framer-GZQp2.framer-v-794pz3 .framer-rs4hy3 > :last-child { margin-bottom: 0px; } .framer-GZQp2.framer-v-794pz3 .framer-tfsh1n > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-GZQp2.framer-v-794pz3 .framer-rs4hy3 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\".framer-GZQp2.framer-v-dhyp24 .framer-mxo4zt, .framer-GZQp2.framer-v-1oxc8qt .framer-1cg05z5-container { order: 2; }\",\".framer-GZQp2.framer-v-dhyp24 .framer-1lohx13 { order: 0; }\",\".framer-GZQp2.framer-v-dhyp24 .framer-1xt43sb, .framer-GZQp2.framer-v-1i5kjhu .framer-owfurf { order: 6; }\",\".framer-GZQp2.framer-v-dhyp24 .framer-6bqqyz { order: 4; }\",\".framer-GZQp2.framer-v-1i5kjhu .framer-vy4rzj, .framer-GZQp2.framer-v-wc85tj .framer-hat5jb { flex: none; width: 100%; }\",\".framer-GZQp2.framer-v-1i5kjhu .framer-46dw1q, .framer-GZQp2.framer-v-1oxc8qt .framer-1whft0p-container { order: 1; }\",\".framer-GZQp2.framer-v-1i5kjhu .framer-4e7nog { order: 7; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GZQp2.framer-v-1i5kjhu .framer-2jeq0a { gap: 0px; } .framer-GZQp2.framer-v-1i5kjhu .framer-2jeq0a > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-GZQp2.framer-v-1i5kjhu .framer-2jeq0a > :first-child { margin-top: 0px; } .framer-GZQp2.framer-v-1i5kjhu .framer-2jeq0a > :last-child { margin-bottom: 0px; } }\",\".framer-GZQp2.framer-v-wc85tj.framer-p8vp4g, .framer-GZQp2.framer-v-1oxc8qt.framer-p8vp4g { gap: 40px; padding: 60px 40px 100px 40px; width: 383px; }\",\".framer-GZQp2.framer-v-wc85tj .framer-tfsh1n { max-width: unset; }\",\".framer-GZQp2.framer-v-wc85tj .framer-rs4hy3, .framer-GZQp2.framer-v-1oxc8qt .framer-rs4hy3 { flex-direction: column; gap: 20px; height: min-content; justify-content: flex-start; order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GZQp2.framer-v-wc85tj.framer-p8vp4g, .framer-GZQp2.framer-v-wc85tj .framer-rs4hy3 { gap: 0px; } .framer-GZQp2.framer-v-wc85tj.framer-p8vp4g > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-GZQp2.framer-v-wc85tj.framer-p8vp4g > :first-child, .framer-GZQp2.framer-v-wc85tj .framer-rs4hy3 > :first-child { margin-top: 0px; } .framer-GZQp2.framer-v-wc85tj.framer-p8vp4g > :last-child, .framer-GZQp2.framer-v-wc85tj .framer-rs4hy3 > :last-child { margin-bottom: 0px; } .framer-GZQp2.framer-v-wc85tj .framer-rs4hy3 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-GZQp2.framer-v-1oxc8qt .framer-tfsh1n { max-width: unset; order: 0; }\",\".framer-GZQp2.framer-v-1oxc8qt .framer-hat5jb { flex: none; order: 0; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GZQp2.framer-v-1oxc8qt.framer-p8vp4g, .framer-GZQp2.framer-v-1oxc8qt .framer-rs4hy3 { gap: 0px; } .framer-GZQp2.framer-v-1oxc8qt.framer-p8vp4g > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-GZQp2.framer-v-1oxc8qt.framer-p8vp4g > :first-child, .framer-GZQp2.framer-v-1oxc8qt .framer-rs4hy3 > :first-child { margin-top: 0px; } .framer-GZQp2.framer-v-1oxc8qt.framer-p8vp4g > :last-child, .framer-GZQp2.framer-v-1oxc8qt .framer-rs4hy3 > :last-child { margin-bottom: 0px; } .framer-GZQp2.framer-v-1oxc8qt .framer-rs4hy3 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-GZQp2[data-border=\"true\"]::after, .framer-GZQp2 [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 748\n * @framerIntrinsicWidth 1512\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"iug5WSMNd\":{\"layout\":[\"fixed\",\"auto\"]},\"Bicevj3t8\":{\"layout\":[\"fixed\",\"auto\"]},\"YwpzaPeNG\":{\"layout\":[\"fixed\",\"auto\"]},\"fj9za_ryr\":{\"layout\":[\"fixed\",\"auto\"]},\"t7wua6TOi\":{\"layout\":[\"fixed\",\"auto\"]},\"DTyuQzyra\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"BRa6gC5If\":\"background\",\"fWI_Zfl2E\":\"background2\",\"TnNISQv1y\":\"colorText\",\"WBcuNbXr0\":\"visible\",\"bT7Hm6uJ9\":\"visible2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerv_9vYvSUb=withCSS(Component,css,\"framer-GZQp2\");export default Framerv_9vYvSUb;Framerv_9vYvSUb.displayName=\"Blog\";Framerv_9vYvSUb.defaultProps={height:748,width:1512};addPropertyControls(Framerv_9vYvSUb,{variant:{options:[\"D980VcOHM\",\"iug5WSMNd\",\"Bicevj3t8\",\"YwpzaPeNG\",\"fj9za_ryr\",\"t7wua6TOi\",\"DTyuQzyra\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\",\"Blog CS Desktop\",\"Blog CS Tablet\",\"Blog CS Mobile\",\"Customers\"],title:\"Variant\",type:ControlType.Enum},BRa6gC5If:{defaultValue:\"var(--token-f59bf36d-1ef9-4d92-af9e-4fff460f4d01, rgb(207, 225, 225))\",title:\"Background\",type:ControlType.Color},fWI_Zfl2E:{defaultValue:\"var(--token-fb52538e-e373-4cdf-9be7-7b90e01bb6eb, rgb(255, 255, 255))\",title:\"Background 2\",type:ControlType.Color},TnNISQv1y:{defaultValue:\"var(--token-e3f42397-3791-44ce-9b85-9a083b9ec181, rgb(36, 40, 48))\",title:\"Color text\",type:ControlType.Color},WBcuNbXr0:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean},bT7Hm6uJ9:{defaultValue:true,title:\"Visible 2\",type:ControlType.Boolean}});addFonts(Framerv_9vYvSUb,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"IBM Plex Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F63fjptAgt5VM-kVkqdyU8n5i0g1l9kn-s.woff2\",weight:\"400\"},{family:\"Denim INK WD SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/q21mEeWodYgE37AFEPCsecvtn8.woff2\"},{family:\"Denim WD Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/FSXjvDiz2y6kR6fPAT9ta3fdKc.woff2\"}]},...SlideshowFonts,...ButtonSecondFonts,...BLogFonts,...TestimonialsSlideHistoryFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerv_9vYvSUb\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1512\",\"framerIntrinsicHeight\":\"748\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iug5WSMNd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Bicevj3t8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YwpzaPeNG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fj9za_ryr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"t7wua6TOi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DTyuQzyra\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"BRa6gC5If\\\":\\\"background\\\",\\\"fWI_Zfl2E\\\":\\\"background2\\\",\\\"TnNISQv1y\\\":\\\"colorText\\\",\\\"WBcuNbXr0\\\":\\\"visible\\\",\\\"bT7Hm6uJ9\\\":\\\"visible2\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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e,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,EAAE,CAAC,MAAM,YAAY,UAAU,CAAC,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKsC,GAAQ,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,KAAK,SAAS,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,CAAC,CAAC,EAAE,aAAa,QAAQ,KAAK,cAAc,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,kBAAkB,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACmB,EAAaC,GAAgBC,KAAyB5O,EAAKqL,EAAU,CAAC,SAASqD,GAAc,IAAI,CAAC,CAAC,UAAUjH,EAAmB,UAAUxB,EAAmB,UAAUqB,EAAmB,UAAUN,EAAmB,UAAUN,EAAmB,UAAUU,EAAmB,UAAUrB,EAAmB,UAAUgB,EAAmB,UAAUN,GAAmB,UAAUE,GAAmB,UAAUkI,GAAa,GAAG9G,GAAY,UAAUnB,GAAmB,UAAUK,GAAmB,UAAUJ,GAAmB,UAAUT,GAAmB,UAAUmB,GAAmB,UAAUrB,GAAmB,UAAUY,GAAmB,UAAUX,GAAmB,UAAUN,GAAmB,UAAUC,GAAmB,UAAUoB,GAAmB,UAAUM,GAAmB,UAAUH,GAAmB,UAAUF,GAAmB,UAAUS,GAAmB,UAAUF,GAAmB,UAAUG,GAAmB,UAAUC,GAAmB,UAAUH,GAAmB,UAAU3B,EAAkB,EAAE8I,KAAU,CAACjJ,KAAqB,GAAGE,IAAqB,GAAGC,KAAqB,GAAGG,KAAqB,GAAGC,KAAqB,GAAGK,KAAqB,GAAGC,IAAqB,GAAG,IAAMqI,GAAavD,GAAavF,EAAmB,CAAC,UAAU,SAAS,OAAO,EAAE,EAAEyD,EAAgB,EAAQsF,GAAaxD,GAAatF,GAAmB,CAAC,UAAU,SAAS,OAAO,EAAE,EAAEwD,EAAgB,EAAE,OAAoB1J,EAAKoK,EAAY,CAAC,GAAG,aAAarC,EAAW,GAAG,SAAsB/H,EAAKyL,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAU5F,EAAkB,EAAE,SAAsB7F,EAAK0L,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU7F,EAAkB,EAAE,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7F,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,iBAAiBmJ,EAAiB,SAAS,YAAY,SAAsBiB,EAAMpK,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,WAAW4F,GAAW,SAAS,CAAcjP,EAAK2L,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,MAAM,UAAU,GAAGC,EAAkB9F,EAAkB,EAAM,UAAU,SAAS,UAAU,QAAS,EAAE,UAAU,iBAAiB,iBAAiBuD,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,GAAGkB,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ2E,IAA2BtN,GAAmB,GAAG,GAAG,OAAOA,GAAmB,QAAQ,KAAK,IAAI,MAAM,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE,MAAM,UAAU,GAAGgK,EAAkB9F,EAAkB,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,CAAC,EAAE4C,EAAYI,CAAc,CAAC,CAAC,EAAewB,EAAMpK,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBmJ,EAAiB,SAAS,YAAY,SAAS,CAACU,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAKtD,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/F,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,KAAKrD,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehG,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,EAAE,KAAK0F,GAAa,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEhF,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAK2F,GAAa,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEjF,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAKlD,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAE4D,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAKjD,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAepG,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmJ,EAAiB,SAAS,YAAY,SAASwF,IAAc,IAAI,CAAC,CAAC,UAAUvI,GAAmB,UAAUC,GAAmB,GAAGC,GAAY,UAAUH,EAAkB,EAAE8I,MAAU7I,KAAqB,GAAGC,KAAqB,GAAuBvG,EAAKoK,EAAY,CAAC,GAAG,aAAa5D,EAAW,GAAG,SAAsBxG,EAAKyL,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAUlF,EAAkB,EAAE,SAASwD,EAAa,GAAgBO,EAAMpK,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBmJ,EAAiB,SAAS,YAAY,SAAS,CAAcrJ,EAAK2L,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,OAAO,GAAGC,EAAkBvF,EAAkB,CAAC,EAAE,UAAU,iBAAiB,iBAAiBgD,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAerJ,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiBmJ,EAAiB,SAAS,YAAY,SAAsBrJ,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,2EAA2E,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,8BAA8B,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,KAAK/C,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,EAAW,EAAG,CAAC,CAAC,EAAexG,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,KAAK5C,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEsD,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAK3C,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEqD,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAK1C,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEoD,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAKzC,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEmD,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAKxC,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEkD,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAKvC,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEiD,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAKtC,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEgD,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAKrC,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAE+C,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAKpC,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAE8C,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAKnC,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAE6C,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAKlC,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAE4C,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mBAAmB,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAKjC,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAE2C,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,mBAAmB,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAKhC,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAE0C,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mBAAmB,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAK/B,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEyC,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,mBAAmB,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAK9B,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEwC,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mBAAmB,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAK7B,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEuC,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mBAAmB,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAK5B,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEsC,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,mBAAmB,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAK3B,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEqC,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,mBAAmB,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAK1B,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEoC,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mBAAmB,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAKzB,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEmC,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,mBAAmB,mBAAmB,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAKxB,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEkC,EAAa,GAAgB/J,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mBAAmB,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAKvB,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEC,EAAW,CAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiC,GAAa,GAAgBhK,EAAK4K,EAA0B,CAAC,OAAO,IAAI,MAAM,UAAU,GAAGhJ,GAAmB,GAAG,GAAG,OAAOA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG2I,GAAqB,CAAC,UAAU,CAAC,MAAM,OAAO3I,GAAmB,OAAO,OAAO,oBAAoB,GAAGA,GAAmB,GAAG,GAAG,OAAOA,GAAmB,QAAQ,MAAM,IAAI,MAAM,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,EAAE8G,EAAYI,CAAc,EAAE,SAAsB9I,EAAK6K,GAA8B,CAAC,UAAU,0BAA0B,mBAAmB,SAAS,iBAAiBxB,EAAiB,SAAS,sBAAsB,KAAK,SAAS,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrJ,EAAKoP,GAAK,CAAC,UAAU,gBAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,SAAS,UAAU,gFAAgF,UAAU,wRAAwR,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,OAAO,UAAU,6FAA6F,UAAU,OAAO,GAAG7E,GAAqB,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE7B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmB,GAAa,GAAgBjK,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBrJ,EAAK+K,GAAmB,CAAC,SAAsB/K,EAAKgL,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,GAAK,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,EAAE,CAAC,MAAM,YAAY,UAAU,CAAC,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKsC,GAAQ,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,KAAK,SAAS,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,CAAC,CAAC,EAAE,aAAa,QAAQ,KAAK,cAAc,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,kBAAkB,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAAC8B,EAAaC,GAAiBC,KAA0BvP,EAAKqL,EAAU,CAAC,SAASgE,GAAc,IAAI,CAAC,CAAC,UAAU9G,EAAmB,GAAGC,EAAY,UAAUR,EAAmB,UAAUC,EAAmB,UAAUuH,EAAa,UAAUtH,CAAkB,EAAEuH,KAAWzH,IAAqB,GAAGE,IAAqB,GAAGK,IAAqB,GAAuBvI,EAAKoK,EAAY,CAAC,GAAG,aAAa5B,CAAW,GAAG,SAAsBxI,EAAKyL,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAUzD,CAAkB,EAAE,SAAsBhI,EAAK0L,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU1D,CAAkB,EAAE,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBsC,EAAMpK,EAAO,EAAE,CAAC,UAAU,+BAA+B,cAAc,GAAK,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAcrJ,EAAK2L,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAGC,EAAkB3D,CAAkB,CAAC,EAAE,UAAU,iBAAiB,iBAAiBoB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,GAAGkB,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ2E,IAA2BtN,GAAmB,GAAG,GAAG,OAAOA,GAAmB,QAAQ,MAAM,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE,MAAM,QAAQ,GAAGgK,EAAkB3D,CAAkB,CAAC,CAAC,CAAC,EAAES,EAAYI,CAAc,CAAC,CAAC,EAAewB,EAAMpK,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBmJ,EAAiB,SAAS,YAAY,SAAS,CAAcrJ,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,KAAKnB,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAelI,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmJ,EAAiB,SAAS,YAAY,SAASmG,GAAc,IAAI,CAAC,CAAC,UAAUpH,EAAmB,UAAUC,GAAmB,GAAGC,GAAY,UAAUH,EAAkB,EAAEuH,MAAWtH,IAAqB,GAAGC,KAAqB,GAAuBrI,EAAKoK,EAAY,CAAC,GAAG,aAAa9B,EAAW,GAAG,SAAsBtI,EAAKyL,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAUpD,EAAkB,EAAE,SAAS6B,GAAa,GAAgBI,EAAMpK,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBmJ,EAAiB,SAAS,YAAY,SAAS,CAAcrJ,EAAK2L,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,OAAO,GAAGC,EAAkBzD,EAAkB,CAAC,EAAE,UAAU,iBAAiB,iBAAiBkB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAerJ,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiBmJ,EAAiB,SAAS,YAAY,SAAsBrJ,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,2EAA2E,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,8BAA8B,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,KAAKjB,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,EAAW,EAAG,CAAC,CAAC,EAAetI,EAAK2K,EAAS,CAAC,sBAAsB,GAAK,SAAsB3K,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,iBAAiBmJ,EAAiB,SAAS,YAAY,KAAKd,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEC,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwB,GAAa,GAAgBhK,EAAK4K,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGhJ,GAAmB,GAAG,GAAG,OAAOA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG2I,GAAqB,CAAC,UAAU,CAAC,MAAM,OAAO3I,GAAmB,OAAO,OAAO,oBAAoB,GAAGA,GAAmB,GAAG,GAAG,OAAOA,GAAmB,QAAQ,MAAM,IAAI,MAAM,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,EAAE8G,EAAYI,CAAc,EAAE,SAAsB9I,EAAK6K,GAA8B,CAAC,UAAU,2BAA2B,mBAAmB,SAAS,iBAAiBxB,EAAiB,SAAS,sBAAsB,KAAK,SAAS,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrJ,EAAKoP,GAAK,CAAC,UAAU,gBAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,SAAS,UAAU,qEAAqE,UAAU,8RAAoR,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAUhQ,GAAY,CAAC,IAAI,mEAAmE,EAAE,EAAE,EAAE,UAAUA,GAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,MAAM,OAAO,UAAU,iHAAiH,UAAU,UAAU,GAAGmL,GAAqB,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE7B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkB,GAAa,GAAgBhK,EAAK4K,EAA0B,CAAC,OAAO,IAAI,MAAM,UAAU,GAAGhJ,GAAmB,GAAG,GAAG,OAAOA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG2I,GAAqB,CAAC,UAAU,CAAC,MAAM,OAAO3I,GAAmB,OAAO,OAAO,oBAAoB,GAAGA,GAAmB,GAAG,GAAG,OAAOA,GAAmB,QAAQ,MAAM,IAAI,MAAM,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,EAAE8G,EAAYI,CAAc,EAAE,SAAsB9I,EAAK6K,GAA8B,CAAC,UAAU,2BAA2B,mBAAmB,SAAS,iBAAiBxB,EAAiB,SAAS,sBAAsB,KAAK,SAAS,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrJ,EAAKoP,GAAK,CAAC,UAAU,gBAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,SAAS,UAAU,2DAA2D,UAAU,obAA+a,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUhQ,GAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,MAAM,OAAO,UAAU,kEAAkE,UAAU,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+K,GAAa,GAAgBnK,EAAK4K,EAA0B,CAAC,GAAGL,GAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,QAAQ3I,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE8G,EAAYI,CAAc,EAAE,SAAsB9I,EAAK2P,GAAoC,CAAC,kBAAkB,CAAC,WAAWlF,EAAW,EAAE,sBAAsB,GAAK,gBAAgBC,GAAU,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBrB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBrJ,EAAK4P,GAAyB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQC,GAAI,CAAC,kFAAkF,kFAAkF,oRAAoR,mSAAmS,kQAAkQ,sKAAsK,2GAA2G,sYAAsY,+gBAA+gB,uUAAuU,kfAAkf,ogBAAogB,gvDAAgvD,yGAAyG,2GAA2G,0SAA0S,iGAAiG,0MAA0M,iYAAiY,8HAA8H,iHAAiH,6QAA6Q,+PAA+P,uTAAuT,qVAAqV,iGAAiG,2RAA2R,6RAA6R,8HAA8H,2TAA2T,+IAA+I,8HAA8H,2QAA2Q,+RAA+R,iGAAiG,2QAA2Q,+HAA+H,0GAA0G,wGAAwG,6sPAA6sP,+HAA+H,wHAAwH,wJAAwJ,wJAAwJ,4EAA4E,mbAAmb,yGAAyG,gFAAgF,wIAAwI,kHAAkH,m/BAAm/B,uHAAuH,8DAA8D,6GAA6G,6DAA6D,2HAA2H,wHAAwH,8DAA8D,mbAAmb,wJAAwJ,qEAAqE,iMAAiM,+sBAA+sB,gFAAgF,uFAAuF,utBAAutB,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,+bAA+b,EASjzlIC,GAAgBC,GAAQ9O,GAAU4O,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,SAAS,SAAS,kBAAkB,iBAAiB,iBAAiB,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,wEAAwE,MAAM,aAAa,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,aAAa,wEAAwE,MAAM,eAAe,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,aAAa,qEAAqE,MAAM,aAAa,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,UAAU,KAAKA,EAAY,OAAO,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,YAAY,KAAKA,EAAY,OAAO,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,IAAI,wFAAwF,OAAO,KAAK,EAAE,CAAC,OAAO,wBAAwB,OAAO,SAAS,IAAI,uEAAuE,EAAE,CAAC,OAAO,mBAAmB,OAAO,SAAS,IAAI,uEAAuE,CAAC,CAAC,EAAE,GAAGM,GAAe,GAAGC,GAAkB,GAAGC,GAAU,GAAGC,GAA8B,GAAGC,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "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", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "ava", "distribute", "header", "height", "id", "image", "link", "name1", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "TrrMsinaQ", "x1kI00cTG", "QJCg6biOO", "Z8TYSdOyI", "wAv9piO5q", "o0nk7MAQk", "eQ1asmYhF", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "RichText2", "css", "FramerBEttAkvi5", "withCSS", "BEttAkvi5_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "BLogFonts", "getFonts", "BEttAkvi5_default", "SlideshowFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "items", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "SVunKCEkQ", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "FramercLyuCUAMX", "withCSS", "cLyuCUAMX_default", "addPropertyControls", "ControlType", "addFonts", "SlideshowFonts", "getFonts", "Slideshow", "ButtonSecondFonts", "veChdCY8w_default", "MotionDivWithFX", "withFX", "motion", "MotionDivWithCharacterLimit1bjmy5p", "withCodeBoundaryForOverrides", "withCharacterLimit", "BLogFonts", "BEttAkvi5_default", "TestimonialsSlideHistoryFonts", "cLyuCUAMX_default", "SmartComponentScopedContainerWithFX", "SmartComponentScopedContainer", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation1", "transition3", "transition4", "animation2", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "background2", "colorText", "height", "id", "visible", "visible2", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "BRa6gC5If", "fWI_Zfl2E", "TnNISQv1y", "WBcuNbXr0", "bT7Hm6uJ9", "OCLWutXkkSy2cDosXR", "TKIypsQLfSy2cDosXR", "A3vKzOhlbSy2cDosXR", "zSrHxsOORSy2cDosXR", "fzGHZNBYlSy2cDosXR", "idSy2cDosXR", "OCLWutXkkloosdgCn5", "TKIypsQLfloosdgCn5", "A3vKzOhlbloosdgCn5", "zSrHxsOORloosdgCn5", "fzGHZNBYlloosdgCn5", "idloosdgCn5", "OCLWutXkkNDlLap4pO", "TKIypsQLfNDlLap4pO", "A3vKzOhlbNDlLap4pO", "zSrHxsOORNDlLap4pO", "fzGHZNBYlNDlLap4pO", "idNDlLap4pO", "OCLWutXkkAvCcLGQs8", "TKIypsQLfAvCcLGQs8", "A3vKzOhlbAvCcLGQs8", "zSrHxsOORAvCcLGQs8", "fzGHZNBYlAvCcLGQs8", "idAvCcLGQs8", "OCLWutXkka4dPG507a", "TKIypsQLfa4dPG507a", "A3vKzOhlba4dPG507a", "zSrHxsOORa4dPG507a", "fzGHZNBYla4dPG507a", "ida4dPG507a", "OCLWutXkkI9y63w2CE", "TKIypsQLfI9y63w2CE", "A3vKzOhlbI9y63w2CE", "zSrHxsOORI9y63w2CE", "fzGHZNBYlI9y63w2CE", "idI9y63w2CE", "OCLWutXkkD7lTEIjOQ", "Qnead82buD7lTEIjOQ", "TKIypsQLfD7lTEIjOQ", "zSrHxsOORD7lTEIjOQ", "fzGHZNBYlD7lTEIjOQ", "idD7lTEIjOQ", "OCLWutXkkAYmMCI7Lo", "Qnead82buAYmMCI7Lo", "TKIypsQLfAYmMCI7Lo", "zSrHxsOORAYmMCI7Lo", "fzGHZNBYlAYmMCI7Lo", "idAYmMCI7Lo", "OCLWutXkkNUJjPEyzQ", "Qnead82buNUJjPEyzQ", "TKIypsQLfNUJjPEyzQ", "zSrHxsOORNUJjPEyzQ", "fzGHZNBYlNUJjPEyzQ", "idNUJjPEyzQ", "OCLWutXkkuu6POGEwY", "Qnead82buuu6POGEwY", "FfIvsOts2uu6POGEwY", "zSrHxsOORuu6POGEwY", "A3vKzOhlbuu6POGEwY", "MxhyBu40puu6POGEwY", "nb6kNh1DBuu6POGEwY", "JC3wnPmq3uu6POGEwY", "StPv4LTejHVyBQ3Nw2", "bntrxX93WHVyBQ3Nw2", "fv7F_RP9oHVyBQ3Nw2", "idHVyBQ3Nw2", "fzGHZNBYluu6POGEwY", "BUd9Lsea7uu6POGEwY", "G7_5nehH2uu6POGEwY", "idEpwcJUTuu6POGEwY", "JaT2sGpKHuu6POGEwY", "n60P84P9Buu6POGEwY", "fScUbc55Cuu6POGEwY", "bDIh5NX0zuu6POGEwY", "iiG3mFAdQuu6POGEwY", "qYg78qqCluu6POGEwY", "VZALrd9ntuu6POGEwY", "CDB1RSbQHuu6POGEwY", "U3rtPOsP9uu6POGEwY", "astAQR4GFuu6POGEwY", "le1D44MTmuu6POGEwY", "TWGD7Ccyfuu6POGEwY", "a3l1UfPmjuu6POGEwY", "yiBP_R_PNuu6POGEwY", "ZsDVb4yYkuu6POGEwY", "WxOeO57y0uu6POGEwY", "Z9OiPHU8Duu6POGEwY", "ZmihUC2Uguu6POGEwY", "iduu6POGEwY", "OCLWutXkkdj0KmmAXA", "Qnead82budj0KmmAXA", "zSrHxsOORdj0KmmAXA", "StPv4LTejS3J0DaC11", "bntrxX93WS3J0DaC11", "fv7F_RP9oS3J0DaC11", "idS3J0DaC11", "fzGHZNBYldj0KmmAXA", "iddj0KmmAXA", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "isDisplayed", "activeLocaleCode", "useLocaleCode", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "LayoutGroup", "transition1", "u", "addPropertyOverrides", "MotionDivWithFX", "transition2", "animation", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "Slideshow", "ChildrenCanSuspend", "QueryData", "wtbflg75e_default", "collection", "paginationInfo", "loadMore", "l", "index", "textContent", "toDateString", "PathVariablesContext", "Link", "Image2", "toResponsiveImage", "collection1", "paginationInfo1", "loadMore1", "index1", "textContent1", "collection2", "paginationInfo2", "loadMore2", "index2", "textContent2", "collection3", "paginationInfo3", "loadMore3", "index3", "textContent3", "collection4", "paginationInfo4", "loadMore4", "index4", "textContent4", "collection5", "paginationInfo5", "loadMore5", "index5", "textContent5", "veChdCY8w_default", "H65AUkI8_default", "collection6", "paginationInfo6", "loadMore6", "collection7", "index6", "collection8", "paginationInfo7", "loadMore7", "collection9", "index7", "collection10", "paginationInfo8", "loadMore8", "collection11", "index8", "transition3", "animation1", "MotionDivWithCharacterLimit1bjmy5p", "collection13", "paginationInfo9", "loadMore9", "collection12", "index10", "textContent6", "textContent7", "animation2", "getLoadingLazyAtYPosition", "index9", "BEttAkvi5_default", "collection15", "paginationInfo10", "loadMore10", "collection14", "index12", "index11", "SmartComponentScopedContainerWithFX", "cLyuCUAMX_default", "css", "Framerv_9vYvSUb", "withCSS", "v_9vYvSUb_default", "addPropertyControls", "ControlType", "addFonts", "SlideshowFonts", "ButtonSecondFonts", "BLogFonts", "TestimonialsSlideHistoryFonts", "getFontsFromSharedStyle", "fonts"]
}
